blob: 2a6ee13285b19bf49e53485d03da830e1ef0cbe7 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allan0d6057e2011-01-04 01:16:44 +00004 Copyright(c) 1999 - 2011 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
29#include <linux/delay.h>
30
31#include "e1000.h"
32
33static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw);
34static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw);
35static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active);
36static s32 e1000_wait_autoneg(struct e1000_hw *hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -070037static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg);
38static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +000039 u16 *data, bool read, bool page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +000040static u32 e1000_get_phy_addr_for_hv_page(u32 page);
41static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
42 u16 *data, bool read);
Auke Kokbc7f75f2007-09-17 12:30:59 -070043
44/* Cable length tables */
Bruce Allan64806412010-12-11 05:53:42 +000045static const u16 e1000_m88_cable_length_table[] = {
46 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED };
Bruce Allaneb656d42009-12-01 15:47:02 +000047#define M88E1000_CABLE_LENGTH_TABLE_SIZE \
48 ARRAY_SIZE(e1000_m88_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070049
Bruce Allan64806412010-12-11 05:53:42 +000050static const u16 e1000_igp_2_cable_length_table[] = {
51 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, 0, 0, 0, 3,
52 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, 6, 10, 14, 18, 22,
53 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, 21, 26, 31, 35, 40,
54 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, 40, 45, 51, 56, 61,
55 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, 60, 66, 72, 77, 82,
56 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, 83, 89, 95,
57 100, 105, 109, 113, 116, 119, 122, 124, 104, 109, 114, 118, 121,
58 124};
Auke Kokbc7f75f2007-09-17 12:30:59 -070059#define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +020060 ARRAY_SIZE(e1000_igp_2_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070061
Bruce Allana4f58f52009-06-02 11:29:18 +000062#define BM_PHY_REG_PAGE(offset) \
63 ((u16)(((offset) >> PHY_PAGE_SHIFT) & 0xFFFF))
64#define BM_PHY_REG_NUM(offset) \
65 ((u16)(((offset) & MAX_PHY_REG_ADDRESS) |\
66 (((offset) >> (PHY_UPPER_SHIFT - PHY_PAGE_SHIFT)) &\
67 ~MAX_PHY_REG_ADDRESS)))
68
69#define HV_INTC_FC_PAGE_START 768
70#define I82578_ADDR_REG 29
71#define I82577_ADDR_REG 16
72#define I82577_CFG_REG 22
73#define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15)
74#define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */
75#define I82577_CTRL_REG 23
Bruce Allana4f58f52009-06-02 11:29:18 +000076
77/* 82577 specific PHY registers */
78#define I82577_PHY_CTRL_2 18
79#define I82577_PHY_STATUS_2 26
80#define I82577_PHY_DIAG_STATUS 31
81
82/* I82577 PHY Status 2 */
83#define I82577_PHY_STATUS2_REV_POLARITY 0x0400
84#define I82577_PHY_STATUS2_MDIX 0x0800
85#define I82577_PHY_STATUS2_SPEED_MASK 0x0300
86#define I82577_PHY_STATUS2_SPEED_1000MBPS 0x0200
87
88/* I82577 PHY Control 2 */
89#define I82577_PHY_CTRL2_AUTO_MDIX 0x0400
90#define I82577_PHY_CTRL2_FORCE_MDI_MDIX 0x0200
91
92/* I82577 PHY Diagnostics Status */
93#define I82577_DSTATUS_CABLE_LENGTH 0x03FC
94#define I82577_DSTATUS_CABLE_LENGTH_SHIFT 2
95
96/* BM PHY Copper Specific Control 1 */
97#define BM_CS_CTRL1 16
98
Bruce Allana4f58f52009-06-02 11:29:18 +000099#define HV_MUX_DATA_CTRL PHY_REG(776, 16)
100#define HV_MUX_DATA_CTRL_GEN_TO_MAC 0x0400
101#define HV_MUX_DATA_CTRL_FORCE_SPEED 0x0004
102
Auke Kokbc7f75f2007-09-17 12:30:59 -0700103/**
104 * e1000e_check_reset_block_generic - Check if PHY reset is blocked
105 * @hw: pointer to the HW structure
106 *
107 * Read the PHY management control register and check whether a PHY reset
108 * is blocked. If a reset is not blocked return 0, otherwise
109 * return E1000_BLK_PHY_RESET (12).
110 **/
111s32 e1000e_check_reset_block_generic(struct e1000_hw *hw)
112{
113 u32 manc;
114
115 manc = er32(MANC);
116
117 return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ?
118 E1000_BLK_PHY_RESET : 0;
119}
120
121/**
122 * e1000e_get_phy_id - Retrieve the PHY ID and revision
123 * @hw: pointer to the HW structure
124 *
125 * Reads the PHY registers and stores the PHY ID and possibly the PHY
126 * revision in the hardware structure.
127 **/
128s32 e1000e_get_phy_id(struct e1000_hw *hw)
129{
130 struct e1000_phy_info *phy = &hw->phy;
Bruce Allana4f58f52009-06-02 11:29:18 +0000131 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700132 u16 phy_id;
Bruce Allana4f58f52009-06-02 11:29:18 +0000133 u16 retry_count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700134
Bruce Allan94d81862009-11-20 23:25:26 +0000135 if (!(phy->ops.read_reg))
Bruce Allana4f58f52009-06-02 11:29:18 +0000136 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700137
Bruce Allana4f58f52009-06-02 11:29:18 +0000138 while (retry_count < 2) {
139 ret_val = e1e_rphy(hw, PHY_ID1, &phy_id);
140 if (ret_val)
141 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700142
Bruce Allana4f58f52009-06-02 11:29:18 +0000143 phy->id = (u32)(phy_id << 16);
144 udelay(20);
145 ret_val = e1e_rphy(hw, PHY_ID2, &phy_id);
146 if (ret_val)
147 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700148
Bruce Allana4f58f52009-06-02 11:29:18 +0000149 phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
150 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
151
152 if (phy->id != 0 && phy->id != PHY_REVISION_MASK)
153 goto out;
154
Bruce Allana4f58f52009-06-02 11:29:18 +0000155 retry_count++;
156 }
157out:
Bruce Allana4f58f52009-06-02 11:29:18 +0000158 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700159}
160
161/**
162 * e1000e_phy_reset_dsp - Reset PHY DSP
163 * @hw: pointer to the HW structure
164 *
165 * Reset the digital signal processor.
166 **/
167s32 e1000e_phy_reset_dsp(struct e1000_hw *hw)
168{
169 s32 ret_val;
170
171 ret_val = e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
172 if (ret_val)
173 return ret_val;
174
175 return e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0);
176}
177
178/**
David Graham2d9498f2008-04-23 11:09:14 -0700179 * e1000e_read_phy_reg_mdic - Read MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700180 * @hw: pointer to the HW structure
181 * @offset: register offset to be read
182 * @data: pointer to the read data
183 *
Auke Kok489815c2008-02-21 15:11:07 -0800184 * Reads the MDI control register in the PHY at offset and stores the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700185 * information read to data.
186 **/
David Graham2d9498f2008-04-23 11:09:14 -0700187s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700188{
189 struct e1000_phy_info *phy = &hw->phy;
190 u32 i, mdic = 0;
191
192 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000193 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700194 return -E1000_ERR_PARAM;
195 }
196
Bruce Allanad680762008-03-28 09:15:03 -0700197 /*
198 * Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700199 * Control register. The MAC will take care of interfacing with the
200 * PHY to retrieve the desired data.
201 */
202 mdic = ((offset << E1000_MDIC_REG_SHIFT) |
203 (phy->addr << E1000_MDIC_PHY_SHIFT) |
204 (E1000_MDIC_OP_READ));
205
206 ew32(MDIC, mdic);
207
Bruce Allanad680762008-03-28 09:15:03 -0700208 /*
209 * Poll the ready bit to see if the MDI read completed
210 * Increasing the time out as testing showed failures with
211 * the lower time out
212 */
David Graham2d9498f2008-04-23 11:09:14 -0700213 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700214 udelay(50);
215 mdic = er32(MDIC);
216 if (mdic & E1000_MDIC_READY)
217 break;
218 }
219 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000220 e_dbg("MDI Read did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700221 return -E1000_ERR_PHY;
222 }
223 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000224 e_dbg("MDI Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700225 return -E1000_ERR_PHY;
226 }
227 *data = (u16) mdic;
228
Bruce Allan664dc872010-11-24 06:01:46 +0000229 /*
230 * Allow some time after each MDIC transaction to avoid
231 * reading duplicate data in the next MDIC transaction.
232 */
233 if (hw->mac.type == e1000_pch2lan)
234 udelay(100);
235
Auke Kokbc7f75f2007-09-17 12:30:59 -0700236 return 0;
237}
238
239/**
David Graham2d9498f2008-04-23 11:09:14 -0700240 * e1000e_write_phy_reg_mdic - Write MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700241 * @hw: pointer to the HW structure
242 * @offset: register offset to write to
243 * @data: data to write to register at offset
244 *
245 * Writes data to MDI control register in the PHY at offset.
246 **/
David Graham2d9498f2008-04-23 11:09:14 -0700247s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700248{
249 struct e1000_phy_info *phy = &hw->phy;
250 u32 i, mdic = 0;
251
252 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000253 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700254 return -E1000_ERR_PARAM;
255 }
256
Bruce Allanad680762008-03-28 09:15:03 -0700257 /*
258 * Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700259 * Control register. The MAC will take care of interfacing with the
260 * PHY to retrieve the desired data.
261 */
262 mdic = (((u32)data) |
263 (offset << E1000_MDIC_REG_SHIFT) |
264 (phy->addr << E1000_MDIC_PHY_SHIFT) |
265 (E1000_MDIC_OP_WRITE));
266
267 ew32(MDIC, mdic);
268
David Graham2d9498f2008-04-23 11:09:14 -0700269 /*
270 * Poll the ready bit to see if the MDI read completed
271 * Increasing the time out as testing showed failures with
272 * the lower time out
273 */
274 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
275 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700276 mdic = er32(MDIC);
277 if (mdic & E1000_MDIC_READY)
278 break;
279 }
280 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000281 e_dbg("MDI Write did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700282 return -E1000_ERR_PHY;
283 }
David Graham2d9498f2008-04-23 11:09:14 -0700284 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000285 e_dbg("MDI Error\n");
David Graham2d9498f2008-04-23 11:09:14 -0700286 return -E1000_ERR_PHY;
287 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700288
Bruce Allan664dc872010-11-24 06:01:46 +0000289 /*
290 * Allow some time after each MDIC transaction to avoid
291 * reading duplicate data in the next MDIC transaction.
292 */
293 if (hw->mac.type == e1000_pch2lan)
294 udelay(100);
295
Auke Kokbc7f75f2007-09-17 12:30:59 -0700296 return 0;
297}
298
299/**
300 * e1000e_read_phy_reg_m88 - Read m88 PHY register
301 * @hw: pointer to the HW structure
302 * @offset: register offset to be read
303 * @data: pointer to the read data
304 *
305 * Acquires semaphore, if necessary, then reads the PHY register at offset
306 * and storing the retrieved information in data. Release any acquired
307 * semaphores before exiting.
308 **/
309s32 e1000e_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data)
310{
311 s32 ret_val;
312
Bruce Allan94d81862009-11-20 23:25:26 +0000313 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700314 if (ret_val)
315 return ret_val;
316
David Graham2d9498f2008-04-23 11:09:14 -0700317 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
318 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700319
Bruce Allan94d81862009-11-20 23:25:26 +0000320 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700321
322 return ret_val;
323}
324
325/**
326 * e1000e_write_phy_reg_m88 - Write m88 PHY register
327 * @hw: pointer to the HW structure
328 * @offset: register offset to write to
329 * @data: data to write at register offset
330 *
331 * Acquires semaphore, if necessary, then writes the data to PHY register
332 * at the offset. Release any acquired semaphores before exiting.
333 **/
334s32 e1000e_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data)
335{
336 s32 ret_val;
337
Bruce Allan94d81862009-11-20 23:25:26 +0000338 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700339 if (ret_val)
340 return ret_val;
341
David Graham2d9498f2008-04-23 11:09:14 -0700342 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
343 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700344
Bruce Allan94d81862009-11-20 23:25:26 +0000345 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700346
347 return ret_val;
348}
349
350/**
Bruce Allan2b6b1682011-05-13 07:20:09 +0000351 * e1000_set_page_igp - Set page as on IGP-like PHY(s)
352 * @hw: pointer to the HW structure
353 * @page: page to set (shifted left when necessary)
354 *
355 * Sets PHY page required for PHY register access. Assumes semaphore is
356 * already acquired. Note, this function sets phy.addr to 1 so the caller
357 * must set it appropriately (if necessary) after this function returns.
358 **/
359s32 e1000_set_page_igp(struct e1000_hw *hw, u16 page)
360{
361 e_dbg("Setting page 0x%x\n", page);
362
363 hw->phy.addr = 1;
364
365 return e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, page);
366}
367
368/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000369 * __e1000e_read_phy_reg_igp - Read igp PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700370 * @hw: pointer to the HW structure
371 * @offset: register offset to be read
372 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000373 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700374 *
375 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000376 * and stores the retrieved information in data. Release any acquired
Auke Kokbc7f75f2007-09-17 12:30:59 -0700377 * semaphores before exiting.
378 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000379static s32 __e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data,
380 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700381{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000382 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700383
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000384 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +0000385 if (!(hw->phy.ops.acquire))
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000386 goto out;
387
Bruce Allan94d81862009-11-20 23:25:26 +0000388 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000389 if (ret_val)
390 goto out;
391 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700392
393 if (offset > MAX_PHY_MULTI_PAGE_REG) {
David Graham2d9498f2008-04-23 11:09:14 -0700394 ret_val = e1000e_write_phy_reg_mdic(hw,
395 IGP01E1000_PHY_PAGE_SELECT,
396 (u16)offset);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000397 if (ret_val)
398 goto release;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700399 }
400
David Graham2d9498f2008-04-23 11:09:14 -0700401 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000402 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700403
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000404release:
405 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000406 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000407out:
408 return ret_val;
409}
Auke Kokbc7f75f2007-09-17 12:30:59 -0700410
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000411/**
412 * e1000e_read_phy_reg_igp - Read igp PHY register
413 * @hw: pointer to the HW structure
414 * @offset: register offset to be read
415 * @data: pointer to the read data
416 *
417 * Acquires semaphore then reads the PHY register at offset and stores the
418 * retrieved information in data.
419 * Release the acquired semaphore before exiting.
420 **/
421s32 e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
422{
423 return __e1000e_read_phy_reg_igp(hw, offset, data, false);
424}
425
426/**
427 * e1000e_read_phy_reg_igp_locked - Read igp PHY register
428 * @hw: pointer to the HW structure
429 * @offset: register offset to be read
430 * @data: pointer to the read data
431 *
432 * Reads the PHY register at offset and stores the retrieved information
433 * in data. Assumes semaphore already acquired.
434 **/
435s32 e1000e_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data)
436{
437 return __e1000e_read_phy_reg_igp(hw, offset, data, true);
438}
439
440/**
441 * e1000e_write_phy_reg_igp - Write igp PHY register
442 * @hw: pointer to the HW structure
443 * @offset: register offset to write to
444 * @data: data to write at register offset
445 * @locked: semaphore has already been acquired or not
446 *
447 * Acquires semaphore, if necessary, then writes the data to PHY register
448 * at the offset. Release any acquired semaphores before exiting.
449 **/
450static s32 __e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data,
451 bool locked)
452{
453 s32 ret_val = 0;
454
455 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +0000456 if (!(hw->phy.ops.acquire))
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000457 goto out;
458
Bruce Allan94d81862009-11-20 23:25:26 +0000459 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000460 if (ret_val)
461 goto out;
462 }
463
464 if (offset > MAX_PHY_MULTI_PAGE_REG) {
465 ret_val = e1000e_write_phy_reg_mdic(hw,
466 IGP01E1000_PHY_PAGE_SELECT,
467 (u16)offset);
468 if (ret_val)
469 goto release;
470 }
471
472 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
473 data);
474
475release:
476 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000477 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000478
479out:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700480 return ret_val;
481}
482
483/**
484 * e1000e_write_phy_reg_igp - Write igp PHY register
485 * @hw: pointer to the HW structure
486 * @offset: register offset to write to
487 * @data: data to write at register offset
488 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000489 * Acquires semaphore then writes the data to PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700490 * at the offset. Release any acquired semaphores before exiting.
491 **/
492s32 e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
493{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000494 return __e1000e_write_phy_reg_igp(hw, offset, data, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700495}
496
497/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000498 * e1000e_write_phy_reg_igp_locked - Write igp PHY register
499 * @hw: pointer to the HW structure
500 * @offset: register offset to write to
501 * @data: data to write at register offset
502 *
503 * Writes the data to PHY register at the offset.
504 * Assumes semaphore already acquired.
505 **/
506s32 e1000e_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data)
507{
508 return __e1000e_write_phy_reg_igp(hw, offset, data, true);
509}
510
511/**
512 * __e1000_read_kmrn_reg - Read kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700513 * @hw: pointer to the HW structure
514 * @offset: register offset to be read
515 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000516 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700517 *
518 * Acquires semaphore, if necessary. Then reads the PHY register at offset
519 * using the kumeran interface. The information retrieved is stored in data.
520 * Release any acquired semaphores before exiting.
521 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000522static s32 __e1000_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data,
523 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700524{
525 u32 kmrnctrlsta;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000526 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700527
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000528 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +0000529 if (!(hw->phy.ops.acquire))
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000530 goto out;
531
Bruce Allan94d81862009-11-20 23:25:26 +0000532 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000533 if (ret_val)
534 goto out;
535 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700536
537 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
538 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
539 ew32(KMRNCTRLSTA, kmrnctrlsta);
540
541 udelay(2);
542
543 kmrnctrlsta = er32(KMRNCTRLSTA);
544 *data = (u16)kmrnctrlsta;
545
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000546 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000547 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700548
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000549out:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700550 return ret_val;
551}
552
553/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000554 * e1000e_read_kmrn_reg - Read kumeran register
555 * @hw: pointer to the HW structure
556 * @offset: register offset to be read
557 * @data: pointer to the read data
558 *
559 * Acquires semaphore then reads the PHY register at offset using the
560 * kumeran interface. The information retrieved is stored in data.
561 * Release the acquired semaphore before exiting.
562 **/
563s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data)
564{
565 return __e1000_read_kmrn_reg(hw, offset, data, false);
566}
567
568/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000569 * e1000e_read_kmrn_reg_locked - Read kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000570 * @hw: pointer to the HW structure
571 * @offset: register offset to be read
572 * @data: pointer to the read data
573 *
574 * Reads the PHY register at offset using the kumeran interface. The
575 * information retrieved is stored in data.
576 * Assumes semaphore already acquired.
577 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000578s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000579{
580 return __e1000_read_kmrn_reg(hw, offset, data, true);
581}
582
583/**
584 * __e1000_write_kmrn_reg - Write kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700585 * @hw: pointer to the HW structure
586 * @offset: register offset to write to
587 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000588 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700589 *
590 * Acquires semaphore, if necessary. Then write the data to PHY register
591 * at the offset using the kumeran interface. Release any acquired semaphores
592 * before exiting.
593 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000594static s32 __e1000_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data,
595 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700596{
597 u32 kmrnctrlsta;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000598 s32 ret_val = 0;
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 if (!(hw->phy.ops.acquire))
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000602 goto out;
603
Bruce Allan94d81862009-11-20 23:25:26 +0000604 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000605 if (ret_val)
606 goto out;
607 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700608
609 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
610 E1000_KMRNCTRLSTA_OFFSET) | data;
611 ew32(KMRNCTRLSTA, kmrnctrlsta);
612
613 udelay(2);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700614
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000615 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000616 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000617
618out:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700619 return ret_val;
620}
621
622/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000623 * e1000e_write_kmrn_reg - Write kumeran register
624 * @hw: pointer to the HW structure
625 * @offset: register offset to write to
626 * @data: data to write at register offset
627 *
628 * Acquires semaphore then writes the data to the PHY register at the offset
629 * using the kumeran interface. Release the acquired semaphore before exiting.
630 **/
631s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data)
632{
633 return __e1000_write_kmrn_reg(hw, offset, data, false);
634}
635
636/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000637 * e1000e_write_kmrn_reg_locked - Write kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000638 * @hw: pointer to the HW structure
639 * @offset: register offset to write to
640 * @data: data to write at register offset
641 *
642 * Write the data to PHY register at the offset using the kumeran interface.
643 * Assumes semaphore already acquired.
644 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000645s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000646{
647 return __e1000_write_kmrn_reg(hw, offset, data, true);
648}
649
650/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000651 * e1000_copper_link_setup_82577 - Setup 82577 PHY for copper link
652 * @hw: pointer to the HW structure
653 *
654 * Sets up Carrier-sense on Transmit and downshift values.
655 **/
656s32 e1000_copper_link_setup_82577(struct e1000_hw *hw)
657{
Bruce Allana4f58f52009-06-02 11:29:18 +0000658 s32 ret_val;
659 u16 phy_data;
660
Bruce Allanaf667a22010-12-31 06:10:01 +0000661 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Bruce Allan482fed82011-01-06 14:29:49 +0000662 ret_val = e1e_rphy(hw, I82577_CFG_REG, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000663 if (ret_val)
664 goto out;
665
666 phy_data |= I82577_CFG_ASSERT_CRS_ON_TX;
667
668 /* Enable downshift */
669 phy_data |= I82577_CFG_ENABLE_DOWNSHIFT;
670
Bruce Allan482fed82011-01-06 14:29:49 +0000671 ret_val = e1e_wphy(hw, I82577_CFG_REG, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000672
673out:
674 return ret_val;
675}
676
677/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700678 * e1000e_copper_link_setup_m88 - Setup m88 PHY's for copper link
679 * @hw: pointer to the HW structure
680 *
681 * Sets up MDI/MDI-X and polarity for m88 PHY's. If necessary, transmit clock
682 * and downshift values are set also.
683 **/
684s32 e1000e_copper_link_setup_m88(struct e1000_hw *hw)
685{
686 struct e1000_phy_info *phy = &hw->phy;
687 s32 ret_val;
688 u16 phy_data;
689
Bruce Allanad680762008-03-28 09:15:03 -0700690 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700691 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
692 if (ret_val)
693 return ret_val;
694
Bruce Allana4f58f52009-06-02 11:29:18 +0000695 /* For BM PHY this bit is downshift enable */
696 if (phy->type != e1000_phy_bm)
David Graham2d9498f2008-04-23 11:09:14 -0700697 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700698
Bruce Allanad680762008-03-28 09:15:03 -0700699 /*
700 * Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700701 * MDI/MDI-X = 0 (default)
702 * 0 - Auto for all speeds
703 * 1 - MDI mode
704 * 2 - MDI-X mode
705 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
706 */
707 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
708
709 switch (phy->mdix) {
710 case 1:
711 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
712 break;
713 case 2:
714 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
715 break;
716 case 3:
717 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
718 break;
719 case 0:
720 default:
721 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
722 break;
723 }
724
Bruce Allanad680762008-03-28 09:15:03 -0700725 /*
726 * Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700727 * disable_polarity_correction = 0 (default)
728 * Automatic Correction for Reversed Cable Polarity
729 * 0 - Disabled
730 * 1 - Enabled
731 */
732 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
733 if (phy->disable_polarity_correction == 1)
734 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
735
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700736 /* Enable downshift on BM (disabled by default) */
737 if (phy->type == e1000_phy_bm)
738 phy_data |= BME1000_PSCR_ENABLE_DOWNSHIFT;
739
Auke Kokbc7f75f2007-09-17 12:30:59 -0700740 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
741 if (ret_val)
742 return ret_val;
743
Bruce Allan4662e822008-08-26 18:37:06 -0700744 if ((phy->type == e1000_phy_m88) &&
745 (phy->revision < E1000_REVISION_4) &&
746 (phy->id != BME1000_E_PHY_ID_R2)) {
Bruce Allanad680762008-03-28 09:15:03 -0700747 /*
748 * Force TX_CLK in the Extended PHY Specific Control Register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700749 * to 25MHz clock.
750 */
751 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
752 if (ret_val)
753 return ret_val;
754
755 phy_data |= M88E1000_EPSCR_TX_CLK_25;
756
757 if ((phy->revision == 2) &&
758 (phy->id == M88E1111_I_PHY_ID)) {
759 /* 82573L PHY - set the downshift counter to 5x. */
760 phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
761 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
762 } else {
763 /* Configure Master and Slave downshift values */
764 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
765 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
766 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
767 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
768 }
769 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
770 if (ret_val)
771 return ret_val;
772 }
773
Bruce Allan4662e822008-08-26 18:37:06 -0700774 if ((phy->type == e1000_phy_bm) && (phy->id == BME1000_E_PHY_ID_R2)) {
775 /* Set PHY page 0, register 29 to 0x0003 */
776 ret_val = e1e_wphy(hw, 29, 0x0003);
777 if (ret_val)
778 return ret_val;
779
780 /* Set PHY page 0, register 30 to 0x0000 */
781 ret_val = e1e_wphy(hw, 30, 0x0000);
782 if (ret_val)
783 return ret_val;
784 }
785
Auke Kokbc7f75f2007-09-17 12:30:59 -0700786 /* Commit the changes. */
787 ret_val = e1000e_commit_phy(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000788 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000789 e_dbg("Error committing the PHY changes\n");
Bruce Allana4f58f52009-06-02 11:29:18 +0000790 return ret_val;
791 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700792
Bruce Allana4f58f52009-06-02 11:29:18 +0000793 if (phy->type == e1000_phy_82578) {
Bruce Allan482fed82011-01-06 14:29:49 +0000794 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000795 if (ret_val)
796 return ret_val;
797
798 /* 82578 PHY - set the downshift count to 1x. */
799 phy_data |= I82578_EPSCR_DOWNSHIFT_ENABLE;
800 phy_data &= ~I82578_EPSCR_DOWNSHIFT_COUNTER_MASK;
Bruce Allan482fed82011-01-06 14:29:49 +0000801 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000802 if (ret_val)
803 return ret_val;
804 }
805
806 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700807}
808
809/**
810 * e1000e_copper_link_setup_igp - Setup igp PHY's for copper link
811 * @hw: pointer to the HW structure
812 *
813 * Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for
814 * igp PHY's.
815 **/
816s32 e1000e_copper_link_setup_igp(struct e1000_hw *hw)
817{
818 struct e1000_phy_info *phy = &hw->phy;
819 s32 ret_val;
820 u16 data;
821
822 ret_val = e1000_phy_hw_reset(hw);
823 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000824 e_dbg("Error resetting the PHY.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700825 return ret_val;
826 }
827
David Graham2d9498f2008-04-23 11:09:14 -0700828 /*
829 * Wait 100ms for MAC to configure PHY from NVM settings, to avoid
830 * timeout issues when LFS is enabled.
831 */
832 msleep(100);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700833
834 /* disable lplu d0 during driver init */
Bruce Allan564ea9b2009-11-20 23:26:44 +0000835 ret_val = e1000_set_d0_lplu_state(hw, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700836 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000837 e_dbg("Error Disabling LPLU D0\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700838 return ret_val;
839 }
840 /* Configure mdi-mdix settings */
841 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &data);
842 if (ret_val)
843 return ret_val;
844
845 data &= ~IGP01E1000_PSCR_AUTO_MDIX;
846
847 switch (phy->mdix) {
848 case 1:
849 data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
850 break;
851 case 2:
852 data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
853 break;
854 case 0:
855 default:
856 data |= IGP01E1000_PSCR_AUTO_MDIX;
857 break;
858 }
859 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, data);
860 if (ret_val)
861 return ret_val;
862
863 /* set auto-master slave resolution settings */
864 if (hw->mac.autoneg) {
Bruce Allanad680762008-03-28 09:15:03 -0700865 /*
866 * when autonegotiation advertisement is only 1000Mbps then we
Auke Kokbc7f75f2007-09-17 12:30:59 -0700867 * should disable SmartSpeed and enable Auto MasterSlave
Bruce Allanad680762008-03-28 09:15:03 -0700868 * resolution as hardware default.
869 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700870 if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
871 /* Disable SmartSpeed */
872 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700873 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700874 if (ret_val)
875 return ret_val;
876
877 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
878 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700879 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700880 if (ret_val)
881 return ret_val;
882
883 /* Set auto Master/Slave resolution process */
884 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &data);
885 if (ret_val)
886 return ret_val;
887
888 data &= ~CR_1000T_MS_ENABLE;
889 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, data);
890 if (ret_val)
891 return ret_val;
892 }
893
894 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &data);
895 if (ret_val)
896 return ret_val;
897
898 /* load defaults for future use */
899 phy->original_ms_type = (data & CR_1000T_MS_ENABLE) ?
900 ((data & CR_1000T_MS_VALUE) ?
901 e1000_ms_force_master :
902 e1000_ms_force_slave) :
903 e1000_ms_auto;
904
905 switch (phy->ms_type) {
906 case e1000_ms_force_master:
907 data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
908 break;
909 case e1000_ms_force_slave:
910 data |= CR_1000T_MS_ENABLE;
911 data &= ~(CR_1000T_MS_VALUE);
912 break;
913 case e1000_ms_auto:
914 data &= ~CR_1000T_MS_ENABLE;
915 default:
916 break;
917 }
918 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, data);
919 }
920
921 return ret_val;
922}
923
924/**
925 * e1000_phy_setup_autoneg - Configure PHY for auto-negotiation
926 * @hw: pointer to the HW structure
927 *
928 * Reads the MII auto-neg advertisement register and/or the 1000T control
929 * register and if the PHY is already setup for auto-negotiation, then
930 * return successful. Otherwise, setup advertisement and flow control to
931 * the appropriate values for the wanted auto-negotiation.
932 **/
933static s32 e1000_phy_setup_autoneg(struct e1000_hw *hw)
934{
935 struct e1000_phy_info *phy = &hw->phy;
936 s32 ret_val;
937 u16 mii_autoneg_adv_reg;
938 u16 mii_1000t_ctrl_reg = 0;
939
940 phy->autoneg_advertised &= phy->autoneg_mask;
941
942 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
943 ret_val = e1e_rphy(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
944 if (ret_val)
945 return ret_val;
946
947 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
948 /* Read the MII 1000Base-T Control Register (Address 9). */
949 ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg);
950 if (ret_val)
951 return ret_val;
952 }
953
Bruce Allanad680762008-03-28 09:15:03 -0700954 /*
955 * Need to parse both autoneg_advertised and fc and set up
Auke Kokbc7f75f2007-09-17 12:30:59 -0700956 * the appropriate PHY registers. First we will parse for
957 * autoneg_advertised software override. Since we can advertise
958 * a plethora of combinations, we need to check each bit
959 * individually.
960 */
961
Bruce Allanad680762008-03-28 09:15:03 -0700962 /*
963 * First we clear all the 10/100 mb speed bits in the Auto-Neg
Auke Kokbc7f75f2007-09-17 12:30:59 -0700964 * Advertisement Register (Address 4) and the 1000 mb speed bits in
965 * the 1000Base-T Control Register (Address 9).
966 */
967 mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS |
968 NWAY_AR_100TX_HD_CAPS |
969 NWAY_AR_10T_FD_CAPS |
970 NWAY_AR_10T_HD_CAPS);
971 mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS);
972
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000973 e_dbg("autoneg_advertised %x\n", phy->autoneg_advertised);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700974
975 /* Do we want to advertise 10 Mb Half Duplex? */
976 if (phy->autoneg_advertised & ADVERTISE_10_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000977 e_dbg("Advertise 10mb Half duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700978 mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS;
979 }
980
981 /* Do we want to advertise 10 Mb Full Duplex? */
982 if (phy->autoneg_advertised & ADVERTISE_10_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000983 e_dbg("Advertise 10mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700984 mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS;
985 }
986
987 /* Do we want to advertise 100 Mb Half Duplex? */
988 if (phy->autoneg_advertised & ADVERTISE_100_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000989 e_dbg("Advertise 100mb Half duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700990 mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS;
991 }
992
993 /* Do we want to advertise 100 Mb Full Duplex? */
994 if (phy->autoneg_advertised & ADVERTISE_100_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000995 e_dbg("Advertise 100mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700996 mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS;
997 }
998
999 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */
1000 if (phy->autoneg_advertised & ADVERTISE_1000_HALF)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001001 e_dbg("Advertise 1000mb Half duplex request denied!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001002
1003 /* Do we want to advertise 1000 Mb Full Duplex? */
1004 if (phy->autoneg_advertised & ADVERTISE_1000_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001005 e_dbg("Advertise 1000mb Full duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001006 mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS;
1007 }
1008
Bruce Allanad680762008-03-28 09:15:03 -07001009 /*
1010 * Check for a software override of the flow control settings, and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001011 * setup the PHY advertisement registers accordingly. If
1012 * auto-negotiation is enabled, then software will have to set the
1013 * "PAUSE" bits to the correct value in the Auto-Negotiation
1014 * Advertisement Register (PHY_AUTONEG_ADV) and re-start auto-
1015 * negotiation.
1016 *
1017 * The possible values of the "fc" parameter are:
1018 * 0: Flow control is completely disabled
1019 * 1: Rx flow control is enabled (we can receive pause frames
1020 * but not send pause frames).
1021 * 2: Tx flow control is enabled (we can send pause frames
1022 * but we do not support receiving pause frames).
Bruce Allanad680762008-03-28 09:15:03 -07001023 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001024 * other: No software override. The flow control configuration
1025 * in the EEPROM is used.
1026 */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001027 switch (hw->fc.current_mode) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001028 case e1000_fc_none:
Bruce Allanad680762008-03-28 09:15:03 -07001029 /*
1030 * Flow control (Rx & Tx) is completely disabled by a
Auke Kokbc7f75f2007-09-17 12:30:59 -07001031 * software over-ride.
1032 */
1033 mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1034 break;
1035 case e1000_fc_rx_pause:
Bruce Allanad680762008-03-28 09:15:03 -07001036 /*
1037 * Rx Flow control is enabled, and Tx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001038 * disabled, by a software over-ride.
Bruce Allanad680762008-03-28 09:15:03 -07001039 *
1040 * Since there really isn't a way to advertise that we are
1041 * capable of Rx Pause ONLY, we will advertise that we
1042 * support both symmetric and asymmetric Rx PAUSE. Later
Auke Kokbc7f75f2007-09-17 12:30:59 -07001043 * (in e1000e_config_fc_after_link_up) we will disable the
1044 * hw's ability to send PAUSE frames.
1045 */
1046 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1047 break;
1048 case e1000_fc_tx_pause:
Bruce Allanad680762008-03-28 09:15:03 -07001049 /*
1050 * Tx Flow control is enabled, and Rx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001051 * disabled, by a software over-ride.
1052 */
1053 mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR;
1054 mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE;
1055 break;
1056 case e1000_fc_full:
Bruce Allanad680762008-03-28 09:15:03 -07001057 /*
1058 * Flow control (both Rx and Tx) is enabled by a software
Auke Kokbc7f75f2007-09-17 12:30:59 -07001059 * over-ride.
1060 */
1061 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1062 break;
1063 default:
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001064 e_dbg("Flow control param set incorrectly\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001065 ret_val = -E1000_ERR_CONFIG;
1066 return ret_val;
1067 }
1068
1069 ret_val = e1e_wphy(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg);
1070 if (ret_val)
1071 return ret_val;
1072
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001073 e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001074
Bruce Allanb1cdfea2010-12-11 05:53:47 +00001075 if (phy->autoneg_mask & ADVERTISE_1000_FULL)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001076 ret_val = e1e_wphy(hw, PHY_1000T_CTRL, mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001077
1078 return ret_val;
1079}
1080
1081/**
1082 * e1000_copper_link_autoneg - Setup/Enable autoneg for copper link
1083 * @hw: pointer to the HW structure
1084 *
1085 * Performs initial bounds checking on autoneg advertisement parameter, then
1086 * configure to advertise the full capability. Setup the PHY to autoneg
1087 * and restart the negotiation process between the link partner. If
Bruce Allanad680762008-03-28 09:15:03 -07001088 * autoneg_wait_to_complete, then wait for autoneg to complete before exiting.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001089 **/
1090static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
1091{
1092 struct e1000_phy_info *phy = &hw->phy;
1093 s32 ret_val;
1094 u16 phy_ctrl;
1095
Bruce Allanad680762008-03-28 09:15:03 -07001096 /*
1097 * Perform some bounds checking on the autoneg advertisement
Auke Kokbc7f75f2007-09-17 12:30:59 -07001098 * parameter.
1099 */
1100 phy->autoneg_advertised &= phy->autoneg_mask;
1101
Bruce Allanad680762008-03-28 09:15:03 -07001102 /*
1103 * If autoneg_advertised is zero, we assume it was not defaulted
Auke Kokbc7f75f2007-09-17 12:30:59 -07001104 * by the calling code so we set to advertise full capability.
1105 */
1106 if (phy->autoneg_advertised == 0)
1107 phy->autoneg_advertised = phy->autoneg_mask;
1108
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001109 e_dbg("Reconfiguring auto-neg advertisement params\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001110 ret_val = e1000_phy_setup_autoneg(hw);
1111 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001112 e_dbg("Error Setting up Auto-Negotiation\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001113 return ret_val;
1114 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001115 e_dbg("Restarting Auto-Neg\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001116
Bruce Allanad680762008-03-28 09:15:03 -07001117 /*
1118 * Restart auto-negotiation by setting the Auto Neg Enable bit and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001119 * the Auto Neg Restart bit in the PHY control register.
1120 */
1121 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl);
1122 if (ret_val)
1123 return ret_val;
1124
1125 phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG);
1126 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl);
1127 if (ret_val)
1128 return ret_val;
1129
Bruce Allanad680762008-03-28 09:15:03 -07001130 /*
1131 * Does the user want to wait for Auto-Neg to complete here, or
Auke Kokbc7f75f2007-09-17 12:30:59 -07001132 * check at a later time (for example, callback routine).
1133 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001134 if (phy->autoneg_wait_to_complete) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001135 ret_val = e1000_wait_autoneg(hw);
1136 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001137 e_dbg("Error while waiting for "
Auke Kokbc7f75f2007-09-17 12:30:59 -07001138 "autoneg to complete\n");
1139 return ret_val;
1140 }
1141 }
1142
1143 hw->mac.get_link_status = 1;
1144
1145 return ret_val;
1146}
1147
1148/**
1149 * e1000e_setup_copper_link - Configure copper link settings
1150 * @hw: pointer to the HW structure
1151 *
1152 * Calls the appropriate function to configure the link for auto-neg or forced
1153 * speed and duplex. Then we check for link, once link is established calls
1154 * to configure collision distance and flow control are called. If link is
1155 * not established, we return -E1000_ERR_PHY (-2).
1156 **/
1157s32 e1000e_setup_copper_link(struct e1000_hw *hw)
1158{
1159 s32 ret_val;
1160 bool link;
1161
1162 if (hw->mac.autoneg) {
Bruce Allanad680762008-03-28 09:15:03 -07001163 /*
1164 * Setup autoneg and flow control advertisement and perform
1165 * autonegotiation.
1166 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001167 ret_val = e1000_copper_link_autoneg(hw);
1168 if (ret_val)
1169 return ret_val;
1170 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001171 /*
1172 * PHY will be set to 10H, 10F, 100H or 100F
1173 * depending on user settings.
1174 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001175 e_dbg("Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001176 ret_val = e1000_phy_force_speed_duplex(hw);
1177 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001178 e_dbg("Error Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001179 return ret_val;
1180 }
1181 }
1182
Bruce Allanad680762008-03-28 09:15:03 -07001183 /*
1184 * Check link status. Wait up to 100 microseconds for link to become
Auke Kokbc7f75f2007-09-17 12:30:59 -07001185 * valid.
1186 */
1187 ret_val = e1000e_phy_has_link_generic(hw,
1188 COPPER_LINK_UP_LIMIT,
1189 10,
1190 &link);
1191 if (ret_val)
1192 return ret_val;
1193
1194 if (link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001195 e_dbg("Valid link established!!!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001196 e1000e_config_collision_dist(hw);
1197 ret_val = e1000e_config_fc_after_link_up(hw);
1198 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001199 e_dbg("Unable to establish link!!!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001200 }
1201
1202 return ret_val;
1203}
1204
1205/**
1206 * e1000e_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY
1207 * @hw: pointer to the HW structure
1208 *
1209 * Calls the PHY setup function to force speed and duplex. Clears the
1210 * auto-crossover to force MDI manually. Waits for link and returns
1211 * successful if link up is successful, else -E1000_ERR_PHY (-2).
1212 **/
1213s32 e1000e_phy_force_speed_duplex_igp(struct e1000_hw *hw)
1214{
1215 struct e1000_phy_info *phy = &hw->phy;
1216 s32 ret_val;
1217 u16 phy_data;
1218 bool link;
1219
1220 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
1221 if (ret_val)
1222 return ret_val;
1223
1224 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1225
1226 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
1227 if (ret_val)
1228 return ret_val;
1229
Bruce Allanad680762008-03-28 09:15:03 -07001230 /*
1231 * Clear Auto-Crossover to force MDI manually. IGP requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001232 * forced whenever speed and duplex are forced.
1233 */
1234 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1235 if (ret_val)
1236 return ret_val;
1237
1238 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1239 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1240
1241 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1242 if (ret_val)
1243 return ret_val;
1244
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001245 e_dbg("IGP PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001246
1247 udelay(1);
1248
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001249 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001250 e_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001251
1252 ret_val = e1000e_phy_has_link_generic(hw,
1253 PHY_FORCE_LIMIT,
1254 100000,
1255 &link);
1256 if (ret_val)
1257 return ret_val;
1258
1259 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001260 e_dbg("Link taking longer than expected.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001261
1262 /* Try once more */
1263 ret_val = e1000e_phy_has_link_generic(hw,
1264 PHY_FORCE_LIMIT,
1265 100000,
1266 &link);
1267 if (ret_val)
1268 return ret_val;
1269 }
1270
1271 return ret_val;
1272}
1273
1274/**
1275 * e1000e_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY
1276 * @hw: pointer to the HW structure
1277 *
1278 * Calls the PHY setup function to force speed and duplex. Clears the
1279 * auto-crossover to force MDI manually. Resets the PHY to commit the
1280 * changes. If time expires while waiting for link up, we reset the DSP.
Bruce Allanad680762008-03-28 09:15:03 -07001281 * After reset, TX_CLK and CRS on Tx must be set. Return successful upon
Auke Kokbc7f75f2007-09-17 12:30:59 -07001282 * successful completion, else return corresponding error code.
1283 **/
1284s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw)
1285{
1286 struct e1000_phy_info *phy = &hw->phy;
1287 s32 ret_val;
1288 u16 phy_data;
1289 bool link;
1290
Bruce Allanad680762008-03-28 09:15:03 -07001291 /*
1292 * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001293 * forced whenever speed and duplex are forced.
1294 */
1295 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1296 if (ret_val)
1297 return ret_val;
1298
1299 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1300 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1301 if (ret_val)
1302 return ret_val;
1303
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001304 e_dbg("M88E1000 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001305
1306 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
1307 if (ret_val)
1308 return ret_val;
1309
1310 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1311
Auke Kokbc7f75f2007-09-17 12:30:59 -07001312 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
1313 if (ret_val)
1314 return ret_val;
1315
Bruce Allan5aa49c82008-11-21 16:49:53 -08001316 /* Reset the phy to commit changes. */
1317 ret_val = e1000e_commit_phy(hw);
1318 if (ret_val)
1319 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001320
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001321 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001322 e_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001323
1324 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1325 100000, &link);
1326 if (ret_val)
1327 return ret_val;
1328
1329 if (!link) {
Bruce Allan0be84012009-12-02 17:03:18 +00001330 if (hw->phy.type != e1000_phy_m88) {
1331 e_dbg("Link taking longer than expected.\n");
1332 } else {
1333 /*
1334 * We didn't get link.
1335 * Reset the DSP and cross our fingers.
1336 */
Bruce Allan482fed82011-01-06 14:29:49 +00001337 ret_val = e1e_wphy(hw, M88E1000_PHY_PAGE_SELECT,
1338 0x001d);
Bruce Allan0be84012009-12-02 17:03:18 +00001339 if (ret_val)
1340 return ret_val;
1341 ret_val = e1000e_phy_reset_dsp(hw);
1342 if (ret_val)
1343 return ret_val;
1344 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001345 }
1346
1347 /* Try once more */
1348 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1349 100000, &link);
1350 if (ret_val)
1351 return ret_val;
1352 }
1353
Bruce Allan0be84012009-12-02 17:03:18 +00001354 if (hw->phy.type != e1000_phy_m88)
1355 return 0;
1356
Auke Kokbc7f75f2007-09-17 12:30:59 -07001357 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1358 if (ret_val)
1359 return ret_val;
1360
Bruce Allanad680762008-03-28 09:15:03 -07001361 /*
1362 * Resetting the phy means we need to re-force TX_CLK in the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001363 * Extended PHY Specific Control Register to 25MHz clock from
1364 * the reset value of 2.5MHz.
1365 */
1366 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1367 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1368 if (ret_val)
1369 return ret_val;
1370
Bruce Allanad680762008-03-28 09:15:03 -07001371 /*
1372 * In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -07001373 * duplex.
1374 */
1375 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1376 if (ret_val)
1377 return ret_val;
1378
1379 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1380 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1381
1382 return ret_val;
1383}
1384
1385/**
Bruce Allan0be84012009-12-02 17:03:18 +00001386 * e1000_phy_force_speed_duplex_ife - Force PHY speed & duplex
1387 * @hw: pointer to the HW structure
1388 *
1389 * Forces the speed and duplex settings of the PHY.
1390 * This is a function pointer entry point only called by
1391 * PHY setup routines.
1392 **/
1393s32 e1000_phy_force_speed_duplex_ife(struct e1000_hw *hw)
1394{
1395 struct e1000_phy_info *phy = &hw->phy;
1396 s32 ret_val;
1397 u16 data;
1398 bool link;
1399
1400 ret_val = e1e_rphy(hw, PHY_CONTROL, &data);
1401 if (ret_val)
1402 goto out;
1403
1404 e1000e_phy_force_speed_duplex_setup(hw, &data);
1405
1406 ret_val = e1e_wphy(hw, PHY_CONTROL, data);
1407 if (ret_val)
1408 goto out;
1409
1410 /* Disable MDI-X support for 10/100 */
1411 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
1412 if (ret_val)
1413 goto out;
1414
1415 data &= ~IFE_PMC_AUTO_MDIX;
1416 data &= ~IFE_PMC_FORCE_MDIX;
1417
1418 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data);
1419 if (ret_val)
1420 goto out;
1421
1422 e_dbg("IFE PMC: %X\n", data);
1423
1424 udelay(1);
1425
1426 if (phy->autoneg_wait_to_complete) {
1427 e_dbg("Waiting for forced speed/duplex link on IFE phy.\n");
1428
1429 ret_val = e1000e_phy_has_link_generic(hw,
1430 PHY_FORCE_LIMIT,
1431 100000,
1432 &link);
1433 if (ret_val)
1434 goto out;
1435
1436 if (!link)
1437 e_dbg("Link taking longer than expected.\n");
1438
1439 /* Try once more */
1440 ret_val = e1000e_phy_has_link_generic(hw,
1441 PHY_FORCE_LIMIT,
1442 100000,
1443 &link);
1444 if (ret_val)
1445 goto out;
1446 }
1447
1448out:
1449 return ret_val;
1450}
1451
1452/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001453 * e1000e_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex
1454 * @hw: pointer to the HW structure
1455 * @phy_ctrl: pointer to current value of PHY_CONTROL
1456 *
1457 * Forces speed and duplex on the PHY by doing the following: disable flow
1458 * control, force speed/duplex on the MAC, disable auto speed detection,
1459 * disable auto-negotiation, configure duplex, configure speed, configure
1460 * the collision distance, write configuration to CTRL register. The
1461 * caller must write to the PHY_CONTROL register for these settings to
1462 * take affect.
1463 **/
1464void e1000e_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl)
1465{
1466 struct e1000_mac_info *mac = &hw->mac;
1467 u32 ctrl;
1468
1469 /* Turn off flow control when forcing speed/duplex */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001470 hw->fc.current_mode = e1000_fc_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001471
1472 /* Force speed/duplex on the mac */
1473 ctrl = er32(CTRL);
1474 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1475 ctrl &= ~E1000_CTRL_SPD_SEL;
1476
1477 /* Disable Auto Speed Detection */
1478 ctrl &= ~E1000_CTRL_ASDE;
1479
1480 /* Disable autoneg on the phy */
1481 *phy_ctrl &= ~MII_CR_AUTO_NEG_EN;
1482
1483 /* Forcing Full or Half Duplex? */
1484 if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
1485 ctrl &= ~E1000_CTRL_FD;
1486 *phy_ctrl &= ~MII_CR_FULL_DUPLEX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001487 e_dbg("Half Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001488 } else {
1489 ctrl |= E1000_CTRL_FD;
1490 *phy_ctrl |= MII_CR_FULL_DUPLEX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001491 e_dbg("Full Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001492 }
1493
1494 /* Forcing 10mb or 100mb? */
1495 if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
1496 ctrl |= E1000_CTRL_SPD_100;
1497 *phy_ctrl |= MII_CR_SPEED_100;
1498 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001499 e_dbg("Forcing 100mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001500 } else {
1501 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1502 *phy_ctrl |= MII_CR_SPEED_10;
1503 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001504 e_dbg("Forcing 10mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001505 }
1506
1507 e1000e_config_collision_dist(hw);
1508
1509 ew32(CTRL, ctrl);
1510}
1511
1512/**
1513 * e1000e_set_d3_lplu_state - Sets low power link up state for D3
1514 * @hw: pointer to the HW structure
1515 * @active: boolean used to enable/disable lplu
1516 *
1517 * Success returns 0, Failure returns 1
1518 *
1519 * The low power link up (lplu) state is set to the power management level D3
1520 * and SmartSpeed is disabled when active is true, else clear lplu for D3
1521 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
1522 * is used during Dx states where the power conservation is most important.
1523 * During driver activity, SmartSpeed should be enabled so performance is
1524 * maintained.
1525 **/
1526s32 e1000e_set_d3_lplu_state(struct e1000_hw *hw, bool active)
1527{
1528 struct e1000_phy_info *phy = &hw->phy;
1529 s32 ret_val;
1530 u16 data;
1531
1532 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1533 if (ret_val)
1534 return ret_val;
1535
1536 if (!active) {
1537 data &= ~IGP02E1000_PM_D3_LPLU;
David Graham2d9498f2008-04-23 11:09:14 -07001538 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001539 if (ret_val)
1540 return ret_val;
Bruce Allanad680762008-03-28 09:15:03 -07001541 /*
1542 * LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001543 * during Dx states where the power conservation is most
1544 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001545 * SmartSpeed, so performance is maintained.
1546 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001547 if (phy->smart_speed == e1000_smart_speed_on) {
1548 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001549 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001550 if (ret_val)
1551 return ret_val;
1552
1553 data |= IGP01E1000_PSCFR_SMART_SPEED;
1554 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001555 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001556 if (ret_val)
1557 return ret_val;
1558 } else if (phy->smart_speed == e1000_smart_speed_off) {
1559 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001560 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001561 if (ret_val)
1562 return ret_val;
1563
1564 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1565 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001566 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001567 if (ret_val)
1568 return ret_val;
1569 }
1570 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1571 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1572 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1573 data |= IGP02E1000_PM_D3_LPLU;
1574 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
1575 if (ret_val)
1576 return ret_val;
1577
1578 /* When LPLU is enabled, we should disable SmartSpeed */
1579 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1580 if (ret_val)
1581 return ret_val;
1582
1583 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1584 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1585 }
1586
1587 return ret_val;
1588}
1589
1590/**
Auke Kok489815c2008-02-21 15:11:07 -08001591 * e1000e_check_downshift - Checks whether a downshift in speed occurred
Auke Kokbc7f75f2007-09-17 12:30:59 -07001592 * @hw: pointer to the HW structure
1593 *
1594 * Success returns 0, Failure returns 1
1595 *
1596 * A downshift is detected by querying the PHY link health.
1597 **/
1598s32 e1000e_check_downshift(struct e1000_hw *hw)
1599{
1600 struct e1000_phy_info *phy = &hw->phy;
1601 s32 ret_val;
1602 u16 phy_data, offset, mask;
1603
1604 switch (phy->type) {
1605 case e1000_phy_m88:
1606 case e1000_phy_gg82563:
Bruce Allan07f025e2009-12-01 15:53:48 +00001607 case e1000_phy_bm:
Bruce Allana4f58f52009-06-02 11:29:18 +00001608 case e1000_phy_82578:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001609 offset = M88E1000_PHY_SPEC_STATUS;
1610 mask = M88E1000_PSSR_DOWNSHIFT;
1611 break;
1612 case e1000_phy_igp_2:
1613 case e1000_phy_igp_3:
1614 offset = IGP01E1000_PHY_LINK_HEALTH;
1615 mask = IGP01E1000_PLHR_SS_DOWNGRADE;
1616 break;
1617 default:
1618 /* speed downshift not supported */
Bruce Allan564ea9b2009-11-20 23:26:44 +00001619 phy->speed_downgraded = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001620 return 0;
1621 }
1622
1623 ret_val = e1e_rphy(hw, offset, &phy_data);
1624
1625 if (!ret_val)
1626 phy->speed_downgraded = (phy_data & mask);
1627
1628 return ret_val;
1629}
1630
1631/**
1632 * e1000_check_polarity_m88 - Checks the polarity.
1633 * @hw: pointer to the HW structure
1634 *
1635 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1636 *
1637 * Polarity is determined based on the PHY specific status register.
1638 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001639s32 e1000_check_polarity_m88(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001640{
1641 struct e1000_phy_info *phy = &hw->phy;
1642 s32 ret_val;
1643 u16 data;
1644
1645 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &data);
1646
1647 if (!ret_val)
1648 phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY)
1649 ? e1000_rev_polarity_reversed
1650 : e1000_rev_polarity_normal;
1651
1652 return ret_val;
1653}
1654
1655/**
1656 * e1000_check_polarity_igp - Checks the polarity.
1657 * @hw: pointer to the HW structure
1658 *
1659 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1660 *
1661 * Polarity is determined based on the PHY port status register, and the
1662 * current speed (since there is no polarity at 100Mbps).
1663 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001664s32 e1000_check_polarity_igp(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001665{
1666 struct e1000_phy_info *phy = &hw->phy;
1667 s32 ret_val;
1668 u16 data, offset, mask;
1669
Bruce Allanad680762008-03-28 09:15:03 -07001670 /*
1671 * Polarity is determined based on the speed of
1672 * our connection.
1673 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001674 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1675 if (ret_val)
1676 return ret_val;
1677
1678 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1679 IGP01E1000_PSSR_SPEED_1000MBPS) {
1680 offset = IGP01E1000_PHY_PCS_INIT_REG;
1681 mask = IGP01E1000_PHY_POLARITY_MASK;
1682 } else {
Bruce Allanad680762008-03-28 09:15:03 -07001683 /*
1684 * This really only applies to 10Mbps since
Auke Kokbc7f75f2007-09-17 12:30:59 -07001685 * there is no polarity for 100Mbps (always 0).
1686 */
1687 offset = IGP01E1000_PHY_PORT_STATUS;
1688 mask = IGP01E1000_PSSR_POLARITY_REVERSED;
1689 }
1690
1691 ret_val = e1e_rphy(hw, offset, &data);
1692
1693 if (!ret_val)
1694 phy->cable_polarity = (data & mask)
1695 ? e1000_rev_polarity_reversed
1696 : e1000_rev_polarity_normal;
1697
1698 return ret_val;
1699}
1700
1701/**
Bruce Allan0be84012009-12-02 17:03:18 +00001702 * e1000_check_polarity_ife - Check cable polarity for IFE PHY
1703 * @hw: pointer to the HW structure
1704 *
1705 * Polarity is determined on the polarity reversal feature being enabled.
1706 **/
1707s32 e1000_check_polarity_ife(struct e1000_hw *hw)
1708{
1709 struct e1000_phy_info *phy = &hw->phy;
1710 s32 ret_val;
1711 u16 phy_data, offset, mask;
1712
1713 /*
1714 * Polarity is determined based on the reversal feature being enabled.
1715 */
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 Allanad680762008-03-28 09:15:03 -07001759 /*
1760 * PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation
Auke Kokbc7f75f2007-09-17 12:30:59 -07001761 * has completed.
1762 */
1763 return ret_val;
1764}
1765
1766/**
1767 * e1000e_phy_has_link_generic - Polls PHY for link
1768 * @hw: pointer to the HW structure
1769 * @iterations: number of times to poll for link
1770 * @usec_interval: delay between polling attempts
1771 * @success: pointer to whether polling was successful or not
1772 *
1773 * Polls the PHY status register for link, 'iterations' number of times.
1774 **/
1775s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
1776 u32 usec_interval, bool *success)
1777{
1778 s32 ret_val = 0;
1779 u16 i, phy_status;
1780
1781 for (i = 0; i < iterations; i++) {
Bruce Allanad680762008-03-28 09:15:03 -07001782 /*
1783 * Some PHYs require the PHY_STATUS register to be read
Auke Kokbc7f75f2007-09-17 12:30:59 -07001784 * twice due to the link bit being sticky. No harm doing
1785 * it across the board.
1786 */
1787 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1788 if (ret_val)
Bruce Allan906e8d92009-07-01 13:28:50 +00001789 /*
1790 * If the first read fails, another entity may have
1791 * ownership of the resources, wait and try again to
1792 * see if they have relinquished the resources yet.
1793 */
1794 udelay(usec_interval);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001795 ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
1796 if (ret_val)
1797 break;
1798 if (phy_status & MII_SR_LINK_STATUS)
1799 break;
1800 if (usec_interval >= 1000)
1801 mdelay(usec_interval/1000);
1802 else
1803 udelay(usec_interval);
1804 }
1805
1806 *success = (i < iterations);
1807
1808 return ret_val;
1809}
1810
1811/**
1812 * e1000e_get_cable_length_m88 - Determine cable length for m88 PHY
1813 * @hw: pointer to the HW structure
1814 *
1815 * Reads the PHY specific status register to retrieve the cable length
1816 * information. The cable length is determined by averaging the minimum and
1817 * maximum values to get the "average" cable length. The m88 PHY has four
1818 * possible cable length values, which are:
1819 * Register Value Cable Length
1820 * 0 < 50 meters
1821 * 1 50 - 80 meters
1822 * 2 80 - 110 meters
1823 * 3 110 - 140 meters
1824 * 4 > 140 meters
1825 **/
1826s32 e1000e_get_cable_length_m88(struct e1000_hw *hw)
1827{
1828 struct e1000_phy_info *phy = &hw->phy;
1829 s32 ret_val;
1830 u16 phy_data, index;
1831
1832 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1833 if (ret_val)
Bruce Allaneb656d42009-12-01 15:47:02 +00001834 goto out;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001835
1836 index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
Bruce Allaneb656d42009-12-01 15:47:02 +00001837 M88E1000_PSSR_CABLE_LENGTH_SHIFT;
1838 if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1) {
1839 ret_val = -E1000_ERR_PHY;
1840 goto out;
1841 }
1842
Auke Kokbc7f75f2007-09-17 12:30:59 -07001843 phy->min_cable_length = e1000_m88_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +00001844 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001845
1846 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1847
Bruce Allaneb656d42009-12-01 15:47:02 +00001848out:
Auke Kokbc7f75f2007-09-17 12:30:59 -07001849 return ret_val;
1850}
1851
1852/**
1853 * e1000e_get_cable_length_igp_2 - Determine cable length for igp2 PHY
1854 * @hw: pointer to the HW structure
1855 *
1856 * The automatic gain control (agc) normalizes the amplitude of the
1857 * received signal, adjusting for the attenuation produced by the
Auke Kok489815c2008-02-21 15:11:07 -08001858 * cable. By reading the AGC registers, which represent the
Bruce Allan5ff5b662009-12-01 15:51:11 +00001859 * combination of coarse and fine gain value, the value can be put
Auke Kokbc7f75f2007-09-17 12:30:59 -07001860 * into a lookup table to obtain the approximate cable length
1861 * for each channel.
1862 **/
1863s32 e1000e_get_cable_length_igp_2(struct e1000_hw *hw)
1864{
1865 struct e1000_phy_info *phy = &hw->phy;
1866 s32 ret_val;
1867 u16 phy_data, i, agc_value = 0;
1868 u16 cur_agc_index, max_agc_index = 0;
1869 u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1;
Jeff Kirsher66744502010-12-01 19:59:50 +00001870 static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
1871 IGP02E1000_PHY_AGC_A,
1872 IGP02E1000_PHY_AGC_B,
1873 IGP02E1000_PHY_AGC_C,
1874 IGP02E1000_PHY_AGC_D
1875 };
Auke Kokbc7f75f2007-09-17 12:30:59 -07001876
1877 /* Read the AGC registers for all channels */
1878 for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
1879 ret_val = e1e_rphy(hw, agc_reg_array[i], &phy_data);
1880 if (ret_val)
1881 return ret_val;
1882
Bruce Allanad680762008-03-28 09:15:03 -07001883 /*
1884 * Getting bits 15:9, which represent the combination of
Bruce Allan5ff5b662009-12-01 15:51:11 +00001885 * coarse and fine gain values. The result is a number
Auke Kokbc7f75f2007-09-17 12:30:59 -07001886 * that can be put into the lookup table to obtain the
Bruce Allanad680762008-03-28 09:15:03 -07001887 * approximate cable length.
1888 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001889 cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
1890 IGP02E1000_AGC_LENGTH_MASK;
1891
1892 /* Array index bound check. */
1893 if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) ||
1894 (cur_agc_index == 0))
1895 return -E1000_ERR_PHY;
1896
1897 /* Remove min & max AGC values from calculation. */
1898 if (e1000_igp_2_cable_length_table[min_agc_index] >
1899 e1000_igp_2_cable_length_table[cur_agc_index])
1900 min_agc_index = cur_agc_index;
1901 if (e1000_igp_2_cable_length_table[max_agc_index] <
1902 e1000_igp_2_cable_length_table[cur_agc_index])
1903 max_agc_index = cur_agc_index;
1904
1905 agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
1906 }
1907
1908 agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
1909 e1000_igp_2_cable_length_table[max_agc_index]);
1910 agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);
1911
1912 /* Calculate cable length with the error range of +/- 10 meters. */
1913 phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
1914 (agc_value - IGP02E1000_AGC_RANGE) : 0;
1915 phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;
1916
1917 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1918
1919 return ret_val;
1920}
1921
1922/**
1923 * e1000e_get_phy_info_m88 - Retrieve PHY information
1924 * @hw: pointer to the HW structure
1925 *
1926 * Valid for only copper links. Read the PHY status register (sticky read)
1927 * to verify that link is up. Read the PHY special control register to
1928 * determine the polarity and 10base-T extended distance. Read the PHY
1929 * special status register to determine MDI/MDIx and current speed. If
1930 * speed is 1000, then determine cable length, local and remote receiver.
1931 **/
1932s32 e1000e_get_phy_info_m88(struct e1000_hw *hw)
1933{
1934 struct e1000_phy_info *phy = &hw->phy;
1935 s32 ret_val;
1936 u16 phy_data;
1937 bool link;
1938
Bruce Allan0be84012009-12-02 17:03:18 +00001939 if (phy->media_type != e1000_media_type_copper) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001940 e_dbg("Phy info is only valid for copper media\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001941 return -E1000_ERR_CONFIG;
1942 }
1943
1944 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1945 if (ret_val)
1946 return ret_val;
1947
1948 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001949 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001950 return -E1000_ERR_CONFIG;
1951 }
1952
1953 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1954 if (ret_val)
1955 return ret_val;
1956
1957 phy->polarity_correction = (phy_data &
1958 M88E1000_PSCR_POLARITY_REVERSAL);
1959
1960 ret_val = e1000_check_polarity_m88(hw);
1961 if (ret_val)
1962 return ret_val;
1963
1964 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1965 if (ret_val)
1966 return ret_val;
1967
1968 phy->is_mdix = (phy_data & M88E1000_PSSR_MDIX);
1969
1970 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
1971 ret_val = e1000_get_cable_length(hw);
1972 if (ret_val)
1973 return ret_val;
1974
1975 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &phy_data);
1976 if (ret_val)
1977 return ret_val;
1978
1979 phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS)
1980 ? e1000_1000t_rx_status_ok
1981 : e1000_1000t_rx_status_not_ok;
1982
1983 phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS)
1984 ? e1000_1000t_rx_status_ok
1985 : e1000_1000t_rx_status_not_ok;
1986 } else {
1987 /* Set values to "undefined" */
1988 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1989 phy->local_rx = e1000_1000t_rx_status_undefined;
1990 phy->remote_rx = e1000_1000t_rx_status_undefined;
1991 }
1992
1993 return ret_val;
1994}
1995
1996/**
1997 * e1000e_get_phy_info_igp - Retrieve igp PHY information
1998 * @hw: pointer to the HW structure
1999 *
2000 * Read PHY status to determine if link is up. If link is up, then
2001 * set/determine 10base-T extended distance and polarity correction. Read
2002 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
2003 * determine on the cable length, local and remote receiver.
2004 **/
2005s32 e1000e_get_phy_info_igp(struct e1000_hw *hw)
2006{
2007 struct e1000_phy_info *phy = &hw->phy;
2008 s32 ret_val;
2009 u16 data;
2010 bool link;
2011
2012 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2013 if (ret_val)
2014 return ret_val;
2015
2016 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002017 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002018 return -E1000_ERR_CONFIG;
2019 }
2020
Bruce Allan564ea9b2009-11-20 23:26:44 +00002021 phy->polarity_correction = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002022
2023 ret_val = e1000_check_polarity_igp(hw);
2024 if (ret_val)
2025 return ret_val;
2026
2027 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
2028 if (ret_val)
2029 return ret_val;
2030
2031 phy->is_mdix = (data & IGP01E1000_PSSR_MDIX);
2032
2033 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
2034 IGP01E1000_PSSR_SPEED_1000MBPS) {
2035 ret_val = e1000_get_cable_length(hw);
2036 if (ret_val)
2037 return ret_val;
2038
2039 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data);
2040 if (ret_val)
2041 return ret_val;
2042
2043 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
2044 ? e1000_1000t_rx_status_ok
2045 : e1000_1000t_rx_status_not_ok;
2046
2047 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
2048 ? e1000_1000t_rx_status_ok
2049 : e1000_1000t_rx_status_not_ok;
2050 } else {
2051 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2052 phy->local_rx = e1000_1000t_rx_status_undefined;
2053 phy->remote_rx = e1000_1000t_rx_status_undefined;
2054 }
2055
2056 return ret_val;
2057}
2058
2059/**
Bruce Allan0be84012009-12-02 17:03:18 +00002060 * e1000_get_phy_info_ife - Retrieves various IFE PHY states
2061 * @hw: pointer to the HW structure
2062 *
2063 * Populates "phy" structure with various feature states.
2064 **/
2065s32 e1000_get_phy_info_ife(struct e1000_hw *hw)
2066{
2067 struct e1000_phy_info *phy = &hw->phy;
2068 s32 ret_val;
2069 u16 data;
2070 bool link;
2071
2072 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2073 if (ret_val)
2074 goto out;
2075
2076 if (!link) {
2077 e_dbg("Phy info is only valid if link is up\n");
2078 ret_val = -E1000_ERR_CONFIG;
2079 goto out;
2080 }
2081
2082 ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data);
2083 if (ret_val)
2084 goto out;
2085 phy->polarity_correction = (data & IFE_PSC_AUTO_POLARITY_DISABLE)
2086 ? false : true;
2087
2088 if (phy->polarity_correction) {
2089 ret_val = e1000_check_polarity_ife(hw);
2090 if (ret_val)
2091 goto out;
2092 } else {
2093 /* Polarity is forced */
2094 phy->cable_polarity = (data & IFE_PSC_FORCE_POLARITY)
2095 ? e1000_rev_polarity_reversed
2096 : e1000_rev_polarity_normal;
2097 }
2098
2099 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
2100 if (ret_val)
2101 goto out;
2102
2103 phy->is_mdix = (data & IFE_PMC_MDIX_STATUS) ? true : false;
2104
2105 /* The following parameters are undefined for 10/100 operation. */
2106 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2107 phy->local_rx = e1000_1000t_rx_status_undefined;
2108 phy->remote_rx = e1000_1000t_rx_status_undefined;
2109
2110out:
2111 return ret_val;
2112}
2113
2114/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002115 * e1000e_phy_sw_reset - PHY software reset
2116 * @hw: pointer to the HW structure
2117 *
2118 * Does a software reset of the PHY by reading the PHY control register and
2119 * setting/write the control register reset bit to the PHY.
2120 **/
2121s32 e1000e_phy_sw_reset(struct e1000_hw *hw)
2122{
2123 s32 ret_val;
2124 u16 phy_ctrl;
2125
2126 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl);
2127 if (ret_val)
2128 return ret_val;
2129
2130 phy_ctrl |= MII_CR_RESET;
2131 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl);
2132 if (ret_val)
2133 return ret_val;
2134
2135 udelay(1);
2136
2137 return ret_val;
2138}
2139
2140/**
2141 * e1000e_phy_hw_reset_generic - PHY hardware reset
2142 * @hw: pointer to the HW structure
2143 *
2144 * Verify the reset block is not blocking us from resetting. Acquire
2145 * semaphore (if necessary) and read/set/write the device control reset
2146 * bit in the PHY. Wait the appropriate delay time for the device to
Auke Kok489815c2008-02-21 15:11:07 -08002147 * reset and release the semaphore (if necessary).
Auke Kokbc7f75f2007-09-17 12:30:59 -07002148 **/
2149s32 e1000e_phy_hw_reset_generic(struct e1000_hw *hw)
2150{
2151 struct e1000_phy_info *phy = &hw->phy;
2152 s32 ret_val;
2153 u32 ctrl;
2154
2155 ret_val = e1000_check_reset_block(hw);
2156 if (ret_val)
2157 return 0;
2158
Bruce Allan94d81862009-11-20 23:25:26 +00002159 ret_val = phy->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002160 if (ret_val)
2161 return ret_val;
2162
2163 ctrl = er32(CTRL);
2164 ew32(CTRL, ctrl | E1000_CTRL_PHY_RST);
2165 e1e_flush();
2166
2167 udelay(phy->reset_delay_us);
2168
2169 ew32(CTRL, ctrl);
2170 e1e_flush();
2171
2172 udelay(150);
2173
Bruce Allan94d81862009-11-20 23:25:26 +00002174 phy->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002175
2176 return e1000_get_phy_cfg_done(hw);
2177}
2178
2179/**
2180 * e1000e_get_cfg_done - Generic configuration done
2181 * @hw: pointer to the HW structure
2182 *
2183 * Generic function to wait 10 milli-seconds for configuration to complete
2184 * and return success.
2185 **/
2186s32 e1000e_get_cfg_done(struct e1000_hw *hw)
2187{
2188 mdelay(10);
2189 return 0;
2190}
2191
Bruce Allanf4187b52008-08-26 18:36:50 -07002192/**
2193 * e1000e_phy_init_script_igp3 - Inits the IGP3 PHY
2194 * @hw: pointer to the HW structure
2195 *
2196 * Initializes a Intel Gigabit PHY3 when an EEPROM is not present.
2197 **/
2198s32 e1000e_phy_init_script_igp3(struct e1000_hw *hw)
2199{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002200 e_dbg("Running IGP 3 PHY init script\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07002201
2202 /* PHY init IGP 3 */
2203 /* Enable rise/fall, 10-mode work in class-A */
2204 e1e_wphy(hw, 0x2F5B, 0x9018);
2205 /* Remove all caps from Replica path filter */
2206 e1e_wphy(hw, 0x2F52, 0x0000);
2207 /* Bias trimming for ADC, AFE and Driver (Default) */
2208 e1e_wphy(hw, 0x2FB1, 0x8B24);
2209 /* Increase Hybrid poly bias */
2210 e1e_wphy(hw, 0x2FB2, 0xF8F0);
2211 /* Add 4% to Tx amplitude in Gig mode */
2212 e1e_wphy(hw, 0x2010, 0x10B0);
2213 /* Disable trimming (TTT) */
2214 e1e_wphy(hw, 0x2011, 0x0000);
2215 /* Poly DC correction to 94.6% + 2% for all channels */
2216 e1e_wphy(hw, 0x20DD, 0x249A);
2217 /* ABS DC correction to 95.9% */
2218 e1e_wphy(hw, 0x20DE, 0x00D3);
2219 /* BG temp curve trim */
2220 e1e_wphy(hw, 0x28B4, 0x04CE);
2221 /* Increasing ADC OPAMP stage 1 currents to max */
2222 e1e_wphy(hw, 0x2F70, 0x29E4);
2223 /* Force 1000 ( required for enabling PHY regs configuration) */
2224 e1e_wphy(hw, 0x0000, 0x0140);
2225 /* Set upd_freq to 6 */
2226 e1e_wphy(hw, 0x1F30, 0x1606);
2227 /* Disable NPDFE */
2228 e1e_wphy(hw, 0x1F31, 0xB814);
2229 /* Disable adaptive fixed FFE (Default) */
2230 e1e_wphy(hw, 0x1F35, 0x002A);
2231 /* Enable FFE hysteresis */
2232 e1e_wphy(hw, 0x1F3E, 0x0067);
2233 /* Fixed FFE for short cable lengths */
2234 e1e_wphy(hw, 0x1F54, 0x0065);
2235 /* Fixed FFE for medium cable lengths */
2236 e1e_wphy(hw, 0x1F55, 0x002A);
2237 /* Fixed FFE for long cable lengths */
2238 e1e_wphy(hw, 0x1F56, 0x002A);
2239 /* Enable Adaptive Clip Threshold */
2240 e1e_wphy(hw, 0x1F72, 0x3FB0);
2241 /* AHT reset limit to 1 */
2242 e1e_wphy(hw, 0x1F76, 0xC0FF);
2243 /* Set AHT master delay to 127 msec */
2244 e1e_wphy(hw, 0x1F77, 0x1DEC);
2245 /* Set scan bits for AHT */
2246 e1e_wphy(hw, 0x1F78, 0xF9EF);
2247 /* Set AHT Preset bits */
2248 e1e_wphy(hw, 0x1F79, 0x0210);
2249 /* Change integ_factor of channel A to 3 */
2250 e1e_wphy(hw, 0x1895, 0x0003);
2251 /* Change prop_factor of channels BCD to 8 */
2252 e1e_wphy(hw, 0x1796, 0x0008);
2253 /* Change cg_icount + enable integbp for channels BCD */
2254 e1e_wphy(hw, 0x1798, 0xD008);
2255 /*
2256 * Change cg_icount + enable integbp + change prop_factor_master
2257 * to 8 for channel A
2258 */
2259 e1e_wphy(hw, 0x1898, 0xD918);
2260 /* Disable AHT in Slave mode on channel A */
2261 e1e_wphy(hw, 0x187A, 0x0800);
2262 /*
2263 * Enable LPLU and disable AN to 1000 in non-D0a states,
2264 * Enable SPD+B2B
2265 */
2266 e1e_wphy(hw, 0x0019, 0x008D);
2267 /* Enable restart AN on an1000_dis change */
2268 e1e_wphy(hw, 0x001B, 0x2080);
2269 /* Enable wh_fifo read clock in 10/100 modes */
2270 e1e_wphy(hw, 0x0014, 0x0045);
2271 /* Restart AN, Speed selection is 1000 */
2272 e1e_wphy(hw, 0x0000, 0x1340);
2273
2274 return 0;
2275}
2276
Auke Kokbc7f75f2007-09-17 12:30:59 -07002277/* Internal function pointers */
2278
2279/**
2280 * e1000_get_phy_cfg_done - Generic PHY configuration done
2281 * @hw: pointer to the HW structure
2282 *
2283 * Return success if silicon family did not implement a family specific
2284 * get_cfg_done function.
2285 **/
2286static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw)
2287{
2288 if (hw->phy.ops.get_cfg_done)
2289 return hw->phy.ops.get_cfg_done(hw);
2290
2291 return 0;
2292}
2293
2294/**
2295 * e1000_phy_force_speed_duplex - Generic force PHY speed/duplex
2296 * @hw: pointer to the HW structure
2297 *
2298 * When the silicon family has not implemented a forced speed/duplex
2299 * function for the PHY, simply return 0.
2300 **/
2301static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw)
2302{
2303 if (hw->phy.ops.force_speed_duplex)
2304 return hw->phy.ops.force_speed_duplex(hw);
2305
2306 return 0;
2307}
2308
2309/**
2310 * e1000e_get_phy_type_from_id - Get PHY type from id
2311 * @phy_id: phy_id read from the phy
2312 *
2313 * Returns the phy type from the id.
2314 **/
2315enum e1000_phy_type e1000e_get_phy_type_from_id(u32 phy_id)
2316{
2317 enum e1000_phy_type phy_type = e1000_phy_unknown;
2318
2319 switch (phy_id) {
2320 case M88E1000_I_PHY_ID:
2321 case M88E1000_E_PHY_ID:
2322 case M88E1111_I_PHY_ID:
2323 case M88E1011_I_PHY_ID:
2324 phy_type = e1000_phy_m88;
2325 break;
2326 case IGP01E1000_I_PHY_ID: /* IGP 1 & 2 share this */
2327 phy_type = e1000_phy_igp_2;
2328 break;
2329 case GG82563_E_PHY_ID:
2330 phy_type = e1000_phy_gg82563;
2331 break;
2332 case IGP03E1000_E_PHY_ID:
2333 phy_type = e1000_phy_igp_3;
2334 break;
2335 case IFE_E_PHY_ID:
2336 case IFE_PLUS_E_PHY_ID:
2337 case IFE_C_E_PHY_ID:
2338 phy_type = e1000_phy_ife;
2339 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002340 case BME1000_E_PHY_ID:
2341 case BME1000_E_PHY_ID_R2:
2342 phy_type = e1000_phy_bm;
2343 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002344 case I82578_E_PHY_ID:
2345 phy_type = e1000_phy_82578;
2346 break;
2347 case I82577_E_PHY_ID:
2348 phy_type = e1000_phy_82577;
2349 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002350 case I82579_E_PHY_ID:
2351 phy_type = e1000_phy_82579;
2352 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002353 default:
2354 phy_type = e1000_phy_unknown;
2355 break;
2356 }
2357 return phy_type;
2358}
2359
2360/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002361 * e1000e_determine_phy_address - Determines PHY address.
2362 * @hw: pointer to the HW structure
2363 *
2364 * This uses a trial and error method to loop through possible PHY
2365 * addresses. It tests each by reading the PHY ID registers and
2366 * checking for a match.
2367 **/
2368s32 e1000e_determine_phy_address(struct e1000_hw *hw)
2369{
2370 s32 ret_val = -E1000_ERR_PHY_TYPE;
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002371 u32 phy_addr = 0;
2372 u32 i;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002373 enum e1000_phy_type phy_type = e1000_phy_unknown;
2374
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002375 hw->phy.id = phy_type;
2376
2377 for (phy_addr = 0; phy_addr < E1000_MAX_PHY_ADDR; phy_addr++) {
2378 hw->phy.addr = phy_addr;
2379 i = 0;
2380
2381 do {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002382 e1000e_get_phy_id(hw);
2383 phy_type = e1000e_get_phy_type_from_id(hw->phy.id);
2384
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002385 /*
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002386 * If phy_type is valid, break - we found our
2387 * PHY address
2388 */
2389 if (phy_type != e1000_phy_unknown) {
2390 ret_val = 0;
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002391 goto out;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002392 }
Bruce Allan1bba4382011-03-19 00:27:20 +00002393 usleep_range(1000, 2000);
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002394 i++;
2395 } while (i < 10);
2396 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002397
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002398out:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002399 return ret_val;
2400}
2401
2402/**
2403 * e1000_get_phy_addr_for_bm_page - Retrieve PHY page address
2404 * @page: page to access
2405 *
2406 * Returns the phy address for the page requested.
2407 **/
2408static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg)
2409{
2410 u32 phy_addr = 2;
2411
2412 if ((page >= 768) || (page == 0 && reg == 25) || (reg == 31))
2413 phy_addr = 1;
2414
2415 return phy_addr;
2416}
2417
2418/**
2419 * e1000e_write_phy_reg_bm - Write BM PHY register
2420 * @hw: pointer to the HW structure
2421 * @offset: register offset to write to
2422 * @data: data to write at register offset
2423 *
2424 * Acquires semaphore, if necessary, then writes the data to PHY register
2425 * at the offset. Release any acquired semaphores before exiting.
2426 **/
2427s32 e1000e_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data)
2428{
2429 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002430 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002431
Bruce Allan94d81862009-11-20 23:25:26 +00002432 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002433 if (ret_val)
2434 return ret_val;
2435
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002436 /* Page 800 works differently than the rest so it has its own func */
2437 if (page == BM_WUC_PAGE) {
2438 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002439 false, false);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002440 goto out;
2441 }
2442
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002443 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2444
2445 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002446 u32 page_shift, page_select;
2447
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002448 /*
2449 * Page select is register 31 for phy address 1 and 22 for
2450 * phy address 2 and 3. Page select is shifted only for
2451 * phy address 1.
2452 */
2453 if (hw->phy.addr == 1) {
2454 page_shift = IGP_PAGE_SHIFT;
2455 page_select = IGP01E1000_PHY_PAGE_SELECT;
2456 } else {
2457 page_shift = 0;
2458 page_select = BM_PHY_PAGE_SELECT;
2459 }
2460
2461 /* Page is shifted left, PHY expects (page x 32) */
2462 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
2463 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002464 if (ret_val)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002465 goto out;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002466 }
2467
2468 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2469 data);
2470
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002471out:
Bruce Allan94d81862009-11-20 23:25:26 +00002472 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002473 return ret_val;
2474}
2475
2476/**
2477 * e1000e_read_phy_reg_bm - Read BM PHY register
2478 * @hw: pointer to the HW structure
2479 * @offset: register offset to be read
2480 * @data: pointer to the read data
2481 *
2482 * Acquires semaphore, if necessary, then reads the PHY register at offset
2483 * and storing the retrieved information in data. Release any acquired
2484 * semaphores before exiting.
2485 **/
2486s32 e1000e_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data)
2487{
2488 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002489 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002490
Bruce Allan94d81862009-11-20 23:25:26 +00002491 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002492 if (ret_val)
2493 return ret_val;
2494
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002495 /* Page 800 works differently than the rest so it has its own func */
2496 if (page == BM_WUC_PAGE) {
2497 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002498 true, false);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002499 goto out;
2500 }
2501
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002502 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2503
2504 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002505 u32 page_shift, page_select;
2506
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002507 /*
2508 * Page select is register 31 for phy address 1 and 22 for
2509 * phy address 2 and 3. Page select is shifted only for
2510 * phy address 1.
2511 */
2512 if (hw->phy.addr == 1) {
2513 page_shift = IGP_PAGE_SHIFT;
2514 page_select = IGP01E1000_PHY_PAGE_SELECT;
2515 } else {
2516 page_shift = 0;
2517 page_select = BM_PHY_PAGE_SELECT;
2518 }
2519
2520 /* Page is shifted left, PHY expects (page x 32) */
2521 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
2522 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002523 if (ret_val)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002524 goto out;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002525 }
2526
2527 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2528 data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002529out:
Bruce Allan94d81862009-11-20 23:25:26 +00002530 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002531 return ret_val;
2532}
2533
2534/**
Bruce Allan4662e822008-08-26 18:37:06 -07002535 * e1000e_read_phy_reg_bm2 - Read BM PHY register
2536 * @hw: pointer to the HW structure
2537 * @offset: register offset to be read
2538 * @data: pointer to the read data
2539 *
2540 * Acquires semaphore, if necessary, then reads the PHY register at offset
2541 * and storing the retrieved information in data. Release any acquired
2542 * semaphores before exiting.
2543 **/
2544s32 e1000e_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data)
2545{
2546 s32 ret_val;
2547 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2548
Bruce Allan94d81862009-11-20 23:25:26 +00002549 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002550 if (ret_val)
2551 return ret_val;
2552
Bruce Allan4662e822008-08-26 18:37:06 -07002553 /* Page 800 works differently than the rest so it has its own func */
2554 if (page == BM_WUC_PAGE) {
2555 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002556 true, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002557 goto out;
Bruce Allan4662e822008-08-26 18:37:06 -07002558 }
2559
Bruce Allan4662e822008-08-26 18:37:06 -07002560 hw->phy.addr = 1;
2561
2562 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2563
2564 /* Page is shifted left, PHY expects (page x 32) */
2565 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2566 page);
2567
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002568 if (ret_val)
2569 goto out;
Bruce Allan4662e822008-08-26 18:37:06 -07002570 }
2571
2572 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2573 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002574out:
Bruce Allan94d81862009-11-20 23:25:26 +00002575 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002576 return ret_val;
2577}
2578
2579/**
2580 * e1000e_write_phy_reg_bm2 - Write BM PHY register
2581 * @hw: pointer to the HW structure
2582 * @offset: register offset to write to
2583 * @data: data to write at register offset
2584 *
2585 * Acquires semaphore, if necessary, then writes the data to PHY register
2586 * at the offset. Release any acquired semaphores before exiting.
2587 **/
2588s32 e1000e_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data)
2589{
2590 s32 ret_val;
2591 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2592
Bruce Allan94d81862009-11-20 23:25:26 +00002593 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002594 if (ret_val)
2595 return ret_val;
2596
Bruce Allan4662e822008-08-26 18:37:06 -07002597 /* Page 800 works differently than the rest so it has its own func */
2598 if (page == BM_WUC_PAGE) {
2599 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002600 false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002601 goto out;
Bruce Allan4662e822008-08-26 18:37:06 -07002602 }
2603
Bruce Allan4662e822008-08-26 18:37:06 -07002604 hw->phy.addr = 1;
2605
2606 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2607 /* Page is shifted left, PHY expects (page x 32) */
2608 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2609 page);
2610
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002611 if (ret_val)
2612 goto out;
Bruce Allan4662e822008-08-26 18:37:06 -07002613 }
2614
2615 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2616 data);
2617
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002618out:
Bruce Allan94d81862009-11-20 23:25:26 +00002619 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002620 return ret_val;
2621}
2622
2623/**
Bruce Allan2b6b1682011-05-13 07:20:09 +00002624 * e1000_enable_phy_wakeup_reg_access_bm - enable access to BM wakeup registers
2625 * @hw: pointer to the HW structure
2626 * @phy_reg: pointer to store original contents of BM_WUC_ENABLE_REG
2627 *
2628 * Assumes semaphore already acquired and phy_reg points to a valid memory
2629 * address to store contents of the BM_WUC_ENABLE_REG register.
2630 **/
2631s32 e1000_enable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2632{
2633 s32 ret_val;
2634 u16 temp;
2635
2636 /* All page select, port ctrl and wakeup registers use phy address 1 */
2637 hw->phy.addr = 1;
2638
2639 /* Select Port Control Registers page */
2640 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2641 if (ret_val) {
2642 e_dbg("Could not set Port Control page\n");
2643 goto out;
2644 }
2645
2646 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
2647 if (ret_val) {
2648 e_dbg("Could not read PHY register %d.%d\n",
2649 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
2650 goto out;
2651 }
2652
2653 /*
2654 * Enable both PHY wakeup mode and Wakeup register page writes.
2655 * Prevent a power state change by disabling ME and Host PHY wakeup.
2656 */
2657 temp = *phy_reg;
2658 temp |= BM_WUC_ENABLE_BIT;
2659 temp &= ~(BM_WUC_ME_WU_BIT | BM_WUC_HOST_WU_BIT);
2660
2661 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, temp);
2662 if (ret_val) {
2663 e_dbg("Could not write PHY register %d.%d\n",
2664 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
2665 goto out;
2666 }
2667
2668 /* Select Host Wakeup Registers page */
2669 ret_val = e1000_set_page_igp(hw, (BM_WUC_PAGE << IGP_PAGE_SHIFT));
2670
2671 /* caller now able to write registers on the Wakeup registers page */
2672out:
2673 return ret_val;
2674}
2675
2676/**
2677 * e1000_disable_phy_wakeup_reg_access_bm - disable access to BM wakeup regs
2678 * @hw: pointer to the HW structure
2679 * @phy_reg: pointer to original contents of BM_WUC_ENABLE_REG
2680 *
2681 * Restore BM_WUC_ENABLE_REG to its original value.
2682 *
2683 * Assumes semaphore already acquired and *phy_reg is the contents of the
2684 * BM_WUC_ENABLE_REG before register(s) on BM_WUC_PAGE were accessed by
2685 * caller.
2686 **/
2687s32 e1000_disable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2688{
2689 s32 ret_val = 0;
2690
2691 /* Select Port Control Registers page */
2692 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2693 if (ret_val) {
2694 e_dbg("Could not set Port Control page\n");
2695 goto out;
2696 }
2697
2698 /* Restore 769.17 to its original value */
2699 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, *phy_reg);
2700 if (ret_val)
2701 e_dbg("Could not restore PHY register %d.%d\n",
2702 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
2703out:
2704 return ret_val;
2705}
2706
2707/**
2708 * e1000_access_phy_wakeup_reg_bm - Read/write BM PHY wakeup register
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002709 * @hw: pointer to the HW structure
2710 * @offset: register offset to be read or written
2711 * @data: pointer to the data to read or write
2712 * @read: determines if operation is read or write
Bruce Allan2b6b1682011-05-13 07:20:09 +00002713 * @page_set: BM_WUC_PAGE already set and access enabled
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002714 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002715 * Read the PHY register at offset and store the retrieved information in
2716 * data, or write data to PHY register at offset. Note the procedure to
2717 * access the PHY wakeup registers is different than reading the other PHY
2718 * registers. It works as such:
2719 * 1) Set 769.17.2 (page 769, register 17, bit 2) = 1
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002720 * 2) Set page to 800 for host (801 if we were manageability)
2721 * 3) Write the address using the address opcode (0x11)
2722 * 4) Read or write the data using the data opcode (0x12)
Bruce Allan2b6b1682011-05-13 07:20:09 +00002723 * 5) Restore 769.17.2 to its original value
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002724 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002725 * Steps 1 and 2 are done by e1000_enable_phy_wakeup_reg_access_bm() and
2726 * step 5 is done by e1000_disable_phy_wakeup_reg_access_bm().
2727 *
2728 * Assumes semaphore is already acquired. When page_set==true, assumes
2729 * the PHY page is set to BM_WUC_PAGE (i.e. a function in the call stack
2730 * is responsible for calls to e1000_[enable|disable]_phy_wakeup_reg_bm()).
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002731 **/
2732static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002733 u16 *data, bool read, bool page_set)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002734{
2735 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002736 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002737 u16 page = BM_PHY_REG_PAGE(offset);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002738 u16 phy_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002739
Bruce Allan2b6b1682011-05-13 07:20:09 +00002740 /* Gig must be disabled for MDIO accesses to Host Wakeup reg page */
Bruce Allana4f58f52009-06-02 11:29:18 +00002741 if ((hw->mac.type == e1000_pchlan) &&
Bruce Allan2b6b1682011-05-13 07:20:09 +00002742 (!(er32(PHY_CTRL) & E1000_PHY_CTRL_GBE_DISABLE)))
2743 e_dbg("Attempting to access page %d while gig enabled.\n",
2744 page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002745
Bruce Allan2b6b1682011-05-13 07:20:09 +00002746 if (!page_set) {
2747 /* Enable access to PHY wakeup registers */
2748 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2749 if (ret_val) {
2750 e_dbg("Could not enable PHY wakeup reg access\n");
2751 goto out;
2752 }
Bruce Allan9b71b412009-12-01 15:53:07 +00002753 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002754
Bruce Allan2b6b1682011-05-13 07:20:09 +00002755 e_dbg("Accessing PHY page %d reg 0x%x\n", page, reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002756
Bruce Allan2b6b1682011-05-13 07:20:09 +00002757 /* Write the Wakeup register page offset value using opcode 0x11 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002758 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ADDRESS_OPCODE, reg);
Bruce Allan9b71b412009-12-01 15:53:07 +00002759 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002760 e_dbg("Could not write address opcode to page %d\n", page);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002761 goto out;
Bruce Allan9b71b412009-12-01 15:53:07 +00002762 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002763
2764 if (read) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002765 /* Read the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002766 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2767 data);
2768 } else {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002769 /* Write the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002770 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2771 *data);
2772 }
2773
Bruce Allan9b71b412009-12-01 15:53:07 +00002774 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002775 e_dbg("Could not access PHY reg %d.%d\n", page, reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002776 goto out;
Bruce Allan9b71b412009-12-01 15:53:07 +00002777 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002778
Bruce Allan2b6b1682011-05-13 07:20:09 +00002779 if (!page_set)
2780 ret_val = e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002781
2782out:
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002783 return ret_val;
2784}
2785
2786/**
Bruce Allan17f208d2009-12-01 15:47:22 +00002787 * e1000_power_up_phy_copper - Restore copper link in case of PHY power down
2788 * @hw: pointer to the HW structure
2789 *
2790 * In the case of a PHY power down to save power, or to turn off link during a
2791 * driver unload, or wake on lan is not enabled, restore the link to previous
2792 * settings.
2793 **/
2794void e1000_power_up_phy_copper(struct e1000_hw *hw)
2795{
2796 u16 mii_reg = 0;
2797
2798 /* The PHY will retain its settings across a power down/up cycle */
2799 e1e_rphy(hw, PHY_CONTROL, &mii_reg);
2800 mii_reg &= ~MII_CR_POWER_DOWN;
2801 e1e_wphy(hw, PHY_CONTROL, mii_reg);
2802}
2803
2804/**
2805 * e1000_power_down_phy_copper - Restore copper link in case of PHY power down
2806 * @hw: pointer to the HW structure
2807 *
2808 * In the case of a PHY power down to save power, or to turn off link during a
2809 * driver unload, or wake on lan is not enabled, restore the link to previous
2810 * settings.
2811 **/
2812void e1000_power_down_phy_copper(struct e1000_hw *hw)
2813{
2814 u16 mii_reg = 0;
2815
2816 /* The PHY will retain its settings across a power down/up cycle */
2817 e1e_rphy(hw, PHY_CONTROL, &mii_reg);
2818 mii_reg |= MII_CR_POWER_DOWN;
2819 e1e_wphy(hw, PHY_CONTROL, mii_reg);
Bruce Allan1bba4382011-03-19 00:27:20 +00002820 usleep_range(1000, 2000);
Bruce Allan17f208d2009-12-01 15:47:22 +00002821}
2822
2823/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002824 * e1000e_commit_phy - Soft PHY reset
2825 * @hw: pointer to the HW structure
2826 *
2827 * Performs a soft PHY reset on those that apply. This is a function pointer
2828 * entry point called by drivers.
2829 **/
2830s32 e1000e_commit_phy(struct e1000_hw *hw)
2831{
Bruce Allan94d81862009-11-20 23:25:26 +00002832 if (hw->phy.ops.commit)
2833 return hw->phy.ops.commit(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002834
2835 return 0;
2836}
2837
2838/**
2839 * e1000_set_d0_lplu_state - Sets low power link up state for D0
2840 * @hw: pointer to the HW structure
2841 * @active: boolean used to enable/disable lplu
2842 *
2843 * Success returns 0, Failure returns 1
2844 *
2845 * The low power link up (lplu) state is set to the power management level D0
2846 * and SmartSpeed is disabled when active is true, else clear lplu for D0
2847 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
2848 * is used during Dx states where the power conservation is most important.
2849 * During driver activity, SmartSpeed should be enabled so performance is
2850 * maintained. This is a function pointer entry point called by drivers.
2851 **/
2852static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active)
2853{
2854 if (hw->phy.ops.set_d0_lplu_state)
2855 return hw->phy.ops.set_d0_lplu_state(hw, active);
2856
2857 return 0;
2858}
Bruce Allana4f58f52009-06-02 11:29:18 +00002859
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002860/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002861 * __e1000_read_phy_reg_hv - Read HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002862 * @hw: pointer to the HW structure
2863 * @offset: register offset to be read
2864 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002865 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002866 *
2867 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002868 * and stores the retrieved information in data. Release any acquired
Bruce Allana4f58f52009-06-02 11:29:18 +00002869 * semaphore before exiting.
2870 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002871static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002872 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002873{
2874 s32 ret_val;
2875 u16 page = BM_PHY_REG_PAGE(offset);
2876 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002877 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002878
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002879 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002880 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002881 if (ret_val)
2882 return ret_val;
2883 }
2884
Bruce Allana4f58f52009-06-02 11:29:18 +00002885 /* Page 800 works differently than the rest so it has its own func */
2886 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002887 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
2888 true, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002889 goto out;
2890 }
2891
2892 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2893 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
2894 data, true);
2895 goto out;
2896 }
2897
Bruce Allan2b6b1682011-05-13 07:20:09 +00002898 if (!page_set) {
2899 if (page == HV_INTC_FC_PAGE_START)
2900 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002901
Bruce Allan2b6b1682011-05-13 07:20:09 +00002902 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2903 /* Page is shifted left, PHY expects (page x 32) */
2904 ret_val = e1000_set_page_igp(hw,
2905 (page << IGP_PAGE_SHIFT));
Bruce Allana4f58f52009-06-02 11:29:18 +00002906
Bruce Allan2b6b1682011-05-13 07:20:09 +00002907 hw->phy.addr = phy_addr;
Bruce Allana4f58f52009-06-02 11:29:18 +00002908
Bruce Allan2b6b1682011-05-13 07:20:09 +00002909 if (ret_val)
2910 goto out;
2911 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002912 }
2913
Bruce Allan2b6b1682011-05-13 07:20:09 +00002914 e_dbg("reading PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2915 page << IGP_PAGE_SHIFT, reg);
2916
Bruce Allana4f58f52009-06-02 11:29:18 +00002917 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
2918 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002919out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002920 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002921 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002922
Bruce Allana4f58f52009-06-02 11:29:18 +00002923 return ret_val;
2924}
2925
2926/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002927 * e1000_read_phy_reg_hv - Read HV PHY register
2928 * @hw: pointer to the HW structure
2929 * @offset: register offset to be read
2930 * @data: pointer to the read data
2931 *
2932 * Acquires semaphore then reads the PHY register at offset and stores
2933 * the retrieved information in data. Release the acquired semaphore
2934 * before exiting.
2935 **/
2936s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2937{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002938 return __e1000_read_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002939}
2940
2941/**
2942 * e1000_read_phy_reg_hv_locked - Read HV PHY register
2943 * @hw: pointer to the HW structure
2944 * @offset: register offset to be read
2945 * @data: pointer to the read data
2946 *
2947 * Reads the PHY register at offset and stores the retrieved information
2948 * in data. Assumes semaphore already acquired.
2949 **/
2950s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data)
2951{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002952 return __e1000_read_phy_reg_hv(hw, offset, data, true, false);
2953}
2954
2955/**
2956 * e1000_read_phy_reg_page_hv - Read HV PHY register
2957 * @hw: pointer to the HW structure
2958 * @offset: register offset to write to
2959 * @data: data to write at register offset
2960 *
2961 * Reads the PHY register at offset and stores the retrieved information
2962 * in data. Assumes semaphore already acquired and page already set.
2963 **/
2964s32 e1000_read_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2965{
2966 return __e1000_read_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002967}
2968
2969/**
2970 * __e1000_write_phy_reg_hv - Write HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002971 * @hw: pointer to the HW structure
2972 * @offset: register offset to write to
2973 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002974 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002975 *
2976 * Acquires semaphore, if necessary, then writes the data to PHY register
2977 * at the offset. Release any acquired semaphores before exiting.
2978 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002979static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002980 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002981{
2982 s32 ret_val;
2983 u16 page = BM_PHY_REG_PAGE(offset);
2984 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002985 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002986
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002987 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002988 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002989 if (ret_val)
2990 return ret_val;
2991 }
2992
Bruce Allana4f58f52009-06-02 11:29:18 +00002993 /* Page 800 works differently than the rest so it has its own func */
2994 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002995 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
2996 false, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002997 goto out;
2998 }
2999
3000 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
3001 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
3002 &data, false);
3003 goto out;
3004 }
3005
Bruce Allan2b6b1682011-05-13 07:20:09 +00003006 if (!page_set) {
3007 if (page == HV_INTC_FC_PAGE_START)
3008 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003009
Bruce Allan2b6b1682011-05-13 07:20:09 +00003010 /*
3011 * Workaround MDIO accesses being disabled after entering IEEE
3012 * Power Down (when bit 11 of the PHY Control register is set)
3013 */
3014 if ((hw->phy.type == e1000_phy_82578) &&
3015 (hw->phy.revision >= 1) &&
3016 (hw->phy.addr == 2) &&
3017 ((MAX_PHY_REG_ADDRESS & reg) == 0) && (data & (1 << 11))) {
3018 u16 data2 = 0x7EFF;
3019 ret_val = e1000_access_phy_debug_regs_hv(hw,
3020 (1 << 6) | 0x3,
3021 &data2, false);
3022 if (ret_val)
3023 goto out;
3024 }
Bruce Allana4f58f52009-06-02 11:29:18 +00003025
Bruce Allan2b6b1682011-05-13 07:20:09 +00003026 if (reg > MAX_PHY_MULTI_PAGE_REG) {
3027 /* Page is shifted left, PHY expects (page x 32) */
3028 ret_val = e1000_set_page_igp(hw,
3029 (page << IGP_PAGE_SHIFT));
3030
3031 hw->phy.addr = phy_addr;
3032
3033 if (ret_val)
3034 goto out;
3035 }
Bruce Allana4f58f52009-06-02 11:29:18 +00003036 }
3037
Bruce Allan2b6b1682011-05-13 07:20:09 +00003038 e_dbg("writing PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
3039 page << IGP_PAGE_SHIFT, reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00003040
3041 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
3042 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003043
3044out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003045 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00003046 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003047
Bruce Allana4f58f52009-06-02 11:29:18 +00003048 return ret_val;
3049}
3050
3051/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003052 * e1000_write_phy_reg_hv - Write HV PHY register
3053 * @hw: pointer to the HW structure
3054 * @offset: register offset to write to
3055 * @data: data to write at register offset
3056 *
3057 * Acquires semaphore then writes the data to PHY register at the offset.
3058 * Release the acquired semaphores before exiting.
3059 **/
3060s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data)
3061{
Bruce Allan2b6b1682011-05-13 07:20:09 +00003062 return __e1000_write_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003063}
3064
3065/**
3066 * e1000_write_phy_reg_hv_locked - Write HV PHY register
3067 * @hw: pointer to the HW structure
3068 * @offset: register offset to write to
3069 * @data: data to write at register offset
3070 *
3071 * Writes the data to PHY register at the offset. Assumes semaphore
3072 * already acquired.
3073 **/
3074s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data)
3075{
Bruce Allan2b6b1682011-05-13 07:20:09 +00003076 return __e1000_write_phy_reg_hv(hw, offset, data, true, false);
3077}
3078
3079/**
3080 * e1000_write_phy_reg_page_hv - Write HV PHY register
3081 * @hw: pointer to the HW structure
3082 * @offset: register offset to write to
3083 * @data: data to write at register offset
3084 *
3085 * Writes the data to PHY register at the offset. Assumes semaphore
3086 * already acquired and page already set.
3087 **/
3088s32 e1000_write_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 data)
3089{
3090 return __e1000_write_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003091}
3092
3093/**
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003094 * e1000_get_phy_addr_for_hv_page - Get PHY address based on page
Bruce Allana4f58f52009-06-02 11:29:18 +00003095 * @page: page to be accessed
3096 **/
3097static u32 e1000_get_phy_addr_for_hv_page(u32 page)
3098{
3099 u32 phy_addr = 2;
3100
3101 if (page >= HV_INTC_FC_PAGE_START)
3102 phy_addr = 1;
3103
3104 return phy_addr;
3105}
3106
3107/**
3108 * e1000_access_phy_debug_regs_hv - Read HV PHY vendor specific high registers
3109 * @hw: pointer to the HW structure
3110 * @offset: register offset to be read or written
3111 * @data: pointer to the data to be read or written
Bruce Allan2b6b1682011-05-13 07:20:09 +00003112 * @read: determines if operation is read or write
Bruce Allana4f58f52009-06-02 11:29:18 +00003113 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003114 * Reads the PHY register at offset and stores the retreived information
3115 * in data. Assumes semaphore already acquired. Note that the procedure
Bruce Allan2b6b1682011-05-13 07:20:09 +00003116 * to access these regs uses the address port and data port to read/write.
3117 * These accesses done with PHY address 2 and without using pages.
Bruce Allana4f58f52009-06-02 11:29:18 +00003118 **/
3119static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
3120 u16 *data, bool read)
3121{
3122 s32 ret_val;
3123 u32 addr_reg = 0;
3124 u32 data_reg = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003125
3126 /* This takes care of the difference with desktop vs mobile phy */
3127 addr_reg = (hw->phy.type == e1000_phy_82578) ?
3128 I82578_ADDR_REG : I82577_ADDR_REG;
3129 data_reg = addr_reg + 1;
3130
Bruce Allana4f58f52009-06-02 11:29:18 +00003131 /* All operations in this function are phy address 2 */
3132 hw->phy.addr = 2;
3133
3134 /* masking with 0x3F to remove the page from offset */
3135 ret_val = e1000e_write_phy_reg_mdic(hw, addr_reg, (u16)offset & 0x3F);
3136 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003137 e_dbg("Could not write the Address Offset port register\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003138 goto out;
3139 }
3140
3141 /* Read or write the data value next */
3142 if (read)
3143 ret_val = e1000e_read_phy_reg_mdic(hw, data_reg, data);
3144 else
3145 ret_val = e1000e_write_phy_reg_mdic(hw, data_reg, *data);
3146
3147 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003148 e_dbg("Could not access the Data port register\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003149 goto out;
3150 }
3151
3152out:
Bruce Allana4f58f52009-06-02 11:29:18 +00003153 return ret_val;
3154}
3155
3156/**
3157 * e1000_link_stall_workaround_hv - Si workaround
3158 * @hw: pointer to the HW structure
3159 *
3160 * This function works around a Si bug where the link partner can get
3161 * a link up indication before the PHY does. If small packets are sent
3162 * by the link partner they can be placed in the packet buffer without
3163 * being properly accounted for by the PHY and will stall preventing
3164 * further packets from being received. The workaround is to clear the
3165 * packet buffer after the PHY detects link up.
3166 **/
3167s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw)
3168{
3169 s32 ret_val = 0;
3170 u16 data;
3171
3172 if (hw->phy.type != e1000_phy_82578)
3173 goto out;
3174
Bruce Allane65fa872009-07-01 13:27:31 +00003175 /* Do not apply workaround if in PHY loopback bit 14 set */
Bruce Allan482fed82011-01-06 14:29:49 +00003176 e1e_rphy(hw, PHY_CONTROL, &data);
Bruce Allane65fa872009-07-01 13:27:31 +00003177 if (data & PHY_CONTROL_LB)
3178 goto out;
3179
Bruce Allana4f58f52009-06-02 11:29:18 +00003180 /* check if link is up and at 1Gbps */
Bruce Allan482fed82011-01-06 14:29:49 +00003181 ret_val = e1e_rphy(hw, BM_CS_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003182 if (ret_val)
3183 goto out;
3184
3185 data &= BM_CS_STATUS_LINK_UP |
3186 BM_CS_STATUS_RESOLVED |
3187 BM_CS_STATUS_SPEED_MASK;
3188
3189 if (data != (BM_CS_STATUS_LINK_UP |
3190 BM_CS_STATUS_RESOLVED |
3191 BM_CS_STATUS_SPEED_1000))
3192 goto out;
3193
3194 mdelay(200);
3195
3196 /* flush the packets in the fifo buffer */
Bruce Allan482fed82011-01-06 14:29:49 +00003197 ret_val = e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC |
3198 HV_MUX_DATA_CTRL_FORCE_SPEED);
Bruce Allana4f58f52009-06-02 11:29:18 +00003199 if (ret_val)
3200 goto out;
3201
Bruce Allan482fed82011-01-06 14:29:49 +00003202 ret_val = e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003203
3204out:
3205 return ret_val;
3206}
3207
3208/**
3209 * e1000_check_polarity_82577 - Checks the polarity.
3210 * @hw: pointer to the HW structure
3211 *
3212 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
3213 *
3214 * Polarity is determined based on the PHY specific status register.
3215 **/
3216s32 e1000_check_polarity_82577(struct e1000_hw *hw)
3217{
3218 struct e1000_phy_info *phy = &hw->phy;
3219 s32 ret_val;
3220 u16 data;
3221
Bruce Allan482fed82011-01-06 14:29:49 +00003222 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003223
3224 if (!ret_val)
3225 phy->cable_polarity = (data & I82577_PHY_STATUS2_REV_POLARITY)
3226 ? e1000_rev_polarity_reversed
3227 : e1000_rev_polarity_normal;
3228
3229 return ret_val;
3230}
3231
3232/**
3233 * e1000_phy_force_speed_duplex_82577 - Force speed/duplex for I82577 PHY
3234 * @hw: pointer to the HW structure
3235 *
Bruce Allaneab50ff2010-05-10 15:01:30 +00003236 * Calls the PHY setup function to force speed and duplex.
Bruce Allana4f58f52009-06-02 11:29:18 +00003237 **/
3238s32 e1000_phy_force_speed_duplex_82577(struct e1000_hw *hw)
3239{
3240 struct e1000_phy_info *phy = &hw->phy;
3241 s32 ret_val;
3242 u16 phy_data;
3243 bool link;
3244
Bruce Allan482fed82011-01-06 14:29:49 +00003245 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003246 if (ret_val)
3247 goto out;
3248
3249 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
3250
Bruce Allan482fed82011-01-06 14:29:49 +00003251 ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003252 if (ret_val)
3253 goto out;
3254
Bruce Allana4f58f52009-06-02 11:29:18 +00003255 udelay(1);
3256
3257 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003258 e_dbg("Waiting for forced speed/duplex link on 82577 phy\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003259
3260 ret_val = e1000e_phy_has_link_generic(hw,
3261 PHY_FORCE_LIMIT,
3262 100000,
3263 &link);
3264 if (ret_val)
3265 goto out;
3266
3267 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003268 e_dbg("Link taking longer than expected.\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003269
3270 /* Try once more */
3271 ret_val = e1000e_phy_has_link_generic(hw,
3272 PHY_FORCE_LIMIT,
3273 100000,
3274 &link);
3275 if (ret_val)
3276 goto out;
3277 }
3278
3279out:
3280 return ret_val;
3281}
3282
3283/**
3284 * e1000_get_phy_info_82577 - Retrieve I82577 PHY information
3285 * @hw: pointer to the HW structure
3286 *
3287 * Read PHY status to determine if link is up. If link is up, then
3288 * set/determine 10base-T extended distance and polarity correction. Read
3289 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
3290 * determine on the cable length, local and remote receiver.
3291 **/
3292s32 e1000_get_phy_info_82577(struct e1000_hw *hw)
3293{
3294 struct e1000_phy_info *phy = &hw->phy;
3295 s32 ret_val;
3296 u16 data;
3297 bool link;
3298
3299 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
3300 if (ret_val)
3301 goto out;
3302
3303 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003304 e_dbg("Phy info is only valid if link is up\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003305 ret_val = -E1000_ERR_CONFIG;
3306 goto out;
3307 }
3308
3309 phy->polarity_correction = true;
3310
3311 ret_val = e1000_check_polarity_82577(hw);
3312 if (ret_val)
3313 goto out;
3314
Bruce Allan482fed82011-01-06 14:29:49 +00003315 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003316 if (ret_val)
3317 goto out;
3318
3319 phy->is_mdix = (data & I82577_PHY_STATUS2_MDIX) ? true : false;
3320
3321 if ((data & I82577_PHY_STATUS2_SPEED_MASK) ==
3322 I82577_PHY_STATUS2_SPEED_1000MBPS) {
3323 ret_val = hw->phy.ops.get_cable_length(hw);
3324 if (ret_val)
3325 goto out;
3326
Bruce Allan482fed82011-01-06 14:29:49 +00003327 ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003328 if (ret_val)
3329 goto out;
3330
3331 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
3332 ? e1000_1000t_rx_status_ok
3333 : e1000_1000t_rx_status_not_ok;
3334
3335 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
3336 ? e1000_1000t_rx_status_ok
3337 : e1000_1000t_rx_status_not_ok;
3338 } else {
3339 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
3340 phy->local_rx = e1000_1000t_rx_status_undefined;
3341 phy->remote_rx = e1000_1000t_rx_status_undefined;
3342 }
3343
3344out:
3345 return ret_val;
3346}
3347
3348/**
3349 * e1000_get_cable_length_82577 - Determine cable length for 82577 PHY
3350 * @hw: pointer to the HW structure
3351 *
3352 * Reads the diagnostic status register and verifies result is valid before
3353 * placing it in the phy_cable_length field.
3354 **/
3355s32 e1000_get_cable_length_82577(struct e1000_hw *hw)
3356{
3357 struct e1000_phy_info *phy = &hw->phy;
3358 s32 ret_val;
3359 u16 phy_data, length;
3360
Bruce Allan482fed82011-01-06 14:29:49 +00003361 ret_val = e1e_rphy(hw, I82577_PHY_DIAG_STATUS, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003362 if (ret_val)
3363 goto out;
3364
3365 length = (phy_data & I82577_DSTATUS_CABLE_LENGTH) >>
3366 I82577_DSTATUS_CABLE_LENGTH_SHIFT;
3367
3368 if (length == E1000_CABLE_LENGTH_UNDEFINED)
Bruce Allan98086a92009-11-20 23:23:53 +00003369 ret_val = -E1000_ERR_PHY;
Bruce Allana4f58f52009-06-02 11:29:18 +00003370
3371 phy->cable_length = length;
3372
3373out:
3374 return ret_val;
3375}