blob: 44fb432f3c108c15587ee14f6f640a01142a58b6 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Auke Kokbc7f75f2007-09-17 12:30:59 -070029#include "e1000.h"
30
31static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw);
32static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw);
33static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active);
34static s32 e1000_wait_autoneg(struct e1000_hw *hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -070035static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +000036 u16 *data, bool read, bool page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +000037static u32 e1000_get_phy_addr_for_hv_page(u32 page);
38static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
Bruce Allan1f96012d2013-01-05 03:06:54 +000039 u16 *data, bool read);
Auke Kokbc7f75f2007-09-17 12:30:59 -070040
41/* Cable length tables */
Bruce Allan64806412010-12-11 05:53:42 +000042static const u16 e1000_m88_cable_length_table[] = {
43 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED };
Bruce Allaneb656d42009-12-01 15:47:02 +000044#define M88E1000_CABLE_LENGTH_TABLE_SIZE \
45 ARRAY_SIZE(e1000_m88_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070046
Bruce Allan64806412010-12-11 05:53:42 +000047static const u16 e1000_igp_2_cable_length_table[] = {
48 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, 0, 0, 0, 3,
49 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, 6, 10, 14, 18, 22,
50 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, 21, 26, 31, 35, 40,
51 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, 40, 45, 51, 56, 61,
52 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, 60, 66, 72, 77, 82,
53 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, 83, 89, 95,
54 100, 105, 109, 113, 116, 119, 122, 124, 104, 109, 114, 118, 121,
55 124};
Auke Kokbc7f75f2007-09-17 12:30:59 -070056#define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +020057 ARRAY_SIZE(e1000_igp_2_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070058
Bruce Allana4f58f52009-06-02 11:29:18 +000059#define BM_PHY_REG_PAGE(offset) \
60 ((u16)(((offset) >> PHY_PAGE_SHIFT) & 0xFFFF))
61#define BM_PHY_REG_NUM(offset) \
62 ((u16)(((offset) & MAX_PHY_REG_ADDRESS) |\
63 (((offset) >> (PHY_UPPER_SHIFT - PHY_PAGE_SHIFT)) &\
64 ~MAX_PHY_REG_ADDRESS)))
65
66#define HV_INTC_FC_PAGE_START 768
67#define I82578_ADDR_REG 29
68#define I82577_ADDR_REG 16
69#define I82577_CFG_REG 22
70#define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15)
71#define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */
72#define I82577_CTRL_REG 23
Bruce Allana4f58f52009-06-02 11:29:18 +000073
74/* 82577 specific PHY registers */
75#define I82577_PHY_CTRL_2 18
76#define I82577_PHY_STATUS_2 26
77#define I82577_PHY_DIAG_STATUS 31
78
79/* I82577 PHY Status 2 */
80#define I82577_PHY_STATUS2_REV_POLARITY 0x0400
81#define I82577_PHY_STATUS2_MDIX 0x0800
82#define I82577_PHY_STATUS2_SPEED_MASK 0x0300
83#define I82577_PHY_STATUS2_SPEED_1000MBPS 0x0200
84
85/* I82577 PHY Control 2 */
Bruce W Allane86fd892012-07-26 02:30:59 +000086#define I82577_PHY_CTRL2_MANUAL_MDIX 0x0200
87#define I82577_PHY_CTRL2_AUTO_MDI_MDIX 0x0400
88#define I82577_PHY_CTRL2_MDIX_CFG_MASK 0x0600
Bruce Allana4f58f52009-06-02 11:29:18 +000089
90/* I82577 PHY Diagnostics Status */
91#define I82577_DSTATUS_CABLE_LENGTH 0x03FC
92#define I82577_DSTATUS_CABLE_LENGTH_SHIFT 2
93
94/* BM PHY Copper Specific Control 1 */
95#define BM_CS_CTRL1 16
96
Bruce Allana4f58f52009-06-02 11:29:18 +000097#define HV_MUX_DATA_CTRL PHY_REG(776, 16)
98#define HV_MUX_DATA_CTRL_GEN_TO_MAC 0x0400
99#define HV_MUX_DATA_CTRL_FORCE_SPEED 0x0004
100
Auke Kokbc7f75f2007-09-17 12:30:59 -0700101/**
102 * e1000e_check_reset_block_generic - Check if PHY reset is blocked
103 * @hw: pointer to the HW structure
104 *
105 * Read the PHY management control register and check whether a PHY reset
106 * is blocked. If a reset is not blocked return 0, otherwise
107 * return E1000_BLK_PHY_RESET (12).
108 **/
109s32 e1000e_check_reset_block_generic(struct e1000_hw *hw)
110{
111 u32 manc;
112
113 manc = er32(MANC);
114
115 return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ?
116 E1000_BLK_PHY_RESET : 0;
117}
118
119/**
120 * e1000e_get_phy_id - Retrieve the PHY ID and revision
121 * @hw: pointer to the HW structure
122 *
123 * Reads the PHY registers and stores the PHY ID and possibly the PHY
124 * revision in the hardware structure.
125 **/
126s32 e1000e_get_phy_id(struct e1000_hw *hw)
127{
128 struct e1000_phy_info *phy = &hw->phy;
Bruce Allana4f58f52009-06-02 11:29:18 +0000129 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700130 u16 phy_id;
Bruce Allana4f58f52009-06-02 11:29:18 +0000131 u16 retry_count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132
Bruce Allan668018d2012-01-31 07:02:56 +0000133 if (!phy->ops.read_reg)
Bruce Allan5015e532012-02-08 02:55:56 +0000134 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700135
Bruce Allana4f58f52009-06-02 11:29:18 +0000136 while (retry_count < 2) {
137 ret_val = e1e_rphy(hw, PHY_ID1, &phy_id);
138 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000139 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700140
Bruce Allana4f58f52009-06-02 11:29:18 +0000141 phy->id = (u32)(phy_id << 16);
142 udelay(20);
143 ret_val = e1e_rphy(hw, PHY_ID2, &phy_id);
144 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000145 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700146
Bruce Allana4f58f52009-06-02 11:29:18 +0000147 phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
148 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
149
150 if (phy->id != 0 && phy->id != PHY_REVISION_MASK)
Bruce Allan5015e532012-02-08 02:55:56 +0000151 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +0000152
Bruce Allana4f58f52009-06-02 11:29:18 +0000153 retry_count++;
154 }
Bruce Allan5015e532012-02-08 02:55:56 +0000155
156 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700157}
158
159/**
160 * e1000e_phy_reset_dsp - Reset PHY DSP
161 * @hw: pointer to the HW structure
162 *
163 * Reset the digital signal processor.
164 **/
165s32 e1000e_phy_reset_dsp(struct e1000_hw *hw)
166{
167 s32 ret_val;
168
169 ret_val = e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
170 if (ret_val)
171 return ret_val;
172
173 return e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0);
174}
175
176/**
David Graham2d9498f2008-04-23 11:09:14 -0700177 * e1000e_read_phy_reg_mdic - Read MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700178 * @hw: pointer to the HW structure
179 * @offset: register offset to be read
180 * @data: pointer to the read data
181 *
Auke Kok489815c2008-02-21 15:11:07 -0800182 * Reads the MDI control register in the PHY at offset and stores the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700183 * information read to data.
184 **/
David Graham2d9498f2008-04-23 11:09:14 -0700185s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700186{
187 struct e1000_phy_info *phy = &hw->phy;
188 u32 i, mdic = 0;
189
190 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000191 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700192 return -E1000_ERR_PARAM;
193 }
194
Bruce Allane921eb12012-11-28 09:28:37 +0000195 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700196 * Control register. The MAC will take care of interfacing with the
197 * PHY to retrieve the desired data.
198 */
199 mdic = ((offset << E1000_MDIC_REG_SHIFT) |
200 (phy->addr << E1000_MDIC_PHY_SHIFT) |
201 (E1000_MDIC_OP_READ));
202
203 ew32(MDIC, mdic);
204
Bruce Allane921eb12012-11-28 09:28:37 +0000205 /* Poll the ready bit to see if the MDI read completed
Bruce Allanad680762008-03-28 09:15:03 -0700206 * Increasing the time out as testing showed failures with
207 * the lower time out
208 */
David Graham2d9498f2008-04-23 11:09:14 -0700209 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700210 udelay(50);
211 mdic = er32(MDIC);
212 if (mdic & E1000_MDIC_READY)
213 break;
214 }
215 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000216 e_dbg("MDI Read did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700217 return -E1000_ERR_PHY;
218 }
219 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000220 e_dbg("MDI Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700221 return -E1000_ERR_PHY;
222 }
223 *data = (u16) mdic;
224
Bruce Allane921eb12012-11-28 09:28:37 +0000225 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000226 * reading duplicate data in the next MDIC transaction.
227 */
228 if (hw->mac.type == e1000_pch2lan)
229 udelay(100);
230
Auke Kokbc7f75f2007-09-17 12:30:59 -0700231 return 0;
232}
233
234/**
David Graham2d9498f2008-04-23 11:09:14 -0700235 * e1000e_write_phy_reg_mdic - Write MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700236 * @hw: pointer to the HW structure
237 * @offset: register offset to write to
238 * @data: data to write to register at offset
239 *
240 * Writes data to MDI control register in the PHY at offset.
241 **/
David Graham2d9498f2008-04-23 11:09:14 -0700242s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700243{
244 struct e1000_phy_info *phy = &hw->phy;
245 u32 i, mdic = 0;
246
247 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000248 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700249 return -E1000_ERR_PARAM;
250 }
251
Bruce Allane921eb12012-11-28 09:28:37 +0000252 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700253 * Control register. The MAC will take care of interfacing with the
254 * PHY to retrieve the desired data.
255 */
256 mdic = (((u32)data) |
257 (offset << E1000_MDIC_REG_SHIFT) |
258 (phy->addr << E1000_MDIC_PHY_SHIFT) |
259 (E1000_MDIC_OP_WRITE));
260
261 ew32(MDIC, mdic);
262
Bruce Allane921eb12012-11-28 09:28:37 +0000263 /* Poll the ready bit to see if the MDI read completed
David Graham2d9498f2008-04-23 11:09:14 -0700264 * Increasing the time out as testing showed failures with
265 * the lower time out
266 */
267 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
268 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700269 mdic = er32(MDIC);
270 if (mdic & E1000_MDIC_READY)
271 break;
272 }
273 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000274 e_dbg("MDI Write did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700275 return -E1000_ERR_PHY;
276 }
David Graham2d9498f2008-04-23 11:09:14 -0700277 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000278 e_dbg("MDI Error\n");
David Graham2d9498f2008-04-23 11:09:14 -0700279 return -E1000_ERR_PHY;
280 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700281
Bruce Allane921eb12012-11-28 09:28:37 +0000282 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000283 * reading duplicate data in the next MDIC transaction.
284 */
285 if (hw->mac.type == e1000_pch2lan)
286 udelay(100);
287
Auke Kokbc7f75f2007-09-17 12:30:59 -0700288 return 0;
289}
290
291/**
292 * e1000e_read_phy_reg_m88 - Read m88 PHY register
293 * @hw: pointer to the HW structure
294 * @offset: register offset to be read
295 * @data: pointer to the read data
296 *
297 * Acquires semaphore, if necessary, then reads the PHY register at offset
298 * and storing the retrieved information in data. Release any acquired
299 * semaphores before exiting.
300 **/
301s32 e1000e_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data)
302{
303 s32 ret_val;
304
Bruce Allan94d81862009-11-20 23:25:26 +0000305 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700306 if (ret_val)
307 return ret_val;
308
David Graham2d9498f2008-04-23 11:09:14 -0700309 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
310 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700311
Bruce Allan94d81862009-11-20 23:25:26 +0000312 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700313
314 return ret_val;
315}
316
317/**
318 * e1000e_write_phy_reg_m88 - Write m88 PHY register
319 * @hw: pointer to the HW structure
320 * @offset: register offset to write to
321 * @data: data to write at register offset
322 *
323 * Acquires semaphore, if necessary, then writes the data to PHY register
324 * at the offset. Release any acquired semaphores before exiting.
325 **/
326s32 e1000e_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data)
327{
328 s32 ret_val;
329
Bruce Allan94d81862009-11-20 23:25:26 +0000330 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700331 if (ret_val)
332 return ret_val;
333
David Graham2d9498f2008-04-23 11:09:14 -0700334 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
335 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700336
Bruce Allan94d81862009-11-20 23:25:26 +0000337 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700338
339 return ret_val;
340}
341
342/**
Bruce Allan2b6b1682011-05-13 07:20:09 +0000343 * e1000_set_page_igp - Set page as on IGP-like PHY(s)
344 * @hw: pointer to the HW structure
345 * @page: page to set (shifted left when necessary)
346 *
347 * Sets PHY page required for PHY register access. Assumes semaphore is
348 * already acquired. Note, this function sets phy.addr to 1 so the caller
349 * must set it appropriately (if necessary) after this function returns.
350 **/
351s32 e1000_set_page_igp(struct e1000_hw *hw, u16 page)
352{
353 e_dbg("Setting page 0x%x\n", page);
354
355 hw->phy.addr = 1;
356
357 return e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, page);
358}
359
360/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000361 * __e1000e_read_phy_reg_igp - Read igp PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700362 * @hw: pointer to the HW structure
363 * @offset: register offset to be read
364 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000365 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700366 *
367 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000368 * and stores the retrieved information in data. Release any acquired
Auke Kokbc7f75f2007-09-17 12:30:59 -0700369 * semaphores before exiting.
370 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000371static s32 __e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data,
372 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700373{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000374 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700375
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000376 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000377 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000378 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000379
Bruce Allan94d81862009-11-20 23:25:26 +0000380 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000381 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000382 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000383 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700384
Bruce Allan5015e532012-02-08 02:55:56 +0000385 if (offset > MAX_PHY_MULTI_PAGE_REG)
David Graham2d9498f2008-04-23 11:09:14 -0700386 ret_val = e1000e_write_phy_reg_mdic(hw,
387 IGP01E1000_PHY_PAGE_SELECT,
388 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000389 if (!ret_val)
390 ret_val = e1000e_read_phy_reg_mdic(hw,
391 MAX_PHY_REG_ADDRESS & offset,
392 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000393 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000394 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +0000395
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000396 return ret_val;
397}
Auke Kokbc7f75f2007-09-17 12:30:59 -0700398
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000399/**
400 * e1000e_read_phy_reg_igp - Read igp PHY register
401 * @hw: pointer to the HW structure
402 * @offset: register offset to be read
403 * @data: pointer to the read data
404 *
405 * Acquires semaphore then reads the PHY register at offset and stores the
406 * retrieved information in data.
407 * Release the acquired semaphore before exiting.
408 **/
409s32 e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
410{
411 return __e1000e_read_phy_reg_igp(hw, offset, data, false);
412}
413
414/**
415 * e1000e_read_phy_reg_igp_locked - Read igp PHY register
416 * @hw: pointer to the HW structure
417 * @offset: register offset to be read
418 * @data: pointer to the read data
419 *
420 * Reads the PHY register at offset and stores the retrieved information
421 * in data. Assumes semaphore already acquired.
422 **/
423s32 e1000e_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data)
424{
425 return __e1000e_read_phy_reg_igp(hw, offset, data, true);
426}
427
428/**
429 * e1000e_write_phy_reg_igp - Write igp PHY register
430 * @hw: pointer to the HW structure
431 * @offset: register offset to write to
432 * @data: data to write at register offset
433 * @locked: semaphore has already been acquired or not
434 *
435 * Acquires semaphore, if necessary, then writes the data to PHY register
436 * at the offset. Release any acquired semaphores before exiting.
437 **/
438static s32 __e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data,
439 bool locked)
440{
441 s32 ret_val = 0;
442
443 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000444 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000445 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000446
Bruce Allan94d81862009-11-20 23:25:26 +0000447 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000448 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000449 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000450 }
451
Bruce Allan5015e532012-02-08 02:55:56 +0000452 if (offset > MAX_PHY_MULTI_PAGE_REG)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000453 ret_val = e1000e_write_phy_reg_mdic(hw,
454 IGP01E1000_PHY_PAGE_SELECT,
455 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000456 if (!ret_val)
457 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS &
458 offset,
459 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000460 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000461 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000462
Auke Kokbc7f75f2007-09-17 12:30:59 -0700463 return ret_val;
464}
465
466/**
467 * e1000e_write_phy_reg_igp - Write igp PHY register
468 * @hw: pointer to the HW structure
469 * @offset: register offset to write to
470 * @data: data to write at register offset
471 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000472 * Acquires semaphore then writes the data to PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700473 * at the offset. Release any acquired semaphores before exiting.
474 **/
475s32 e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
476{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000477 return __e1000e_write_phy_reg_igp(hw, offset, data, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700478}
479
480/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000481 * e1000e_write_phy_reg_igp_locked - Write igp PHY register
482 * @hw: pointer to the HW structure
483 * @offset: register offset to write to
484 * @data: data to write at register offset
485 *
486 * Writes the data to PHY register at the offset.
487 * Assumes semaphore already acquired.
488 **/
489s32 e1000e_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data)
490{
491 return __e1000e_write_phy_reg_igp(hw, offset, data, true);
492}
493
494/**
495 * __e1000_read_kmrn_reg - Read kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700496 * @hw: pointer to the HW structure
497 * @offset: register offset to be read
498 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000499 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700500 *
501 * Acquires semaphore, if necessary. Then reads the PHY register at offset
502 * using the kumeran interface. The information retrieved is stored in data.
503 * Release any acquired semaphores before exiting.
504 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000505static s32 __e1000_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data,
506 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700507{
508 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700509
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000510 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000511 s32 ret_val = 0;
512
Bruce Allan668018d2012-01-31 07:02:56 +0000513 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000514 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000515
Bruce Allan94d81862009-11-20 23:25:26 +0000516 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000517 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000518 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000519 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700520
521 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
522 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
523 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000524 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700525
526 udelay(2);
527
528 kmrnctrlsta = er32(KMRNCTRLSTA);
529 *data = (u16)kmrnctrlsta;
530
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000531 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000532 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700533
Bruce Allan5015e532012-02-08 02:55:56 +0000534 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700535}
536
537/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000538 * e1000e_read_kmrn_reg - Read kumeran register
539 * @hw: pointer to the HW structure
540 * @offset: register offset to be read
541 * @data: pointer to the read data
542 *
543 * Acquires semaphore then reads the PHY register at offset using the
544 * kumeran interface. The information retrieved is stored in data.
545 * Release the acquired semaphore before exiting.
546 **/
547s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data)
548{
549 return __e1000_read_kmrn_reg(hw, offset, data, false);
550}
551
552/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000553 * e1000e_read_kmrn_reg_locked - Read kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000554 * @hw: pointer to the HW structure
555 * @offset: register offset to be read
556 * @data: pointer to the read data
557 *
558 * Reads the PHY register at offset using the kumeran interface. The
559 * information retrieved is stored in data.
560 * Assumes semaphore already acquired.
561 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000562s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000563{
564 return __e1000_read_kmrn_reg(hw, offset, data, true);
565}
566
567/**
568 * __e1000_write_kmrn_reg - Write kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700569 * @hw: pointer to the HW structure
570 * @offset: register offset to write to
571 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000572 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700573 *
574 * Acquires semaphore, if necessary. Then write the data to PHY register
575 * at the offset using the kumeran interface. Release any acquired semaphores
576 * before exiting.
577 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000578static s32 __e1000_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data,
579 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700580{
581 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700582
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000583 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000584 s32 ret_val = 0;
585
Bruce Allan668018d2012-01-31 07:02:56 +0000586 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000587 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000588
Bruce Allan94d81862009-11-20 23:25:26 +0000589 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000590 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000591 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000592 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700593
594 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
595 E1000_KMRNCTRLSTA_OFFSET) | data;
596 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000597 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700598
599 udelay(2);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700600
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000601 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000602 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000603
Bruce Allan5015e532012-02-08 02:55:56 +0000604 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700605}
606
607/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000608 * e1000e_write_kmrn_reg - Write kumeran register
609 * @hw: pointer to the HW structure
610 * @offset: register offset to write to
611 * @data: data to write at register offset
612 *
613 * Acquires semaphore then writes the data to the PHY register at the offset
614 * using the kumeran interface. Release the acquired semaphore before exiting.
615 **/
616s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data)
617{
618 return __e1000_write_kmrn_reg(hw, offset, data, false);
619}
620
621/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000622 * e1000e_write_kmrn_reg_locked - Write kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000623 * @hw: pointer to the HW structure
624 * @offset: register offset to write to
625 * @data: data to write at register offset
626 *
627 * Write the data to PHY register at the offset using the kumeran interface.
628 * Assumes semaphore already acquired.
629 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000630s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000631{
632 return __e1000_write_kmrn_reg(hw, offset, data, true);
633}
634
635/**
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000636 * e1000_set_master_slave_mode - Setup PHY for Master/slave mode
637 * @hw: pointer to the HW structure
638 *
639 * Sets up Master/slave mode
640 **/
641static s32 e1000_set_master_slave_mode(struct e1000_hw *hw)
642{
643 s32 ret_val;
644 u16 phy_data;
645
646 /* Resolve Master/Slave mode */
647 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &phy_data);
648 if (ret_val)
649 return ret_val;
650
651 /* load defaults for future use */
652 hw->phy.original_ms_type = (phy_data & CR_1000T_MS_ENABLE) ?
653 ((phy_data & CR_1000T_MS_VALUE) ?
654 e1000_ms_force_master : e1000_ms_force_slave) : e1000_ms_auto;
655
656 switch (hw->phy.ms_type) {
657 case e1000_ms_force_master:
658 phy_data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
659 break;
660 case e1000_ms_force_slave:
661 phy_data |= CR_1000T_MS_ENABLE;
662 phy_data &= ~(CR_1000T_MS_VALUE);
663 break;
664 case e1000_ms_auto:
665 phy_data &= ~CR_1000T_MS_ENABLE;
666 /* fall-through */
667 default:
668 break;
669 }
670
671 return e1e_wphy(hw, PHY_1000T_CTRL, phy_data);
672}
673
674/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000675 * e1000_copper_link_setup_82577 - Setup 82577 PHY for copper link
676 * @hw: pointer to the HW structure
677 *
678 * Sets up Carrier-sense on Transmit and downshift values.
679 **/
680s32 e1000_copper_link_setup_82577(struct e1000_hw *hw)
681{
Bruce Allana4f58f52009-06-02 11:29:18 +0000682 s32 ret_val;
683 u16 phy_data;
684
Bruce Allanaf667a22010-12-31 06:10:01 +0000685 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Bruce Allan482fed82011-01-06 14:29:49 +0000686 ret_val = e1e_rphy(hw, I82577_CFG_REG, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000687 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000688 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +0000689
690 phy_data |= I82577_CFG_ASSERT_CRS_ON_TX;
691
692 /* Enable downshift */
693 phy_data |= I82577_CFG_ENABLE_DOWNSHIFT;
694
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000695 ret_val = e1e_wphy(hw, I82577_CFG_REG, phy_data);
696 if (ret_val)
697 return ret_val;
698
Bruce W Allane86fd892012-07-26 02:30:59 +0000699 /* Set MDI/MDIX mode */
700 ret_val = e1e_rphy(hw, I82577_PHY_CTRL_2, &phy_data);
701 if (ret_val)
702 return ret_val;
703 phy_data &= ~I82577_PHY_CTRL2_MDIX_CFG_MASK;
Bruce Allane921eb12012-11-28 09:28:37 +0000704 /* Options:
Bruce W Allane86fd892012-07-26 02:30:59 +0000705 * 0 - Auto (default)
706 * 1 - MDI mode
707 * 2 - MDI-X mode
708 */
709 switch (hw->phy.mdix) {
710 case 1:
711 break;
712 case 2:
713 phy_data |= I82577_PHY_CTRL2_MANUAL_MDIX;
714 break;
715 case 0:
716 default:
717 phy_data |= I82577_PHY_CTRL2_AUTO_MDI_MDIX;
718 break;
719 }
720 ret_val = e1e_wphy(hw, I82577_PHY_CTRL_2, phy_data);
721 if (ret_val)
722 return ret_val;
723
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000724 return e1000_set_master_slave_mode(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000725}
726
727/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700728 * e1000e_copper_link_setup_m88 - Setup m88 PHY's for copper link
729 * @hw: pointer to the HW structure
730 *
731 * Sets up MDI/MDI-X and polarity for m88 PHY's. If necessary, transmit clock
732 * and downshift values are set also.
733 **/
734s32 e1000e_copper_link_setup_m88(struct e1000_hw *hw)
735{
736 struct e1000_phy_info *phy = &hw->phy;
737 s32 ret_val;
738 u16 phy_data;
739
Bruce Allanad680762008-03-28 09:15:03 -0700740 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700741 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
742 if (ret_val)
743 return ret_val;
744
Bruce Allana4f58f52009-06-02 11:29:18 +0000745 /* For BM PHY this bit is downshift enable */
746 if (phy->type != e1000_phy_bm)
David Graham2d9498f2008-04-23 11:09:14 -0700747 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700748
Bruce Allane921eb12012-11-28 09:28:37 +0000749 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700750 * MDI/MDI-X = 0 (default)
751 * 0 - Auto for all speeds
752 * 1 - MDI mode
753 * 2 - MDI-X mode
754 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
755 */
756 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
757
758 switch (phy->mdix) {
759 case 1:
760 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
761 break;
762 case 2:
763 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
764 break;
765 case 3:
766 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
767 break;
768 case 0:
769 default:
770 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
771 break;
772 }
773
Bruce Allane921eb12012-11-28 09:28:37 +0000774 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700775 * disable_polarity_correction = 0 (default)
776 * Automatic Correction for Reversed Cable Polarity
777 * 0 - Disabled
778 * 1 - Enabled
779 */
780 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
Bruce Allan04499ec2012-04-13 00:08:31 +0000781 if (phy->disable_polarity_correction)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700782 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
783
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700784 /* Enable downshift on BM (disabled by default) */
Matthew Vick885fe7b2012-04-25 07:25:18 +0000785 if (phy->type == e1000_phy_bm) {
786 /* For 82574/82583, first disable then enable downshift */
787 if (phy->id == BME1000_E_PHY_ID_R2) {
788 phy_data &= ~BME1000_PSCR_ENABLE_DOWNSHIFT;
789 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL,
790 phy_data);
791 if (ret_val)
792 return ret_val;
793 /* Commit the changes. */
794 ret_val = e1000e_commit_phy(hw);
795 if (ret_val) {
796 e_dbg("Error committing the PHY changes\n");
797 return ret_val;
798 }
799 }
800
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700801 phy_data |= BME1000_PSCR_ENABLE_DOWNSHIFT;
Matthew Vick885fe7b2012-04-25 07:25:18 +0000802 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700803
Auke Kokbc7f75f2007-09-17 12:30:59 -0700804 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
805 if (ret_val)
806 return ret_val;
807
Bruce Allan4662e822008-08-26 18:37:06 -0700808 if ((phy->type == e1000_phy_m88) &&
809 (phy->revision < E1000_REVISION_4) &&
810 (phy->id != BME1000_E_PHY_ID_R2)) {
Bruce Allane921eb12012-11-28 09:28:37 +0000811 /* Force TX_CLK in the Extended PHY Specific Control Register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700812 * to 25MHz clock.
813 */
814 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
815 if (ret_val)
816 return ret_val;
817
818 phy_data |= M88E1000_EPSCR_TX_CLK_25;
819
820 if ((phy->revision == 2) &&
821 (phy->id == M88E1111_I_PHY_ID)) {
822 /* 82573L PHY - set the downshift counter to 5x. */
823 phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
824 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
825 } else {
826 /* Configure Master and Slave downshift values */
827 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
828 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
829 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
830 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
831 }
832 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
833 if (ret_val)
834 return ret_val;
835 }
836
Bruce Allan4662e822008-08-26 18:37:06 -0700837 if ((phy->type == e1000_phy_bm) && (phy->id == BME1000_E_PHY_ID_R2)) {
838 /* Set PHY page 0, register 29 to 0x0003 */
839 ret_val = e1e_wphy(hw, 29, 0x0003);
840 if (ret_val)
841 return ret_val;
842
843 /* Set PHY page 0, register 30 to 0x0000 */
844 ret_val = e1e_wphy(hw, 30, 0x0000);
845 if (ret_val)
846 return ret_val;
847 }
848
Auke Kokbc7f75f2007-09-17 12:30:59 -0700849 /* Commit the changes. */
850 ret_val = e1000e_commit_phy(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000851 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000852 e_dbg("Error committing the PHY changes\n");
Bruce Allana4f58f52009-06-02 11:29:18 +0000853 return ret_val;
854 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700855
Bruce Allana4f58f52009-06-02 11:29:18 +0000856 if (phy->type == e1000_phy_82578) {
Bruce Allan482fed82011-01-06 14:29:49 +0000857 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000858 if (ret_val)
859 return ret_val;
860
861 /* 82578 PHY - set the downshift count to 1x. */
862 phy_data |= I82578_EPSCR_DOWNSHIFT_ENABLE;
863 phy_data &= ~I82578_EPSCR_DOWNSHIFT_COUNTER_MASK;
Bruce Allan482fed82011-01-06 14:29:49 +0000864 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000865 if (ret_val)
866 return ret_val;
867 }
868
869 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700870}
871
872/**
873 * e1000e_copper_link_setup_igp - Setup igp PHY's for copper link
874 * @hw: pointer to the HW structure
875 *
876 * Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for
877 * igp PHY's.
878 **/
879s32 e1000e_copper_link_setup_igp(struct e1000_hw *hw)
880{
881 struct e1000_phy_info *phy = &hw->phy;
882 s32 ret_val;
883 u16 data;
884
885 ret_val = e1000_phy_hw_reset(hw);
886 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000887 e_dbg("Error resetting the PHY.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700888 return ret_val;
889 }
890
Bruce Allane921eb12012-11-28 09:28:37 +0000891 /* Wait 100ms for MAC to configure PHY from NVM settings, to avoid
David Graham2d9498f2008-04-23 11:09:14 -0700892 * timeout issues when LFS is enabled.
893 */
894 msleep(100);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700895
896 /* disable lplu d0 during driver init */
Bruce Allan564ea9b2009-11-20 23:26:44 +0000897 ret_val = e1000_set_d0_lplu_state(hw, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700898 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000899 e_dbg("Error Disabling LPLU D0\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700900 return ret_val;
901 }
902 /* Configure mdi-mdix settings */
903 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &data);
904 if (ret_val)
905 return ret_val;
906
907 data &= ~IGP01E1000_PSCR_AUTO_MDIX;
908
909 switch (phy->mdix) {
910 case 1:
911 data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
912 break;
913 case 2:
914 data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
915 break;
916 case 0:
917 default:
918 data |= IGP01E1000_PSCR_AUTO_MDIX;
919 break;
920 }
921 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, data);
922 if (ret_val)
923 return ret_val;
924
925 /* set auto-master slave resolution settings */
926 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +0000927 /* when autonegotiation advertisement is only 1000Mbps then we
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 * should disable SmartSpeed and enable Auto MasterSlave
Bruce Allanad680762008-03-28 09:15:03 -0700929 * resolution as hardware default.
930 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700931 if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
932 /* Disable SmartSpeed */
933 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700934 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700935 if (ret_val)
936 return ret_val;
937
938 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
939 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700940 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700941 if (ret_val)
942 return ret_val;
943
944 /* Set auto Master/Slave resolution process */
945 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &data);
946 if (ret_val)
947 return ret_val;
948
949 data &= ~CR_1000T_MS_ENABLE;
950 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, data);
951 if (ret_val)
952 return ret_val;
953 }
954
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000955 ret_val = e1000_set_master_slave_mode(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700956 }
957
958 return ret_val;
959}
960
961/**
962 * e1000_phy_setup_autoneg - Configure PHY for auto-negotiation
963 * @hw: pointer to the HW structure
964 *
965 * Reads the MII auto-neg advertisement register and/or the 1000T control
966 * register and if the PHY is already setup for auto-negotiation, then
967 * return successful. Otherwise, setup advertisement and flow control to
968 * the appropriate values for the wanted auto-negotiation.
969 **/
970static s32 e1000_phy_setup_autoneg(struct e1000_hw *hw)
971{
972 struct e1000_phy_info *phy = &hw->phy;
973 s32 ret_val;
974 u16 mii_autoneg_adv_reg;
975 u16 mii_1000t_ctrl_reg = 0;
976
977 phy->autoneg_advertised &= phy->autoneg_mask;
978
979 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
980 ret_val = e1e_rphy(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
981 if (ret_val)
982 return ret_val;
983
984 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
985 /* Read the MII 1000Base-T Control Register (Address 9). */
986 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg);
987 if (ret_val)
988 return ret_val;
989 }
990
Bruce Allane921eb12012-11-28 09:28:37 +0000991 /* Need to parse both autoneg_advertised and fc and set up
Auke Kokbc7f75f2007-09-17 12:30:59 -0700992 * the appropriate PHY registers. First we will parse for
993 * autoneg_advertised software override. Since we can advertise
994 * a plethora of combinations, we need to check each bit
995 * individually.
996 */
997
Bruce Allane921eb12012-11-28 09:28:37 +0000998 /* First we clear all the 10/100 mb speed bits in the Auto-Neg
Auke Kokbc7f75f2007-09-17 12:30:59 -0700999 * Advertisement Register (Address 4) and the 1000 mb speed bits in
1000 * the 1000Base-T Control Register (Address 9).
1001 */
1002 mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS |
1003 NWAY_AR_100TX_HD_CAPS |
1004 NWAY_AR_10T_FD_CAPS |
1005 NWAY_AR_10T_HD_CAPS);
1006 mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS);
1007
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001008 e_dbg("autoneg_advertised %x\n", phy->autoneg_advertised);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001009
1010 /* Do we want to advertise 10 Mb Half Duplex? */
1011 if (phy->autoneg_advertised & ADVERTISE_10_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001012 e_dbg("Advertise 10mb Half duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001013 mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS;
1014 }
1015
1016 /* Do we want to advertise 10 Mb Full Duplex? */
1017 if (phy->autoneg_advertised & ADVERTISE_10_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001018 e_dbg("Advertise 10mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001019 mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS;
1020 }
1021
1022 /* Do we want to advertise 100 Mb Half Duplex? */
1023 if (phy->autoneg_advertised & ADVERTISE_100_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001024 e_dbg("Advertise 100mb Half duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001025 mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS;
1026 }
1027
1028 /* Do we want to advertise 100 Mb Full Duplex? */
1029 if (phy->autoneg_advertised & ADVERTISE_100_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001030 e_dbg("Advertise 100mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001031 mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS;
1032 }
1033
1034 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */
1035 if (phy->autoneg_advertised & ADVERTISE_1000_HALF)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001036 e_dbg("Advertise 1000mb Half duplex request denied!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001037
1038 /* Do we want to advertise 1000 Mb Full Duplex? */
1039 if (phy->autoneg_advertised & ADVERTISE_1000_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001040 e_dbg("Advertise 1000mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001041 mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS;
1042 }
1043
Bruce Allane921eb12012-11-28 09:28:37 +00001044 /* Check for a software override of the flow control settings, and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001045 * setup the PHY advertisement registers accordingly. If
1046 * auto-negotiation is enabled, then software will have to set the
1047 * "PAUSE" bits to the correct value in the Auto-Negotiation
1048 * Advertisement Register (PHY_AUTONEG_ADV) and re-start auto-
1049 * negotiation.
1050 *
1051 * The possible values of the "fc" parameter are:
1052 * 0: Flow control is completely disabled
1053 * 1: Rx flow control is enabled (we can receive pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001054 * but not send pause frames).
Auke Kokbc7f75f2007-09-17 12:30:59 -07001055 * 2: Tx flow control is enabled (we can send pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001056 * but we do not support receiving pause frames).
Bruce Allanad680762008-03-28 09:15:03 -07001057 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001058 * other: No software override. The flow control configuration
Bruce Allan3d3a1672012-02-23 03:13:18 +00001059 * in the EEPROM is used.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001060 */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001061 switch (hw->fc.current_mode) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001062 case e1000_fc_none:
Bruce Allane921eb12012-11-28 09:28:37 +00001063 /* Flow control (Rx & Tx) is completely disabled by a
Auke Kokbc7f75f2007-09-17 12:30:59 -07001064 * software over-ride.
1065 */
1066 mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1067 break;
1068 case e1000_fc_rx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001069 /* Rx Flow control is enabled, and Tx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001070 * disabled, by a software over-ride.
Bruce Allanad680762008-03-28 09:15:03 -07001071 *
1072 * Since there really isn't a way to advertise that we are
1073 * capable of Rx Pause ONLY, we will advertise that we
1074 * support both symmetric and asymmetric Rx PAUSE. Later
Auke Kokbc7f75f2007-09-17 12:30:59 -07001075 * (in e1000e_config_fc_after_link_up) we will disable the
1076 * hw's ability to send PAUSE frames.
1077 */
1078 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1079 break;
1080 case e1000_fc_tx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001081 /* Tx Flow control is enabled, and Rx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001082 * disabled, by a software over-ride.
1083 */
1084 mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR;
1085 mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE;
1086 break;
1087 case e1000_fc_full:
Bruce Allane921eb12012-11-28 09:28:37 +00001088 /* Flow control (both Rx and Tx) is enabled by a software
Auke Kokbc7f75f2007-09-17 12:30:59 -07001089 * over-ride.
1090 */
1091 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1092 break;
1093 default:
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001094 e_dbg("Flow control param set incorrectly\n");
Bruce Allan7eb61d82012-02-08 02:55:03 +00001095 return -E1000_ERR_CONFIG;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001096 }
1097
1098 ret_val = e1e_wphy(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg);
1099 if (ret_val)
1100 return ret_val;
1101
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001102 e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001103
Bruce Allanb1cdfea2010-12-11 05:53:47 +00001104 if (phy->autoneg_mask & ADVERTISE_1000_FULL)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001105 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001106
1107 return ret_val;
1108}
1109
1110/**
1111 * e1000_copper_link_autoneg - Setup/Enable autoneg for copper link
1112 * @hw: pointer to the HW structure
1113 *
1114 * Performs initial bounds checking on autoneg advertisement parameter, then
1115 * configure to advertise the full capability. Setup the PHY to autoneg
1116 * and restart the negotiation process between the link partner. If
Bruce Allanad680762008-03-28 09:15:03 -07001117 * autoneg_wait_to_complete, then wait for autoneg to complete before exiting.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001118 **/
1119static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
1120{
1121 struct e1000_phy_info *phy = &hw->phy;
1122 s32 ret_val;
1123 u16 phy_ctrl;
1124
Bruce Allane921eb12012-11-28 09:28:37 +00001125 /* Perform some bounds checking on the autoneg advertisement
Auke Kokbc7f75f2007-09-17 12:30:59 -07001126 * parameter.
1127 */
1128 phy->autoneg_advertised &= phy->autoneg_mask;
1129
Bruce Allane921eb12012-11-28 09:28:37 +00001130 /* If autoneg_advertised is zero, we assume it was not defaulted
Auke Kokbc7f75f2007-09-17 12:30:59 -07001131 * by the calling code so we set to advertise full capability.
1132 */
Bruce Allan04499ec2012-04-13 00:08:31 +00001133 if (!phy->autoneg_advertised)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001134 phy->autoneg_advertised = phy->autoneg_mask;
1135
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001136 e_dbg("Reconfiguring auto-neg advertisement params\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001137 ret_val = e1000_phy_setup_autoneg(hw);
1138 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001139 e_dbg("Error Setting up Auto-Negotiation\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001140 return ret_val;
1141 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001142 e_dbg("Restarting Auto-Neg\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001143
Bruce Allane921eb12012-11-28 09:28:37 +00001144 /* Restart auto-negotiation by setting the Auto Neg Enable bit and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001145 * the Auto Neg Restart bit in the PHY control register.
1146 */
1147 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl);
1148 if (ret_val)
1149 return ret_val;
1150
1151 phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG);
1152 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl);
1153 if (ret_val)
1154 return ret_val;
1155
Bruce Allane921eb12012-11-28 09:28:37 +00001156 /* Does the user want to wait for Auto-Neg to complete here, or
Auke Kokbc7f75f2007-09-17 12:30:59 -07001157 * check at a later time (for example, callback routine).
1158 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001159 if (phy->autoneg_wait_to_complete) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001160 ret_val = e1000_wait_autoneg(hw);
1161 if (ret_val) {
Bruce Allan434f1392011-12-16 00:46:54 +00001162 e_dbg("Error while waiting for autoneg to complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001163 return ret_val;
1164 }
1165 }
1166
Bruce Allanf92518d2012-02-01 11:16:42 +00001167 hw->mac.get_link_status = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001168
1169 return ret_val;
1170}
1171
1172/**
1173 * e1000e_setup_copper_link - Configure copper link settings
1174 * @hw: pointer to the HW structure
1175 *
1176 * Calls the appropriate function to configure the link for auto-neg or forced
1177 * speed and duplex. Then we check for link, once link is established calls
1178 * to configure collision distance and flow control are called. If link is
1179 * not established, we return -E1000_ERR_PHY (-2).
1180 **/
1181s32 e1000e_setup_copper_link(struct e1000_hw *hw)
1182{
1183 s32 ret_val;
1184 bool link;
1185
1186 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +00001187 /* Setup autoneg and flow control advertisement and perform
Bruce Allanad680762008-03-28 09:15:03 -07001188 * autonegotiation.
1189 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001190 ret_val = e1000_copper_link_autoneg(hw);
1191 if (ret_val)
1192 return ret_val;
1193 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001194 /* PHY will be set to 10H, 10F, 100H or 100F
Bruce Allanad680762008-03-28 09:15:03 -07001195 * depending on user settings.
1196 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001197 e_dbg("Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001198 ret_val = e1000_phy_force_speed_duplex(hw);
1199 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001200 e_dbg("Error Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001201 return ret_val;
1202 }
1203 }
1204
Bruce Allane921eb12012-11-28 09:28:37 +00001205 /* Check link status. Wait up to 100 microseconds for link to become
Auke Kokbc7f75f2007-09-17 12:30:59 -07001206 * valid.
1207 */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001208 ret_val = e1000e_phy_has_link_generic(hw, COPPER_LINK_UP_LIMIT, 10,
1209 &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001210 if (ret_val)
1211 return ret_val;
1212
1213 if (link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001214 e_dbg("Valid link established!!!\n");
Bruce Allan57cde762012-02-22 09:02:58 +00001215 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001216 ret_val = e1000e_config_fc_after_link_up(hw);
1217 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001218 e_dbg("Unable to establish link!!!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001219 }
1220
1221 return ret_val;
1222}
1223
1224/**
1225 * e1000e_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY
1226 * @hw: pointer to the HW structure
1227 *
1228 * Calls the PHY setup function to force speed and duplex. Clears the
1229 * auto-crossover to force MDI manually. Waits for link and returns
1230 * successful if link up is successful, else -E1000_ERR_PHY (-2).
1231 **/
1232s32 e1000e_phy_force_speed_duplex_igp(struct e1000_hw *hw)
1233{
1234 struct e1000_phy_info *phy = &hw->phy;
1235 s32 ret_val;
1236 u16 phy_data;
1237 bool link;
1238
1239 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
1240 if (ret_val)
1241 return ret_val;
1242
1243 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1244
1245 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
1246 if (ret_val)
1247 return ret_val;
1248
Bruce Allane921eb12012-11-28 09:28:37 +00001249 /* Clear Auto-Crossover to force MDI manually. IGP requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001250 * forced whenever speed and duplex are forced.
1251 */
1252 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1253 if (ret_val)
1254 return ret_val;
1255
1256 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1257 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1258
1259 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1260 if (ret_val)
1261 return ret_val;
1262
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001263 e_dbg("IGP PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001264
1265 udelay(1);
1266
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001267 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001268 e_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001269
Bruce Allan3d3a1672012-02-23 03:13:18 +00001270 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1271 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001272 if (ret_val)
1273 return ret_val;
1274
1275 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001276 e_dbg("Link taking longer than expected.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001277
1278 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001279 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1280 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001281 }
1282
1283 return ret_val;
1284}
1285
1286/**
1287 * e1000e_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY
1288 * @hw: pointer to the HW structure
1289 *
1290 * Calls the PHY setup function to force speed and duplex. Clears the
1291 * auto-crossover to force MDI manually. Resets the PHY to commit the
1292 * changes. If time expires while waiting for link up, we reset the DSP.
Bruce Allanad680762008-03-28 09:15:03 -07001293 * After reset, TX_CLK and CRS on Tx must be set. Return successful upon
Auke Kokbc7f75f2007-09-17 12:30:59 -07001294 * successful completion, else return corresponding error code.
1295 **/
1296s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw)
1297{
1298 struct e1000_phy_info *phy = &hw->phy;
1299 s32 ret_val;
1300 u16 phy_data;
1301 bool link;
1302
Bruce Allane921eb12012-11-28 09:28:37 +00001303 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001304 * forced whenever speed and duplex are forced.
1305 */
1306 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1307 if (ret_val)
1308 return ret_val;
1309
1310 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1311 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1312 if (ret_val)
1313 return ret_val;
1314
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001315 e_dbg("M88E1000 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001316
1317 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
1318 if (ret_val)
1319 return ret_val;
1320
1321 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1322
Auke Kokbc7f75f2007-09-17 12:30:59 -07001323 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
1324 if (ret_val)
1325 return ret_val;
1326
Bruce Allan5aa49c82008-11-21 16:49:53 -08001327 /* Reset the phy to commit changes. */
1328 ret_val = e1000e_commit_phy(hw);
1329 if (ret_val)
1330 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001331
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001332 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001333 e_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001334
1335 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1336 100000, &link);
1337 if (ret_val)
1338 return ret_val;
1339
1340 if (!link) {
Bruce Allan0be84012009-12-02 17:03:18 +00001341 if (hw->phy.type != e1000_phy_m88) {
1342 e_dbg("Link taking longer than expected.\n");
1343 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001344 /* We didn't get link.
Bruce Allan0be84012009-12-02 17:03:18 +00001345 * Reset the DSP and cross our fingers.
1346 */
Bruce Allan482fed82011-01-06 14:29:49 +00001347 ret_val = e1e_wphy(hw, M88E1000_PHY_PAGE_SELECT,
1348 0x001d);
Bruce Allan0be84012009-12-02 17:03:18 +00001349 if (ret_val)
1350 return ret_val;
1351 ret_val = e1000e_phy_reset_dsp(hw);
1352 if (ret_val)
1353 return ret_val;
1354 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001355 }
1356
1357 /* Try once more */
1358 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1359 100000, &link);
1360 if (ret_val)
1361 return ret_val;
1362 }
1363
Bruce Allan0be84012009-12-02 17:03:18 +00001364 if (hw->phy.type != e1000_phy_m88)
1365 return 0;
1366
Auke Kokbc7f75f2007-09-17 12:30:59 -07001367 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1368 if (ret_val)
1369 return ret_val;
1370
Bruce Allane921eb12012-11-28 09:28:37 +00001371 /* Resetting the phy means we need to re-force TX_CLK in the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001372 * Extended PHY Specific Control Register to 25MHz clock from
1373 * the reset value of 2.5MHz.
1374 */
1375 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1376 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1377 if (ret_val)
1378 return ret_val;
1379
Bruce Allane921eb12012-11-28 09:28:37 +00001380 /* In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -07001381 * duplex.
1382 */
1383 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1384 if (ret_val)
1385 return ret_val;
1386
1387 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1388 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1389
1390 return ret_val;
1391}
1392
1393/**
Bruce Allan0be84012009-12-02 17:03:18 +00001394 * e1000_phy_force_speed_duplex_ife - Force PHY speed & duplex
1395 * @hw: pointer to the HW structure
1396 *
1397 * Forces the speed and duplex settings of the PHY.
1398 * This is a function pointer entry point only called by
1399 * PHY setup routines.
1400 **/
1401s32 e1000_phy_force_speed_duplex_ife(struct e1000_hw *hw)
1402{
1403 struct e1000_phy_info *phy = &hw->phy;
1404 s32 ret_val;
1405 u16 data;
1406 bool link;
1407
1408 ret_val = e1e_rphy(hw, PHY_CONTROL, &data);
1409 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001410 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001411
1412 e1000e_phy_force_speed_duplex_setup(hw, &data);
1413
1414 ret_val = e1e_wphy(hw, PHY_CONTROL, data);
1415 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001416 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001417
1418 /* Disable MDI-X support for 10/100 */
1419 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
1420 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001421 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001422
1423 data &= ~IFE_PMC_AUTO_MDIX;
1424 data &= ~IFE_PMC_FORCE_MDIX;
1425
1426 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data);
1427 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001428 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001429
1430 e_dbg("IFE PMC: %X\n", data);
1431
1432 udelay(1);
1433
1434 if (phy->autoneg_wait_to_complete) {
1435 e_dbg("Waiting for forced speed/duplex link on IFE phy.\n");
1436
Bruce Allan3d3a1672012-02-23 03:13:18 +00001437 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1438 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001439 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001440 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001441
1442 if (!link)
1443 e_dbg("Link taking longer than expected.\n");
1444
1445 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001446 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1447 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001448 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001449 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001450 }
1451
Bruce Allan5015e532012-02-08 02:55:56 +00001452 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00001453}
1454
1455/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001456 * e1000e_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex
1457 * @hw: pointer to the HW structure
1458 * @phy_ctrl: pointer to current value of PHY_CONTROL
1459 *
1460 * Forces speed and duplex on the PHY by doing the following: disable flow
1461 * control, force speed/duplex on the MAC, disable auto speed detection,
1462 * disable auto-negotiation, configure duplex, configure speed, configure
1463 * the collision distance, write configuration to CTRL register. The
1464 * caller must write to the PHY_CONTROL register for these settings to
1465 * take affect.
1466 **/
1467void e1000e_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl)
1468{
1469 struct e1000_mac_info *mac = &hw->mac;
1470 u32 ctrl;
1471
1472 /* Turn off flow control when forcing speed/duplex */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001473 hw->fc.current_mode = e1000_fc_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001474
1475 /* Force speed/duplex on the mac */
1476 ctrl = er32(CTRL);
1477 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1478 ctrl &= ~E1000_CTRL_SPD_SEL;
1479
1480 /* Disable Auto Speed Detection */
1481 ctrl &= ~E1000_CTRL_ASDE;
1482
1483 /* Disable autoneg on the phy */
1484 *phy_ctrl &= ~MII_CR_AUTO_NEG_EN;
1485
1486 /* Forcing Full or Half Duplex? */
1487 if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
1488 ctrl &= ~E1000_CTRL_FD;
1489 *phy_ctrl &= ~MII_CR_FULL_DUPLEX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001490 e_dbg("Half Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001491 } else {
1492 ctrl |= E1000_CTRL_FD;
1493 *phy_ctrl |= MII_CR_FULL_DUPLEX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001494 e_dbg("Full Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001495 }
1496
1497 /* Forcing 10mb or 100mb? */
1498 if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
1499 ctrl |= E1000_CTRL_SPD_100;
1500 *phy_ctrl |= MII_CR_SPEED_100;
1501 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001502 e_dbg("Forcing 100mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001503 } else {
1504 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1505 *phy_ctrl |= MII_CR_SPEED_10;
1506 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001507 e_dbg("Forcing 10mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001508 }
1509
Bruce Allan57cde762012-02-22 09:02:58 +00001510 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001511
1512 ew32(CTRL, ctrl);
1513}
1514
1515/**
1516 * e1000e_set_d3_lplu_state - Sets low power link up state for D3
1517 * @hw: pointer to the HW structure
1518 * @active: boolean used to enable/disable lplu
1519 *
1520 * Success returns 0, Failure returns 1
1521 *
1522 * The low power link up (lplu) state is set to the power management level D3
1523 * and SmartSpeed is disabled when active is true, else clear lplu for D3
1524 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
1525 * is used during Dx states where the power conservation is most important.
1526 * During driver activity, SmartSpeed should be enabled so performance is
1527 * maintained.
1528 **/
1529s32 e1000e_set_d3_lplu_state(struct e1000_hw *hw, bool active)
1530{
1531 struct e1000_phy_info *phy = &hw->phy;
1532 s32 ret_val;
1533 u16 data;
1534
1535 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1536 if (ret_val)
1537 return ret_val;
1538
1539 if (!active) {
1540 data &= ~IGP02E1000_PM_D3_LPLU;
David Graham2d9498f2008-04-23 11:09:14 -07001541 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001542 if (ret_val)
1543 return ret_val;
Bruce Allane921eb12012-11-28 09:28:37 +00001544 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001545 * during Dx states where the power conservation is most
1546 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001547 * SmartSpeed, so performance is maintained.
1548 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001549 if (phy->smart_speed == e1000_smart_speed_on) {
1550 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001551 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001552 if (ret_val)
1553 return ret_val;
1554
1555 data |= IGP01E1000_PSCFR_SMART_SPEED;
1556 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001557 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001558 if (ret_val)
1559 return ret_val;
1560 } else if (phy->smart_speed == e1000_smart_speed_off) {
1561 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001562 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001563 if (ret_val)
1564 return ret_val;
1565
1566 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1567 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001568 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001569 if (ret_val)
1570 return ret_val;
1571 }
1572 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1573 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1574 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1575 data |= IGP02E1000_PM_D3_LPLU;
1576 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
1577 if (ret_val)
1578 return ret_val;
1579
1580 /* When LPLU is enabled, we should disable SmartSpeed */
1581 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1582 if (ret_val)
1583 return ret_val;
1584
1585 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1586 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1587 }
1588
1589 return ret_val;
1590}
1591
1592/**
Auke Kok489815c2008-02-21 15:11:07 -08001593 * e1000e_check_downshift - Checks whether a downshift in speed occurred
Auke Kokbc7f75f2007-09-17 12:30:59 -07001594 * @hw: pointer to the HW structure
1595 *
1596 * Success returns 0, Failure returns 1
1597 *
1598 * A downshift is detected by querying the PHY link health.
1599 **/
1600s32 e1000e_check_downshift(struct e1000_hw *hw)
1601{
1602 struct e1000_phy_info *phy = &hw->phy;
1603 s32 ret_val;
1604 u16 phy_data, offset, mask;
1605
1606 switch (phy->type) {
1607 case e1000_phy_m88:
1608 case e1000_phy_gg82563:
Bruce Allan07f025e2009-12-01 15:53:48 +00001609 case e1000_phy_bm:
Bruce Allana4f58f52009-06-02 11:29:18 +00001610 case e1000_phy_82578:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001611 offset = M88E1000_PHY_SPEC_STATUS;
1612 mask = M88E1000_PSSR_DOWNSHIFT;
1613 break;
1614 case e1000_phy_igp_2:
1615 case e1000_phy_igp_3:
1616 offset = IGP01E1000_PHY_LINK_HEALTH;
1617 mask = IGP01E1000_PLHR_SS_DOWNGRADE;
1618 break;
1619 default:
1620 /* speed downshift not supported */
Bruce Allan564ea9b2009-11-20 23:26:44 +00001621 phy->speed_downgraded = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001622 return 0;
1623 }
1624
1625 ret_val = e1e_rphy(hw, offset, &phy_data);
1626
1627 if (!ret_val)
Bruce Allan04499ec2012-04-13 00:08:31 +00001628 phy->speed_downgraded = !!(phy_data & mask);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001629
1630 return ret_val;
1631}
1632
1633/**
1634 * e1000_check_polarity_m88 - Checks the polarity.
1635 * @hw: pointer to the HW structure
1636 *
1637 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1638 *
1639 * Polarity is determined based on the PHY specific status register.
1640 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001641s32 e1000_check_polarity_m88(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001642{
1643 struct e1000_phy_info *phy = &hw->phy;
1644 s32 ret_val;
1645 u16 data;
1646
1647 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &data);
1648
1649 if (!ret_val)
1650 phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY)
1651 ? e1000_rev_polarity_reversed
1652 : e1000_rev_polarity_normal;
1653
1654 return ret_val;
1655}
1656
1657/**
1658 * e1000_check_polarity_igp - Checks the polarity.
1659 * @hw: pointer to the HW structure
1660 *
1661 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1662 *
1663 * Polarity is determined based on the PHY port status register, and the
1664 * current speed (since there is no polarity at 100Mbps).
1665 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001666s32 e1000_check_polarity_igp(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001667{
1668 struct e1000_phy_info *phy = &hw->phy;
1669 s32 ret_val;
1670 u16 data, offset, mask;
1671
Bruce Allane921eb12012-11-28 09:28:37 +00001672 /* Polarity is determined based on the speed of
Bruce Allanad680762008-03-28 09:15:03 -07001673 * our connection.
1674 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001675 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1676 if (ret_val)
1677 return ret_val;
1678
1679 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1680 IGP01E1000_PSSR_SPEED_1000MBPS) {
1681 offset = IGP01E1000_PHY_PCS_INIT_REG;
1682 mask = IGP01E1000_PHY_POLARITY_MASK;
1683 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001684 /* This really only applies to 10Mbps since
Auke Kokbc7f75f2007-09-17 12:30:59 -07001685 * there is no polarity for 100Mbps (always 0).
1686 */
1687 offset = IGP01E1000_PHY_PORT_STATUS;
1688 mask = IGP01E1000_PSSR_POLARITY_REVERSED;
1689 }
1690
1691 ret_val = e1e_rphy(hw, offset, &data);
1692
1693 if (!ret_val)
1694 phy->cable_polarity = (data & mask)
1695 ? e1000_rev_polarity_reversed
1696 : e1000_rev_polarity_normal;
1697
1698 return ret_val;
1699}
1700
1701/**
Bruce Allan0be84012009-12-02 17:03:18 +00001702 * e1000_check_polarity_ife - Check cable polarity for IFE PHY
1703 * @hw: pointer to the HW structure
1704 *
1705 * Polarity is determined on the polarity reversal feature being enabled.
1706 **/
1707s32 e1000_check_polarity_ife(struct e1000_hw *hw)
1708{
1709 struct e1000_phy_info *phy = &hw->phy;
1710 s32 ret_val;
1711 u16 phy_data, offset, mask;
1712
Bruce Allane921eb12012-11-28 09:28:37 +00001713 /* Polarity is determined based on the reversal feature being enabled.
Bruce Allan0be84012009-12-02 17:03:18 +00001714 */
1715 if (phy->polarity_correction) {
1716 offset = IFE_PHY_EXTENDED_STATUS_CONTROL;
1717 mask = IFE_PESC_POLARITY_REVERSED;
1718 } else {
1719 offset = IFE_PHY_SPECIAL_CONTROL;
1720 mask = IFE_PSC_FORCE_POLARITY;
1721 }
1722
1723 ret_val = e1e_rphy(hw, offset, &phy_data);
1724
1725 if (!ret_val)
1726 phy->cable_polarity = (phy_data & mask)
1727 ? e1000_rev_polarity_reversed
1728 : e1000_rev_polarity_normal;
1729
1730 return ret_val;
1731}
1732
1733/**
Bruce Allanad680762008-03-28 09:15:03 -07001734 * e1000_wait_autoneg - Wait for auto-neg completion
Auke Kokbc7f75f2007-09-17 12:30:59 -07001735 * @hw: pointer to the HW structure
1736 *
1737 * Waits for auto-negotiation to complete or for the auto-negotiation time
1738 * limit to expire, which ever happens first.
1739 **/
1740static s32 e1000_wait_autoneg(struct e1000_hw *hw)
1741{
1742 s32 ret_val = 0;
1743 u16 i, phy_status;
1744
1745 /* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */
1746 for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) {
1747 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1748 if (ret_val)
1749 break;
1750 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1751 if (ret_val)
1752 break;
1753 if (phy_status & MII_SR_AUTONEG_COMPLETE)
1754 break;
1755 msleep(100);
1756 }
1757
Bruce Allane921eb12012-11-28 09:28:37 +00001758 /* PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation
Auke Kokbc7f75f2007-09-17 12:30:59 -07001759 * has completed.
1760 */
1761 return ret_val;
1762}
1763
1764/**
1765 * e1000e_phy_has_link_generic - Polls PHY for link
1766 * @hw: pointer to the HW structure
1767 * @iterations: number of times to poll for link
1768 * @usec_interval: delay between polling attempts
1769 * @success: pointer to whether polling was successful or not
1770 *
1771 * Polls the PHY status register for link, 'iterations' number of times.
1772 **/
1773s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
1774 u32 usec_interval, bool *success)
1775{
1776 s32 ret_val = 0;
1777 u16 i, phy_status;
1778
1779 for (i = 0; i < iterations; i++) {
Bruce Allane921eb12012-11-28 09:28:37 +00001780 /* Some PHYs require the PHY_STATUS register to be read
Auke Kokbc7f75f2007-09-17 12:30:59 -07001781 * twice due to the link bit being sticky. No harm doing
1782 * it across the board.
1783 */
1784 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1785 if (ret_val)
Bruce Allane921eb12012-11-28 09:28:37 +00001786 /* If the first read fails, another entity may have
Bruce Allan906e8d92009-07-01 13:28:50 +00001787 * ownership of the resources, wait and try again to
1788 * see if they have relinquished the resources yet.
1789 */
1790 udelay(usec_interval);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001791 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1792 if (ret_val)
1793 break;
1794 if (phy_status & MII_SR_LINK_STATUS)
1795 break;
1796 if (usec_interval >= 1000)
1797 mdelay(usec_interval/1000);
1798 else
1799 udelay(usec_interval);
1800 }
1801
1802 *success = (i < iterations);
1803
1804 return ret_val;
1805}
1806
1807/**
1808 * e1000e_get_cable_length_m88 - Determine cable length for m88 PHY
1809 * @hw: pointer to the HW structure
1810 *
1811 * Reads the PHY specific status register to retrieve the cable length
1812 * information. The cable length is determined by averaging the minimum and
1813 * maximum values to get the "average" cable length. The m88 PHY has four
1814 * possible cable length values, which are:
1815 * Register Value Cable Length
1816 * 0 < 50 meters
1817 * 1 50 - 80 meters
1818 * 2 80 - 110 meters
1819 * 3 110 - 140 meters
1820 * 4 > 140 meters
1821 **/
1822s32 e1000e_get_cable_length_m88(struct e1000_hw *hw)
1823{
1824 struct e1000_phy_info *phy = &hw->phy;
1825 s32 ret_val;
1826 u16 phy_data, index;
1827
1828 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1829 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001830 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001831
1832 index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
Bruce Allaneb656d42009-12-01 15:47:02 +00001833 M88E1000_PSSR_CABLE_LENGTH_SHIFT;
Bruce Allan5015e532012-02-08 02:55:56 +00001834
1835 if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1)
1836 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +00001837
Auke Kokbc7f75f2007-09-17 12:30:59 -07001838 phy->min_cable_length = e1000_m88_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +00001839 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001840
1841 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1842
Bruce Allan5015e532012-02-08 02:55:56 +00001843 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001844}
1845
1846/**
1847 * e1000e_get_cable_length_igp_2 - Determine cable length for igp2 PHY
1848 * @hw: pointer to the HW structure
1849 *
1850 * The automatic gain control (agc) normalizes the amplitude of the
1851 * received signal, adjusting for the attenuation produced by the
Auke Kok489815c2008-02-21 15:11:07 -08001852 * cable. By reading the AGC registers, which represent the
Bruce Allan5ff5b662009-12-01 15:51:11 +00001853 * combination of coarse and fine gain value, the value can be put
Auke Kokbc7f75f2007-09-17 12:30:59 -07001854 * into a lookup table to obtain the approximate cable length
1855 * for each channel.
1856 **/
1857s32 e1000e_get_cable_length_igp_2(struct e1000_hw *hw)
1858{
1859 struct e1000_phy_info *phy = &hw->phy;
1860 s32 ret_val;
1861 u16 phy_data, i, agc_value = 0;
1862 u16 cur_agc_index, max_agc_index = 0;
1863 u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1;
Jeff Kirsher66744502010-12-01 19:59:50 +00001864 static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
1865 IGP02E1000_PHY_AGC_A,
1866 IGP02E1000_PHY_AGC_B,
1867 IGP02E1000_PHY_AGC_C,
1868 IGP02E1000_PHY_AGC_D
1869 };
Auke Kokbc7f75f2007-09-17 12:30:59 -07001870
1871 /* Read the AGC registers for all channels */
1872 for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
1873 ret_val = e1e_rphy(hw, agc_reg_array[i], &phy_data);
1874 if (ret_val)
1875 return ret_val;
1876
Bruce Allane921eb12012-11-28 09:28:37 +00001877 /* Getting bits 15:9, which represent the combination of
Bruce Allan5ff5b662009-12-01 15:51:11 +00001878 * coarse and fine gain values. The result is a number
Auke Kokbc7f75f2007-09-17 12:30:59 -07001879 * that can be put into the lookup table to obtain the
Bruce Allanad680762008-03-28 09:15:03 -07001880 * approximate cable length.
1881 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001882 cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
1883 IGP02E1000_AGC_LENGTH_MASK;
1884
1885 /* Array index bound check. */
1886 if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) ||
1887 (cur_agc_index == 0))
1888 return -E1000_ERR_PHY;
1889
1890 /* Remove min & max AGC values from calculation. */
1891 if (e1000_igp_2_cable_length_table[min_agc_index] >
1892 e1000_igp_2_cable_length_table[cur_agc_index])
1893 min_agc_index = cur_agc_index;
1894 if (e1000_igp_2_cable_length_table[max_agc_index] <
1895 e1000_igp_2_cable_length_table[cur_agc_index])
1896 max_agc_index = cur_agc_index;
1897
1898 agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
1899 }
1900
1901 agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
1902 e1000_igp_2_cable_length_table[max_agc_index]);
1903 agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);
1904
1905 /* Calculate cable length with the error range of +/- 10 meters. */
1906 phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
1907 (agc_value - IGP02E1000_AGC_RANGE) : 0;
1908 phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;
1909
1910 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1911
Bruce Allan82607252012-02-08 02:55:09 +00001912 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001913}
1914
1915/**
1916 * e1000e_get_phy_info_m88 - Retrieve PHY information
1917 * @hw: pointer to the HW structure
1918 *
1919 * Valid for only copper links. Read the PHY status register (sticky read)
1920 * to verify that link is up. Read the PHY special control register to
1921 * determine the polarity and 10base-T extended distance. Read the PHY
1922 * special status register to determine MDI/MDIx and current speed. If
1923 * speed is 1000, then determine cable length, local and remote receiver.
1924 **/
1925s32 e1000e_get_phy_info_m88(struct e1000_hw *hw)
1926{
1927 struct e1000_phy_info *phy = &hw->phy;
1928 s32 ret_val;
1929 u16 phy_data;
1930 bool link;
1931
Bruce Allan0be84012009-12-02 17:03:18 +00001932 if (phy->media_type != e1000_media_type_copper) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001933 e_dbg("Phy info is only valid for copper media\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001934 return -E1000_ERR_CONFIG;
1935 }
1936
1937 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1938 if (ret_val)
1939 return ret_val;
1940
1941 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001942 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001943 return -E1000_ERR_CONFIG;
1944 }
1945
1946 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1947 if (ret_val)
1948 return ret_val;
1949
Bruce Allan04499ec2012-04-13 00:08:31 +00001950 phy->polarity_correction = !!(phy_data &
1951 M88E1000_PSCR_POLARITY_REVERSAL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001952
1953 ret_val = e1000_check_polarity_m88(hw);
1954 if (ret_val)
1955 return ret_val;
1956
1957 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1958 if (ret_val)
1959 return ret_val;
1960
Bruce Allan04499ec2012-04-13 00:08:31 +00001961 phy->is_mdix = !!(phy_data & M88E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001962
1963 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
1964 ret_val = e1000_get_cable_length(hw);
1965 if (ret_val)
1966 return ret_val;
1967
1968 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &phy_data);
1969 if (ret_val)
1970 return ret_val;
1971
1972 phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS)
1973 ? e1000_1000t_rx_status_ok
1974 : e1000_1000t_rx_status_not_ok;
1975
1976 phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS)
1977 ? e1000_1000t_rx_status_ok
1978 : e1000_1000t_rx_status_not_ok;
1979 } else {
1980 /* Set values to "undefined" */
1981 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1982 phy->local_rx = e1000_1000t_rx_status_undefined;
1983 phy->remote_rx = e1000_1000t_rx_status_undefined;
1984 }
1985
1986 return ret_val;
1987}
1988
1989/**
1990 * e1000e_get_phy_info_igp - Retrieve igp PHY information
1991 * @hw: pointer to the HW structure
1992 *
1993 * Read PHY status to determine if link is up. If link is up, then
1994 * set/determine 10base-T extended distance and polarity correction. Read
1995 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
1996 * determine on the cable length, local and remote receiver.
1997 **/
1998s32 e1000e_get_phy_info_igp(struct e1000_hw *hw)
1999{
2000 struct e1000_phy_info *phy = &hw->phy;
2001 s32 ret_val;
2002 u16 data;
2003 bool link;
2004
2005 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2006 if (ret_val)
2007 return ret_val;
2008
2009 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002010 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002011 return -E1000_ERR_CONFIG;
2012 }
2013
Bruce Allan564ea9b2009-11-20 23:26:44 +00002014 phy->polarity_correction = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002015
2016 ret_val = e1000_check_polarity_igp(hw);
2017 if (ret_val)
2018 return ret_val;
2019
2020 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
2021 if (ret_val)
2022 return ret_val;
2023
Bruce Allan04499ec2012-04-13 00:08:31 +00002024 phy->is_mdix = !!(data & IGP01E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002025
2026 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
2027 IGP01E1000_PSSR_SPEED_1000MBPS) {
2028 ret_val = e1000_get_cable_length(hw);
2029 if (ret_val)
2030 return ret_val;
2031
2032 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data);
2033 if (ret_val)
2034 return ret_val;
2035
2036 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
2037 ? e1000_1000t_rx_status_ok
2038 : e1000_1000t_rx_status_not_ok;
2039
2040 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
2041 ? e1000_1000t_rx_status_ok
2042 : e1000_1000t_rx_status_not_ok;
2043 } else {
2044 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2045 phy->local_rx = e1000_1000t_rx_status_undefined;
2046 phy->remote_rx = e1000_1000t_rx_status_undefined;
2047 }
2048
2049 return ret_val;
2050}
2051
2052/**
Bruce Allan0be84012009-12-02 17:03:18 +00002053 * e1000_get_phy_info_ife - Retrieves various IFE PHY states
2054 * @hw: pointer to the HW structure
2055 *
2056 * Populates "phy" structure with various feature states.
2057 **/
2058s32 e1000_get_phy_info_ife(struct e1000_hw *hw)
2059{
2060 struct e1000_phy_info *phy = &hw->phy;
2061 s32 ret_val;
2062 u16 data;
2063 bool link;
2064
2065 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2066 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002067 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002068
2069 if (!link) {
2070 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002071 return -E1000_ERR_CONFIG;
Bruce Allan0be84012009-12-02 17:03:18 +00002072 }
2073
2074 ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data);
2075 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002076 return ret_val;
Bruce Allan04499ec2012-04-13 00:08:31 +00002077 phy->polarity_correction = !(data & IFE_PSC_AUTO_POLARITY_DISABLE);
Bruce Allan0be84012009-12-02 17:03:18 +00002078
2079 if (phy->polarity_correction) {
2080 ret_val = e1000_check_polarity_ife(hw);
2081 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002082 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002083 } else {
2084 /* Polarity is forced */
2085 phy->cable_polarity = (data & IFE_PSC_FORCE_POLARITY)
2086 ? e1000_rev_polarity_reversed
2087 : e1000_rev_polarity_normal;
2088 }
2089
2090 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
2091 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002092 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002093
Bruce Allan04499ec2012-04-13 00:08:31 +00002094 phy->is_mdix = !!(data & IFE_PMC_MDIX_STATUS);
Bruce Allan0be84012009-12-02 17:03:18 +00002095
2096 /* The following parameters are undefined for 10/100 operation. */
2097 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2098 phy->local_rx = e1000_1000t_rx_status_undefined;
2099 phy->remote_rx = e1000_1000t_rx_status_undefined;
2100
Bruce Allan5015e532012-02-08 02:55:56 +00002101 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00002102}
2103
2104/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002105 * e1000e_phy_sw_reset - PHY software reset
2106 * @hw: pointer to the HW structure
2107 *
2108 * Does a software reset of the PHY by reading the PHY control register and
2109 * setting/write the control register reset bit to the PHY.
2110 **/
2111s32 e1000e_phy_sw_reset(struct e1000_hw *hw)
2112{
2113 s32 ret_val;
2114 u16 phy_ctrl;
2115
2116 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl);
2117 if (ret_val)
2118 return ret_val;
2119
2120 phy_ctrl |= MII_CR_RESET;
2121 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl);
2122 if (ret_val)
2123 return ret_val;
2124
2125 udelay(1);
2126
2127 return ret_val;
2128}
2129
2130/**
2131 * e1000e_phy_hw_reset_generic - PHY hardware reset
2132 * @hw: pointer to the HW structure
2133 *
2134 * Verify the reset block is not blocking us from resetting. Acquire
2135 * semaphore (if necessary) and read/set/write the device control reset
2136 * bit in the PHY. Wait the appropriate delay time for the device to
Auke Kok489815c2008-02-21 15:11:07 -08002137 * reset and release the semaphore (if necessary).
Auke Kokbc7f75f2007-09-17 12:30:59 -07002138 **/
2139s32 e1000e_phy_hw_reset_generic(struct e1000_hw *hw)
2140{
2141 struct e1000_phy_info *phy = &hw->phy;
2142 s32 ret_val;
2143 u32 ctrl;
2144
Bruce Allan470a5422012-05-26 06:08:48 +00002145 if (phy->ops.check_reset_block) {
2146 ret_val = phy->ops.check_reset_block(hw);
2147 if (ret_val)
2148 return 0;
2149 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002150
Bruce Allan94d81862009-11-20 23:25:26 +00002151 ret_val = phy->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002152 if (ret_val)
2153 return ret_val;
2154
2155 ctrl = er32(CTRL);
2156 ew32(CTRL, ctrl | E1000_CTRL_PHY_RST);
2157 e1e_flush();
2158
2159 udelay(phy->reset_delay_us);
2160
2161 ew32(CTRL, ctrl);
2162 e1e_flush();
2163
2164 udelay(150);
2165
Bruce Allan94d81862009-11-20 23:25:26 +00002166 phy->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002167
2168 return e1000_get_phy_cfg_done(hw);
2169}
2170
2171/**
2172 * e1000e_get_cfg_done - Generic configuration done
2173 * @hw: pointer to the HW structure
2174 *
2175 * Generic function to wait 10 milli-seconds for configuration to complete
2176 * and return success.
2177 **/
2178s32 e1000e_get_cfg_done(struct e1000_hw *hw)
2179{
2180 mdelay(10);
Bruce Allan3d3a1672012-02-23 03:13:18 +00002181
Auke Kokbc7f75f2007-09-17 12:30:59 -07002182 return 0;
2183}
2184
Bruce Allanf4187b52008-08-26 18:36:50 -07002185/**
2186 * e1000e_phy_init_script_igp3 - Inits the IGP3 PHY
2187 * @hw: pointer to the HW structure
2188 *
2189 * Initializes a Intel Gigabit PHY3 when an EEPROM is not present.
2190 **/
2191s32 e1000e_phy_init_script_igp3(struct e1000_hw *hw)
2192{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002193 e_dbg("Running IGP 3 PHY init script\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07002194
2195 /* PHY init IGP 3 */
2196 /* Enable rise/fall, 10-mode work in class-A */
2197 e1e_wphy(hw, 0x2F5B, 0x9018);
2198 /* Remove all caps from Replica path filter */
2199 e1e_wphy(hw, 0x2F52, 0x0000);
2200 /* Bias trimming for ADC, AFE and Driver (Default) */
2201 e1e_wphy(hw, 0x2FB1, 0x8B24);
2202 /* Increase Hybrid poly bias */
2203 e1e_wphy(hw, 0x2FB2, 0xF8F0);
2204 /* Add 4% to Tx amplitude in Gig mode */
2205 e1e_wphy(hw, 0x2010, 0x10B0);
2206 /* Disable trimming (TTT) */
2207 e1e_wphy(hw, 0x2011, 0x0000);
2208 /* Poly DC correction to 94.6% + 2% for all channels */
2209 e1e_wphy(hw, 0x20DD, 0x249A);
2210 /* ABS DC correction to 95.9% */
2211 e1e_wphy(hw, 0x20DE, 0x00D3);
2212 /* BG temp curve trim */
2213 e1e_wphy(hw, 0x28B4, 0x04CE);
2214 /* Increasing ADC OPAMP stage 1 currents to max */
2215 e1e_wphy(hw, 0x2F70, 0x29E4);
2216 /* Force 1000 ( required for enabling PHY regs configuration) */
2217 e1e_wphy(hw, 0x0000, 0x0140);
2218 /* Set upd_freq to 6 */
2219 e1e_wphy(hw, 0x1F30, 0x1606);
2220 /* Disable NPDFE */
2221 e1e_wphy(hw, 0x1F31, 0xB814);
2222 /* Disable adaptive fixed FFE (Default) */
2223 e1e_wphy(hw, 0x1F35, 0x002A);
2224 /* Enable FFE hysteresis */
2225 e1e_wphy(hw, 0x1F3E, 0x0067);
2226 /* Fixed FFE for short cable lengths */
2227 e1e_wphy(hw, 0x1F54, 0x0065);
2228 /* Fixed FFE for medium cable lengths */
2229 e1e_wphy(hw, 0x1F55, 0x002A);
2230 /* Fixed FFE for long cable lengths */
2231 e1e_wphy(hw, 0x1F56, 0x002A);
2232 /* Enable Adaptive Clip Threshold */
2233 e1e_wphy(hw, 0x1F72, 0x3FB0);
2234 /* AHT reset limit to 1 */
2235 e1e_wphy(hw, 0x1F76, 0xC0FF);
2236 /* Set AHT master delay to 127 msec */
2237 e1e_wphy(hw, 0x1F77, 0x1DEC);
2238 /* Set scan bits for AHT */
2239 e1e_wphy(hw, 0x1F78, 0xF9EF);
2240 /* Set AHT Preset bits */
2241 e1e_wphy(hw, 0x1F79, 0x0210);
2242 /* Change integ_factor of channel A to 3 */
2243 e1e_wphy(hw, 0x1895, 0x0003);
2244 /* Change prop_factor of channels BCD to 8 */
2245 e1e_wphy(hw, 0x1796, 0x0008);
2246 /* Change cg_icount + enable integbp for channels BCD */
2247 e1e_wphy(hw, 0x1798, 0xD008);
Bruce Allane921eb12012-11-28 09:28:37 +00002248 /* Change cg_icount + enable integbp + change prop_factor_master
Bruce Allanf4187b52008-08-26 18:36:50 -07002249 * to 8 for channel A
2250 */
2251 e1e_wphy(hw, 0x1898, 0xD918);
2252 /* Disable AHT in Slave mode on channel A */
2253 e1e_wphy(hw, 0x187A, 0x0800);
Bruce Allane921eb12012-11-28 09:28:37 +00002254 /* Enable LPLU and disable AN to 1000 in non-D0a states,
Bruce Allanf4187b52008-08-26 18:36:50 -07002255 * Enable SPD+B2B
2256 */
2257 e1e_wphy(hw, 0x0019, 0x008D);
2258 /* Enable restart AN on an1000_dis change */
2259 e1e_wphy(hw, 0x001B, 0x2080);
2260 /* Enable wh_fifo read clock in 10/100 modes */
2261 e1e_wphy(hw, 0x0014, 0x0045);
2262 /* Restart AN, Speed selection is 1000 */
2263 e1e_wphy(hw, 0x0000, 0x1340);
2264
2265 return 0;
2266}
2267
Auke Kokbc7f75f2007-09-17 12:30:59 -07002268/* Internal function pointers */
2269
2270/**
2271 * e1000_get_phy_cfg_done - Generic PHY configuration done
2272 * @hw: pointer to the HW structure
2273 *
2274 * Return success if silicon family did not implement a family specific
2275 * get_cfg_done function.
2276 **/
2277static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw)
2278{
2279 if (hw->phy.ops.get_cfg_done)
2280 return hw->phy.ops.get_cfg_done(hw);
2281
2282 return 0;
2283}
2284
2285/**
2286 * e1000_phy_force_speed_duplex - Generic force PHY speed/duplex
2287 * @hw: pointer to the HW structure
2288 *
2289 * When the silicon family has not implemented a forced speed/duplex
2290 * function for the PHY, simply return 0.
2291 **/
2292static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw)
2293{
2294 if (hw->phy.ops.force_speed_duplex)
2295 return hw->phy.ops.force_speed_duplex(hw);
2296
2297 return 0;
2298}
2299
2300/**
2301 * e1000e_get_phy_type_from_id - Get PHY type from id
2302 * @phy_id: phy_id read from the phy
2303 *
2304 * Returns the phy type from the id.
2305 **/
2306enum e1000_phy_type e1000e_get_phy_type_from_id(u32 phy_id)
2307{
2308 enum e1000_phy_type phy_type = e1000_phy_unknown;
2309
2310 switch (phy_id) {
2311 case M88E1000_I_PHY_ID:
2312 case M88E1000_E_PHY_ID:
2313 case M88E1111_I_PHY_ID:
2314 case M88E1011_I_PHY_ID:
2315 phy_type = e1000_phy_m88;
2316 break;
2317 case IGP01E1000_I_PHY_ID: /* IGP 1 & 2 share this */
2318 phy_type = e1000_phy_igp_2;
2319 break;
2320 case GG82563_E_PHY_ID:
2321 phy_type = e1000_phy_gg82563;
2322 break;
2323 case IGP03E1000_E_PHY_ID:
2324 phy_type = e1000_phy_igp_3;
2325 break;
2326 case IFE_E_PHY_ID:
2327 case IFE_PLUS_E_PHY_ID:
2328 case IFE_C_E_PHY_ID:
2329 phy_type = e1000_phy_ife;
2330 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002331 case BME1000_E_PHY_ID:
2332 case BME1000_E_PHY_ID_R2:
2333 phy_type = e1000_phy_bm;
2334 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002335 case I82578_E_PHY_ID:
2336 phy_type = e1000_phy_82578;
2337 break;
2338 case I82577_E_PHY_ID:
2339 phy_type = e1000_phy_82577;
2340 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002341 case I82579_E_PHY_ID:
2342 phy_type = e1000_phy_82579;
2343 break;
Bruce Allan2fbe4522012-04-19 03:21:47 +00002344 case I217_E_PHY_ID:
2345 phy_type = e1000_phy_i217;
2346 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002347 default:
2348 phy_type = e1000_phy_unknown;
2349 break;
2350 }
2351 return phy_type;
2352}
2353
2354/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002355 * e1000e_determine_phy_address - Determines PHY address.
2356 * @hw: pointer to the HW structure
2357 *
2358 * This uses a trial and error method to loop through possible PHY
2359 * addresses. It tests each by reading the PHY ID registers and
2360 * checking for a match.
2361 **/
2362s32 e1000e_determine_phy_address(struct e1000_hw *hw)
2363{
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002364 u32 phy_addr = 0;
2365 u32 i;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002366 enum e1000_phy_type phy_type = e1000_phy_unknown;
2367
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002368 hw->phy.id = phy_type;
2369
2370 for (phy_addr = 0; phy_addr < E1000_MAX_PHY_ADDR; phy_addr++) {
2371 hw->phy.addr = phy_addr;
2372 i = 0;
2373
2374 do {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002375 e1000e_get_phy_id(hw);
2376 phy_type = e1000e_get_phy_type_from_id(hw->phy.id);
2377
Bruce Allane921eb12012-11-28 09:28:37 +00002378 /* If phy_type is valid, break - we found our
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002379 * PHY address
2380 */
Bruce Allan5015e532012-02-08 02:55:56 +00002381 if (phy_type != e1000_phy_unknown)
2382 return 0;
2383
Bruce Allan1bba4382011-03-19 00:27:20 +00002384 usleep_range(1000, 2000);
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002385 i++;
2386 } while (i < 10);
2387 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002388
Bruce Allan5015e532012-02-08 02:55:56 +00002389 return -E1000_ERR_PHY_TYPE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002390}
2391
2392/**
2393 * e1000_get_phy_addr_for_bm_page - Retrieve PHY page address
2394 * @page: page to access
2395 *
2396 * Returns the phy address for the page requested.
2397 **/
2398static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg)
2399{
2400 u32 phy_addr = 2;
2401
2402 if ((page >= 768) || (page == 0 && reg == 25) || (reg == 31))
2403 phy_addr = 1;
2404
2405 return phy_addr;
2406}
2407
2408/**
2409 * e1000e_write_phy_reg_bm - Write BM PHY register
2410 * @hw: pointer to the HW structure
2411 * @offset: register offset to write to
2412 * @data: data to write at register offset
2413 *
2414 * Acquires semaphore, if necessary, then writes the data to PHY register
2415 * at the offset. Release any acquired semaphores before exiting.
2416 **/
2417s32 e1000e_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data)
2418{
2419 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002420 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002421
Bruce Allan94d81862009-11-20 23:25:26 +00002422 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002423 if (ret_val)
2424 return ret_val;
2425
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002426 /* Page 800 works differently than the rest so it has its own func */
2427 if (page == BM_WUC_PAGE) {
2428 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002429 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002430 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002431 }
2432
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002433 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2434
2435 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002436 u32 page_shift, page_select;
2437
Bruce Allane921eb12012-11-28 09:28:37 +00002438 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002439 * phy address 2 and 3. Page select is shifted only for
2440 * phy address 1.
2441 */
2442 if (hw->phy.addr == 1) {
2443 page_shift = IGP_PAGE_SHIFT;
2444 page_select = IGP01E1000_PHY_PAGE_SELECT;
2445 } else {
2446 page_shift = 0;
2447 page_select = BM_PHY_PAGE_SELECT;
2448 }
2449
2450 /* Page is shifted left, PHY expects (page x 32) */
2451 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
2452 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002453 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002454 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002455 }
2456
2457 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2458 data);
2459
Bruce Allan75ce1532012-02-08 02:54:48 +00002460release:
Bruce Allan94d81862009-11-20 23:25:26 +00002461 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002462 return ret_val;
2463}
2464
2465/**
2466 * e1000e_read_phy_reg_bm - Read BM PHY register
2467 * @hw: pointer to the HW structure
2468 * @offset: register offset to be read
2469 * @data: pointer to the read data
2470 *
2471 * Acquires semaphore, if necessary, then reads the PHY register at offset
2472 * and storing the retrieved information in data. Release any acquired
2473 * semaphores before exiting.
2474 **/
2475s32 e1000e_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data)
2476{
2477 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002478 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002479
Bruce Allan94d81862009-11-20 23:25:26 +00002480 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002481 if (ret_val)
2482 return ret_val;
2483
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002484 /* Page 800 works differently than the rest so it has its own func */
2485 if (page == BM_WUC_PAGE) {
2486 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002487 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002488 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002489 }
2490
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002491 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2492
2493 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002494 u32 page_shift, page_select;
2495
Bruce Allane921eb12012-11-28 09:28:37 +00002496 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002497 * phy address 2 and 3. Page select is shifted only for
2498 * phy address 1.
2499 */
2500 if (hw->phy.addr == 1) {
2501 page_shift = IGP_PAGE_SHIFT;
2502 page_select = IGP01E1000_PHY_PAGE_SELECT;
2503 } else {
2504 page_shift = 0;
2505 page_select = BM_PHY_PAGE_SELECT;
2506 }
2507
2508 /* Page is shifted left, PHY expects (page x 32) */
2509 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
2510 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002511 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002512 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002513 }
2514
2515 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2516 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002517release:
Bruce Allan94d81862009-11-20 23:25:26 +00002518 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002519 return ret_val;
2520}
2521
2522/**
Bruce Allan4662e822008-08-26 18:37:06 -07002523 * e1000e_read_phy_reg_bm2 - Read BM PHY register
2524 * @hw: pointer to the HW structure
2525 * @offset: register offset to be read
2526 * @data: pointer to the read data
2527 *
2528 * Acquires semaphore, if necessary, then reads the PHY register at offset
2529 * and storing the retrieved information in data. Release any acquired
2530 * semaphores before exiting.
2531 **/
2532s32 e1000e_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data)
2533{
2534 s32 ret_val;
2535 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2536
Bruce Allan94d81862009-11-20 23:25:26 +00002537 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002538 if (ret_val)
2539 return ret_val;
2540
Bruce Allan4662e822008-08-26 18:37:06 -07002541 /* Page 800 works differently than the rest so it has its own func */
2542 if (page == BM_WUC_PAGE) {
2543 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002544 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002545 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002546 }
2547
Bruce Allan4662e822008-08-26 18:37:06 -07002548 hw->phy.addr = 1;
2549
2550 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2551
2552 /* Page is shifted left, PHY expects (page x 32) */
2553 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2554 page);
2555
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002556 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002557 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002558 }
2559
2560 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2561 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002562release:
Bruce Allan94d81862009-11-20 23:25:26 +00002563 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002564 return ret_val;
2565}
2566
2567/**
2568 * e1000e_write_phy_reg_bm2 - Write BM PHY register
2569 * @hw: pointer to the HW structure
2570 * @offset: register offset to write to
2571 * @data: data to write at register offset
2572 *
2573 * Acquires semaphore, if necessary, then writes the data to PHY register
2574 * at the offset. Release any acquired semaphores before exiting.
2575 **/
2576s32 e1000e_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data)
2577{
2578 s32 ret_val;
2579 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2580
Bruce Allan94d81862009-11-20 23:25:26 +00002581 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002582 if (ret_val)
2583 return ret_val;
2584
Bruce Allan4662e822008-08-26 18:37:06 -07002585 /* Page 800 works differently than the rest so it has its own func */
2586 if (page == BM_WUC_PAGE) {
2587 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002588 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002589 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002590 }
2591
Bruce Allan4662e822008-08-26 18:37:06 -07002592 hw->phy.addr = 1;
2593
2594 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2595 /* Page is shifted left, PHY expects (page x 32) */
2596 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2597 page);
2598
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002599 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002600 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002601 }
2602
2603 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2604 data);
2605
Bruce Allan75ce1532012-02-08 02:54:48 +00002606release:
Bruce Allan94d81862009-11-20 23:25:26 +00002607 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002608 return ret_val;
2609}
2610
2611/**
Bruce Allan2b6b1682011-05-13 07:20:09 +00002612 * e1000_enable_phy_wakeup_reg_access_bm - enable access to BM wakeup registers
2613 * @hw: pointer to the HW structure
2614 * @phy_reg: pointer to store original contents of BM_WUC_ENABLE_REG
2615 *
2616 * Assumes semaphore already acquired and phy_reg points to a valid memory
2617 * address to store contents of the BM_WUC_ENABLE_REG register.
2618 **/
2619s32 e1000_enable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2620{
2621 s32 ret_val;
2622 u16 temp;
2623
2624 /* All page select, port ctrl and wakeup registers use phy address 1 */
2625 hw->phy.addr = 1;
2626
2627 /* Select Port Control Registers page */
2628 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2629 if (ret_val) {
2630 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002631 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002632 }
2633
2634 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
2635 if (ret_val) {
2636 e_dbg("Could not read PHY register %d.%d\n",
2637 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002638 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002639 }
2640
Bruce Allane921eb12012-11-28 09:28:37 +00002641 /* Enable both PHY wakeup mode and Wakeup register page writes.
Bruce Allan2b6b1682011-05-13 07:20:09 +00002642 * Prevent a power state change by disabling ME and Host PHY wakeup.
2643 */
2644 temp = *phy_reg;
2645 temp |= BM_WUC_ENABLE_BIT;
2646 temp &= ~(BM_WUC_ME_WU_BIT | BM_WUC_HOST_WU_BIT);
2647
2648 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, temp);
2649 if (ret_val) {
2650 e_dbg("Could not write PHY register %d.%d\n",
2651 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002652 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002653 }
2654
Bruce Allane921eb12012-11-28 09:28:37 +00002655 /* Select Host Wakeup Registers page - caller now able to write
Bruce Allan5015e532012-02-08 02:55:56 +00002656 * registers on the Wakeup registers page
2657 */
2658 return e1000_set_page_igp(hw, (BM_WUC_PAGE << IGP_PAGE_SHIFT));
Bruce Allan2b6b1682011-05-13 07:20:09 +00002659}
2660
2661/**
2662 * e1000_disable_phy_wakeup_reg_access_bm - disable access to BM wakeup regs
2663 * @hw: pointer to the HW structure
2664 * @phy_reg: pointer to original contents of BM_WUC_ENABLE_REG
2665 *
2666 * Restore BM_WUC_ENABLE_REG to its original value.
2667 *
2668 * Assumes semaphore already acquired and *phy_reg is the contents of the
2669 * BM_WUC_ENABLE_REG before register(s) on BM_WUC_PAGE were accessed by
2670 * caller.
2671 **/
2672s32 e1000_disable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2673{
Bruce Allan70806a72013-01-05 05:08:37 +00002674 s32 ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002675
2676 /* Select Port Control Registers page */
2677 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2678 if (ret_val) {
2679 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002680 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002681 }
2682
2683 /* Restore 769.17 to its original value */
2684 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, *phy_reg);
2685 if (ret_val)
2686 e_dbg("Could not restore PHY register %d.%d\n",
2687 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002688
Bruce Allan2b6b1682011-05-13 07:20:09 +00002689 return ret_val;
2690}
2691
2692/**
2693 * e1000_access_phy_wakeup_reg_bm - Read/write BM PHY wakeup register
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002694 * @hw: pointer to the HW structure
2695 * @offset: register offset to be read or written
2696 * @data: pointer to the data to read or write
2697 * @read: determines if operation is read or write
Bruce Allan2b6b1682011-05-13 07:20:09 +00002698 * @page_set: BM_WUC_PAGE already set and access enabled
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002699 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002700 * Read the PHY register at offset and store the retrieved information in
2701 * data, or write data to PHY register at offset. Note the procedure to
2702 * access the PHY wakeup registers is different than reading the other PHY
2703 * registers. It works as such:
2704 * 1) Set 769.17.2 (page 769, register 17, bit 2) = 1
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002705 * 2) Set page to 800 for host (801 if we were manageability)
2706 * 3) Write the address using the address opcode (0x11)
2707 * 4) Read or write the data using the data opcode (0x12)
Bruce Allan2b6b1682011-05-13 07:20:09 +00002708 * 5) Restore 769.17.2 to its original value
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002709 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002710 * Steps 1 and 2 are done by e1000_enable_phy_wakeup_reg_access_bm() and
2711 * step 5 is done by e1000_disable_phy_wakeup_reg_access_bm().
2712 *
2713 * Assumes semaphore is already acquired. When page_set==true, assumes
2714 * the PHY page is set to BM_WUC_PAGE (i.e. a function in the call stack
2715 * is responsible for calls to e1000_[enable|disable]_phy_wakeup_reg_bm()).
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002716 **/
2717static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002718 u16 *data, bool read, bool page_set)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002719{
2720 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002721 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002722 u16 page = BM_PHY_REG_PAGE(offset);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002723 u16 phy_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002724
Bruce Allan2b6b1682011-05-13 07:20:09 +00002725 /* Gig must be disabled for MDIO accesses to Host Wakeup reg page */
Bruce Allana4f58f52009-06-02 11:29:18 +00002726 if ((hw->mac.type == e1000_pchlan) &&
Bruce Allan2b6b1682011-05-13 07:20:09 +00002727 (!(er32(PHY_CTRL) & E1000_PHY_CTRL_GBE_DISABLE)))
2728 e_dbg("Attempting to access page %d while gig enabled.\n",
2729 page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002730
Bruce Allan2b6b1682011-05-13 07:20:09 +00002731 if (!page_set) {
2732 /* Enable access to PHY wakeup registers */
2733 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2734 if (ret_val) {
2735 e_dbg("Could not enable PHY wakeup reg access\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002736 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002737 }
Bruce Allan9b71b412009-12-01 15:53:07 +00002738 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002739
Bruce Allan2b6b1682011-05-13 07:20:09 +00002740 e_dbg("Accessing PHY page %d reg 0x%x\n", page, reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002741
Bruce Allan2b6b1682011-05-13 07:20:09 +00002742 /* Write the Wakeup register page offset value using opcode 0x11 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002743 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ADDRESS_OPCODE, reg);
Bruce Allan9b71b412009-12-01 15:53:07 +00002744 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002745 e_dbg("Could not write address opcode to page %d\n", page);
Bruce Allan5015e532012-02-08 02:55:56 +00002746 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002747 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002748
2749 if (read) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002750 /* Read the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002751 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2752 data);
2753 } else {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002754 /* Write the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002755 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2756 *data);
2757 }
2758
Bruce Allan9b71b412009-12-01 15:53:07 +00002759 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002760 e_dbg("Could not access PHY reg %d.%d\n", page, reg);
Bruce Allan5015e532012-02-08 02:55:56 +00002761 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002762 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002763
Bruce Allan2b6b1682011-05-13 07:20:09 +00002764 if (!page_set)
2765 ret_val = e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002766
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002767 return ret_val;
2768}
2769
2770/**
Bruce Allan17f208d2009-12-01 15:47:22 +00002771 * e1000_power_up_phy_copper - Restore copper link in case of PHY power down
2772 * @hw: pointer to the HW structure
2773 *
2774 * In the case of a PHY power down to save power, or to turn off link during a
2775 * driver unload, or wake on lan is not enabled, restore the link to previous
2776 * settings.
2777 **/
2778void e1000_power_up_phy_copper(struct e1000_hw *hw)
2779{
2780 u16 mii_reg = 0;
2781
2782 /* The PHY will retain its settings across a power down/up cycle */
2783 e1e_rphy(hw, PHY_CONTROL, &mii_reg);
2784 mii_reg &= ~MII_CR_POWER_DOWN;
2785 e1e_wphy(hw, PHY_CONTROL, mii_reg);
2786}
2787
2788/**
2789 * e1000_power_down_phy_copper - Restore copper link in case of PHY power down
2790 * @hw: pointer to the HW structure
2791 *
2792 * In the case of a PHY power down to save power, or to turn off link during a
2793 * driver unload, or wake on lan is not enabled, restore the link to previous
2794 * settings.
2795 **/
2796void e1000_power_down_phy_copper(struct e1000_hw *hw)
2797{
2798 u16 mii_reg = 0;
2799
2800 /* The PHY will retain its settings across a power down/up cycle */
2801 e1e_rphy(hw, PHY_CONTROL, &mii_reg);
2802 mii_reg |= MII_CR_POWER_DOWN;
2803 e1e_wphy(hw, PHY_CONTROL, mii_reg);
Bruce Allan1bba4382011-03-19 00:27:20 +00002804 usleep_range(1000, 2000);
Bruce Allan17f208d2009-12-01 15:47:22 +00002805}
2806
2807/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002808 * e1000e_commit_phy - Soft PHY reset
2809 * @hw: pointer to the HW structure
2810 *
2811 * Performs a soft PHY reset on those that apply. This is a function pointer
2812 * entry point called by drivers.
2813 **/
2814s32 e1000e_commit_phy(struct e1000_hw *hw)
2815{
Bruce Allan94d81862009-11-20 23:25:26 +00002816 if (hw->phy.ops.commit)
2817 return hw->phy.ops.commit(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002818
2819 return 0;
2820}
2821
2822/**
2823 * e1000_set_d0_lplu_state - Sets low power link up state for D0
2824 * @hw: pointer to the HW structure
2825 * @active: boolean used to enable/disable lplu
2826 *
2827 * Success returns 0, Failure returns 1
2828 *
2829 * The low power link up (lplu) state is set to the power management level D0
2830 * and SmartSpeed is disabled when active is true, else clear lplu for D0
2831 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
2832 * is used during Dx states where the power conservation is most important.
2833 * During driver activity, SmartSpeed should be enabled so performance is
2834 * maintained. This is a function pointer entry point called by drivers.
2835 **/
2836static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active)
2837{
2838 if (hw->phy.ops.set_d0_lplu_state)
2839 return hw->phy.ops.set_d0_lplu_state(hw, active);
2840
2841 return 0;
2842}
Bruce Allana4f58f52009-06-02 11:29:18 +00002843
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002844/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002845 * __e1000_read_phy_reg_hv - Read HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002846 * @hw: pointer to the HW structure
2847 * @offset: register offset to be read
2848 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002849 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002850 *
2851 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002852 * and stores the retrieved information in data. Release any acquired
Bruce Allana4f58f52009-06-02 11:29:18 +00002853 * semaphore before exiting.
2854 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002855static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002856 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002857{
2858 s32 ret_val;
2859 u16 page = BM_PHY_REG_PAGE(offset);
2860 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002861 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002862
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002863 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002864 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002865 if (ret_val)
2866 return ret_val;
2867 }
2868
Bruce Allana4f58f52009-06-02 11:29:18 +00002869 /* Page 800 works differently than the rest so it has its own func */
2870 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002871 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
2872 true, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002873 goto out;
2874 }
2875
2876 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2877 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
2878 data, true);
2879 goto out;
2880 }
2881
Bruce Allan2b6b1682011-05-13 07:20:09 +00002882 if (!page_set) {
2883 if (page == HV_INTC_FC_PAGE_START)
2884 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002885
Bruce Allan2b6b1682011-05-13 07:20:09 +00002886 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2887 /* Page is shifted left, PHY expects (page x 32) */
2888 ret_val = e1000_set_page_igp(hw,
2889 (page << IGP_PAGE_SHIFT));
Bruce Allana4f58f52009-06-02 11:29:18 +00002890
Bruce Allan2b6b1682011-05-13 07:20:09 +00002891 hw->phy.addr = phy_addr;
Bruce Allana4f58f52009-06-02 11:29:18 +00002892
Bruce Allan2b6b1682011-05-13 07:20:09 +00002893 if (ret_val)
2894 goto out;
2895 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002896 }
2897
Bruce Allan2b6b1682011-05-13 07:20:09 +00002898 e_dbg("reading PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2899 page << IGP_PAGE_SHIFT, reg);
2900
Bruce Allana4f58f52009-06-02 11:29:18 +00002901 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
2902 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002903out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002904 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002905 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002906
Bruce Allana4f58f52009-06-02 11:29:18 +00002907 return ret_val;
2908}
2909
2910/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002911 * e1000_read_phy_reg_hv - Read HV PHY register
2912 * @hw: pointer to the HW structure
2913 * @offset: register offset to be read
2914 * @data: pointer to the read data
2915 *
2916 * Acquires semaphore then reads the PHY register at offset and stores
2917 * the retrieved information in data. Release the acquired semaphore
2918 * before exiting.
2919 **/
2920s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2921{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002922 return __e1000_read_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002923}
2924
2925/**
2926 * e1000_read_phy_reg_hv_locked - Read HV PHY register
2927 * @hw: pointer to the HW structure
2928 * @offset: register offset to be read
2929 * @data: pointer to the read data
2930 *
2931 * Reads the PHY register at offset and stores the retrieved information
2932 * in data. Assumes semaphore already acquired.
2933 **/
2934s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data)
2935{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002936 return __e1000_read_phy_reg_hv(hw, offset, data, true, false);
2937}
2938
2939/**
2940 * e1000_read_phy_reg_page_hv - Read HV PHY register
2941 * @hw: pointer to the HW structure
2942 * @offset: register offset to write to
2943 * @data: data to write at register offset
2944 *
2945 * Reads the PHY register at offset and stores the retrieved information
2946 * in data. Assumes semaphore already acquired and page already set.
2947 **/
2948s32 e1000_read_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2949{
2950 return __e1000_read_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002951}
2952
2953/**
2954 * __e1000_write_phy_reg_hv - Write HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002955 * @hw: pointer to the HW structure
2956 * @offset: register offset to write to
2957 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002958 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002959 *
2960 * Acquires semaphore, if necessary, then writes the data to PHY register
2961 * at the offset. Release any acquired semaphores before exiting.
2962 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002963static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002964 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002965{
2966 s32 ret_val;
2967 u16 page = BM_PHY_REG_PAGE(offset);
2968 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002969 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002970
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002971 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002972 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002973 if (ret_val)
2974 return ret_val;
2975 }
2976
Bruce Allana4f58f52009-06-02 11:29:18 +00002977 /* Page 800 works differently than the rest so it has its own func */
2978 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002979 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
2980 false, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002981 goto out;
2982 }
2983
2984 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2985 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
2986 &data, false);
2987 goto out;
2988 }
2989
Bruce Allan2b6b1682011-05-13 07:20:09 +00002990 if (!page_set) {
2991 if (page == HV_INTC_FC_PAGE_START)
2992 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002993
Bruce Allane921eb12012-11-28 09:28:37 +00002994 /* Workaround MDIO accesses being disabled after entering IEEE
Bruce Allan2b6b1682011-05-13 07:20:09 +00002995 * Power Down (when bit 11 of the PHY Control register is set)
2996 */
2997 if ((hw->phy.type == e1000_phy_82578) &&
2998 (hw->phy.revision >= 1) &&
2999 (hw->phy.addr == 2) &&
Bruce Allan04499ec2012-04-13 00:08:31 +00003000 !(MAX_PHY_REG_ADDRESS & reg) && (data & (1 << 11))) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003001 u16 data2 = 0x7EFF;
3002 ret_val = e1000_access_phy_debug_regs_hv(hw,
3003 (1 << 6) | 0x3,
3004 &data2, false);
3005 if (ret_val)
3006 goto out;
3007 }
Bruce Allana4f58f52009-06-02 11:29:18 +00003008
Bruce Allan2b6b1682011-05-13 07:20:09 +00003009 if (reg > MAX_PHY_MULTI_PAGE_REG) {
3010 /* Page is shifted left, PHY expects (page x 32) */
3011 ret_val = e1000_set_page_igp(hw,
3012 (page << IGP_PAGE_SHIFT));
3013
3014 hw->phy.addr = phy_addr;
3015
3016 if (ret_val)
3017 goto out;
3018 }
Bruce Allana4f58f52009-06-02 11:29:18 +00003019 }
3020
Bruce Allan2b6b1682011-05-13 07:20:09 +00003021 e_dbg("writing PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
3022 page << IGP_PAGE_SHIFT, reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00003023
3024 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
3025 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003026
3027out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003028 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00003029 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003030
Bruce Allana4f58f52009-06-02 11:29:18 +00003031 return ret_val;
3032}
3033
3034/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003035 * e1000_write_phy_reg_hv - Write HV PHY register
3036 * @hw: pointer to the HW structure
3037 * @offset: register offset to write to
3038 * @data: data to write at register offset
3039 *
3040 * Acquires semaphore then writes the data to PHY register at the offset.
3041 * Release the acquired semaphores before exiting.
3042 **/
3043s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data)
3044{
Bruce Allan2b6b1682011-05-13 07:20:09 +00003045 return __e1000_write_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003046}
3047
3048/**
3049 * e1000_write_phy_reg_hv_locked - Write HV PHY register
3050 * @hw: pointer to the HW structure
3051 * @offset: register offset to write to
3052 * @data: data to write at register offset
3053 *
3054 * Writes the data to PHY register at the offset. Assumes semaphore
3055 * already acquired.
3056 **/
3057s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data)
3058{
Bruce Allan2b6b1682011-05-13 07:20:09 +00003059 return __e1000_write_phy_reg_hv(hw, offset, data, true, false);
3060}
3061
3062/**
3063 * e1000_write_phy_reg_page_hv - Write HV PHY register
3064 * @hw: pointer to the HW structure
3065 * @offset: register offset to write to
3066 * @data: data to write at register offset
3067 *
3068 * Writes the data to PHY register at the offset. Assumes semaphore
3069 * already acquired and page already set.
3070 **/
3071s32 e1000_write_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 data)
3072{
3073 return __e1000_write_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003074}
3075
3076/**
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003077 * e1000_get_phy_addr_for_hv_page - Get PHY address based on page
Bruce Allana4f58f52009-06-02 11:29:18 +00003078 * @page: page to be accessed
3079 **/
3080static u32 e1000_get_phy_addr_for_hv_page(u32 page)
3081{
3082 u32 phy_addr = 2;
3083
3084 if (page >= HV_INTC_FC_PAGE_START)
3085 phy_addr = 1;
3086
3087 return phy_addr;
3088}
3089
3090/**
3091 * e1000_access_phy_debug_regs_hv - Read HV PHY vendor specific high registers
3092 * @hw: pointer to the HW structure
3093 * @offset: register offset to be read or written
3094 * @data: pointer to the data to be read or written
Bruce Allan2b6b1682011-05-13 07:20:09 +00003095 * @read: determines if operation is read or write
Bruce Allana4f58f52009-06-02 11:29:18 +00003096 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003097 * Reads the PHY register at offset and stores the retreived information
3098 * in data. Assumes semaphore already acquired. Note that the procedure
Bruce Allan2b6b1682011-05-13 07:20:09 +00003099 * to access these regs uses the address port and data port to read/write.
3100 * These accesses done with PHY address 2 and without using pages.
Bruce Allana4f58f52009-06-02 11:29:18 +00003101 **/
3102static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
3103 u16 *data, bool read)
3104{
3105 s32 ret_val;
Bruce Allan70806a72013-01-05 05:08:37 +00003106 u32 addr_reg;
3107 u32 data_reg;
Bruce Allana4f58f52009-06-02 11:29:18 +00003108
3109 /* This takes care of the difference with desktop vs mobile phy */
3110 addr_reg = (hw->phy.type == e1000_phy_82578) ?
3111 I82578_ADDR_REG : I82577_ADDR_REG;
3112 data_reg = addr_reg + 1;
3113
Bruce Allana4f58f52009-06-02 11:29:18 +00003114 /* All operations in this function are phy address 2 */
3115 hw->phy.addr = 2;
3116
3117 /* masking with 0x3F to remove the page from offset */
3118 ret_val = e1000e_write_phy_reg_mdic(hw, addr_reg, (u16)offset & 0x3F);
3119 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003120 e_dbg("Could not write the Address Offset port register\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003121 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003122 }
3123
3124 /* Read or write the data value next */
3125 if (read)
3126 ret_val = e1000e_read_phy_reg_mdic(hw, data_reg, data);
3127 else
3128 ret_val = e1000e_write_phy_reg_mdic(hw, data_reg, *data);
3129
Bruce Allan5015e532012-02-08 02:55:56 +00003130 if (ret_val)
Bruce Allan2b6b1682011-05-13 07:20:09 +00003131 e_dbg("Could not access the Data port register\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003132
Bruce Allana4f58f52009-06-02 11:29:18 +00003133 return ret_val;
3134}
3135
3136/**
3137 * e1000_link_stall_workaround_hv - Si workaround
3138 * @hw: pointer to the HW structure
3139 *
3140 * This function works around a Si bug where the link partner can get
3141 * a link up indication before the PHY does. If small packets are sent
3142 * by the link partner they can be placed in the packet buffer without
3143 * being properly accounted for by the PHY and will stall preventing
3144 * further packets from being received. The workaround is to clear the
3145 * packet buffer after the PHY detects link up.
3146 **/
3147s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw)
3148{
3149 s32 ret_val = 0;
3150 u16 data;
3151
3152 if (hw->phy.type != e1000_phy_82578)
Bruce Allan5015e532012-02-08 02:55:56 +00003153 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003154
Bruce Allane65fa872009-07-01 13:27:31 +00003155 /* Do not apply workaround if in PHY loopback bit 14 set */
Bruce Allan482fed82011-01-06 14:29:49 +00003156 e1e_rphy(hw, PHY_CONTROL, &data);
Bruce Allane65fa872009-07-01 13:27:31 +00003157 if (data & PHY_CONTROL_LB)
Bruce Allan5015e532012-02-08 02:55:56 +00003158 return 0;
Bruce Allane65fa872009-07-01 13:27:31 +00003159
Bruce Allana4f58f52009-06-02 11:29:18 +00003160 /* check if link is up and at 1Gbps */
Bruce Allan482fed82011-01-06 14:29:49 +00003161 ret_val = e1e_rphy(hw, BM_CS_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003162 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003163 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003164
Bruce Allan3d3a1672012-02-23 03:13:18 +00003165 data &= BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3166 BM_CS_STATUS_SPEED_MASK;
Bruce Allana4f58f52009-06-02 11:29:18 +00003167
Bruce Allan3d3a1672012-02-23 03:13:18 +00003168 if (data != (BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3169 BM_CS_STATUS_SPEED_1000))
Bruce Allan5015e532012-02-08 02:55:56 +00003170 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003171
Bruce Allanbb9c5ee2012-02-23 03:31:29 +00003172 msleep(200);
Bruce Allana4f58f52009-06-02 11:29:18 +00003173
3174 /* flush the packets in the fifo buffer */
Bruce Allan482fed82011-01-06 14:29:49 +00003175 ret_val = e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC |
3176 HV_MUX_DATA_CTRL_FORCE_SPEED);
Bruce Allana4f58f52009-06-02 11:29:18 +00003177 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003178 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003179
Bruce Allan5015e532012-02-08 02:55:56 +00003180 return e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003181}
3182
3183/**
3184 * e1000_check_polarity_82577 - Checks the polarity.
3185 * @hw: pointer to the HW structure
3186 *
3187 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
3188 *
3189 * Polarity is determined based on the PHY specific status register.
3190 **/
3191s32 e1000_check_polarity_82577(struct e1000_hw *hw)
3192{
3193 struct e1000_phy_info *phy = &hw->phy;
3194 s32 ret_val;
3195 u16 data;
3196
Bruce Allan482fed82011-01-06 14:29:49 +00003197 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003198
3199 if (!ret_val)
3200 phy->cable_polarity = (data & I82577_PHY_STATUS2_REV_POLARITY)
3201 ? e1000_rev_polarity_reversed
3202 : e1000_rev_polarity_normal;
3203
3204 return ret_val;
3205}
3206
3207/**
3208 * e1000_phy_force_speed_duplex_82577 - Force speed/duplex for I82577 PHY
3209 * @hw: pointer to the HW structure
3210 *
Bruce Allaneab50ff2010-05-10 15:01:30 +00003211 * Calls the PHY setup function to force speed and duplex.
Bruce Allana4f58f52009-06-02 11:29:18 +00003212 **/
3213s32 e1000_phy_force_speed_duplex_82577(struct e1000_hw *hw)
3214{
3215 struct e1000_phy_info *phy = &hw->phy;
3216 s32 ret_val;
3217 u16 phy_data;
3218 bool link;
3219
Bruce Allan482fed82011-01-06 14:29:49 +00003220 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003221 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003222 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003223
3224 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
3225
Bruce Allan482fed82011-01-06 14:29:49 +00003226 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003227 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003228 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003229
Bruce Allana4f58f52009-06-02 11:29:18 +00003230 udelay(1);
3231
3232 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003233 e_dbg("Waiting for forced speed/duplex link on 82577 phy\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003234
Bruce Allan3d3a1672012-02-23 03:13:18 +00003235 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3236 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003237 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003238 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003239
3240 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003241 e_dbg("Link taking longer than expected.\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003242
3243 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00003244 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3245 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003246 }
3247
Bruce Allana4f58f52009-06-02 11:29:18 +00003248 return ret_val;
3249}
3250
3251/**
3252 * e1000_get_phy_info_82577 - Retrieve I82577 PHY information
3253 * @hw: pointer to the HW structure
3254 *
3255 * Read PHY status to determine if link is up. If link is up, then
3256 * set/determine 10base-T extended distance and polarity correction. Read
3257 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
3258 * determine on the cable length, local and remote receiver.
3259 **/
3260s32 e1000_get_phy_info_82577(struct e1000_hw *hw)
3261{
3262 struct e1000_phy_info *phy = &hw->phy;
3263 s32 ret_val;
3264 u16 data;
3265 bool link;
3266
3267 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
3268 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003269 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003270
3271 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003272 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003273 return -E1000_ERR_CONFIG;
Bruce Allana4f58f52009-06-02 11:29:18 +00003274 }
3275
3276 phy->polarity_correction = true;
3277
3278 ret_val = e1000_check_polarity_82577(hw);
3279 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003280 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003281
Bruce Allan482fed82011-01-06 14:29:49 +00003282 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003283 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003284 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003285
Bruce Allan04499ec2012-04-13 00:08:31 +00003286 phy->is_mdix = !!(data & I82577_PHY_STATUS2_MDIX);
Bruce Allana4f58f52009-06-02 11:29:18 +00003287
3288 if ((data & I82577_PHY_STATUS2_SPEED_MASK) ==
3289 I82577_PHY_STATUS2_SPEED_1000MBPS) {
3290 ret_val = hw->phy.ops.get_cable_length(hw);
3291 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003292 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003293
Bruce Allan482fed82011-01-06 14:29:49 +00003294 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003295 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003296 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003297
3298 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
3299 ? e1000_1000t_rx_status_ok
3300 : e1000_1000t_rx_status_not_ok;
3301
3302 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
3303 ? e1000_1000t_rx_status_ok
3304 : e1000_1000t_rx_status_not_ok;
3305 } else {
3306 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
3307 phy->local_rx = e1000_1000t_rx_status_undefined;
3308 phy->remote_rx = e1000_1000t_rx_status_undefined;
3309 }
3310
Bruce Allan5015e532012-02-08 02:55:56 +00003311 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003312}
3313
3314/**
3315 * e1000_get_cable_length_82577 - Determine cable length for 82577 PHY
3316 * @hw: pointer to the HW structure
3317 *
3318 * Reads the diagnostic status register and verifies result is valid before
3319 * placing it in the phy_cable_length field.
3320 **/
3321s32 e1000_get_cable_length_82577(struct e1000_hw *hw)
3322{
3323 struct e1000_phy_info *phy = &hw->phy;
3324 s32 ret_val;
3325 u16 phy_data, length;
3326
Bruce Allan482fed82011-01-06 14:29:49 +00003327 ret_val = e1e_rphy(hw, I82577_PHY_DIAG_STATUS, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003328 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003329 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003330
3331 length = (phy_data & I82577_DSTATUS_CABLE_LENGTH) >>
3332 I82577_DSTATUS_CABLE_LENGTH_SHIFT;
3333
3334 if (length == E1000_CABLE_LENGTH_UNDEFINED)
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00003335 return -E1000_ERR_PHY;
Bruce Allana4f58f52009-06-02 11:29:18 +00003336
3337 phy->cable_length = length;
3338
Bruce Allan5015e532012-02-08 02:55:56 +00003339 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003340}