blob: 06df6928f44c2942f3e9b51647d047d790a2d6af [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/**
Carolyn Wyborny2bdfc4e2013-10-17 05:23:01 +0000116 * igb_check_for_link_media_swap - Check which M88E1112 interface linked
117 * @hw: pointer to the HW structure
118 *
119 * Poll the M88E1112 interfaces to see which interface achieved link.
120 */
121static s32 igb_check_for_link_media_swap(struct e1000_hw *hw)
122{
123 struct e1000_phy_info *phy = &hw->phy;
124 s32 ret_val;
125 u16 data;
126 u8 port = 0;
127
128 /* Check the copper medium. */
129 ret_val = phy->ops.write_reg(hw, E1000_M88E1112_PAGE_ADDR, 0);
130 if (ret_val)
131 return ret_val;
132
133 ret_val = phy->ops.read_reg(hw, E1000_M88E1112_STATUS, &data);
134 if (ret_val)
135 return ret_val;
136
137 if (data & E1000_M88E1112_STATUS_LINK)
138 port = E1000_MEDIA_PORT_COPPER;
139
140 /* Check the other medium. */
141 ret_val = phy->ops.write_reg(hw, E1000_M88E1112_PAGE_ADDR, 1);
142 if (ret_val)
143 return ret_val;
144
145 ret_val = phy->ops.read_reg(hw, E1000_M88E1112_STATUS, &data);
146 if (ret_val)
147 return ret_val;
148
149 /* reset page to 0 */
150 ret_val = phy->ops.write_reg(hw, E1000_M88E1112_PAGE_ADDR, 0);
151 if (ret_val)
152 return ret_val;
153
154 if (data & E1000_M88E1112_STATUS_LINK)
155 port = E1000_MEDIA_PORT_OTHER;
156
157 /* Determine if a swap needs to happen. */
158 if (port && (hw->dev_spec._82575.media_port != port)) {
159 hw->dev_spec._82575.media_port = port;
160 hw->dev_spec._82575.media_changed = true;
161 } else {
162 ret_val = igb_check_for_link_82575(hw);
163 }
164
165 return E1000_SUCCESS;
166}
167
168/**
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000169 * igb_init_phy_params_82575 - Init PHY func ptrs.
170 * @hw: pointer to the HW structure
171 **/
172static s32 igb_init_phy_params_82575(struct e1000_hw *hw)
173{
174 struct e1000_phy_info *phy = &hw->phy;
175 s32 ret_val = 0;
176 u32 ctrl_ext;
177
178 if (hw->phy.media_type != e1000_media_type_copper) {
179 phy->type = e1000_phy_none;
180 goto out;
181 }
182
183 phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT;
184 phy->reset_delay_us = 100;
185
186 ctrl_ext = rd32(E1000_CTRL_EXT);
187
188 if (igb_sgmii_active_82575(hw)) {
189 phy->ops.reset = igb_phy_hw_reset_sgmii_82575;
190 ctrl_ext |= E1000_CTRL_I2C_ENA;
191 } else {
192 phy->ops.reset = igb_phy_hw_reset;
193 ctrl_ext &= ~E1000_CTRL_I2C_ENA;
194 }
195
196 wr32(E1000_CTRL_EXT, ctrl_ext);
197 igb_reset_mdicnfg_82580(hw);
198
199 if (igb_sgmii_active_82575(hw) && !igb_sgmii_uses_mdio_82575(hw)) {
200 phy->ops.read_reg = igb_read_phy_reg_sgmii_82575;
201 phy->ops.write_reg = igb_write_phy_reg_sgmii_82575;
202 } else {
203 switch (hw->mac.type) {
204 case e1000_82580:
205 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000206 case e1000_i354:
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000207 phy->ops.read_reg = igb_read_phy_reg_82580;
208 phy->ops.write_reg = igb_write_phy_reg_82580;
209 break;
210 case e1000_i210:
211 case e1000_i211:
212 phy->ops.read_reg = igb_read_phy_reg_gs40g;
213 phy->ops.write_reg = igb_write_phy_reg_gs40g;
214 break;
215 default:
216 phy->ops.read_reg = igb_read_phy_reg_igp;
217 phy->ops.write_reg = igb_write_phy_reg_igp;
218 }
219 }
220
221 /* set lan id */
222 hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >>
223 E1000_STATUS_FUNC_SHIFT;
224
225 /* Set phy->phy_addr and phy->id. */
226 ret_val = igb_get_phy_id_82575(hw);
227 if (ret_val)
228 return ret_val;
229
230 /* Verify phy id and set remaining function pointers */
231 switch (phy->id) {
Akeem G Abodunrin99af4722013-08-28 02:22:58 +0000232 case M88E1543_E_PHY_ID:
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000233 case I347AT4_E_PHY_ID:
234 case M88E1112_E_PHY_ID:
235 case M88E1111_I_PHY_ID:
236 phy->type = e1000_phy_m88;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000237 phy->ops.check_polarity = igb_check_polarity_m88;
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000238 phy->ops.get_phy_info = igb_get_phy_info_m88;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000239 if (phy->id != M88E1111_I_PHY_ID)
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000240 phy->ops.get_cable_length =
241 igb_get_cable_length_m88_gen2;
242 else
243 phy->ops.get_cable_length = igb_get_cable_length_m88;
244 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
Carolyn Wyborny2bdfc4e2013-10-17 05:23:01 +0000245 /* Check if this PHY is confgured for media swap. */
246 if (phy->id == M88E1112_E_PHY_ID) {
247 u16 data;
248
249 ret_val = phy->ops.write_reg(hw,
250 E1000_M88E1112_PAGE_ADDR,
251 2);
252 if (ret_val)
253 goto out;
254
255 ret_val = phy->ops.read_reg(hw,
256 E1000_M88E1112_MAC_CTRL_1,
257 &data);
258 if (ret_val)
259 goto out;
260
261 data = (data & E1000_M88E1112_MAC_CTRL_1_MODE_MASK) >>
262 E1000_M88E1112_MAC_CTRL_1_MODE_SHIFT;
263 if (data == E1000_M88E1112_AUTO_COPPER_SGMII ||
264 data == E1000_M88E1112_AUTO_COPPER_BASEX)
265 hw->mac.ops.check_for_link =
266 igb_check_for_link_media_swap;
267 }
Akeem G. Abodunrin73bfcd92013-01-29 10:14:55 +0000268 break;
269 case IGP03E1000_E_PHY_ID:
270 phy->type = e1000_phy_igp_3;
271 phy->ops.get_phy_info = igb_get_phy_info_igp;
272 phy->ops.get_cable_length = igb_get_cable_length_igp_2;
273 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp;
274 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82575;
275 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state;
276 break;
277 case I82580_I_PHY_ID:
278 case I350_I_PHY_ID:
279 phy->type = e1000_phy_82580;
280 phy->ops.force_speed_duplex =
281 igb_phy_force_speed_duplex_82580;
282 phy->ops.get_cable_length = igb_get_cable_length_82580;
283 phy->ops.get_phy_info = igb_get_phy_info_82580;
284 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82580;
285 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state_82580;
286 break;
287 case I210_I_PHY_ID:
288 phy->type = e1000_phy_i210;
289 phy->ops.check_polarity = igb_check_polarity_m88;
290 phy->ops.get_phy_info = igb_get_phy_info_m88;
291 phy->ops.get_cable_length = igb_get_cable_length_m88_gen2;
292 phy->ops.set_d0_lplu_state = igb_set_d0_lplu_state_82580;
293 phy->ops.set_d3_lplu_state = igb_set_d3_lplu_state_82580;
294 phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88;
295 break;
296 default:
297 ret_val = -E1000_ERR_PHY;
298 goto out;
299 }
300
301out:
302 return ret_val;
303}
304
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000305/**
306 * igb_init_nvm_params_82575 - Init NVM func ptrs.
307 * @hw: pointer to the HW structure
308 **/
Akeem G. Abodunrinc8268922013-02-16 07:09:06 +0000309static s32 igb_init_nvm_params_82575(struct e1000_hw *hw)
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000310{
311 struct e1000_nvm_info *nvm = &hw->nvm;
312 u32 eecd = rd32(E1000_EECD);
313 u16 size;
314
315 size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
316 E1000_EECD_SIZE_EX_SHIFT);
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000317
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000318 /* Added to a constant, "size" becomes the left-shift value
319 * for setting word_size.
320 */
321 size += NVM_WORD_SIZE_BASE_SHIFT;
322
323 /* Just in case size is out of range, cap it to the largest
324 * EEPROM size supported
325 */
326 if (size > 15)
327 size = 15;
328
329 nvm->word_size = 1 << size;
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000330 nvm->opcode_bits = 8;
331 nvm->delay_usec = 1;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000332
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000333 switch (nvm->override) {
334 case e1000_nvm_override_spi_large:
335 nvm->page_size = 32;
336 nvm->address_bits = 16;
337 break;
338 case e1000_nvm_override_spi_small:
339 nvm->page_size = 8;
340 nvm->address_bits = 8;
341 break;
342 default:
343 nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8;
344 nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ?
345 16 : 8;
346 break;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000347 }
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000348 if (nvm->word_size == (1 << 15))
349 nvm->page_size = 128;
350
351 nvm->type = e1000_nvm_eeprom_spi;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000352
353 /* NVM Function Pointers */
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000354 nvm->ops.acquire = igb_acquire_nvm_82575;
355 nvm->ops.release = igb_release_nvm_82575;
356 nvm->ops.write = igb_write_nvm_spi;
357 nvm->ops.validate = igb_validate_nvm_checksum;
358 nvm->ops.update = igb_update_nvm_checksum;
359 if (nvm->word_size < (1 << 15))
360 nvm->ops.read = igb_read_nvm_eerd;
361 else
362 nvm->ops.read = igb_read_nvm_spi;
363
364 /* override generic family function pointers for specific descendants */
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000365 switch (hw->mac.type) {
366 case e1000_82580:
367 nvm->ops.validate = igb_validate_nvm_checksum_82580;
368 nvm->ops.update = igb_update_nvm_checksum_82580;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000369 break;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000370 case e1000_i354:
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000371 case e1000_i350:
372 nvm->ops.validate = igb_validate_nvm_checksum_i350;
373 nvm->ops.update = igb_update_nvm_checksum_i350;
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000374 break;
375 default:
Akeem G. Abodunrin56d8c272013-01-29 10:15:00 +0000376 break;
377 }
378
379 return 0;
380}
381
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000382/**
383 * igb_init_mac_params_82575 - Init MAC func ptrs.
384 * @hw: pointer to the HW structure
385 **/
386static s32 igb_init_mac_params_82575(struct e1000_hw *hw)
387{
388 struct e1000_mac_info *mac = &hw->mac;
389 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
390
391 /* Set mta register count */
392 mac->mta_reg_count = 128;
393 /* Set rar entry count */
394 switch (mac->type) {
395 case e1000_82576:
396 mac->rar_entry_count = E1000_RAR_ENTRIES_82576;
397 break;
398 case e1000_82580:
399 mac->rar_entry_count = E1000_RAR_ENTRIES_82580;
400 break;
401 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000402 case e1000_i354:
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000403 mac->rar_entry_count = E1000_RAR_ENTRIES_I350;
404 break;
405 default:
406 mac->rar_entry_count = E1000_RAR_ENTRIES_82575;
407 break;
408 }
409 /* reset */
410 if (mac->type >= e1000_82580)
411 mac->ops.reset_hw = igb_reset_hw_82580;
412 else
413 mac->ops.reset_hw = igb_reset_hw_82575;
414
415 if (mac->type >= e1000_i210) {
416 mac->ops.acquire_swfw_sync = igb_acquire_swfw_sync_i210;
417 mac->ops.release_swfw_sync = igb_release_swfw_sync_i210;
418
419 } else {
420 mac->ops.acquire_swfw_sync = igb_acquire_swfw_sync_82575;
421 mac->ops.release_swfw_sync = igb_release_swfw_sync_82575;
422 }
423
424 /* Set if part includes ASF firmware */
425 mac->asf_firmware_present = true;
426 /* Set if manageability features are enabled. */
427 mac->arc_subsystem_valid =
428 (rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK)
429 ? true : false;
430 /* enable EEE on i350 parts and later parts */
431 if (mac->type >= e1000_i350)
432 dev_spec->eee_disable = false;
433 else
434 dev_spec->eee_disable = true;
Matthew Vickd44e7a92013-03-22 07:34:20 +0000435 /* Allow a single clear of the SW semaphore on I210 and newer */
436 if (mac->type >= e1000_i210)
437 dev_spec->clear_semaphore_once = true;
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000438 /* physical interface link setup */
439 mac->ops.setup_physical_interface =
440 (hw->phy.media_type == e1000_media_type_copper)
441 ? igb_setup_copper_link_82575
442 : igb_setup_serdes_link_82575;
443
Carolyn Wyborny56cec242013-10-17 05:36:26 +0000444 if (mac->type == e1000_82580) {
445 switch (hw->device_id) {
446 /* feature not supported on these id's */
447 case E1000_DEV_ID_DH89XXCC_SGMII:
448 case E1000_DEV_ID_DH89XXCC_SERDES:
449 case E1000_DEV_ID_DH89XXCC_BACKPLANE:
450 case E1000_DEV_ID_DH89XXCC_SFP:
451 break;
452 default:
453 hw->dev_spec._82575.mas_capable = true;
454 break;
455 }
456 }
Akeem G. Abodunrina1bf1f42013-01-29 10:15:05 +0000457 return 0;
458}
459
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000460/**
461 * igb_set_sfp_media_type_82575 - derives SFP module media type.
462 * @hw: pointer to the HW structure
463 *
464 * The media type is chosen based on SFP module.
465 * compatibility flags retrieved from SFP ID EEPROM.
466 **/
467static s32 igb_set_sfp_media_type_82575(struct e1000_hw *hw)
468{
469 s32 ret_val = E1000_ERR_CONFIG;
470 u32 ctrl_ext = 0;
471 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
472 struct e1000_sfp_flags *eth_flags = &dev_spec->eth_flags;
473 u8 tranceiver_type = 0;
474 s32 timeout = 3;
475
476 /* Turn I2C interface ON and power on sfp cage */
477 ctrl_ext = rd32(E1000_CTRL_EXT);
478 ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA;
479 wr32(E1000_CTRL_EXT, ctrl_ext | E1000_CTRL_I2C_ENA);
480
481 wrfl();
482
483 /* Read SFP module data */
484 while (timeout) {
485 ret_val = igb_read_sfp_data_byte(hw,
486 E1000_I2CCMD_SFP_DATA_ADDR(E1000_SFF_IDENTIFIER_OFFSET),
487 &tranceiver_type);
488 if (ret_val == 0)
489 break;
490 msleep(100);
491 timeout--;
492 }
493 if (ret_val != 0)
494 goto out;
495
496 ret_val = igb_read_sfp_data_byte(hw,
497 E1000_I2CCMD_SFP_DATA_ADDR(E1000_SFF_ETH_FLAGS_OFFSET),
498 (u8 *)eth_flags);
499 if (ret_val != 0)
500 goto out;
501
502 /* Check if there is some SFP module plugged and powered */
503 if ((tranceiver_type == E1000_SFF_IDENTIFIER_SFP) ||
504 (tranceiver_type == E1000_SFF_IDENTIFIER_SFF)) {
505 dev_spec->module_plugged = true;
506 if (eth_flags->e1000_base_lx || eth_flags->e1000_base_sx) {
507 hw->phy.media_type = e1000_media_type_internal_serdes;
508 } else if (eth_flags->e100_base_fx) {
509 dev_spec->sgmii_active = true;
510 hw->phy.media_type = e1000_media_type_internal_serdes;
511 } else if (eth_flags->e1000_base_t) {
512 dev_spec->sgmii_active = true;
513 hw->phy.media_type = e1000_media_type_copper;
514 } else {
515 hw->phy.media_type = e1000_media_type_unknown;
516 hw_dbg("PHY module has not been recognized\n");
517 goto out;
518 }
519 } else {
520 hw->phy.media_type = e1000_media_type_unknown;
521 }
522 ret_val = 0;
523out:
524 /* Restore I2C interface setting */
525 wr32(E1000_CTRL_EXT, ctrl_ext);
526 return ret_val;
527}
528
Auke Kok9d5c8242008-01-24 02:22:38 -0800529static s32 igb_get_invariants_82575(struct e1000_hw *hw)
530{
Auke Kok9d5c8242008-01-24 02:22:38 -0800531 struct e1000_mac_info *mac = &hw->mac;
Alexander Duyckc1889bf2009-02-06 23:16:45 +0000532 struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575;
Auke Kok9d5c8242008-01-24 02:22:38 -0800533 s32 ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800534 u32 ctrl_ext = 0;
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000535 u32 link_mode = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -0800536
537 switch (hw->device_id) {
538 case E1000_DEV_ID_82575EB_COPPER:
539 case E1000_DEV_ID_82575EB_FIBER_SERDES:
540 case E1000_DEV_ID_82575GB_QUAD_COPPER:
541 mac->type = e1000_82575;
542 break;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700543 case E1000_DEV_ID_82576:
Alexander Duyck9eb23412009-03-13 20:42:15 +0000544 case E1000_DEV_ID_82576_NS:
Alexander Duyck747d49b2009-10-05 06:33:27 +0000545 case E1000_DEV_ID_82576_NS_SERDES:
Alexander Duyck2d064c02008-07-08 15:10:12 -0700546 case E1000_DEV_ID_82576_FIBER:
547 case E1000_DEV_ID_82576_SERDES:
Alexander Duyckc8ea5ea2009-03-13 20:42:35 +0000548 case E1000_DEV_ID_82576_QUAD_COPPER:
Carolyn Wybornyb894fa22010-03-19 06:07:48 +0000549 case E1000_DEV_ID_82576_QUAD_COPPER_ET2:
Alexander Duyck4703bf72009-07-23 18:09:48 +0000550 case E1000_DEV_ID_82576_SERDES_QUAD:
Alexander Duyck2d064c02008-07-08 15:10:12 -0700551 mac->type = e1000_82576;
552 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000553 case E1000_DEV_ID_82580_COPPER:
554 case E1000_DEV_ID_82580_FIBER:
Carolyn Wyborny6493d242011-01-14 05:33:46 +0000555 case E1000_DEV_ID_82580_QUAD_FIBER:
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000556 case E1000_DEV_ID_82580_SERDES:
557 case E1000_DEV_ID_82580_SGMII:
558 case E1000_DEV_ID_82580_COPPER_DUAL:
Joseph Gasparakis308fb392010-09-22 17:56:44 +0000559 case E1000_DEV_ID_DH89XXCC_SGMII:
560 case E1000_DEV_ID_DH89XXCC_SERDES:
Gasparakis, Joseph1b5dda32010-12-09 01:41:01 +0000561 case E1000_DEV_ID_DH89XXCC_BACKPLANE:
562 case E1000_DEV_ID_DH89XXCC_SFP:
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000563 mac->type = e1000_82580;
564 break;
Alexander Duyckd2ba2ed2010-03-22 14:08:06 +0000565 case E1000_DEV_ID_I350_COPPER:
566 case E1000_DEV_ID_I350_FIBER:
567 case E1000_DEV_ID_I350_SERDES:
568 case E1000_DEV_ID_I350_SGMII:
569 mac->type = e1000_i350;
570 break;
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000571 case E1000_DEV_ID_I210_COPPER:
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000572 case E1000_DEV_ID_I210_FIBER:
573 case E1000_DEV_ID_I210_SERDES:
574 case E1000_DEV_ID_I210_SGMII:
Carolyn Wyborny53b87ce2013-07-16 19:18:36 +0000575 case E1000_DEV_ID_I210_COPPER_FLASHLESS:
576 case E1000_DEV_ID_I210_SERDES_FLASHLESS:
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000577 mac->type = e1000_i210;
578 break;
579 case E1000_DEV_ID_I211_COPPER:
580 mac->type = e1000_i211;
581 break;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000582 case E1000_DEV_ID_I354_BACKPLANE_1GBPS:
583 case E1000_DEV_ID_I354_SGMII:
584 case E1000_DEV_ID_I354_BACKPLANE_2_5GBPS:
585 mac->type = e1000_i354;
586 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800587 default:
588 return -E1000_ERR_MAC_INIT;
589 break;
590 }
591
Auke Kok9d5c8242008-01-24 02:22:38 -0800592 /* Set media type */
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000593 /* The 82575 uses bits 22:23 for link mode. The mode can be changed
Auke Kok9d5c8242008-01-24 02:22:38 -0800594 * based on the EEPROM. We cannot rely upon device ID. There
595 * is no distinguishable difference between fiber and internal
596 * SerDes mode on the 82575. There can be an external PHY attached
597 * on the SGMII interface. For this, we'll set sgmii_active to true.
598 */
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000599 hw->phy.media_type = e1000_media_type_copper;
Auke Kok9d5c8242008-01-24 02:22:38 -0800600 dev_spec->sgmii_active = false;
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000601 dev_spec->module_plugged = false;
Auke Kok9d5c8242008-01-24 02:22:38 -0800602
603 ctrl_ext = rd32(E1000_CTRL_EXT);
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000604
605 link_mode = ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK;
606 switch (link_mode) {
Alexander Duyckbb2ac472009-11-19 12:42:01 +0000607 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000608 hw->phy.media_type = e1000_media_type_internal_serdes;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000609 break;
Akeem G. Abodunrin641ac5c2013-04-24 16:54:50 +0000610 case E1000_CTRL_EXT_LINK_MODE_SGMII:
611 /* Get phy control interface type set (MDIO vs. I2C)*/
612 if (igb_sgmii_uses_mdio_82575(hw)) {
613 hw->phy.media_type = e1000_media_type_copper;
614 dev_spec->sgmii_active = true;
615 break;
616 }
617 /* fall through for I2C based SGMII */
618 case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES:
619 /* read media type from SFP EEPROM */
620 ret_val = igb_set_sfp_media_type_82575(hw);
621 if ((ret_val != 0) ||
622 (hw->phy.media_type == e1000_media_type_unknown)) {
623 /* If media type was not identified then return media
624 * type defined by the CTRL_EXT settings.
625 */
626 hw->phy.media_type = e1000_media_type_internal_serdes;
627
628 if (link_mode == E1000_CTRL_EXT_LINK_MODE_SGMII) {
629 hw->phy.media_type = e1000_media_type_copper;
630 dev_spec->sgmii_active = true;
631 }
632
633 break;
634 }
635
636 /* do not change link mode for 100BaseFX */
637 if (dev_spec->eth_flags.e100_base_fx)
638 break;
639
640 /* change current link mode setting */
641 ctrl_ext &= ~E1000_CTRL_EXT_LINK_MODE_MASK;
642
643 if (hw->phy.media_type == e1000_media_type_copper)
644 ctrl_ext |= E1000_CTRL_EXT_LINK_MODE_SGMII;
645 else
646 ctrl_ext |= E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES;
647
648 wr32(E1000_CTRL_EXT, ctrl_ext);
649
650 break;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000651 default:
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000652 break;
Auke Kok9d5c8242008-01-24 02:22:38 -0800653 }
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000654
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000655 /* mac initialization and operations */
656 ret_val = igb_init_mac_params_82575(hw);
657 if (ret_val)
658 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800659
660 /* NVM initialization */
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000661 ret_val = igb_init_nvm_params_82575(hw);
Carolyn Wyborny5a823d82013-07-16 19:17:32 +0000662 switch (hw->mac.type) {
663 case e1000_i210:
664 case e1000_i211:
665 ret_val = igb_init_nvm_params_i210(hw);
666 break;
667 default:
668 break;
669 }
670
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000671 if (ret_val)
672 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800673
Carolyn Wyborny6b78bb12011-01-20 06:40:45 +0000674 /* if part supports SR-IOV then initialize mailbox parameters */
675 switch (mac->type) {
676 case e1000_82576:
677 case e1000_i350:
Alexander Duycka0c98602009-07-23 18:10:43 +0000678 igb_init_mbx_params_pf(hw);
Carolyn Wyborny6b78bb12011-01-20 06:40:45 +0000679 break;
680 default:
681 break;
682 }
Alexander Duycka0c98602009-07-23 18:10:43 +0000683
Auke Kok9d5c8242008-01-24 02:22:38 -0800684 /* setup PHY parameters */
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000685 ret_val = igb_init_phy_params_82575(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800686
Akeem G. Abodunrina6053d72013-01-29 10:15:10 +0000687out:
688 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800689}
690
691/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700692 * igb_acquire_phy_82575 - Acquire rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800693 * @hw: pointer to the HW structure
694 *
695 * Acquire access rights to the correct PHY. This is a
696 * function pointer entry point called by the api module.
697 **/
698static s32 igb_acquire_phy_82575(struct e1000_hw *hw)
699{
Alexander Duyck008c3422009-10-05 06:32:07 +0000700 u16 mask = E1000_SWFW_PHY0_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800701
Alexander Duyck008c3422009-10-05 06:32:07 +0000702 if (hw->bus.func == E1000_FUNC_1)
703 mask = E1000_SWFW_PHY1_SM;
Nick Nunleyede3ef02010-07-01 13:37:54 +0000704 else if (hw->bus.func == E1000_FUNC_2)
705 mask = E1000_SWFW_PHY2_SM;
706 else if (hw->bus.func == E1000_FUNC_3)
707 mask = E1000_SWFW_PHY3_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800708
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000709 return hw->mac.ops.acquire_swfw_sync(hw, mask);
Auke Kok9d5c8242008-01-24 02:22:38 -0800710}
711
712/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700713 * igb_release_phy_82575 - Release rights to access PHY
Auke Kok9d5c8242008-01-24 02:22:38 -0800714 * @hw: pointer to the HW structure
715 *
716 * A wrapper to release access rights to the correct PHY. This is a
717 * function pointer entry point called by the api module.
718 **/
719static void igb_release_phy_82575(struct e1000_hw *hw)
720{
Alexander Duyck008c3422009-10-05 06:32:07 +0000721 u16 mask = E1000_SWFW_PHY0_SM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800722
Alexander Duyck008c3422009-10-05 06:32:07 +0000723 if (hw->bus.func == E1000_FUNC_1)
724 mask = E1000_SWFW_PHY1_SM;
Nick Nunleyede3ef02010-07-01 13:37:54 +0000725 else if (hw->bus.func == E1000_FUNC_2)
726 mask = E1000_SWFW_PHY2_SM;
727 else if (hw->bus.func == E1000_FUNC_3)
728 mask = E1000_SWFW_PHY3_SM;
Alexander Duyck008c3422009-10-05 06:32:07 +0000729
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000730 hw->mac.ops.release_swfw_sync(hw, mask);
Auke Kok9d5c8242008-01-24 02:22:38 -0800731}
732
733/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700734 * igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800735 * @hw: pointer to the HW structure
736 * @offset: register offset to be read
737 * @data: pointer to the read data
738 *
739 * Reads the PHY register at offset using the serial gigabit media independent
740 * interface and stores the retrieved information in data.
741 **/
742static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
743 u16 *data)
744{
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000745 s32 ret_val = -E1000_ERR_PARAM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800746
747 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700748 hw_dbg("PHY Address %u is out of range\n", offset);
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000749 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800750 }
751
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000752 ret_val = hw->phy.ops.acquire(hw);
753 if (ret_val)
754 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800755
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000756 ret_val = igb_read_phy_reg_i2c(hw, offset, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800757
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000758 hw->phy.ops.release(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800759
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000760out:
761 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800762}
763
764/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700765 * igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii
Auke Kok9d5c8242008-01-24 02:22:38 -0800766 * @hw: pointer to the HW structure
767 * @offset: register offset to write to
768 * @data: data to write at register offset
769 *
770 * Writes the data to PHY register at the offset using the serial gigabit
771 * media independent interface.
772 **/
773static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset,
774 u16 data)
775{
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000776 s32 ret_val = -E1000_ERR_PARAM;
777
Auke Kok9d5c8242008-01-24 02:22:38 -0800778
779 if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) {
Auke Kok652fff32008-06-27 11:00:18 -0700780 hw_dbg("PHY Address %d is out of range\n", offset);
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000781 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800782 }
783
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000784 ret_val = hw->phy.ops.acquire(hw);
785 if (ret_val)
786 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800787
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000788 ret_val = igb_write_phy_reg_i2c(hw, offset, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800789
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000790 hw->phy.ops.release(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800791
Alexander Duyckbf6f7a92009-10-05 06:32:27 +0000792out:
793 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -0800794}
795
796/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700797 * igb_get_phy_id_82575 - Retrieve PHY addr and id
Auke Kok9d5c8242008-01-24 02:22:38 -0800798 * @hw: pointer to the HW structure
799 *
Auke Kok652fff32008-06-27 11:00:18 -0700800 * Retrieves the PHY address and ID for both PHY's which do and do not use
Auke Kok9d5c8242008-01-24 02:22:38 -0800801 * sgmi interface.
802 **/
803static s32 igb_get_phy_id_82575(struct e1000_hw *hw)
804{
805 struct e1000_phy_info *phy = &hw->phy;
806 s32 ret_val = 0;
807 u16 phy_id;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000808 u32 ctrl_ext;
Nick Nunley4085f742010-07-26 13:15:06 +0000809 u32 mdic;
Auke Kok9d5c8242008-01-24 02:22:38 -0800810
Carolyn Wybornybb1d18d2013-09-10 11:57:16 -0700811 /* Extra read required for some PHY's on i354 */
812 if (hw->mac.type == e1000_i354)
813 igb_get_phy_id(hw);
814
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000815 /* For SGMII PHYs, we try the list of possible addresses until
Auke Kok9d5c8242008-01-24 02:22:38 -0800816 * we find one that works. For non-SGMII PHYs
817 * (e.g. integrated copper PHYs), an address of 1 should
818 * work. The result of this function should mean phy->phy_addr
819 * and phy->id are set correctly.
820 */
821 if (!(igb_sgmii_active_82575(hw))) {
822 phy->addr = 1;
823 ret_val = igb_get_phy_id(hw);
824 goto out;
825 }
826
Nick Nunley4085f742010-07-26 13:15:06 +0000827 if (igb_sgmii_uses_mdio_82575(hw)) {
828 switch (hw->mac.type) {
829 case e1000_82575:
830 case e1000_82576:
831 mdic = rd32(E1000_MDIC);
832 mdic &= E1000_MDIC_PHY_MASK;
833 phy->addr = mdic >> E1000_MDIC_PHY_SHIFT;
834 break;
835 case e1000_82580:
836 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000837 case e1000_i354:
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +0000838 case e1000_i210:
839 case e1000_i211:
Nick Nunley4085f742010-07-26 13:15:06 +0000840 mdic = rd32(E1000_MDICNFG);
841 mdic &= E1000_MDICNFG_PHY_MASK;
842 phy->addr = mdic >> E1000_MDICNFG_PHY_SHIFT;
843 break;
844 default:
845 ret_val = -E1000_ERR_PHY;
846 goto out;
847 break;
848 }
849 ret_val = igb_get_phy_id(hw);
850 goto out;
851 }
852
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000853 /* Power on sgmii phy if it is disabled */
854 ctrl_ext = rd32(E1000_CTRL_EXT);
855 wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA);
856 wrfl();
857 msleep(300);
858
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000859 /* The address field in the I2CCMD register is 3 bits and 0 is invalid.
Auke Kok9d5c8242008-01-24 02:22:38 -0800860 * Therefore, we need to test 1-7
861 */
862 for (phy->addr = 1; phy->addr < 8; phy->addr++) {
863 ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id);
864 if (ret_val == 0) {
Auke Kok652fff32008-06-27 11:00:18 -0700865 hw_dbg("Vendor ID 0x%08X read at address %u\n",
866 phy_id, phy->addr);
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000867 /* At the time of this writing, The M88 part is
Auke Kok9d5c8242008-01-24 02:22:38 -0800868 * the only supported SGMII PHY product.
869 */
870 if (phy_id == M88_VENDOR)
871 break;
872 } else {
Auke Kok652fff32008-06-27 11:00:18 -0700873 hw_dbg("PHY address %u was unreadable\n", phy->addr);
Auke Kok9d5c8242008-01-24 02:22:38 -0800874 }
875 }
876
877 /* A valid PHY type couldn't be found. */
878 if (phy->addr == 8) {
879 phy->addr = 0;
880 ret_val = -E1000_ERR_PHY;
881 goto out;
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000882 } else {
883 ret_val = igb_get_phy_id(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -0800884 }
885
Alexander Duyck2fb02a22009-09-14 08:22:54 +0000886 /* restore previous sfp cage power state */
887 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -0800888
889out:
890 return ret_val;
891}
892
893/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700894 * igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset
Auke Kok9d5c8242008-01-24 02:22:38 -0800895 * @hw: pointer to the HW structure
896 *
897 * Resets the PHY using the serial gigabit media independent interface.
898 **/
899static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw)
900{
901 s32 ret_val;
902
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000903 /* This isn't a true "hard" reset, but is the only reset
Auke Kok9d5c8242008-01-24 02:22:38 -0800904 * available to us at this time.
905 */
906
Auke Kok652fff32008-06-27 11:00:18 -0700907 hw_dbg("Soft resetting SGMII attached PHY...\n");
Auke Kok9d5c8242008-01-24 02:22:38 -0800908
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000909 /* SFP documentation requires the following to configure the SPF module
Auke Kok9d5c8242008-01-24 02:22:38 -0800910 * to work on SGMII. No further documentation is given.
911 */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000912 ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084);
Auke Kok9d5c8242008-01-24 02:22:38 -0800913 if (ret_val)
914 goto out;
915
916 ret_val = igb_phy_sw_reset(hw);
917
918out:
919 return ret_val;
920}
921
922/**
Jeff Kirsher733596b2008-06-27 10:59:59 -0700923 * igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state
Auke Kok9d5c8242008-01-24 02:22:38 -0800924 * @hw: pointer to the HW structure
925 * @active: true to enable LPLU, false to disable
926 *
927 * Sets the LPLU D0 state according to the active flag. When
928 * activating LPLU this function also disables smart speed
929 * and vice versa. LPLU will not be activated unless the
930 * device autonegotiation advertisement meets standards of
931 * either 10 or 10/100 or 10/100/1000 at all duplexes.
932 * This is a function pointer entry point only called by
933 * PHY setup routines.
934 **/
935static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active)
936{
937 struct e1000_phy_info *phy = &hw->phy;
938 s32 ret_val;
939 u16 data;
940
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000941 ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800942 if (ret_val)
943 goto out;
944
945 if (active) {
946 data |= IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000947 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700948 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800949 if (ret_val)
950 goto out;
951
952 /* When LPLU is enabled, we should disable SmartSpeed */
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000953 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700954 &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800955 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000956 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
Auke Kok652fff32008-06-27 11:00:18 -0700957 data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800958 if (ret_val)
959 goto out;
960 } else {
961 data &= ~IGP02E1000_PM_D0_LPLU;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000962 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok652fff32008-06-27 11:00:18 -0700963 data);
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000964 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kok9d5c8242008-01-24 02:22:38 -0800965 * during Dx states where the power conservation is most
966 * important. During driver activity we should enable
967 * SmartSpeed, so performance is maintained.
968 */
969 if (phy->smart_speed == e1000_smart_speed_on) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000970 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700971 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800972 if (ret_val)
973 goto out;
974
975 data |= IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000976 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700977 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800978 if (ret_val)
979 goto out;
980 } else if (phy->smart_speed == e1000_smart_speed_off) {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000981 ret_val = phy->ops.read_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700982 IGP01E1000_PHY_PORT_CONFIG, &data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800983 if (ret_val)
984 goto out;
985
986 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
Alexander Duycka8d2a0c2009-02-06 23:17:26 +0000987 ret_val = phy->ops.write_reg(hw,
Auke Kok652fff32008-06-27 11:00:18 -0700988 IGP01E1000_PHY_PORT_CONFIG, data);
Auke Kok9d5c8242008-01-24 02:22:38 -0800989 if (ret_val)
990 goto out;
991 }
992 }
993
994out:
995 return ret_val;
996}
997
998/**
Carolyn Wybornyda02cde2012-03-04 03:26:26 +0000999 * igb_set_d0_lplu_state_82580 - Set Low Power Linkup D0 state
1000 * @hw: pointer to the HW structure
1001 * @active: true to enable LPLU, false to disable
1002 *
1003 * Sets the LPLU D0 state according to the active flag. When
1004 * activating LPLU this function also disables smart speed
1005 * and vice versa. LPLU will not be activated unless the
1006 * device autonegotiation advertisement meets standards of
1007 * either 10 or 10/100 or 10/100/1000 at all duplexes.
1008 * This is a function pointer entry point only called by
1009 * PHY setup routines.
1010 **/
1011static s32 igb_set_d0_lplu_state_82580(struct e1000_hw *hw, bool active)
1012{
1013 struct e1000_phy_info *phy = &hw->phy;
1014 s32 ret_val = 0;
1015 u16 data;
1016
1017 data = rd32(E1000_82580_PHY_POWER_MGMT);
1018
1019 if (active) {
1020 data |= E1000_82580_PM_D0_LPLU;
1021
1022 /* When LPLU is enabled, we should disable SmartSpeed */
1023 data &= ~E1000_82580_PM_SPD;
1024 } else {
1025 data &= ~E1000_82580_PM_D0_LPLU;
1026
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001027 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Carolyn Wybornyda02cde2012-03-04 03:26:26 +00001028 * during Dx states where the power conservation is most
1029 * important. During driver activity we should enable
1030 * SmartSpeed, so performance is maintained.
1031 */
1032 if (phy->smart_speed == e1000_smart_speed_on)
1033 data |= E1000_82580_PM_SPD;
1034 else if (phy->smart_speed == e1000_smart_speed_off)
1035 data &= ~E1000_82580_PM_SPD; }
1036
1037 wr32(E1000_82580_PHY_POWER_MGMT, data);
1038 return ret_val;
1039}
1040
1041/**
1042 * igb_set_d3_lplu_state_82580 - Sets low power link up state for D3
1043 * @hw: pointer to the HW structure
1044 * @active: boolean used to enable/disable lplu
1045 *
1046 * Success returns 0, Failure returns 1
1047 *
1048 * The low power link up (lplu) state is set to the power management level D3
1049 * and SmartSpeed is disabled when active is true, else clear lplu for D3
1050 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
1051 * is used during Dx states where the power conservation is most important.
1052 * During driver activity, SmartSpeed should be enabled so performance is
1053 * maintained.
1054 **/
Akeem G. Abodunrinc8268922013-02-16 07:09:06 +00001055static s32 igb_set_d3_lplu_state_82580(struct e1000_hw *hw, bool active)
Carolyn Wybornyda02cde2012-03-04 03:26:26 +00001056{
1057 struct e1000_phy_info *phy = &hw->phy;
1058 s32 ret_val = 0;
1059 u16 data;
1060
1061 data = rd32(E1000_82580_PHY_POWER_MGMT);
1062
1063 if (!active) {
1064 data &= ~E1000_82580_PM_D3_LPLU;
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001065 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Carolyn Wybornyda02cde2012-03-04 03:26:26 +00001066 * during Dx states where the power conservation is most
1067 * important. During driver activity we should enable
1068 * SmartSpeed, so performance is maintained.
1069 */
1070 if (phy->smart_speed == e1000_smart_speed_on)
1071 data |= E1000_82580_PM_SPD;
1072 else if (phy->smart_speed == e1000_smart_speed_off)
1073 data &= ~E1000_82580_PM_SPD;
1074 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1075 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1076 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1077 data |= E1000_82580_PM_D3_LPLU;
1078 /* When LPLU is enabled, we should disable SmartSpeed */
1079 data &= ~E1000_82580_PM_SPD;
1080 }
1081
1082 wr32(E1000_82580_PHY_POWER_MGMT, data);
1083 return ret_val;
1084}
1085
1086/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001087 * igb_acquire_nvm_82575 - Request for access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -08001088 * @hw: pointer to the HW structure
1089 *
Auke Kok652fff32008-06-27 11:00:18 -07001090 * Acquire the necessary semaphores for exclusive access to the EEPROM.
Auke Kok9d5c8242008-01-24 02:22:38 -08001091 * Set the EEPROM access request bit and wait for EEPROM access grant bit.
1092 * Return successful if access grant bit set, else clear the request for
1093 * EEPROM access and return -E1000_ERR_NVM (-1).
1094 **/
1095static s32 igb_acquire_nvm_82575(struct e1000_hw *hw)
1096{
1097 s32 ret_val;
1098
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001099 ret_val = hw->mac.ops.acquire_swfw_sync(hw, E1000_SWFW_EEP_SM);
Auke Kok9d5c8242008-01-24 02:22:38 -08001100 if (ret_val)
1101 goto out;
1102
1103 ret_val = igb_acquire_nvm(hw);
1104
1105 if (ret_val)
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001106 hw->mac.ops.release_swfw_sync(hw, E1000_SWFW_EEP_SM);
Auke Kok9d5c8242008-01-24 02:22:38 -08001107
1108out:
1109 return ret_val;
1110}
1111
1112/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001113 * igb_release_nvm_82575 - Release exclusive access to EEPROM
Auke Kok9d5c8242008-01-24 02:22:38 -08001114 * @hw: pointer to the HW structure
1115 *
1116 * Stop any current commands to the EEPROM and clear the EEPROM request bit,
1117 * then release the semaphores acquired.
1118 **/
1119static void igb_release_nvm_82575(struct e1000_hw *hw)
1120{
1121 igb_release_nvm(hw);
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001122 hw->mac.ops.release_swfw_sync(hw, E1000_SWFW_EEP_SM);
Auke Kok9d5c8242008-01-24 02:22:38 -08001123}
1124
1125/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001126 * igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -08001127 * @hw: pointer to the HW structure
1128 * @mask: specifies which semaphore to acquire
1129 *
1130 * Acquire the SW/FW semaphore to access the PHY or NVM. The mask
1131 * will also specify which port we're acquiring the lock for.
1132 **/
1133static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
1134{
1135 u32 swfw_sync;
1136 u32 swmask = mask;
1137 u32 fwmask = mask << 16;
1138 s32 ret_val = 0;
1139 s32 i = 0, timeout = 200; /* FIXME: find real value to use here */
1140
1141 while (i < timeout) {
1142 if (igb_get_hw_semaphore(hw)) {
1143 ret_val = -E1000_ERR_SWFW_SYNC;
1144 goto out;
1145 }
1146
1147 swfw_sync = rd32(E1000_SW_FW_SYNC);
1148 if (!(swfw_sync & (fwmask | swmask)))
1149 break;
1150
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001151 /* Firmware currently using resource (fwmask)
Auke Kok9d5c8242008-01-24 02:22:38 -08001152 * or other software thread using resource (swmask)
1153 */
1154 igb_put_hw_semaphore(hw);
1155 mdelay(5);
1156 i++;
1157 }
1158
1159 if (i == timeout) {
Auke Kok652fff32008-06-27 11:00:18 -07001160 hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001161 ret_val = -E1000_ERR_SWFW_SYNC;
1162 goto out;
1163 }
1164
1165 swfw_sync |= swmask;
1166 wr32(E1000_SW_FW_SYNC, swfw_sync);
1167
1168 igb_put_hw_semaphore(hw);
1169
1170out:
1171 return ret_val;
1172}
1173
1174/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001175 * igb_release_swfw_sync_82575 - Release SW/FW semaphore
Auke Kok9d5c8242008-01-24 02:22:38 -08001176 * @hw: pointer to the HW structure
1177 * @mask: specifies which semaphore to acquire
1178 *
1179 * Release the SW/FW semaphore used to access the PHY or NVM. The mask
1180 * will also specify which port we're releasing the lock for.
1181 **/
1182static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
1183{
1184 u32 swfw_sync;
1185
1186 while (igb_get_hw_semaphore(hw) != 0);
1187 /* Empty */
1188
1189 swfw_sync = rd32(E1000_SW_FW_SYNC);
1190 swfw_sync &= ~mask;
1191 wr32(E1000_SW_FW_SYNC, swfw_sync);
1192
1193 igb_put_hw_semaphore(hw);
1194}
1195
1196/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001197 * igb_get_cfg_done_82575 - Read config done bit
Auke Kok9d5c8242008-01-24 02:22:38 -08001198 * @hw: pointer to the HW structure
1199 *
1200 * Read the management control register for the config done bit for
1201 * completion status. NOTE: silicon which is EEPROM-less will fail trying
1202 * to read the config done bit, so an error is *ONLY* logged and returns
1203 * 0. If we were to return with error, EEPROM-less silicon
1204 * would not be able to be reset or change link.
1205 **/
1206static s32 igb_get_cfg_done_82575(struct e1000_hw *hw)
1207{
1208 s32 timeout = PHY_CFG_TIMEOUT;
1209 s32 ret_val = 0;
1210 u32 mask = E1000_NVM_CFG_DONE_PORT_0;
1211
1212 if (hw->bus.func == 1)
1213 mask = E1000_NVM_CFG_DONE_PORT_1;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001214 else if (hw->bus.func == E1000_FUNC_2)
1215 mask = E1000_NVM_CFG_DONE_PORT_2;
1216 else if (hw->bus.func == E1000_FUNC_3)
1217 mask = E1000_NVM_CFG_DONE_PORT_3;
Auke Kok9d5c8242008-01-24 02:22:38 -08001218
1219 while (timeout) {
1220 if (rd32(E1000_EEMNGCTL) & mask)
1221 break;
1222 msleep(1);
1223 timeout--;
1224 }
1225 if (!timeout)
Auke Kok652fff32008-06-27 11:00:18 -07001226 hw_dbg("MNG configuration cycle has not completed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001227
1228 /* If EEPROM is not marked present, init the PHY manually */
1229 if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) &&
1230 (hw->phy.type == e1000_phy_igp_3))
1231 igb_phy_init_script_igp3(hw);
1232
1233 return ret_val;
1234}
1235
1236/**
Akeem G Abodunrinf6878e392013-08-28 02:23:09 +00001237 * igb_get_link_up_info_82575 - Get link speed/duplex info
1238 * @hw: pointer to the HW structure
1239 * @speed: stores the current speed
1240 * @duplex: stores the current duplex
1241 *
1242 * This is a wrapper function, if using the serial gigabit media independent
1243 * interface, use PCS to retrieve the link speed and duplex information.
1244 * Otherwise, use the generic function to get the link speed and duplex info.
1245 **/
1246static s32 igb_get_link_up_info_82575(struct e1000_hw *hw, u16 *speed,
1247 u16 *duplex)
1248{
1249 s32 ret_val;
1250
1251 if (hw->phy.media_type != e1000_media_type_copper)
1252 ret_val = igb_get_pcs_speed_and_duplex_82575(hw, speed,
1253 duplex);
1254 else
1255 ret_val = igb_get_speed_and_duplex_copper(hw, speed,
1256 duplex);
1257
1258 return ret_val;
1259}
1260
1261/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001262 * igb_check_for_link_82575 - Check for link
Auke Kok9d5c8242008-01-24 02:22:38 -08001263 * @hw: pointer to the HW structure
1264 *
1265 * If sgmii is enabled, then use the pcs register to determine link, otherwise
1266 * use the generic interface for determining link.
1267 **/
1268static s32 igb_check_for_link_82575(struct e1000_hw *hw)
1269{
1270 s32 ret_val;
1271 u16 speed, duplex;
1272
Alexander Duyck70d92f82009-10-05 06:31:47 +00001273 if (hw->phy.media_type != e1000_media_type_copper) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001274 ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed,
Alexander Duyck2d064c02008-07-08 15:10:12 -07001275 &duplex);
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001276 /* Use this flag to determine if link needs to be checked or
Alexander Duyck5d0932a2009-01-31 00:53:18 -08001277 * not. If we have link clear the flag so that we do not
1278 * continue to check for link.
1279 */
1280 hw->mac.get_link_status = !hw->mac.serdes_has_link;
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001281
1282 /* Configure Flow Control now that Auto-Neg has completed.
1283 * First, we need to restore the desired flow control
1284 * settings because we may have had to re-autoneg with a
1285 * different link partner.
1286 */
1287 ret_val = igb_config_fc_after_link_up(hw);
1288 if (ret_val)
1289 hw_dbg("Error configuring flow control\n");
Alexander Duyck5d0932a2009-01-31 00:53:18 -08001290 } else {
Auke Kok9d5c8242008-01-24 02:22:38 -08001291 ret_val = igb_check_for_copper_link(hw);
Alexander Duyck5d0932a2009-01-31 00:53:18 -08001292 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001293
1294 return ret_val;
1295}
Alexander Duyck70d92f82009-10-05 06:31:47 +00001296
Auke Kok9d5c8242008-01-24 02:22:38 -08001297/**
Nick Nunley88a268c2010-02-17 01:01:59 +00001298 * igb_power_up_serdes_link_82575 - Power up the serdes link after shutdown
1299 * @hw: pointer to the HW structure
1300 **/
1301void igb_power_up_serdes_link_82575(struct e1000_hw *hw)
1302{
1303 u32 reg;
1304
1305
1306 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1307 !igb_sgmii_active_82575(hw))
1308 return;
1309
1310 /* Enable PCS to turn on link */
1311 reg = rd32(E1000_PCS_CFG0);
1312 reg |= E1000_PCS_CFG_PCS_EN;
1313 wr32(E1000_PCS_CFG0, reg);
1314
1315 /* Power up the laser */
1316 reg = rd32(E1000_CTRL_EXT);
1317 reg &= ~E1000_CTRL_EXT_SDP3_DATA;
1318 wr32(E1000_CTRL_EXT, reg);
1319
1320 /* flush the write to verify completion */
1321 wrfl();
1322 msleep(1);
1323}
1324
1325/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001326 * igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex
Auke Kok9d5c8242008-01-24 02:22:38 -08001327 * @hw: pointer to the HW structure
1328 * @speed: stores the current speed
1329 * @duplex: stores the current duplex
1330 *
Auke Kok652fff32008-06-27 11:00:18 -07001331 * Using the physical coding sub-layer (PCS), retrieve the current speed and
Auke Kok9d5c8242008-01-24 02:22:38 -08001332 * duplex, then store the values in the pointers provided.
1333 **/
1334static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed,
1335 u16 *duplex)
1336{
1337 struct e1000_mac_info *mac = &hw->mac;
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001338 u32 pcs, status;
Auke Kok9d5c8242008-01-24 02:22:38 -08001339
1340 /* Set up defaults for the return values of this function */
1341 mac->serdes_has_link = false;
1342 *speed = 0;
1343 *duplex = 0;
1344
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001345 /* Read the PCS Status register for link state. For non-copper mode,
Auke Kok9d5c8242008-01-24 02:22:38 -08001346 * the status register is not accurate. The PCS status register is
1347 * used instead.
1348 */
1349 pcs = rd32(E1000_PCS_LSTAT);
1350
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001351 /* The link up bit determines when link is up on autoneg. The sync ok
Auke Kok9d5c8242008-01-24 02:22:38 -08001352 * gets set once both sides sync up and agree upon link. Stable link
1353 * can be determined by checking for both link up and link sync ok
1354 */
1355 if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) {
1356 mac->serdes_has_link = true;
1357
1358 /* Detect and store PCS speed */
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001359 if (pcs & E1000_PCS_LSTS_SPEED_1000)
Auke Kok9d5c8242008-01-24 02:22:38 -08001360 *speed = SPEED_1000;
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001361 else if (pcs & E1000_PCS_LSTS_SPEED_100)
Auke Kok9d5c8242008-01-24 02:22:38 -08001362 *speed = SPEED_100;
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001363 else
Auke Kok9d5c8242008-01-24 02:22:38 -08001364 *speed = SPEED_10;
Auke Kok9d5c8242008-01-24 02:22:38 -08001365
1366 /* Detect and store PCS duplex */
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001367 if (pcs & E1000_PCS_LSTS_DUPLEX_FULL)
Auke Kok9d5c8242008-01-24 02:22:38 -08001368 *duplex = FULL_DUPLEX;
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001369 else
Auke Kok9d5c8242008-01-24 02:22:38 -08001370 *duplex = HALF_DUPLEX;
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001371
1372 /* Check if it is an I354 2.5Gb backplane connection. */
1373 if (mac->type == e1000_i354) {
1374 status = rd32(E1000_STATUS);
1375 if ((status & E1000_STATUS_2P5_SKU) &&
1376 !(status & E1000_STATUS_2P5_SKU_OVER)) {
1377 *speed = SPEED_2500;
1378 *duplex = FULL_DUPLEX;
1379 hw_dbg("2500 Mbs, ");
1380 hw_dbg("Full Duplex\n");
1381 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001382 }
Akeem G Abodunrinf1b4d622013-08-28 02:23:04 +00001383
Auke Kok9d5c8242008-01-24 02:22:38 -08001384 }
1385
1386 return 0;
1387}
1388
1389/**
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001390 * igb_shutdown_serdes_link_82575 - Remove link during power down
Alexander Duyck2d064c02008-07-08 15:10:12 -07001391 * @hw: pointer to the HW structure
1392 *
1393 * In the case of fiber serdes, shut down optics and PCS on driver unload
1394 * when management pass thru is not enabled.
1395 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001396void igb_shutdown_serdes_link_82575(struct e1000_hw *hw)
Alexander Duyck2d064c02008-07-08 15:10:12 -07001397{
1398 u32 reg;
1399
Nick Nunley53c992f2010-02-17 01:01:40 +00001400 if (hw->phy.media_type != e1000_media_type_internal_serdes &&
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001401 igb_sgmii_active_82575(hw))
Alexander Duyck2d064c02008-07-08 15:10:12 -07001402 return;
1403
Nick Nunley53c992f2010-02-17 01:01:40 +00001404 if (!igb_enable_mng_pass_thru(hw)) {
Alexander Duyck2d064c02008-07-08 15:10:12 -07001405 /* Disable PCS to turn off link */
1406 reg = rd32(E1000_PCS_CFG0);
1407 reg &= ~E1000_PCS_CFG_PCS_EN;
1408 wr32(E1000_PCS_CFG0, reg);
1409
1410 /* shutdown the laser */
1411 reg = rd32(E1000_CTRL_EXT);
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001412 reg |= E1000_CTRL_EXT_SDP3_DATA;
Alexander Duyck2d064c02008-07-08 15:10:12 -07001413 wr32(E1000_CTRL_EXT, reg);
1414
1415 /* flush the write to verify completion */
1416 wrfl();
1417 msleep(1);
1418 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001419}
1420
1421/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001422 * igb_reset_hw_82575 - Reset hardware
Auke Kok9d5c8242008-01-24 02:22:38 -08001423 * @hw: pointer to the HW structure
1424 *
1425 * This resets the hardware into a known state. This is a
1426 * function pointer entry point called by the api module.
1427 **/
1428static s32 igb_reset_hw_82575(struct e1000_hw *hw)
1429{
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00001430 u32 ctrl;
Auke Kok9d5c8242008-01-24 02:22:38 -08001431 s32 ret_val;
1432
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001433 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Auke Kok9d5c8242008-01-24 02:22:38 -08001434 * on the last TLP read/write transaction when MAC is reset.
1435 */
1436 ret_val = igb_disable_pcie_master(hw);
1437 if (ret_val)
Auke Kok652fff32008-06-27 11:00:18 -07001438 hw_dbg("PCI-E Master disable polling has failed.\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001439
Alexander Duyck009bc062009-07-23 18:08:35 +00001440 /* set the completion timeout for interface */
1441 ret_val = igb_set_pcie_completion_timeout(hw);
1442 if (ret_val) {
1443 hw_dbg("PCI-E Set completion timeout has failed.\n");
1444 }
1445
Auke Kok652fff32008-06-27 11:00:18 -07001446 hw_dbg("Masking off all interrupts\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001447 wr32(E1000_IMC, 0xffffffff);
1448
1449 wr32(E1000_RCTL, 0);
1450 wr32(E1000_TCTL, E1000_TCTL_PSP);
1451 wrfl();
1452
1453 msleep(10);
1454
1455 ctrl = rd32(E1000_CTRL);
1456
Auke Kok652fff32008-06-27 11:00:18 -07001457 hw_dbg("Issuing a global reset to MAC\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001458 wr32(E1000_CTRL, ctrl | E1000_CTRL_RST);
1459
1460 ret_val = igb_get_auto_rd_done(hw);
1461 if (ret_val) {
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001462 /* When auto config read does not complete, do not
Auke Kok9d5c8242008-01-24 02:22:38 -08001463 * return with an error. This can happen in situations
1464 * where there is no eeprom and prevents getting link.
1465 */
Auke Kok652fff32008-06-27 11:00:18 -07001466 hw_dbg("Auto Read Done did not complete\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001467 }
1468
1469 /* If EEPROM is not present, run manual init scripts */
1470 if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0)
1471 igb_reset_init_script_82575(hw);
1472
1473 /* Clear any pending interrupt events. */
1474 wr32(E1000_IMC, 0xffffffff);
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00001475 rd32(E1000_ICR);
Auke Kok9d5c8242008-01-24 02:22:38 -08001476
Alexander Duyck5ac16652009-07-23 18:09:12 +00001477 /* Install any alternate MAC address into RAR0 */
1478 ret_val = igb_check_alt_mac_addr(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001479
1480 return ret_val;
1481}
1482
1483/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001484 * igb_init_hw_82575 - Initialize hardware
Auke Kok9d5c8242008-01-24 02:22:38 -08001485 * @hw: pointer to the HW structure
1486 *
1487 * This inits the hardware readying it for operation.
1488 **/
1489static s32 igb_init_hw_82575(struct e1000_hw *hw)
1490{
1491 struct e1000_mac_info *mac = &hw->mac;
1492 s32 ret_val;
1493 u16 i, rar_count = mac->rar_entry_count;
1494
1495 /* Initialize identification LED */
1496 ret_val = igb_id_led_init(hw);
1497 if (ret_val) {
Auke Kok652fff32008-06-27 11:00:18 -07001498 hw_dbg("Error initializing identification LED\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001499 /* This is not fatal and we should not stop init due to this */
1500 }
1501
1502 /* Disabling VLAN filtering */
Auke Kok652fff32008-06-27 11:00:18 -07001503 hw_dbg("Initializing the IEEE VLAN\n");
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001504 if ((hw->mac.type == e1000_i350) || (hw->mac.type == e1000_i354))
Carolyn Wyborny1128c752011-10-14 00:13:49 +00001505 igb_clear_vfta_i350(hw);
1506 else
1507 igb_clear_vfta(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001508
1509 /* Setup the receive address */
Alexander Duyck5ac16652009-07-23 18:09:12 +00001510 igb_init_rx_addrs(hw, rar_count);
1511
Auke Kok9d5c8242008-01-24 02:22:38 -08001512 /* Zero out the Multicast HASH table */
Auke Kok652fff32008-06-27 11:00:18 -07001513 hw_dbg("Zeroing the MTA\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001514 for (i = 0; i < mac->mta_reg_count; i++)
1515 array_wr32(E1000_MTA, i, 0);
1516
Alexander Duyck68d480c2009-10-05 06:33:08 +00001517 /* Zero out the Unicast HASH table */
1518 hw_dbg("Zeroing the UTA\n");
1519 for (i = 0; i < mac->uta_reg_count; i++)
1520 array_wr32(E1000_UTA, i, 0);
1521
Auke Kok9d5c8242008-01-24 02:22:38 -08001522 /* Setup link and flow control */
1523 ret_val = igb_setup_link(hw);
1524
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001525 /* Clear all of the statistics registers (clear on read). It is
Auke Kok9d5c8242008-01-24 02:22:38 -08001526 * important that we do this after we have tried to establish link
1527 * because the symbol error count will increment wildly if there
1528 * is no link.
1529 */
1530 igb_clear_hw_cntrs_82575(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001531 return ret_val;
1532}
1533
1534/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001535 * igb_setup_copper_link_82575 - Configure copper link settings
Auke Kok9d5c8242008-01-24 02:22:38 -08001536 * @hw: pointer to the HW structure
1537 *
1538 * Configures the link for auto-neg or forced speed and duplex. Then we check
1539 * for link, once link is established calls to configure collision distance
1540 * and flow control are called.
1541 **/
1542static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)
1543{
Alexander Duyck12645a12009-07-23 18:08:16 +00001544 u32 ctrl;
Auke Kok9d5c8242008-01-24 02:22:38 -08001545 s32 ret_val;
Carolyn Wyborny867eb392012-11-13 04:03:20 +00001546 u32 phpm_reg;
Auke Kok9d5c8242008-01-24 02:22:38 -08001547
1548 ctrl = rd32(E1000_CTRL);
1549 ctrl |= E1000_CTRL_SLU;
1550 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1551 wr32(E1000_CTRL, ctrl);
1552
Akeem G Abodunrindb476e82013-08-28 02:22:53 +00001553 /* Clear Go Link Disconnect bit on supported devices */
1554 switch (hw->mac.type) {
1555 case e1000_82580:
1556 case e1000_i350:
1557 case e1000_i210:
1558 case e1000_i211:
Carolyn Wyborny867eb392012-11-13 04:03:20 +00001559 phpm_reg = rd32(E1000_82580_PHY_POWER_MGMT);
1560 phpm_reg &= ~E1000_82580_PM_GO_LINKD;
1561 wr32(E1000_82580_PHY_POWER_MGMT, phpm_reg);
Akeem G Abodunrindb476e82013-08-28 02:22:53 +00001562 break;
1563 default:
1564 break;
Carolyn Wyborny867eb392012-11-13 04:03:20 +00001565 }
1566
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001567 ret_val = igb_setup_serdes_link_82575(hw);
1568 if (ret_val)
1569 goto out;
1570
1571 if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) {
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001572 /* allow time for SFP cage time to power up phy */
1573 msleep(300);
1574
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001575 ret_val = hw->phy.ops.reset(hw);
1576 if (ret_val) {
1577 hw_dbg("Error resetting the PHY.\n");
1578 goto out;
1579 }
1580 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001581 switch (hw->phy.type) {
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00001582 case e1000_phy_i210:
Auke Kok9d5c8242008-01-24 02:22:38 -08001583 case e1000_phy_m88:
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001584 switch (hw->phy.id) {
1585 case I347AT4_E_PHY_ID:
1586 case M88E1112_E_PHY_ID:
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00001587 case M88E1543_E_PHY_ID:
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001588 case I210_I_PHY_ID:
Joseph Gasparakis308fb392010-09-22 17:56:44 +00001589 ret_val = igb_copper_link_setup_m88_gen2(hw);
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001590 break;
1591 default:
Joseph Gasparakis308fb392010-09-22 17:56:44 +00001592 ret_val = igb_copper_link_setup_m88(hw);
Carolyn Wybornyed65bdd2013-02-06 03:35:27 +00001593 break;
1594 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001595 break;
1596 case e1000_phy_igp_3:
1597 ret_val = igb_copper_link_setup_igp(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001598 break;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001599 case e1000_phy_82580:
1600 ret_val = igb_copper_link_setup_82580(hw);
1601 break;
Auke Kok9d5c8242008-01-24 02:22:38 -08001602 default:
1603 ret_val = -E1000_ERR_PHY;
1604 break;
1605 }
1606
1607 if (ret_val)
1608 goto out;
1609
Alexander Duyck81fadd82009-10-05 06:35:03 +00001610 ret_val = igb_setup_copper_link(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001611out:
1612 return ret_val;
1613}
1614
1615/**
Alexander Duyck70d92f82009-10-05 06:31:47 +00001616 * igb_setup_serdes_link_82575 - Setup link for serdes
Auke Kok9d5c8242008-01-24 02:22:38 -08001617 * @hw: pointer to the HW structure
1618 *
Alexander Duyck70d92f82009-10-05 06:31:47 +00001619 * Configure the physical coding sub-layer (PCS) link. The PCS link is
1620 * used on copper connections where the serialized gigabit media independent
1621 * interface (sgmii), or serdes fiber is being used. Configures the link
1622 * for auto-negotiation or forces speed/duplex.
Auke Kok9d5c8242008-01-24 02:22:38 -08001623 **/
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001624static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw)
Auke Kok9d5c8242008-01-24 02:22:38 -08001625{
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001626 u32 ctrl_ext, ctrl_reg, reg, anadv_reg;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001627 bool pcs_autoneg;
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001628 s32 ret_val = E1000_SUCCESS;
1629 u16 data;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001630
1631 if ((hw->phy.media_type != e1000_media_type_internal_serdes) &&
1632 !igb_sgmii_active_82575(hw))
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001633 return ret_val;
1634
Auke Kok9d5c8242008-01-24 02:22:38 -08001635
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001636 /* On the 82575, SerDes loopback mode persists until it is
Auke Kok9d5c8242008-01-24 02:22:38 -08001637 * explicitly turned off or a power cycle is performed. A read to
1638 * the register does not indicate its status. Therefore, we ensure
1639 * loopback mode is disabled during initialization.
1640 */
1641 wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK);
1642
Akeem G. Abodunrine00bf602013-01-29 10:15:26 +00001643 /* power on the sfp cage if present and turn on I2C */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001644 ctrl_ext = rd32(E1000_CTRL_EXT);
1645 ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA;
Akeem G. Abodunrine00bf602013-01-29 10:15:26 +00001646 ctrl_ext |= E1000_CTRL_I2C_ENA;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001647 wr32(E1000_CTRL_EXT, ctrl_ext);
Auke Kok9d5c8242008-01-24 02:22:38 -08001648
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001649 ctrl_reg = rd32(E1000_CTRL);
1650 ctrl_reg |= E1000_CTRL_SLU;
1651
1652 if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) {
1653 /* set both sw defined pins */
1654 ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1;
1655
1656 /* Set switch control to serdes energy detect */
1657 reg = rd32(E1000_CONNSW);
1658 reg |= E1000_CONNSW_ENRGSRC;
1659 wr32(E1000_CONNSW, reg);
Alexander Duyck921aa742009-01-21 14:42:28 -08001660 }
1661
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001662 reg = rd32(E1000_PCS_LCTL);
1663
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001664 /* default pcs_autoneg to the same setting as mac autoneg */
1665 pcs_autoneg = hw->mac.autoneg;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001666
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001667 switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) {
1668 case E1000_CTRL_EXT_LINK_MODE_SGMII:
1669 /* sgmii mode lets the phy handle forcing speed/duplex */
1670 pcs_autoneg = true;
1671 /* autoneg time out should be disabled for SGMII mode */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001672 reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001673 break;
1674 case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
1675 /* disable PCS autoneg and support parallel detect only */
1676 pcs_autoneg = false;
1677 default:
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001678 if (hw->mac.type == e1000_82575 ||
1679 hw->mac.type == e1000_82576) {
1680 ret_val = hw->nvm.ops.read(hw, NVM_COMPAT, 1, &data);
1681 if (ret_val) {
1682 printk(KERN_DEBUG "NVM Read Error\n\n");
1683 return ret_val;
1684 }
1685
1686 if (data & E1000_EEPROM_PCS_AUTONEG_DISABLE_BIT)
1687 pcs_autoneg = false;
1688 }
1689
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001690 /* non-SGMII modes only supports a speed of 1000/Full for the
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001691 * link so it is best to just force the MAC and let the pcs
1692 * link either autoneg or be forced to 1000/Full
1693 */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001694 ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD |
1695 E1000_CTRL_FD | E1000_CTRL_FRCDPX;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001696
1697 /* set speed of 1000/Full if speed/duplex is forced */
1698 reg |= E1000_PCS_LCTL_FSV_1000 | E1000_PCS_LCTL_FDV_FULL;
1699 break;
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001700 }
1701
1702 wr32(E1000_CTRL, ctrl_reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001703
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001704 /* New SerDes mode allows for forcing speed or autonegotiating speed
Auke Kok9d5c8242008-01-24 02:22:38 -08001705 * at 1gb. Autoneg should be default set by most drivers. This is the
1706 * mode that will be compatible with older link partners and switches.
1707 * However, both are supported by the hardware and some drivers/tools.
1708 */
Auke Kok9d5c8242008-01-24 02:22:38 -08001709 reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP |
1710 E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK);
1711
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001712 if (pcs_autoneg) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001713 /* Set PCS register for autoneg */
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001714 reg |= E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001715 E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001716
1717 /* Disable force flow control for autoneg */
1718 reg &= ~E1000_PCS_LCTL_FORCE_FCTRL;
1719
1720 /* Configure flow control advertisement for autoneg */
1721 anadv_reg = rd32(E1000_PCS_ANADV);
1722 anadv_reg &= ~(E1000_TXCW_ASM_DIR | E1000_TXCW_PAUSE);
1723 switch (hw->fc.requested_mode) {
1724 case e1000_fc_full:
1725 case e1000_fc_rx_pause:
1726 anadv_reg |= E1000_TXCW_ASM_DIR;
1727 anadv_reg |= E1000_TXCW_PAUSE;
1728 break;
1729 case e1000_fc_tx_pause:
1730 anadv_reg |= E1000_TXCW_ASM_DIR;
1731 break;
1732 default:
1733 break;
1734 }
1735 wr32(E1000_PCS_ANADV, anadv_reg);
1736
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001737 hw_dbg("Configuring Autoneg:PCS_LCTL=0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001738 } else {
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001739 /* Set PCS register for forced link */
Alexander Duyckd68caec2009-12-23 13:20:47 +00001740 reg |= E1000_PCS_LCTL_FSD; /* Force Speed */
Alexander Duyck70d92f82009-10-05 06:31:47 +00001741
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001742 /* Force flow control for forced link */
1743 reg |= E1000_PCS_LCTL_FORCE_FCTRL;
1744
Alexander Duyckbb2ac472009-11-19 12:42:01 +00001745 hw_dbg("Configuring Forced Link:PCS_LCTL=0x%08X\n", reg);
Auke Kok9d5c8242008-01-24 02:22:38 -08001746 }
Alexander Duyck726c09e2008-08-04 14:59:56 -07001747
Auke Kok9d5c8242008-01-24 02:22:38 -08001748 wr32(E1000_PCS_LCTL, reg);
1749
Carolyn Wybornydaf56e42012-10-23 12:54:33 +00001750 if (!pcs_autoneg && !igb_sgmii_active_82575(hw))
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001751 igb_force_mac_fc(hw);
1752
Carolyn Wyborny2c670b52011-05-24 06:52:51 +00001753 return ret_val;
Auke Kok9d5c8242008-01-24 02:22:38 -08001754}
1755
1756/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001757 * igb_sgmii_active_82575 - Return sgmii state
Auke Kok9d5c8242008-01-24 02:22:38 -08001758 * @hw: pointer to the HW structure
1759 *
1760 * 82575 silicon has a serialized gigabit media independent interface (sgmii)
1761 * which can be enabled for use in the embedded applications. Simply
1762 * return the current state of the sgmii interface.
1763 **/
1764static bool igb_sgmii_active_82575(struct e1000_hw *hw)
1765{
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001766 struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575;
Alexander Duyckc1889bf2009-02-06 23:16:45 +00001767 return dev_spec->sgmii_active;
Auke Kok9d5c8242008-01-24 02:22:38 -08001768}
1769
1770/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001771 * igb_reset_init_script_82575 - Inits HW defaults after reset
Auke Kok9d5c8242008-01-24 02:22:38 -08001772 * @hw: pointer to the HW structure
1773 *
1774 * Inits recommended HW defaults after a reset when there is no EEPROM
1775 * detected. This is only for the 82575.
1776 **/
1777static s32 igb_reset_init_script_82575(struct e1000_hw *hw)
1778{
1779 if (hw->mac.type == e1000_82575) {
Auke Kok652fff32008-06-27 11:00:18 -07001780 hw_dbg("Running reset init script for 82575\n");
Auke Kok9d5c8242008-01-24 02:22:38 -08001781 /* SerDes configuration via SERDESCTRL */
1782 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C);
1783 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78);
1784 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23);
1785 igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15);
1786
1787 /* CCM configuration via CCMCTL register */
1788 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00);
1789 igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00);
1790
1791 /* PCIe lanes configuration */
1792 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC);
1793 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF);
1794 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05);
1795 igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81);
1796
1797 /* PCIe PLL Configuration */
1798 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47);
1799 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00);
1800 igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00);
1801 }
1802
1803 return 0;
1804}
1805
1806/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001807 * igb_read_mac_addr_82575 - Read device MAC address
Auke Kok9d5c8242008-01-24 02:22:38 -08001808 * @hw: pointer to the HW structure
1809 **/
1810static s32 igb_read_mac_addr_82575(struct e1000_hw *hw)
1811{
1812 s32 ret_val = 0;
1813
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001814 /* If there's an alternate MAC address place it in RAR0
Alexander Duyck22896632009-10-05 06:34:25 +00001815 * so that it will override the Si installed default perm
1816 * address.
1817 */
1818 ret_val = igb_check_alt_mac_addr(hw);
1819 if (ret_val)
1820 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -08001821
Alexander Duyck22896632009-10-05 06:34:25 +00001822 ret_val = igb_read_mac_addr(hw);
1823
1824out:
Auke Kok9d5c8242008-01-24 02:22:38 -08001825 return ret_val;
1826}
1827
1828/**
Nick Nunley88a268c2010-02-17 01:01:59 +00001829 * igb_power_down_phy_copper_82575 - Remove link during PHY power down
1830 * @hw: pointer to the HW structure
1831 *
1832 * In the case of a PHY power down to save power, or to turn off link during a
1833 * driver unload, or wake on lan is not enabled, remove the link.
1834 **/
1835void igb_power_down_phy_copper_82575(struct e1000_hw *hw)
1836{
1837 /* If the management interface is not enabled, then power down */
1838 if (!(igb_enable_mng_pass_thru(hw) || igb_check_reset_block(hw)))
1839 igb_power_down_phy_copper(hw);
Nick Nunley88a268c2010-02-17 01:01:59 +00001840}
1841
1842/**
Jeff Kirsher733596b2008-06-27 10:59:59 -07001843 * igb_clear_hw_cntrs_82575 - Clear device specific hardware counters
Auke Kok9d5c8242008-01-24 02:22:38 -08001844 * @hw: pointer to the HW structure
1845 *
1846 * Clears the hardware counters by reading the counter registers.
1847 **/
1848static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw)
1849{
Auke Kok9d5c8242008-01-24 02:22:38 -08001850 igb_clear_hw_cntrs_base(hw);
1851
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001852 rd32(E1000_PRC64);
1853 rd32(E1000_PRC127);
1854 rd32(E1000_PRC255);
1855 rd32(E1000_PRC511);
1856 rd32(E1000_PRC1023);
1857 rd32(E1000_PRC1522);
1858 rd32(E1000_PTC64);
1859 rd32(E1000_PTC127);
1860 rd32(E1000_PTC255);
1861 rd32(E1000_PTC511);
1862 rd32(E1000_PTC1023);
1863 rd32(E1000_PTC1522);
Auke Kok9d5c8242008-01-24 02:22:38 -08001864
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001865 rd32(E1000_ALGNERRC);
1866 rd32(E1000_RXERRC);
1867 rd32(E1000_TNCRS);
1868 rd32(E1000_CEXTERR);
1869 rd32(E1000_TSCTC);
1870 rd32(E1000_TSCTFC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001871
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001872 rd32(E1000_MGTPRC);
1873 rd32(E1000_MGTPDC);
1874 rd32(E1000_MGTPTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001875
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001876 rd32(E1000_IAC);
1877 rd32(E1000_ICRXOC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001878
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001879 rd32(E1000_ICRXPTC);
1880 rd32(E1000_ICRXATC);
1881 rd32(E1000_ICTXPTC);
1882 rd32(E1000_ICTXATC);
1883 rd32(E1000_ICTXQEC);
1884 rd32(E1000_ICTXQMTC);
1885 rd32(E1000_ICRXDMTC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001886
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001887 rd32(E1000_CBTMPC);
1888 rd32(E1000_HTDPMC);
1889 rd32(E1000_CBRMPC);
1890 rd32(E1000_RPTHC);
1891 rd32(E1000_HGPTC);
1892 rd32(E1000_HTCBDPC);
1893 rd32(E1000_HGORCL);
1894 rd32(E1000_HGORCH);
1895 rd32(E1000_HGOTCL);
1896 rd32(E1000_HGOTCH);
1897 rd32(E1000_LENERRS);
Auke Kok9d5c8242008-01-24 02:22:38 -08001898
1899 /* This register should not be read in copper configurations */
Alexander Duyck2fb02a22009-09-14 08:22:54 +00001900 if (hw->phy.media_type == e1000_media_type_internal_serdes ||
1901 igb_sgmii_active_82575(hw))
Alexander Duyckcc9073b2009-10-05 06:31:25 +00001902 rd32(E1000_SCVPC);
Auke Kok9d5c8242008-01-24 02:22:38 -08001903}
1904
Alexander Duyck662d7202008-06-27 11:00:29 -07001905/**
1906 * igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable
1907 * @hw: pointer to the HW structure
1908 *
1909 * After rx enable if managability is enabled then there is likely some
1910 * bad data at the start of the fifo and possibly in the DMA fifo. This
1911 * function clears the fifos and flushes any packets that came in as rx was
1912 * being enabled.
1913 **/
1914void igb_rx_fifo_flush_82575(struct e1000_hw *hw)
1915{
1916 u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled;
1917 int i, ms_wait;
1918
1919 if (hw->mac.type != e1000_82575 ||
1920 !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN))
1921 return;
1922
1923 /* Disable all RX queues */
1924 for (i = 0; i < 4; i++) {
1925 rxdctl[i] = rd32(E1000_RXDCTL(i));
1926 wr32(E1000_RXDCTL(i),
1927 rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE);
1928 }
1929 /* Poll all queues to verify they have shut down */
1930 for (ms_wait = 0; ms_wait < 10; ms_wait++) {
1931 msleep(1);
1932 rx_enabled = 0;
1933 for (i = 0; i < 4; i++)
1934 rx_enabled |= rd32(E1000_RXDCTL(i));
1935 if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE))
1936 break;
1937 }
1938
1939 if (ms_wait == 10)
1940 hw_dbg("Queue disable timed out after 10ms\n");
1941
1942 /* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all
1943 * incoming packets are rejected. Set enable and wait 2ms so that
1944 * any packet that was coming in as RCTL.EN was set is flushed
1945 */
1946 rfctl = rd32(E1000_RFCTL);
1947 wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF);
1948
1949 rlpml = rd32(E1000_RLPML);
1950 wr32(E1000_RLPML, 0);
1951
1952 rctl = rd32(E1000_RCTL);
1953 temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP);
1954 temp_rctl |= E1000_RCTL_LPE;
1955
1956 wr32(E1000_RCTL, temp_rctl);
1957 wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN);
1958 wrfl();
1959 msleep(2);
1960
1961 /* Enable RX queues that were previously enabled and restore our
1962 * previous state
1963 */
1964 for (i = 0; i < 4; i++)
1965 wr32(E1000_RXDCTL(i), rxdctl[i]);
1966 wr32(E1000_RCTL, rctl);
1967 wrfl();
1968
1969 wr32(E1000_RLPML, rlpml);
1970 wr32(E1000_RFCTL, rfctl);
1971
1972 /* Flush receive errors generated by workaround */
1973 rd32(E1000_ROC);
1974 rd32(E1000_RNBC);
1975 rd32(E1000_MPC);
1976}
1977
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001978/**
Alexander Duyck009bc062009-07-23 18:08:35 +00001979 * igb_set_pcie_completion_timeout - set pci-e completion timeout
1980 * @hw: pointer to the HW structure
1981 *
1982 * The defaults for 82575 and 82576 should be in the range of 50us to 50ms,
1983 * however the hardware default for these parts is 500us to 1ms which is less
1984 * than the 10ms recommended by the pci-e spec. To address this we need to
1985 * increase the value to either 10ms to 200ms for capability version 1 config,
1986 * or 16ms to 55ms for version 2.
1987 **/
1988static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw)
1989{
1990 u32 gcr = rd32(E1000_GCR);
1991 s32 ret_val = 0;
1992 u16 pcie_devctl2;
1993
1994 /* only take action if timeout value is defaulted to 0 */
1995 if (gcr & E1000_GCR_CMPL_TMOUT_MASK)
1996 goto out;
1997
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001998 /* if capabilities version is type 1 we can write the
Alexander Duyck009bc062009-07-23 18:08:35 +00001999 * timeout of 10ms to 200ms through the GCR register
2000 */
2001 if (!(gcr & E1000_GCR_CAP_VER2)) {
2002 gcr |= E1000_GCR_CMPL_TMOUT_10ms;
2003 goto out;
2004 }
2005
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002006 /* for version 2 capabilities we need to write the config space
Alexander Duyck009bc062009-07-23 18:08:35 +00002007 * directly in order to set the completion timeout value for
2008 * 16ms to 55ms
2009 */
2010 ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
2011 &pcie_devctl2);
2012 if (ret_val)
2013 goto out;
2014
2015 pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms;
2016
2017 ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2,
2018 &pcie_devctl2);
2019out:
2020 /* disable completion timeout resend */
2021 gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND;
2022
2023 wr32(E1000_GCR, gcr);
2024 return ret_val;
2025}
2026
2027/**
Greg Rose13800462010-11-06 02:08:26 +00002028 * igb_vmdq_set_anti_spoofing_pf - enable or disable anti-spoofing
2029 * @hw: pointer to the hardware struct
2030 * @enable: state to enter, either enabled or disabled
2031 * @pf: Physical Function pool - do not set anti-spoofing for the PF
2032 *
2033 * enables/disables L2 switch anti-spoofing functionality.
2034 **/
2035void igb_vmdq_set_anti_spoofing_pf(struct e1000_hw *hw, bool enable, int pf)
2036{
Lior Levy22c12752013-03-12 15:49:32 +00002037 u32 reg_val, reg_offset;
Greg Rose13800462010-11-06 02:08:26 +00002038
2039 switch (hw->mac.type) {
2040 case e1000_82576:
Lior Levy22c12752013-03-12 15:49:32 +00002041 reg_offset = E1000_DTXSWC;
2042 break;
Greg Rose13800462010-11-06 02:08:26 +00002043 case e1000_i350:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002044 case e1000_i354:
Lior Levy22c12752013-03-12 15:49:32 +00002045 reg_offset = E1000_TXSWC;
Greg Rose13800462010-11-06 02:08:26 +00002046 break;
2047 default:
Lior Levy22c12752013-03-12 15:49:32 +00002048 return;
Greg Rose13800462010-11-06 02:08:26 +00002049 }
Lior Levy22c12752013-03-12 15:49:32 +00002050
2051 reg_val = rd32(reg_offset);
2052 if (enable) {
2053 reg_val |= (E1000_DTXSWC_MAC_SPOOF_MASK |
2054 E1000_DTXSWC_VLAN_SPOOF_MASK);
2055 /* The PF can spoof - it has to in order to
2056 * support emulation mode NICs
2057 */
2058 reg_val ^= (1 << pf | 1 << (pf + MAX_NUM_VFS));
2059 } else {
2060 reg_val &= ~(E1000_DTXSWC_MAC_SPOOF_MASK |
2061 E1000_DTXSWC_VLAN_SPOOF_MASK);
2062 }
2063 wr32(reg_offset, reg_val);
Greg Rose13800462010-11-06 02:08:26 +00002064}
2065
2066/**
Alexander Duyck4ae196d2009-02-19 20:40:07 -08002067 * igb_vmdq_set_loopback_pf - enable or disable vmdq loopback
2068 * @hw: pointer to the hardware struct
2069 * @enable: state to enter, either enabled or disabled
2070 *
2071 * enables/disables L2 switch loopback functionality.
2072 **/
2073void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable)
2074{
Akeem G. Abodunrinca2e3e72011-09-08 20:39:48 +00002075 u32 dtxswc;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08002076
Akeem G. Abodunrinca2e3e72011-09-08 20:39:48 +00002077 switch (hw->mac.type) {
2078 case e1000_82576:
2079 dtxswc = rd32(E1000_DTXSWC);
2080 if (enable)
2081 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
2082 else
2083 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
2084 wr32(E1000_DTXSWC, dtxswc);
2085 break;
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002086 case e1000_i354:
Akeem G. Abodunrinca2e3e72011-09-08 20:39:48 +00002087 case e1000_i350:
2088 dtxswc = rd32(E1000_TXSWC);
2089 if (enable)
2090 dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN;
2091 else
2092 dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN;
2093 wr32(E1000_TXSWC, dtxswc);
2094 break;
2095 default:
2096 /* Currently no other hardware supports loopback */
2097 break;
2098 }
Alexander Duyck4ae196d2009-02-19 20:40:07 -08002099
Alexander Duyck4ae196d2009-02-19 20:40:07 -08002100}
2101
2102/**
2103 * igb_vmdq_set_replication_pf - enable or disable vmdq replication
2104 * @hw: pointer to the hardware struct
2105 * @enable: state to enter, either enabled or disabled
2106 *
2107 * enables/disables replication of packets across multiple pools.
2108 **/
2109void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable)
2110{
2111 u32 vt_ctl = rd32(E1000_VT_CTL);
2112
2113 if (enable)
2114 vt_ctl |= E1000_VT_CTL_VM_REPL_EN;
2115 else
2116 vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN;
2117
2118 wr32(E1000_VT_CTL, vt_ctl);
2119}
2120
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002121/**
2122 * igb_read_phy_reg_82580 - Read 82580 MDI control register
2123 * @hw: pointer to the HW structure
2124 * @offset: register offset to be read
2125 * @data: pointer to the read data
2126 *
2127 * Reads the MDI control register in the PHY at offset and stores the
2128 * information read to data.
2129 **/
2130static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data)
2131{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002132 s32 ret_val;
2133
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002134 ret_val = hw->phy.ops.acquire(hw);
2135 if (ret_val)
2136 goto out;
2137
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002138 ret_val = igb_read_phy_reg_mdic(hw, offset, data);
2139
2140 hw->phy.ops.release(hw);
2141
2142out:
2143 return ret_val;
2144}
2145
2146/**
2147 * igb_write_phy_reg_82580 - Write 82580 MDI control register
2148 * @hw: pointer to the HW structure
2149 * @offset: register offset to write to
2150 * @data: data to write to register at offset
2151 *
2152 * Writes data to MDI control register in the PHY at offset.
2153 **/
2154static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data)
2155{
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002156 s32 ret_val;
2157
2158
2159 ret_val = hw->phy.ops.acquire(hw);
2160 if (ret_val)
2161 goto out;
2162
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002163 ret_val = igb_write_phy_reg_mdic(hw, offset, data);
2164
2165 hw->phy.ops.release(hw);
2166
2167out:
2168 return ret_val;
2169}
2170
2171/**
Nick Nunley08451e22010-07-26 13:15:29 +00002172 * igb_reset_mdicnfg_82580 - Reset MDICNFG destination and com_mdio bits
2173 * @hw: pointer to the HW structure
2174 *
2175 * This resets the the MDICNFG.Destination and MDICNFG.Com_MDIO bits based on
2176 * the values found in the EEPROM. This addresses an issue in which these
2177 * bits are not restored from EEPROM after reset.
2178 **/
2179static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw)
2180{
2181 s32 ret_val = 0;
2182 u32 mdicnfg;
Gasparakis, Joseph1b5dda32010-12-09 01:41:01 +00002183 u16 nvm_data = 0;
Nick Nunley08451e22010-07-26 13:15:29 +00002184
2185 if (hw->mac.type != e1000_82580)
2186 goto out;
2187 if (!igb_sgmii_active_82575(hw))
2188 goto out;
2189
2190 ret_val = hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A +
2191 NVM_82580_LAN_FUNC_OFFSET(hw->bus.func), 1,
2192 &nvm_data);
2193 if (ret_val) {
2194 hw_dbg("NVM Read Error\n");
2195 goto out;
2196 }
2197
2198 mdicnfg = rd32(E1000_MDICNFG);
2199 if (nvm_data & NVM_WORD24_EXT_MDIO)
2200 mdicnfg |= E1000_MDICNFG_EXT_MDIO;
2201 if (nvm_data & NVM_WORD24_COM_MDIO)
2202 mdicnfg |= E1000_MDICNFG_COM_MDIO;
2203 wr32(E1000_MDICNFG, mdicnfg);
2204out:
2205 return ret_val;
2206}
2207
2208/**
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002209 * igb_reset_hw_82580 - Reset hardware
2210 * @hw: pointer to the HW structure
2211 *
2212 * This resets function or entire device (all ports, etc.)
2213 * to a known state.
2214 **/
2215static s32 igb_reset_hw_82580(struct e1000_hw *hw)
2216{
2217 s32 ret_val = 0;
2218 /* BH SW mailbox bit in SW_FW_SYNC */
2219 u16 swmbsw_mask = E1000_SW_SYNCH_MB;
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00002220 u32 ctrl;
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002221 bool global_device_reset = hw->dev_spec._82575.global_device_reset;
2222
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002223 hw->dev_spec._82575.global_device_reset = false;
2224
Carolyn Wybornya0483e22012-11-22 01:24:08 +00002225 /* due to hw errata, global device reset doesn't always
2226 * work on 82580
2227 */
2228 if (hw->mac.type == e1000_82580)
2229 global_device_reset = false;
2230
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002231 /* Get current control state. */
2232 ctrl = rd32(E1000_CTRL);
2233
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002234 /* Prevent the PCI-E bus from sticking if there is no TLP connection
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002235 * on the last TLP read/write transaction when MAC is reset.
2236 */
2237 ret_val = igb_disable_pcie_master(hw);
2238 if (ret_val)
2239 hw_dbg("PCI-E Master disable polling has failed.\n");
2240
2241 hw_dbg("Masking off all interrupts\n");
2242 wr32(E1000_IMC, 0xffffffff);
2243 wr32(E1000_RCTL, 0);
2244 wr32(E1000_TCTL, E1000_TCTL_PSP);
2245 wrfl();
2246
2247 msleep(10);
2248
2249 /* Determine whether or not a global dev reset is requested */
2250 if (global_device_reset &&
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00002251 hw->mac.ops.acquire_swfw_sync(hw, swmbsw_mask))
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002252 global_device_reset = false;
2253
2254 if (global_device_reset &&
2255 !(rd32(E1000_STATUS) & E1000_STAT_DEV_RST_SET))
2256 ctrl |= E1000_CTRL_DEV_RST;
2257 else
2258 ctrl |= E1000_CTRL_RST;
2259
2260 wr32(E1000_CTRL, ctrl);
Carolyn Wyborny064b4332011-06-25 13:18:12 +00002261 wrfl();
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002262
2263 /* Add delay to insure DEV_RST has time to complete */
2264 if (global_device_reset)
2265 msleep(5);
2266
2267 ret_val = igb_get_auto_rd_done(hw);
2268 if (ret_val) {
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002269 /* When auto config read does not complete, do not
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002270 * return with an error. This can happen in situations
2271 * where there is no eeprom and prevents getting link.
2272 */
2273 hw_dbg("Auto Read Done did not complete\n");
2274 }
2275
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002276 /* clear global device reset status bit */
2277 wr32(E1000_STATUS, E1000_STAT_DEV_RST_SET);
2278
2279 /* Clear any pending interrupt events. */
2280 wr32(E1000_IMC, 0xffffffff);
Akeem G Abodunrine5c33702013-06-06 01:31:09 +00002281 rd32(E1000_ICR);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002282
Nick Nunley08451e22010-07-26 13:15:29 +00002283 ret_val = igb_reset_mdicnfg_82580(hw);
2284 if (ret_val)
2285 hw_dbg("Could not reset MDICNFG based on EEPROM\n");
2286
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002287 /* Install any alternate MAC address into RAR0 */
2288 ret_val = igb_check_alt_mac_addr(hw);
2289
2290 /* Release semaphore */
2291 if (global_device_reset)
Carolyn Wybornyf96a8a02012-04-06 23:25:19 +00002292 hw->mac.ops.release_swfw_sync(hw, swmbsw_mask);
Alexander Duyckbb2ac472009-11-19 12:42:01 +00002293
2294 return ret_val;
2295}
2296
2297/**
2298 * igb_rxpbs_adjust_82580 - adjust RXPBS value to reflect actual RX PBA size
2299 * @data: data received by reading RXPBS register
2300 *
2301 * The 82580 uses a table based approach for packet buffer allocation sizes.
2302 * This function converts the retrieved value into the correct table value
2303 * 0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7
2304 * 0x0 36 72 144 1 2 4 8 16
2305 * 0x8 35 70 140 rsv rsv rsv rsv rsv
2306 */
2307u16 igb_rxpbs_adjust_82580(u32 data)
2308{
2309 u16 ret_val = 0;
2310
2311 if (data < E1000_82580_RXPBS_TABLE_SIZE)
2312 ret_val = e1000_82580_rxpbs_table[data];
2313
2314 return ret_val;
2315}
2316
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002317/**
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002318 * igb_validate_nvm_checksum_with_offset - Validate EEPROM
2319 * checksum
2320 * @hw: pointer to the HW structure
2321 * @offset: offset in words of the checksum protected region
2322 *
2323 * Calculates the EEPROM checksum by reading/adding each word of the EEPROM
2324 * and then verifies that the sum of the EEPROM is equal to 0xBABA.
2325 **/
Emil Tantilovbed45a62011-08-30 06:35:04 +00002326static s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw,
2327 u16 offset)
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002328{
2329 s32 ret_val = 0;
2330 u16 checksum = 0;
2331 u16 i, nvm_data;
2332
2333 for (i = offset; i < ((NVM_CHECKSUM_REG + offset) + 1); i++) {
2334 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
2335 if (ret_val) {
2336 hw_dbg("NVM Read Error\n");
2337 goto out;
2338 }
2339 checksum += nvm_data;
2340 }
2341
2342 if (checksum != (u16) NVM_SUM) {
2343 hw_dbg("NVM Checksum Invalid\n");
2344 ret_val = -E1000_ERR_NVM;
2345 goto out;
2346 }
2347
2348out:
2349 return ret_val;
2350}
2351
2352/**
2353 * igb_update_nvm_checksum_with_offset - Update EEPROM
2354 * checksum
2355 * @hw: pointer to the HW structure
2356 * @offset: offset in words of the checksum protected region
2357 *
2358 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
2359 * up to the checksum. Then calculates the EEPROM checksum and writes the
2360 * value to the EEPROM.
2361 **/
Emil Tantilovbed45a62011-08-30 06:35:04 +00002362static s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset)
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002363{
2364 s32 ret_val;
2365 u16 checksum = 0;
2366 u16 i, nvm_data;
2367
2368 for (i = offset; i < (NVM_CHECKSUM_REG + offset); i++) {
2369 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
2370 if (ret_val) {
2371 hw_dbg("NVM Read Error while updating checksum.\n");
2372 goto out;
2373 }
2374 checksum += nvm_data;
2375 }
2376 checksum = (u16) NVM_SUM - checksum;
2377 ret_val = hw->nvm.ops.write(hw, (NVM_CHECKSUM_REG + offset), 1,
2378 &checksum);
2379 if (ret_val)
2380 hw_dbg("NVM Write Error while updating checksum.\n");
2381
2382out:
2383 return ret_val;
2384}
2385
2386/**
2387 * igb_validate_nvm_checksum_82580 - Validate EEPROM checksum
2388 * @hw: pointer to the HW structure
2389 *
2390 * Calculates the EEPROM section checksum by reading/adding each word of
2391 * the EEPROM and then verifies that the sum of the EEPROM is
2392 * equal to 0xBABA.
2393 **/
2394static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw)
2395{
2396 s32 ret_val = 0;
2397 u16 eeprom_regions_count = 1;
2398 u16 j, nvm_data;
2399 u16 nvm_offset;
2400
2401 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
2402 if (ret_val) {
2403 hw_dbg("NVM Read Error\n");
2404 goto out;
2405 }
2406
2407 if (nvm_data & NVM_COMPATIBILITY_BIT_MASK) {
Stefan Assmann34a03262011-04-05 04:27:05 +00002408 /* if checksums compatibility bit is set validate checksums
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002409 * for all 4 ports.
2410 */
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002411 eeprom_regions_count = 4;
2412 }
2413
2414 for (j = 0; j < eeprom_regions_count; j++) {
2415 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2416 ret_val = igb_validate_nvm_checksum_with_offset(hw,
2417 nvm_offset);
2418 if (ret_val != 0)
2419 goto out;
2420 }
2421
2422out:
2423 return ret_val;
2424}
2425
2426/**
2427 * igb_update_nvm_checksum_82580 - Update EEPROM checksum
2428 * @hw: pointer to the HW structure
2429 *
2430 * Updates the EEPROM section checksums for all 4 ports by reading/adding
2431 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
2432 * checksum and writes the value to the EEPROM.
2433 **/
2434static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw)
2435{
2436 s32 ret_val;
2437 u16 j, nvm_data;
2438 u16 nvm_offset;
2439
2440 ret_val = hw->nvm.ops.read(hw, NVM_COMPATIBILITY_REG_3, 1, &nvm_data);
2441 if (ret_val) {
2442 hw_dbg("NVM Read Error while updating checksum"
2443 " compatibility bit.\n");
2444 goto out;
2445 }
2446
2447 if ((nvm_data & NVM_COMPATIBILITY_BIT_MASK) == 0) {
2448 /* set compatibility bit to validate checksums appropriately */
2449 nvm_data = nvm_data | NVM_COMPATIBILITY_BIT_MASK;
2450 ret_val = hw->nvm.ops.write(hw, NVM_COMPATIBILITY_REG_3, 1,
2451 &nvm_data);
2452 if (ret_val) {
2453 hw_dbg("NVM Write Error while updating checksum"
2454 " compatibility bit.\n");
2455 goto out;
2456 }
2457 }
2458
2459 for (j = 0; j < 4; j++) {
2460 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2461 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
2462 if (ret_val)
2463 goto out;
2464 }
2465
2466out:
2467 return ret_val;
2468}
2469
2470/**
2471 * igb_validate_nvm_checksum_i350 - Validate EEPROM checksum
2472 * @hw: pointer to the HW structure
2473 *
2474 * Calculates the EEPROM section checksum by reading/adding each word of
2475 * the EEPROM and then verifies that the sum of the EEPROM is
2476 * equal to 0xBABA.
2477 **/
2478static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw)
2479{
2480 s32 ret_val = 0;
2481 u16 j;
2482 u16 nvm_offset;
2483
2484 for (j = 0; j < 4; j++) {
2485 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2486 ret_val = igb_validate_nvm_checksum_with_offset(hw,
2487 nvm_offset);
2488 if (ret_val != 0)
2489 goto out;
2490 }
2491
2492out:
2493 return ret_val;
2494}
2495
2496/**
2497 * igb_update_nvm_checksum_i350 - Update EEPROM checksum
2498 * @hw: pointer to the HW structure
2499 *
2500 * Updates the EEPROM section checksums for all 4 ports by reading/adding
2501 * each word of the EEPROM up to the checksum. Then calculates the EEPROM
2502 * checksum and writes the value to the EEPROM.
2503 **/
2504static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw)
2505{
2506 s32 ret_val = 0;
2507 u16 j;
2508 u16 nvm_offset;
2509
2510 for (j = 0; j < 4; j++) {
2511 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(j);
2512 ret_val = igb_update_nvm_checksum_with_offset(hw, nvm_offset);
2513 if (ret_val != 0)
2514 goto out;
2515 }
2516
2517out:
2518 return ret_val;
2519}
Stefan Assmann34a03262011-04-05 04:27:05 +00002520
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002521/**
Matthew Vick87371b92013-02-21 03:32:52 +00002522 * __igb_access_emi_reg - Read/write EMI register
2523 * @hw: pointer to the HW structure
2524 * @addr: EMI address to program
2525 * @data: pointer to value to read/write from/to the EMI address
2526 * @read: boolean flag to indicate read or write
2527 **/
2528static s32 __igb_access_emi_reg(struct e1000_hw *hw, u16 address,
2529 u16 *data, bool read)
2530{
2531 s32 ret_val = E1000_SUCCESS;
2532
2533 ret_val = hw->phy.ops.write_reg(hw, E1000_EMIADD, address);
2534 if (ret_val)
2535 return ret_val;
2536
2537 if (read)
2538 ret_val = hw->phy.ops.read_reg(hw, E1000_EMIDATA, data);
2539 else
2540 ret_val = hw->phy.ops.write_reg(hw, E1000_EMIDATA, *data);
2541
2542 return ret_val;
2543}
2544
2545/**
2546 * igb_read_emi_reg - Read Extended Management Interface register
2547 * @hw: pointer to the HW structure
2548 * @addr: EMI address to program
2549 * @data: value to be read from the EMI address
2550 **/
2551s32 igb_read_emi_reg(struct e1000_hw *hw, u16 addr, u16 *data)
2552{
2553 return __igb_access_emi_reg(hw, addr, data, true);
2554}
2555
2556/**
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002557 * igb_set_eee_i350 - Enable/disable EEE support
2558 * @hw: pointer to the HW structure
2559 *
2560 * Enable/disable EEE based on setting in dev_spec structure.
2561 *
2562 **/
2563s32 igb_set_eee_i350(struct e1000_hw *hw)
2564{
2565 s32 ret_val = 0;
Akeem G. Abodunrine5461112012-09-06 01:28:31 +00002566 u32 ipcnfg, eeer;
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002567
Akeem G. Abodunrine5461112012-09-06 01:28:31 +00002568 if ((hw->mac.type < e1000_i350) ||
2569 (hw->phy.media_type != e1000_media_type_copper))
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002570 goto out;
2571 ipcnfg = rd32(E1000_IPCNFG);
2572 eeer = rd32(E1000_EEER);
2573
2574 /* enable or disable per user setting */
2575 if (!(hw->dev_spec._82575.eee_disable)) {
Carolyn Wyborny40b20122012-10-19 05:31:43 +00002576 u32 eee_su = rd32(E1000_EEE_SU);
2577
2578 ipcnfg |= (E1000_IPCNFG_EEE_1G_AN | E1000_IPCNFG_EEE_100M_AN);
2579 eeer |= (E1000_EEER_TX_LPI_EN | E1000_EEER_RX_LPI_EN |
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002580 E1000_EEER_LPI_FC);
2581
Carolyn Wyborny40b20122012-10-19 05:31:43 +00002582 /* This bit should not be set in normal operation. */
2583 if (eee_su & E1000_EEE_SU_LPI_CLK_STP)
2584 hw_dbg("LPI Clock Stop Bit should not be set!\n");
2585
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002586 } else {
2587 ipcnfg &= ~(E1000_IPCNFG_EEE_1G_AN |
2588 E1000_IPCNFG_EEE_100M_AN);
2589 eeer &= ~(E1000_EEER_TX_LPI_EN |
2590 E1000_EEER_RX_LPI_EN |
2591 E1000_EEER_LPI_FC);
2592 }
2593 wr32(E1000_IPCNFG, ipcnfg);
2594 wr32(E1000_EEER, eeer);
Akeem G. Abodunrine5461112012-09-06 01:28:31 +00002595 rd32(E1000_IPCNFG);
2596 rd32(E1000_EEER);
Carolyn Wyborny09b068d2011-03-11 20:42:13 -08002597out:
2598
2599 return ret_val;
2600}
Carolyn Wyborny4322e562011-03-11 20:43:18 -08002601
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002602/**
2603 * igb_set_eee_i354 - Enable/disable EEE support
2604 * @hw: pointer to the HW structure
2605 *
2606 * Enable/disable EEE legacy mode based on setting in dev_spec structure.
2607 *
2608 **/
2609s32 igb_set_eee_i354(struct e1000_hw *hw)
2610{
2611 struct e1000_phy_info *phy = &hw->phy;
2612 s32 ret_val = 0;
2613 u16 phy_data;
2614
2615 if ((hw->phy.media_type != e1000_media_type_copper) ||
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00002616 (phy->id != M88E1543_E_PHY_ID))
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002617 goto out;
2618
2619 if (!hw->dev_spec._82575.eee_disable) {
2620 /* Switch to PHY page 18. */
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00002621 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 18);
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002622 if (ret_val)
2623 goto out;
2624
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00002625 ret_val = phy->ops.read_reg(hw, E1000_M88E1543_EEE_CTRL_1,
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002626 &phy_data);
2627 if (ret_val)
2628 goto out;
2629
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00002630 phy_data |= E1000_M88E1543_EEE_CTRL_1_MS;
2631 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_EEE_CTRL_1,
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002632 phy_data);
2633 if (ret_val)
2634 goto out;
2635
2636 /* Return the PHY to page 0. */
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00002637 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0);
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002638 if (ret_val)
2639 goto out;
2640
2641 /* Turn on EEE advertisement. */
2642 ret_val = igb_read_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2643 E1000_EEE_ADV_DEV_I354,
2644 &phy_data);
2645 if (ret_val)
2646 goto out;
2647
2648 phy_data |= E1000_EEE_ADV_100_SUPPORTED |
2649 E1000_EEE_ADV_1000_SUPPORTED;
2650 ret_val = igb_write_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2651 E1000_EEE_ADV_DEV_I354,
2652 phy_data);
2653 } else {
2654 /* Turn off EEE advertisement. */
2655 ret_val = igb_read_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2656 E1000_EEE_ADV_DEV_I354,
2657 &phy_data);
2658 if (ret_val)
2659 goto out;
2660
2661 phy_data &= ~(E1000_EEE_ADV_100_SUPPORTED |
2662 E1000_EEE_ADV_1000_SUPPORTED);
2663 ret_val = igb_write_xmdio_reg(hw, E1000_EEE_ADV_ADDR_I354,
2664 E1000_EEE_ADV_DEV_I354,
2665 phy_data);
2666 }
2667
2668out:
2669 return ret_val;
2670}
2671
2672/**
2673 * igb_get_eee_status_i354 - Get EEE status
2674 * @hw: pointer to the HW structure
2675 * @status: EEE status
2676 *
2677 * Get EEE status by guessing based on whether Tx or Rx LPI indications have
2678 * been received.
2679 **/
2680s32 igb_get_eee_status_i354(struct e1000_hw *hw, bool *status)
2681{
2682 struct e1000_phy_info *phy = &hw->phy;
2683 s32 ret_val = 0;
2684 u16 phy_data;
2685
2686 /* Check if EEE is supported on this device. */
2687 if ((hw->phy.media_type != e1000_media_type_copper) ||
Akeem G Abodunrin99af4722013-08-28 02:22:58 +00002688 (phy->id != M88E1543_E_PHY_ID))
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00002689 goto out;
2690
2691 ret_val = igb_read_xmdio_reg(hw, E1000_PCS_STATUS_ADDR_I354,
2692 E1000_PCS_STATUS_DEV_I354,
2693 &phy_data);
2694 if (ret_val)
2695 goto out;
2696
2697 *status = phy_data & (E1000_PCS_STATUS_TX_LPI_RCVD |
2698 E1000_PCS_STATUS_RX_LPI_RCVD) ? true : false;
2699
2700out:
2701 return ret_val;
2702}
2703
Carolyn Wybornye4288932012-12-07 03:01:42 +00002704static const u8 e1000_emc_temp_data[4] = {
2705 E1000_EMC_INTERNAL_DATA,
2706 E1000_EMC_DIODE1_DATA,
2707 E1000_EMC_DIODE2_DATA,
2708 E1000_EMC_DIODE3_DATA
2709};
2710static const u8 e1000_emc_therm_limit[4] = {
2711 E1000_EMC_INTERNAL_THERM_LIMIT,
2712 E1000_EMC_DIODE1_THERM_LIMIT,
2713 E1000_EMC_DIODE2_THERM_LIMIT,
2714 E1000_EMC_DIODE3_THERM_LIMIT
2715};
2716
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002717/**
2718 * igb_get_thermal_sensor_data_generic - Gathers thermal sensor data
Carolyn Wybornye4288932012-12-07 03:01:42 +00002719 * @hw: pointer to hardware structure
2720 *
2721 * Updates the temperatures in mac.thermal_sensor_data
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002722 **/
Carolyn Wybornye4288932012-12-07 03:01:42 +00002723s32 igb_get_thermal_sensor_data_generic(struct e1000_hw *hw)
2724{
2725 s32 status = E1000_SUCCESS;
2726 u16 ets_offset;
2727 u16 ets_cfg;
2728 u16 ets_sensor;
2729 u8 num_sensors;
2730 u8 sensor_index;
2731 u8 sensor_location;
2732 u8 i;
2733 struct e1000_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
2734
2735 if ((hw->mac.type != e1000_i350) || (hw->bus.func != 0))
2736 return E1000_NOT_IMPLEMENTED;
2737
2738 data->sensor[0].temp = (rd32(E1000_THMJT) & 0xFF);
2739
2740 /* Return the internal sensor only if ETS is unsupported */
2741 hw->nvm.ops.read(hw, NVM_ETS_CFG, 1, &ets_offset);
2742 if ((ets_offset == 0x0000) || (ets_offset == 0xFFFF))
2743 return status;
2744
2745 hw->nvm.ops.read(hw, ets_offset, 1, &ets_cfg);
2746 if (((ets_cfg & NVM_ETS_TYPE_MASK) >> NVM_ETS_TYPE_SHIFT)
2747 != NVM_ETS_TYPE_EMC)
2748 return E1000_NOT_IMPLEMENTED;
2749
2750 num_sensors = (ets_cfg & NVM_ETS_NUM_SENSORS_MASK);
2751 if (num_sensors > E1000_MAX_SENSORS)
2752 num_sensors = E1000_MAX_SENSORS;
2753
2754 for (i = 1; i < num_sensors; i++) {
2755 hw->nvm.ops.read(hw, (ets_offset + i), 1, &ets_sensor);
2756 sensor_index = ((ets_sensor & NVM_ETS_DATA_INDEX_MASK) >>
2757 NVM_ETS_DATA_INDEX_SHIFT);
2758 sensor_location = ((ets_sensor & NVM_ETS_DATA_LOC_MASK) >>
2759 NVM_ETS_DATA_LOC_SHIFT);
2760
2761 if (sensor_location != 0)
2762 hw->phy.ops.read_i2c_byte(hw,
2763 e1000_emc_temp_data[sensor_index],
2764 E1000_I2C_THERMAL_SENSOR_ADDR,
2765 &data->sensor[i].temp);
2766 }
2767 return status;
2768}
2769
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002770/**
2771 * igb_init_thermal_sensor_thresh_generic - Sets thermal sensor thresholds
Carolyn Wybornye4288932012-12-07 03:01:42 +00002772 * @hw: pointer to hardware structure
2773 *
2774 * Sets the thermal sensor thresholds according to the NVM map
2775 * and save off the threshold and location values into mac.thermal_sensor_data
Jeff Kirsherb980ac12013-02-23 07:29:56 +00002776 **/
Carolyn Wybornye4288932012-12-07 03:01:42 +00002777s32 igb_init_thermal_sensor_thresh_generic(struct e1000_hw *hw)
2778{
2779 s32 status = E1000_SUCCESS;
2780 u16 ets_offset;
2781 u16 ets_cfg;
2782 u16 ets_sensor;
2783 u8 low_thresh_delta;
2784 u8 num_sensors;
2785 u8 sensor_index;
2786 u8 sensor_location;
2787 u8 therm_limit;
2788 u8 i;
2789 struct e1000_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
2790
2791 if ((hw->mac.type != e1000_i350) || (hw->bus.func != 0))
2792 return E1000_NOT_IMPLEMENTED;
2793
2794 memset(data, 0, sizeof(struct e1000_thermal_sensor_data));
2795
2796 data->sensor[0].location = 0x1;
2797 data->sensor[0].caution_thresh =
2798 (rd32(E1000_THHIGHTC) & 0xFF);
2799 data->sensor[0].max_op_thresh =
2800 (rd32(E1000_THLOWTC) & 0xFF);
2801
2802 /* Return the internal sensor only if ETS is unsupported */
2803 hw->nvm.ops.read(hw, NVM_ETS_CFG, 1, &ets_offset);
2804 if ((ets_offset == 0x0000) || (ets_offset == 0xFFFF))
2805 return status;
2806
2807 hw->nvm.ops.read(hw, ets_offset, 1, &ets_cfg);
2808 if (((ets_cfg & NVM_ETS_TYPE_MASK) >> NVM_ETS_TYPE_SHIFT)
2809 != NVM_ETS_TYPE_EMC)
2810 return E1000_NOT_IMPLEMENTED;
2811
2812 low_thresh_delta = ((ets_cfg & NVM_ETS_LTHRES_DELTA_MASK) >>
2813 NVM_ETS_LTHRES_DELTA_SHIFT);
2814 num_sensors = (ets_cfg & NVM_ETS_NUM_SENSORS_MASK);
2815
2816 for (i = 1; i <= num_sensors; i++) {
2817 hw->nvm.ops.read(hw, (ets_offset + i), 1, &ets_sensor);
2818 sensor_index = ((ets_sensor & NVM_ETS_DATA_INDEX_MASK) >>
2819 NVM_ETS_DATA_INDEX_SHIFT);
2820 sensor_location = ((ets_sensor & NVM_ETS_DATA_LOC_MASK) >>
2821 NVM_ETS_DATA_LOC_SHIFT);
2822 therm_limit = ets_sensor & NVM_ETS_DATA_HTHRESH_MASK;
2823
2824 hw->phy.ops.write_i2c_byte(hw,
2825 e1000_emc_therm_limit[sensor_index],
2826 E1000_I2C_THERMAL_SENSOR_ADDR,
2827 therm_limit);
2828
2829 if ((i < E1000_MAX_SENSORS) && (sensor_location != 0)) {
2830 data->sensor[i].location = sensor_location;
2831 data->sensor[i].caution_thresh = therm_limit;
2832 data->sensor[i].max_op_thresh = therm_limit -
2833 low_thresh_delta;
2834 }
2835 }
2836 return status;
2837}
2838
Auke Kok9d5c8242008-01-24 02:22:38 -08002839static struct e1000_mac_operations e1000_mac_ops_82575 = {
Auke Kok9d5c8242008-01-24 02:22:38 -08002840 .init_hw = igb_init_hw_82575,
2841 .check_for_link = igb_check_for_link_82575,
Alexander Duyck2d064c02008-07-08 15:10:12 -07002842 .rar_set = igb_rar_set,
Auke Kok9d5c8242008-01-24 02:22:38 -08002843 .read_mac_addr = igb_read_mac_addr_82575,
Akeem G Abodunrinf6878e392013-08-28 02:23:09 +00002844 .get_speed_and_duplex = igb_get_link_up_info_82575,
Carolyn Wybornye4288932012-12-07 03:01:42 +00002845#ifdef CONFIG_IGB_HWMON
2846 .get_thermal_sensor_data = igb_get_thermal_sensor_data_generic,
2847 .init_thermal_sensor_thresh = igb_init_thermal_sensor_thresh_generic,
2848#endif
Auke Kok9d5c8242008-01-24 02:22:38 -08002849};
2850
2851static struct e1000_phy_operations e1000_phy_ops_82575 = {
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00002852 .acquire = igb_acquire_phy_82575,
Auke Kok9d5c8242008-01-24 02:22:38 -08002853 .get_cfg_done = igb_get_cfg_done_82575,
Alexander Duycka8d2a0c2009-02-06 23:17:26 +00002854 .release = igb_release_phy_82575,
Carolyn Wyborny441fc6f2012-12-07 03:00:30 +00002855 .write_i2c_byte = igb_write_i2c_byte,
2856 .read_i2c_byte = igb_read_i2c_byte,
Auke Kok9d5c8242008-01-24 02:22:38 -08002857};
2858
2859static struct e1000_nvm_operations e1000_nvm_ops_82575 = {
Alexander Duyck312c75a2009-02-06 23:17:47 +00002860 .acquire = igb_acquire_nvm_82575,
2861 .read = igb_read_nvm_eerd,
2862 .release = igb_release_nvm_82575,
2863 .write = igb_write_nvm_spi,
Auke Kok9d5c8242008-01-24 02:22:38 -08002864};
2865
2866const struct e1000_info e1000_82575_info = {
2867 .get_invariants = igb_get_invariants_82575,
2868 .mac_ops = &e1000_mac_ops_82575,
2869 .phy_ops = &e1000_phy_ops_82575,
2870 .nvm_ops = &e1000_nvm_ops_82575,
2871};
2872