blob: 73d7813b98af61173198ae0b05d7d98213a3d57b [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);
Auke Kokbc7f75f2007-09-17 12:30:59 -070033static s32 e1000_wait_autoneg(struct e1000_hw *hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -070034static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +000035 u16 *data, bool read, bool page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +000036static u32 e1000_get_phy_addr_for_hv_page(u32 page);
37static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
Bruce Allan1f96012d2013-01-05 03:06:54 +000038 u16 *data, bool read);
Auke Kokbc7f75f2007-09-17 12:30:59 -070039
40/* Cable length tables */
Bruce Allan64806412010-12-11 05:53:42 +000041static const u16 e1000_m88_cable_length_table[] = {
42 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED };
Bruce Allaneb656d42009-12-01 15:47:02 +000043#define M88E1000_CABLE_LENGTH_TABLE_SIZE \
44 ARRAY_SIZE(e1000_m88_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070045
Bruce Allan64806412010-12-11 05:53:42 +000046static const u16 e1000_igp_2_cable_length_table[] = {
47 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, 0, 0, 0, 3,
48 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, 6, 10, 14, 18, 22,
49 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, 21, 26, 31, 35, 40,
50 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, 40, 45, 51, 56, 61,
51 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, 60, 66, 72, 77, 82,
52 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, 83, 89, 95,
53 100, 105, 109, 113, 116, 119, 122, 124, 104, 109, 114, 118, 121,
54 124};
Auke Kokbc7f75f2007-09-17 12:30:59 -070055#define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +020056 ARRAY_SIZE(e1000_igp_2_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070057
Bruce Allana4f58f52009-06-02 11:29:18 +000058#define BM_PHY_REG_PAGE(offset) \
59 ((u16)(((offset) >> PHY_PAGE_SHIFT) & 0xFFFF))
60#define BM_PHY_REG_NUM(offset) \
61 ((u16)(((offset) & MAX_PHY_REG_ADDRESS) |\
62 (((offset) >> (PHY_UPPER_SHIFT - PHY_PAGE_SHIFT)) &\
63 ~MAX_PHY_REG_ADDRESS)))
64
65#define HV_INTC_FC_PAGE_START 768
66#define I82578_ADDR_REG 29
67#define I82577_ADDR_REG 16
68#define I82577_CFG_REG 22
69#define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15)
70#define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */
71#define I82577_CTRL_REG 23
Bruce Allana4f58f52009-06-02 11:29:18 +000072
73/* 82577 specific PHY registers */
74#define I82577_PHY_CTRL_2 18
75#define I82577_PHY_STATUS_2 26
76#define I82577_PHY_DIAG_STATUS 31
77
78/* I82577 PHY Status 2 */
79#define I82577_PHY_STATUS2_REV_POLARITY 0x0400
80#define I82577_PHY_STATUS2_MDIX 0x0800
81#define I82577_PHY_STATUS2_SPEED_MASK 0x0300
82#define I82577_PHY_STATUS2_SPEED_1000MBPS 0x0200
83
84/* I82577 PHY Control 2 */
Bruce W Allane86fd892012-07-26 02:30:59 +000085#define I82577_PHY_CTRL2_MANUAL_MDIX 0x0200
86#define I82577_PHY_CTRL2_AUTO_MDI_MDIX 0x0400
87#define I82577_PHY_CTRL2_MDIX_CFG_MASK 0x0600
Bruce Allana4f58f52009-06-02 11:29:18 +000088
89/* I82577 PHY Diagnostics Status */
90#define I82577_DSTATUS_CABLE_LENGTH 0x03FC
91#define I82577_DSTATUS_CABLE_LENGTH_SHIFT 2
92
93/* BM PHY Copper Specific Control 1 */
94#define BM_CS_CTRL1 16
95
Bruce Allana4f58f52009-06-02 11:29:18 +000096#define HV_MUX_DATA_CTRL PHY_REG(776, 16)
97#define HV_MUX_DATA_CTRL_GEN_TO_MAC 0x0400
98#define HV_MUX_DATA_CTRL_FORCE_SPEED 0x0004
99
Auke Kokbc7f75f2007-09-17 12:30:59 -0700100/**
101 * e1000e_check_reset_block_generic - Check if PHY reset is blocked
102 * @hw: pointer to the HW structure
103 *
104 * Read the PHY management control register and check whether a PHY reset
105 * is blocked. If a reset is not blocked return 0, otherwise
106 * return E1000_BLK_PHY_RESET (12).
107 **/
108s32 e1000e_check_reset_block_generic(struct e1000_hw *hw)
109{
110 u32 manc;
111
112 manc = er32(MANC);
113
114 return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ?
115 E1000_BLK_PHY_RESET : 0;
116}
117
118/**
119 * e1000e_get_phy_id - Retrieve the PHY ID and revision
120 * @hw: pointer to the HW structure
121 *
122 * Reads the PHY registers and stores the PHY ID and possibly the PHY
123 * revision in the hardware structure.
124 **/
125s32 e1000e_get_phy_id(struct e1000_hw *hw)
126{
127 struct e1000_phy_info *phy = &hw->phy;
Bruce Allana4f58f52009-06-02 11:29:18 +0000128 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700129 u16 phy_id;
Bruce Allana4f58f52009-06-02 11:29:18 +0000130 u16 retry_count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700131
Bruce Allan668018d2012-01-31 07:02:56 +0000132 if (!phy->ops.read_reg)
Bruce Allan5015e532012-02-08 02:55:56 +0000133 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700134
Bruce Allana4f58f52009-06-02 11:29:18 +0000135 while (retry_count < 2) {
136 ret_val = e1e_rphy(hw, PHY_ID1, &phy_id);
137 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000138 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700139
Bruce Allana4f58f52009-06-02 11:29:18 +0000140 phy->id = (u32)(phy_id << 16);
141 udelay(20);
142 ret_val = e1e_rphy(hw, PHY_ID2, &phy_id);
143 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000144 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700145
Bruce Allana4f58f52009-06-02 11:29:18 +0000146 phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
147 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
148
149 if (phy->id != 0 && phy->id != PHY_REVISION_MASK)
Bruce Allan5015e532012-02-08 02:55:56 +0000150 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +0000151
Bruce Allana4f58f52009-06-02 11:29:18 +0000152 retry_count++;
153 }
Bruce Allan5015e532012-02-08 02:55:56 +0000154
155 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700156}
157
158/**
159 * e1000e_phy_reset_dsp - Reset PHY DSP
160 * @hw: pointer to the HW structure
161 *
162 * Reset the digital signal processor.
163 **/
164s32 e1000e_phy_reset_dsp(struct e1000_hw *hw)
165{
166 s32 ret_val;
167
168 ret_val = e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
169 if (ret_val)
170 return ret_val;
171
172 return e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0);
173}
174
175/**
David Graham2d9498f2008-04-23 11:09:14 -0700176 * e1000e_read_phy_reg_mdic - Read MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700177 * @hw: pointer to the HW structure
178 * @offset: register offset to be read
179 * @data: pointer to the read data
180 *
Auke Kok489815c2008-02-21 15:11:07 -0800181 * Reads the MDI control register in the PHY at offset and stores the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700182 * information read to data.
183 **/
David Graham2d9498f2008-04-23 11:09:14 -0700184s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700185{
186 struct e1000_phy_info *phy = &hw->phy;
187 u32 i, mdic = 0;
188
189 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000190 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700191 return -E1000_ERR_PARAM;
192 }
193
Bruce Allane921eb12012-11-28 09:28:37 +0000194 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 * Control register. The MAC will take care of interfacing with the
196 * PHY to retrieve the desired data.
197 */
198 mdic = ((offset << E1000_MDIC_REG_SHIFT) |
199 (phy->addr << E1000_MDIC_PHY_SHIFT) |
200 (E1000_MDIC_OP_READ));
201
202 ew32(MDIC, mdic);
203
Bruce Allane921eb12012-11-28 09:28:37 +0000204 /* Poll the ready bit to see if the MDI read completed
Bruce Allanad680762008-03-28 09:15:03 -0700205 * Increasing the time out as testing showed failures with
206 * the lower time out
207 */
David Graham2d9498f2008-04-23 11:09:14 -0700208 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209 udelay(50);
210 mdic = er32(MDIC);
211 if (mdic & E1000_MDIC_READY)
212 break;
213 }
214 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000215 e_dbg("MDI Read did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700216 return -E1000_ERR_PHY;
217 }
218 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000219 e_dbg("MDI Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700220 return -E1000_ERR_PHY;
221 }
222 *data = (u16) mdic;
223
Bruce Allane921eb12012-11-28 09:28:37 +0000224 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000225 * reading duplicate data in the next MDIC transaction.
226 */
227 if (hw->mac.type == e1000_pch2lan)
228 udelay(100);
229
Auke Kokbc7f75f2007-09-17 12:30:59 -0700230 return 0;
231}
232
233/**
David Graham2d9498f2008-04-23 11:09:14 -0700234 * e1000e_write_phy_reg_mdic - Write MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700235 * @hw: pointer to the HW structure
236 * @offset: register offset to write to
237 * @data: data to write to register at offset
238 *
239 * Writes data to MDI control register in the PHY at offset.
240 **/
David Graham2d9498f2008-04-23 11:09:14 -0700241s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700242{
243 struct e1000_phy_info *phy = &hw->phy;
244 u32 i, mdic = 0;
245
246 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000247 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700248 return -E1000_ERR_PARAM;
249 }
250
Bruce Allane921eb12012-11-28 09:28:37 +0000251 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700252 * Control register. The MAC will take care of interfacing with the
253 * PHY to retrieve the desired data.
254 */
255 mdic = (((u32)data) |
256 (offset << E1000_MDIC_REG_SHIFT) |
257 (phy->addr << E1000_MDIC_PHY_SHIFT) |
258 (E1000_MDIC_OP_WRITE));
259
260 ew32(MDIC, mdic);
261
Bruce Allane921eb12012-11-28 09:28:37 +0000262 /* Poll the ready bit to see if the MDI read completed
David Graham2d9498f2008-04-23 11:09:14 -0700263 * Increasing the time out as testing showed failures with
264 * the lower time out
265 */
266 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
267 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700268 mdic = er32(MDIC);
269 if (mdic & E1000_MDIC_READY)
270 break;
271 }
272 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000273 e_dbg("MDI Write did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700274 return -E1000_ERR_PHY;
275 }
David Graham2d9498f2008-04-23 11:09:14 -0700276 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000277 e_dbg("MDI Error\n");
David Graham2d9498f2008-04-23 11:09:14 -0700278 return -E1000_ERR_PHY;
279 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700280
Bruce Allane921eb12012-11-28 09:28:37 +0000281 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000282 * reading duplicate data in the next MDIC transaction.
283 */
284 if (hw->mac.type == e1000_pch2lan)
285 udelay(100);
286
Auke Kokbc7f75f2007-09-17 12:30:59 -0700287 return 0;
288}
289
290/**
291 * e1000e_read_phy_reg_m88 - Read m88 PHY register
292 * @hw: pointer to the HW structure
293 * @offset: register offset to be read
294 * @data: pointer to the read data
295 *
296 * Acquires semaphore, if necessary, then reads the PHY register at offset
297 * and storing the retrieved information in data. Release any acquired
298 * semaphores before exiting.
299 **/
300s32 e1000e_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data)
301{
302 s32 ret_val;
303
Bruce Allan94d81862009-11-20 23:25:26 +0000304 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700305 if (ret_val)
306 return ret_val;
307
David Graham2d9498f2008-04-23 11:09:14 -0700308 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
309 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700310
Bruce Allan94d81862009-11-20 23:25:26 +0000311 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700312
313 return ret_val;
314}
315
316/**
317 * e1000e_write_phy_reg_m88 - Write m88 PHY register
318 * @hw: pointer to the HW structure
319 * @offset: register offset to write to
320 * @data: data to write at register offset
321 *
322 * Acquires semaphore, if necessary, then writes the data to PHY register
323 * at the offset. Release any acquired semaphores before exiting.
324 **/
325s32 e1000e_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data)
326{
327 s32 ret_val;
328
Bruce Allan94d81862009-11-20 23:25:26 +0000329 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700330 if (ret_val)
331 return ret_val;
332
David Graham2d9498f2008-04-23 11:09:14 -0700333 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
334 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700335
Bruce Allan94d81862009-11-20 23:25:26 +0000336 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700337
338 return ret_val;
339}
340
341/**
Bruce Allan2b6b1682011-05-13 07:20:09 +0000342 * e1000_set_page_igp - Set page as on IGP-like PHY(s)
343 * @hw: pointer to the HW structure
344 * @page: page to set (shifted left when necessary)
345 *
346 * Sets PHY page required for PHY register access. Assumes semaphore is
347 * already acquired. Note, this function sets phy.addr to 1 so the caller
348 * must set it appropriately (if necessary) after this function returns.
349 **/
350s32 e1000_set_page_igp(struct e1000_hw *hw, u16 page)
351{
352 e_dbg("Setting page 0x%x\n", page);
353
354 hw->phy.addr = 1;
355
356 return e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, page);
357}
358
359/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000360 * __e1000e_read_phy_reg_igp - Read igp PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700361 * @hw: pointer to the HW structure
362 * @offset: register offset to be read
363 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000364 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700365 *
366 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000367 * and stores the retrieved information in data. Release any acquired
Auke Kokbc7f75f2007-09-17 12:30:59 -0700368 * semaphores before exiting.
369 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000370static s32 __e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data,
371 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700372{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000373 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700374
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000375 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000376 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000377 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000378
Bruce Allan94d81862009-11-20 23:25:26 +0000379 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000380 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000381 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000382 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700383
Bruce Allan5015e532012-02-08 02:55:56 +0000384 if (offset > MAX_PHY_MULTI_PAGE_REG)
David Graham2d9498f2008-04-23 11:09:14 -0700385 ret_val = e1000e_write_phy_reg_mdic(hw,
386 IGP01E1000_PHY_PAGE_SELECT,
387 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000388 if (!ret_val)
389 ret_val = e1000e_read_phy_reg_mdic(hw,
390 MAX_PHY_REG_ADDRESS & offset,
391 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000392 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000393 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +0000394
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000395 return ret_val;
396}
Auke Kokbc7f75f2007-09-17 12:30:59 -0700397
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000398/**
399 * e1000e_read_phy_reg_igp - Read igp PHY register
400 * @hw: pointer to the HW structure
401 * @offset: register offset to be read
402 * @data: pointer to the read data
403 *
404 * Acquires semaphore then reads the PHY register at offset and stores the
405 * retrieved information in data.
406 * Release the acquired semaphore before exiting.
407 **/
408s32 e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
409{
410 return __e1000e_read_phy_reg_igp(hw, offset, data, false);
411}
412
413/**
414 * e1000e_read_phy_reg_igp_locked - Read igp PHY register
415 * @hw: pointer to the HW structure
416 * @offset: register offset to be read
417 * @data: pointer to the read data
418 *
419 * Reads the PHY register at offset and stores the retrieved information
420 * in data. Assumes semaphore already acquired.
421 **/
422s32 e1000e_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data)
423{
424 return __e1000e_read_phy_reg_igp(hw, offset, data, true);
425}
426
427/**
428 * e1000e_write_phy_reg_igp - Write igp PHY register
429 * @hw: pointer to the HW structure
430 * @offset: register offset to write to
431 * @data: data to write at register offset
432 * @locked: semaphore has already been acquired or not
433 *
434 * Acquires semaphore, if necessary, then writes the data to PHY register
435 * at the offset. Release any acquired semaphores before exiting.
436 **/
437static s32 __e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data,
438 bool locked)
439{
440 s32 ret_val = 0;
441
442 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000443 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000444 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000445
Bruce Allan94d81862009-11-20 23:25:26 +0000446 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000447 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000448 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000449 }
450
Bruce Allan5015e532012-02-08 02:55:56 +0000451 if (offset > MAX_PHY_MULTI_PAGE_REG)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000452 ret_val = e1000e_write_phy_reg_mdic(hw,
453 IGP01E1000_PHY_PAGE_SELECT,
454 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000455 if (!ret_val)
456 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS &
457 offset,
458 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000459 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000460 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000461
Auke Kokbc7f75f2007-09-17 12:30:59 -0700462 return ret_val;
463}
464
465/**
466 * e1000e_write_phy_reg_igp - Write igp PHY register
467 * @hw: pointer to the HW structure
468 * @offset: register offset to write to
469 * @data: data to write at register offset
470 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000471 * Acquires semaphore then writes the data to PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700472 * at the offset. Release any acquired semaphores before exiting.
473 **/
474s32 e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
475{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000476 return __e1000e_write_phy_reg_igp(hw, offset, data, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700477}
478
479/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000480 * e1000e_write_phy_reg_igp_locked - Write igp PHY register
481 * @hw: pointer to the HW structure
482 * @offset: register offset to write to
483 * @data: data to write at register offset
484 *
485 * Writes the data to PHY register at the offset.
486 * Assumes semaphore already acquired.
487 **/
488s32 e1000e_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data)
489{
490 return __e1000e_write_phy_reg_igp(hw, offset, data, true);
491}
492
493/**
494 * __e1000_read_kmrn_reg - Read kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700495 * @hw: pointer to the HW structure
496 * @offset: register offset to be read
497 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000498 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700499 *
500 * Acquires semaphore, if necessary. Then reads the PHY register at offset
501 * using the kumeran interface. The information retrieved is stored in data.
502 * Release any acquired semaphores before exiting.
503 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000504static s32 __e1000_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data,
505 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700506{
507 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700508
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000509 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000510 s32 ret_val = 0;
511
Bruce Allan668018d2012-01-31 07:02:56 +0000512 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000513 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000514
Bruce Allan94d81862009-11-20 23:25:26 +0000515 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000516 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000517 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000518 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700519
520 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
521 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
522 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000523 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700524
525 udelay(2);
526
527 kmrnctrlsta = er32(KMRNCTRLSTA);
528 *data = (u16)kmrnctrlsta;
529
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000530 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000531 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700532
Bruce Allan5015e532012-02-08 02:55:56 +0000533 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700534}
535
536/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000537 * e1000e_read_kmrn_reg - Read kumeran register
538 * @hw: pointer to the HW structure
539 * @offset: register offset to be read
540 * @data: pointer to the read data
541 *
542 * Acquires semaphore then reads the PHY register at offset using the
543 * kumeran interface. The information retrieved is stored in data.
544 * Release the acquired semaphore before exiting.
545 **/
546s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data)
547{
548 return __e1000_read_kmrn_reg(hw, offset, data, false);
549}
550
551/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000552 * e1000e_read_kmrn_reg_locked - Read kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000553 * @hw: pointer to the HW structure
554 * @offset: register offset to be read
555 * @data: pointer to the read data
556 *
557 * Reads the PHY register at offset using the kumeran interface. The
558 * information retrieved is stored in data.
559 * Assumes semaphore already acquired.
560 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000561s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000562{
563 return __e1000_read_kmrn_reg(hw, offset, data, true);
564}
565
566/**
567 * __e1000_write_kmrn_reg - Write kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700568 * @hw: pointer to the HW structure
569 * @offset: register offset to write to
570 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000571 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700572 *
573 * Acquires semaphore, if necessary. Then write the data to PHY register
574 * at the offset using the kumeran interface. Release any acquired semaphores
575 * before exiting.
576 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000577static s32 __e1000_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data,
578 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700579{
580 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700581
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000582 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000583 s32 ret_val = 0;
584
Bruce Allan668018d2012-01-31 07:02:56 +0000585 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000586 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000587
Bruce Allan94d81862009-11-20 23:25:26 +0000588 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000589 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000590 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000591 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700592
593 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
594 E1000_KMRNCTRLSTA_OFFSET) | data;
595 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000596 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700597
598 udelay(2);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700599
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000600 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000601 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000602
Bruce Allan5015e532012-02-08 02:55:56 +0000603 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700604}
605
606/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000607 * e1000e_write_kmrn_reg - Write kumeran register
608 * @hw: pointer to the HW structure
609 * @offset: register offset to write to
610 * @data: data to write at register offset
611 *
612 * Acquires semaphore then writes the data to the PHY register at the offset
613 * using the kumeran interface. Release the acquired semaphore before exiting.
614 **/
615s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data)
616{
617 return __e1000_write_kmrn_reg(hw, offset, data, false);
618}
619
620/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000621 * e1000e_write_kmrn_reg_locked - Write kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000622 * @hw: pointer to the HW structure
623 * @offset: register offset to write to
624 * @data: data to write at register offset
625 *
626 * Write the data to PHY register at the offset using the kumeran interface.
627 * Assumes semaphore already acquired.
628 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000629s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000630{
631 return __e1000_write_kmrn_reg(hw, offset, data, true);
632}
633
634/**
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000635 * e1000_set_master_slave_mode - Setup PHY for Master/slave mode
636 * @hw: pointer to the HW structure
637 *
638 * Sets up Master/slave mode
639 **/
640static s32 e1000_set_master_slave_mode(struct e1000_hw *hw)
641{
642 s32 ret_val;
643 u16 phy_data;
644
645 /* Resolve Master/Slave mode */
646 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &phy_data);
647 if (ret_val)
648 return ret_val;
649
650 /* load defaults for future use */
651 hw->phy.original_ms_type = (phy_data & CR_1000T_MS_ENABLE) ?
652 ((phy_data & CR_1000T_MS_VALUE) ?
653 e1000_ms_force_master : e1000_ms_force_slave) : e1000_ms_auto;
654
655 switch (hw->phy.ms_type) {
656 case e1000_ms_force_master:
657 phy_data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
658 break;
659 case e1000_ms_force_slave:
660 phy_data |= CR_1000T_MS_ENABLE;
661 phy_data &= ~(CR_1000T_MS_VALUE);
662 break;
663 case e1000_ms_auto:
664 phy_data &= ~CR_1000T_MS_ENABLE;
665 /* fall-through */
666 default:
667 break;
668 }
669
670 return e1e_wphy(hw, PHY_1000T_CTRL, phy_data);
671}
672
673/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000674 * e1000_copper_link_setup_82577 - Setup 82577 PHY for copper link
675 * @hw: pointer to the HW structure
676 *
677 * Sets up Carrier-sense on Transmit and downshift values.
678 **/
679s32 e1000_copper_link_setup_82577(struct e1000_hw *hw)
680{
Bruce Allana4f58f52009-06-02 11:29:18 +0000681 s32 ret_val;
682 u16 phy_data;
683
Bruce Allanaf667a22010-12-31 06:10:01 +0000684 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Bruce Allan482fed82011-01-06 14:29:49 +0000685 ret_val = e1e_rphy(hw, I82577_CFG_REG, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000686 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000687 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +0000688
689 phy_data |= I82577_CFG_ASSERT_CRS_ON_TX;
690
691 /* Enable downshift */
692 phy_data |= I82577_CFG_ENABLE_DOWNSHIFT;
693
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000694 ret_val = e1e_wphy(hw, I82577_CFG_REG, phy_data);
695 if (ret_val)
696 return ret_val;
697
Bruce W Allane86fd892012-07-26 02:30:59 +0000698 /* Set MDI/MDIX mode */
699 ret_val = e1e_rphy(hw, I82577_PHY_CTRL_2, &phy_data);
700 if (ret_val)
701 return ret_val;
702 phy_data &= ~I82577_PHY_CTRL2_MDIX_CFG_MASK;
Bruce Allane921eb12012-11-28 09:28:37 +0000703 /* Options:
Bruce W Allane86fd892012-07-26 02:30:59 +0000704 * 0 - Auto (default)
705 * 1 - MDI mode
706 * 2 - MDI-X mode
707 */
708 switch (hw->phy.mdix) {
709 case 1:
710 break;
711 case 2:
712 phy_data |= I82577_PHY_CTRL2_MANUAL_MDIX;
713 break;
714 case 0:
715 default:
716 phy_data |= I82577_PHY_CTRL2_AUTO_MDI_MDIX;
717 break;
718 }
719 ret_val = e1e_wphy(hw, I82577_PHY_CTRL_2, phy_data);
720 if (ret_val)
721 return ret_val;
722
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000723 return e1000_set_master_slave_mode(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000724}
725
726/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700727 * e1000e_copper_link_setup_m88 - Setup m88 PHY's for copper link
728 * @hw: pointer to the HW structure
729 *
730 * Sets up MDI/MDI-X and polarity for m88 PHY's. If necessary, transmit clock
731 * and downshift values are set also.
732 **/
733s32 e1000e_copper_link_setup_m88(struct e1000_hw *hw)
734{
735 struct e1000_phy_info *phy = &hw->phy;
736 s32 ret_val;
737 u16 phy_data;
738
Bruce Allanad680762008-03-28 09:15:03 -0700739 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700740 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
741 if (ret_val)
742 return ret_val;
743
Bruce Allana4f58f52009-06-02 11:29:18 +0000744 /* For BM PHY this bit is downshift enable */
745 if (phy->type != e1000_phy_bm)
David Graham2d9498f2008-04-23 11:09:14 -0700746 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700747
Bruce Allane921eb12012-11-28 09:28:37 +0000748 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700749 * MDI/MDI-X = 0 (default)
750 * 0 - Auto for all speeds
751 * 1 - MDI mode
752 * 2 - MDI-X mode
753 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
754 */
755 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
756
757 switch (phy->mdix) {
758 case 1:
759 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
760 break;
761 case 2:
762 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
763 break;
764 case 3:
765 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
766 break;
767 case 0:
768 default:
769 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
770 break;
771 }
772
Bruce Allane921eb12012-11-28 09:28:37 +0000773 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700774 * disable_polarity_correction = 0 (default)
775 * Automatic Correction for Reversed Cable Polarity
776 * 0 - Disabled
777 * 1 - Enabled
778 */
779 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
Bruce Allan04499ec2012-04-13 00:08:31 +0000780 if (phy->disable_polarity_correction)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700781 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
782
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700783 /* Enable downshift on BM (disabled by default) */
Matthew Vick885fe7b2012-04-25 07:25:18 +0000784 if (phy->type == e1000_phy_bm) {
785 /* For 82574/82583, first disable then enable downshift */
786 if (phy->id == BME1000_E_PHY_ID_R2) {
787 phy_data &= ~BME1000_PSCR_ENABLE_DOWNSHIFT;
788 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL,
789 phy_data);
790 if (ret_val)
791 return ret_val;
792 /* Commit the changes. */
793 ret_val = e1000e_commit_phy(hw);
794 if (ret_val) {
795 e_dbg("Error committing the PHY changes\n");
796 return ret_val;
797 }
798 }
799
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700800 phy_data |= BME1000_PSCR_ENABLE_DOWNSHIFT;
Matthew Vick885fe7b2012-04-25 07:25:18 +0000801 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700802
Auke Kokbc7f75f2007-09-17 12:30:59 -0700803 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
804 if (ret_val)
805 return ret_val;
806
Bruce Allan4662e822008-08-26 18:37:06 -0700807 if ((phy->type == e1000_phy_m88) &&
808 (phy->revision < E1000_REVISION_4) &&
809 (phy->id != BME1000_E_PHY_ID_R2)) {
Bruce Allane921eb12012-11-28 09:28:37 +0000810 /* Force TX_CLK in the Extended PHY Specific Control Register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700811 * to 25MHz clock.
812 */
813 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
814 if (ret_val)
815 return ret_val;
816
817 phy_data |= M88E1000_EPSCR_TX_CLK_25;
818
819 if ((phy->revision == 2) &&
820 (phy->id == M88E1111_I_PHY_ID)) {
821 /* 82573L PHY - set the downshift counter to 5x. */
822 phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
823 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
824 } else {
825 /* Configure Master and Slave downshift values */
826 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
827 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
828 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
829 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
830 }
831 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
832 if (ret_val)
833 return ret_val;
834 }
835
Bruce Allan4662e822008-08-26 18:37:06 -0700836 if ((phy->type == e1000_phy_bm) && (phy->id == BME1000_E_PHY_ID_R2)) {
837 /* Set PHY page 0, register 29 to 0x0003 */
838 ret_val = e1e_wphy(hw, 29, 0x0003);
839 if (ret_val)
840 return ret_val;
841
842 /* Set PHY page 0, register 30 to 0x0000 */
843 ret_val = e1e_wphy(hw, 30, 0x0000);
844 if (ret_val)
845 return ret_val;
846 }
847
Auke Kokbc7f75f2007-09-17 12:30:59 -0700848 /* Commit the changes. */
849 ret_val = e1000e_commit_phy(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000850 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000851 e_dbg("Error committing the PHY changes\n");
Bruce Allana4f58f52009-06-02 11:29:18 +0000852 return ret_val;
853 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700854
Bruce Allana4f58f52009-06-02 11:29:18 +0000855 if (phy->type == e1000_phy_82578) {
Bruce Allan482fed82011-01-06 14:29:49 +0000856 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000857 if (ret_val)
858 return ret_val;
859
860 /* 82578 PHY - set the downshift count to 1x. */
861 phy_data |= I82578_EPSCR_DOWNSHIFT_ENABLE;
862 phy_data &= ~I82578_EPSCR_DOWNSHIFT_COUNTER_MASK;
Bruce Allan482fed82011-01-06 14:29:49 +0000863 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000864 if (ret_val)
865 return ret_val;
866 }
867
868 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700869}
870
871/**
872 * e1000e_copper_link_setup_igp - Setup igp PHY's for copper link
873 * @hw: pointer to the HW structure
874 *
875 * Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for
876 * igp PHY's.
877 **/
878s32 e1000e_copper_link_setup_igp(struct e1000_hw *hw)
879{
880 struct e1000_phy_info *phy = &hw->phy;
881 s32 ret_val;
882 u16 data;
883
884 ret_val = e1000_phy_hw_reset(hw);
885 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000886 e_dbg("Error resetting the PHY.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700887 return ret_val;
888 }
889
Bruce Allane921eb12012-11-28 09:28:37 +0000890 /* Wait 100ms for MAC to configure PHY from NVM settings, to avoid
David Graham2d9498f2008-04-23 11:09:14 -0700891 * timeout issues when LFS is enabled.
892 */
893 msleep(100);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700894
895 /* disable lplu d0 during driver init */
Bruce Allan7de89f02013-01-05 08:06:03 +0000896 if (hw->phy.ops.set_d0_lplu_state) {
897 ret_val = hw->phy.ops.set_d0_lplu_state(hw, false);
898 if (ret_val) {
899 e_dbg("Error Disabling LPLU D0\n");
900 return ret_val;
901 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700902 }
903 /* Configure mdi-mdix settings */
904 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &data);
905 if (ret_val)
906 return ret_val;
907
908 data &= ~IGP01E1000_PSCR_AUTO_MDIX;
909
910 switch (phy->mdix) {
911 case 1:
912 data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
913 break;
914 case 2:
915 data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
916 break;
917 case 0:
918 default:
919 data |= IGP01E1000_PSCR_AUTO_MDIX;
920 break;
921 }
922 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, data);
923 if (ret_val)
924 return ret_val;
925
926 /* set auto-master slave resolution settings */
927 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +0000928 /* when autonegotiation advertisement is only 1000Mbps then we
Auke Kokbc7f75f2007-09-17 12:30:59 -0700929 * should disable SmartSpeed and enable Auto MasterSlave
Bruce Allanad680762008-03-28 09:15:03 -0700930 * resolution as hardware default.
931 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700932 if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
933 /* Disable SmartSpeed */
934 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700935 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700936 if (ret_val)
937 return ret_val;
938
939 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
940 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700941 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700942 if (ret_val)
943 return ret_val;
944
945 /* Set auto Master/Slave resolution process */
946 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &data);
947 if (ret_val)
948 return ret_val;
949
950 data &= ~CR_1000T_MS_ENABLE;
951 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, data);
952 if (ret_val)
953 return ret_val;
954 }
955
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000956 ret_val = e1000_set_master_slave_mode(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700957 }
958
959 return ret_val;
960}
961
962/**
963 * e1000_phy_setup_autoneg - Configure PHY for auto-negotiation
964 * @hw: pointer to the HW structure
965 *
966 * Reads the MII auto-neg advertisement register and/or the 1000T control
967 * register and if the PHY is already setup for auto-negotiation, then
968 * return successful. Otherwise, setup advertisement and flow control to
969 * the appropriate values for the wanted auto-negotiation.
970 **/
971static s32 e1000_phy_setup_autoneg(struct e1000_hw *hw)
972{
973 struct e1000_phy_info *phy = &hw->phy;
974 s32 ret_val;
975 u16 mii_autoneg_adv_reg;
976 u16 mii_1000t_ctrl_reg = 0;
977
978 phy->autoneg_advertised &= phy->autoneg_mask;
979
980 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
981 ret_val = e1e_rphy(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
982 if (ret_val)
983 return ret_val;
984
985 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
986 /* Read the MII 1000Base-T Control Register (Address 9). */
987 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg);
988 if (ret_val)
989 return ret_val;
990 }
991
Bruce Allane921eb12012-11-28 09:28:37 +0000992 /* Need to parse both autoneg_advertised and fc and set up
Auke Kokbc7f75f2007-09-17 12:30:59 -0700993 * the appropriate PHY registers. First we will parse for
994 * autoneg_advertised software override. Since we can advertise
995 * a plethora of combinations, we need to check each bit
996 * individually.
997 */
998
Bruce Allane921eb12012-11-28 09:28:37 +0000999 /* First we clear all the 10/100 mb speed bits in the Auto-Neg
Auke Kokbc7f75f2007-09-17 12:30:59 -07001000 * Advertisement Register (Address 4) and the 1000 mb speed bits in
1001 * the 1000Base-T Control Register (Address 9).
1002 */
1003 mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS |
1004 NWAY_AR_100TX_HD_CAPS |
1005 NWAY_AR_10T_FD_CAPS |
1006 NWAY_AR_10T_HD_CAPS);
1007 mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS);
1008
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001009 e_dbg("autoneg_advertised %x\n", phy->autoneg_advertised);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001010
1011 /* Do we want to advertise 10 Mb Half Duplex? */
1012 if (phy->autoneg_advertised & ADVERTISE_10_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001013 e_dbg("Advertise 10mb Half duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001014 mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS;
1015 }
1016
1017 /* Do we want to advertise 10 Mb Full Duplex? */
1018 if (phy->autoneg_advertised & ADVERTISE_10_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001019 e_dbg("Advertise 10mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001020 mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS;
1021 }
1022
1023 /* Do we want to advertise 100 Mb Half Duplex? */
1024 if (phy->autoneg_advertised & ADVERTISE_100_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001025 e_dbg("Advertise 100mb Half duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001026 mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS;
1027 }
1028
1029 /* Do we want to advertise 100 Mb Full Duplex? */
1030 if (phy->autoneg_advertised & ADVERTISE_100_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001031 e_dbg("Advertise 100mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001032 mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS;
1033 }
1034
1035 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */
1036 if (phy->autoneg_advertised & ADVERTISE_1000_HALF)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001037 e_dbg("Advertise 1000mb Half duplex request denied!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001038
1039 /* Do we want to advertise 1000 Mb Full Duplex? */
1040 if (phy->autoneg_advertised & ADVERTISE_1000_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001041 e_dbg("Advertise 1000mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001042 mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS;
1043 }
1044
Bruce Allane921eb12012-11-28 09:28:37 +00001045 /* Check for a software override of the flow control settings, and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001046 * setup the PHY advertisement registers accordingly. If
1047 * auto-negotiation is enabled, then software will have to set the
1048 * "PAUSE" bits to the correct value in the Auto-Negotiation
1049 * Advertisement Register (PHY_AUTONEG_ADV) and re-start auto-
1050 * negotiation.
1051 *
1052 * The possible values of the "fc" parameter are:
1053 * 0: Flow control is completely disabled
1054 * 1: Rx flow control is enabled (we can receive pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001055 * but not send pause frames).
Auke Kokbc7f75f2007-09-17 12:30:59 -07001056 * 2: Tx flow control is enabled (we can send pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001057 * but we do not support receiving pause frames).
Bruce Allanad680762008-03-28 09:15:03 -07001058 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001059 * other: No software override. The flow control configuration
Bruce Allan3d3a1672012-02-23 03:13:18 +00001060 * in the EEPROM is used.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001061 */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001062 switch (hw->fc.current_mode) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001063 case e1000_fc_none:
Bruce Allane921eb12012-11-28 09:28:37 +00001064 /* Flow control (Rx & Tx) is completely disabled by a
Auke Kokbc7f75f2007-09-17 12:30:59 -07001065 * software over-ride.
1066 */
1067 mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1068 break;
1069 case e1000_fc_rx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001070 /* Rx Flow control is enabled, and Tx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001071 * disabled, by a software over-ride.
Bruce Allanad680762008-03-28 09:15:03 -07001072 *
1073 * Since there really isn't a way to advertise that we are
1074 * capable of Rx Pause ONLY, we will advertise that we
1075 * support both symmetric and asymmetric Rx PAUSE. Later
Auke Kokbc7f75f2007-09-17 12:30:59 -07001076 * (in e1000e_config_fc_after_link_up) we will disable the
1077 * hw's ability to send PAUSE frames.
1078 */
1079 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1080 break;
1081 case e1000_fc_tx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001082 /* Tx Flow control is enabled, and Rx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001083 * disabled, by a software over-ride.
1084 */
1085 mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR;
1086 mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE;
1087 break;
1088 case e1000_fc_full:
Bruce Allane921eb12012-11-28 09:28:37 +00001089 /* Flow control (both Rx and Tx) is enabled by a software
Auke Kokbc7f75f2007-09-17 12:30:59 -07001090 * over-ride.
1091 */
1092 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1093 break;
1094 default:
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001095 e_dbg("Flow control param set incorrectly\n");
Bruce Allan7eb61d82012-02-08 02:55:03 +00001096 return -E1000_ERR_CONFIG;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001097 }
1098
1099 ret_val = e1e_wphy(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg);
1100 if (ret_val)
1101 return ret_val;
1102
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001103 e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001104
Bruce Allanb1cdfea2010-12-11 05:53:47 +00001105 if (phy->autoneg_mask & ADVERTISE_1000_FULL)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001106 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001107
1108 return ret_val;
1109}
1110
1111/**
1112 * e1000_copper_link_autoneg - Setup/Enable autoneg for copper link
1113 * @hw: pointer to the HW structure
1114 *
1115 * Performs initial bounds checking on autoneg advertisement parameter, then
1116 * configure to advertise the full capability. Setup the PHY to autoneg
1117 * and restart the negotiation process between the link partner. If
Bruce Allanad680762008-03-28 09:15:03 -07001118 * autoneg_wait_to_complete, then wait for autoneg to complete before exiting.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001119 **/
1120static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
1121{
1122 struct e1000_phy_info *phy = &hw->phy;
1123 s32 ret_val;
1124 u16 phy_ctrl;
1125
Bruce Allane921eb12012-11-28 09:28:37 +00001126 /* Perform some bounds checking on the autoneg advertisement
Auke Kokbc7f75f2007-09-17 12:30:59 -07001127 * parameter.
1128 */
1129 phy->autoneg_advertised &= phy->autoneg_mask;
1130
Bruce Allane921eb12012-11-28 09:28:37 +00001131 /* If autoneg_advertised is zero, we assume it was not defaulted
Auke Kokbc7f75f2007-09-17 12:30:59 -07001132 * by the calling code so we set to advertise full capability.
1133 */
Bruce Allan04499ec2012-04-13 00:08:31 +00001134 if (!phy->autoneg_advertised)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001135 phy->autoneg_advertised = phy->autoneg_mask;
1136
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001137 e_dbg("Reconfiguring auto-neg advertisement params\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001138 ret_val = e1000_phy_setup_autoneg(hw);
1139 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001140 e_dbg("Error Setting up Auto-Negotiation\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001141 return ret_val;
1142 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001143 e_dbg("Restarting Auto-Neg\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001144
Bruce Allane921eb12012-11-28 09:28:37 +00001145 /* Restart auto-negotiation by setting the Auto Neg Enable bit and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001146 * the Auto Neg Restart bit in the PHY control register.
1147 */
1148 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl);
1149 if (ret_val)
1150 return ret_val;
1151
1152 phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG);
1153 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl);
1154 if (ret_val)
1155 return ret_val;
1156
Bruce Allane921eb12012-11-28 09:28:37 +00001157 /* Does the user want to wait for Auto-Neg to complete here, or
Auke Kokbc7f75f2007-09-17 12:30:59 -07001158 * check at a later time (for example, callback routine).
1159 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001160 if (phy->autoneg_wait_to_complete) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001161 ret_val = e1000_wait_autoneg(hw);
1162 if (ret_val) {
Bruce Allan434f1392011-12-16 00:46:54 +00001163 e_dbg("Error while waiting for autoneg to complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001164 return ret_val;
1165 }
1166 }
1167
Bruce Allanf92518d2012-02-01 11:16:42 +00001168 hw->mac.get_link_status = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001169
1170 return ret_val;
1171}
1172
1173/**
1174 * e1000e_setup_copper_link - Configure copper link settings
1175 * @hw: pointer to the HW structure
1176 *
1177 * Calls the appropriate function to configure the link for auto-neg or forced
1178 * speed and duplex. Then we check for link, once link is established calls
1179 * to configure collision distance and flow control are called. If link is
1180 * not established, we return -E1000_ERR_PHY (-2).
1181 **/
1182s32 e1000e_setup_copper_link(struct e1000_hw *hw)
1183{
1184 s32 ret_val;
1185 bool link;
1186
1187 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +00001188 /* Setup autoneg and flow control advertisement and perform
Bruce Allanad680762008-03-28 09:15:03 -07001189 * autonegotiation.
1190 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001191 ret_val = e1000_copper_link_autoneg(hw);
1192 if (ret_val)
1193 return ret_val;
1194 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001195 /* PHY will be set to 10H, 10F, 100H or 100F
Bruce Allanad680762008-03-28 09:15:03 -07001196 * depending on user settings.
1197 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001198 e_dbg("Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001199 ret_val = e1000_phy_force_speed_duplex(hw);
1200 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001201 e_dbg("Error Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001202 return ret_val;
1203 }
1204 }
1205
Bruce Allane921eb12012-11-28 09:28:37 +00001206 /* Check link status. Wait up to 100 microseconds for link to become
Auke Kokbc7f75f2007-09-17 12:30:59 -07001207 * valid.
1208 */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001209 ret_val = e1000e_phy_has_link_generic(hw, COPPER_LINK_UP_LIMIT, 10,
1210 &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001211 if (ret_val)
1212 return ret_val;
1213
1214 if (link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001215 e_dbg("Valid link established!!!\n");
Bruce Allan57cde762012-02-22 09:02:58 +00001216 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001217 ret_val = e1000e_config_fc_after_link_up(hw);
1218 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001219 e_dbg("Unable to establish link!!!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001220 }
1221
1222 return ret_val;
1223}
1224
1225/**
1226 * e1000e_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY
1227 * @hw: pointer to the HW structure
1228 *
1229 * Calls the PHY setup function to force speed and duplex. Clears the
1230 * auto-crossover to force MDI manually. Waits for link and returns
1231 * successful if link up is successful, else -E1000_ERR_PHY (-2).
1232 **/
1233s32 e1000e_phy_force_speed_duplex_igp(struct e1000_hw *hw)
1234{
1235 struct e1000_phy_info *phy = &hw->phy;
1236 s32 ret_val;
1237 u16 phy_data;
1238 bool link;
1239
1240 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
1241 if (ret_val)
1242 return ret_val;
1243
1244 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1245
1246 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
1247 if (ret_val)
1248 return ret_val;
1249
Bruce Allane921eb12012-11-28 09:28:37 +00001250 /* Clear Auto-Crossover to force MDI manually. IGP requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001251 * forced whenever speed and duplex are forced.
1252 */
1253 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1254 if (ret_val)
1255 return ret_val;
1256
1257 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1258 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1259
1260 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1261 if (ret_val)
1262 return ret_val;
1263
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001264 e_dbg("IGP PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001265
1266 udelay(1);
1267
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001268 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001269 e_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001270
Bruce Allan3d3a1672012-02-23 03:13:18 +00001271 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1272 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001273 if (ret_val)
1274 return ret_val;
1275
1276 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001277 e_dbg("Link taking longer than expected.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001278
1279 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001280 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1281 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001282 }
1283
1284 return ret_val;
1285}
1286
1287/**
1288 * e1000e_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY
1289 * @hw: pointer to the HW structure
1290 *
1291 * Calls the PHY setup function to force speed and duplex. Clears the
1292 * auto-crossover to force MDI manually. Resets the PHY to commit the
1293 * changes. If time expires while waiting for link up, we reset the DSP.
Bruce Allanad680762008-03-28 09:15:03 -07001294 * After reset, TX_CLK and CRS on Tx must be set. Return successful upon
Auke Kokbc7f75f2007-09-17 12:30:59 -07001295 * successful completion, else return corresponding error code.
1296 **/
1297s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw)
1298{
1299 struct e1000_phy_info *phy = &hw->phy;
1300 s32 ret_val;
1301 u16 phy_data;
1302 bool link;
1303
Bruce Allane921eb12012-11-28 09:28:37 +00001304 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001305 * forced whenever speed and duplex are forced.
1306 */
1307 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1308 if (ret_val)
1309 return ret_val;
1310
1311 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1312 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1313 if (ret_val)
1314 return ret_val;
1315
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001316 e_dbg("M88E1000 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001317
1318 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
1319 if (ret_val)
1320 return ret_val;
1321
1322 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1323
Auke Kokbc7f75f2007-09-17 12:30:59 -07001324 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
1325 if (ret_val)
1326 return ret_val;
1327
Bruce Allan5aa49c82008-11-21 16:49:53 -08001328 /* Reset the phy to commit changes. */
1329 ret_val = e1000e_commit_phy(hw);
1330 if (ret_val)
1331 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001332
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001333 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001334 e_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001335
1336 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1337 100000, &link);
1338 if (ret_val)
1339 return ret_val;
1340
1341 if (!link) {
Bruce Allan0be84012009-12-02 17:03:18 +00001342 if (hw->phy.type != e1000_phy_m88) {
1343 e_dbg("Link taking longer than expected.\n");
1344 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001345 /* We didn't get link.
Bruce Allan0be84012009-12-02 17:03:18 +00001346 * Reset the DSP and cross our fingers.
1347 */
Bruce Allan482fed82011-01-06 14:29:49 +00001348 ret_val = e1e_wphy(hw, M88E1000_PHY_PAGE_SELECT,
1349 0x001d);
Bruce Allan0be84012009-12-02 17:03:18 +00001350 if (ret_val)
1351 return ret_val;
1352 ret_val = e1000e_phy_reset_dsp(hw);
1353 if (ret_val)
1354 return ret_val;
1355 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001356 }
1357
1358 /* Try once more */
1359 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1360 100000, &link);
1361 if (ret_val)
1362 return ret_val;
1363 }
1364
Bruce Allan0be84012009-12-02 17:03:18 +00001365 if (hw->phy.type != e1000_phy_m88)
1366 return 0;
1367
Auke Kokbc7f75f2007-09-17 12:30:59 -07001368 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1369 if (ret_val)
1370 return ret_val;
1371
Bruce Allane921eb12012-11-28 09:28:37 +00001372 /* Resetting the phy means we need to re-force TX_CLK in the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001373 * Extended PHY Specific Control Register to 25MHz clock from
1374 * the reset value of 2.5MHz.
1375 */
1376 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1377 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1378 if (ret_val)
1379 return ret_val;
1380
Bruce Allane921eb12012-11-28 09:28:37 +00001381 /* In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -07001382 * duplex.
1383 */
1384 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1385 if (ret_val)
1386 return ret_val;
1387
1388 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1389 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1390
1391 return ret_val;
1392}
1393
1394/**
Bruce Allan0be84012009-12-02 17:03:18 +00001395 * e1000_phy_force_speed_duplex_ife - Force PHY speed & duplex
1396 * @hw: pointer to the HW structure
1397 *
1398 * Forces the speed and duplex settings of the PHY.
1399 * This is a function pointer entry point only called by
1400 * PHY setup routines.
1401 **/
1402s32 e1000_phy_force_speed_duplex_ife(struct e1000_hw *hw)
1403{
1404 struct e1000_phy_info *phy = &hw->phy;
1405 s32 ret_val;
1406 u16 data;
1407 bool link;
1408
1409 ret_val = e1e_rphy(hw, PHY_CONTROL, &data);
1410 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001411 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001412
1413 e1000e_phy_force_speed_duplex_setup(hw, &data);
1414
1415 ret_val = e1e_wphy(hw, PHY_CONTROL, data);
1416 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001417 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001418
1419 /* Disable MDI-X support for 10/100 */
1420 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
1421 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001422 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001423
1424 data &= ~IFE_PMC_AUTO_MDIX;
1425 data &= ~IFE_PMC_FORCE_MDIX;
1426
1427 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data);
1428 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001429 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001430
1431 e_dbg("IFE PMC: %X\n", data);
1432
1433 udelay(1);
1434
1435 if (phy->autoneg_wait_to_complete) {
1436 e_dbg("Waiting for forced speed/duplex link on IFE phy.\n");
1437
Bruce Allan3d3a1672012-02-23 03:13:18 +00001438 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1439 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001440 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001441 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001442
1443 if (!link)
1444 e_dbg("Link taking longer than expected.\n");
1445
1446 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001447 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1448 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001449 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001450 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001451 }
1452
Bruce Allan5015e532012-02-08 02:55:56 +00001453 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00001454}
1455
1456/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001457 * e1000e_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex
1458 * @hw: pointer to the HW structure
1459 * @phy_ctrl: pointer to current value of PHY_CONTROL
1460 *
1461 * Forces speed and duplex on the PHY by doing the following: disable flow
1462 * control, force speed/duplex on the MAC, disable auto speed detection,
1463 * disable auto-negotiation, configure duplex, configure speed, configure
1464 * the collision distance, write configuration to CTRL register. The
1465 * caller must write to the PHY_CONTROL register for these settings to
1466 * take affect.
1467 **/
1468void e1000e_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl)
1469{
1470 struct e1000_mac_info *mac = &hw->mac;
1471 u32 ctrl;
1472
1473 /* Turn off flow control when forcing speed/duplex */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001474 hw->fc.current_mode = e1000_fc_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001475
1476 /* Force speed/duplex on the mac */
1477 ctrl = er32(CTRL);
1478 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1479 ctrl &= ~E1000_CTRL_SPD_SEL;
1480
1481 /* Disable Auto Speed Detection */
1482 ctrl &= ~E1000_CTRL_ASDE;
1483
1484 /* Disable autoneg on the phy */
1485 *phy_ctrl &= ~MII_CR_AUTO_NEG_EN;
1486
1487 /* Forcing Full or Half Duplex? */
1488 if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
1489 ctrl &= ~E1000_CTRL_FD;
1490 *phy_ctrl &= ~MII_CR_FULL_DUPLEX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001491 e_dbg("Half Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001492 } else {
1493 ctrl |= E1000_CTRL_FD;
1494 *phy_ctrl |= MII_CR_FULL_DUPLEX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001495 e_dbg("Full Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001496 }
1497
1498 /* Forcing 10mb or 100mb? */
1499 if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
1500 ctrl |= E1000_CTRL_SPD_100;
1501 *phy_ctrl |= MII_CR_SPEED_100;
1502 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001503 e_dbg("Forcing 100mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001504 } else {
1505 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1506 *phy_ctrl |= MII_CR_SPEED_10;
1507 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001508 e_dbg("Forcing 10mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001509 }
1510
Bruce Allan57cde762012-02-22 09:02:58 +00001511 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001512
1513 ew32(CTRL, ctrl);
1514}
1515
1516/**
1517 * e1000e_set_d3_lplu_state - Sets low power link up state for D3
1518 * @hw: pointer to the HW structure
1519 * @active: boolean used to enable/disable lplu
1520 *
1521 * Success returns 0, Failure returns 1
1522 *
1523 * The low power link up (lplu) state is set to the power management level D3
1524 * and SmartSpeed is disabled when active is true, else clear lplu for D3
1525 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
1526 * is used during Dx states where the power conservation is most important.
1527 * During driver activity, SmartSpeed should be enabled so performance is
1528 * maintained.
1529 **/
1530s32 e1000e_set_d3_lplu_state(struct e1000_hw *hw, bool active)
1531{
1532 struct e1000_phy_info *phy = &hw->phy;
1533 s32 ret_val;
1534 u16 data;
1535
1536 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1537 if (ret_val)
1538 return ret_val;
1539
1540 if (!active) {
1541 data &= ~IGP02E1000_PM_D3_LPLU;
David Graham2d9498f2008-04-23 11:09:14 -07001542 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001543 if (ret_val)
1544 return ret_val;
Bruce Allane921eb12012-11-28 09:28:37 +00001545 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001546 * during Dx states where the power conservation is most
1547 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001548 * SmartSpeed, so performance is maintained.
1549 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001550 if (phy->smart_speed == e1000_smart_speed_on) {
1551 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001552 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001553 if (ret_val)
1554 return ret_val;
1555
1556 data |= IGP01E1000_PSCFR_SMART_SPEED;
1557 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001558 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001559 if (ret_val)
1560 return ret_val;
1561 } else if (phy->smart_speed == e1000_smart_speed_off) {
1562 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001563 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001564 if (ret_val)
1565 return ret_val;
1566
1567 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1568 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001569 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001570 if (ret_val)
1571 return ret_val;
1572 }
1573 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1574 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1575 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1576 data |= IGP02E1000_PM_D3_LPLU;
1577 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
1578 if (ret_val)
1579 return ret_val;
1580
1581 /* When LPLU is enabled, we should disable SmartSpeed */
1582 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1583 if (ret_val)
1584 return ret_val;
1585
1586 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1587 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1588 }
1589
1590 return ret_val;
1591}
1592
1593/**
Auke Kok489815c2008-02-21 15:11:07 -08001594 * e1000e_check_downshift - Checks whether a downshift in speed occurred
Auke Kokbc7f75f2007-09-17 12:30:59 -07001595 * @hw: pointer to the HW structure
1596 *
1597 * Success returns 0, Failure returns 1
1598 *
1599 * A downshift is detected by querying the PHY link health.
1600 **/
1601s32 e1000e_check_downshift(struct e1000_hw *hw)
1602{
1603 struct e1000_phy_info *phy = &hw->phy;
1604 s32 ret_val;
1605 u16 phy_data, offset, mask;
1606
1607 switch (phy->type) {
1608 case e1000_phy_m88:
1609 case e1000_phy_gg82563:
Bruce Allan07f025e2009-12-01 15:53:48 +00001610 case e1000_phy_bm:
Bruce Allana4f58f52009-06-02 11:29:18 +00001611 case e1000_phy_82578:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001612 offset = M88E1000_PHY_SPEC_STATUS;
1613 mask = M88E1000_PSSR_DOWNSHIFT;
1614 break;
1615 case e1000_phy_igp_2:
1616 case e1000_phy_igp_3:
1617 offset = IGP01E1000_PHY_LINK_HEALTH;
1618 mask = IGP01E1000_PLHR_SS_DOWNGRADE;
1619 break;
1620 default:
1621 /* speed downshift not supported */
Bruce Allan564ea9b2009-11-20 23:26:44 +00001622 phy->speed_downgraded = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001623 return 0;
1624 }
1625
1626 ret_val = e1e_rphy(hw, offset, &phy_data);
1627
1628 if (!ret_val)
Bruce Allan04499ec2012-04-13 00:08:31 +00001629 phy->speed_downgraded = !!(phy_data & mask);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001630
1631 return ret_val;
1632}
1633
1634/**
1635 * e1000_check_polarity_m88 - Checks the polarity.
1636 * @hw: pointer to the HW structure
1637 *
1638 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1639 *
1640 * Polarity is determined based on the PHY specific status register.
1641 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001642s32 e1000_check_polarity_m88(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001643{
1644 struct e1000_phy_info *phy = &hw->phy;
1645 s32 ret_val;
1646 u16 data;
1647
1648 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &data);
1649
1650 if (!ret_val)
1651 phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY)
1652 ? e1000_rev_polarity_reversed
1653 : e1000_rev_polarity_normal;
1654
1655 return ret_val;
1656}
1657
1658/**
1659 * e1000_check_polarity_igp - Checks the polarity.
1660 * @hw: pointer to the HW structure
1661 *
1662 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1663 *
1664 * Polarity is determined based on the PHY port status register, and the
1665 * current speed (since there is no polarity at 100Mbps).
1666 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001667s32 e1000_check_polarity_igp(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001668{
1669 struct e1000_phy_info *phy = &hw->phy;
1670 s32 ret_val;
1671 u16 data, offset, mask;
1672
Bruce Allane921eb12012-11-28 09:28:37 +00001673 /* Polarity is determined based on the speed of
Bruce Allanad680762008-03-28 09:15:03 -07001674 * our connection.
1675 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001676 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1677 if (ret_val)
1678 return ret_val;
1679
1680 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1681 IGP01E1000_PSSR_SPEED_1000MBPS) {
1682 offset = IGP01E1000_PHY_PCS_INIT_REG;
1683 mask = IGP01E1000_PHY_POLARITY_MASK;
1684 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001685 /* This really only applies to 10Mbps since
Auke Kokbc7f75f2007-09-17 12:30:59 -07001686 * there is no polarity for 100Mbps (always 0).
1687 */
1688 offset = IGP01E1000_PHY_PORT_STATUS;
1689 mask = IGP01E1000_PSSR_POLARITY_REVERSED;
1690 }
1691
1692 ret_val = e1e_rphy(hw, offset, &data);
1693
1694 if (!ret_val)
1695 phy->cable_polarity = (data & mask)
1696 ? e1000_rev_polarity_reversed
1697 : e1000_rev_polarity_normal;
1698
1699 return ret_val;
1700}
1701
1702/**
Bruce Allan0be84012009-12-02 17:03:18 +00001703 * e1000_check_polarity_ife - Check cable polarity for IFE PHY
1704 * @hw: pointer to the HW structure
1705 *
1706 * Polarity is determined on the polarity reversal feature being enabled.
1707 **/
1708s32 e1000_check_polarity_ife(struct e1000_hw *hw)
1709{
1710 struct e1000_phy_info *phy = &hw->phy;
1711 s32 ret_val;
1712 u16 phy_data, offset, mask;
1713
Bruce Allane921eb12012-11-28 09:28:37 +00001714 /* Polarity is determined based on the reversal feature being enabled.
Bruce Allan0be84012009-12-02 17:03:18 +00001715 */
1716 if (phy->polarity_correction) {
1717 offset = IFE_PHY_EXTENDED_STATUS_CONTROL;
1718 mask = IFE_PESC_POLARITY_REVERSED;
1719 } else {
1720 offset = IFE_PHY_SPECIAL_CONTROL;
1721 mask = IFE_PSC_FORCE_POLARITY;
1722 }
1723
1724 ret_val = e1e_rphy(hw, offset, &phy_data);
1725
1726 if (!ret_val)
1727 phy->cable_polarity = (phy_data & mask)
1728 ? e1000_rev_polarity_reversed
1729 : e1000_rev_polarity_normal;
1730
1731 return ret_val;
1732}
1733
1734/**
Bruce Allanad680762008-03-28 09:15:03 -07001735 * e1000_wait_autoneg - Wait for auto-neg completion
Auke Kokbc7f75f2007-09-17 12:30:59 -07001736 * @hw: pointer to the HW structure
1737 *
1738 * Waits for auto-negotiation to complete or for the auto-negotiation time
1739 * limit to expire, which ever happens first.
1740 **/
1741static s32 e1000_wait_autoneg(struct e1000_hw *hw)
1742{
1743 s32 ret_val = 0;
1744 u16 i, phy_status;
1745
1746 /* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */
1747 for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) {
1748 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1749 if (ret_val)
1750 break;
1751 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1752 if (ret_val)
1753 break;
1754 if (phy_status & MII_SR_AUTONEG_COMPLETE)
1755 break;
1756 msleep(100);
1757 }
1758
Bruce Allane921eb12012-11-28 09:28:37 +00001759 /* PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation
Auke Kokbc7f75f2007-09-17 12:30:59 -07001760 * has completed.
1761 */
1762 return ret_val;
1763}
1764
1765/**
1766 * e1000e_phy_has_link_generic - Polls PHY for link
1767 * @hw: pointer to the HW structure
1768 * @iterations: number of times to poll for link
1769 * @usec_interval: delay between polling attempts
1770 * @success: pointer to whether polling was successful or not
1771 *
1772 * Polls the PHY status register for link, 'iterations' number of times.
1773 **/
1774s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
1775 u32 usec_interval, bool *success)
1776{
1777 s32 ret_val = 0;
1778 u16 i, phy_status;
1779
1780 for (i = 0; i < iterations; i++) {
Bruce Allane921eb12012-11-28 09:28:37 +00001781 /* Some PHYs require the PHY_STATUS register to be read
Auke Kokbc7f75f2007-09-17 12:30:59 -07001782 * twice due to the link bit being sticky. No harm doing
1783 * it across the board.
1784 */
1785 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1786 if (ret_val)
Bruce Allane921eb12012-11-28 09:28:37 +00001787 /* If the first read fails, another entity may have
Bruce Allan906e8d92009-07-01 13:28:50 +00001788 * ownership of the resources, wait and try again to
1789 * see if they have relinquished the resources yet.
1790 */
1791 udelay(usec_interval);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001792 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1793 if (ret_val)
1794 break;
1795 if (phy_status & MII_SR_LINK_STATUS)
1796 break;
1797 if (usec_interval >= 1000)
1798 mdelay(usec_interval/1000);
1799 else
1800 udelay(usec_interval);
1801 }
1802
1803 *success = (i < iterations);
1804
1805 return ret_val;
1806}
1807
1808/**
1809 * e1000e_get_cable_length_m88 - Determine cable length for m88 PHY
1810 * @hw: pointer to the HW structure
1811 *
1812 * Reads the PHY specific status register to retrieve the cable length
1813 * information. The cable length is determined by averaging the minimum and
1814 * maximum values to get the "average" cable length. The m88 PHY has four
1815 * possible cable length values, which are:
1816 * Register Value Cable Length
1817 * 0 < 50 meters
1818 * 1 50 - 80 meters
1819 * 2 80 - 110 meters
1820 * 3 110 - 140 meters
1821 * 4 > 140 meters
1822 **/
1823s32 e1000e_get_cable_length_m88(struct e1000_hw *hw)
1824{
1825 struct e1000_phy_info *phy = &hw->phy;
1826 s32 ret_val;
1827 u16 phy_data, index;
1828
1829 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1830 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001831 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001832
1833 index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
Bruce Allaneb656d42009-12-01 15:47:02 +00001834 M88E1000_PSSR_CABLE_LENGTH_SHIFT;
Bruce Allan5015e532012-02-08 02:55:56 +00001835
1836 if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1)
1837 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +00001838
Auke Kokbc7f75f2007-09-17 12:30:59 -07001839 phy->min_cable_length = e1000_m88_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +00001840 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001841
1842 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1843
Bruce Allan5015e532012-02-08 02:55:56 +00001844 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001845}
1846
1847/**
1848 * e1000e_get_cable_length_igp_2 - Determine cable length for igp2 PHY
1849 * @hw: pointer to the HW structure
1850 *
1851 * The automatic gain control (agc) normalizes the amplitude of the
1852 * received signal, adjusting for the attenuation produced by the
Auke Kok489815c2008-02-21 15:11:07 -08001853 * cable. By reading the AGC registers, which represent the
Bruce Allan5ff5b662009-12-01 15:51:11 +00001854 * combination of coarse and fine gain value, the value can be put
Auke Kokbc7f75f2007-09-17 12:30:59 -07001855 * into a lookup table to obtain the approximate cable length
1856 * for each channel.
1857 **/
1858s32 e1000e_get_cable_length_igp_2(struct e1000_hw *hw)
1859{
1860 struct e1000_phy_info *phy = &hw->phy;
1861 s32 ret_val;
1862 u16 phy_data, i, agc_value = 0;
1863 u16 cur_agc_index, max_agc_index = 0;
1864 u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1;
Jeff Kirsher66744502010-12-01 19:59:50 +00001865 static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
1866 IGP02E1000_PHY_AGC_A,
1867 IGP02E1000_PHY_AGC_B,
1868 IGP02E1000_PHY_AGC_C,
1869 IGP02E1000_PHY_AGC_D
1870 };
Auke Kokbc7f75f2007-09-17 12:30:59 -07001871
1872 /* Read the AGC registers for all channels */
1873 for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
1874 ret_val = e1e_rphy(hw, agc_reg_array[i], &phy_data);
1875 if (ret_val)
1876 return ret_val;
1877
Bruce Allane921eb12012-11-28 09:28:37 +00001878 /* Getting bits 15:9, which represent the combination of
Bruce Allan5ff5b662009-12-01 15:51:11 +00001879 * coarse and fine gain values. The result is a number
Auke Kokbc7f75f2007-09-17 12:30:59 -07001880 * that can be put into the lookup table to obtain the
Bruce Allanad680762008-03-28 09:15:03 -07001881 * approximate cable length.
1882 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001883 cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
1884 IGP02E1000_AGC_LENGTH_MASK;
1885
1886 /* Array index bound check. */
1887 if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) ||
1888 (cur_agc_index == 0))
1889 return -E1000_ERR_PHY;
1890
1891 /* Remove min & max AGC values from calculation. */
1892 if (e1000_igp_2_cable_length_table[min_agc_index] >
1893 e1000_igp_2_cable_length_table[cur_agc_index])
1894 min_agc_index = cur_agc_index;
1895 if (e1000_igp_2_cable_length_table[max_agc_index] <
1896 e1000_igp_2_cable_length_table[cur_agc_index])
1897 max_agc_index = cur_agc_index;
1898
1899 agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
1900 }
1901
1902 agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
1903 e1000_igp_2_cable_length_table[max_agc_index]);
1904 agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);
1905
1906 /* Calculate cable length with the error range of +/- 10 meters. */
1907 phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
1908 (agc_value - IGP02E1000_AGC_RANGE) : 0;
1909 phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;
1910
1911 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1912
Bruce Allan82607252012-02-08 02:55:09 +00001913 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001914}
1915
1916/**
1917 * e1000e_get_phy_info_m88 - Retrieve PHY information
1918 * @hw: pointer to the HW structure
1919 *
1920 * Valid for only copper links. Read the PHY status register (sticky read)
1921 * to verify that link is up. Read the PHY special control register to
1922 * determine the polarity and 10base-T extended distance. Read the PHY
1923 * special status register to determine MDI/MDIx and current speed. If
1924 * speed is 1000, then determine cable length, local and remote receiver.
1925 **/
1926s32 e1000e_get_phy_info_m88(struct e1000_hw *hw)
1927{
1928 struct e1000_phy_info *phy = &hw->phy;
1929 s32 ret_val;
1930 u16 phy_data;
1931 bool link;
1932
Bruce Allan0be84012009-12-02 17:03:18 +00001933 if (phy->media_type != e1000_media_type_copper) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001934 e_dbg("Phy info is only valid for copper media\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001935 return -E1000_ERR_CONFIG;
1936 }
1937
1938 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1939 if (ret_val)
1940 return ret_val;
1941
1942 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001943 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001944 return -E1000_ERR_CONFIG;
1945 }
1946
1947 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1948 if (ret_val)
1949 return ret_val;
1950
Bruce Allan04499ec2012-04-13 00:08:31 +00001951 phy->polarity_correction = !!(phy_data &
1952 M88E1000_PSCR_POLARITY_REVERSAL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001953
1954 ret_val = e1000_check_polarity_m88(hw);
1955 if (ret_val)
1956 return ret_val;
1957
1958 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1959 if (ret_val)
1960 return ret_val;
1961
Bruce Allan04499ec2012-04-13 00:08:31 +00001962 phy->is_mdix = !!(phy_data & M88E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001963
1964 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
1965 ret_val = e1000_get_cable_length(hw);
1966 if (ret_val)
1967 return ret_val;
1968
1969 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &phy_data);
1970 if (ret_val)
1971 return ret_val;
1972
1973 phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS)
1974 ? e1000_1000t_rx_status_ok
1975 : e1000_1000t_rx_status_not_ok;
1976
1977 phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS)
1978 ? e1000_1000t_rx_status_ok
1979 : e1000_1000t_rx_status_not_ok;
1980 } else {
1981 /* Set values to "undefined" */
1982 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1983 phy->local_rx = e1000_1000t_rx_status_undefined;
1984 phy->remote_rx = e1000_1000t_rx_status_undefined;
1985 }
1986
1987 return ret_val;
1988}
1989
1990/**
1991 * e1000e_get_phy_info_igp - Retrieve igp PHY information
1992 * @hw: pointer to the HW structure
1993 *
1994 * Read PHY status to determine if link is up. If link is up, then
1995 * set/determine 10base-T extended distance and polarity correction. Read
1996 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
1997 * determine on the cable length, local and remote receiver.
1998 **/
1999s32 e1000e_get_phy_info_igp(struct e1000_hw *hw)
2000{
2001 struct e1000_phy_info *phy = &hw->phy;
2002 s32 ret_val;
2003 u16 data;
2004 bool link;
2005
2006 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2007 if (ret_val)
2008 return ret_val;
2009
2010 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002011 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002012 return -E1000_ERR_CONFIG;
2013 }
2014
Bruce Allan564ea9b2009-11-20 23:26:44 +00002015 phy->polarity_correction = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002016
2017 ret_val = e1000_check_polarity_igp(hw);
2018 if (ret_val)
2019 return ret_val;
2020
2021 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
2022 if (ret_val)
2023 return ret_val;
2024
Bruce Allan04499ec2012-04-13 00:08:31 +00002025 phy->is_mdix = !!(data & IGP01E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002026
2027 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
2028 IGP01E1000_PSSR_SPEED_1000MBPS) {
2029 ret_val = e1000_get_cable_length(hw);
2030 if (ret_val)
2031 return ret_val;
2032
2033 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data);
2034 if (ret_val)
2035 return ret_val;
2036
2037 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
2038 ? e1000_1000t_rx_status_ok
2039 : e1000_1000t_rx_status_not_ok;
2040
2041 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
2042 ? e1000_1000t_rx_status_ok
2043 : e1000_1000t_rx_status_not_ok;
2044 } else {
2045 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2046 phy->local_rx = e1000_1000t_rx_status_undefined;
2047 phy->remote_rx = e1000_1000t_rx_status_undefined;
2048 }
2049
2050 return ret_val;
2051}
2052
2053/**
Bruce Allan0be84012009-12-02 17:03:18 +00002054 * e1000_get_phy_info_ife - Retrieves various IFE PHY states
2055 * @hw: pointer to the HW structure
2056 *
2057 * Populates "phy" structure with various feature states.
2058 **/
2059s32 e1000_get_phy_info_ife(struct e1000_hw *hw)
2060{
2061 struct e1000_phy_info *phy = &hw->phy;
2062 s32 ret_val;
2063 u16 data;
2064 bool link;
2065
2066 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2067 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002068 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002069
2070 if (!link) {
2071 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002072 return -E1000_ERR_CONFIG;
Bruce Allan0be84012009-12-02 17:03:18 +00002073 }
2074
2075 ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data);
2076 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002077 return ret_val;
Bruce Allan04499ec2012-04-13 00:08:31 +00002078 phy->polarity_correction = !(data & IFE_PSC_AUTO_POLARITY_DISABLE);
Bruce Allan0be84012009-12-02 17:03:18 +00002079
2080 if (phy->polarity_correction) {
2081 ret_val = e1000_check_polarity_ife(hw);
2082 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002083 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002084 } else {
2085 /* Polarity is forced */
2086 phy->cable_polarity = (data & IFE_PSC_FORCE_POLARITY)
2087 ? e1000_rev_polarity_reversed
2088 : e1000_rev_polarity_normal;
2089 }
2090
2091 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
2092 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002093 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002094
Bruce Allan04499ec2012-04-13 00:08:31 +00002095 phy->is_mdix = !!(data & IFE_PMC_MDIX_STATUS);
Bruce Allan0be84012009-12-02 17:03:18 +00002096
2097 /* The following parameters are undefined for 10/100 operation. */
2098 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2099 phy->local_rx = e1000_1000t_rx_status_undefined;
2100 phy->remote_rx = e1000_1000t_rx_status_undefined;
2101
Bruce Allan5015e532012-02-08 02:55:56 +00002102 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00002103}
2104
2105/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002106 * e1000e_phy_sw_reset - PHY software reset
2107 * @hw: pointer to the HW structure
2108 *
2109 * Does a software reset of the PHY by reading the PHY control register and
2110 * setting/write the control register reset bit to the PHY.
2111 **/
2112s32 e1000e_phy_sw_reset(struct e1000_hw *hw)
2113{
2114 s32 ret_val;
2115 u16 phy_ctrl;
2116
2117 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl);
2118 if (ret_val)
2119 return ret_val;
2120
2121 phy_ctrl |= MII_CR_RESET;
2122 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl);
2123 if (ret_val)
2124 return ret_val;
2125
2126 udelay(1);
2127
2128 return ret_val;
2129}
2130
2131/**
2132 * e1000e_phy_hw_reset_generic - PHY hardware reset
2133 * @hw: pointer to the HW structure
2134 *
2135 * Verify the reset block is not blocking us from resetting. Acquire
2136 * semaphore (if necessary) and read/set/write the device control reset
2137 * bit in the PHY. Wait the appropriate delay time for the device to
Auke Kok489815c2008-02-21 15:11:07 -08002138 * reset and release the semaphore (if necessary).
Auke Kokbc7f75f2007-09-17 12:30:59 -07002139 **/
2140s32 e1000e_phy_hw_reset_generic(struct e1000_hw *hw)
2141{
2142 struct e1000_phy_info *phy = &hw->phy;
2143 s32 ret_val;
2144 u32 ctrl;
2145
Bruce Allan470a5422012-05-26 06:08:48 +00002146 if (phy->ops.check_reset_block) {
2147 ret_val = phy->ops.check_reset_block(hw);
2148 if (ret_val)
2149 return 0;
2150 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002151
Bruce Allan94d81862009-11-20 23:25:26 +00002152 ret_val = phy->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002153 if (ret_val)
2154 return ret_val;
2155
2156 ctrl = er32(CTRL);
2157 ew32(CTRL, ctrl | E1000_CTRL_PHY_RST);
2158 e1e_flush();
2159
2160 udelay(phy->reset_delay_us);
2161
2162 ew32(CTRL, ctrl);
2163 e1e_flush();
2164
2165 udelay(150);
2166
Bruce Allan94d81862009-11-20 23:25:26 +00002167 phy->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002168
2169 return e1000_get_phy_cfg_done(hw);
2170}
2171
2172/**
2173 * e1000e_get_cfg_done - Generic configuration done
2174 * @hw: pointer to the HW structure
2175 *
2176 * Generic function to wait 10 milli-seconds for configuration to complete
2177 * and return success.
2178 **/
2179s32 e1000e_get_cfg_done(struct e1000_hw *hw)
2180{
2181 mdelay(10);
Bruce Allan3d3a1672012-02-23 03:13:18 +00002182
Auke Kokbc7f75f2007-09-17 12:30:59 -07002183 return 0;
2184}
2185
Bruce Allanf4187b52008-08-26 18:36:50 -07002186/**
2187 * e1000e_phy_init_script_igp3 - Inits the IGP3 PHY
2188 * @hw: pointer to the HW structure
2189 *
2190 * Initializes a Intel Gigabit PHY3 when an EEPROM is not present.
2191 **/
2192s32 e1000e_phy_init_script_igp3(struct e1000_hw *hw)
2193{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002194 e_dbg("Running IGP 3 PHY init script\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07002195
2196 /* PHY init IGP 3 */
2197 /* Enable rise/fall, 10-mode work in class-A */
2198 e1e_wphy(hw, 0x2F5B, 0x9018);
2199 /* Remove all caps from Replica path filter */
2200 e1e_wphy(hw, 0x2F52, 0x0000);
2201 /* Bias trimming for ADC, AFE and Driver (Default) */
2202 e1e_wphy(hw, 0x2FB1, 0x8B24);
2203 /* Increase Hybrid poly bias */
2204 e1e_wphy(hw, 0x2FB2, 0xF8F0);
2205 /* Add 4% to Tx amplitude in Gig mode */
2206 e1e_wphy(hw, 0x2010, 0x10B0);
2207 /* Disable trimming (TTT) */
2208 e1e_wphy(hw, 0x2011, 0x0000);
2209 /* Poly DC correction to 94.6% + 2% for all channels */
2210 e1e_wphy(hw, 0x20DD, 0x249A);
2211 /* ABS DC correction to 95.9% */
2212 e1e_wphy(hw, 0x20DE, 0x00D3);
2213 /* BG temp curve trim */
2214 e1e_wphy(hw, 0x28B4, 0x04CE);
2215 /* Increasing ADC OPAMP stage 1 currents to max */
2216 e1e_wphy(hw, 0x2F70, 0x29E4);
2217 /* Force 1000 ( required for enabling PHY regs configuration) */
2218 e1e_wphy(hw, 0x0000, 0x0140);
2219 /* Set upd_freq to 6 */
2220 e1e_wphy(hw, 0x1F30, 0x1606);
2221 /* Disable NPDFE */
2222 e1e_wphy(hw, 0x1F31, 0xB814);
2223 /* Disable adaptive fixed FFE (Default) */
2224 e1e_wphy(hw, 0x1F35, 0x002A);
2225 /* Enable FFE hysteresis */
2226 e1e_wphy(hw, 0x1F3E, 0x0067);
2227 /* Fixed FFE for short cable lengths */
2228 e1e_wphy(hw, 0x1F54, 0x0065);
2229 /* Fixed FFE for medium cable lengths */
2230 e1e_wphy(hw, 0x1F55, 0x002A);
2231 /* Fixed FFE for long cable lengths */
2232 e1e_wphy(hw, 0x1F56, 0x002A);
2233 /* Enable Adaptive Clip Threshold */
2234 e1e_wphy(hw, 0x1F72, 0x3FB0);
2235 /* AHT reset limit to 1 */
2236 e1e_wphy(hw, 0x1F76, 0xC0FF);
2237 /* Set AHT master delay to 127 msec */
2238 e1e_wphy(hw, 0x1F77, 0x1DEC);
2239 /* Set scan bits for AHT */
2240 e1e_wphy(hw, 0x1F78, 0xF9EF);
2241 /* Set AHT Preset bits */
2242 e1e_wphy(hw, 0x1F79, 0x0210);
2243 /* Change integ_factor of channel A to 3 */
2244 e1e_wphy(hw, 0x1895, 0x0003);
2245 /* Change prop_factor of channels BCD to 8 */
2246 e1e_wphy(hw, 0x1796, 0x0008);
2247 /* Change cg_icount + enable integbp for channels BCD */
2248 e1e_wphy(hw, 0x1798, 0xD008);
Bruce Allane921eb12012-11-28 09:28:37 +00002249 /* Change cg_icount + enable integbp + change prop_factor_master
Bruce Allanf4187b52008-08-26 18:36:50 -07002250 * to 8 for channel A
2251 */
2252 e1e_wphy(hw, 0x1898, 0xD918);
2253 /* Disable AHT in Slave mode on channel A */
2254 e1e_wphy(hw, 0x187A, 0x0800);
Bruce Allane921eb12012-11-28 09:28:37 +00002255 /* Enable LPLU and disable AN to 1000 in non-D0a states,
Bruce Allanf4187b52008-08-26 18:36:50 -07002256 * Enable SPD+B2B
2257 */
2258 e1e_wphy(hw, 0x0019, 0x008D);
2259 /* Enable restart AN on an1000_dis change */
2260 e1e_wphy(hw, 0x001B, 0x2080);
2261 /* Enable wh_fifo read clock in 10/100 modes */
2262 e1e_wphy(hw, 0x0014, 0x0045);
2263 /* Restart AN, Speed selection is 1000 */
2264 e1e_wphy(hw, 0x0000, 0x1340);
2265
2266 return 0;
2267}
2268
Auke Kokbc7f75f2007-09-17 12:30:59 -07002269/* Internal function pointers */
2270
2271/**
2272 * e1000_get_phy_cfg_done - Generic PHY configuration done
2273 * @hw: pointer to the HW structure
2274 *
2275 * Return success if silicon family did not implement a family specific
2276 * get_cfg_done function.
2277 **/
2278static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw)
2279{
2280 if (hw->phy.ops.get_cfg_done)
2281 return hw->phy.ops.get_cfg_done(hw);
2282
2283 return 0;
2284}
2285
2286/**
2287 * e1000_phy_force_speed_duplex - Generic force PHY speed/duplex
2288 * @hw: pointer to the HW structure
2289 *
2290 * When the silicon family has not implemented a forced speed/duplex
2291 * function for the PHY, simply return 0.
2292 **/
2293static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw)
2294{
2295 if (hw->phy.ops.force_speed_duplex)
2296 return hw->phy.ops.force_speed_duplex(hw);
2297
2298 return 0;
2299}
2300
2301/**
2302 * e1000e_get_phy_type_from_id - Get PHY type from id
2303 * @phy_id: phy_id read from the phy
2304 *
2305 * Returns the phy type from the id.
2306 **/
2307enum e1000_phy_type e1000e_get_phy_type_from_id(u32 phy_id)
2308{
2309 enum e1000_phy_type phy_type = e1000_phy_unknown;
2310
2311 switch (phy_id) {
2312 case M88E1000_I_PHY_ID:
2313 case M88E1000_E_PHY_ID:
2314 case M88E1111_I_PHY_ID:
2315 case M88E1011_I_PHY_ID:
2316 phy_type = e1000_phy_m88;
2317 break;
2318 case IGP01E1000_I_PHY_ID: /* IGP 1 & 2 share this */
2319 phy_type = e1000_phy_igp_2;
2320 break;
2321 case GG82563_E_PHY_ID:
2322 phy_type = e1000_phy_gg82563;
2323 break;
2324 case IGP03E1000_E_PHY_ID:
2325 phy_type = e1000_phy_igp_3;
2326 break;
2327 case IFE_E_PHY_ID:
2328 case IFE_PLUS_E_PHY_ID:
2329 case IFE_C_E_PHY_ID:
2330 phy_type = e1000_phy_ife;
2331 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002332 case BME1000_E_PHY_ID:
2333 case BME1000_E_PHY_ID_R2:
2334 phy_type = e1000_phy_bm;
2335 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002336 case I82578_E_PHY_ID:
2337 phy_type = e1000_phy_82578;
2338 break;
2339 case I82577_E_PHY_ID:
2340 phy_type = e1000_phy_82577;
2341 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002342 case I82579_E_PHY_ID:
2343 phy_type = e1000_phy_82579;
2344 break;
Bruce Allan2fbe4522012-04-19 03:21:47 +00002345 case I217_E_PHY_ID:
2346 phy_type = e1000_phy_i217;
2347 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002348 default:
2349 phy_type = e1000_phy_unknown;
2350 break;
2351 }
2352 return phy_type;
2353}
2354
2355/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002356 * e1000e_determine_phy_address - Determines PHY address.
2357 * @hw: pointer to the HW structure
2358 *
2359 * This uses a trial and error method to loop through possible PHY
2360 * addresses. It tests each by reading the PHY ID registers and
2361 * checking for a match.
2362 **/
2363s32 e1000e_determine_phy_address(struct e1000_hw *hw)
2364{
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002365 u32 phy_addr = 0;
2366 u32 i;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002367 enum e1000_phy_type phy_type = e1000_phy_unknown;
2368
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002369 hw->phy.id = phy_type;
2370
2371 for (phy_addr = 0; phy_addr < E1000_MAX_PHY_ADDR; phy_addr++) {
2372 hw->phy.addr = phy_addr;
2373 i = 0;
2374
2375 do {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002376 e1000e_get_phy_id(hw);
2377 phy_type = e1000e_get_phy_type_from_id(hw->phy.id);
2378
Bruce Allane921eb12012-11-28 09:28:37 +00002379 /* If phy_type is valid, break - we found our
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002380 * PHY address
2381 */
Bruce Allan5015e532012-02-08 02:55:56 +00002382 if (phy_type != e1000_phy_unknown)
2383 return 0;
2384
Bruce Allan1bba4382011-03-19 00:27:20 +00002385 usleep_range(1000, 2000);
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002386 i++;
2387 } while (i < 10);
2388 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002389
Bruce Allan5015e532012-02-08 02:55:56 +00002390 return -E1000_ERR_PHY_TYPE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002391}
2392
2393/**
2394 * e1000_get_phy_addr_for_bm_page - Retrieve PHY page address
2395 * @page: page to access
2396 *
2397 * Returns the phy address for the page requested.
2398 **/
2399static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg)
2400{
2401 u32 phy_addr = 2;
2402
2403 if ((page >= 768) || (page == 0 && reg == 25) || (reg == 31))
2404 phy_addr = 1;
2405
2406 return phy_addr;
2407}
2408
2409/**
2410 * e1000e_write_phy_reg_bm - Write BM PHY register
2411 * @hw: pointer to the HW structure
2412 * @offset: register offset to write to
2413 * @data: data to write at register offset
2414 *
2415 * Acquires semaphore, if necessary, then writes the data to PHY register
2416 * at the offset. Release any acquired semaphores before exiting.
2417 **/
2418s32 e1000e_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data)
2419{
2420 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002421 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002422
Bruce Allan94d81862009-11-20 23:25:26 +00002423 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002424 if (ret_val)
2425 return ret_val;
2426
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002427 /* Page 800 works differently than the rest so it has its own func */
2428 if (page == BM_WUC_PAGE) {
2429 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002430 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002431 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002432 }
2433
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002434 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2435
2436 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002437 u32 page_shift, page_select;
2438
Bruce Allane921eb12012-11-28 09:28:37 +00002439 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002440 * phy address 2 and 3. Page select is shifted only for
2441 * phy address 1.
2442 */
2443 if (hw->phy.addr == 1) {
2444 page_shift = IGP_PAGE_SHIFT;
2445 page_select = IGP01E1000_PHY_PAGE_SELECT;
2446 } else {
2447 page_shift = 0;
2448 page_select = BM_PHY_PAGE_SELECT;
2449 }
2450
2451 /* Page is shifted left, PHY expects (page x 32) */
2452 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
2453 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002454 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002455 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002456 }
2457
2458 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2459 data);
2460
Bruce Allan75ce1532012-02-08 02:54:48 +00002461release:
Bruce Allan94d81862009-11-20 23:25:26 +00002462 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002463 return ret_val;
2464}
2465
2466/**
2467 * e1000e_read_phy_reg_bm - Read BM PHY register
2468 * @hw: pointer to the HW structure
2469 * @offset: register offset to be read
2470 * @data: pointer to the read data
2471 *
2472 * Acquires semaphore, if necessary, then reads the PHY register at offset
2473 * and storing the retrieved information in data. Release any acquired
2474 * semaphores before exiting.
2475 **/
2476s32 e1000e_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data)
2477{
2478 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002479 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002480
Bruce Allan94d81862009-11-20 23:25:26 +00002481 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002482 if (ret_val)
2483 return ret_val;
2484
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002485 /* Page 800 works differently than the rest so it has its own func */
2486 if (page == BM_WUC_PAGE) {
2487 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002488 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002489 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002490 }
2491
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002492 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2493
2494 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002495 u32 page_shift, page_select;
2496
Bruce Allane921eb12012-11-28 09:28:37 +00002497 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002498 * phy address 2 and 3. Page select is shifted only for
2499 * phy address 1.
2500 */
2501 if (hw->phy.addr == 1) {
2502 page_shift = IGP_PAGE_SHIFT;
2503 page_select = IGP01E1000_PHY_PAGE_SELECT;
2504 } else {
2505 page_shift = 0;
2506 page_select = BM_PHY_PAGE_SELECT;
2507 }
2508
2509 /* Page is shifted left, PHY expects (page x 32) */
2510 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
2511 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002512 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002513 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002514 }
2515
2516 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2517 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002518release:
Bruce Allan94d81862009-11-20 23:25:26 +00002519 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002520 return ret_val;
2521}
2522
2523/**
Bruce Allan4662e822008-08-26 18:37:06 -07002524 * e1000e_read_phy_reg_bm2 - Read BM PHY register
2525 * @hw: pointer to the HW structure
2526 * @offset: register offset to be read
2527 * @data: pointer to the read data
2528 *
2529 * Acquires semaphore, if necessary, then reads the PHY register at offset
2530 * and storing the retrieved information in data. Release any acquired
2531 * semaphores before exiting.
2532 **/
2533s32 e1000e_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data)
2534{
2535 s32 ret_val;
2536 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2537
Bruce Allan94d81862009-11-20 23:25:26 +00002538 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002539 if (ret_val)
2540 return ret_val;
2541
Bruce Allan4662e822008-08-26 18:37:06 -07002542 /* Page 800 works differently than the rest so it has its own func */
2543 if (page == BM_WUC_PAGE) {
2544 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002545 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002546 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002547 }
2548
Bruce Allan4662e822008-08-26 18:37:06 -07002549 hw->phy.addr = 1;
2550
2551 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2552
2553 /* Page is shifted left, PHY expects (page x 32) */
2554 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2555 page);
2556
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002557 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002558 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002559 }
2560
2561 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2562 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002563release:
Bruce Allan94d81862009-11-20 23:25:26 +00002564 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002565 return ret_val;
2566}
2567
2568/**
2569 * e1000e_write_phy_reg_bm2 - Write BM PHY register
2570 * @hw: pointer to the HW structure
2571 * @offset: register offset to write to
2572 * @data: data to write at register offset
2573 *
2574 * Acquires semaphore, if necessary, then writes the data to PHY register
2575 * at the offset. Release any acquired semaphores before exiting.
2576 **/
2577s32 e1000e_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data)
2578{
2579 s32 ret_val;
2580 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2581
Bruce Allan94d81862009-11-20 23:25:26 +00002582 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002583 if (ret_val)
2584 return ret_val;
2585
Bruce Allan4662e822008-08-26 18:37:06 -07002586 /* Page 800 works differently than the rest so it has its own func */
2587 if (page == BM_WUC_PAGE) {
2588 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002589 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002590 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002591 }
2592
Bruce Allan4662e822008-08-26 18:37:06 -07002593 hw->phy.addr = 1;
2594
2595 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2596 /* Page is shifted left, PHY expects (page x 32) */
2597 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2598 page);
2599
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002600 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002601 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002602 }
2603
2604 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2605 data);
2606
Bruce Allan75ce1532012-02-08 02:54:48 +00002607release:
Bruce Allan94d81862009-11-20 23:25:26 +00002608 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002609 return ret_val;
2610}
2611
2612/**
Bruce Allan2b6b1682011-05-13 07:20:09 +00002613 * e1000_enable_phy_wakeup_reg_access_bm - enable access to BM wakeup registers
2614 * @hw: pointer to the HW structure
2615 * @phy_reg: pointer to store original contents of BM_WUC_ENABLE_REG
2616 *
2617 * Assumes semaphore already acquired and phy_reg points to a valid memory
2618 * address to store contents of the BM_WUC_ENABLE_REG register.
2619 **/
2620s32 e1000_enable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2621{
2622 s32 ret_val;
2623 u16 temp;
2624
2625 /* All page select, port ctrl and wakeup registers use phy address 1 */
2626 hw->phy.addr = 1;
2627
2628 /* Select Port Control Registers page */
2629 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2630 if (ret_val) {
2631 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002632 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002633 }
2634
2635 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
2636 if (ret_val) {
2637 e_dbg("Could not read PHY register %d.%d\n",
2638 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002639 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002640 }
2641
Bruce Allane921eb12012-11-28 09:28:37 +00002642 /* Enable both PHY wakeup mode and Wakeup register page writes.
Bruce Allan2b6b1682011-05-13 07:20:09 +00002643 * Prevent a power state change by disabling ME and Host PHY wakeup.
2644 */
2645 temp = *phy_reg;
2646 temp |= BM_WUC_ENABLE_BIT;
2647 temp &= ~(BM_WUC_ME_WU_BIT | BM_WUC_HOST_WU_BIT);
2648
2649 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, temp);
2650 if (ret_val) {
2651 e_dbg("Could not write PHY register %d.%d\n",
2652 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002653 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002654 }
2655
Bruce Allane921eb12012-11-28 09:28:37 +00002656 /* Select Host Wakeup Registers page - caller now able to write
Bruce Allan5015e532012-02-08 02:55:56 +00002657 * registers on the Wakeup registers page
2658 */
2659 return e1000_set_page_igp(hw, (BM_WUC_PAGE << IGP_PAGE_SHIFT));
Bruce Allan2b6b1682011-05-13 07:20:09 +00002660}
2661
2662/**
2663 * e1000_disable_phy_wakeup_reg_access_bm - disable access to BM wakeup regs
2664 * @hw: pointer to the HW structure
2665 * @phy_reg: pointer to original contents of BM_WUC_ENABLE_REG
2666 *
2667 * Restore BM_WUC_ENABLE_REG to its original value.
2668 *
2669 * Assumes semaphore already acquired and *phy_reg is the contents of the
2670 * BM_WUC_ENABLE_REG before register(s) on BM_WUC_PAGE were accessed by
2671 * caller.
2672 **/
2673s32 e1000_disable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2674{
Bruce Allan70806a72013-01-05 05:08:37 +00002675 s32 ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002676
2677 /* Select Port Control Registers page */
2678 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2679 if (ret_val) {
2680 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002681 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002682 }
2683
2684 /* Restore 769.17 to its original value */
2685 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, *phy_reg);
2686 if (ret_val)
2687 e_dbg("Could not restore PHY register %d.%d\n",
2688 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002689
Bruce Allan2b6b1682011-05-13 07:20:09 +00002690 return ret_val;
2691}
2692
2693/**
2694 * e1000_access_phy_wakeup_reg_bm - Read/write BM PHY wakeup register
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002695 * @hw: pointer to the HW structure
2696 * @offset: register offset to be read or written
2697 * @data: pointer to the data to read or write
2698 * @read: determines if operation is read or write
Bruce Allan2b6b1682011-05-13 07:20:09 +00002699 * @page_set: BM_WUC_PAGE already set and access enabled
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002700 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002701 * Read the PHY register at offset and store the retrieved information in
2702 * data, or write data to PHY register at offset. Note the procedure to
2703 * access the PHY wakeup registers is different than reading the other PHY
2704 * registers. It works as such:
2705 * 1) Set 769.17.2 (page 769, register 17, bit 2) = 1
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002706 * 2) Set page to 800 for host (801 if we were manageability)
2707 * 3) Write the address using the address opcode (0x11)
2708 * 4) Read or write the data using the data opcode (0x12)
Bruce Allan2b6b1682011-05-13 07:20:09 +00002709 * 5) Restore 769.17.2 to its original value
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002710 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002711 * Steps 1 and 2 are done by e1000_enable_phy_wakeup_reg_access_bm() and
2712 * step 5 is done by e1000_disable_phy_wakeup_reg_access_bm().
2713 *
2714 * Assumes semaphore is already acquired. When page_set==true, assumes
2715 * the PHY page is set to BM_WUC_PAGE (i.e. a function in the call stack
2716 * is responsible for calls to e1000_[enable|disable]_phy_wakeup_reg_bm()).
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002717 **/
2718static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002719 u16 *data, bool read, bool page_set)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002720{
2721 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002722 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002723 u16 page = BM_PHY_REG_PAGE(offset);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002724 u16 phy_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002725
Bruce Allan2b6b1682011-05-13 07:20:09 +00002726 /* Gig must be disabled for MDIO accesses to Host Wakeup reg page */
Bruce Allana4f58f52009-06-02 11:29:18 +00002727 if ((hw->mac.type == e1000_pchlan) &&
Bruce Allan2b6b1682011-05-13 07:20:09 +00002728 (!(er32(PHY_CTRL) & E1000_PHY_CTRL_GBE_DISABLE)))
2729 e_dbg("Attempting to access page %d while gig enabled.\n",
2730 page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002731
Bruce Allan2b6b1682011-05-13 07:20:09 +00002732 if (!page_set) {
2733 /* Enable access to PHY wakeup registers */
2734 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2735 if (ret_val) {
2736 e_dbg("Could not enable PHY wakeup reg access\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002737 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002738 }
Bruce Allan9b71b412009-12-01 15:53:07 +00002739 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002740
Bruce Allan2b6b1682011-05-13 07:20:09 +00002741 e_dbg("Accessing PHY page %d reg 0x%x\n", page, reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002742
Bruce Allan2b6b1682011-05-13 07:20:09 +00002743 /* Write the Wakeup register page offset value using opcode 0x11 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002744 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ADDRESS_OPCODE, reg);
Bruce Allan9b71b412009-12-01 15:53:07 +00002745 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002746 e_dbg("Could not write address opcode to page %d\n", page);
Bruce Allan5015e532012-02-08 02:55:56 +00002747 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002748 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002749
2750 if (read) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002751 /* Read the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002752 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2753 data);
2754 } else {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002755 /* Write the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002756 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2757 *data);
2758 }
2759
Bruce Allan9b71b412009-12-01 15:53:07 +00002760 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002761 e_dbg("Could not access PHY reg %d.%d\n", page, reg);
Bruce Allan5015e532012-02-08 02:55:56 +00002762 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002763 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002764
Bruce Allan2b6b1682011-05-13 07:20:09 +00002765 if (!page_set)
2766 ret_val = e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002767
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002768 return ret_val;
2769}
2770
2771/**
Bruce Allan17f208d2009-12-01 15:47:22 +00002772 * e1000_power_up_phy_copper - Restore copper link in case of PHY power down
2773 * @hw: pointer to the HW structure
2774 *
2775 * In the case of a PHY power down to save power, or to turn off link during a
2776 * driver unload, or wake on lan is not enabled, restore the link to previous
2777 * settings.
2778 **/
2779void e1000_power_up_phy_copper(struct e1000_hw *hw)
2780{
2781 u16 mii_reg = 0;
2782
2783 /* The PHY will retain its settings across a power down/up cycle */
2784 e1e_rphy(hw, PHY_CONTROL, &mii_reg);
2785 mii_reg &= ~MII_CR_POWER_DOWN;
2786 e1e_wphy(hw, PHY_CONTROL, mii_reg);
2787}
2788
2789/**
2790 * e1000_power_down_phy_copper - Restore copper link in case of PHY power down
2791 * @hw: pointer to the HW structure
2792 *
2793 * In the case of a PHY power down to save power, or to turn off link during a
2794 * driver unload, or wake on lan is not enabled, restore the link to previous
2795 * settings.
2796 **/
2797void e1000_power_down_phy_copper(struct e1000_hw *hw)
2798{
2799 u16 mii_reg = 0;
2800
2801 /* The PHY will retain its settings across a power down/up cycle */
2802 e1e_rphy(hw, PHY_CONTROL, &mii_reg);
2803 mii_reg |= MII_CR_POWER_DOWN;
2804 e1e_wphy(hw, PHY_CONTROL, mii_reg);
Bruce Allan1bba4382011-03-19 00:27:20 +00002805 usleep_range(1000, 2000);
Bruce Allan17f208d2009-12-01 15:47:22 +00002806}
2807
2808/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002809 * e1000e_commit_phy - Soft PHY reset
2810 * @hw: pointer to the HW structure
2811 *
2812 * Performs a soft PHY reset on those that apply. This is a function pointer
2813 * entry point called by drivers.
2814 **/
2815s32 e1000e_commit_phy(struct e1000_hw *hw)
2816{
Bruce Allan94d81862009-11-20 23:25:26 +00002817 if (hw->phy.ops.commit)
2818 return hw->phy.ops.commit(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002819
2820 return 0;
2821}
2822
2823/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002824 * __e1000_read_phy_reg_hv - Read HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002825 * @hw: pointer to the HW structure
2826 * @offset: register offset to be read
2827 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002828 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002829 *
2830 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002831 * and stores the retrieved information in data. Release any acquired
Bruce Allana4f58f52009-06-02 11:29:18 +00002832 * semaphore before exiting.
2833 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002834static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002835 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002836{
2837 s32 ret_val;
2838 u16 page = BM_PHY_REG_PAGE(offset);
2839 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002840 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002841
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002842 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002843 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002844 if (ret_val)
2845 return ret_val;
2846 }
2847
Bruce Allana4f58f52009-06-02 11:29:18 +00002848 /* Page 800 works differently than the rest so it has its own func */
2849 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002850 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
2851 true, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002852 goto out;
2853 }
2854
2855 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2856 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
2857 data, true);
2858 goto out;
2859 }
2860
Bruce Allan2b6b1682011-05-13 07:20:09 +00002861 if (!page_set) {
2862 if (page == HV_INTC_FC_PAGE_START)
2863 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002864
Bruce Allan2b6b1682011-05-13 07:20:09 +00002865 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2866 /* Page is shifted left, PHY expects (page x 32) */
2867 ret_val = e1000_set_page_igp(hw,
2868 (page << IGP_PAGE_SHIFT));
Bruce Allana4f58f52009-06-02 11:29:18 +00002869
Bruce Allan2b6b1682011-05-13 07:20:09 +00002870 hw->phy.addr = phy_addr;
Bruce Allana4f58f52009-06-02 11:29:18 +00002871
Bruce Allan2b6b1682011-05-13 07:20:09 +00002872 if (ret_val)
2873 goto out;
2874 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002875 }
2876
Bruce Allan2b6b1682011-05-13 07:20:09 +00002877 e_dbg("reading PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2878 page << IGP_PAGE_SHIFT, reg);
2879
Bruce Allana4f58f52009-06-02 11:29:18 +00002880 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
2881 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002882out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002883 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002884 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002885
Bruce Allana4f58f52009-06-02 11:29:18 +00002886 return ret_val;
2887}
2888
2889/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002890 * e1000_read_phy_reg_hv - Read HV PHY register
2891 * @hw: pointer to the HW structure
2892 * @offset: register offset to be read
2893 * @data: pointer to the read data
2894 *
2895 * Acquires semaphore then reads the PHY register at offset and stores
2896 * the retrieved information in data. Release the acquired semaphore
2897 * before exiting.
2898 **/
2899s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2900{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002901 return __e1000_read_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002902}
2903
2904/**
2905 * e1000_read_phy_reg_hv_locked - Read HV PHY register
2906 * @hw: pointer to the HW structure
2907 * @offset: register offset to be read
2908 * @data: pointer to the read data
2909 *
2910 * Reads the PHY register at offset and stores the retrieved information
2911 * in data. Assumes semaphore already acquired.
2912 **/
2913s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data)
2914{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002915 return __e1000_read_phy_reg_hv(hw, offset, data, true, false);
2916}
2917
2918/**
2919 * e1000_read_phy_reg_page_hv - Read HV PHY register
2920 * @hw: pointer to the HW structure
2921 * @offset: register offset to write to
2922 * @data: data to write at register offset
2923 *
2924 * Reads the PHY register at offset and stores the retrieved information
2925 * in data. Assumes semaphore already acquired and page already set.
2926 **/
2927s32 e1000_read_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2928{
2929 return __e1000_read_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002930}
2931
2932/**
2933 * __e1000_write_phy_reg_hv - Write HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002934 * @hw: pointer to the HW structure
2935 * @offset: register offset to write to
2936 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002937 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002938 *
2939 * Acquires semaphore, if necessary, then writes the data to PHY register
2940 * at the offset. Release any acquired semaphores before exiting.
2941 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002942static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002943 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002944{
2945 s32 ret_val;
2946 u16 page = BM_PHY_REG_PAGE(offset);
2947 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002948 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002949
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002950 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002951 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002952 if (ret_val)
2953 return ret_val;
2954 }
2955
Bruce Allana4f58f52009-06-02 11:29:18 +00002956 /* Page 800 works differently than the rest so it has its own func */
2957 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002958 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
2959 false, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002960 goto out;
2961 }
2962
2963 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2964 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
2965 &data, false);
2966 goto out;
2967 }
2968
Bruce Allan2b6b1682011-05-13 07:20:09 +00002969 if (!page_set) {
2970 if (page == HV_INTC_FC_PAGE_START)
2971 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002972
Bruce Allane921eb12012-11-28 09:28:37 +00002973 /* Workaround MDIO accesses being disabled after entering IEEE
Bruce Allan2b6b1682011-05-13 07:20:09 +00002974 * Power Down (when bit 11 of the PHY Control register is set)
2975 */
2976 if ((hw->phy.type == e1000_phy_82578) &&
2977 (hw->phy.revision >= 1) &&
2978 (hw->phy.addr == 2) &&
Bruce Allan04499ec2012-04-13 00:08:31 +00002979 !(MAX_PHY_REG_ADDRESS & reg) && (data & (1 << 11))) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002980 u16 data2 = 0x7EFF;
2981 ret_val = e1000_access_phy_debug_regs_hv(hw,
2982 (1 << 6) | 0x3,
2983 &data2, false);
2984 if (ret_val)
2985 goto out;
2986 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002987
Bruce Allan2b6b1682011-05-13 07:20:09 +00002988 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2989 /* Page is shifted left, PHY expects (page x 32) */
2990 ret_val = e1000_set_page_igp(hw,
2991 (page << IGP_PAGE_SHIFT));
2992
2993 hw->phy.addr = phy_addr;
2994
2995 if (ret_val)
2996 goto out;
2997 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002998 }
2999
Bruce Allan2b6b1682011-05-13 07:20:09 +00003000 e_dbg("writing PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
3001 page << IGP_PAGE_SHIFT, reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00003002
3003 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
3004 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003005
3006out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003007 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00003008 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003009
Bruce Allana4f58f52009-06-02 11:29:18 +00003010 return ret_val;
3011}
3012
3013/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003014 * e1000_write_phy_reg_hv - Write HV PHY register
3015 * @hw: pointer to the HW structure
3016 * @offset: register offset to write to
3017 * @data: data to write at register offset
3018 *
3019 * Acquires semaphore then writes the data to PHY register at the offset.
3020 * Release the acquired semaphores before exiting.
3021 **/
3022s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data)
3023{
Bruce Allan2b6b1682011-05-13 07:20:09 +00003024 return __e1000_write_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003025}
3026
3027/**
3028 * e1000_write_phy_reg_hv_locked - Write HV PHY register
3029 * @hw: pointer to the HW structure
3030 * @offset: register offset to write to
3031 * @data: data to write at register offset
3032 *
3033 * Writes the data to PHY register at the offset. Assumes semaphore
3034 * already acquired.
3035 **/
3036s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data)
3037{
Bruce Allan2b6b1682011-05-13 07:20:09 +00003038 return __e1000_write_phy_reg_hv(hw, offset, data, true, false);
3039}
3040
3041/**
3042 * e1000_write_phy_reg_page_hv - Write HV PHY register
3043 * @hw: pointer to the HW structure
3044 * @offset: register offset to write to
3045 * @data: data to write at register offset
3046 *
3047 * Writes the data to PHY register at the offset. Assumes semaphore
3048 * already acquired and page already set.
3049 **/
3050s32 e1000_write_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 data)
3051{
3052 return __e1000_write_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003053}
3054
3055/**
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003056 * e1000_get_phy_addr_for_hv_page - Get PHY address based on page
Bruce Allana4f58f52009-06-02 11:29:18 +00003057 * @page: page to be accessed
3058 **/
3059static u32 e1000_get_phy_addr_for_hv_page(u32 page)
3060{
3061 u32 phy_addr = 2;
3062
3063 if (page >= HV_INTC_FC_PAGE_START)
3064 phy_addr = 1;
3065
3066 return phy_addr;
3067}
3068
3069/**
3070 * e1000_access_phy_debug_regs_hv - Read HV PHY vendor specific high registers
3071 * @hw: pointer to the HW structure
3072 * @offset: register offset to be read or written
3073 * @data: pointer to the data to be read or written
Bruce Allan2b6b1682011-05-13 07:20:09 +00003074 * @read: determines if operation is read or write
Bruce Allana4f58f52009-06-02 11:29:18 +00003075 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003076 * Reads the PHY register at offset and stores the retreived information
3077 * in data. Assumes semaphore already acquired. Note that the procedure
Bruce Allan2b6b1682011-05-13 07:20:09 +00003078 * to access these regs uses the address port and data port to read/write.
3079 * These accesses done with PHY address 2 and without using pages.
Bruce Allana4f58f52009-06-02 11:29:18 +00003080 **/
3081static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
3082 u16 *data, bool read)
3083{
3084 s32 ret_val;
Bruce Allan70806a72013-01-05 05:08:37 +00003085 u32 addr_reg;
3086 u32 data_reg;
Bruce Allana4f58f52009-06-02 11:29:18 +00003087
3088 /* This takes care of the difference with desktop vs mobile phy */
3089 addr_reg = (hw->phy.type == e1000_phy_82578) ?
3090 I82578_ADDR_REG : I82577_ADDR_REG;
3091 data_reg = addr_reg + 1;
3092
Bruce Allana4f58f52009-06-02 11:29:18 +00003093 /* All operations in this function are phy address 2 */
3094 hw->phy.addr = 2;
3095
3096 /* masking with 0x3F to remove the page from offset */
3097 ret_val = e1000e_write_phy_reg_mdic(hw, addr_reg, (u16)offset & 0x3F);
3098 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003099 e_dbg("Could not write the Address Offset port register\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003100 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003101 }
3102
3103 /* Read or write the data value next */
3104 if (read)
3105 ret_val = e1000e_read_phy_reg_mdic(hw, data_reg, data);
3106 else
3107 ret_val = e1000e_write_phy_reg_mdic(hw, data_reg, *data);
3108
Bruce Allan5015e532012-02-08 02:55:56 +00003109 if (ret_val)
Bruce Allan2b6b1682011-05-13 07:20:09 +00003110 e_dbg("Could not access the Data port register\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003111
Bruce Allana4f58f52009-06-02 11:29:18 +00003112 return ret_val;
3113}
3114
3115/**
3116 * e1000_link_stall_workaround_hv - Si workaround
3117 * @hw: pointer to the HW structure
3118 *
3119 * This function works around a Si bug where the link partner can get
3120 * a link up indication before the PHY does. If small packets are sent
3121 * by the link partner they can be placed in the packet buffer without
3122 * being properly accounted for by the PHY and will stall preventing
3123 * further packets from being received. The workaround is to clear the
3124 * packet buffer after the PHY detects link up.
3125 **/
3126s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw)
3127{
3128 s32 ret_val = 0;
3129 u16 data;
3130
3131 if (hw->phy.type != e1000_phy_82578)
Bruce Allan5015e532012-02-08 02:55:56 +00003132 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003133
Bruce Allane65fa872009-07-01 13:27:31 +00003134 /* Do not apply workaround if in PHY loopback bit 14 set */
Bruce Allan482fed82011-01-06 14:29:49 +00003135 e1e_rphy(hw, PHY_CONTROL, &data);
Bruce Allane65fa872009-07-01 13:27:31 +00003136 if (data & PHY_CONTROL_LB)
Bruce Allan5015e532012-02-08 02:55:56 +00003137 return 0;
Bruce Allane65fa872009-07-01 13:27:31 +00003138
Bruce Allana4f58f52009-06-02 11:29:18 +00003139 /* check if link is up and at 1Gbps */
Bruce Allan482fed82011-01-06 14:29:49 +00003140 ret_val = e1e_rphy(hw, BM_CS_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003141 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003142 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003143
Bruce Allan3d3a1672012-02-23 03:13:18 +00003144 data &= BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3145 BM_CS_STATUS_SPEED_MASK;
Bruce Allana4f58f52009-06-02 11:29:18 +00003146
Bruce Allan3d3a1672012-02-23 03:13:18 +00003147 if (data != (BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3148 BM_CS_STATUS_SPEED_1000))
Bruce Allan5015e532012-02-08 02:55:56 +00003149 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003150
Bruce Allanbb9c5ee2012-02-23 03:31:29 +00003151 msleep(200);
Bruce Allana4f58f52009-06-02 11:29:18 +00003152
3153 /* flush the packets in the fifo buffer */
Bruce Allan482fed82011-01-06 14:29:49 +00003154 ret_val = e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC |
3155 HV_MUX_DATA_CTRL_FORCE_SPEED);
Bruce Allana4f58f52009-06-02 11:29:18 +00003156 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003157 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003158
Bruce Allan5015e532012-02-08 02:55:56 +00003159 return e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003160}
3161
3162/**
3163 * e1000_check_polarity_82577 - Checks the polarity.
3164 * @hw: pointer to the HW structure
3165 *
3166 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
3167 *
3168 * Polarity is determined based on the PHY specific status register.
3169 **/
3170s32 e1000_check_polarity_82577(struct e1000_hw *hw)
3171{
3172 struct e1000_phy_info *phy = &hw->phy;
3173 s32 ret_val;
3174 u16 data;
3175
Bruce Allan482fed82011-01-06 14:29:49 +00003176 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003177
3178 if (!ret_val)
3179 phy->cable_polarity = (data & I82577_PHY_STATUS2_REV_POLARITY)
3180 ? e1000_rev_polarity_reversed
3181 : e1000_rev_polarity_normal;
3182
3183 return ret_val;
3184}
3185
3186/**
3187 * e1000_phy_force_speed_duplex_82577 - Force speed/duplex for I82577 PHY
3188 * @hw: pointer to the HW structure
3189 *
Bruce Allaneab50ff2010-05-10 15:01:30 +00003190 * Calls the PHY setup function to force speed and duplex.
Bruce Allana4f58f52009-06-02 11:29:18 +00003191 **/
3192s32 e1000_phy_force_speed_duplex_82577(struct e1000_hw *hw)
3193{
3194 struct e1000_phy_info *phy = &hw->phy;
3195 s32 ret_val;
3196 u16 phy_data;
3197 bool link;
3198
Bruce Allan482fed82011-01-06 14:29:49 +00003199 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003200 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003201 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003202
3203 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
3204
Bruce Allan482fed82011-01-06 14:29:49 +00003205 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003206 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003207 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003208
Bruce Allana4f58f52009-06-02 11:29:18 +00003209 udelay(1);
3210
3211 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003212 e_dbg("Waiting for forced speed/duplex link on 82577 phy\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003213
Bruce Allan3d3a1672012-02-23 03:13:18 +00003214 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3215 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003216 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003217 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003218
3219 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003220 e_dbg("Link taking longer than expected.\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003221
3222 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00003223 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3224 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003225 }
3226
Bruce Allana4f58f52009-06-02 11:29:18 +00003227 return ret_val;
3228}
3229
3230/**
3231 * e1000_get_phy_info_82577 - Retrieve I82577 PHY information
3232 * @hw: pointer to the HW structure
3233 *
3234 * Read PHY status to determine if link is up. If link is up, then
3235 * set/determine 10base-T extended distance and polarity correction. Read
3236 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
3237 * determine on the cable length, local and remote receiver.
3238 **/
3239s32 e1000_get_phy_info_82577(struct e1000_hw *hw)
3240{
3241 struct e1000_phy_info *phy = &hw->phy;
3242 s32 ret_val;
3243 u16 data;
3244 bool link;
3245
3246 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
3247 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003248 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003249
3250 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003251 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003252 return -E1000_ERR_CONFIG;
Bruce Allana4f58f52009-06-02 11:29:18 +00003253 }
3254
3255 phy->polarity_correction = true;
3256
3257 ret_val = e1000_check_polarity_82577(hw);
3258 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003259 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003260
Bruce Allan482fed82011-01-06 14:29:49 +00003261 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003262 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003263 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003264
Bruce Allan04499ec2012-04-13 00:08:31 +00003265 phy->is_mdix = !!(data & I82577_PHY_STATUS2_MDIX);
Bruce Allana4f58f52009-06-02 11:29:18 +00003266
3267 if ((data & I82577_PHY_STATUS2_SPEED_MASK) ==
3268 I82577_PHY_STATUS2_SPEED_1000MBPS) {
3269 ret_val = hw->phy.ops.get_cable_length(hw);
3270 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003271 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003272
Bruce Allan482fed82011-01-06 14:29:49 +00003273 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003274 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003275 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003276
3277 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
3278 ? e1000_1000t_rx_status_ok
3279 : e1000_1000t_rx_status_not_ok;
3280
3281 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
3282 ? e1000_1000t_rx_status_ok
3283 : e1000_1000t_rx_status_not_ok;
3284 } else {
3285 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
3286 phy->local_rx = e1000_1000t_rx_status_undefined;
3287 phy->remote_rx = e1000_1000t_rx_status_undefined;
3288 }
3289
Bruce Allan5015e532012-02-08 02:55:56 +00003290 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003291}
3292
3293/**
3294 * e1000_get_cable_length_82577 - Determine cable length for 82577 PHY
3295 * @hw: pointer to the HW structure
3296 *
3297 * Reads the diagnostic status register and verifies result is valid before
3298 * placing it in the phy_cable_length field.
3299 **/
3300s32 e1000_get_cable_length_82577(struct e1000_hw *hw)
3301{
3302 struct e1000_phy_info *phy = &hw->phy;
3303 s32 ret_val;
3304 u16 phy_data, length;
3305
Bruce Allan482fed82011-01-06 14:29:49 +00003306 ret_val = e1e_rphy(hw, I82577_PHY_DIAG_STATUS, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003307 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003308 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003309
3310 length = (phy_data & I82577_DSTATUS_CABLE_LENGTH) >>
3311 I82577_DSTATUS_CABLE_LENGTH_SHIFT;
3312
3313 if (length == E1000_CABLE_LENGTH_UNDEFINED)
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00003314 return -E1000_ERR_PHY;
Bruce Allana4f58f52009-06-02 11:29:18 +00003315
3316 phy->cable_length = length;
3317
Bruce Allan5015e532012-02-08 02:55:56 +00003318 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003319}