blob: 8172cf08cc330eb9d4cc61044513a5aed79825e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
Janusz Wolak13a87c12015-09-28 23:40:19 +02002*
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok3d41e302006-04-14 19:05:31 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
Jesse Brandeburg120a5d02009-09-25 15:19:46 -070027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/* e1000_hw.c
30 * Shared functions for accessing and configuring the MAC
31 */
32
Emil Tantilov675ad472010-04-27 14:02:58 +000033#include "e1000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Joe Perches406874a2008-04-03 10:06:32 -070035static s32 e1000_check_downshift(struct e1000_hw *hw);
Joe Perches64798842008-07-11 15:17:02 -070036static s32 e1000_check_polarity(struct e1000_hw *hw,
37 e1000_rev_polarity *polarity);
Nicholas Nunley35574762006-09-27 12:53:34 -070038static void e1000_clear_hw_cntrs(struct e1000_hw *hw);
39static void e1000_clear_vfta(struct e1000_hw *hw);
Joe Perches406874a2008-04-03 10:06:32 -070040static s32 e1000_config_dsp_after_link_change(struct e1000_hw *hw,
Joe Perches64798842008-07-11 15:17:02 -070041 bool link_up);
Joe Perches406874a2008-04-03 10:06:32 -070042static s32 e1000_config_fc_after_link_up(struct e1000_hw *hw);
43static s32 e1000_detect_gig_phy(struct e1000_hw *hw);
Joe Perches406874a2008-04-03 10:06:32 -070044static s32 e1000_get_auto_rd_done(struct e1000_hw *hw);
Joe Perches64798842008-07-11 15:17:02 -070045static s32 e1000_get_cable_length(struct e1000_hw *hw, u16 *min_length,
46 u16 *max_length);
Joe Perches406874a2008-04-03 10:06:32 -070047static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw);
Joe Perches406874a2008-04-03 10:06:32 -070048static s32 e1000_id_led_init(struct e1000_hw *hw);
Nicholas Nunley35574762006-09-27 12:53:34 -070049static void e1000_init_rx_addrs(struct e1000_hw *hw);
Joe Perches64798842008-07-11 15:17:02 -070050static s32 e1000_phy_igp_get_info(struct e1000_hw *hw,
51 struct e1000_phy_info *phy_info);
Joe Perches64798842008-07-11 15:17:02 -070052static s32 e1000_phy_m88_get_info(struct e1000_hw *hw,
53 struct e1000_phy_info *phy_info);
Joe Perches406874a2008-04-03 10:06:32 -070054static s32 e1000_set_d3_lplu_state(struct e1000_hw *hw, bool active);
Joe Perches406874a2008-04-03 10:06:32 -070055static s32 e1000_wait_autoneg(struct e1000_hw *hw);
56static void e1000_write_reg_io(struct e1000_hw *hw, u32 offset, u32 value);
57static s32 e1000_set_phy_type(struct e1000_hw *hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void e1000_phy_init_script(struct e1000_hw *hw);
Joe Perches406874a2008-04-03 10:06:32 -070059static s32 e1000_setup_copper_link(struct e1000_hw *hw);
60static s32 e1000_setup_fiber_serdes_link(struct e1000_hw *hw);
61static s32 e1000_adjust_serdes_amplitude(struct e1000_hw *hw);
62static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw);
63static s32 e1000_config_mac_to_phy(struct e1000_hw *hw);
64static void e1000_raise_mdi_clk(struct e1000_hw *hw, u32 *ctrl);
65static void e1000_lower_mdi_clk(struct e1000_hw *hw, u32 *ctrl);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -070066static void e1000_shift_out_mdi_bits(struct e1000_hw *hw, u32 data, u16 count);
Joe Perches406874a2008-04-03 10:06:32 -070067static u16 e1000_shift_in_mdi_bits(struct e1000_hw *hw);
68static s32 e1000_phy_reset_dsp(struct e1000_hw *hw);
69static s32 e1000_write_eeprom_spi(struct e1000_hw *hw, u16 offset,
Jesse Brandeburg120a5d02009-09-25 15:19:46 -070070 u16 words, u16 *data);
Joe Perches64798842008-07-11 15:17:02 -070071static s32 e1000_write_eeprom_microwire(struct e1000_hw *hw, u16 offset,
72 u16 words, u16 *data);
Joe Perches406874a2008-04-03 10:06:32 -070073static s32 e1000_spi_eeprom_ready(struct e1000_hw *hw);
74static void e1000_raise_ee_clk(struct e1000_hw *hw, u32 *eecd);
75static void e1000_lower_ee_clk(struct e1000_hw *hw, u32 *eecd);
Joe Perches64798842008-07-11 15:17:02 -070076static void e1000_shift_out_ee_bits(struct e1000_hw *hw, u16 data, u16 count);
Joe Perches406874a2008-04-03 10:06:32 -070077static s32 e1000_write_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr,
Joe Perches64798842008-07-11 15:17:02 -070078 u16 phy_data);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -070079static s32 e1000_read_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr,
Joe Perches64798842008-07-11 15:17:02 -070080 u16 *phy_data);
Joe Perches406874a2008-04-03 10:06:32 -070081static u16 e1000_shift_in_ee_bits(struct e1000_hw *hw, u16 count);
82static s32 e1000_acquire_eeprom(struct e1000_hw *hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static void e1000_release_eeprom(struct e1000_hw *hw);
84static void e1000_standby_eeprom(struct e1000_hw *hw);
Joe Perches406874a2008-04-03 10:06:32 -070085static s32 e1000_set_vco_speed(struct e1000_hw *hw);
86static s32 e1000_polarity_reversal_workaround(struct e1000_hw *hw);
87static s32 e1000_set_phy_mode(struct e1000_hw *hw);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -070088static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words,
89 u16 *data);
90static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words,
91 u16 *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* IGP cable length table */
94static const
Jesse Brandeburg120a5d02009-09-25 15:19:46 -070095u16 e1000_igp_cable_length_table[IGP01E1000_AGC_LENGTH_TABLE_SIZE] = {
96 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
97 5, 10, 10, 10, 10, 10, 10, 10, 20, 20, 20, 20, 20, 25, 25, 25,
98 25, 25, 25, 25, 30, 30, 30, 30, 40, 40, 40, 40, 40, 40, 40, 40,
99 40, 50, 50, 50, 50, 50, 50, 50, 60, 60, 60, 60, 60, 60, 60, 60,
100 60, 70, 70, 70, 70, 70, 70, 80, 80, 80, 80, 80, 80, 90, 90, 90,
101 90, 90, 90, 90, 90, 90, 100, 100, 100, 100, 100, 100, 100, 100, 100,
102 100,
103 100, 100, 100, 100, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110,
104 110, 110,
105 110, 110, 110, 110, 110, 110, 120, 120, 120, 120, 120, 120, 120, 120,
106 120, 120
107};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Joern Engele09b8902015-07-23 14:54:34 -0700109static DEFINE_MUTEX(e1000_eeprom_lock);
Maxime Bizonac565582012-10-20 14:53:40 +0000110static DEFINE_SPINLOCK(e1000_phy_lock);
Christopher Li78566fe2008-09-05 14:04:05 -0700111
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700112/**
113 * e1000_set_phy_type - Set the phy type member in the hw struct.
114 * @hw: Struct containing variables accessed by shared code
115 */
Joe Perches64798842008-07-11 15:17:02 -0700116static s32 e1000_set_phy_type(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700118 if (hw->mac_type == e1000_undefined)
119 return -E1000_ERR_PHY_TYPE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700120
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700121 switch (hw->phy_id) {
122 case M88E1000_E_PHY_ID:
123 case M88E1000_I_PHY_ID:
124 case M88E1011_I_PHY_ID:
125 case M88E1111_I_PHY_ID:
Florian Fainellicf8e09b2011-01-24 14:48:03 +0000126 case M88E1118_E_PHY_ID:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700127 hw->phy_type = e1000_phy_m88;
128 break;
129 case IGP01E1000_I_PHY_ID:
130 if (hw->mac_type == e1000_82541 ||
131 hw->mac_type == e1000_82541_rev_2 ||
132 hw->mac_type == e1000_82547 ||
Dirk Brandewie5377a412011-01-06 14:29:54 +0000133 hw->mac_type == e1000_82547_rev_2)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700134 hw->phy_type = e1000_phy_igp;
Dirk Brandewie5377a412011-01-06 14:29:54 +0000135 break;
136 case RTL8211B_PHY_ID:
137 hw->phy_type = e1000_phy_8211;
138 break;
139 case RTL8201N_PHY_ID:
140 hw->phy_type = e1000_phy_8201;
141 break;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700142 default:
143 /* Should never have loaded on this device */
144 hw->phy_type = e1000_phy_undefined;
145 return -E1000_ERR_PHY_TYPE;
146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700148 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700151/**
152 * e1000_phy_init_script - IGP phy init script - initializes the GbE PHY
153 * @hw: Struct containing variables accessed by shared code
154 */
Joe Perches64798842008-07-11 15:17:02 -0700155static void e1000_phy_init_script(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700157 u32 ret_val;
158 u16 phy_saved_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700160 if (hw->phy_init_script) {
161 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000163 /* Save off the current value of register 0x2F5B to be restored
164 * at the end of this routine.
165 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700166 ret_val = e1000_read_phy_reg(hw, 0x2F5B, &phy_saved_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700168 /* Disabled the PHY transmitter */
169 e1000_write_phy_reg(hw, 0x2F5B, 0x0003);
170 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700172 e1000_write_phy_reg(hw, 0x0000, 0x0140);
173 msleep(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700175 switch (hw->mac_type) {
176 case e1000_82541:
177 case e1000_82547:
178 e1000_write_phy_reg(hw, 0x1F95, 0x0001);
179 e1000_write_phy_reg(hw, 0x1F71, 0xBD21);
180 e1000_write_phy_reg(hw, 0x1F79, 0x0018);
181 e1000_write_phy_reg(hw, 0x1F30, 0x1600);
182 e1000_write_phy_reg(hw, 0x1F31, 0x0014);
183 e1000_write_phy_reg(hw, 0x1F32, 0x161C);
184 e1000_write_phy_reg(hw, 0x1F94, 0x0003);
185 e1000_write_phy_reg(hw, 0x1F96, 0x003F);
186 e1000_write_phy_reg(hw, 0x2010, 0x0008);
187 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700189 case e1000_82541_rev_2:
190 case e1000_82547_rev_2:
191 e1000_write_phy_reg(hw, 0x1F73, 0x0099);
192 break;
193 default:
194 break;
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700197 e1000_write_phy_reg(hw, 0x0000, 0x3300);
198 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700200 /* Now enable the transmitter */
201 e1000_write_phy_reg(hw, 0x2F5B, phy_saved_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700203 if (hw->mac_type == e1000_82547) {
204 u16 fused, fine, coarse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700206 /* Move to analog registers page */
207 e1000_read_phy_reg(hw,
208 IGP01E1000_ANALOG_SPARE_FUSE_STATUS,
209 &fused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700211 if (!(fused & IGP01E1000_ANALOG_SPARE_FUSE_ENABLED)) {
212 e1000_read_phy_reg(hw,
213 IGP01E1000_ANALOG_FUSE_STATUS,
214 &fused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700216 fine = fused & IGP01E1000_ANALOG_FUSE_FINE_MASK;
217 coarse =
218 fused & IGP01E1000_ANALOG_FUSE_COARSE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700220 if (coarse >
221 IGP01E1000_ANALOG_FUSE_COARSE_THRESH) {
222 coarse -=
223 IGP01E1000_ANALOG_FUSE_COARSE_10;
224 fine -= IGP01E1000_ANALOG_FUSE_FINE_1;
225 } else if (coarse ==
226 IGP01E1000_ANALOG_FUSE_COARSE_THRESH)
227 fine -= IGP01E1000_ANALOG_FUSE_FINE_10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700229 fused =
230 (fused & IGP01E1000_ANALOG_FUSE_POLY_MASK) |
231 (fine & IGP01E1000_ANALOG_FUSE_FINE_MASK) |
232 (coarse &
233 IGP01E1000_ANALOG_FUSE_COARSE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700235 e1000_write_phy_reg(hw,
236 IGP01E1000_ANALOG_FUSE_CONTROL,
237 fused);
238 e1000_write_phy_reg(hw,
239 IGP01E1000_ANALOG_FUSE_BYPASS,
240 IGP01E1000_ANALOG_FUSE_ENABLE_SW_CONTROL);
241 }
242 }
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700246/**
247 * e1000_set_mac_type - Set the mac type member in the hw struct.
248 * @hw: Struct containing variables accessed by shared code
249 */
Joe Perches64798842008-07-11 15:17:02 -0700250s32 e1000_set_mac_type(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Jeff Garzikbd2371e2006-12-15 10:31:40 -0500252 switch (hw->device_id) {
253 case E1000_DEV_ID_82542:
254 switch (hw->revision_id) {
255 case E1000_82542_2_0_REV_ID:
256 hw->mac_type = e1000_82542_rev2_0;
257 break;
258 case E1000_82542_2_1_REV_ID:
259 hw->mac_type = e1000_82542_rev2_1;
260 break;
261 default:
262 /* Invalid 82542 revision ID */
263 return -E1000_ERR_MAC_TYPE;
264 }
265 break;
266 case E1000_DEV_ID_82543GC_FIBER:
267 case E1000_DEV_ID_82543GC_COPPER:
268 hw->mac_type = e1000_82543;
269 break;
270 case E1000_DEV_ID_82544EI_COPPER:
271 case E1000_DEV_ID_82544EI_FIBER:
272 case E1000_DEV_ID_82544GC_COPPER:
273 case E1000_DEV_ID_82544GC_LOM:
274 hw->mac_type = e1000_82544;
275 break;
276 case E1000_DEV_ID_82540EM:
277 case E1000_DEV_ID_82540EM_LOM:
278 case E1000_DEV_ID_82540EP:
279 case E1000_DEV_ID_82540EP_LOM:
280 case E1000_DEV_ID_82540EP_LP:
281 hw->mac_type = e1000_82540;
282 break;
283 case E1000_DEV_ID_82545EM_COPPER:
284 case E1000_DEV_ID_82545EM_FIBER:
285 hw->mac_type = e1000_82545;
286 break;
287 case E1000_DEV_ID_82545GM_COPPER:
288 case E1000_DEV_ID_82545GM_FIBER:
289 case E1000_DEV_ID_82545GM_SERDES:
290 hw->mac_type = e1000_82545_rev_3;
291 break;
292 case E1000_DEV_ID_82546EB_COPPER:
293 case E1000_DEV_ID_82546EB_FIBER:
294 case E1000_DEV_ID_82546EB_QUAD_COPPER:
295 hw->mac_type = e1000_82546;
296 break;
297 case E1000_DEV_ID_82546GB_COPPER:
298 case E1000_DEV_ID_82546GB_FIBER:
299 case E1000_DEV_ID_82546GB_SERDES:
300 case E1000_DEV_ID_82546GB_PCIE:
301 case E1000_DEV_ID_82546GB_QUAD_COPPER:
302 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
303 hw->mac_type = e1000_82546_rev_3;
304 break;
305 case E1000_DEV_ID_82541EI:
306 case E1000_DEV_ID_82541EI_MOBILE:
307 case E1000_DEV_ID_82541ER_LOM:
308 hw->mac_type = e1000_82541;
309 break;
310 case E1000_DEV_ID_82541ER:
311 case E1000_DEV_ID_82541GI:
312 case E1000_DEV_ID_82541GI_LF:
313 case E1000_DEV_ID_82541GI_MOBILE:
314 hw->mac_type = e1000_82541_rev_2;
315 break;
316 case E1000_DEV_ID_82547EI:
317 case E1000_DEV_ID_82547EI_MOBILE:
318 hw->mac_type = e1000_82547;
319 break;
320 case E1000_DEV_ID_82547GI:
321 hw->mac_type = e1000_82547_rev_2;
322 break;
Dirk Brandewie5377a412011-01-06 14:29:54 +0000323 case E1000_DEV_ID_INTEL_CE4100_GBE:
324 hw->mac_type = e1000_ce4100;
325 break;
Jeff Garzikbd2371e2006-12-15 10:31:40 -0500326 default:
327 /* Should never have loaded on this device */
328 return -E1000_ERR_MAC_TYPE;
329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Jeff Garzikbd2371e2006-12-15 10:31:40 -0500331 switch (hw->mac_type) {
Jeff Garzikbd2371e2006-12-15 10:31:40 -0500332 case e1000_82541:
333 case e1000_82547:
334 case e1000_82541_rev_2:
335 case e1000_82547_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700336 hw->asf_firmware_present = true;
Jeff Garzikbd2371e2006-12-15 10:31:40 -0500337 break;
338 default:
339 break;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Jeff Garzik167fb282006-12-15 10:41:15 -0500342 /* The 82543 chip does not count tx_carrier_errors properly in
343 * FD mode
344 */
345 if (hw->mac_type == e1000_82543)
Joe Perchesc3033b02008-03-21 11:06:25 -0700346 hw->bad_tx_carr_stats_fd = true;
Jeff Garzik167fb282006-12-15 10:41:15 -0500347
Jeff Garzik15e376b2006-12-15 11:16:33 -0500348 if (hw->mac_type > e1000_82544)
Joe Perchesc3033b02008-03-21 11:06:25 -0700349 hw->has_smbus = true;
Jeff Garzik15e376b2006-12-15 11:16:33 -0500350
Jeff Garzikbd2371e2006-12-15 10:31:40 -0500351 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700354/**
355 * e1000_set_media_type - Set media type and TBI compatibility.
356 * @hw: Struct containing variables accessed by shared code
357 */
Joe Perches64798842008-07-11 15:17:02 -0700358void e1000_set_media_type(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700360 u32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700362 if (hw->mac_type != e1000_82543) {
363 /* tbi_compatibility is only valid on 82543 */
364 hw->tbi_compatibility_en = false;
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700367 switch (hw->device_id) {
368 case E1000_DEV_ID_82545GM_SERDES:
369 case E1000_DEV_ID_82546GB_SERDES:
370 hw->media_type = e1000_media_type_internal_serdes;
371 break;
372 default:
373 switch (hw->mac_type) {
374 case e1000_82542_rev2_0:
375 case e1000_82542_rev2_1:
376 hw->media_type = e1000_media_type_fiber;
377 break;
Dirk Brandewie5377a412011-01-06 14:29:54 +0000378 case e1000_ce4100:
379 hw->media_type = e1000_media_type_copper;
380 break;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700381 default:
382 status = er32(STATUS);
383 if (status & E1000_STATUS_TBIMODE) {
384 hw->media_type = e1000_media_type_fiber;
385 /* tbi_compatibility not valid on fiber */
386 hw->tbi_compatibility_en = false;
387 } else {
388 hw->media_type = e1000_media_type_copper;
389 }
390 break;
391 }
392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700395/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000396 * e1000_reset_hw - reset the hardware completely
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700397 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700399 * Reset the transmit and receive units; mask and clear all interrupts.
400 */
Joe Perches64798842008-07-11 15:17:02 -0700401s32 e1000_reset_hw(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700403 u32 ctrl;
404 u32 ctrl_ext;
405 u32 icr;
406 u32 manc;
407 u32 led_ctrl;
408 s32 ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700410 /* For 82542 (rev 2.0), disable MWI before issuing a device reset */
411 if (hw->mac_type == e1000_82542_rev2_0) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000412 e_dbg("Disabling MWI on 82542 rev 2.0\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700413 e1000_pci_clear_mwi(hw);
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700416 /* Clear interrupt mask to stop board from generating interrupts */
Emil Tantilov675ad472010-04-27 14:02:58 +0000417 e_dbg("Masking off all interrupts\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700418 ew32(IMC, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700420 /* Disable the Transmit and Receive units. Then delay to allow
421 * any pending transactions to complete before we hit the MAC with
422 * the global reset.
423 */
424 ew32(RCTL, 0);
425 ew32(TCTL, E1000_TCTL_PSP);
426 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700428 /* The tbi_compatibility_on Flag must be cleared when Rctl is cleared. */
429 hw->tbi_compatibility_on = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700431 /* Delay to allow any outstanding PCI transactions to complete before
432 * resetting the device
433 */
434 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700436 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700438 /* Must reset the PHY before resetting the MAC */
439 if ((hw->mac_type == e1000_82541) || (hw->mac_type == e1000_82547)) {
440 ew32(CTRL, (ctrl | E1000_CTRL_PHY_RST));
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000441 E1000_WRITE_FLUSH();
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700442 msleep(5);
443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700445 /* Issue a global reset to the MAC. This will reset the chip's
446 * transmit, receive, DMA, and link units. It will not effect
447 * the current PCI configuration. The global reset bit is self-
448 * clearing, and should clear within a microsecond.
449 */
Emil Tantilov675ad472010-04-27 14:02:58 +0000450 e_dbg("Issuing a global reset to MAC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700452 switch (hw->mac_type) {
453 case e1000_82544:
454 case e1000_82540:
455 case e1000_82545:
456 case e1000_82546:
457 case e1000_82541:
458 case e1000_82541_rev_2:
459 /* These controllers can't ack the 64-bit write when issuing the
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000460 * reset, so use IO-mapping as a workaround to issue the reset
461 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700462 E1000_WRITE_REG_IO(hw, CTRL, (ctrl | E1000_CTRL_RST));
463 break;
464 case e1000_82545_rev_3:
465 case e1000_82546_rev_3:
466 /* Reset is performed on a shadow of the control register */
467 ew32(CTRL_DUP, (ctrl | E1000_CTRL_RST));
468 break;
Dirk Brandewie5377a412011-01-06 14:29:54 +0000469 case e1000_ce4100:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700470 default:
471 ew32(CTRL, (ctrl | E1000_CTRL_RST));
472 break;
473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000475 /* After MAC reset, force reload of EEPROM to restore power-on settings
476 * to device. Later controllers reload the EEPROM automatically, so
477 * just wait for reload to complete.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700478 */
479 switch (hw->mac_type) {
480 case e1000_82542_rev2_0:
481 case e1000_82542_rev2_1:
482 case e1000_82543:
483 case e1000_82544:
484 /* Wait for reset to complete */
485 udelay(10);
486 ctrl_ext = er32(CTRL_EXT);
487 ctrl_ext |= E1000_CTRL_EXT_EE_RST;
488 ew32(CTRL_EXT, ctrl_ext);
489 E1000_WRITE_FLUSH();
490 /* Wait for EEPROM reload */
491 msleep(2);
492 break;
493 case e1000_82541:
494 case e1000_82541_rev_2:
495 case e1000_82547:
496 case e1000_82547_rev_2:
497 /* Wait for EEPROM reload */
498 msleep(20);
499 break;
500 default:
501 /* Auto read done will delay 5ms or poll based on mac type */
502 ret_val = e1000_get_auto_rd_done(hw);
503 if (ret_val)
504 return ret_val;
505 break;
506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700508 /* Disable HW ARPs on ASF enabled adapters */
509 if (hw->mac_type >= e1000_82540) {
510 manc = er32(MANC);
511 manc &= ~(E1000_MANC_ARP_EN);
512 ew32(MANC, manc);
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700515 if ((hw->mac_type == e1000_82541) || (hw->mac_type == e1000_82547)) {
516 e1000_phy_init_script(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700518 /* Configure activity LED after PHY reset */
519 led_ctrl = er32(LEDCTL);
520 led_ctrl &= IGP_ACTIVITY_LED_MASK;
521 led_ctrl |= (IGP_ACTIVITY_LED_ENABLE | IGP_LED3_MODE);
522 ew32(LEDCTL, led_ctrl);
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700525 /* Clear interrupt mask to stop board from generating interrupts */
Emil Tantilov675ad472010-04-27 14:02:58 +0000526 e_dbg("Masking off all interrupts\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700527 ew32(IMC, 0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700529 /* Clear any pending interrupt events. */
530 icr = er32(ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700532 /* If MWI was previously enabled, reenable it. */
533 if (hw->mac_type == e1000_82542_rev2_0) {
534 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
535 e1000_pci_set_mwi(hw);
536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700538 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700541/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000542 * e1000_init_hw - Performs basic configuration of the adapter.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700543 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 *
545 * Assumes that the controller has previously been reset and is in a
546 * post-reset uninitialized state. Initializes the receive address registers,
547 * multicast table, and VLAN filter table. Calls routines to setup link
548 * configuration and flow control settings. Clears all on-chip counters. Leaves
549 * the transmit and receive units disabled and uninitialized.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700550 */
Joe Perches64798842008-07-11 15:17:02 -0700551s32 e1000_init_hw(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700553 u32 ctrl;
554 u32 i;
555 s32 ret_val;
556 u32 mta_size;
557 u32 ctrl_ext;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700558
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700559 /* Initialize Identification LED */
560 ret_val = e1000_id_led_init(hw);
561 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000562 e_dbg("Error Initializing Identification LED\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700563 return ret_val;
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700566 /* Set the media type and TBI compatibility */
567 e1000_set_media_type(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700569 /* Disabling VLAN filtering. */
Emil Tantilov675ad472010-04-27 14:02:58 +0000570 e_dbg("Initializing the IEEE VLAN\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700571 if (hw->mac_type < e1000_82545_rev_3)
572 ew32(VET, 0);
573 e1000_clear_vfta(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700575 /* For 82542 (rev 2.0), disable MWI and put the receiver into reset */
576 if (hw->mac_type == e1000_82542_rev2_0) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000577 e_dbg("Disabling MWI on 82542 rev 2.0\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700578 e1000_pci_clear_mwi(hw);
579 ew32(RCTL, E1000_RCTL_RST);
580 E1000_WRITE_FLUSH();
581 msleep(5);
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000584 /* Setup the receive address. This involves initializing all of the
585 * Receive Address Registers (RARs 0 - 15).
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700586 */
587 e1000_init_rx_addrs(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700589 /* For 82542 (rev 2.0), take the receiver out of reset and enable MWI */
590 if (hw->mac_type == e1000_82542_rev2_0) {
591 ew32(RCTL, 0);
592 E1000_WRITE_FLUSH();
593 msleep(1);
594 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
595 e1000_pci_set_mwi(hw);
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700598 /* Zero out the Multicast HASH table */
Emil Tantilov675ad472010-04-27 14:02:58 +0000599 e_dbg("Zeroing the MTA\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700600 mta_size = E1000_MC_TBL_SIZE;
601 for (i = 0; i < mta_size; i++) {
602 E1000_WRITE_REG_ARRAY(hw, MTA, i, 0);
603 /* use write flush to prevent Memory Write Block (MWB) from
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000604 * occurring when accessing our register space
605 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700606 E1000_WRITE_FLUSH();
607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700609 /* Set the PCI priority bit correctly in the CTRL register. This
610 * determines if the adapter gives priority to receives, or if it
611 * gives equal priority to transmits and receives. Valid only on
612 * 82542 and 82543 silicon.
613 */
614 if (hw->dma_fairness && hw->mac_type <= e1000_82543) {
615 ctrl = er32(CTRL);
616 ew32(CTRL, ctrl | E1000_CTRL_PRIOR);
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700619 switch (hw->mac_type) {
620 case e1000_82545_rev_3:
621 case e1000_82546_rev_3:
622 break;
623 default:
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000624 /* Workaround for PCI-X problem when BIOS sets MMRBC
625 * incorrectly.
626 */
Janusz Wolak13a87c12015-09-28 23:40:19 +0200627 if (hw->bus_type == e1000_bus_type_pcix &&
628 e1000_pcix_get_mmrbc(hw) > 2048)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700629 e1000_pcix_set_mmrbc(hw, 2048);
630 break;
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700633 /* Call a subroutine to configure the link and setup flow control. */
634 ret_val = e1000_setup_link(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700636 /* Set the transmit descriptor write-back policy */
637 if (hw->mac_type > e1000_82544) {
638 ctrl = er32(TXDCTL);
639 ctrl =
640 (ctrl & ~E1000_TXDCTL_WTHRESH) |
641 E1000_TXDCTL_FULL_TX_DESC_WB;
642 ew32(TXDCTL, ctrl);
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700645 /* Clear all of the statistics registers (clear on read). It is
646 * important that we do this after we have tried to establish link
647 * because the symbol error count will increment wildly if there
648 * is no link.
649 */
650 e1000_clear_hw_cntrs(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700652 if (hw->device_id == E1000_DEV_ID_82546GB_QUAD_COPPER ||
653 hw->device_id == E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3) {
654 ctrl_ext = er32(CTRL_EXT);
655 /* Relaxed ordering must be disabled to avoid a parity
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000656 * error crash in a PCI slot.
657 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700658 ctrl_ext |= E1000_CTRL_EXT_RO_DIS;
659 ew32(CTRL_EXT, ctrl_ext);
660 }
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -0800661
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700662 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700665/**
666 * e1000_adjust_serdes_amplitude - Adjust SERDES output amplitude based on EEPROM setting.
667 * @hw: Struct containing variables accessed by shared code.
668 */
Joe Perches64798842008-07-11 15:17:02 -0700669static s32 e1000_adjust_serdes_amplitude(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700671 u16 eeprom_data;
672 s32 ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700674 if (hw->media_type != e1000_media_type_internal_serdes)
675 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700677 switch (hw->mac_type) {
678 case e1000_82545_rev_3:
679 case e1000_82546_rev_3:
680 break;
681 default:
682 return E1000_SUCCESS;
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700685 ret_val = e1000_read_eeprom(hw, EEPROM_SERDES_AMPLITUDE, 1,
Janusz Wolaka48954c2015-09-17 23:34:29 +0200686 &eeprom_data);
Janusz Wolak13a87c12015-09-28 23:40:19 +0200687 if (ret_val)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700688 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700690 if (eeprom_data != EEPROM_RESERVED_WORD) {
691 /* Adjust SERDES output amplitude only. */
692 eeprom_data &= EEPROM_SERDES_AMPLITUDE_MASK;
693 ret_val =
694 e1000_write_phy_reg(hw, M88E1000_PHY_EXT_CTRL, eeprom_data);
695 if (ret_val)
696 return ret_val;
697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700699 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700702/**
703 * e1000_setup_link - Configures flow control and link settings.
704 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700706 * Determines which flow control settings to use. Calls the appropriate media-
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 * specific link configuration function. Configures the flow control settings.
708 * Assuming the adapter has a valid link partner, a valid link should be
709 * established. Assumes the hardware has previously been reset and the
710 * transmitter and receiver are not enabled.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700711 */
Joe Perches64798842008-07-11 15:17:02 -0700712s32 e1000_setup_link(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700714 u32 ctrl_ext;
715 s32 ret_val;
716 u16 eeprom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700718 /* Read and store word 0x0F of the EEPROM. This word contains bits
719 * that determine the hardware's default PAUSE (flow control) mode,
720 * a bit that determines whether the HW defaults to enabling or
721 * disabling auto-negotiation, and the direction of the
722 * SW defined pins. If there is no SW over-ride of the flow
723 * control setting, then the variable hw->fc will
724 * be initialized based on a value in the EEPROM.
725 */
726 if (hw->fc == E1000_FC_DEFAULT) {
727 ret_val = e1000_read_eeprom(hw, EEPROM_INIT_CONTROL2_REG,
728 1, &eeprom_data);
729 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000730 e_dbg("EEPROM Read Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700731 return -E1000_ERR_EEPROM;
732 }
733 if ((eeprom_data & EEPROM_WORD0F_PAUSE_MASK) == 0)
734 hw->fc = E1000_FC_NONE;
735 else if ((eeprom_data & EEPROM_WORD0F_PAUSE_MASK) ==
736 EEPROM_WORD0F_ASM_DIR)
737 hw->fc = E1000_FC_TX_PAUSE;
738 else
739 hw->fc = E1000_FC_FULL;
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700742 /* We want to save off the original Flow Control configuration just
743 * in case we get disconnected and then reconnected into a different
744 * hub or switch with different Flow Control capabilities.
745 */
746 if (hw->mac_type == e1000_82542_rev2_0)
747 hw->fc &= (~E1000_FC_TX_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700749 if ((hw->mac_type < e1000_82543) && (hw->report_tx_early == 1))
750 hw->fc &= (~E1000_FC_RX_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700752 hw->original_fc = hw->fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Emil Tantilov675ad472010-04-27 14:02:58 +0000754 e_dbg("After fix-ups FlowControl is now = %x\n", hw->fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700756 /* Take the 4 bits from EEPROM word 0x0F that determine the initial
757 * polarity value for the SW controlled pins, and setup the
758 * Extended Device Control reg with that info.
759 * This is needed because one of the SW controlled pins is used for
760 * signal detection. So this should be done before e1000_setup_pcs_link()
761 * or e1000_phy_setup() is called.
762 */
763 if (hw->mac_type == e1000_82543) {
764 ret_val = e1000_read_eeprom(hw, EEPROM_INIT_CONTROL2_REG,
765 1, &eeprom_data);
766 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000767 e_dbg("EEPROM Read Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700768 return -E1000_ERR_EEPROM;
769 }
770 ctrl_ext = ((eeprom_data & EEPROM_WORD0F_SWPDIO_EXT) <<
771 SWDPIO__EXT_SHIFT);
772 ew32(CTRL_EXT, ctrl_ext);
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700775 /* Call the necessary subroutine to configure the link. */
776 ret_val = (hw->media_type == e1000_media_type_copper) ?
777 e1000_setup_copper_link(hw) : e1000_setup_fiber_serdes_link(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700779 /* Initialize the flow control address, type, and PAUSE timer
780 * registers to their default values. This is done even if flow
781 * control is disabled, because it does not hurt anything to
782 * initialize these registers.
783 */
Emil Tantilov675ad472010-04-27 14:02:58 +0000784 e_dbg("Initializing the Flow Control address, type and timer regs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700786 ew32(FCT, FLOW_CONTROL_TYPE);
787 ew32(FCAH, FLOW_CONTROL_ADDRESS_HIGH);
788 ew32(FCAL, FLOW_CONTROL_ADDRESS_LOW);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700789
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700790 ew32(FCTTV, hw->fc_pause_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700792 /* Set the flow control receive threshold registers. Normally,
793 * these registers will be set to a default threshold that may be
794 * adjusted later by the driver's runtime code. However, if the
795 * ability to transmit pause frames in not enabled, then these
796 * registers will be set to 0.
797 */
798 if (!(hw->fc & E1000_FC_TX_PAUSE)) {
799 ew32(FCRTL, 0);
800 ew32(FCRTH, 0);
801 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000802 /* We need to set up the Receive Threshold high and low water
803 * marks as well as (optionally) enabling the transmission of
804 * XON frames.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700805 */
806 if (hw->fc_send_xon) {
807 ew32(FCRTL, (hw->fc_low_water | E1000_FCRTL_XONE));
808 ew32(FCRTH, hw->fc_high_water);
809 } else {
810 ew32(FCRTL, hw->fc_low_water);
811 ew32(FCRTH, hw->fc_high_water);
812 }
813 }
814 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700817/**
818 * e1000_setup_fiber_serdes_link - prepare fiber or serdes link
819 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 *
821 * Manipulates Physical Coding Sublayer functions in order to configure
822 * link. Assumes the hardware has been previously reset and the transmitter
823 * and receiver are not enabled.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700824 */
Joe Perches64798842008-07-11 15:17:02 -0700825static s32 e1000_setup_fiber_serdes_link(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700827 u32 ctrl;
828 u32 status;
829 u32 txcw = 0;
830 u32 i;
831 u32 signal = 0;
832 s32 ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700834 /* On adapters with a MAC newer than 82544, SWDP 1 will be
835 * set when the optics detect a signal. On older adapters, it will be
836 * cleared when there is a signal. This applies to fiber media only.
837 * If we're on serdes media, adjust the output amplitude to value
838 * set in the EEPROM.
839 */
840 ctrl = er32(CTRL);
841 if (hw->media_type == e1000_media_type_fiber)
842 signal = (hw->mac_type > e1000_82544) ? E1000_CTRL_SWDPIN1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700844 ret_val = e1000_adjust_serdes_amplitude(hw);
845 if (ret_val)
846 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700848 /* Take the link out of reset */
849 ctrl &= ~(E1000_CTRL_LRST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700851 /* Adjust VCO speed to improve BER performance */
852 ret_val = e1000_set_vco_speed(hw);
853 if (ret_val)
854 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700856 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700858 /* Check for a software override of the flow control settings, and setup
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000859 * the device accordingly. If auto-negotiation is enabled, then
860 * software will have to set the "PAUSE" bits to the correct value in
861 * the Tranmsit Config Word Register (TXCW) and re-start
862 * auto-negotiation. However, if auto-negotiation is disabled, then
863 * software will have to manually configure the two flow control enable
864 * bits in the CTRL register.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700865 *
866 * The possible values of the "fc" parameter are:
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000867 * 0: Flow control is completely disabled
868 * 1: Rx flow control is enabled (we can receive pause frames, but
869 * not send pause frames).
870 * 2: Tx flow control is enabled (we can send pause frames but we do
871 * not support receiving pause frames).
872 * 3: Both Rx and TX flow control (symmetric) are enabled.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700873 */
874 switch (hw->fc) {
875 case E1000_FC_NONE:
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000876 /* Flow ctrl is completely disabled by a software over-ride */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700877 txcw = (E1000_TXCW_ANE | E1000_TXCW_FD);
878 break;
879 case E1000_FC_RX_PAUSE:
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000880 /* Rx Flow control is enabled and Tx Flow control is disabled by
881 * a software over-ride. Since there really isn't a way to
882 * advertise that we are capable of Rx Pause ONLY, we will
883 * advertise that we support both symmetric and asymmetric Rx
884 * PAUSE. Later, we will disable the adapter's ability to send
885 * PAUSE frames.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700886 */
887 txcw = (E1000_TXCW_ANE | E1000_TXCW_FD | E1000_TXCW_PAUSE_MASK);
888 break;
889 case E1000_FC_TX_PAUSE:
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000890 /* Tx Flow control is enabled, and Rx Flow control is disabled,
891 * by a software over-ride.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700892 */
893 txcw = (E1000_TXCW_ANE | E1000_TXCW_FD | E1000_TXCW_ASM_DIR);
894 break;
895 case E1000_FC_FULL:
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000896 /* Flow control (both Rx and Tx) is enabled by a software
897 * over-ride.
898 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700899 txcw = (E1000_TXCW_ANE | E1000_TXCW_FD | E1000_TXCW_PAUSE_MASK);
900 break;
901 default:
Emil Tantilov675ad472010-04-27 14:02:58 +0000902 e_dbg("Flow control param set incorrectly\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700903 return -E1000_ERR_CONFIG;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000906 /* Since auto-negotiation is enabled, take the link out of reset (the
907 * link will be in reset, because we previously reset the chip). This
908 * will restart auto-negotiation. If auto-negotiation is successful
909 * then the link-up status bit will be set and the flow control enable
910 * bits (RFCE and TFCE) will be set according to their negotiated value.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700911 */
Emil Tantilov675ad472010-04-27 14:02:58 +0000912 e_dbg("Auto-negotiation enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700914 ew32(TXCW, txcw);
915 ew32(CTRL, ctrl);
916 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700918 hw->txcw = txcw;
919 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000921 /* If we have a signal (the cable is plugged in) then poll for a
922 * "Link-Up" indication in the Device Status Register. Time-out if a
923 * link isn't seen in 500 milliseconds seconds (Auto-negotiation should
924 * complete in less than 500 milliseconds even if the other end is doing
925 * it in SW). For internal serdes, we just assume a signal is present,
926 * then poll.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700927 */
928 if (hw->media_type == e1000_media_type_internal_serdes ||
929 (er32(CTRL) & E1000_CTRL_SWDPIN1) == signal) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000930 e_dbg("Looking for Link\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700931 for (i = 0; i < (LINK_UP_TIMEOUT / 10); i++) {
932 msleep(10);
933 status = er32(STATUS);
934 if (status & E1000_STATUS_LU)
935 break;
936 }
937 if (i == (LINK_UP_TIMEOUT / 10)) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000938 e_dbg("Never got a valid link from auto-neg!!!\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700939 hw->autoneg_failed = 1;
940 /* AutoNeg failed to achieve a link, so we'll call
Jeff Kirsher6cfbd972013-02-09 12:49:21 +0000941 * e1000_check_for_link. This routine will force the
942 * link up if we detect a signal. This will allow us to
943 * communicate with non-autonegotiating link partners.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700944 */
945 ret_val = e1000_check_for_link(hw);
946 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000947 e_dbg("Error while checking for link\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700948 return ret_val;
949 }
950 hw->autoneg_failed = 0;
951 } else {
952 hw->autoneg_failed = 0;
Emil Tantilov675ad472010-04-27 14:02:58 +0000953 e_dbg("Valid Link Found\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700954 }
955 } else {
Emil Tantilov675ad472010-04-27 14:02:58 +0000956 e_dbg("No Signal Detected\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700957 }
958 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Jesse Brandeburg120a5d02009-09-25 15:19:46 -0700961/**
Dirk Brandewie5377a412011-01-06 14:29:54 +0000962 * e1000_copper_link_rtl_setup - Copper link setup for e1000_phy_rtl series.
963 * @hw: Struct containing variables accessed by shared code
964 *
965 * Commits changes to PHY configuration by calling e1000_phy_reset().
966 */
967static s32 e1000_copper_link_rtl_setup(struct e1000_hw *hw)
968{
969 s32 ret_val;
970
971 /* SW reset the PHY so all changes take effect */
972 ret_val = e1000_phy_reset(hw);
973 if (ret_val) {
974 e_dbg("Error Resetting the PHY\n");
975 return ret_val;
976 }
977
978 return E1000_SUCCESS;
979}
980
981static s32 gbe_dhg_phy_setup(struct e1000_hw *hw)
982{
983 s32 ret_val;
984 u32 ctrl_aux;
985
986 switch (hw->phy_type) {
987 case e1000_phy_8211:
988 ret_val = e1000_copper_link_rtl_setup(hw);
989 if (ret_val) {
990 e_dbg("e1000_copper_link_rtl_setup failed!\n");
991 return ret_val;
992 }
993 break;
994 case e1000_phy_8201:
995 /* Set RMII mode */
996 ctrl_aux = er32(CTL_AUX);
997 ctrl_aux |= E1000_CTL_AUX_RMII;
998 ew32(CTL_AUX, ctrl_aux);
999 E1000_WRITE_FLUSH();
1000
1001 /* Disable the J/K bits required for receive */
1002 ctrl_aux = er32(CTL_AUX);
1003 ctrl_aux |= 0x4;
1004 ctrl_aux &= ~0x2;
1005 ew32(CTL_AUX, ctrl_aux);
1006 E1000_WRITE_FLUSH();
1007 ret_val = e1000_copper_link_rtl_setup(hw);
1008
1009 if (ret_val) {
1010 e_dbg("e1000_copper_link_rtl_setup failed!\n");
1011 return ret_val;
1012 }
1013 break;
1014 default:
1015 e_dbg("Error Resetting the PHY\n");
1016 return E1000_ERR_PHY_TYPE;
1017 }
1018
1019 return E1000_SUCCESS;
1020}
1021
1022/**
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001023 * e1000_copper_link_preconfig - early configuration for copper
1024 * @hw: Struct containing variables accessed by shared code
1025 *
1026 * Make sure we have a valid PHY and change PHY mode before link setup.
1027 */
Joe Perches64798842008-07-11 15:17:02 -07001028static s32 e1000_copper_link_preconfig(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001030 u32 ctrl;
1031 s32 ret_val;
1032 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001034 ctrl = er32(CTRL);
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001035 /* With 82543, we need to force speed and duplex on the MAC equal to
1036 * what the PHY speed and duplex configuration is. In addition, we need
1037 * to perform a hardware reset on the PHY to take it out of reset.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001038 */
1039 if (hw->mac_type > e1000_82543) {
1040 ctrl |= E1000_CTRL_SLU;
1041 ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1042 ew32(CTRL, ctrl);
1043 } else {
1044 ctrl |=
1045 (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX | E1000_CTRL_SLU);
1046 ew32(CTRL, ctrl);
1047 ret_val = e1000_phy_hw_reset(hw);
1048 if (ret_val)
1049 return ret_val;
1050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001052 /* Make sure we have a valid PHY */
1053 ret_val = e1000_detect_gig_phy(hw);
1054 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001055 e_dbg("Error, did not detect valid phy.\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001056 return ret_val;
1057 }
Emil Tantilov675ad472010-04-27 14:02:58 +00001058 e_dbg("Phy ID = %x\n", hw->phy_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001060 /* Set PHY to class A mode (if necessary) */
1061 ret_val = e1000_set_phy_mode(hw);
1062 if (ret_val)
1063 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001065 if ((hw->mac_type == e1000_82545_rev_3) ||
1066 (hw->mac_type == e1000_82546_rev_3)) {
1067 ret_val =
1068 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1069 phy_data |= 0x00000008;
1070 ret_val =
1071 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001074 if (hw->mac_type <= e1000_82543 ||
1075 hw->mac_type == e1000_82541 || hw->mac_type == e1000_82547 ||
Janusz Wolak13a87c12015-09-28 23:40:19 +02001076 hw->mac_type == e1000_82541_rev_2 ||
1077 hw->mac_type == e1000_82547_rev_2)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001078 hw->phy_reset_disable = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001080 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001081}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001083/**
1084 * e1000_copper_link_igp_setup - Copper link setup for e1000_phy_igp series.
1085 * @hw: Struct containing variables accessed by shared code
1086 */
Joe Perches64798842008-07-11 15:17:02 -07001087static s32 e1000_copper_link_igp_setup(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001088{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001089 u32 led_ctrl;
1090 s32 ret_val;
1091 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001093 if (hw->phy_reset_disable)
1094 return E1000_SUCCESS;
Auke Kok76c224b2006-05-23 13:36:06 -07001095
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001096 ret_val = e1000_phy_reset(hw);
1097 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001098 e_dbg("Error Resetting the PHY\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001099 return ret_val;
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001102 /* Wait 15ms for MAC to configure PHY from eeprom settings */
1103 msleep(15);
1104 /* Configure activity LED after PHY reset */
1105 led_ctrl = er32(LEDCTL);
1106 led_ctrl &= IGP_ACTIVITY_LED_MASK;
1107 led_ctrl |= (IGP_ACTIVITY_LED_ENABLE | IGP_LED3_MODE);
1108 ew32(LEDCTL, led_ctrl);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001109
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001110 /* The NVM settings will configure LPLU in D3 for IGP2 and IGP3 PHYs */
1111 if (hw->phy_type == e1000_phy_igp) {
1112 /* disable lplu d3 during driver init */
1113 ret_val = e1000_set_d3_lplu_state(hw, false);
1114 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001115 e_dbg("Error Disabling LPLU D3\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001116 return ret_val;
1117 }
1118 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001119
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001120 /* Configure mdi-mdix settings */
1121 ret_val = e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1122 if (ret_val)
1123 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001124
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001125 if ((hw->mac_type == e1000_82541) || (hw->mac_type == e1000_82547)) {
1126 hw->dsp_config_state = e1000_dsp_config_disabled;
1127 /* Force MDI for earlier revs of the IGP PHY */
1128 phy_data &=
1129 ~(IGP01E1000_PSCR_AUTO_MDIX |
1130 IGP01E1000_PSCR_FORCE_MDI_MDIX);
1131 hw->mdix = 1;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001132
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001133 } else {
1134 hw->dsp_config_state = e1000_dsp_config_enabled;
1135 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001136
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001137 switch (hw->mdix) {
1138 case 1:
1139 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1140 break;
1141 case 2:
1142 phy_data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
1143 break;
1144 case 0:
1145 default:
1146 phy_data |= IGP01E1000_PSCR_AUTO_MDIX;
1147 break;
1148 }
1149 }
1150 ret_val = e1000_write_phy_reg(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1151 if (ret_val)
1152 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001153
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001154 /* set auto-master slave resolution settings */
1155 if (hw->autoneg) {
1156 e1000_ms_type phy_ms_setting = hw->master_slave;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001157
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001158 if (hw->ffe_config_state == e1000_ffe_config_active)
1159 hw->ffe_config_state = e1000_ffe_config_enabled;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001160
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001161 if (hw->dsp_config_state == e1000_dsp_config_activated)
1162 hw->dsp_config_state = e1000_dsp_config_enabled;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001163
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001164 /* when autonegotiation advertisement is only 1000Mbps then we
1165 * should disable SmartSpeed and enable Auto MasterSlave
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001166 * resolution as hardware default.
1167 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001168 if (hw->autoneg_advertised == ADVERTISE_1000_FULL) {
1169 /* Disable SmartSpeed */
1170 ret_val =
1171 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
1172 &phy_data);
1173 if (ret_val)
1174 return ret_val;
1175 phy_data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1176 ret_val =
1177 e1000_write_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
1178 phy_data);
1179 if (ret_val)
1180 return ret_val;
1181 /* Set auto Master/Slave resolution process */
1182 ret_val =
1183 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_data);
1184 if (ret_val)
1185 return ret_val;
1186 phy_data &= ~CR_1000T_MS_ENABLE;
1187 ret_val =
1188 e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_data);
1189 if (ret_val)
1190 return ret_val;
1191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001193 ret_val = e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_data);
1194 if (ret_val)
1195 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001197 /* load defaults for future use */
1198 hw->original_master_slave = (phy_data & CR_1000T_MS_ENABLE) ?
1199 ((phy_data & CR_1000T_MS_VALUE) ?
1200 e1000_ms_force_master :
1201 e1000_ms_force_slave) : e1000_ms_auto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001203 switch (phy_ms_setting) {
1204 case e1000_ms_force_master:
1205 phy_data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
1206 break;
1207 case e1000_ms_force_slave:
1208 phy_data |= CR_1000T_MS_ENABLE;
1209 phy_data &= ~(CR_1000T_MS_VALUE);
1210 break;
1211 case e1000_ms_auto:
1212 phy_data &= ~CR_1000T_MS_ENABLE;
1213 default:
1214 break;
1215 }
1216 ret_val = e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_data);
1217 if (ret_val)
1218 return ret_val;
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001221 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001222}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001224/**
1225 * e1000_copper_link_mgp_setup - Copper link setup for e1000_phy_m88 series.
1226 * @hw: Struct containing variables accessed by shared code
1227 */
Joe Perches64798842008-07-11 15:17:02 -07001228static s32 e1000_copper_link_mgp_setup(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001229{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001230 s32 ret_val;
1231 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001233 if (hw->phy_reset_disable)
1234 return E1000_SUCCESS;
Auke Kok76c224b2006-05-23 13:36:06 -07001235
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001236 /* Enable CRS on TX. This must be set for half-duplex operation. */
1237 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1238 if (ret_val)
1239 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001240
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001241 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001242
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001243 /* Options:
1244 * MDI/MDI-X = 0 (default)
1245 * 0 - Auto for all speeds
1246 * 1 - MDI mode
1247 * 2 - MDI-X mode
1248 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
1249 */
1250 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001251
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001252 switch (hw->mdix) {
1253 case 1:
1254 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
1255 break;
1256 case 2:
1257 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
1258 break;
1259 case 3:
1260 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
1261 break;
1262 case 0:
1263 default:
1264 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
1265 break;
1266 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001267
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001268 /* Options:
1269 * disable_polarity_correction = 0 (default)
1270 * Automatic Correction for Reversed Cable Polarity
1271 * 0 - Disabled
1272 * 1 - Enabled
1273 */
1274 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
1275 if (hw->disable_polarity_correction == 1)
1276 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
1277 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1278 if (ret_val)
1279 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001280
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001281 if (hw->phy_revision < M88E1011_I_REV_4) {
1282 /* Force TX_CLK in the Extended PHY Specific Control Register
1283 * to 25MHz clock.
1284 */
1285 ret_val =
1286 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
1287 &phy_data);
1288 if (ret_val)
1289 return ret_val;
Auke Kokee040222006-06-27 09:08:03 -07001290
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001291 phy_data |= M88E1000_EPSCR_TX_CLK_25;
Auke Kokee040222006-06-27 09:08:03 -07001292
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001293 if ((hw->phy_revision == E1000_REVISION_2) &&
1294 (hw->phy_id == M88E1111_I_PHY_ID)) {
1295 /* Vidalia Phy, set the downshift counter to 5x */
1296 phy_data &= ~(M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK);
1297 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
1298 ret_val = e1000_write_phy_reg(hw,
1299 M88E1000_EXT_PHY_SPEC_CTRL,
1300 phy_data);
1301 if (ret_val)
1302 return ret_val;
1303 } else {
1304 /* Configure Master and Slave downshift values */
1305 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
1306 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
1307 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
1308 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
1309 ret_val = e1000_write_phy_reg(hw,
1310 M88E1000_EXT_PHY_SPEC_CTRL,
1311 phy_data);
1312 if (ret_val)
1313 return ret_val;
1314 }
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001317 /* SW Reset the PHY so all changes take effect */
1318 ret_val = e1000_phy_reset(hw);
1319 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001320 e_dbg("Error Resetting the PHY\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001321 return ret_val;
1322 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001323
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001324 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001325}
1326
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001327/**
1328 * e1000_copper_link_autoneg - setup auto-neg
1329 * @hw: Struct containing variables accessed by shared code
1330 *
1331 * Setup auto-negotiation and flow control advertisements,
1332 * and then perform auto-negotiation.
1333 */
Joe Perches64798842008-07-11 15:17:02 -07001334static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001335{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001336 s32 ret_val;
1337 u16 phy_data;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001338
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001339 /* Perform some bounds checking on the hw->autoneg_advertised
1340 * parameter. If this variable is zero, then set it to the default.
1341 */
1342 hw->autoneg_advertised &= AUTONEG_ADVERTISE_SPEED_DEFAULT;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001343
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001344 /* If autoneg_advertised is zero, we assume it was not defaulted
1345 * by the calling code so we set to advertise full capability.
1346 */
1347 if (hw->autoneg_advertised == 0)
1348 hw->autoneg_advertised = AUTONEG_ADVERTISE_SPEED_DEFAULT;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001349
Dirk Brandewie5377a412011-01-06 14:29:54 +00001350 /* IFE/RTL8201N PHY only supports 10/100 */
1351 if (hw->phy_type == e1000_phy_8201)
1352 hw->autoneg_advertised &= AUTONEG_ADVERTISE_10_100_ALL;
1353
Emil Tantilov675ad472010-04-27 14:02:58 +00001354 e_dbg("Reconfiguring auto-neg advertisement params\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001355 ret_val = e1000_phy_setup_autoneg(hw);
1356 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001357 e_dbg("Error Setting up Auto-Negotiation\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001358 return ret_val;
1359 }
Emil Tantilov675ad472010-04-27 14:02:58 +00001360 e_dbg("Restarting Auto-Neg\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001361
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001362 /* Restart auto-negotiation by setting the Auto Neg Enable bit and
1363 * the Auto Neg Restart bit in the PHY control register.
1364 */
1365 ret_val = e1000_read_phy_reg(hw, PHY_CTRL, &phy_data);
1366 if (ret_val)
1367 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001368
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001369 phy_data |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG);
1370 ret_val = e1000_write_phy_reg(hw, PHY_CTRL, phy_data);
1371 if (ret_val)
1372 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001373
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001374 /* Does the user want to wait for Auto-Neg to complete here, or
1375 * check at a later time (for example, callback routine).
1376 */
1377 if (hw->wait_autoneg_complete) {
1378 ret_val = e1000_wait_autoneg(hw);
1379 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001380 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001381 ("Error while waiting for autoneg to complete\n");
1382 return ret_val;
1383 }
1384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001386 hw->get_link_status = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001388 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001391/**
1392 * e1000_copper_link_postconfig - post link setup
1393 * @hw: Struct containing variables accessed by shared code
1394 *
1395 * Config the MAC and the PHY after link is up.
1396 * 1) Set up the MAC to the current PHY speed/duplex
1397 * if we are on 82543. If we
1398 * are on newer silicon, we only need to configure
1399 * collision distance in the Transmit Control Register.
1400 * 2) Set up flow control on the MAC to that established with
1401 * the link partner.
1402 * 3) Config DSP to improve Gigabit link quality for some PHY revisions.
1403 */
Joe Perches64798842008-07-11 15:17:02 -07001404static s32 e1000_copper_link_postconfig(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001405{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001406 s32 ret_val;
Auke Kok76c224b2006-05-23 13:36:06 -07001407
Dirk Brandewie5377a412011-01-06 14:29:54 +00001408 if ((hw->mac_type >= e1000_82544) && (hw->mac_type != e1000_ce4100)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001409 e1000_config_collision_dist(hw);
1410 } else {
1411 ret_val = e1000_config_mac_to_phy(hw);
1412 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001413 e_dbg("Error configuring MAC to PHY settings\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001414 return ret_val;
1415 }
1416 }
1417 ret_val = e1000_config_fc_after_link_up(hw);
1418 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001419 e_dbg("Error Configuring Flow Control\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001420 return ret_val;
1421 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001422
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001423 /* Config DSP to improve Giga link quality */
1424 if (hw->phy_type == e1000_phy_igp) {
1425 ret_val = e1000_config_dsp_after_link_change(hw, true);
1426 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001427 e_dbg("Error Configuring DSP after link up\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001428 return ret_val;
1429 }
1430 }
Auke Kok76c224b2006-05-23 13:36:06 -07001431
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001432 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001433}
1434
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001435/**
1436 * e1000_setup_copper_link - phy/speed/duplex setting
1437 * @hw: Struct containing variables accessed by shared code
1438 *
1439 * Detects which PHY is present and sets up the speed and duplex
1440 */
Joe Perches64798842008-07-11 15:17:02 -07001441static s32 e1000_setup_copper_link(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001442{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001443 s32 ret_val;
1444 u16 i;
1445 u16 phy_data;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001446
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001447 /* Check if it is a valid PHY and set PHY mode if necessary. */
1448 ret_val = e1000_copper_link_preconfig(hw);
1449 if (ret_val)
1450 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001451
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001452 if (hw->phy_type == e1000_phy_igp) {
1453 ret_val = e1000_copper_link_igp_setup(hw);
1454 if (ret_val)
1455 return ret_val;
1456 } else if (hw->phy_type == e1000_phy_m88) {
1457 ret_val = e1000_copper_link_mgp_setup(hw);
1458 if (ret_val)
1459 return ret_val;
Dirk Brandewie5377a412011-01-06 14:29:54 +00001460 } else {
1461 ret_val = gbe_dhg_phy_setup(hw);
1462 if (ret_val) {
1463 e_dbg("gbe_dhg_phy_setup failed!\n");
1464 return ret_val;
1465 }
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001466 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001467
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001468 if (hw->autoneg) {
1469 /* Setup autoneg and flow control advertisement
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001470 * and perform autonegotiation
1471 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001472 ret_val = e1000_copper_link_autoneg(hw);
1473 if (ret_val)
1474 return ret_val;
1475 } else {
1476 /* PHY will be set to 10H, 10F, 100H,or 100F
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001477 * depending on value from forced_speed_duplex.
1478 */
Emil Tantilov675ad472010-04-27 14:02:58 +00001479 e_dbg("Forcing speed and duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001480 ret_val = e1000_phy_force_speed_duplex(hw);
1481 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001482 e_dbg("Error Forcing Speed and Duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001483 return ret_val;
1484 }
1485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001487 /* Check link status. Wait up to 100 microseconds for link to become
1488 * valid.
1489 */
1490 for (i = 0; i < 10; i++) {
1491 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
1492 if (ret_val)
1493 return ret_val;
1494 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
1495 if (ret_val)
1496 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001498 if (phy_data & MII_SR_LINK_STATUS) {
1499 /* Config the MAC and PHY after link is up */
1500 ret_val = e1000_copper_link_postconfig(hw);
1501 if (ret_val)
1502 return ret_val;
Auke Kok76c224b2006-05-23 13:36:06 -07001503
Emil Tantilov675ad472010-04-27 14:02:58 +00001504 e_dbg("Valid link established!!!\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001505 return E1000_SUCCESS;
1506 }
1507 udelay(10);
1508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Emil Tantilov675ad472010-04-27 14:02:58 +00001510 e_dbg("Unable to establish link!!!\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001511 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001514/**
1515 * e1000_phy_setup_autoneg - phy settings
1516 * @hw: Struct containing variables accessed by shared code
1517 *
1518 * Configures PHY autoneg and flow control advertisement settings
1519 */
Joe Perches64798842008-07-11 15:17:02 -07001520s32 e1000_phy_setup_autoneg(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001522 s32 ret_val;
1523 u16 mii_autoneg_adv_reg;
1524 u16 mii_1000t_ctrl_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001526 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
1527 ret_val = e1000_read_phy_reg(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
1528 if (ret_val)
1529 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001531 /* Read the MII 1000Base-T Control Register (Address 9). */
Dirk Brandewie5377a412011-01-06 14:29:54 +00001532 ret_val = e1000_read_phy_reg(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001533 if (ret_val)
1534 return ret_val;
Dirk Brandewie5377a412011-01-06 14:29:54 +00001535 else if (hw->phy_type == e1000_phy_8201)
1536 mii_1000t_ctrl_reg &= ~REG9_SPEED_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001538 /* Need to parse both autoneg_advertised and fc and set up
1539 * the appropriate PHY registers. First we will parse for
1540 * autoneg_advertised software override. Since we can advertise
1541 * a plethora of combinations, we need to check each bit
1542 * individually.
1543 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001545 /* First we clear all the 10/100 mb speed bits in the Auto-Neg
1546 * Advertisement Register (Address 4) and the 1000 mb speed bits in
1547 * the 1000Base-T Control Register (Address 9).
1548 */
1549 mii_autoneg_adv_reg &= ~REG4_SPEED_MASK;
1550 mii_1000t_ctrl_reg &= ~REG9_SPEED_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Emil Tantilov675ad472010-04-27 14:02:58 +00001552 e_dbg("autoneg_advertised %x\n", hw->autoneg_advertised);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001554 /* Do we want to advertise 10 Mb Half Duplex? */
1555 if (hw->autoneg_advertised & ADVERTISE_10_HALF) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001556 e_dbg("Advertise 10mb Half duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001557 mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS;
1558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001560 /* Do we want to advertise 10 Mb Full Duplex? */
1561 if (hw->autoneg_advertised & ADVERTISE_10_FULL) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001562 e_dbg("Advertise 10mb Full duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001563 mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS;
1564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001566 /* Do we want to advertise 100 Mb Half Duplex? */
1567 if (hw->autoneg_advertised & ADVERTISE_100_HALF) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001568 e_dbg("Advertise 100mb Half duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001569 mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS;
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001572 /* Do we want to advertise 100 Mb Full Duplex? */
1573 if (hw->autoneg_advertised & ADVERTISE_100_FULL) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001574 e_dbg("Advertise 100mb Full duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001575 mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS;
1576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001578 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */
1579 if (hw->autoneg_advertised & ADVERTISE_1000_HALF) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001580 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001581 ("Advertise 1000mb Half duplex requested, request denied!\n");
1582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001584 /* Do we want to advertise 1000 Mb Full Duplex? */
1585 if (hw->autoneg_advertised & ADVERTISE_1000_FULL) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001586 e_dbg("Advertise 1000mb Full duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001587 mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS;
1588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001590 /* Check for a software override of the flow control settings, and
1591 * setup the PHY advertisement registers accordingly. If
1592 * auto-negotiation is enabled, then software will have to set the
1593 * "PAUSE" bits to the correct value in the Auto-Negotiation
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001594 * Advertisement Register (PHY_AUTONEG_ADV) and re-start
1595 * auto-negotiation.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001596 *
1597 * The possible values of the "fc" parameter are:
1598 * 0: Flow control is completely disabled
1599 * 1: Rx flow control is enabled (we can receive pause frames
1600 * but not send pause frames).
1601 * 2: Tx flow control is enabled (we can send pause frames
1602 * but we do not support receiving pause frames).
1603 * 3: Both Rx and TX flow control (symmetric) are enabled.
1604 * other: No software override. The flow control configuration
1605 * in the EEPROM is used.
1606 */
1607 switch (hw->fc) {
1608 case E1000_FC_NONE: /* 0 */
1609 /* Flow control (RX & TX) is completely disabled by a
1610 * software over-ride.
1611 */
1612 mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1613 break;
1614 case E1000_FC_RX_PAUSE: /* 1 */
1615 /* RX Flow control is enabled, and TX Flow control is
1616 * disabled, by a software over-ride.
1617 */
1618 /* Since there really isn't a way to advertise that we are
1619 * capable of RX Pause ONLY, we will advertise that we
1620 * support both symmetric and asymmetric RX PAUSE. Later
1621 * (in e1000_config_fc_after_link_up) we will disable the
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001622 * hw's ability to send PAUSE frames.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001623 */
1624 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1625 break;
1626 case E1000_FC_TX_PAUSE: /* 2 */
1627 /* TX Flow control is enabled, and RX Flow control is
1628 * disabled, by a software over-ride.
1629 */
1630 mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR;
1631 mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE;
1632 break;
1633 case E1000_FC_FULL: /* 3 */
1634 /* Flow control (both RX and TX) is enabled by a software
1635 * over-ride.
1636 */
1637 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1638 break;
1639 default:
Emil Tantilov675ad472010-04-27 14:02:58 +00001640 e_dbg("Flow control param set incorrectly\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001641 return -E1000_ERR_CONFIG;
1642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001644 ret_val = e1000_write_phy_reg(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg);
1645 if (ret_val)
1646 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Emil Tantilov675ad472010-04-27 14:02:58 +00001648 e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Dirk Brandewie5377a412011-01-06 14:29:54 +00001650 if (hw->phy_type == e1000_phy_8201) {
1651 mii_1000t_ctrl_reg = 0;
1652 } else {
1653 ret_val = e1000_write_phy_reg(hw, PHY_1000T_CTRL,
Janusz Wolaka48954c2015-09-17 23:34:29 +02001654 mii_1000t_ctrl_reg);
Dirk Brandewie5377a412011-01-06 14:29:54 +00001655 if (ret_val)
1656 return ret_val;
1657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001659 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001662/**
1663 * e1000_phy_force_speed_duplex - force link settings
1664 * @hw: Struct containing variables accessed by shared code
1665 *
1666 * Force PHY speed and duplex settings to hw->forced_speed_duplex
1667 */
Joe Perches64798842008-07-11 15:17:02 -07001668static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001670 u32 ctrl;
1671 s32 ret_val;
1672 u16 mii_ctrl_reg;
1673 u16 mii_status_reg;
1674 u16 phy_data;
1675 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001677 /* Turn off Flow control if we are forcing speed and duplex. */
1678 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Emil Tantilov675ad472010-04-27 14:02:58 +00001680 e_dbg("hw->fc = %d\n", hw->fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001682 /* Read the Device Control Register. */
1683 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001685 /* Set the bits to Force Speed and Duplex in the Device Ctrl Reg. */
1686 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1687 ctrl &= ~(DEVICE_SPEED_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001689 /* Clear the Auto Speed Detect Enable bit. */
1690 ctrl &= ~E1000_CTRL_ASDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001692 /* Read the MII Control Register. */
1693 ret_val = e1000_read_phy_reg(hw, PHY_CTRL, &mii_ctrl_reg);
1694 if (ret_val)
1695 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001697 /* We need to disable autoneg in order to force link and duplex. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001699 mii_ctrl_reg &= ~MII_CR_AUTO_NEG_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001701 /* Are we forcing Full or Half Duplex? */
1702 if (hw->forced_speed_duplex == e1000_100_full ||
1703 hw->forced_speed_duplex == e1000_10_full) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001704 /* We want to force full duplex so we SET the full duplex bits
1705 * in the Device and MII Control Registers.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001706 */
1707 ctrl |= E1000_CTRL_FD;
1708 mii_ctrl_reg |= MII_CR_FULL_DUPLEX;
Emil Tantilov675ad472010-04-27 14:02:58 +00001709 e_dbg("Full Duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001710 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001711 /* We want to force half duplex so we CLEAR the full duplex bits
1712 * in the Device and MII Control Registers.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001713 */
1714 ctrl &= ~E1000_CTRL_FD;
1715 mii_ctrl_reg &= ~MII_CR_FULL_DUPLEX;
Emil Tantilov675ad472010-04-27 14:02:58 +00001716 e_dbg("Half Duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001719 /* Are we forcing 100Mbps??? */
1720 if (hw->forced_speed_duplex == e1000_100_full ||
1721 hw->forced_speed_duplex == e1000_100_half) {
1722 /* Set the 100Mb bit and turn off the 1000Mb and 10Mb bits. */
1723 ctrl |= E1000_CTRL_SPD_100;
1724 mii_ctrl_reg |= MII_CR_SPEED_100;
1725 mii_ctrl_reg &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10);
Emil Tantilov675ad472010-04-27 14:02:58 +00001726 e_dbg("Forcing 100mb ");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001727 } else {
1728 /* Set the 10Mb bit and turn off the 1000Mb and 100Mb bits. */
1729 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1730 mii_ctrl_reg |= MII_CR_SPEED_10;
1731 mii_ctrl_reg &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100);
Emil Tantilov675ad472010-04-27 14:02:58 +00001732 e_dbg("Forcing 10mb ");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001735 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001737 /* Write the configured values back to the Device Control Reg. */
1738 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001740 if (hw->phy_type == e1000_phy_m88) {
1741 ret_val =
1742 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1743 if (ret_val)
1744 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001746 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires
1747 * MDI forced whenever speed are duplex are forced.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001748 */
1749 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1750 ret_val =
1751 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1752 if (ret_val)
1753 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Emil Tantilov675ad472010-04-27 14:02:58 +00001755 e_dbg("M88E1000 PSCR: %x\n", phy_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001757 /* Need to reset the PHY or these changes will be ignored */
1758 mii_ctrl_reg |= MII_CR_RESET;
Auke Kok90fb5132006-11-01 08:47:30 -08001759
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001760 /* Disable MDI-X support for 10/100 */
1761 } else {
1762 /* Clear Auto-Crossover to force MDI manually. IGP requires MDI
1763 * forced whenever speed or duplex are forced.
1764 */
1765 ret_val =
1766 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1767 if (ret_val)
1768 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001770 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1771 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001773 ret_val =
1774 e1000_write_phy_reg(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1775 if (ret_val)
1776 return ret_val;
1777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001779 /* Write back the modified PHY MII control register. */
1780 ret_val = e1000_write_phy_reg(hw, PHY_CTRL, mii_ctrl_reg);
1781 if (ret_val)
1782 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001784 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001786 /* The wait_autoneg_complete flag may be a little misleading here.
1787 * Since we are forcing speed and duplex, Auto-Neg is not enabled.
1788 * But we do want to delay for a period while forcing only so we
1789 * don't generate false No Link messages. So we will wait here
1790 * only if the user has set wait_autoneg_complete to 1, which is
1791 * the default.
1792 */
1793 if (hw->wait_autoneg_complete) {
1794 /* We will wait for autoneg to complete. */
Emil Tantilov675ad472010-04-27 14:02:58 +00001795 e_dbg("Waiting for forced speed/duplex link.\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001796 mii_status_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001798 /* Wait for autoneg to complete or 4.5 seconds to expire */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001799 for (i = PHY_FORCE_TIME; i > 0; i--) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001800 /* Read the MII Status Register and wait for Auto-Neg
1801 * Complete bit to be set.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001802 */
1803 ret_val =
1804 e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
1805 if (ret_val)
1806 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001808 ret_val =
1809 e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
1810 if (ret_val)
1811 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001813 if (mii_status_reg & MII_SR_LINK_STATUS)
1814 break;
1815 msleep(100);
1816 }
1817 if ((i == 0) && (hw->phy_type == e1000_phy_m88)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001818 /* We didn't get link. Reset the DSP and wait again
1819 * for link.
1820 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001821 ret_val = e1000_phy_reset_dsp(hw);
1822 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00001823 e_dbg("Error Resetting PHY DSP\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001824 return ret_val;
1825 }
1826 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001827 /* This loop will early-out if the link condition has been
1828 * met
1829 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001830 for (i = PHY_FORCE_TIME; i > 0; i--) {
1831 if (mii_status_reg & MII_SR_LINK_STATUS)
1832 break;
1833 msleep(100);
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001834 /* Read the MII Status Register and wait for Auto-Neg
1835 * Complete bit to be set.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001836 */
1837 ret_val =
1838 e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
1839 if (ret_val)
1840 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001842 ret_val =
1843 e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
1844 if (ret_val)
1845 return ret_val;
1846 }
1847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001849 if (hw->phy_type == e1000_phy_m88) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001850 /* Because we reset the PHY above, we need to re-force TX_CLK in
1851 * the Extended PHY Specific Control Register to 25MHz clock.
1852 * This value defaults back to a 2.5MHz clock when the PHY is
1853 * reset.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001854 */
1855 ret_val =
1856 e1000_read_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
1857 &phy_data);
1858 if (ret_val)
1859 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001861 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1862 ret_val =
1863 e1000_write_phy_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
1864 phy_data);
1865 if (ret_val)
1866 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001868 /* In addition, because of the s/w reset above, we need to
1869 * enable CRS on Tx. This must be set for both full and half
1870 * duplex operation.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001871 */
1872 ret_val =
1873 e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1874 if (ret_val)
1875 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001877 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1878 ret_val =
1879 e1000_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1880 if (ret_val)
1881 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Janusz Wolak13a87c12015-09-28 23:40:19 +02001883 if ((hw->mac_type == e1000_82544 ||
1884 hw->mac_type == e1000_82543) &&
1885 (!hw->autoneg) &&
1886 (hw->forced_speed_duplex == e1000_10_full ||
1887 hw->forced_speed_duplex == e1000_10_half)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001888 ret_val = e1000_polarity_reversal_workaround(hw);
1889 if (ret_val)
1890 return ret_val;
1891 }
1892 }
1893 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001896/**
1897 * e1000_config_collision_dist - set collision distance register
1898 * @hw: Struct containing variables accessed by shared code
1899 *
1900 * Sets the collision distance in the Transmit Control register.
1901 * Link should have been established previously. Reads the speed and duplex
1902 * information from the Device Status register.
1903 */
Joe Perches64798842008-07-11 15:17:02 -07001904void e1000_config_collision_dist(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001906 u32 tctl, coll_dist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001908 if (hw->mac_type < e1000_82543)
1909 coll_dist = E1000_COLLISION_DISTANCE_82542;
1910 else
1911 coll_dist = E1000_COLLISION_DISTANCE;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001912
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001913 tctl = er32(TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001915 tctl &= ~E1000_TCTL_COLD;
1916 tctl |= coll_dist << E1000_COLD_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001918 ew32(TCTL, tctl);
1919 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001922/**
1923 * e1000_config_mac_to_phy - sync phy and mac settings
1924 * @hw: Struct containing variables accessed by shared code
1925 * @mii_reg: data to write to the MII control register
1926 *
1927 * Sets MAC speed and duplex settings to reflect the those in the PHY
1928 * The contents of the PHY register containing the needed information need to
1929 * be passed in.
1930 */
Joe Perches64798842008-07-11 15:17:02 -07001931static s32 e1000_config_mac_to_phy(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001933 u32 ctrl;
1934 s32 ret_val;
1935 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001937 /* 82544 or newer MAC, Auto Speed Detection takes care of
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001938 * MAC speed/duplex configuration.
1939 */
Dirk Brandewie5377a412011-01-06 14:29:54 +00001940 if ((hw->mac_type >= e1000_82544) && (hw->mac_type != e1000_ce4100))
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001941 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001942
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001943 /* Read the Device Control Register and set the bits to Force Speed
1944 * and Duplex.
1945 */
1946 ctrl = er32(CTRL);
1947 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1948 ctrl &= ~(E1000_CTRL_SPD_SEL | E1000_CTRL_ILOS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Dirk Brandewie5377a412011-01-06 14:29:54 +00001950 switch (hw->phy_type) {
1951 case e1000_phy_8201:
1952 ret_val = e1000_read_phy_reg(hw, PHY_CTRL, &phy_data);
1953 if (ret_val)
1954 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Dirk Brandewie5377a412011-01-06 14:29:54 +00001956 if (phy_data & RTL_PHY_CTRL_FD)
1957 ctrl |= E1000_CTRL_FD;
1958 else
1959 ctrl &= ~E1000_CTRL_FD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Dirk Brandewie5377a412011-01-06 14:29:54 +00001961 if (phy_data & RTL_PHY_CTRL_SPD_100)
1962 ctrl |= E1000_CTRL_SPD_100;
1963 else
1964 ctrl |= E1000_CTRL_SPD_10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Dirk Brandewie5377a412011-01-06 14:29:54 +00001966 e1000_config_collision_dist(hw);
1967 break;
1968 default:
1969 /* Set up duplex in the Device Control and Transmit Control
1970 * registers depending on negotiated values.
1971 */
1972 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001973 &phy_data);
Dirk Brandewie5377a412011-01-06 14:29:54 +00001974 if (ret_val)
1975 return ret_val;
1976
1977 if (phy_data & M88E1000_PSSR_DPLX)
1978 ctrl |= E1000_CTRL_FD;
1979 else
1980 ctrl &= ~E1000_CTRL_FD;
1981
1982 e1000_config_collision_dist(hw);
1983
1984 /* Set up speed in the Device Control register depending on
1985 * negotiated values.
1986 */
1987 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS)
1988 ctrl |= E1000_CTRL_SPD_1000;
1989 else if ((phy_data & M88E1000_PSSR_SPEED) ==
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00001990 M88E1000_PSSR_100MBS)
Dirk Brandewie5377a412011-01-06 14:29:54 +00001991 ctrl |= E1000_CTRL_SPD_100;
1992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001994 /* Write the configured values back to the Device Control Reg. */
1995 ew32(CTRL, ctrl);
1996 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
1998
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07001999/**
2000 * e1000_force_mac_fc - force flow control settings
2001 * @hw: Struct containing variables accessed by shared code
2002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 * Forces the MAC's flow control settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 * Sets the TFCE and RFCE bits in the device control register to reflect
2005 * the adapter settings. TFCE and RFCE need to be explicitly set by
2006 * software when a Copper PHY is used because autonegotiation is managed
2007 * by the PHY rather than the MAC. Software must also configure these
2008 * bits when link is forced on a fiber connection.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002009 */
Joe Perches64798842008-07-11 15:17:02 -07002010s32 e1000_force_mac_fc(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002012 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002014 /* Get the current configuration of the Device Control Register */
2015 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002017 /* Because we didn't get link via the internal auto-negotiation
2018 * mechanism (we either forced link or we got link via PHY
2019 * auto-neg), we have to manually enable/disable transmit an
2020 * receive flow control.
2021 *
2022 * The "Case" statement below enables/disable flow control
2023 * according to the "hw->fc" parameter.
2024 *
2025 * The possible values of the "fc" parameter are:
2026 * 0: Flow control is completely disabled
2027 * 1: Rx flow control is enabled (we can receive pause
2028 * frames but not send pause frames).
2029 * 2: Tx flow control is enabled (we can send pause frames
2030 * frames but we do not receive pause frames).
2031 * 3: Both Rx and TX flow control (symmetric) is enabled.
2032 * other: No other values should be possible at this point.
2033 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002035 switch (hw->fc) {
2036 case E1000_FC_NONE:
2037 ctrl &= (~(E1000_CTRL_TFCE | E1000_CTRL_RFCE));
2038 break;
2039 case E1000_FC_RX_PAUSE:
2040 ctrl &= (~E1000_CTRL_TFCE);
2041 ctrl |= E1000_CTRL_RFCE;
2042 break;
2043 case E1000_FC_TX_PAUSE:
2044 ctrl &= (~E1000_CTRL_RFCE);
2045 ctrl |= E1000_CTRL_TFCE;
2046 break;
2047 case E1000_FC_FULL:
2048 ctrl |= (E1000_CTRL_TFCE | E1000_CTRL_RFCE);
2049 break;
2050 default:
Emil Tantilov675ad472010-04-27 14:02:58 +00002051 e_dbg("Flow control param set incorrectly\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002052 return -E1000_ERR_CONFIG;
2053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002055 /* Disable TX Flow Control for 82542 (rev 2.0) */
2056 if (hw->mac_type == e1000_82542_rev2_0)
2057 ctrl &= (~E1000_CTRL_TFCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002059 ew32(CTRL, ctrl);
2060 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002063/**
2064 * e1000_config_fc_after_link_up - configure flow control after autoneg
2065 * @hw: Struct containing variables accessed by shared code
2066 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 * Configures flow control settings after link is established
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 * Should be called immediately after a valid link has been established.
2069 * Forces MAC flow control settings if link was forced. When in MII/GMII mode
2070 * and autonegotiation is enabled, the MAC flow control settings will be set
2071 * based on the flow control negotiated by the PHY. In TBI mode, the TFCE
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002072 * and RFCE bits will be automatically set to the negotiated flow control mode.
2073 */
Joe Perches64798842008-07-11 15:17:02 -07002074static s32 e1000_config_fc_after_link_up(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002076 s32 ret_val;
2077 u16 mii_status_reg;
2078 u16 mii_nway_adv_reg;
2079 u16 mii_nway_lp_ability_reg;
2080 u16 speed;
2081 u16 duplex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002083 /* Check for the case where we have fiber media and auto-neg failed
2084 * so we had to force link. In this case, we need to force the
2085 * configuration of the MAC to match the "fc" parameter.
2086 */
Janusz Wolak13a87c12015-09-28 23:40:19 +02002087 if (((hw->media_type == e1000_media_type_fiber) &&
2088 (hw->autoneg_failed)) ||
2089 ((hw->media_type == e1000_media_type_internal_serdes) &&
2090 (hw->autoneg_failed)) ||
2091 ((hw->media_type == e1000_media_type_copper) &&
2092 (!hw->autoneg))) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002093 ret_val = e1000_force_mac_fc(hw);
2094 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002095 e_dbg("Error forcing flow control settings\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002096 return ret_val;
2097 }
2098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002100 /* Check for the case where we have copper media and auto-neg is
2101 * enabled. In this case, we need to check and see if Auto-Neg
2102 * has completed, and if so, how the PHY and link partner has
2103 * flow control configured.
2104 */
2105 if ((hw->media_type == e1000_media_type_copper) && hw->autoneg) {
2106 /* Read the MII Status Register and check to see if AutoNeg
2107 * has completed. We read this twice because this reg has
2108 * some "sticky" (latched) bits.
2109 */
2110 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
2111 if (ret_val)
2112 return ret_val;
2113 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
2114 if (ret_val)
2115 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002117 if (mii_status_reg & MII_SR_AUTONEG_COMPLETE) {
2118 /* The AutoNeg process has completed, so we now need to
2119 * read both the Auto Negotiation Advertisement Register
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002120 * (Address 4) and the Auto_Negotiation Base Page
2121 * Ability Register (Address 5) to determine how flow
2122 * control was negotiated.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002123 */
2124 ret_val = e1000_read_phy_reg(hw, PHY_AUTONEG_ADV,
2125 &mii_nway_adv_reg);
2126 if (ret_val)
2127 return ret_val;
2128 ret_val = e1000_read_phy_reg(hw, PHY_LP_ABILITY,
2129 &mii_nway_lp_ability_reg);
2130 if (ret_val)
2131 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002133 /* Two bits in the Auto Negotiation Advertisement
2134 * Register (Address 4) and two bits in the Auto
2135 * Negotiation Base Page Ability Register (Address 5)
2136 * determine flow control for both the PHY and the link
2137 * partner. The following table, taken out of the IEEE
2138 * 802.3ab/D6.0 dated March 25, 1999, describes these
2139 * PAUSE resolution bits and how flow control is
2140 * determined based upon these settings.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002141 * NOTE: DC = Don't Care
2142 *
2143 * LOCAL DEVICE | LINK PARTNER
2144 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | NIC Resolution
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002145 *-------|---------|-------|---------|------------------
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002146 * 0 | 0 | DC | DC | E1000_FC_NONE
2147 * 0 | 1 | 0 | DC | E1000_FC_NONE
2148 * 0 | 1 | 1 | 0 | E1000_FC_NONE
2149 * 0 | 1 | 1 | 1 | E1000_FC_TX_PAUSE
2150 * 1 | 0 | 0 | DC | E1000_FC_NONE
2151 * 1 | DC | 1 | DC | E1000_FC_FULL
2152 * 1 | 1 | 0 | 0 | E1000_FC_NONE
2153 * 1 | 1 | 0 | 1 | E1000_FC_RX_PAUSE
2154 *
2155 */
2156 /* Are both PAUSE bits set to 1? If so, this implies
2157 * Symmetric Flow Control is enabled at both ends. The
2158 * ASM_DIR bits are irrelevant per the spec.
2159 *
2160 * For Symmetric Flow Control:
2161 *
2162 * LOCAL DEVICE | LINK PARTNER
2163 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002164 *-------|---------|-------|---------|------------------
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002165 * 1 | DC | 1 | DC | E1000_FC_FULL
2166 *
2167 */
2168 if ((mii_nway_adv_reg & NWAY_AR_PAUSE) &&
2169 (mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002170 /* Now we need to check if the user selected Rx
2171 * ONLY of pause frames. In this case, we had
2172 * to advertise FULL flow control because we
2173 * could not advertise Rx ONLY. Hence, we must
2174 * now check to see if we need to turn OFF the
2175 * TRANSMISSION of PAUSE frames.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002176 */
2177 if (hw->original_fc == E1000_FC_FULL) {
2178 hw->fc = E1000_FC_FULL;
Emil Tantilov675ad472010-04-27 14:02:58 +00002179 e_dbg("Flow Control = FULL.\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002180 } else {
2181 hw->fc = E1000_FC_RX_PAUSE;
Emil Tantilov675ad472010-04-27 14:02:58 +00002182 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002183 ("Flow Control = RX PAUSE frames only.\n");
2184 }
2185 }
2186 /* For receiving PAUSE frames ONLY.
2187 *
2188 * LOCAL DEVICE | LINK PARTNER
2189 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002190 *-------|---------|-------|---------|------------------
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002191 * 0 | 1 | 1 | 1 | E1000_FC_TX_PAUSE
2192 *
2193 */
2194 else if (!(mii_nway_adv_reg & NWAY_AR_PAUSE) &&
2195 (mii_nway_adv_reg & NWAY_AR_ASM_DIR) &&
2196 (mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE) &&
Janusz Wolaka48954c2015-09-17 23:34:29 +02002197 (mii_nway_lp_ability_reg & NWAY_LPAR_ASM_DIR)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002198 hw->fc = E1000_FC_TX_PAUSE;
Emil Tantilov675ad472010-04-27 14:02:58 +00002199 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002200 ("Flow Control = TX PAUSE frames only.\n");
2201 }
2202 /* For transmitting PAUSE frames ONLY.
2203 *
2204 * LOCAL DEVICE | LINK PARTNER
2205 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002206 *-------|---------|-------|---------|------------------
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002207 * 1 | 1 | 0 | 1 | E1000_FC_RX_PAUSE
2208 *
2209 */
2210 else if ((mii_nway_adv_reg & NWAY_AR_PAUSE) &&
2211 (mii_nway_adv_reg & NWAY_AR_ASM_DIR) &&
2212 !(mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE) &&
Janusz Wolaka48954c2015-09-17 23:34:29 +02002213 (mii_nway_lp_ability_reg & NWAY_LPAR_ASM_DIR)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002214 hw->fc = E1000_FC_RX_PAUSE;
Emil Tantilov675ad472010-04-27 14:02:58 +00002215 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002216 ("Flow Control = RX PAUSE frames only.\n");
2217 }
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002218 /* Per the IEEE spec, at this point flow control should
2219 * be disabled. However, we want to consider that we
2220 * could be connected to a legacy switch that doesn't
2221 * advertise desired flow control, but can be forced on
2222 * the link partner. So if we advertised no flow
2223 * control, that is what we will resolve to. If we
2224 * advertised some kind of receive capability (Rx Pause
2225 * Only or Full Flow Control) and the link partner
2226 * advertised none, we will configure ourselves to
2227 * enable Rx Flow Control only. We can do this safely
2228 * for two reasons: If the link partner really
2229 * didn't want flow control enabled, and we enable Rx,
2230 * no harm done since we won't be receiving any PAUSE
2231 * frames anyway. If the intent on the link partner was
2232 * to have flow control enabled, then by us enabling Rx
2233 * only, we can at least receive pause frames and
2234 * process them. This is a good idea because in most
2235 * cases, since we are predominantly a server NIC, more
2236 * times than not we will be asked to delay transmission
2237 * of packets than asking our link partner to pause
2238 * transmission of frames.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002239 */
2240 else if ((hw->original_fc == E1000_FC_NONE ||
2241 hw->original_fc == E1000_FC_TX_PAUSE) ||
2242 hw->fc_strict_ieee) {
2243 hw->fc = E1000_FC_NONE;
Emil Tantilov675ad472010-04-27 14:02:58 +00002244 e_dbg("Flow Control = NONE.\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002245 } else {
2246 hw->fc = E1000_FC_RX_PAUSE;
Emil Tantilov675ad472010-04-27 14:02:58 +00002247 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002248 ("Flow Control = RX PAUSE frames only.\n");
2249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002251 /* Now we need to do one last check... If we auto-
2252 * negotiated to HALF DUPLEX, flow control should not be
2253 * enabled per IEEE 802.3 spec.
2254 */
2255 ret_val =
2256 e1000_get_speed_and_duplex(hw, &speed, &duplex);
2257 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002258 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002259 ("Error getting link speed and duplex\n");
2260 return ret_val;
2261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002263 if (duplex == HALF_DUPLEX)
2264 hw->fc = E1000_FC_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002266 /* Now we call a subroutine to actually force the MAC
2267 * controller to use the correct flow control settings.
2268 */
2269 ret_val = e1000_force_mac_fc(hw);
2270 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002271 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002272 ("Error forcing flow control settings\n");
2273 return ret_val;
2274 }
2275 } else {
Emil Tantilov675ad472010-04-27 14:02:58 +00002276 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002277 ("Copper PHY and Auto Neg has not completed.\n");
2278 }
2279 }
2280 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281}
2282
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002283/**
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002284 * e1000_check_for_serdes_link_generic - Check for link (Serdes)
2285 * @hw: pointer to the HW structure
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002286 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002287 * Checks for link up on the hardware. If link is not up and we have
2288 * a signal, then we need to force link up.
2289 */
Jesse Brandeburg11b7f7b2009-09-25 12:20:33 +00002290static s32 e1000_check_for_serdes_link_generic(struct e1000_hw *hw)
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002291{
2292 u32 rxcw;
2293 u32 ctrl;
2294 u32 status;
2295 s32 ret_val = E1000_SUCCESS;
2296
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002297 ctrl = er32(CTRL);
2298 status = er32(STATUS);
2299 rxcw = er32(RXCW);
2300
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002301 /* If we don't have link (auto-negotiation failed or link partner
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002302 * cannot auto-negotiate), and our link partner is not trying to
2303 * auto-negotiate with us (we are receiving idles or data),
2304 * we need to force link up. We also need to give auto-negotiation
2305 * time to complete.
2306 */
2307 /* (ctrl & E1000_CTRL_SWDPIN1) == 1 == have signal */
2308 if ((!(status & E1000_STATUS_LU)) && (!(rxcw & E1000_RXCW_C))) {
2309 if (hw->autoneg_failed == 0) {
2310 hw->autoneg_failed = 1;
2311 goto out;
2312 }
Emil Tantilov675ad472010-04-27 14:02:58 +00002313 e_dbg("NOT RXing /C/, disable AutoNeg and force link.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002314
2315 /* Disable auto-negotiation in the TXCW register */
2316 ew32(TXCW, (hw->txcw & ~E1000_TXCW_ANE));
2317
2318 /* Force link-up and also force full-duplex. */
2319 ctrl = er32(CTRL);
2320 ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FD);
2321 ew32(CTRL, ctrl);
2322
2323 /* Configure Flow Control after forcing link up. */
2324 ret_val = e1000_config_fc_after_link_up(hw);
2325 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002326 e_dbg("Error configuring flow control\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002327 goto out;
2328 }
2329 } else if ((ctrl & E1000_CTRL_SLU) && (rxcw & E1000_RXCW_C)) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002330 /* If we are forcing link and we are receiving /C/ ordered
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002331 * sets, re-enable auto-negotiation in the TXCW register
2332 * and disable forced link in the Device Control register
2333 * in an attempt to auto-negotiate with our link partner.
2334 */
Emil Tantilov675ad472010-04-27 14:02:58 +00002335 e_dbg("RXing /C/, enable AutoNeg and stop forcing link.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002336 ew32(TXCW, hw->txcw);
2337 ew32(CTRL, (ctrl & ~E1000_CTRL_SLU));
2338
2339 hw->serdes_has_link = true;
2340 } else if (!(E1000_TXCW_ANE & er32(TXCW))) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002341 /* If we force link for non-auto-negotiation switch, check
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002342 * link status based on MAC synchronization for internal
2343 * serdes media type.
2344 */
2345 /* SYNCH bit and IV bit are sticky. */
2346 udelay(10);
2347 rxcw = er32(RXCW);
2348 if (rxcw & E1000_RXCW_SYNCH) {
2349 if (!(rxcw & E1000_RXCW_IV)) {
2350 hw->serdes_has_link = true;
Emil Tantilov675ad472010-04-27 14:02:58 +00002351 e_dbg("SERDES: Link up - forced.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002352 }
2353 } else {
2354 hw->serdes_has_link = false;
Emil Tantilov675ad472010-04-27 14:02:58 +00002355 e_dbg("SERDES: Link down - force failed.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002356 }
2357 }
2358
2359 if (E1000_TXCW_ANE & er32(TXCW)) {
2360 status = er32(STATUS);
2361 if (status & E1000_STATUS_LU) {
2362 /* SYNCH bit and IV bit are sticky, so reread rxcw. */
2363 udelay(10);
2364 rxcw = er32(RXCW);
2365 if (rxcw & E1000_RXCW_SYNCH) {
2366 if (!(rxcw & E1000_RXCW_IV)) {
2367 hw->serdes_has_link = true;
Emil Tantilov675ad472010-04-27 14:02:58 +00002368 e_dbg("SERDES: Link up - autoneg "
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002369 "completed successfully.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002370 } else {
2371 hw->serdes_has_link = false;
Emil Tantilov675ad472010-04-27 14:02:58 +00002372 e_dbg("SERDES: Link down - invalid"
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002373 "codewords detected in autoneg.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002374 }
2375 } else {
2376 hw->serdes_has_link = false;
Emil Tantilov675ad472010-04-27 14:02:58 +00002377 e_dbg("SERDES: Link down - no sync.\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002378 }
2379 } else {
2380 hw->serdes_has_link = false;
Emil Tantilov675ad472010-04-27 14:02:58 +00002381 e_dbg("SERDES: Link down - autoneg failed\n");
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002382 }
2383 }
2384
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002385 out:
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002386 return ret_val;
2387}
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002388
2389/**
2390 * e1000_check_for_link
2391 * @hw: Struct containing variables accessed by shared code
2392 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 * Checks to see if the link status of the hardware has changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 * Called by any function that needs to check the link status of the adapter.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002395 */
Joe Perches64798842008-07-11 15:17:02 -07002396s32 e1000_check_for_link(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002398 u32 rxcw = 0;
2399 u32 ctrl;
2400 u32 status;
2401 u32 rctl;
2402 u32 icr;
2403 u32 signal = 0;
2404 s32 ret_val;
2405 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002407 ctrl = er32(CTRL);
2408 status = er32(STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002410 /* On adapters with a MAC newer than 82544, SW Definable pin 1 will be
2411 * set when the optics detect a signal. On older adapters, it will be
2412 * cleared when there is a signal. This applies to fiber media only.
2413 */
2414 if ((hw->media_type == e1000_media_type_fiber) ||
2415 (hw->media_type == e1000_media_type_internal_serdes)) {
2416 rxcw = er32(RXCW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002418 if (hw->media_type == e1000_media_type_fiber) {
2419 signal =
2420 (hw->mac_type >
2421 e1000_82544) ? E1000_CTRL_SWDPIN1 : 0;
2422 if (status & E1000_STATUS_LU)
2423 hw->get_link_status = false;
2424 }
2425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002427 /* If we have a copper PHY then we only want to go out to the PHY
2428 * registers to see if Auto-Neg has completed and/or if our link
2429 * status has changed. The get_link_status flag will be set if we
2430 * receive a Link Status Change interrupt or we have Rx Sequence
2431 * Errors.
2432 */
2433 if ((hw->media_type == e1000_media_type_copper) && hw->get_link_status) {
2434 /* First we want to see if the MII Status Register reports
2435 * link. If so, then we want to get the current speed/duplex
2436 * of the PHY.
2437 * Read the register twice since the link bit is sticky.
2438 */
2439 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
2440 if (ret_val)
2441 return ret_val;
2442 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
2443 if (ret_val)
2444 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002446 if (phy_data & MII_SR_LINK_STATUS) {
2447 hw->get_link_status = false;
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002448 /* Check if there was DownShift, must be checked
2449 * immediately after link-up
2450 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002451 e1000_check_downshift(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002453 /* If we are on 82544 or 82543 silicon and speed/duplex
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002454 * are forced to 10H or 10F, then we will implement the
2455 * polarity reversal workaround. We disable interrupts
2456 * first, and upon returning, place the devices
2457 * interrupt state to its previous value except for the
2458 * link status change interrupt which will
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002459 * happen due to the execution of this workaround.
2460 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Janusz Wolak13a87c12015-09-28 23:40:19 +02002462 if ((hw->mac_type == e1000_82544 ||
2463 hw->mac_type == e1000_82543) &&
2464 (!hw->autoneg) &&
2465 (hw->forced_speed_duplex == e1000_10_full ||
2466 hw->forced_speed_duplex == e1000_10_half)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002467 ew32(IMC, 0xffffffff);
2468 ret_val =
2469 e1000_polarity_reversal_workaround(hw);
2470 icr = er32(ICR);
2471 ew32(ICS, (icr & ~E1000_ICS_LSC));
2472 ew32(IMS, IMS_ENABLE_MASK);
2473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002475 } else {
2476 /* No link detected */
2477 e1000_config_dsp_after_link_change(hw, false);
2478 return 0;
2479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002481 /* If we are forcing speed/duplex, then we simply return since
2482 * we have already determined whether we have link or not.
2483 */
2484 if (!hw->autoneg)
2485 return -E1000_ERR_CONFIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002487 /* optimize the dsp settings for the igp phy */
2488 e1000_config_dsp_after_link_change(hw, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002490 /* We have a M88E1000 PHY and Auto-Neg is enabled. If we
2491 * have Si on board that is 82544 or newer, Auto
2492 * Speed Detection takes care of MAC speed/duplex
2493 * configuration. So we only need to configure Collision
2494 * Distance in the MAC. Otherwise, we need to force
2495 * speed/duplex on the MAC to the current PHY speed/duplex
2496 * settings.
2497 */
Dirk Brandewie5377a412011-01-06 14:29:54 +00002498 if ((hw->mac_type >= e1000_82544) &&
2499 (hw->mac_type != e1000_ce4100))
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002500 e1000_config_collision_dist(hw);
2501 else {
2502 ret_val = e1000_config_mac_to_phy(hw);
2503 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002504 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002505 ("Error configuring MAC to PHY settings\n");
2506 return ret_val;
2507 }
2508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002510 /* Configure Flow Control now that Auto-Neg has completed.
2511 * First, we need to restore the desired flow control settings
2512 * because we may have had to re-autoneg with a different link
2513 * partner.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002514 */
2515 ret_val = e1000_config_fc_after_link_up(hw);
2516 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002517 e_dbg("Error configuring flow control\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002518 return ret_val;
2519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002521 /* At this point we know that we are on copper and we have
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002522 * auto-negotiated link. These are conditions for checking the
2523 * link partner capability register. We use the link speed to
2524 * determine if TBI compatibility needs to be turned on or off.
2525 * If the link is not at gigabit speed, then TBI compatibility
2526 * is not needed. If we are at gigabit speed, we turn on TBI
2527 * compatibility.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002528 */
2529 if (hw->tbi_compatibility_en) {
2530 u16 speed, duplex;
Janusz Wolak13a87c12015-09-28 23:40:19 +02002531
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002532 ret_val =
2533 e1000_get_speed_and_duplex(hw, &speed, &duplex);
Janusz Wolak13a87c12015-09-28 23:40:19 +02002534
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002535 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002536 e_dbg
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002537 ("Error getting link speed and duplex\n");
2538 return ret_val;
2539 }
2540 if (speed != SPEED_1000) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002541 /* If link speed is not set to gigabit speed, we
2542 * do not need to enable TBI compatibility.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002543 */
2544 if (hw->tbi_compatibility_on) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002545 /* If we previously were in the mode,
2546 * turn it off.
2547 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002548 rctl = er32(RCTL);
2549 rctl &= ~E1000_RCTL_SBP;
2550 ew32(RCTL, rctl);
2551 hw->tbi_compatibility_on = false;
2552 }
2553 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002554 /* If TBI compatibility is was previously off,
2555 * turn it on. For compatibility with a TBI link
2556 * partner, we will store bad packets. Some
2557 * frames have an additional byte on the end and
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002558 * will look like CRC errors to to the hardware.
2559 */
2560 if (!hw->tbi_compatibility_on) {
2561 hw->tbi_compatibility_on = true;
2562 rctl = er32(RCTL);
2563 rctl |= E1000_RCTL_SBP;
2564 ew32(RCTL, rctl);
2565 }
2566 }
2567 }
2568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002570 if ((hw->media_type == e1000_media_type_fiber) ||
2571 (hw->media_type == e1000_media_type_internal_serdes))
2572 e1000_check_for_serdes_link_generic(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002574 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
2576
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002577/**
2578 * e1000_get_speed_and_duplex
2579 * @hw: Struct containing variables accessed by shared code
2580 * @speed: Speed of the connection
2581 * @duplex: Duplex setting of the connection
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002582 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 * Detects the current speed and duplex settings of the hardware.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002584 */
Joe Perches64798842008-07-11 15:17:02 -07002585s32 e1000_get_speed_and_duplex(struct e1000_hw *hw, u16 *speed, u16 *duplex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002587 u32 status;
2588 s32 ret_val;
2589 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002591 if (hw->mac_type >= e1000_82543) {
2592 status = er32(STATUS);
2593 if (status & E1000_STATUS_SPEED_1000) {
2594 *speed = SPEED_1000;
Emil Tantilov675ad472010-04-27 14:02:58 +00002595 e_dbg("1000 Mbs, ");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002596 } else if (status & E1000_STATUS_SPEED_100) {
2597 *speed = SPEED_100;
Emil Tantilov675ad472010-04-27 14:02:58 +00002598 e_dbg("100 Mbs, ");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002599 } else {
2600 *speed = SPEED_10;
Emil Tantilov675ad472010-04-27 14:02:58 +00002601 e_dbg("10 Mbs, ");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002604 if (status & E1000_STATUS_FD) {
2605 *duplex = FULL_DUPLEX;
Emil Tantilov675ad472010-04-27 14:02:58 +00002606 e_dbg("Full Duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002607 } else {
2608 *duplex = HALF_DUPLEX;
Emil Tantilov675ad472010-04-27 14:02:58 +00002609 e_dbg(" Half Duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002610 }
2611 } else {
Emil Tantilov675ad472010-04-27 14:02:58 +00002612 e_dbg("1000 Mbs, Full Duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002613 *speed = SPEED_1000;
2614 *duplex = FULL_DUPLEX;
2615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002617 /* IGP01 PHY may advertise full duplex operation after speed downgrade
2618 * even if it is operating at half duplex. Here we set the duplex
2619 * settings to match the duplex in the link partner's capabilities.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002620 */
2621 if (hw->phy_type == e1000_phy_igp && hw->speed_downgraded) {
2622 ret_val = e1000_read_phy_reg(hw, PHY_AUTONEG_EXP, &phy_data);
2623 if (ret_val)
2624 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002626 if (!(phy_data & NWAY_ER_LP_NWAY_CAPS))
2627 *duplex = HALF_DUPLEX;
2628 else {
2629 ret_val =
2630 e1000_read_phy_reg(hw, PHY_LP_ABILITY, &phy_data);
2631 if (ret_val)
2632 return ret_val;
Janusz Wolak13a87c12015-09-28 23:40:19 +02002633 if ((*speed == SPEED_100 &&
2634 !(phy_data & NWAY_LPAR_100TX_FD_CAPS)) ||
2635 (*speed == SPEED_10 &&
2636 !(phy_data & NWAY_LPAR_10T_FD_CAPS)))
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002637 *duplex = HALF_DUPLEX;
2638 }
2639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002641 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
2643
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002644/**
2645 * e1000_wait_autoneg
2646 * @hw: Struct containing variables accessed by shared code
2647 *
2648 * Blocks until autoneg completes or times out (~4.5 seconds)
2649 */
Joe Perches64798842008-07-11 15:17:02 -07002650static s32 e1000_wait_autoneg(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002652 s32 ret_val;
2653 u16 i;
2654 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Emil Tantilov675ad472010-04-27 14:02:58 +00002656 e_dbg("Waiting for Auto-Neg to complete.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002658 /* We will wait for autoneg to complete or 4.5 seconds to expire. */
2659 for (i = PHY_AUTO_NEG_TIME; i > 0; i--) {
2660 /* Read the MII Status Register and wait for Auto-Neg
2661 * Complete bit to be set.
2662 */
2663 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
2664 if (ret_val)
2665 return ret_val;
2666 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
2667 if (ret_val)
2668 return ret_val;
Janusz Wolak13a87c12015-09-28 23:40:19 +02002669 if (phy_data & MII_SR_AUTONEG_COMPLETE)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002670 return E1000_SUCCESS;
Janusz Wolak13a87c12015-09-28 23:40:19 +02002671
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002672 msleep(100);
2673 }
2674 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002677/**
2678 * e1000_raise_mdi_clk - Raises the Management Data Clock
2679 * @hw: Struct containing variables accessed by shared code
2680 * @ctrl: Device control register's current value
2681 */
Joe Perches64798842008-07-11 15:17:02 -07002682static void e1000_raise_mdi_clk(struct e1000_hw *hw, u32 *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002684 /* Raise the clock input to the Management Data Clock (by setting the
2685 * MDC bit), and then delay 10 microseconds.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002686 */
2687 ew32(CTRL, (*ctrl | E1000_CTRL_MDC));
2688 E1000_WRITE_FLUSH();
2689 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002692/**
2693 * e1000_lower_mdi_clk - Lowers the Management Data Clock
2694 * @hw: Struct containing variables accessed by shared code
2695 * @ctrl: Device control register's current value
2696 */
Joe Perches64798842008-07-11 15:17:02 -07002697static void e1000_lower_mdi_clk(struct e1000_hw *hw, u32 *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698{
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002699 /* Lower the clock input to the Management Data Clock (by clearing the
2700 * MDC bit), and then delay 10 microseconds.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002701 */
2702 ew32(CTRL, (*ctrl & ~E1000_CTRL_MDC));
2703 E1000_WRITE_FLUSH();
2704 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
2706
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002707/**
2708 * e1000_shift_out_mdi_bits - Shifts data bits out to the PHY
2709 * @hw: Struct containing variables accessed by shared code
2710 * @data: Data to send out to the PHY
2711 * @count: Number of bits to shift out
2712 *
2713 * Bits are shifted out in MSB to LSB order.
2714 */
Joe Perches64798842008-07-11 15:17:02 -07002715static void e1000_shift_out_mdi_bits(struct e1000_hw *hw, u32 data, u16 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002717 u32 ctrl;
2718 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002720 /* We need to shift "count" number of bits out to the PHY. So, the value
2721 * in the "data" parameter will be shifted out to the PHY one bit at a
2722 * time. In order to do this, "data" must be broken down into bits.
2723 */
2724 mask = 0x01;
2725 mask <<= (count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002727 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002729 /* Set MDIO_DIR and MDC_DIR direction bits to be used as output pins. */
2730 ctrl |= (E1000_CTRL_MDIO_DIR | E1000_CTRL_MDC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002732 while (mask) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002733 /* A "1" is shifted out to the PHY by setting the MDIO bit to
2734 * "1" and then raising and lowering the Management Data Clock.
2735 * A "0" is shifted out to the PHY by setting the MDIO bit to
2736 * "0" and then raising and lowering the clock.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002737 */
2738 if (data & mask)
2739 ctrl |= E1000_CTRL_MDIO;
2740 else
2741 ctrl &= ~E1000_CTRL_MDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002743 ew32(CTRL, ctrl);
2744 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002746 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002748 e1000_raise_mdi_clk(hw, &ctrl);
2749 e1000_lower_mdi_clk(hw, &ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002751 mask = mask >> 1;
2752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753}
2754
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002755/**
2756 * e1000_shift_in_mdi_bits - Shifts data bits in from the PHY
2757 * @hw: Struct containing variables accessed by shared code
2758 *
2759 * Bits are shifted in in MSB to LSB order.
2760 */
Joe Perches64798842008-07-11 15:17:02 -07002761static u16 e1000_shift_in_mdi_bits(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002763 u32 ctrl;
2764 u16 data = 0;
2765 u8 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002767 /* In order to read a register from the PHY, we need to shift in a total
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002768 * of 18 bits from the PHY. The first two bit (turnaround) times are
2769 * used to avoid contention on the MDIO pin when a read operation is
2770 * performed. These two bits are ignored by us and thrown away. Bits are
2771 * "shifted in" by raising the input to the Management Data Clock
2772 * (setting the MDC bit), and then reading the value of the MDIO bit.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002773 */
2774 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002776 /* Clear MDIO_DIR (SWDPIO1) to indicate this bit is to be used as
2777 * input.
2778 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002779 ctrl &= ~E1000_CTRL_MDIO_DIR;
2780 ctrl &= ~E1000_CTRL_MDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002782 ew32(CTRL, ctrl);
2783 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002785 /* Raise and Lower the clock before reading in the data. This accounts
2786 * for the turnaround bits. The first clock occurred when we clocked out
2787 * the last bit of the Register Address.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002788 */
2789 e1000_raise_mdi_clk(hw, &ctrl);
2790 e1000_lower_mdi_clk(hw, &ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002792 for (data = 0, i = 0; i < 16; i++) {
2793 data = data << 1;
2794 e1000_raise_mdi_clk(hw, &ctrl);
2795 ctrl = er32(CTRL);
2796 /* Check to see if we shifted in a "1". */
2797 if (ctrl & E1000_CTRL_MDIO)
2798 data |= 1;
2799 e1000_lower_mdi_clk(hw, &ctrl);
2800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002802 e1000_raise_mdi_clk(hw, &ctrl);
2803 e1000_lower_mdi_clk(hw, &ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002805 return data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806}
2807
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002808/**
2809 * e1000_read_phy_reg - read a phy register
2810 * @hw: Struct containing variables accessed by shared code
2811 * @reg_addr: address of the PHY register to read
Jean Sacrenf03fed62015-09-19 05:08:46 -06002812 * @phy_data: pointer to the value on the PHY register
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002813 *
2814 * Reads the value from a PHY register, if the value is on a specific non zero
2815 * page, sets the page first.
2816 */
Joe Perches64798842008-07-11 15:17:02 -07002817s32 e1000_read_phy_reg(struct e1000_hw *hw, u32 reg_addr, u16 *phy_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002819 u32 ret_val;
Maxime Bizonac565582012-10-20 14:53:40 +00002820 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Maxime Bizonac565582012-10-20 14:53:40 +00002822 spin_lock_irqsave(&e1000_phy_lock, flags);
2823
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002824 if ((hw->phy_type == e1000_phy_igp) &&
2825 (reg_addr > MAX_PHY_MULTI_PAGE_REG)) {
2826 ret_val = e1000_write_phy_reg_ex(hw, IGP01E1000_PHY_PAGE_SELECT,
2827 (u16) reg_addr);
Jean Sacrenc6195812015-09-19 05:08:47 -06002828 if (ret_val)
2829 goto out;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002832 ret_val = e1000_read_phy_reg_ex(hw, MAX_PHY_REG_ADDRESS & reg_addr,
2833 phy_data);
Jean Sacrenc6195812015-09-19 05:08:47 -06002834out:
Maxime Bizonac565582012-10-20 14:53:40 +00002835 spin_unlock_irqrestore(&e1000_phy_lock, flags);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002836
2837 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838}
2839
Joe Perches64798842008-07-11 15:17:02 -07002840static s32 e1000_read_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr,
2841 u16 *phy_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002843 u32 i;
2844 u32 mdic = 0;
Dirk Brandewie5377a412011-01-06 14:29:54 +00002845 const u32 phy_addr = (hw->mac_type == e1000_ce4100) ? hw->phy_addr : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002847 if (reg_addr > MAX_PHY_REG_ADDRESS) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002848 e_dbg("PHY Address %d is out of range\n", reg_addr);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002849 return -E1000_ERR_PARAM;
2850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002852 if (hw->mac_type > e1000_82543) {
2853 /* Set up Op-code, Phy Address, and register address in the MDI
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002854 * Control register. The MAC will take care of interfacing with
2855 * the PHY to retrieve the desired data.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002856 */
Dirk Brandewie5377a412011-01-06 14:29:54 +00002857 if (hw->mac_type == e1000_ce4100) {
2858 mdic = ((reg_addr << E1000_MDIC_REG_SHIFT) |
2859 (phy_addr << E1000_MDIC_PHY_SHIFT) |
2860 (INTEL_CE_GBE_MDIC_OP_READ) |
2861 (INTEL_CE_GBE_MDIC_GO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Dirk Brandewie5377a412011-01-06 14:29:54 +00002863 writel(mdic, E1000_MDIO_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Dirk Brandewie5377a412011-01-06 14:29:54 +00002865 /* Poll the ready bit to see if the MDI read
2866 * completed
2867 */
2868 for (i = 0; i < 64; i++) {
2869 udelay(50);
2870 mdic = readl(E1000_MDIO_CMD);
2871 if (!(mdic & INTEL_CE_GBE_MDIC_GO))
2872 break;
2873 }
2874
2875 if (mdic & INTEL_CE_GBE_MDIC_GO) {
2876 e_dbg("MDI Read did not complete\n");
2877 return -E1000_ERR_PHY;
2878 }
2879
2880 mdic = readl(E1000_MDIO_STS);
2881 if (mdic & INTEL_CE_GBE_MDIC_READ_ERROR) {
2882 e_dbg("MDI Read Error\n");
2883 return -E1000_ERR_PHY;
2884 }
Janusz Wolak13a87c12015-09-28 23:40:19 +02002885 *phy_data = (u16)mdic;
Dirk Brandewie5377a412011-01-06 14:29:54 +00002886 } else {
2887 mdic = ((reg_addr << E1000_MDIC_REG_SHIFT) |
2888 (phy_addr << E1000_MDIC_PHY_SHIFT) |
2889 (E1000_MDIC_OP_READ));
2890
2891 ew32(MDIC, mdic);
2892
2893 /* Poll the ready bit to see if the MDI read
2894 * completed
2895 */
2896 for (i = 0; i < 64; i++) {
2897 udelay(50);
2898 mdic = er32(MDIC);
2899 if (mdic & E1000_MDIC_READY)
2900 break;
2901 }
2902 if (!(mdic & E1000_MDIC_READY)) {
2903 e_dbg("MDI Read did not complete\n");
2904 return -E1000_ERR_PHY;
2905 }
2906 if (mdic & E1000_MDIC_ERROR) {
2907 e_dbg("MDI Error\n");
2908 return -E1000_ERR_PHY;
2909 }
Janusz Wolak13a87c12015-09-28 23:40:19 +02002910 *phy_data = (u16)mdic;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002911 }
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002912 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002913 /* We must first send a preamble through the MDIO pin to signal
2914 * the beginning of an MII instruction. This is done by sending
2915 * 32 consecutive "1" bits.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002916 */
2917 e1000_shift_out_mdi_bits(hw, PHY_PREAMBLE, PHY_PREAMBLE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002919 /* Now combine the next few fields that are required for a read
2920 * operation. We use this method instead of calling the
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002921 * e1000_shift_out_mdi_bits routine five different times. The
2922 * format of a MII read instruction consists of a shift out of
2923 * 14 bits and is defined as follows:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002924 * <Preamble><SOF><Op Code><Phy Addr><Reg Addr>
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002925 * followed by a shift in of 18 bits. This first two bits
2926 * shifted in are TurnAround bits used to avoid contention on
2927 * the MDIO pin when a READ operation is performed. These two
2928 * bits are thrown away followed by a shift in of 16 bits which
2929 * contains the desired data.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002930 */
2931 mdic = ((reg_addr) | (phy_addr << 5) |
2932 (PHY_OP_READ << 10) | (PHY_SOF << 12));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002934 e1000_shift_out_mdi_bits(hw, mdic, 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00002936 /* Now that we've shifted out the read command to the MII, we
2937 * need to "shift in" the 16-bit value (18 total bits) of the
2938 * requested PHY register address.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002939 */
2940 *phy_data = e1000_shift_in_mdi_bits(hw);
2941 }
2942 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943}
2944
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002945/**
2946 * e1000_write_phy_reg - write a phy register
2947 *
2948 * @hw: Struct containing variables accessed by shared code
2949 * @reg_addr: address of the PHY register to write
2950 * @data: data to write to the PHY
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002951 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002952 * Writes a value to a PHY register
2953 */
Joe Perches64798842008-07-11 15:17:02 -07002954s32 e1000_write_phy_reg(struct e1000_hw *hw, u32 reg_addr, u16 phy_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002956 u32 ret_val;
Maxime Bizonac565582012-10-20 14:53:40 +00002957 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Maxime Bizonac565582012-10-20 14:53:40 +00002959 spin_lock_irqsave(&e1000_phy_lock, flags);
2960
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002961 if ((hw->phy_type == e1000_phy_igp) &&
2962 (reg_addr > MAX_PHY_MULTI_PAGE_REG)) {
2963 ret_val = e1000_write_phy_reg_ex(hw, IGP01E1000_PHY_PAGE_SELECT,
Janusz Wolak13a87c12015-09-28 23:40:19 +02002964 (u16)reg_addr);
Maxime Bizonac565582012-10-20 14:53:40 +00002965 if (ret_val) {
2966 spin_unlock_irqrestore(&e1000_phy_lock, flags);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002967 return ret_val;
Maxime Bizonac565582012-10-20 14:53:40 +00002968 }
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002971 ret_val = e1000_write_phy_reg_ex(hw, MAX_PHY_REG_ADDRESS & reg_addr,
2972 phy_data);
Maxime Bizonac565582012-10-20 14:53:40 +00002973 spin_unlock_irqrestore(&e1000_phy_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002975 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976}
2977
Joe Perches64798842008-07-11 15:17:02 -07002978static s32 e1000_write_phy_reg_ex(struct e1000_hw *hw, u32 reg_addr,
2979 u16 phy_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002981 u32 i;
2982 u32 mdic = 0;
Dirk Brandewie5377a412011-01-06 14:29:54 +00002983 const u32 phy_addr = (hw->mac_type == e1000_ce4100) ? hw->phy_addr : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002985 if (reg_addr > MAX_PHY_REG_ADDRESS) {
Emil Tantilov675ad472010-04-27 14:02:58 +00002986 e_dbg("PHY Address %d is out of range\n", reg_addr);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002987 return -E1000_ERR_PARAM;
2988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002990 if (hw->mac_type > e1000_82543) {
Dirk Brandewie5377a412011-01-06 14:29:54 +00002991 /* Set up Op-code, Phy Address, register address, and data
2992 * intended for the PHY register in the MDI Control register.
2993 * The MAC will take care of interfacing with the PHY to send
2994 * the desired data.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002995 */
Dirk Brandewie5377a412011-01-06 14:29:54 +00002996 if (hw->mac_type == e1000_ce4100) {
Janusz Wolak13a87c12015-09-28 23:40:19 +02002997 mdic = (((u32)phy_data) |
Dirk Brandewie5377a412011-01-06 14:29:54 +00002998 (reg_addr << E1000_MDIC_REG_SHIFT) |
2999 (phy_addr << E1000_MDIC_PHY_SHIFT) |
3000 (INTEL_CE_GBE_MDIC_OP_WRITE) |
3001 (INTEL_CE_GBE_MDIC_GO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Dirk Brandewie5377a412011-01-06 14:29:54 +00003003 writel(mdic, E1000_MDIO_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Dirk Brandewie5377a412011-01-06 14:29:54 +00003005 /* Poll the ready bit to see if the MDI read
3006 * completed
3007 */
3008 for (i = 0; i < 640; i++) {
3009 udelay(5);
3010 mdic = readl(E1000_MDIO_CMD);
3011 if (!(mdic & INTEL_CE_GBE_MDIC_GO))
3012 break;
3013 }
3014 if (mdic & INTEL_CE_GBE_MDIC_GO) {
3015 e_dbg("MDI Write did not complete\n");
3016 return -E1000_ERR_PHY;
3017 }
3018 } else {
Janusz Wolak13a87c12015-09-28 23:40:19 +02003019 mdic = (((u32)phy_data) |
Dirk Brandewie5377a412011-01-06 14:29:54 +00003020 (reg_addr << E1000_MDIC_REG_SHIFT) |
3021 (phy_addr << E1000_MDIC_PHY_SHIFT) |
3022 (E1000_MDIC_OP_WRITE));
3023
3024 ew32(MDIC, mdic);
3025
3026 /* Poll the ready bit to see if the MDI read
3027 * completed
3028 */
3029 for (i = 0; i < 641; i++) {
3030 udelay(5);
3031 mdic = er32(MDIC);
3032 if (mdic & E1000_MDIC_READY)
3033 break;
3034 }
3035 if (!(mdic & E1000_MDIC_READY)) {
3036 e_dbg("MDI Write did not complete\n");
3037 return -E1000_ERR_PHY;
3038 }
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003039 }
3040 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003041 /* We'll need to use the SW defined pins to shift the write
3042 * command out to the PHY. We first send a preamble to the PHY
3043 * to signal the beginning of the MII instruction. This is done
3044 * by sending 32 consecutive "1" bits.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003045 */
3046 e1000_shift_out_mdi_bits(hw, PHY_PREAMBLE, PHY_PREAMBLE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003048 /* Now combine the remaining required fields that will indicate
3049 * a write operation. We use this method instead of calling the
3050 * e1000_shift_out_mdi_bits routine for each field in the
3051 * command. The format of a MII write instruction is as follows:
3052 * <Preamble><SOF><OpCode><PhyAddr><RegAddr><Turnaround><Data>.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003053 */
3054 mdic = ((PHY_TURNAROUND) | (reg_addr << 2) | (phy_addr << 7) |
3055 (PHY_OP_WRITE << 12) | (PHY_SOF << 14));
3056 mdic <<= 16;
Janusz Wolak13a87c12015-09-28 23:40:19 +02003057 mdic |= (u32)phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003059 e1000_shift_out_mdi_bits(hw, mdic, 32);
3060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003062 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063}
3064
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003065/**
3066 * e1000_phy_hw_reset - reset the phy, hardware style
3067 * @hw: Struct containing variables accessed by shared code
3068 *
3069 * Returns the PHY to the power-on reset state
3070 */
Joe Perches64798842008-07-11 15:17:02 -07003071s32 e1000_phy_hw_reset(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003073 u32 ctrl, ctrl_ext;
3074 u32 led_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Emil Tantilov675ad472010-04-27 14:02:58 +00003076 e_dbg("Resetting Phy...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003078 if (hw->mac_type > e1000_82543) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003079 /* Read the device control register and assert the
3080 * E1000_CTRL_PHY_RST bit. Then, take it out of reset.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003081 * For e1000 hardware, we delay for 10ms between the assert
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003082 * and de-assert.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003083 */
3084 ctrl = er32(CTRL);
3085 ew32(CTRL, ctrl | E1000_CTRL_PHY_RST);
3086 E1000_WRITE_FLUSH();
Auke Kok76c224b2006-05-23 13:36:06 -07003087
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003088 msleep(10);
Auke Kok76c224b2006-05-23 13:36:06 -07003089
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003090 ew32(CTRL, ctrl);
3091 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003093 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003094 /* Read the Extended Device Control Register, assert the
3095 * PHY_RESET_DIR bit to put the PHY into reset. Then, take it
3096 * out of reset.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003097 */
3098 ctrl_ext = er32(CTRL_EXT);
3099 ctrl_ext |= E1000_CTRL_EXT_SDP4_DIR;
3100 ctrl_ext &= ~E1000_CTRL_EXT_SDP4_DATA;
3101 ew32(CTRL_EXT, ctrl_ext);
3102 E1000_WRITE_FLUSH();
3103 msleep(10);
3104 ctrl_ext |= E1000_CTRL_EXT_SDP4_DATA;
3105 ew32(CTRL_EXT, ctrl_ext);
3106 E1000_WRITE_FLUSH();
3107 }
3108 udelay(150);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003109
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003110 if ((hw->mac_type == e1000_82541) || (hw->mac_type == e1000_82547)) {
3111 /* Configure activity LED after PHY reset */
3112 led_ctrl = er32(LEDCTL);
3113 led_ctrl &= IGP_ACTIVITY_LED_MASK;
3114 led_ctrl |= (IGP_ACTIVITY_LED_ENABLE | IGP_LED3_MODE);
3115 ew32(LEDCTL, led_ctrl);
3116 }
Auke Kok8fc897b2006-08-28 14:56:16 -07003117
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003118 /* Wait for FW to finish PHY configuration. */
Greg Dietschec4dc4d12011-06-16 07:09:30 +00003119 return e1000_get_phy_cfg_done(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120}
3121
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003122/**
3123 * e1000_phy_reset - reset the phy to commit settings
3124 * @hw: Struct containing variables accessed by shared code
3125 *
3126 * Resets the PHY
3127 * Sets bit 15 of the MII Control register
3128 */
Joe Perches64798842008-07-11 15:17:02 -07003129s32 e1000_phy_reset(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003131 s32 ret_val;
3132 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003134 switch (hw->phy_type) {
3135 case e1000_phy_igp:
3136 ret_val = e1000_phy_hw_reset(hw);
3137 if (ret_val)
3138 return ret_val;
3139 break;
3140 default:
3141 ret_val = e1000_read_phy_reg(hw, PHY_CTRL, &phy_data);
3142 if (ret_val)
3143 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003145 phy_data |= MII_CR_RESET;
3146 ret_val = e1000_write_phy_reg(hw, PHY_CTRL, phy_data);
3147 if (ret_val)
3148 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003150 udelay(1);
3151 break;
3152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003154 if (hw->phy_type == e1000_phy_igp)
3155 e1000_phy_init_script(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003157 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158}
3159
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003160/**
3161 * e1000_detect_gig_phy - check the phy type
3162 * @hw: Struct containing variables accessed by shared code
3163 *
3164 * Probes the expected PHY address for known PHY IDs
3165 */
Joe Perches64798842008-07-11 15:17:02 -07003166static s32 e1000_detect_gig_phy(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003168 s32 phy_init_status, ret_val;
3169 u16 phy_id_high, phy_id_low;
3170 bool match = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003172 if (hw->phy_id != 0)
3173 return E1000_SUCCESS;
Jeff Kirsher2a88c172006-09-27 12:54:05 -07003174
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003175 /* Read the PHY ID Registers to identify which PHY is onboard. */
3176 ret_val = e1000_read_phy_reg(hw, PHY_ID1, &phy_id_high);
3177 if (ret_val)
3178 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
Janusz Wolak13a87c12015-09-28 23:40:19 +02003180 hw->phy_id = (u32)(phy_id_high << 16);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003181 udelay(20);
3182 ret_val = e1000_read_phy_reg(hw, PHY_ID2, &phy_id_low);
3183 if (ret_val)
3184 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
Janusz Wolak13a87c12015-09-28 23:40:19 +02003186 hw->phy_id |= (u32)(phy_id_low & PHY_REVISION_MASK);
3187 hw->phy_revision = (u32)phy_id_low & ~PHY_REVISION_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003189 switch (hw->mac_type) {
3190 case e1000_82543:
3191 if (hw->phy_id == M88E1000_E_PHY_ID)
3192 match = true;
3193 break;
3194 case e1000_82544:
3195 if (hw->phy_id == M88E1000_I_PHY_ID)
3196 match = true;
3197 break;
3198 case e1000_82540:
3199 case e1000_82545:
3200 case e1000_82545_rev_3:
3201 case e1000_82546:
3202 case e1000_82546_rev_3:
3203 if (hw->phy_id == M88E1011_I_PHY_ID)
3204 match = true;
3205 break;
Dirk Brandewie5377a412011-01-06 14:29:54 +00003206 case e1000_ce4100:
3207 if ((hw->phy_id == RTL8211B_PHY_ID) ||
Florian Fainellicf8e09b2011-01-24 14:48:03 +00003208 (hw->phy_id == RTL8201N_PHY_ID) ||
3209 (hw->phy_id == M88E1118_E_PHY_ID))
Dirk Brandewie5377a412011-01-06 14:29:54 +00003210 match = true;
3211 break;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003212 case e1000_82541:
3213 case e1000_82541_rev_2:
3214 case e1000_82547:
3215 case e1000_82547_rev_2:
3216 if (hw->phy_id == IGP01E1000_I_PHY_ID)
3217 match = true;
3218 break;
3219 default:
Emil Tantilov675ad472010-04-27 14:02:58 +00003220 e_dbg("Invalid MAC type %d\n", hw->mac_type);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003221 return -E1000_ERR_CONFIG;
3222 }
3223 phy_init_status = e1000_set_phy_type(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003225 if ((match) && (phy_init_status == E1000_SUCCESS)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003226 e_dbg("PHY ID 0x%X detected\n", hw->phy_id);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003227 return E1000_SUCCESS;
3228 }
Emil Tantilov675ad472010-04-27 14:02:58 +00003229 e_dbg("Invalid PHY ID 0x%X\n", hw->phy_id);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003230 return -E1000_ERR_PHY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003233/**
3234 * e1000_phy_reset_dsp - reset DSP
3235 * @hw: Struct containing variables accessed by shared code
3236 *
3237 * Resets the PHY's DSP
3238 */
Joe Perches64798842008-07-11 15:17:02 -07003239static s32 e1000_phy_reset_dsp(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003241 s32 ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003243 do {
3244 ret_val = e1000_write_phy_reg(hw, 29, 0x001d);
3245 if (ret_val)
3246 break;
3247 ret_val = e1000_write_phy_reg(hw, 30, 0x00c1);
3248 if (ret_val)
3249 break;
3250 ret_val = e1000_write_phy_reg(hw, 30, 0x0000);
3251 if (ret_val)
3252 break;
3253 ret_val = E1000_SUCCESS;
3254 } while (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003256 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257}
3258
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003259/**
3260 * e1000_phy_igp_get_info - get igp specific registers
3261 * @hw: Struct containing variables accessed by shared code
3262 * @phy_info: PHY information structure
3263 *
3264 * Get PHY information from various PHY registers for igp PHY only.
3265 */
Joe Perches64798842008-07-11 15:17:02 -07003266static s32 e1000_phy_igp_get_info(struct e1000_hw *hw,
3267 struct e1000_phy_info *phy_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003269 s32 ret_val;
3270 u16 phy_data, min_length, max_length, average;
3271 e1000_rev_polarity polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003273 /* The downshift status is checked only once, after link is established,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003274 * and it stored in the hw->speed_downgraded parameter.
3275 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003276 phy_info->downshift = (e1000_downshift) hw->speed_downgraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003278 /* IGP01E1000 does not need to support it. */
3279 phy_info->extended_10bt_distance = e1000_10bt_ext_dist_enable_normal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003281 /* IGP01E1000 always correct polarity reversal */
3282 phy_info->polarity_correction = e1000_polarity_reversal_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003284 /* Check polarity status */
3285 ret_val = e1000_check_polarity(hw, &polarity);
3286 if (ret_val)
3287 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003289 phy_info->cable_polarity = polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003291 ret_val = e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS, &phy_data);
3292 if (ret_val)
3293 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003295 phy_info->mdix_mode =
3296 (e1000_auto_x_mode) ((phy_data & IGP01E1000_PSSR_MDIX) >>
3297 IGP01E1000_PSSR_MDIX_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003299 if ((phy_data & IGP01E1000_PSSR_SPEED_MASK) ==
3300 IGP01E1000_PSSR_SPEED_1000MBPS) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003301 /* Local/Remote Receiver Information are only valid @ 1000
3302 * Mbps
3303 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003304 ret_val = e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
3305 if (ret_val)
3306 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003308 phy_info->local_rx = ((phy_data & SR_1000T_LOCAL_RX_STATUS) >>
3309 SR_1000T_LOCAL_RX_STATUS_SHIFT) ?
3310 e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
3311 phy_info->remote_rx = ((phy_data & SR_1000T_REMOTE_RX_STATUS) >>
3312 SR_1000T_REMOTE_RX_STATUS_SHIFT) ?
3313 e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003315 /* Get cable length */
3316 ret_val = e1000_get_cable_length(hw, &min_length, &max_length);
3317 if (ret_val)
3318 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003320 /* Translate to old method */
3321 average = (max_length + min_length) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003323 if (average <= e1000_igp_cable_length_50)
3324 phy_info->cable_length = e1000_cable_length_50;
3325 else if (average <= e1000_igp_cable_length_80)
3326 phy_info->cable_length = e1000_cable_length_50_80;
3327 else if (average <= e1000_igp_cable_length_110)
3328 phy_info->cable_length = e1000_cable_length_80_110;
3329 else if (average <= e1000_igp_cable_length_140)
3330 phy_info->cable_length = e1000_cable_length_110_140;
3331 else
3332 phy_info->cable_length = e1000_cable_length_140;
3333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003335 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336}
3337
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003338/**
3339 * e1000_phy_m88_get_info - get m88 specific registers
3340 * @hw: Struct containing variables accessed by shared code
3341 * @phy_info: PHY information structure
3342 *
3343 * Get PHY information from various PHY registers for m88 PHY only.
3344 */
Joe Perches64798842008-07-11 15:17:02 -07003345static s32 e1000_phy_m88_get_info(struct e1000_hw *hw,
3346 struct e1000_phy_info *phy_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003348 s32 ret_val;
3349 u16 phy_data;
3350 e1000_rev_polarity polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003352 /* The downshift status is checked only once, after link is established,
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003353 * and it stored in the hw->speed_downgraded parameter.
3354 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003355 phy_info->downshift = (e1000_downshift) hw->speed_downgraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003357 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
3358 if (ret_val)
3359 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003361 phy_info->extended_10bt_distance =
3362 ((phy_data & M88E1000_PSCR_10BT_EXT_DIST_ENABLE) >>
3363 M88E1000_PSCR_10BT_EXT_DIST_ENABLE_SHIFT) ?
3364 e1000_10bt_ext_dist_enable_lower :
3365 e1000_10bt_ext_dist_enable_normal;
Jeff Kirsher70c6f302006-09-27 12:53:31 -07003366
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003367 phy_info->polarity_correction =
3368 ((phy_data & M88E1000_PSCR_POLARITY_REVERSAL) >>
3369 M88E1000_PSCR_POLARITY_REVERSAL_SHIFT) ?
3370 e1000_polarity_reversal_disabled : e1000_polarity_reversal_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003372 /* Check polarity status */
3373 ret_val = e1000_check_polarity(hw, &polarity);
3374 if (ret_val)
3375 return ret_val;
3376 phy_info->cable_polarity = polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003378 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
3379 if (ret_val)
3380 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003382 phy_info->mdix_mode =
3383 (e1000_auto_x_mode) ((phy_data & M88E1000_PSSR_MDIX) >>
3384 M88E1000_PSSR_MDIX_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003386 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
3387 /* Cable Length Estimation and Local/Remote Receiver Information
3388 * are only valid at 1000 Mbps.
3389 */
3390 phy_info->cable_length =
3391 (e1000_cable_length) ((phy_data &
3392 M88E1000_PSSR_CABLE_LENGTH) >>
3393 M88E1000_PSSR_CABLE_LENGTH_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003395 ret_val = e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
3396 if (ret_val)
3397 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003399 phy_info->local_rx = ((phy_data & SR_1000T_LOCAL_RX_STATUS) >>
3400 SR_1000T_LOCAL_RX_STATUS_SHIFT) ?
3401 e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
3402 phy_info->remote_rx = ((phy_data & SR_1000T_REMOTE_RX_STATUS) >>
3403 SR_1000T_REMOTE_RX_STATUS_SHIFT) ?
3404 e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003407 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408}
3409
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003410/**
3411 * e1000_phy_get_info - request phy info
3412 * @hw: Struct containing variables accessed by shared code
3413 * @phy_info: PHY information structure
3414 *
3415 * Get PHY information from various PHY registers
3416 */
Joe Perches64798842008-07-11 15:17:02 -07003417s32 e1000_phy_get_info(struct e1000_hw *hw, struct e1000_phy_info *phy_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003419 s32 ret_val;
3420 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003422 phy_info->cable_length = e1000_cable_length_undefined;
3423 phy_info->extended_10bt_distance = e1000_10bt_ext_dist_enable_undefined;
3424 phy_info->cable_polarity = e1000_rev_polarity_undefined;
3425 phy_info->downshift = e1000_downshift_undefined;
3426 phy_info->polarity_correction = e1000_polarity_reversal_undefined;
3427 phy_info->mdix_mode = e1000_auto_x_mode_undefined;
3428 phy_info->local_rx = e1000_1000t_rx_status_undefined;
3429 phy_info->remote_rx = e1000_1000t_rx_status_undefined;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003431 if (hw->media_type != e1000_media_type_copper) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003432 e_dbg("PHY info is only valid for copper media\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003433 return -E1000_ERR_CONFIG;
3434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003436 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
3437 if (ret_val)
3438 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003440 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &phy_data);
3441 if (ret_val)
3442 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003444 if ((phy_data & MII_SR_LINK_STATUS) != MII_SR_LINK_STATUS) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003445 e_dbg("PHY info is only valid if link is up\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003446 return -E1000_ERR_CONFIG;
3447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003449 if (hw->phy_type == e1000_phy_igp)
3450 return e1000_phy_igp_get_info(hw, phy_info);
Dirk Brandewie5377a412011-01-06 14:29:54 +00003451 else if ((hw->phy_type == e1000_phy_8211) ||
Janusz Wolaka48954c2015-09-17 23:34:29 +02003452 (hw->phy_type == e1000_phy_8201))
Dirk Brandewie5377a412011-01-06 14:29:54 +00003453 return E1000_SUCCESS;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003454 else
3455 return e1000_phy_m88_get_info(hw, phy_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456}
3457
Joe Perches64798842008-07-11 15:17:02 -07003458s32 e1000_validate_mdi_setting(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003460 if (!hw->autoneg && (hw->mdix == 0 || hw->mdix == 3)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003461 e_dbg("Invalid MDI setting detected\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003462 hw->mdix = 1;
3463 return -E1000_ERR_CONFIG;
3464 }
3465 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466}
3467
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003468/**
3469 * e1000_init_eeprom_params - initialize sw eeprom vars
3470 * @hw: Struct containing variables accessed by shared code
3471 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 * Sets up eeprom variables in the hw struct. Must be called after mac_type
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003473 * is configured.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003474 */
Joe Perches64798842008-07-11 15:17:02 -07003475s32 e1000_init_eeprom_params(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003477 struct e1000_eeprom_info *eeprom = &hw->eeprom;
3478 u32 eecd = er32(EECD);
3479 s32 ret_val = E1000_SUCCESS;
3480 u16 eeprom_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003482 switch (hw->mac_type) {
3483 case e1000_82542_rev2_0:
3484 case e1000_82542_rev2_1:
3485 case e1000_82543:
3486 case e1000_82544:
3487 eeprom->type = e1000_eeprom_microwire;
3488 eeprom->word_size = 64;
3489 eeprom->opcode_bits = 3;
3490 eeprom->address_bits = 6;
3491 eeprom->delay_usec = 50;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003492 break;
3493 case e1000_82540:
3494 case e1000_82545:
3495 case e1000_82545_rev_3:
3496 case e1000_82546:
3497 case e1000_82546_rev_3:
3498 eeprom->type = e1000_eeprom_microwire;
3499 eeprom->opcode_bits = 3;
3500 eeprom->delay_usec = 50;
3501 if (eecd & E1000_EECD_SIZE) {
3502 eeprom->word_size = 256;
3503 eeprom->address_bits = 8;
3504 } else {
3505 eeprom->word_size = 64;
3506 eeprom->address_bits = 6;
3507 }
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003508 break;
3509 case e1000_82541:
3510 case e1000_82541_rev_2:
3511 case e1000_82547:
3512 case e1000_82547_rev_2:
3513 if (eecd & E1000_EECD_TYPE) {
3514 eeprom->type = e1000_eeprom_spi;
3515 eeprom->opcode_bits = 8;
3516 eeprom->delay_usec = 1;
3517 if (eecd & E1000_EECD_ADDR_BITS) {
3518 eeprom->page_size = 32;
3519 eeprom->address_bits = 16;
3520 } else {
3521 eeprom->page_size = 8;
3522 eeprom->address_bits = 8;
3523 }
3524 } else {
3525 eeprom->type = e1000_eeprom_microwire;
3526 eeprom->opcode_bits = 3;
3527 eeprom->delay_usec = 50;
3528 if (eecd & E1000_EECD_ADDR_BITS) {
3529 eeprom->word_size = 256;
3530 eeprom->address_bits = 8;
3531 } else {
3532 eeprom->word_size = 64;
3533 eeprom->address_bits = 6;
3534 }
3535 }
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003536 break;
3537 default:
3538 break;
3539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003541 if (eeprom->type == e1000_eeprom_spi) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003542 /* eeprom_size will be an enum [0..8] that maps to eeprom sizes
3543 * 128B to 32KB (incremented by powers of 2).
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003544 */
3545 /* Set to default value for initial eeprom read. */
3546 eeprom->word_size = 64;
3547 ret_val = e1000_read_eeprom(hw, EEPROM_CFG, 1, &eeprom_size);
3548 if (ret_val)
3549 return ret_val;
3550 eeprom_size =
3551 (eeprom_size & EEPROM_SIZE_MASK) >> EEPROM_SIZE_SHIFT;
3552 /* 256B eeprom size was not supported in earlier hardware, so we
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003553 * bump eeprom_size up one to ensure that "1" (which maps to
3554 * 256B) is never the result used in the shifting logic below.
3555 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003556 if (eeprom_size)
3557 eeprom_size++;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003558
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003559 eeprom->word_size = 1 << (eeprom_size + EEPROM_WORD_SIZE_SHIFT);
3560 }
3561 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562}
3563
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003564/**
3565 * e1000_raise_ee_clk - Raises the EEPROM's clock input.
3566 * @hw: Struct containing variables accessed by shared code
3567 * @eecd: EECD's current value
3568 */
Joe Perches64798842008-07-11 15:17:02 -07003569static void e1000_raise_ee_clk(struct e1000_hw *hw, u32 *eecd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003571 /* Raise the clock input to the EEPROM (by setting the SK bit), and then
3572 * wait <delay> microseconds.
3573 */
3574 *eecd = *eecd | E1000_EECD_SK;
3575 ew32(EECD, *eecd);
3576 E1000_WRITE_FLUSH();
3577 udelay(hw->eeprom.delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578}
3579
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003580/**
3581 * e1000_lower_ee_clk - Lowers the EEPROM's clock input.
3582 * @hw: Struct containing variables accessed by shared code
3583 * @eecd: EECD's current value
3584 */
Joe Perches64798842008-07-11 15:17:02 -07003585static void e1000_lower_ee_clk(struct e1000_hw *hw, u32 *eecd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586{
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003587 /* Lower the clock input to the EEPROM (by clearing the SK bit), and
3588 * then wait 50 microseconds.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003589 */
3590 *eecd = *eecd & ~E1000_EECD_SK;
3591 ew32(EECD, *eecd);
3592 E1000_WRITE_FLUSH();
3593 udelay(hw->eeprom.delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594}
3595
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003596/**
3597 * e1000_shift_out_ee_bits - Shift data bits out to the EEPROM.
3598 * @hw: Struct containing variables accessed by shared code
3599 * @data: data to send to the EEPROM
3600 * @count: number of bits to shift out
3601 */
Joe Perches64798842008-07-11 15:17:02 -07003602static void e1000_shift_out_ee_bits(struct e1000_hw *hw, u16 data, u16 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003604 struct e1000_eeprom_info *eeprom = &hw->eeprom;
3605 u32 eecd;
3606 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003608 /* We need to shift "count" bits out to the EEPROM. So, value in the
3609 * "data" parameter will be shifted out to the EEPROM one bit at a time.
3610 * In order to do this, "data" must be broken down into bits.
3611 */
3612 mask = 0x01 << (count - 1);
3613 eecd = er32(EECD);
Janusz Wolak13a87c12015-09-28 23:40:19 +02003614 if (eeprom->type == e1000_eeprom_microwire)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003615 eecd &= ~E1000_EECD_DO;
Janusz Wolak13a87c12015-09-28 23:40:19 +02003616 else if (eeprom->type == e1000_eeprom_spi)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003617 eecd |= E1000_EECD_DO;
Janusz Wolak13a87c12015-09-28 23:40:19 +02003618
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003619 do {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003620 /* A "1" is shifted out to the EEPROM by setting bit "DI" to a
3621 * "1", and then raising and then lowering the clock (the SK bit
3622 * controls the clock input to the EEPROM). A "0" is shifted
3623 * out to the EEPROM by setting "DI" to "0" and then raising and
3624 * then lowering the clock.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003625 */
3626 eecd &= ~E1000_EECD_DI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003628 if (data & mask)
3629 eecd |= E1000_EECD_DI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003631 ew32(EECD, eecd);
3632 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003634 udelay(eeprom->delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003636 e1000_raise_ee_clk(hw, &eecd);
3637 e1000_lower_ee_clk(hw, &eecd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003639 mask = mask >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003641 } while (mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003643 /* We leave the "DI" bit set to "0" when we leave this routine. */
3644 eecd &= ~E1000_EECD_DI;
3645 ew32(EECD, eecd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646}
3647
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003648/**
3649 * e1000_shift_in_ee_bits - Shift data bits in from the EEPROM
3650 * @hw: Struct containing variables accessed by shared code
3651 * @count: number of bits to shift in
3652 */
Joe Perches64798842008-07-11 15:17:02 -07003653static u16 e1000_shift_in_ee_bits(struct e1000_hw *hw, u16 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003655 u32 eecd;
3656 u32 i;
3657 u16 data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003659 /* In order to read a register from the EEPROM, we need to shift 'count'
3660 * bits in from the EEPROM. Bits are "shifted in" by raising the clock
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003661 * input to the EEPROM (setting the SK bit), and then reading the value
3662 * of the "DO" bit. During this "shifting in" process the "DI" bit
3663 * should always be clear.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003664 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003666 eecd = er32(EECD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003668 eecd &= ~(E1000_EECD_DO | E1000_EECD_DI);
3669 data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003671 for (i = 0; i < count; i++) {
3672 data = data << 1;
3673 e1000_raise_ee_clk(hw, &eecd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003675 eecd = er32(EECD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003677 eecd &= ~(E1000_EECD_DI);
3678 if (eecd & E1000_EECD_DO)
3679 data |= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003681 e1000_lower_ee_clk(hw, &eecd);
3682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003684 return data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685}
3686
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003687/**
3688 * e1000_acquire_eeprom - Prepares EEPROM for access
3689 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 *
3691 * Lowers EEPROM clock. Clears input pin. Sets the chip select pin. This
3692 * function should be called before issuing a command to the EEPROM.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003693 */
Joe Perches64798842008-07-11 15:17:02 -07003694static s32 e1000_acquire_eeprom(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003696 struct e1000_eeprom_info *eeprom = &hw->eeprom;
3697 u32 eecd, i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003699 eecd = er32(EECD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003701 /* Request EEPROM Access */
3702 if (hw->mac_type > e1000_82544) {
3703 eecd |= E1000_EECD_REQ;
3704 ew32(EECD, eecd);
3705 eecd = er32(EECD);
3706 while ((!(eecd & E1000_EECD_GNT)) &&
3707 (i < E1000_EEPROM_GRANT_ATTEMPTS)) {
3708 i++;
3709 udelay(5);
3710 eecd = er32(EECD);
3711 }
3712 if (!(eecd & E1000_EECD_GNT)) {
3713 eecd &= ~E1000_EECD_REQ;
3714 ew32(EECD, eecd);
Emil Tantilov675ad472010-04-27 14:02:58 +00003715 e_dbg("Could not acquire EEPROM grant\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003716 return -E1000_ERR_EEPROM;
3717 }
3718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003720 /* Setup EEPROM for Read/Write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003722 if (eeprom->type == e1000_eeprom_microwire) {
3723 /* Clear SK and DI */
3724 eecd &= ~(E1000_EECD_DI | E1000_EECD_SK);
3725 ew32(EECD, eecd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003727 /* Set CS */
3728 eecd |= E1000_EECD_CS;
3729 ew32(EECD, eecd);
3730 } else if (eeprom->type == e1000_eeprom_spi) {
3731 /* Clear SK and CS */
3732 eecd &= ~(E1000_EECD_CS | E1000_EECD_SK);
3733 ew32(EECD, eecd);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00003734 E1000_WRITE_FLUSH();
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003735 udelay(1);
3736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003738 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739}
3740
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003741/**
3742 * e1000_standby_eeprom - Returns EEPROM to a "standby" state
3743 * @hw: Struct containing variables accessed by shared code
3744 */
Joe Perches64798842008-07-11 15:17:02 -07003745static void e1000_standby_eeprom(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003747 struct e1000_eeprom_info *eeprom = &hw->eeprom;
3748 u32 eecd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003750 eecd = er32(EECD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003752 if (eeprom->type == e1000_eeprom_microwire) {
3753 eecd &= ~(E1000_EECD_CS | E1000_EECD_SK);
3754 ew32(EECD, eecd);
3755 E1000_WRITE_FLUSH();
3756 udelay(eeprom->delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003758 /* Clock high */
3759 eecd |= E1000_EECD_SK;
3760 ew32(EECD, eecd);
3761 E1000_WRITE_FLUSH();
3762 udelay(eeprom->delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003764 /* Select EEPROM */
3765 eecd |= E1000_EECD_CS;
3766 ew32(EECD, eecd);
3767 E1000_WRITE_FLUSH();
3768 udelay(eeprom->delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003770 /* Clock low */
3771 eecd &= ~E1000_EECD_SK;
3772 ew32(EECD, eecd);
3773 E1000_WRITE_FLUSH();
3774 udelay(eeprom->delay_usec);
3775 } else if (eeprom->type == e1000_eeprom_spi) {
3776 /* Toggle CS to flush commands */
3777 eecd |= E1000_EECD_CS;
3778 ew32(EECD, eecd);
3779 E1000_WRITE_FLUSH();
3780 udelay(eeprom->delay_usec);
3781 eecd &= ~E1000_EECD_CS;
3782 ew32(EECD, eecd);
3783 E1000_WRITE_FLUSH();
3784 udelay(eeprom->delay_usec);
3785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786}
3787
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003788/**
3789 * e1000_release_eeprom - drop chip select
3790 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003792 * Terminates a command by inverting the EEPROM's chip select pin
3793 */
Joe Perches64798842008-07-11 15:17:02 -07003794static void e1000_release_eeprom(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003796 u32 eecd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003798 eecd = er32(EECD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003800 if (hw->eeprom.type == e1000_eeprom_spi) {
3801 eecd |= E1000_EECD_CS; /* Pull CS high */
3802 eecd &= ~E1000_EECD_SK; /* Lower SCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003804 ew32(EECD, eecd);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00003805 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003807 udelay(hw->eeprom.delay_usec);
3808 } else if (hw->eeprom.type == e1000_eeprom_microwire) {
3809 /* cleanup eeprom */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003811 /* CS on Microwire is active-high */
3812 eecd &= ~(E1000_EECD_CS | E1000_EECD_DI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003814 ew32(EECD, eecd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003816 /* Rising edge of clock */
3817 eecd |= E1000_EECD_SK;
3818 ew32(EECD, eecd);
3819 E1000_WRITE_FLUSH();
3820 udelay(hw->eeprom.delay_usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003822 /* Falling edge of clock */
3823 eecd &= ~E1000_EECD_SK;
3824 ew32(EECD, eecd);
3825 E1000_WRITE_FLUSH();
3826 udelay(hw->eeprom.delay_usec);
3827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003829 /* Stop requesting EEPROM access */
3830 if (hw->mac_type > e1000_82544) {
3831 eecd &= ~E1000_EECD_REQ;
3832 ew32(EECD, eecd);
3833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834}
3835
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003836/**
3837 * e1000_spi_eeprom_ready - Reads a 16 bit word from the EEPROM.
3838 * @hw: Struct containing variables accessed by shared code
3839 */
Joe Perches64798842008-07-11 15:17:02 -07003840static s32 e1000_spi_eeprom_ready(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003842 u16 retry_count = 0;
3843 u8 spi_stat_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003845 /* Read "Status Register" repeatedly until the LSB is cleared. The
3846 * EEPROM will signal that the command has been completed by clearing
3847 * bit 0 of the internal status register. If it's not cleared within
3848 * 5 milliseconds, then error out.
3849 */
3850 retry_count = 0;
3851 do {
3852 e1000_shift_out_ee_bits(hw, EEPROM_RDSR_OPCODE_SPI,
3853 hw->eeprom.opcode_bits);
Janusz Wolak13a87c12015-09-28 23:40:19 +02003854 spi_stat_reg = (u8)e1000_shift_in_ee_bits(hw, 8);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003855 if (!(spi_stat_reg & EEPROM_STATUS_RDY_SPI))
3856 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003858 udelay(5);
3859 retry_count += 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003861 e1000_standby_eeprom(hw);
3862 } while (retry_count < EEPROM_MAX_RETRY_SPI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003864 /* ATMEL SPI write time could vary from 0-20mSec on 3.3V devices (and
3865 * only 0-5mSec on 5V devices)
3866 */
3867 if (retry_count >= EEPROM_MAX_RETRY_SPI) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003868 e_dbg("SPI EEPROM Status error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003869 return -E1000_ERR_EEPROM;
3870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003872 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873}
3874
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003875/**
3876 * e1000_read_eeprom - Reads a 16 bit word from the EEPROM.
3877 * @hw: Struct containing variables accessed by shared code
3878 * @offset: offset of word in the EEPROM to read
3879 * @data: word read from the EEPROM
3880 * @words: number of words to read
3881 */
Joe Perches64798842008-07-11 15:17:02 -07003882s32 e1000_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003884 s32 ret;
Janusz Wolak13a87c12015-09-28 23:40:19 +02003885
Joern Engele09b8902015-07-23 14:54:34 -07003886 mutex_lock(&e1000_eeprom_lock);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003887 ret = e1000_do_read_eeprom(hw, offset, words, data);
Joern Engele09b8902015-07-23 14:54:34 -07003888 mutex_unlock(&e1000_eeprom_lock);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003889 return ret;
Christopher Li78566fe2008-09-05 14:04:05 -07003890}
3891
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003892static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words,
3893 u16 *data)
Christopher Li78566fe2008-09-05 14:04:05 -07003894{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003895 struct e1000_eeprom_info *eeprom = &hw->eeprom;
3896 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Dirk Brandewie5377a412011-01-06 14:29:54 +00003898 if (hw->mac_type == e1000_ce4100) {
3899 GBE_CONFIG_FLASH_READ(GBE_CONFIG_BASE_VIRT, offset, words,
Janusz Wolaka48954c2015-09-17 23:34:29 +02003900 data);
Dirk Brandewie5377a412011-01-06 14:29:54 +00003901 return E1000_SUCCESS;
3902 }
3903
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003904 /* A check for invalid values: offset too large, too many words, and
3905 * not enough words.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003906 */
Janusz Wolak13a87c12015-09-28 23:40:19 +02003907 if ((offset >= eeprom->word_size) ||
3908 (words > eeprom->word_size - offset) ||
3909 (words == 0)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003910 e_dbg("\"words\" parameter out of bounds. Words = %d,"
3911 "size = %d\n", offset, eeprom->word_size);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003912 return -E1000_ERR_EEPROM;
3913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003915 /* EEPROM's that don't use EERD to read require us to bit-bang the SPI
3916 * directly. In this case, we need to acquire the EEPROM so that
3917 * FW or other port software does not interrupt.
3918 */
Jesse Brandeburg8f601b22009-09-25 12:20:11 +00003919 /* Prepare the EEPROM for bit-bang reading */
3920 if (e1000_acquire_eeprom(hw) != E1000_SUCCESS)
3921 return -E1000_ERR_EEPROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003923 /* Set up the SPI or Microwire EEPROM for bit-bang reading. We have
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003924 * acquired the EEPROM at this point, so any returns should release it
3925 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003926 if (eeprom->type == e1000_eeprom_spi) {
3927 u16 word_in;
3928 u8 read_opcode = EEPROM_READ_OPCODE_SPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003930 if (e1000_spi_eeprom_ready(hw)) {
3931 e1000_release_eeprom(hw);
3932 return -E1000_ERR_EEPROM;
3933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003935 e1000_standby_eeprom(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003937 /* Some SPI eeproms use the 8th address bit embedded in the
3938 * opcode
3939 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003940 if ((eeprom->address_bits == 8) && (offset >= 128))
3941 read_opcode |= EEPROM_A8_OPCODE_SPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003943 /* Send the READ command (opcode + addr) */
3944 e1000_shift_out_ee_bits(hw, read_opcode, eeprom->opcode_bits);
Janusz Wolak13a87c12015-09-28 23:40:19 +02003945 e1000_shift_out_ee_bits(hw, (u16)(offset * 2),
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003946 eeprom->address_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003948 /* Read the data. The address of the eeprom internally
3949 * increments with each byte (spi) being read, saving on the
3950 * overhead of eeprom setup and tear-down. The address counter
3951 * will roll over if reading beyond the size of the eeprom, thus
3952 * allowing the entire memory to be read starting from any
3953 * offset.
3954 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003955 for (i = 0; i < words; i++) {
3956 word_in = e1000_shift_in_ee_bits(hw, 16);
3957 data[i] = (word_in >> 8) | (word_in << 8);
3958 }
3959 } else if (eeprom->type == e1000_eeprom_microwire) {
3960 for (i = 0; i < words; i++) {
3961 /* Send the READ command (opcode + addr) */
3962 e1000_shift_out_ee_bits(hw,
3963 EEPROM_READ_OPCODE_MICROWIRE,
3964 eeprom->opcode_bits);
Janusz Wolak13a87c12015-09-28 23:40:19 +02003965 e1000_shift_out_ee_bits(hw, (u16)(offset + i),
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003966 eeprom->address_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00003968 /* Read the data. For microwire, each word requires the
3969 * overhead of eeprom setup and tear-down.
3970 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003971 data[i] = e1000_shift_in_ee_bits(hw, 16);
3972 e1000_standby_eeprom(hw);
Joern Engele09b8902015-07-23 14:54:34 -07003973 cond_resched();
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003974 }
3975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003977 /* End this read operation */
3978 e1000_release_eeprom(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003980 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981}
3982
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003983/**
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003984 * e1000_validate_eeprom_checksum - Verifies that the EEPROM has a valid checksum
3985 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 *
3987 * Reads the first 64 16 bit words of the EEPROM and sums the values read.
3988 * If the the sum of the 64 16 bit words is 0xBABA, the EEPROM's checksum is
3989 * valid.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003990 */
Joe Perches64798842008-07-11 15:17:02 -07003991s32 e1000_validate_eeprom_checksum(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003993 u16 checksum = 0;
3994 u16 i, eeprom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003996 for (i = 0; i < (EEPROM_CHECKSUM_REG + 1); i++) {
3997 if (e1000_read_eeprom(hw, i, 1, &eeprom_data) < 0) {
Emil Tantilov675ad472010-04-27 14:02:58 +00003998 e_dbg("EEPROM Read Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07003999 return -E1000_ERR_EEPROM;
4000 }
4001 checksum += eeprom_data;
4002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
Jeff Kirshere2faeec2011-08-30 20:58:56 -04004004#ifdef CONFIG_PARISC
4005 /* This is a signature and not a checksum on HP c8000 */
4006 if ((hw->subsystem_vendor_id == 0x103C) && (eeprom_data == 0x16d6))
4007 return E1000_SUCCESS;
4008
4009#endif
Janusz Wolak13a87c12015-09-28 23:40:19 +02004010 if (checksum == (u16)EEPROM_SUM)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004011 return E1000_SUCCESS;
4012 else {
Emil Tantilov675ad472010-04-27 14:02:58 +00004013 e_dbg("EEPROM Checksum Invalid\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004014 return -E1000_ERR_EEPROM;
4015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016}
4017
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004018/**
4019 * e1000_update_eeprom_checksum - Calculates/writes the EEPROM checksum
4020 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 *
4022 * Sums the first 63 16 bit words of the EEPROM. Subtracts the sum from 0xBABA.
4023 * Writes the difference to word offset 63 of the EEPROM.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004024 */
Joe Perches64798842008-07-11 15:17:02 -07004025s32 e1000_update_eeprom_checksum(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004027 u16 checksum = 0;
4028 u16 i, eeprom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004030 for (i = 0; i < EEPROM_CHECKSUM_REG; i++) {
4031 if (e1000_read_eeprom(hw, i, 1, &eeprom_data) < 0) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004032 e_dbg("EEPROM Read Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004033 return -E1000_ERR_EEPROM;
4034 }
4035 checksum += eeprom_data;
4036 }
Janusz Wolak13a87c12015-09-28 23:40:19 +02004037 checksum = (u16)EEPROM_SUM - checksum;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004038 if (e1000_write_eeprom(hw, EEPROM_CHECKSUM_REG, 1, &checksum) < 0) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004039 e_dbg("EEPROM Write Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004040 return -E1000_ERR_EEPROM;
4041 }
4042 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043}
4044
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004045/**
4046 * e1000_write_eeprom - write words to the different EEPROM types.
4047 * @hw: Struct containing variables accessed by shared code
4048 * @offset: offset within the EEPROM to be written to
4049 * @words: number of words to write
4050 * @data: 16 bit word to be written to the EEPROM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 *
4052 * If e1000_update_eeprom_checksum is not called after this function, the
4053 * EEPROM will most likely contain an invalid checksum.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004054 */
Joe Perches64798842008-07-11 15:17:02 -07004055s32 e1000_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004057 s32 ret;
Janusz Wolak13a87c12015-09-28 23:40:19 +02004058
Joern Engele09b8902015-07-23 14:54:34 -07004059 mutex_lock(&e1000_eeprom_lock);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004060 ret = e1000_do_write_eeprom(hw, offset, words, data);
Joern Engele09b8902015-07-23 14:54:34 -07004061 mutex_unlock(&e1000_eeprom_lock);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004062 return ret;
Christopher Li78566fe2008-09-05 14:04:05 -07004063}
4064
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004065static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words,
4066 u16 *data)
Christopher Li78566fe2008-09-05 14:04:05 -07004067{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004068 struct e1000_eeprom_info *eeprom = &hw->eeprom;
4069 s32 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Dirk Brandewie5377a412011-01-06 14:29:54 +00004071 if (hw->mac_type == e1000_ce4100) {
4072 GBE_CONFIG_FLASH_WRITE(GBE_CONFIG_BASE_VIRT, offset, words,
Janusz Wolaka48954c2015-09-17 23:34:29 +02004073 data);
Dirk Brandewie5377a412011-01-06 14:29:54 +00004074 return E1000_SUCCESS;
4075 }
4076
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004077 /* A check for invalid values: offset too large, too many words, and
4078 * not enough words.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004079 */
Janusz Wolak13a87c12015-09-28 23:40:19 +02004080 if ((offset >= eeprom->word_size) ||
4081 (words > eeprom->word_size - offset) ||
4082 (words == 0)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004083 e_dbg("\"words\" parameter out of bounds\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004084 return -E1000_ERR_EEPROM;
4085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004087 /* Prepare the EEPROM for writing */
4088 if (e1000_acquire_eeprom(hw) != E1000_SUCCESS)
4089 return -E1000_ERR_EEPROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004091 if (eeprom->type == e1000_eeprom_microwire) {
4092 status = e1000_write_eeprom_microwire(hw, offset, words, data);
4093 } else {
4094 status = e1000_write_eeprom_spi(hw, offset, words, data);
4095 msleep(10);
4096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004098 /* Done with writing */
4099 e1000_release_eeprom(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004101 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102}
4103
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004104/**
4105 * e1000_write_eeprom_spi - Writes a 16 bit word to a given offset in an SPI EEPROM.
4106 * @hw: Struct containing variables accessed by shared code
4107 * @offset: offset within the EEPROM to be written to
4108 * @words: number of words to write
4109 * @data: pointer to array of 8 bit words to be written to the EEPROM
4110 */
Joe Perches64798842008-07-11 15:17:02 -07004111static s32 e1000_write_eeprom_spi(struct e1000_hw *hw, u16 offset, u16 words,
4112 u16 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004114 struct e1000_eeprom_info *eeprom = &hw->eeprom;
4115 u16 widx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004117 while (widx < words) {
4118 u8 write_opcode = EEPROM_WRITE_OPCODE_SPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004120 if (e1000_spi_eeprom_ready(hw))
4121 return -E1000_ERR_EEPROM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004123 e1000_standby_eeprom(hw);
Joern Engele09b8902015-07-23 14:54:34 -07004124 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004126 /* Send the WRITE ENABLE command (8 bit opcode ) */
4127 e1000_shift_out_ee_bits(hw, EEPROM_WREN_OPCODE_SPI,
4128 eeprom->opcode_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004130 e1000_standby_eeprom(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004132 /* Some SPI eeproms use the 8th address bit embedded in the
4133 * opcode
4134 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004135 if ((eeprom->address_bits == 8) && (offset >= 128))
4136 write_opcode |= EEPROM_A8_OPCODE_SPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004138 /* Send the Write command (8-bit opcode + addr) */
4139 e1000_shift_out_ee_bits(hw, write_opcode, eeprom->opcode_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Janusz Wolak13a87c12015-09-28 23:40:19 +02004141 e1000_shift_out_ee_bits(hw, (u16)((offset + widx) * 2),
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004142 eeprom->address_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004144 /* Send the data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004146 /* Loop to allow for up to whole page write (32 bytes) of
4147 * eeprom
4148 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004149 while (widx < words) {
4150 u16 word_out = data[widx];
Janusz Wolak13a87c12015-09-28 23:40:19 +02004151
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004152 word_out = (word_out >> 8) | (word_out << 8);
4153 e1000_shift_out_ee_bits(hw, word_out, 16);
4154 widx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004156 /* Some larger eeprom sizes are capable of a 32-byte
4157 * PAGE WRITE operation, while the smaller eeproms are
4158 * capable of an 8-byte PAGE WRITE operation. Break the
4159 * inner loop to pass new address
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004160 */
4161 if ((((offset + widx) * 2) % eeprom->page_size) == 0) {
4162 e1000_standby_eeprom(hw);
4163 break;
4164 }
4165 }
4166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004168 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169}
4170
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004171/**
4172 * e1000_write_eeprom_microwire - Writes a 16 bit word to a given offset in a Microwire EEPROM.
4173 * @hw: Struct containing variables accessed by shared code
4174 * @offset: offset within the EEPROM to be written to
4175 * @words: number of words to write
4176 * @data: pointer to array of 8 bit words to be written to the EEPROM
4177 */
Joe Perches64798842008-07-11 15:17:02 -07004178static s32 e1000_write_eeprom_microwire(struct e1000_hw *hw, u16 offset,
4179 u16 words, u16 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004181 struct e1000_eeprom_info *eeprom = &hw->eeprom;
4182 u32 eecd;
4183 u16 words_written = 0;
4184 u16 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004186 /* Send the write enable command to the EEPROM (3-bit opcode plus
4187 * 6/8-bit dummy address beginning with 11). It's less work to include
4188 * the 11 of the dummy address as part of the opcode than it is to shift
4189 * it over the correct number of bits for the address. This puts the
4190 * EEPROM into write/erase mode.
4191 */
4192 e1000_shift_out_ee_bits(hw, EEPROM_EWEN_OPCODE_MICROWIRE,
Janusz Wolak13a87c12015-09-28 23:40:19 +02004193 (u16)(eeprom->opcode_bits + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
Janusz Wolak13a87c12015-09-28 23:40:19 +02004195 e1000_shift_out_ee_bits(hw, 0, (u16)(eeprom->address_bits - 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004197 /* Prepare the EEPROM */
4198 e1000_standby_eeprom(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004200 while (words_written < words) {
4201 /* Send the Write command (3-bit opcode + addr) */
4202 e1000_shift_out_ee_bits(hw, EEPROM_WRITE_OPCODE_MICROWIRE,
4203 eeprom->opcode_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Janusz Wolak13a87c12015-09-28 23:40:19 +02004205 e1000_shift_out_ee_bits(hw, (u16)(offset + words_written),
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004206 eeprom->address_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004208 /* Send the data */
4209 e1000_shift_out_ee_bits(hw, data[words_written], 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004211 /* Toggle the CS line. This in effect tells the EEPROM to
4212 * execute the previous command.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004213 */
4214 e1000_standby_eeprom(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004216 /* Read DO repeatedly until it is high (equal to '1'). The
4217 * EEPROM will signal that the command has been completed by
4218 * raising the DO signal. If DO does not go high in 10
4219 * milliseconds, then error out.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004220 */
4221 for (i = 0; i < 200; i++) {
4222 eecd = er32(EECD);
4223 if (eecd & E1000_EECD_DO)
4224 break;
4225 udelay(50);
4226 }
4227 if (i == 200) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004228 e_dbg("EEPROM Write did not complete\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004229 return -E1000_ERR_EEPROM;
4230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004232 /* Recover from write */
4233 e1000_standby_eeprom(hw);
Joern Engele09b8902015-07-23 14:54:34 -07004234 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004236 words_written++;
4237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004239 /* Send the write disable command to the EEPROM (3-bit opcode plus
4240 * 6/8-bit dummy address beginning with 10). It's less work to include
4241 * the 10 of the dummy address as part of the opcode than it is to shift
4242 * it over the correct number of bits for the address. This takes the
4243 * EEPROM out of write/erase mode.
4244 */
4245 e1000_shift_out_ee_bits(hw, EEPROM_EWDS_OPCODE_MICROWIRE,
Janusz Wolak13a87c12015-09-28 23:40:19 +02004246 (u16)(eeprom->opcode_bits + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247
Janusz Wolak13a87c12015-09-28 23:40:19 +02004248 e1000_shift_out_ee_bits(hw, 0, (u16)(eeprom->address_bits - 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004250 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251}
4252
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004253/**
4254 * e1000_read_mac_addr - read the adapters MAC from eeprom
4255 * @hw: Struct containing variables accessed by shared code
4256 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 * Reads the adapter's MAC address from the EEPROM and inverts the LSB for the
4258 * second function of dual function devices
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004259 */
Joe Perches64798842008-07-11 15:17:02 -07004260s32 e1000_read_mac_addr(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004262 u16 offset;
4263 u16 eeprom_data, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004265 for (i = 0; i < NODE_ADDRESS_SIZE; i += 2) {
4266 offset = i >> 1;
4267 if (e1000_read_eeprom(hw, offset, 1, &eeprom_data) < 0) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004268 e_dbg("EEPROM Read Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004269 return -E1000_ERR_EEPROM;
4270 }
Janusz Wolak13a87c12015-09-28 23:40:19 +02004271 hw->perm_mac_addr[i] = (u8)(eeprom_data & 0x00FF);
4272 hw->perm_mac_addr[i + 1] = (u8)(eeprom_data >> 8);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004273 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004274
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004275 switch (hw->mac_type) {
4276 default:
4277 break;
4278 case e1000_82546:
4279 case e1000_82546_rev_3:
4280 if (er32(STATUS) & E1000_STATUS_FUNC_1)
4281 hw->perm_mac_addr[5] ^= 0x01;
4282 break;
4283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004285 for (i = 0; i < NODE_ADDRESS_SIZE; i++)
4286 hw->mac_addr[i] = hw->perm_mac_addr[i];
4287 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288}
4289
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004290/**
4291 * e1000_init_rx_addrs - Initializes receive address filters.
4292 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 *
4294 * Places the MAC address in receive address register 0 and clears the rest
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004295 * of the receive address registers. Clears the multicast table. Assumes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 * the receiver is in reset when the routine is called.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004297 */
Joe Perches64798842008-07-11 15:17:02 -07004298static void e1000_init_rx_addrs(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004300 u32 i;
4301 u32 rar_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004303 /* Setup the receive address. */
Emil Tantilov675ad472010-04-27 14:02:58 +00004304 e_dbg("Programming MAC Address into RAR[0]\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004306 e1000_rar_set(hw, hw->mac_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004308 rar_num = E1000_RAR_ENTRIES;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04004309
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004310 /* Zero out the other 15 receive addresses. */
Emil Tantilov675ad472010-04-27 14:02:58 +00004311 e_dbg("Clearing RAR[1-15]\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004312 for (i = 1; i < rar_num; i++) {
4313 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1), 0);
4314 E1000_WRITE_FLUSH();
4315 E1000_WRITE_REG_ARRAY(hw, RA, ((i << 1) + 1), 0);
4316 E1000_WRITE_FLUSH();
4317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318}
4319
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004320/**
4321 * e1000_hash_mc_addr - Hashes an address to determine its location in the multicast table
4322 * @hw: Struct containing variables accessed by shared code
4323 * @mc_addr: the multicast address to hash
4324 */
Joe Perches64798842008-07-11 15:17:02 -07004325u32 e1000_hash_mc_addr(struct e1000_hw *hw, u8 *mc_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004327 u32 hash_value = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004329 /* The portion of the address that is used for the hash table is
4330 * determined by the mc_filter_type setting.
4331 */
4332 switch (hw->mc_filter_type) {
4333 /* [0] [1] [2] [3] [4] [5]
4334 * 01 AA 00 12 34 56
4335 * LSB MSB
4336 */
4337 case 0:
4338 /* [47:36] i.e. 0x563 for above example address */
Janusz Wolak13a87c12015-09-28 23:40:19 +02004339 hash_value = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004340 break;
4341 case 1:
4342 /* [46:35] i.e. 0xAC6 for above example address */
Janusz Wolak13a87c12015-09-28 23:40:19 +02004343 hash_value = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004344 break;
4345 case 2:
4346 /* [45:34] i.e. 0x5D8 for above example address */
Janusz Wolak13a87c12015-09-28 23:40:19 +02004347 hash_value = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004348 break;
4349 case 3:
4350 /* [43:32] i.e. 0x634 for above example address */
Janusz Wolak13a87c12015-09-28 23:40:19 +02004351 hash_value = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004352 break;
4353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004355 hash_value &= 0xFFF;
4356 return hash_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357}
4358
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004359/**
4360 * e1000_rar_set - Puts an ethernet address into a receive address register.
4361 * @hw: Struct containing variables accessed by shared code
4362 * @addr: Address to put into receive address register
4363 * @index: Receive address register to write
4364 */
Joe Perches64798842008-07-11 15:17:02 -07004365void e1000_rar_set(struct e1000_hw *hw, u8 *addr, u32 index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004367 u32 rar_low, rar_high;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004369 /* HW expects these in little endian so we reverse the byte order
4370 * from network order (big endian) to little endian
4371 */
Janusz Wolak13a87c12015-09-28 23:40:19 +02004372 rar_low = ((u32)addr[0] | ((u32)addr[1] << 8) |
4373 ((u32)addr[2] << 16) | ((u32)addr[3] << 24));
4374 rar_high = ((u32)addr[4] | ((u32)addr[5] << 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004376 /* Disable Rx and flush all Rx frames before enabling RSS to avoid Rx
4377 * unit hang.
4378 *
4379 * Description:
4380 * If there are any Rx frames queued up or otherwise present in the HW
4381 * before RSS is enabled, and then we enable RSS, the HW Rx unit will
4382 * hang. To work around this issue, we have to disable receives and
4383 * flush out all Rx frames before we enable RSS. To do so, we modify we
4384 * redirect all Rx traffic to manageability and then reset the HW.
4385 * This flushes away Rx frames, and (since the redirections to
4386 * manageability persists across resets) keeps new ones from coming in
4387 * while we work. Then, we clear the Address Valid AV bit for all MAC
4388 * addresses and undo the re-direction to manageability.
4389 * Now, frames are coming in again, but the MAC won't accept them, so
4390 * far so good. We now proceed to initialize RSS (if necessary) and
4391 * configure the Rx unit. Last, we re-enable the AV bits and continue
4392 * on our merry way.
4393 */
4394 switch (hw->mac_type) {
4395 default:
4396 /* Indicate to hardware the Address is Valid. */
4397 rar_high |= E1000_RAH_AV;
4398 break;
4399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004401 E1000_WRITE_REG_ARRAY(hw, RA, (index << 1), rar_low);
4402 E1000_WRITE_FLUSH();
4403 E1000_WRITE_REG_ARRAY(hw, RA, ((index << 1) + 1), rar_high);
4404 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405}
4406
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004407/**
4408 * e1000_write_vfta - Writes a value to the specified offset in the VLAN filter table.
4409 * @hw: Struct containing variables accessed by shared code
4410 * @offset: Offset in VLAN filer table to write
4411 * @value: Value to write into VLAN filter table
4412 */
Joe Perches64798842008-07-11 15:17:02 -07004413void e1000_write_vfta(struct e1000_hw *hw, u32 offset, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004415 u32 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004417 if ((hw->mac_type == e1000_82544) && ((offset & 0x1) == 1)) {
4418 temp = E1000_READ_REG_ARRAY(hw, VFTA, (offset - 1));
4419 E1000_WRITE_REG_ARRAY(hw, VFTA, offset, value);
4420 E1000_WRITE_FLUSH();
4421 E1000_WRITE_REG_ARRAY(hw, VFTA, (offset - 1), temp);
4422 E1000_WRITE_FLUSH();
4423 } else {
4424 E1000_WRITE_REG_ARRAY(hw, VFTA, offset, value);
4425 E1000_WRITE_FLUSH();
4426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427}
4428
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004429/**
4430 * e1000_clear_vfta - Clears the VLAN filer table
4431 * @hw: Struct containing variables accessed by shared code
4432 */
Joe Perches64798842008-07-11 15:17:02 -07004433static void e1000_clear_vfta(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004435 u32 offset;
4436 u32 vfta_value = 0;
4437 u32 vfta_offset = 0;
4438 u32 vfta_bit_in_reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004440 for (offset = 0; offset < E1000_VLAN_FILTER_TBL_SIZE; offset++) {
4441 /* If the offset we want to clear is the same offset of the
4442 * manageability VLAN ID, then clear all bits except that of the
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00004443 * manageability unit
4444 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004445 vfta_value = (offset == vfta_offset) ? vfta_bit_in_reg : 0;
4446 E1000_WRITE_REG_ARRAY(hw, VFTA, offset, vfta_value);
4447 E1000_WRITE_FLUSH();
4448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449}
4450
Joe Perches64798842008-07-11 15:17:02 -07004451static s32 e1000_id_led_init(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004453 u32 ledctl;
4454 const u32 ledctl_mask = 0x000000FF;
4455 const u32 ledctl_on = E1000_LEDCTL_MODE_LED_ON;
4456 const u32 ledctl_off = E1000_LEDCTL_MODE_LED_OFF;
4457 u16 eeprom_data, i, temp;
4458 const u16 led_mask = 0x0F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004460 if (hw->mac_type < e1000_82540) {
4461 /* Nothing to do */
4462 return E1000_SUCCESS;
4463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004465 ledctl = er32(LEDCTL);
4466 hw->ledctl_default = ledctl;
4467 hw->ledctl_mode1 = hw->ledctl_default;
4468 hw->ledctl_mode2 = hw->ledctl_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004470 if (e1000_read_eeprom(hw, EEPROM_ID_LED_SETTINGS, 1, &eeprom_data) < 0) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004471 e_dbg("EEPROM Read Error\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004472 return -E1000_ERR_EEPROM;
4473 }
Auke Kokcd94dd02006-06-27 09:08:22 -07004474
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004475 if ((eeprom_data == ID_LED_RESERVED_0000) ||
4476 (eeprom_data == ID_LED_RESERVED_FFFF)) {
4477 eeprom_data = ID_LED_DEFAULT;
4478 }
Auke Kok90fb5132006-11-01 08:47:30 -08004479
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004480 for (i = 0; i < 4; i++) {
4481 temp = (eeprom_data >> (i << 2)) & led_mask;
4482 switch (temp) {
4483 case ID_LED_ON1_DEF2:
4484 case ID_LED_ON1_ON2:
4485 case ID_LED_ON1_OFF2:
4486 hw->ledctl_mode1 &= ~(ledctl_mask << (i << 3));
4487 hw->ledctl_mode1 |= ledctl_on << (i << 3);
4488 break;
4489 case ID_LED_OFF1_DEF2:
4490 case ID_LED_OFF1_ON2:
4491 case ID_LED_OFF1_OFF2:
4492 hw->ledctl_mode1 &= ~(ledctl_mask << (i << 3));
4493 hw->ledctl_mode1 |= ledctl_off << (i << 3);
4494 break;
4495 default:
4496 /* Do nothing */
4497 break;
4498 }
4499 switch (temp) {
4500 case ID_LED_DEF1_ON2:
4501 case ID_LED_ON1_ON2:
4502 case ID_LED_OFF1_ON2:
4503 hw->ledctl_mode2 &= ~(ledctl_mask << (i << 3));
4504 hw->ledctl_mode2 |= ledctl_on << (i << 3);
4505 break;
4506 case ID_LED_DEF1_OFF2:
4507 case ID_LED_ON1_OFF2:
4508 case ID_LED_OFF1_OFF2:
4509 hw->ledctl_mode2 &= ~(ledctl_mask << (i << 3));
4510 hw->ledctl_mode2 |= ledctl_off << (i << 3);
4511 break;
4512 default:
4513 /* Do nothing */
4514 break;
4515 }
4516 }
4517 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518}
4519
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004520/**
4521 * e1000_setup_led
4522 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004524 * Prepares SW controlable LED for use and saves the current state of the LED.
4525 */
Joe Perches64798842008-07-11 15:17:02 -07004526s32 e1000_setup_led(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004528 u32 ledctl;
4529 s32 ret_val = E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004531 switch (hw->mac_type) {
4532 case e1000_82542_rev2_0:
4533 case e1000_82542_rev2_1:
4534 case e1000_82543:
4535 case e1000_82544:
4536 /* No setup necessary */
4537 break;
4538 case e1000_82541:
4539 case e1000_82547:
4540 case e1000_82541_rev_2:
4541 case e1000_82547_rev_2:
4542 /* Turn off PHY Smart Power Down (if enabled) */
4543 ret_val = e1000_read_phy_reg(hw, IGP01E1000_GMII_FIFO,
4544 &hw->phy_spd_default);
4545 if (ret_val)
4546 return ret_val;
4547 ret_val = e1000_write_phy_reg(hw, IGP01E1000_GMII_FIFO,
Janusz Wolak13a87c12015-09-28 23:40:19 +02004548 (u16)(hw->phy_spd_default &
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004549 ~IGP01E1000_GMII_SPD));
4550 if (ret_val)
4551 return ret_val;
4552 /* Fall Through */
4553 default:
4554 if (hw->media_type == e1000_media_type_fiber) {
4555 ledctl = er32(LEDCTL);
4556 /* Save current LEDCTL settings */
4557 hw->ledctl_default = ledctl;
4558 /* Turn off LED0 */
4559 ledctl &= ~(E1000_LEDCTL_LED0_IVRT |
4560 E1000_LEDCTL_LED0_BLINK |
4561 E1000_LEDCTL_LED0_MODE_MASK);
4562 ledctl |= (E1000_LEDCTL_MODE_LED_OFF <<
4563 E1000_LEDCTL_LED0_MODE_SHIFT);
4564 ew32(LEDCTL, ledctl);
4565 } else if (hw->media_type == e1000_media_type_copper)
4566 ew32(LEDCTL, hw->ledctl_mode1);
4567 break;
4568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004570 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571}
4572
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004573/**
4574 * e1000_cleanup_led - Restores the saved state of the SW controlable LED.
4575 * @hw: Struct containing variables accessed by shared code
4576 */
Joe Perches64798842008-07-11 15:17:02 -07004577s32 e1000_cleanup_led(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004579 s32 ret_val = E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004581 switch (hw->mac_type) {
4582 case e1000_82542_rev2_0:
4583 case e1000_82542_rev2_1:
4584 case e1000_82543:
4585 case e1000_82544:
4586 /* No cleanup necessary */
4587 break;
4588 case e1000_82541:
4589 case e1000_82547:
4590 case e1000_82541_rev_2:
4591 case e1000_82547_rev_2:
4592 /* Turn on PHY Smart Power Down (if previously enabled) */
4593 ret_val = e1000_write_phy_reg(hw, IGP01E1000_GMII_FIFO,
4594 hw->phy_spd_default);
4595 if (ret_val)
4596 return ret_val;
4597 /* Fall Through */
4598 default:
4599 /* Restore LEDCTL settings */
4600 ew32(LEDCTL, hw->ledctl_default);
4601 break;
4602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004604 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605}
4606
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004607/**
4608 * e1000_led_on - Turns on the software controllable LED
4609 * @hw: Struct containing variables accessed by shared code
4610 */
Joe Perches64798842008-07-11 15:17:02 -07004611s32 e1000_led_on(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004613 u32 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004615 switch (hw->mac_type) {
4616 case e1000_82542_rev2_0:
4617 case e1000_82542_rev2_1:
4618 case e1000_82543:
4619 /* Set SW Defineable Pin 0 to turn on the LED */
4620 ctrl |= E1000_CTRL_SWDPIN0;
4621 ctrl |= E1000_CTRL_SWDPIO0;
4622 break;
4623 case e1000_82544:
4624 if (hw->media_type == e1000_media_type_fiber) {
4625 /* Set SW Defineable Pin 0 to turn on the LED */
4626 ctrl |= E1000_CTRL_SWDPIN0;
4627 ctrl |= E1000_CTRL_SWDPIO0;
4628 } else {
4629 /* Clear SW Defineable Pin 0 to turn on the LED */
4630 ctrl &= ~E1000_CTRL_SWDPIN0;
4631 ctrl |= E1000_CTRL_SWDPIO0;
4632 }
4633 break;
4634 default:
4635 if (hw->media_type == e1000_media_type_fiber) {
4636 /* Clear SW Defineable Pin 0 to turn on the LED */
4637 ctrl &= ~E1000_CTRL_SWDPIN0;
4638 ctrl |= E1000_CTRL_SWDPIO0;
4639 } else if (hw->media_type == e1000_media_type_copper) {
4640 ew32(LEDCTL, hw->ledctl_mode2);
4641 return E1000_SUCCESS;
4642 }
4643 break;
4644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004646 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004648 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649}
4650
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004651/**
4652 * e1000_led_off - Turns off the software controllable LED
4653 * @hw: Struct containing variables accessed by shared code
4654 */
Joe Perches64798842008-07-11 15:17:02 -07004655s32 e1000_led_off(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004657 u32 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004659 switch (hw->mac_type) {
4660 case e1000_82542_rev2_0:
4661 case e1000_82542_rev2_1:
4662 case e1000_82543:
4663 /* Clear SW Defineable Pin 0 to turn off the LED */
4664 ctrl &= ~E1000_CTRL_SWDPIN0;
4665 ctrl |= E1000_CTRL_SWDPIO0;
4666 break;
4667 case e1000_82544:
4668 if (hw->media_type == e1000_media_type_fiber) {
4669 /* Clear SW Defineable Pin 0 to turn off the LED */
4670 ctrl &= ~E1000_CTRL_SWDPIN0;
4671 ctrl |= E1000_CTRL_SWDPIO0;
4672 } else {
4673 /* Set SW Defineable Pin 0 to turn off the LED */
4674 ctrl |= E1000_CTRL_SWDPIN0;
4675 ctrl |= E1000_CTRL_SWDPIO0;
4676 }
4677 break;
4678 default:
4679 if (hw->media_type == e1000_media_type_fiber) {
4680 /* Set SW Defineable Pin 0 to turn off the LED */
4681 ctrl |= E1000_CTRL_SWDPIN0;
4682 ctrl |= E1000_CTRL_SWDPIO0;
4683 } else if (hw->media_type == e1000_media_type_copper) {
4684 ew32(LEDCTL, hw->ledctl_mode1);
4685 return E1000_SUCCESS;
4686 }
4687 break;
4688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004690 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004692 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693}
4694
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004695/**
4696 * e1000_clear_hw_cntrs - Clears all hardware statistics counters.
4697 * @hw: Struct containing variables accessed by shared code
4698 */
Joe Perches64798842008-07-11 15:17:02 -07004699static void e1000_clear_hw_cntrs(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004701 volatile u32 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004703 temp = er32(CRCERRS);
4704 temp = er32(SYMERRS);
4705 temp = er32(MPC);
4706 temp = er32(SCC);
4707 temp = er32(ECOL);
4708 temp = er32(MCC);
4709 temp = er32(LATECOL);
4710 temp = er32(COLC);
4711 temp = er32(DC);
4712 temp = er32(SEC);
4713 temp = er32(RLEC);
4714 temp = er32(XONRXC);
4715 temp = er32(XONTXC);
4716 temp = er32(XOFFRXC);
4717 temp = er32(XOFFTXC);
4718 temp = er32(FCRUC);
Auke Kokcd94dd02006-06-27 09:08:22 -07004719
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004720 temp = er32(PRC64);
4721 temp = er32(PRC127);
4722 temp = er32(PRC255);
4723 temp = er32(PRC511);
4724 temp = er32(PRC1023);
4725 temp = er32(PRC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07004726
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004727 temp = er32(GPRC);
4728 temp = er32(BPRC);
4729 temp = er32(MPRC);
4730 temp = er32(GPTC);
4731 temp = er32(GORCL);
4732 temp = er32(GORCH);
4733 temp = er32(GOTCL);
4734 temp = er32(GOTCH);
4735 temp = er32(RNBC);
4736 temp = er32(RUC);
4737 temp = er32(RFC);
4738 temp = er32(ROC);
4739 temp = er32(RJC);
4740 temp = er32(TORL);
4741 temp = er32(TORH);
4742 temp = er32(TOTL);
4743 temp = er32(TOTH);
4744 temp = er32(TPR);
4745 temp = er32(TPT);
Auke Kokcd94dd02006-06-27 09:08:22 -07004746
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004747 temp = er32(PTC64);
4748 temp = er32(PTC127);
4749 temp = er32(PTC255);
4750 temp = er32(PTC511);
4751 temp = er32(PTC1023);
4752 temp = er32(PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07004753
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004754 temp = er32(MPTC);
4755 temp = er32(BPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004757 if (hw->mac_type < e1000_82543)
4758 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004760 temp = er32(ALGNERRC);
4761 temp = er32(RXERRC);
4762 temp = er32(TNCRS);
4763 temp = er32(CEXTERR);
4764 temp = er32(TSCTC);
4765 temp = er32(TSCTFC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004767 if (hw->mac_type <= e1000_82544)
4768 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004770 temp = er32(MGTPRC);
4771 temp = er32(MGTPDC);
4772 temp = er32(MGTPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773}
4774
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004775/**
4776 * e1000_reset_adaptive - Resets Adaptive IFS to its default state.
4777 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 *
4779 * Call this after e1000_init_hw. You may override the IFS defaults by setting
Joe Perchesc3033b02008-03-21 11:06:25 -07004780 * hw->ifs_params_forced to true. However, you must initialize hw->
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 * current_ifs_val, ifs_min_val, ifs_max_val, ifs_step_size, and ifs_ratio
4782 * before calling this function.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004783 */
Joe Perches64798842008-07-11 15:17:02 -07004784void e1000_reset_adaptive(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004786 if (hw->adaptive_ifs) {
4787 if (!hw->ifs_params_forced) {
4788 hw->current_ifs_val = 0;
4789 hw->ifs_min_val = IFS_MIN;
4790 hw->ifs_max_val = IFS_MAX;
4791 hw->ifs_step_size = IFS_STEP;
4792 hw->ifs_ratio = IFS_RATIO;
4793 }
4794 hw->in_ifs_mode = false;
4795 ew32(AIT, 0);
4796 } else {
Emil Tantilov675ad472010-04-27 14:02:58 +00004797 e_dbg("Not in Adaptive IFS mode!\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799}
4800
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004801/**
4802 * e1000_update_adaptive - update adaptive IFS
4803 * @hw: Struct containing variables accessed by shared code
4804 * @tx_packets: Number of transmits since last callback
4805 * @total_collisions: Number of collisions since last callback
4806 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 * Called during the callback/watchdog routine to update IFS value based on
4808 * the ratio of transmits to collisions.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004809 */
Joe Perches64798842008-07-11 15:17:02 -07004810void e1000_update_adaptive(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004812 if (hw->adaptive_ifs) {
Janusz Wolak13a87c12015-09-28 23:40:19 +02004813 if ((hw->collision_delta * hw->ifs_ratio) > hw->tx_packet_delta) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004814 if (hw->tx_packet_delta > MIN_NUM_XMITS) {
4815 hw->in_ifs_mode = true;
4816 if (hw->current_ifs_val < hw->ifs_max_val) {
4817 if (hw->current_ifs_val == 0)
4818 hw->current_ifs_val =
4819 hw->ifs_min_val;
4820 else
4821 hw->current_ifs_val +=
4822 hw->ifs_step_size;
4823 ew32(AIT, hw->current_ifs_val);
4824 }
4825 }
4826 } else {
Janusz Wolak13a87c12015-09-28 23:40:19 +02004827 if (hw->in_ifs_mode &&
4828 (hw->tx_packet_delta <= MIN_NUM_XMITS)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004829 hw->current_ifs_val = 0;
4830 hw->in_ifs_mode = false;
4831 ew32(AIT, 0);
4832 }
4833 }
4834 } else {
Emil Tantilov675ad472010-04-27 14:02:58 +00004835 e_dbg("Not in Adaptive IFS mode!\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837}
4838
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004839/**
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004840 * e1000_get_bus_info
4841 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004843 * Gets the current PCI bus type, speed, and width of the hardware
4844 */
Joe Perches64798842008-07-11 15:17:02 -07004845void e1000_get_bus_info(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004847 u32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004849 switch (hw->mac_type) {
4850 case e1000_82542_rev2_0:
4851 case e1000_82542_rev2_1:
4852 hw->bus_type = e1000_bus_type_pci;
4853 hw->bus_speed = e1000_bus_speed_unknown;
4854 hw->bus_width = e1000_bus_width_unknown;
4855 break;
4856 default:
4857 status = er32(STATUS);
4858 hw->bus_type = (status & E1000_STATUS_PCIX_MODE) ?
4859 e1000_bus_type_pcix : e1000_bus_type_pci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004861 if (hw->device_id == E1000_DEV_ID_82546EB_QUAD_COPPER) {
4862 hw->bus_speed = (hw->bus_type == e1000_bus_type_pci) ?
4863 e1000_bus_speed_66 : e1000_bus_speed_120;
4864 } else if (hw->bus_type == e1000_bus_type_pci) {
4865 hw->bus_speed = (status & E1000_STATUS_PCI66) ?
4866 e1000_bus_speed_66 : e1000_bus_speed_33;
4867 } else {
4868 switch (status & E1000_STATUS_PCIX_SPEED) {
4869 case E1000_STATUS_PCIX_SPEED_66:
4870 hw->bus_speed = e1000_bus_speed_66;
4871 break;
4872 case E1000_STATUS_PCIX_SPEED_100:
4873 hw->bus_speed = e1000_bus_speed_100;
4874 break;
4875 case E1000_STATUS_PCIX_SPEED_133:
4876 hw->bus_speed = e1000_bus_speed_133;
4877 break;
4878 default:
4879 hw->bus_speed = e1000_bus_speed_reserved;
4880 break;
4881 }
4882 }
4883 hw->bus_width = (status & E1000_STATUS_BUS64) ?
4884 e1000_bus_width_64 : e1000_bus_width_32;
4885 break;
4886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004889/**
4890 * e1000_write_reg_io
4891 * @hw: Struct containing variables accessed by shared code
4892 * @offset: offset to write to
4893 * @value: value to write
4894 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 * Writes a value to one of the devices registers using port I/O (as opposed to
4896 * memory mapped I/O). Only 82544 and newer devices support port I/O.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004897 */
Joe Perches64798842008-07-11 15:17:02 -07004898static void e1000_write_reg_io(struct e1000_hw *hw, u32 offset, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004900 unsigned long io_addr = hw->io_base;
4901 unsigned long io_data = hw->io_base + 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004903 e1000_io_write(hw, io_addr, offset);
4904 e1000_io_write(hw, io_data, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905}
4906
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004907/**
4908 * e1000_get_cable_length - Estimates the cable length.
4909 * @hw: Struct containing variables accessed by shared code
4910 * @min_length: The estimated minimum length
4911 * @max_length: The estimated maximum length
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 *
4913 * returns: - E1000_ERR_XXX
4914 * E1000_SUCCESS
4915 *
4916 * This function always returns a ranged length (minimum & maximum).
4917 * So for M88 phy's, this function interprets the one value returned from the
4918 * register to the minimum and maximum range.
4919 * For IGP phy's, the function calculates the range by the AGC registers.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004920 */
Joe Perches64798842008-07-11 15:17:02 -07004921static s32 e1000_get_cable_length(struct e1000_hw *hw, u16 *min_length,
4922 u16 *max_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004924 s32 ret_val;
4925 u16 agc_value = 0;
4926 u16 i, phy_data;
4927 u16 cable_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004929 *min_length = *max_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004931 /* Use old method for Phy older than IGP */
4932 if (hw->phy_type == e1000_phy_m88) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004933 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS,
4934 &phy_data);
4935 if (ret_val)
4936 return ret_val;
4937 cable_length = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
4938 M88E1000_PSSR_CABLE_LENGTH_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004940 /* Convert the enum value to ranged values */
4941 switch (cable_length) {
4942 case e1000_cable_length_50:
4943 *min_length = 0;
4944 *max_length = e1000_igp_cable_length_50;
4945 break;
4946 case e1000_cable_length_50_80:
4947 *min_length = e1000_igp_cable_length_50;
4948 *max_length = e1000_igp_cable_length_80;
4949 break;
4950 case e1000_cable_length_80_110:
4951 *min_length = e1000_igp_cable_length_80;
4952 *max_length = e1000_igp_cable_length_110;
4953 break;
4954 case e1000_cable_length_110_140:
4955 *min_length = e1000_igp_cable_length_110;
4956 *max_length = e1000_igp_cable_length_140;
4957 break;
4958 case e1000_cable_length_140:
4959 *min_length = e1000_igp_cable_length_140;
4960 *max_length = e1000_igp_cable_length_170;
4961 break;
4962 default:
4963 return -E1000_ERR_PHY;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004964 }
4965 } else if (hw->phy_type == e1000_phy_igp) { /* For IGP PHY */
4966 u16 cur_agc_value;
4967 u16 min_agc_value = IGP01E1000_AGC_LENGTH_TABLE_SIZE;
Jeff Kirsher66744502010-12-01 19:59:50 +00004968 static const u16 agc_reg_array[IGP01E1000_PHY_CHANNEL_NUM] = {
4969 IGP01E1000_PHY_AGC_A,
4970 IGP01E1000_PHY_AGC_B,
4971 IGP01E1000_PHY_AGC_C,
4972 IGP01E1000_PHY_AGC_D
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004973 };
4974 /* Read the AGC registers for all channels */
4975 for (i = 0; i < IGP01E1000_PHY_CHANNEL_NUM; i++) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004976 ret_val =
4977 e1000_read_phy_reg(hw, agc_reg_array[i], &phy_data);
4978 if (ret_val)
4979 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004981 cur_agc_value = phy_data >> IGP01E1000_AGC_LENGTH_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004983 /* Value bound check. */
4984 if ((cur_agc_value >=
Janusz Wolak13a87c12015-09-28 23:40:19 +02004985 IGP01E1000_AGC_LENGTH_TABLE_SIZE - 1) ||
4986 (cur_agc_value == 0))
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004987 return -E1000_ERR_PHY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004989 agc_value += cur_agc_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004991 /* Update minimal AGC value. */
4992 if (min_agc_value > cur_agc_value)
4993 min_agc_value = cur_agc_value;
4994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004996 /* Remove the minimal AGC result for length < 50m */
4997 if (agc_value <
4998 IGP01E1000_PHY_CHANNEL_NUM * e1000_igp_cable_length_50) {
4999 agc_value -= min_agc_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005001 /* Get the average length of the remaining 3 channels */
5002 agc_value /= (IGP01E1000_PHY_CHANNEL_NUM - 1);
5003 } else {
5004 /* Get the average length of all the 4 channels. */
5005 agc_value /= IGP01E1000_PHY_CHANNEL_NUM;
5006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005008 /* Set the range of the calculated length. */
5009 *min_length = ((e1000_igp_cable_length_table[agc_value] -
5010 IGP01E1000_AGC_RANGE) > 0) ?
5011 (e1000_igp_cable_length_table[agc_value] -
5012 IGP01E1000_AGC_RANGE) : 0;
5013 *max_length = e1000_igp_cable_length_table[agc_value] +
5014 IGP01E1000_AGC_RANGE;
5015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005017 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018}
5019
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005020/**
5021 * e1000_check_polarity - Check the cable polarity
5022 * @hw: Struct containing variables accessed by shared code
5023 * @polarity: output parameter : 0 - Polarity is not reversed
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 * 1 - Polarity is reversed.
5025 *
5026 * returns: - E1000_ERR_XXX
5027 * E1000_SUCCESS
5028 *
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02005029 * For phy's older than IGP, this function simply reads the polarity bit in the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 * Phy Status register. For IGP phy's, this bit is valid only if link speed is
5031 * 10 Mbps. If the link speed is 100 Mbps there is no polarity so this bit will
5032 * return 0. If the link speed is 1000 Mbps the polarity status is in the
5033 * IGP01E1000_PHY_PCS_INIT_REG.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005034 */
Joe Perches64798842008-07-11 15:17:02 -07005035static s32 e1000_check_polarity(struct e1000_hw *hw,
5036 e1000_rev_polarity *polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005038 s32 ret_val;
5039 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005041 if (hw->phy_type == e1000_phy_m88) {
5042 /* return the Polarity bit in the Status register. */
5043 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS,
5044 &phy_data);
5045 if (ret_val)
5046 return ret_val;
5047 *polarity = ((phy_data & M88E1000_PSSR_REV_POLARITY) >>
5048 M88E1000_PSSR_REV_POLARITY_SHIFT) ?
5049 e1000_rev_polarity_reversed : e1000_rev_polarity_normal;
Jeff Kirsher70c6f302006-09-27 12:53:31 -07005050
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005051 } else if (hw->phy_type == e1000_phy_igp) {
5052 /* Read the Status register to check the speed */
5053 ret_val = e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_STATUS,
5054 &phy_data);
5055 if (ret_val)
5056 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00005058 /* If speed is 1000 Mbps, must read the
5059 * IGP01E1000_PHY_PCS_INIT_REG to find the polarity status
5060 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005061 if ((phy_data & IGP01E1000_PSSR_SPEED_MASK) ==
5062 IGP01E1000_PSSR_SPEED_1000MBPS) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005063 /* Read the GIG initialization PCS register (0x00B4) */
5064 ret_val =
5065 e1000_read_phy_reg(hw, IGP01E1000_PHY_PCS_INIT_REG,
5066 &phy_data);
5067 if (ret_val)
5068 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005070 /* Check the polarity bits */
5071 *polarity = (phy_data & IGP01E1000_PHY_POLARITY_MASK) ?
5072 e1000_rev_polarity_reversed :
5073 e1000_rev_polarity_normal;
5074 } else {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00005075 /* For 10 Mbps, read the polarity bit in the status
5076 * register. (for 100 Mbps this bit is always 0)
5077 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005078 *polarity =
5079 (phy_data & IGP01E1000_PSSR_POLARITY_REVERSED) ?
5080 e1000_rev_polarity_reversed :
5081 e1000_rev_polarity_normal;
5082 }
5083 }
5084 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085}
5086
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005087/**
5088 * e1000_check_downshift - Check if Downshift occurred
5089 * @hw: Struct containing variables accessed by shared code
5090 * @downshift: output parameter : 0 - No Downshift occurred.
5091 * 1 - Downshift occurred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 *
5093 * returns: - E1000_ERR_XXX
Auke Kok76c224b2006-05-23 13:36:06 -07005094 * E1000_SUCCESS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 *
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02005096 * For phy's older than IGP, this function reads the Downshift bit in the Phy
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 * Specific Status register. For IGP phy's, it reads the Downgrade bit in the
5098 * Link Health register. In IGP this bit is latched high, so the driver must
5099 * read it immediately after link is established.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005100 */
Joe Perches64798842008-07-11 15:17:02 -07005101static s32 e1000_check_downshift(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005103 s32 ret_val;
5104 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005106 if (hw->phy_type == e1000_phy_igp) {
5107 ret_val = e1000_read_phy_reg(hw, IGP01E1000_PHY_LINK_HEALTH,
5108 &phy_data);
5109 if (ret_val)
5110 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005112 hw->speed_downgraded =
5113 (phy_data & IGP01E1000_PLHR_SS_DOWNGRADE) ? 1 : 0;
5114 } else if (hw->phy_type == e1000_phy_m88) {
5115 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_SPEC_STATUS,
5116 &phy_data);
5117 if (ret_val)
5118 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005120 hw->speed_downgraded = (phy_data & M88E1000_PSSR_DOWNSHIFT) >>
5121 M88E1000_PSSR_DOWNSHIFT_SHIFT;
5122 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005123
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005124 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125}
5126
Joe Perches542c3f42012-02-10 12:07:36 +00005127static const u16 dsp_reg_array[IGP01E1000_PHY_CHANNEL_NUM] = {
5128 IGP01E1000_PHY_AGC_PARAM_A,
5129 IGP01E1000_PHY_AGC_PARAM_B,
5130 IGP01E1000_PHY_AGC_PARAM_C,
5131 IGP01E1000_PHY_AGC_PARAM_D
5132};
5133
5134static s32 e1000_1000Mb_check_cable_length(struct e1000_hw *hw)
5135{
5136 u16 min_length, max_length;
5137 u16 phy_data, i;
5138 s32 ret_val;
5139
5140 ret_val = e1000_get_cable_length(hw, &min_length, &max_length);
5141 if (ret_val)
5142 return ret_val;
5143
5144 if (hw->dsp_config_state != e1000_dsp_config_enabled)
5145 return 0;
5146
5147 if (min_length >= e1000_igp_cable_length_50) {
5148 for (i = 0; i < IGP01E1000_PHY_CHANNEL_NUM; i++) {
5149 ret_val = e1000_read_phy_reg(hw, dsp_reg_array[i],
5150 &phy_data);
5151 if (ret_val)
5152 return ret_val;
5153
5154 phy_data &= ~IGP01E1000_PHY_EDAC_MU_INDEX;
5155
5156 ret_val = e1000_write_phy_reg(hw, dsp_reg_array[i],
5157 phy_data);
5158 if (ret_val)
5159 return ret_val;
5160 }
5161 hw->dsp_config_state = e1000_dsp_config_activated;
5162 } else {
5163 u16 ffe_idle_err_timeout = FFE_IDLE_ERR_COUNT_TIMEOUT_20;
5164 u32 idle_errs = 0;
5165
5166 /* clear previous idle error counts */
5167 ret_val = e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_data);
5168 if (ret_val)
5169 return ret_val;
5170
5171 for (i = 0; i < ffe_idle_err_timeout; i++) {
5172 udelay(1000);
5173 ret_val = e1000_read_phy_reg(hw, PHY_1000T_STATUS,
5174 &phy_data);
5175 if (ret_val)
5176 return ret_val;
5177
5178 idle_errs += (phy_data & SR_1000T_IDLE_ERROR_CNT);
5179 if (idle_errs > SR_1000T_PHY_EXCESSIVE_IDLE_ERR_COUNT) {
5180 hw->ffe_config_state = e1000_ffe_config_active;
5181
5182 ret_val = e1000_write_phy_reg(hw,
Janusz Wolak13a87c12015-09-28 23:40:19 +02005183 IGP01E1000_PHY_DSP_FFE,
5184 IGP01E1000_PHY_DSP_FFE_CM_CP);
Joe Perches542c3f42012-02-10 12:07:36 +00005185 if (ret_val)
5186 return ret_val;
5187 break;
5188 }
5189
5190 if (idle_errs)
5191 ffe_idle_err_timeout =
5192 FFE_IDLE_ERR_COUNT_TIMEOUT_100;
5193 }
5194 }
5195
5196 return 0;
5197}
5198
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005199/**
5200 * e1000_config_dsp_after_link_change
5201 * @hw: Struct containing variables accessed by shared code
5202 * @link_up: was link up at the time this was called
5203 *
5204 * returns: - E1000_ERR_PHY if fail to read/write the PHY
5205 * E1000_SUCCESS at any other case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 *
5207 * 82541_rev_2 & 82547_rev_2 have the capability to configure the DSP when a
5208 * gigabit link is achieved to improve link quality.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
Joe Perches64798842008-07-11 15:17:02 -07005211static s32 e1000_config_dsp_after_link_change(struct e1000_hw *hw, bool link_up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005213 s32 ret_val;
5214 u16 phy_data, phy_saved_data, speed, duplex, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005216 if (hw->phy_type != e1000_phy_igp)
5217 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005219 if (link_up) {
5220 ret_val = e1000_get_speed_and_duplex(hw, &speed, &duplex);
5221 if (ret_val) {
Emil Tantilov675ad472010-04-27 14:02:58 +00005222 e_dbg("Error getting link speed and duplex\n");
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005223 return ret_val;
5224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005226 if (speed == SPEED_1000) {
Joe Perches542c3f42012-02-10 12:07:36 +00005227 ret_val = e1000_1000Mb_check_cable_length(hw);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005228 if (ret_val)
5229 return ret_val;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005230 }
5231 } else {
5232 if (hw->dsp_config_state == e1000_dsp_config_activated) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00005233 /* Save off the current value of register 0x2F5B to be
5234 * restored at the end of the routines.
5235 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005236 ret_val =
5237 e1000_read_phy_reg(hw, 0x2F5B, &phy_saved_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005239 if (ret_val)
5240 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005242 /* Disable the PHY transmitter */
5243 ret_val = e1000_write_phy_reg(hw, 0x2F5B, 0x0003);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005245 if (ret_val)
5246 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005248 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005250 ret_val = e1000_write_phy_reg(hw, 0x0000,
Janusz Wolak13a87c12015-09-28 23:40:19 +02005251 IGP01E1000_IEEE_FORCE_GIGA);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005252 if (ret_val)
5253 return ret_val;
5254 for (i = 0; i < IGP01E1000_PHY_CHANNEL_NUM; i++) {
5255 ret_val =
5256 e1000_read_phy_reg(hw, dsp_reg_array[i],
5257 &phy_data);
5258 if (ret_val)
5259 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005261 phy_data &= ~IGP01E1000_PHY_EDAC_MU_INDEX;
5262 phy_data |= IGP01E1000_PHY_EDAC_SIGN_EXT_9_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005264 ret_val =
5265 e1000_write_phy_reg(hw, dsp_reg_array[i],
5266 phy_data);
5267 if (ret_val)
5268 return ret_val;
5269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005271 ret_val = e1000_write_phy_reg(hw, 0x0000,
Janusz Wolak13a87c12015-09-28 23:40:19 +02005272 IGP01E1000_IEEE_RESTART_AUTONEG);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005273 if (ret_val)
5274 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005276 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005278 /* Now enable the transmitter */
5279 ret_val =
5280 e1000_write_phy_reg(hw, 0x2F5B, phy_saved_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005282 if (ret_val)
5283 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005285 hw->dsp_config_state = e1000_dsp_config_enabled;
5286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005288 if (hw->ffe_config_state == e1000_ffe_config_active) {
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00005289 /* Save off the current value of register 0x2F5B to be
5290 * restored at the end of the routines.
5291 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005292 ret_val =
5293 e1000_read_phy_reg(hw, 0x2F5B, &phy_saved_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005295 if (ret_val)
5296 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005298 /* Disable the PHY transmitter */
5299 ret_val = e1000_write_phy_reg(hw, 0x2F5B, 0x0003);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005301 if (ret_val)
5302 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005304 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005306 ret_val = e1000_write_phy_reg(hw, 0x0000,
Janusz Wolak13a87c12015-09-28 23:40:19 +02005307 IGP01E1000_IEEE_FORCE_GIGA);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005308 if (ret_val)
5309 return ret_val;
5310 ret_val =
5311 e1000_write_phy_reg(hw, IGP01E1000_PHY_DSP_FFE,
5312 IGP01E1000_PHY_DSP_FFE_DEFAULT);
5313 if (ret_val)
5314 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005316 ret_val = e1000_write_phy_reg(hw, 0x0000,
Janusz Wolak13a87c12015-09-28 23:40:19 +02005317 IGP01E1000_IEEE_RESTART_AUTONEG);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005318 if (ret_val)
5319 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005321 msleep(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005323 /* Now enable the transmitter */
5324 ret_val =
5325 e1000_write_phy_reg(hw, 0x2F5B, phy_saved_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005327 if (ret_val)
5328 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005330 hw->ffe_config_state = e1000_ffe_config_enabled;
5331 }
5332 }
5333 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334}
5335
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005336/**
5337 * e1000_set_phy_mode - Set PHY to class A mode
5338 * @hw: Struct containing variables accessed by shared code
5339 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 * Assumes the following operations will follow to enable the new class mode.
5341 * 1. Do a PHY soft reset
5342 * 2. Restart auto-negotiation or force link.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005343 */
Joe Perches64798842008-07-11 15:17:02 -07005344static s32 e1000_set_phy_mode(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005346 s32 ret_val;
5347 u16 eeprom_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005349 if ((hw->mac_type == e1000_82545_rev_3) &&
5350 (hw->media_type == e1000_media_type_copper)) {
5351 ret_val =
5352 e1000_read_eeprom(hw, EEPROM_PHY_CLASS_WORD, 1,
5353 &eeprom_data);
Janusz Wolak13a87c12015-09-28 23:40:19 +02005354 if (ret_val)
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005355 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005357 if ((eeprom_data != EEPROM_RESERVED_WORD) &&
5358 (eeprom_data & EEPROM_PHY_CLASS_A)) {
5359 ret_val =
5360 e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT,
5361 0x000B);
5362 if (ret_val)
5363 return ret_val;
5364 ret_val =
5365 e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL,
5366 0x8104);
5367 if (ret_val)
5368 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005370 hw->phy_reset_disable = false;
5371 }
5372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005374 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375}
5376
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005377/**
5378 * e1000_set_d3_lplu_state - set d3 link power state
5379 * @hw: Struct containing variables accessed by shared code
5380 * @active: true to enable lplu false to disable lplu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 *
5382 * This function sets the lplu state according to the active flag. When
5383 * activating lplu this function also disables smart speed and vise versa.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005384 * lplu will not be activated unless the device autonegotiation advertisement
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385 * meets standards of either 10 or 10/100 or 10/100/1000 at all duplexes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 *
5387 * returns: - E1000_ERR_PHY if fail to read/write the PHY
5388 * E1000_SUCCESS at any other case.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005389 */
Joe Perches64798842008-07-11 15:17:02 -07005390static s32 e1000_set_d3_lplu_state(struct e1000_hw *hw, bool active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005392 s32 ret_val;
5393 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005395 if (hw->phy_type != e1000_phy_igp)
5396 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005398 /* During driver activity LPLU should not be used or it will attain link
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00005399 * from the lowest speeds starting from 10Mbps. The capability is used
5400 * for Dx transitions and states
5401 */
Janusz Wolak13a87c12015-09-28 23:40:19 +02005402 if (hw->mac_type == e1000_82541_rev_2 ||
5403 hw->mac_type == e1000_82547_rev_2) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005404 ret_val =
5405 e1000_read_phy_reg(hw, IGP01E1000_GMII_FIFO, &phy_data);
5406 if (ret_val)
5407 return ret_val;
5408 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005409
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005410 if (!active) {
5411 if (hw->mac_type == e1000_82541_rev_2 ||
5412 hw->mac_type == e1000_82547_rev_2) {
5413 phy_data &= ~IGP01E1000_GMII_FLEX_SPD;
5414 ret_val =
5415 e1000_write_phy_reg(hw, IGP01E1000_GMII_FIFO,
5416 phy_data);
5417 if (ret_val)
5418 return ret_val;
5419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Jeff Kirsher6cfbd972013-02-09 12:49:21 +00005421 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
5422 * during Dx states where the power conservation is most
5423 * important. During driver activity we should enable
5424 * SmartSpeed, so performance is maintained.
5425 */
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005426 if (hw->smart_speed == e1000_smart_speed_on) {
5427 ret_val =
5428 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
5429 &phy_data);
5430 if (ret_val)
5431 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005433 phy_data |= IGP01E1000_PSCFR_SMART_SPEED;
5434 ret_val =
5435 e1000_write_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
5436 phy_data);
5437 if (ret_val)
5438 return ret_val;
5439 } else if (hw->smart_speed == e1000_smart_speed_off) {
5440 ret_val =
5441 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
5442 &phy_data);
5443 if (ret_val)
5444 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005446 phy_data &= ~IGP01E1000_PSCFR_SMART_SPEED;
5447 ret_val =
5448 e1000_write_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
5449 phy_data);
5450 if (ret_val)
5451 return ret_val;
5452 }
Janusz Wolak13a87c12015-09-28 23:40:19 +02005453 } else if ((hw->autoneg_advertised == AUTONEG_ADVERTISE_SPEED_DEFAULT) ||
5454 (hw->autoneg_advertised == AUTONEG_ADVERTISE_10_ALL) ||
5455 (hw->autoneg_advertised == AUTONEG_ADVERTISE_10_100_ALL)) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005456 if (hw->mac_type == e1000_82541_rev_2 ||
5457 hw->mac_type == e1000_82547_rev_2) {
5458 phy_data |= IGP01E1000_GMII_FLEX_SPD;
5459 ret_val =
5460 e1000_write_phy_reg(hw, IGP01E1000_GMII_FIFO,
5461 phy_data);
5462 if (ret_val)
5463 return ret_val;
5464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005466 /* When LPLU is enabled we should disable SmartSpeed */
5467 ret_val =
5468 e1000_read_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
5469 &phy_data);
5470 if (ret_val)
5471 return ret_val;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005472
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005473 phy_data &= ~IGP01E1000_PSCFR_SMART_SPEED;
5474 ret_val =
5475 e1000_write_phy_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
5476 phy_data);
5477 if (ret_val)
5478 return ret_val;
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005479 }
5480 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481}
5482
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005483/**
5484 * e1000_set_vco_speed
5485 * @hw: Struct containing variables accessed by shared code
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 *
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005487 * Change VCO speed register to improve Bit Error Rate performance of SERDES.
5488 */
Joe Perches64798842008-07-11 15:17:02 -07005489static s32 e1000_set_vco_speed(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005491 s32 ret_val;
5492 u16 default_page = 0;
5493 u16 phy_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005495 switch (hw->mac_type) {
5496 case e1000_82545_rev_3:
5497 case e1000_82546_rev_3:
5498 break;
5499 default:
5500 return E1000_SUCCESS;
5501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005503 /* Set PHY register 30, page 5, bit 8 to 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005505 ret_val =
5506 e1000_read_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, &default_page);
5507 if (ret_val)
5508 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005510 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, 0x0005);
5511 if (ret_val)
5512 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005514 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, &phy_data);
5515 if (ret_val)
5516 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005518 phy_data &= ~M88E1000_PHY_VCO_REG_BIT8;
5519 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, phy_data);
5520 if (ret_val)
5521 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005523 /* Set PHY register 30, page 4, bit 11 to 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005525 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, 0x0004);
5526 if (ret_val)
5527 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005529 ret_val = e1000_read_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, &phy_data);
5530 if (ret_val)
5531 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005533 phy_data |= M88E1000_PHY_VCO_REG_BIT11;
5534 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, phy_data);
5535 if (ret_val)
5536 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005538 ret_val =
5539 e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, default_page);
5540 if (ret_val)
5541 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005543 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544}
5545
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005546/**
5547 * e1000_enable_mng_pass_thru - check for bmc pass through
5548 * @hw: Struct containing variables accessed by shared code
5549 *
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005550 * Verifies the hardware needs to allow ARPs to be processed by the host
Joe Perchesc3033b02008-03-21 11:06:25 -07005551 * returns: - true/false
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005552 */
Joe Perches64798842008-07-11 15:17:02 -07005553u32 e1000_enable_mng_pass_thru(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005554{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005555 u32 manc;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005556
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005557 if (hw->asf_firmware_present) {
5558 manc = er32(MANC);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005559
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005560 if (!(manc & E1000_MANC_RCV_TCO_EN) ||
5561 !(manc & E1000_MANC_EN_MAC_ADDR_FILTER))
5562 return false;
5563 if ((manc & E1000_MANC_SMBUS_EN) && !(manc & E1000_MANC_ASF_EN))
5564 return true;
5565 }
5566 return false;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005567}
5568
Joe Perches64798842008-07-11 15:17:02 -07005569static s32 e1000_polarity_reversal_workaround(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005571 s32 ret_val;
5572 u16 mii_status_reg;
5573 u16 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005575 /* Polarity reversal workaround for forced 10F/10H links. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005577 /* Disable the transmitter on the PHY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005579 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, 0x0019);
5580 if (ret_val)
5581 return ret_val;
5582 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, 0xFFFF);
5583 if (ret_val)
5584 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005586 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, 0x0000);
5587 if (ret_val)
5588 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005590 /* This loop will early-out if the NO link condition has been met. */
5591 for (i = PHY_FORCE_TIME; i > 0; i--) {
5592 /* Read the MII Status Register and wait for Link Status bit
5593 * to be clear.
5594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005596 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
5597 if (ret_val)
5598 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005600 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
5601 if (ret_val)
5602 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005604 if ((mii_status_reg & ~MII_SR_LINK_STATUS) == 0)
5605 break;
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005606 msleep(100);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005609 /* Recommended delay time after link has been lost */
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005610 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005612 /* Now we will re-enable th transmitter on the PHY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005614 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, 0x0019);
5615 if (ret_val)
5616 return ret_val;
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005617 msleep(50);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005618 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, 0xFFF0);
5619 if (ret_val)
5620 return ret_val;
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005621 msleep(50);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005622 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, 0xFF00);
5623 if (ret_val)
5624 return ret_val;
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005625 msleep(50);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005626 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_GEN_CONTROL, 0x0000);
5627 if (ret_val)
5628 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005630 ret_val = e1000_write_phy_reg(hw, M88E1000_PHY_PAGE_SELECT, 0x0000);
5631 if (ret_val)
5632 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005634 /* This loop will early-out if the link condition has been met. */
5635 for (i = PHY_FORCE_TIME; i > 0; i--) {
5636 /* Read the MII Status Register and wait for Link Status bit
5637 * to be set.
5638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005640 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
5641 if (ret_val)
5642 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005644 ret_val = e1000_read_phy_reg(hw, PHY_STATUS, &mii_status_reg);
5645 if (ret_val)
5646 return ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005648 if (mii_status_reg & MII_SR_LINK_STATUS)
5649 break;
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005650 msleep(100);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005651 }
5652 return E1000_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653}
5654
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005655/**
5656 * e1000_get_auto_rd_done
5657 * @hw: Struct containing variables accessed by shared code
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005658 *
5659 * Check for EEPROM Auto Read bit done.
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005660 * returns: - E1000_ERR_RESET if fail to reset MAC
5661 * E1000_SUCCESS at any other case.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005662 */
Joe Perches64798842008-07-11 15:17:02 -07005663static s32 e1000_get_auto_rd_done(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005664{
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005665 msleep(5);
5666 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005667}
5668
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005669/**
5670 * e1000_get_phy_cfg_done
5671 * @hw: Struct containing variables accessed by shared code
5672 *
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005673 * Checks if the PHY configuration is done
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005674 * returns: - E1000_ERR_RESET if fail to reset MAC
5675 * E1000_SUCCESS at any other case.
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005676 */
Joe Perches64798842008-07-11 15:17:02 -07005677static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005678{
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +00005679 msleep(10);
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07005680 return E1000_SUCCESS;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005681}