blob: b8226ed0e338f45e71f35a4036d97964d8491591 [file] [log] [blame]
Jeff Kirsherae06c702018-03-22 10:08:48 -07001// SPDX-License-Identifier: GPL-2.0
David Ertmane78b80b2014-02-04 01:56:06 +00002/* Intel PRO/1000 Linux driver
Yanir Lubetkin529498c2015-06-02 17:05:50 +03003 * Copyright(c) 1999 - 2015 Intel Corporation.
David Ertmane78b80b2014-02-04 01:56:06 +00004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * The full GNU General Public License is included in this distribution in
15 * the file called "COPYING".
16 *
17 * Contact Information:
18 * Linux NICS <linux.nics@intel.com>
19 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
20 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
21 */
Auke Kokbc7f75f2007-09-17 12:30:59 -070022
Auke Kokbc7f75f2007-09-17 12:30:59 -070023#include "e1000.h"
24
Auke Kokbc7f75f2007-09-17 12:30:59 -070025static s32 e1000_wait_autoneg(struct e1000_hw *hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -070026static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +000027 u16 *data, bool read, bool page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +000028static u32 e1000_get_phy_addr_for_hv_page(u32 page);
29static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
Bruce Allan1f96012d2013-01-05 03:06:54 +000030 u16 *data, bool read);
Auke Kokbc7f75f2007-09-17 12:30:59 -070031
32/* Cable length tables */
Bruce Allan64806412010-12-11 05:53:42 +000033static const u16 e1000_m88_cable_length_table[] = {
Bruce Allan04e115c2013-02-20 04:06:22 +000034 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED
35};
Bruce Allanfc830b72013-02-20 04:06:11 +000036
Bruce Allaneb656d42009-12-01 15:47:02 +000037#define M88E1000_CABLE_LENGTH_TABLE_SIZE \
38 ARRAY_SIZE(e1000_m88_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070039
Bruce Allan64806412010-12-11 05:53:42 +000040static const u16 e1000_igp_2_cable_length_table[] = {
41 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, 0, 0, 0, 3,
42 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, 6, 10, 14, 18, 22,
43 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, 21, 26, 31, 35, 40,
44 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, 40, 45, 51, 56, 61,
45 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, 60, 66, 72, 77, 82,
46 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, 83, 89, 95,
47 100, 105, 109, 113, 116, 119, 122, 124, 104, 109, 114, 118, 121,
Bruce Allan04e115c2013-02-20 04:06:22 +000048 124
49};
Bruce Allanfc830b72013-02-20 04:06:11 +000050
Auke Kokbc7f75f2007-09-17 12:30:59 -070051#define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +020052 ARRAY_SIZE(e1000_igp_2_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070053
54/**
55 * e1000e_check_reset_block_generic - Check if PHY reset is blocked
56 * @hw: pointer to the HW structure
57 *
58 * Read the PHY management control register and check whether a PHY reset
59 * is blocked. If a reset is not blocked return 0, otherwise
60 * return E1000_BLK_PHY_RESET (12).
61 **/
62s32 e1000e_check_reset_block_generic(struct e1000_hw *hw)
63{
64 u32 manc;
65
66 manc = er32(MANC);
67
Bruce Allane5fe2542013-02-20 04:06:27 +000068 return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ? E1000_BLK_PHY_RESET : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070069}
70
71/**
72 * e1000e_get_phy_id - Retrieve the PHY ID and revision
73 * @hw: pointer to the HW structure
74 *
75 * Reads the PHY registers and stores the PHY ID and possibly the PHY
76 * revision in the hardware structure.
77 **/
78s32 e1000e_get_phy_id(struct e1000_hw *hw)
79{
80 struct e1000_phy_info *phy = &hw->phy;
Bruce Allana4f58f52009-06-02 11:29:18 +000081 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070082 u16 phy_id;
Bruce Allana4f58f52009-06-02 11:29:18 +000083 u16 retry_count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070084
Bruce Allan668018d2012-01-31 07:02:56 +000085 if (!phy->ops.read_reg)
Bruce Allan5015e532012-02-08 02:55:56 +000086 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070087
Bruce Allana4f58f52009-06-02 11:29:18 +000088 while (retry_count < 2) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +000089 ret_val = e1e_rphy(hw, MII_PHYSID1, &phy_id);
Bruce Allana4f58f52009-06-02 11:29:18 +000090 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +000091 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -070092
Bruce Allana4f58f52009-06-02 11:29:18 +000093 phy->id = (u32)(phy_id << 16);
Bruce Allance43a212013-02-20 04:06:32 +000094 usleep_range(20, 40);
Bruce Allanc2ade1a2013-01-16 08:54:35 +000095 ret_val = e1e_rphy(hw, MII_PHYSID2, &phy_id);
Bruce Allana4f58f52009-06-02 11:29:18 +000096 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +000097 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -070098
Bruce Allana4f58f52009-06-02 11:29:18 +000099 phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
100 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
101
102 if (phy->id != 0 && phy->id != PHY_REVISION_MASK)
Bruce Allan5015e532012-02-08 02:55:56 +0000103 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +0000104
Bruce Allana4f58f52009-06-02 11:29:18 +0000105 retry_count++;
106 }
Bruce Allan5015e532012-02-08 02:55:56 +0000107
108 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700109}
110
111/**
112 * e1000e_phy_reset_dsp - Reset PHY DSP
113 * @hw: pointer to the HW structure
114 *
115 * Reset the digital signal processor.
116 **/
117s32 e1000e_phy_reset_dsp(struct e1000_hw *hw)
118{
119 s32 ret_val;
120
121 ret_val = e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
122 if (ret_val)
123 return ret_val;
124
125 return e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0);
126}
127
128/**
David Graham2d9498f2008-04-23 11:09:14 -0700129 * e1000e_read_phy_reg_mdic - Read MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700130 * @hw: pointer to the HW structure
131 * @offset: register offset to be read
132 * @data: pointer to the read data
133 *
Auke Kok489815c2008-02-21 15:11:07 -0800134 * Reads the MDI control register in the PHY at offset and stores the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700135 * information read to data.
136 **/
David Graham2d9498f2008-04-23 11:09:14 -0700137s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700138{
139 struct e1000_phy_info *phy = &hw->phy;
140 u32 i, mdic = 0;
141
142 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000143 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700144 return -E1000_ERR_PARAM;
145 }
146
Bruce Allane921eb12012-11-28 09:28:37 +0000147 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700148 * Control register. The MAC will take care of interfacing with the
149 * PHY to retrieve the desired data.
150 */
151 mdic = ((offset << E1000_MDIC_REG_SHIFT) |
152 (phy->addr << E1000_MDIC_PHY_SHIFT) |
153 (E1000_MDIC_OP_READ));
154
155 ew32(MDIC, mdic);
156
Bruce Allane921eb12012-11-28 09:28:37 +0000157 /* Poll the ready bit to see if the MDI read completed
Bruce Allanad680762008-03-28 09:15:03 -0700158 * Increasing the time out as testing showed failures with
159 * the lower time out
160 */
David Graham2d9498f2008-04-23 11:09:14 -0700161 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Bruce Allan274a85e2013-03-19 01:47:12 +0000162 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700163 mdic = er32(MDIC);
164 if (mdic & E1000_MDIC_READY)
165 break;
166 }
167 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000168 e_dbg("MDI Read did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700169 return -E1000_ERR_PHY;
170 }
171 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000172 e_dbg("MDI Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700173 return -E1000_ERR_PHY;
174 }
Bruce Allanbb034512013-03-06 09:02:31 +0000175 if (((mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT) != offset) {
176 e_dbg("MDI Read offset error - requested %d, returned %d\n",
177 offset,
178 (mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT);
179 return -E1000_ERR_PHY;
180 }
Bruce Allan53aa82d2013-02-20 04:06:06 +0000181 *data = (u16)mdic;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700182
Bruce Allane921eb12012-11-28 09:28:37 +0000183 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000184 * reading duplicate data in the next MDIC transaction.
185 */
186 if (hw->mac.type == e1000_pch2lan)
Bruce Allan274a85e2013-03-19 01:47:12 +0000187 udelay(100);
Bruce Allan664dc872010-11-24 06:01:46 +0000188
Auke Kokbc7f75f2007-09-17 12:30:59 -0700189 return 0;
190}
191
192/**
David Graham2d9498f2008-04-23 11:09:14 -0700193 * e1000e_write_phy_reg_mdic - Write MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700194 * @hw: pointer to the HW structure
195 * @offset: register offset to write to
196 * @data: data to write to register at offset
197 *
198 * Writes data to MDI control register in the PHY at offset.
199 **/
David Graham2d9498f2008-04-23 11:09:14 -0700200s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700201{
202 struct e1000_phy_info *phy = &hw->phy;
203 u32 i, mdic = 0;
204
205 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000206 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700207 return -E1000_ERR_PARAM;
208 }
209
Bruce Allane921eb12012-11-28 09:28:37 +0000210 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700211 * Control register. The MAC will take care of interfacing with the
212 * PHY to retrieve the desired data.
213 */
214 mdic = (((u32)data) |
215 (offset << E1000_MDIC_REG_SHIFT) |
216 (phy->addr << E1000_MDIC_PHY_SHIFT) |
217 (E1000_MDIC_OP_WRITE));
218
219 ew32(MDIC, mdic);
220
Bruce Allane921eb12012-11-28 09:28:37 +0000221 /* Poll the ready bit to see if the MDI read completed
David Graham2d9498f2008-04-23 11:09:14 -0700222 * Increasing the time out as testing showed failures with
223 * the lower time out
224 */
225 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Bruce Allan274a85e2013-03-19 01:47:12 +0000226 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700227 mdic = er32(MDIC);
228 if (mdic & E1000_MDIC_READY)
229 break;
230 }
231 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000232 e_dbg("MDI Write did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700233 return -E1000_ERR_PHY;
234 }
David Graham2d9498f2008-04-23 11:09:14 -0700235 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000236 e_dbg("MDI Error\n");
David Graham2d9498f2008-04-23 11:09:14 -0700237 return -E1000_ERR_PHY;
238 }
Bruce Allanbb034512013-03-06 09:02:31 +0000239 if (((mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT) != offset) {
240 e_dbg("MDI Write offset error - requested %d, returned %d\n",
241 offset,
242 (mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT);
243 return -E1000_ERR_PHY;
244 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700245
Bruce Allane921eb12012-11-28 09:28:37 +0000246 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000247 * reading duplicate data in the next MDIC transaction.
248 */
249 if (hw->mac.type == e1000_pch2lan)
Bruce Allan274a85e2013-03-19 01:47:12 +0000250 udelay(100);
Bruce Allan664dc872010-11-24 06:01:46 +0000251
Auke Kokbc7f75f2007-09-17 12:30:59 -0700252 return 0;
253}
254
255/**
256 * e1000e_read_phy_reg_m88 - Read m88 PHY register
257 * @hw: pointer to the HW structure
258 * @offset: register offset to be read
259 * @data: pointer to the read data
260 *
261 * Acquires semaphore, if necessary, then reads the PHY register at offset
262 * and storing the retrieved information in data. Release any acquired
263 * semaphores before exiting.
264 **/
265s32 e1000e_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data)
266{
267 s32 ret_val;
268
Bruce Allan94d81862009-11-20 23:25:26 +0000269 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700270 if (ret_val)
271 return ret_val;
272
David Graham2d9498f2008-04-23 11:09:14 -0700273 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
274 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700275
Bruce Allan94d81862009-11-20 23:25:26 +0000276 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700277
278 return ret_val;
279}
280
281/**
282 * e1000e_write_phy_reg_m88 - Write m88 PHY register
283 * @hw: pointer to the HW structure
284 * @offset: register offset to write to
285 * @data: data to write at register offset
286 *
287 * Acquires semaphore, if necessary, then writes the data to PHY register
288 * at the offset. Release any acquired semaphores before exiting.
289 **/
290s32 e1000e_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data)
291{
292 s32 ret_val;
293
Bruce Allan94d81862009-11-20 23:25:26 +0000294 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700295 if (ret_val)
296 return ret_val;
297
David Graham2d9498f2008-04-23 11:09:14 -0700298 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
299 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700300
Bruce Allan94d81862009-11-20 23:25:26 +0000301 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700302
303 return ret_val;
304}
305
306/**
Bruce Allan2b6b1682011-05-13 07:20:09 +0000307 * e1000_set_page_igp - Set page as on IGP-like PHY(s)
308 * @hw: pointer to the HW structure
309 * @page: page to set (shifted left when necessary)
310 *
311 * Sets PHY page required for PHY register access. Assumes semaphore is
312 * already acquired. Note, this function sets phy.addr to 1 so the caller
313 * must set it appropriately (if necessary) after this function returns.
314 **/
315s32 e1000_set_page_igp(struct e1000_hw *hw, u16 page)
316{
317 e_dbg("Setting page 0x%x\n", page);
318
319 hw->phy.addr = 1;
320
321 return e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, page);
322}
323
324/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000325 * __e1000e_read_phy_reg_igp - Read igp PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700326 * @hw: pointer to the HW structure
327 * @offset: register offset to be read
328 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000329 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700330 *
331 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000332 * and stores the retrieved information in data. Release any acquired
Auke Kokbc7f75f2007-09-17 12:30:59 -0700333 * semaphores before exiting.
334 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000335static s32 __e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan66501f52013-02-20 04:05:55 +0000336 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700337{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000338 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700339
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000340 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000341 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000342 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000343
Bruce Allan94d81862009-11-20 23:25:26 +0000344 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000345 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000346 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000347 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700348
Bruce Allan5015e532012-02-08 02:55:56 +0000349 if (offset > MAX_PHY_MULTI_PAGE_REG)
David Graham2d9498f2008-04-23 11:09:14 -0700350 ret_val = e1000e_write_phy_reg_mdic(hw,
351 IGP01E1000_PHY_PAGE_SELECT,
352 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000353 if (!ret_val)
354 ret_val = e1000e_read_phy_reg_mdic(hw,
355 MAX_PHY_REG_ADDRESS & offset,
356 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000357 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000358 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +0000359
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000360 return ret_val;
361}
Auke Kokbc7f75f2007-09-17 12:30:59 -0700362
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000363/**
364 * e1000e_read_phy_reg_igp - Read igp PHY register
365 * @hw: pointer to the HW structure
366 * @offset: register offset to be read
367 * @data: pointer to the read data
368 *
369 * Acquires semaphore then reads the PHY register at offset and stores the
370 * retrieved information in data.
371 * Release the acquired semaphore before exiting.
372 **/
373s32 e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
374{
375 return __e1000e_read_phy_reg_igp(hw, offset, data, false);
376}
377
378/**
379 * e1000e_read_phy_reg_igp_locked - Read igp PHY register
380 * @hw: pointer to the HW structure
381 * @offset: register offset to be read
382 * @data: pointer to the read data
383 *
384 * Reads the PHY register at offset and stores the retrieved information
385 * in data. Assumes semaphore already acquired.
386 **/
387s32 e1000e_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data)
388{
389 return __e1000e_read_phy_reg_igp(hw, offset, data, true);
390}
391
392/**
393 * e1000e_write_phy_reg_igp - Write igp PHY register
394 * @hw: pointer to the HW structure
395 * @offset: register offset to write to
396 * @data: data to write at register offset
397 * @locked: semaphore has already been acquired or not
398 *
399 * Acquires semaphore, if necessary, then writes the data to PHY register
400 * at the offset. Release any acquired semaphores before exiting.
401 **/
402static s32 __e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan66501f52013-02-20 04:05:55 +0000403 bool locked)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000404{
405 s32 ret_val = 0;
406
407 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000408 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000409 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000410
Bruce Allan94d81862009-11-20 23:25:26 +0000411 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000412 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000413 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000414 }
415
Bruce Allan5015e532012-02-08 02:55:56 +0000416 if (offset > MAX_PHY_MULTI_PAGE_REG)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000417 ret_val = e1000e_write_phy_reg_mdic(hw,
418 IGP01E1000_PHY_PAGE_SELECT,
419 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000420 if (!ret_val)
421 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS &
Bruce Allan17e813e2013-02-20 04:06:01 +0000422 offset, data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000423 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000424 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000425
Auke Kokbc7f75f2007-09-17 12:30:59 -0700426 return ret_val;
427}
428
429/**
430 * e1000e_write_phy_reg_igp - Write igp PHY register
431 * @hw: pointer to the HW structure
432 * @offset: register offset to write to
433 * @data: data to write at register offset
434 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000435 * Acquires semaphore then writes the data to PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700436 * at the offset. Release any acquired semaphores before exiting.
437 **/
438s32 e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
439{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000440 return __e1000e_write_phy_reg_igp(hw, offset, data, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700441}
442
443/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000444 * e1000e_write_phy_reg_igp_locked - Write igp PHY register
445 * @hw: pointer to the HW structure
446 * @offset: register offset to write to
447 * @data: data to write at register offset
448 *
449 * Writes the data to PHY register at the offset.
450 * Assumes semaphore already acquired.
451 **/
452s32 e1000e_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data)
453{
454 return __e1000e_write_phy_reg_igp(hw, offset, data, true);
455}
456
457/**
458 * __e1000_read_kmrn_reg - Read kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700459 * @hw: pointer to the HW structure
460 * @offset: register offset to be read
461 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000462 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700463 *
464 * Acquires semaphore, if necessary. Then reads the PHY register at offset
465 * using the kumeran interface. The information retrieved is stored in data.
466 * Release any acquired semaphores before exiting.
467 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000468static s32 __e1000_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan66501f52013-02-20 04:05:55 +0000469 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700470{
471 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700472
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000473 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000474 s32 ret_val = 0;
475
Bruce Allan668018d2012-01-31 07:02:56 +0000476 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000477 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000478
Bruce Allan94d81862009-11-20 23:25:26 +0000479 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000480 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000481 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000482 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700483
484 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
485 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
486 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000487 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700488
489 udelay(2);
490
491 kmrnctrlsta = er32(KMRNCTRLSTA);
492 *data = (u16)kmrnctrlsta;
493
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000494 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000495 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700496
Bruce Allan5015e532012-02-08 02:55:56 +0000497 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700498}
499
500/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000501 * e1000e_read_kmrn_reg - Read kumeran register
502 * @hw: pointer to the HW structure
503 * @offset: register offset to be read
504 * @data: pointer to the read data
505 *
506 * Acquires semaphore then reads the PHY register at offset using the
507 * kumeran interface. The information retrieved is stored in data.
508 * Release the acquired semaphore before exiting.
509 **/
510s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data)
511{
512 return __e1000_read_kmrn_reg(hw, offset, data, false);
513}
514
515/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000516 * e1000e_read_kmrn_reg_locked - Read kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000517 * @hw: pointer to the HW structure
518 * @offset: register offset to be read
519 * @data: pointer to the read data
520 *
521 * Reads the PHY register at offset using the kumeran interface. The
522 * information retrieved is stored in data.
523 * Assumes semaphore already acquired.
524 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000525s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000526{
527 return __e1000_read_kmrn_reg(hw, offset, data, true);
528}
529
530/**
531 * __e1000_write_kmrn_reg - Write kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700532 * @hw: pointer to the HW structure
533 * @offset: register offset to write to
534 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000535 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700536 *
537 * Acquires semaphore, if necessary. Then write the data to PHY register
538 * at the offset using the kumeran interface. Release any acquired semaphores
539 * before exiting.
540 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000541static s32 __e1000_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan66501f52013-02-20 04:05:55 +0000542 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700543{
544 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700545
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000546 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000547 s32 ret_val = 0;
548
Bruce Allan668018d2012-01-31 07:02:56 +0000549 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000550 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000551
Bruce Allan94d81862009-11-20 23:25:26 +0000552 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000553 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000554 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000555 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700556
557 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
558 E1000_KMRNCTRLSTA_OFFSET) | data;
559 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000560 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700561
562 udelay(2);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700563
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000564 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000565 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000566
Bruce Allan5015e532012-02-08 02:55:56 +0000567 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700568}
569
570/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000571 * e1000e_write_kmrn_reg - Write kumeran register
572 * @hw: pointer to the HW structure
573 * @offset: register offset to write to
574 * @data: data to write at register offset
575 *
576 * Acquires semaphore then writes the data to the PHY register at the offset
577 * using the kumeran interface. Release the acquired semaphore before exiting.
578 **/
579s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data)
580{
581 return __e1000_write_kmrn_reg(hw, offset, data, false);
582}
583
584/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000585 * e1000e_write_kmrn_reg_locked - Write kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000586 * @hw: pointer to the HW structure
587 * @offset: register offset to write to
588 * @data: data to write at register offset
589 *
590 * Write the data to PHY register at the offset using the kumeran interface.
591 * Assumes semaphore already acquired.
592 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000593s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000594{
595 return __e1000_write_kmrn_reg(hw, offset, data, true);
596}
597
598/**
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000599 * e1000_set_master_slave_mode - Setup PHY for Master/slave mode
600 * @hw: pointer to the HW structure
601 *
602 * Sets up Master/slave mode
603 **/
604static s32 e1000_set_master_slave_mode(struct e1000_hw *hw)
605{
606 s32 ret_val;
607 u16 phy_data;
608
609 /* Resolve Master/Slave mode */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000610 ret_val = e1e_rphy(hw, MII_CTRL1000, &phy_data);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000611 if (ret_val)
612 return ret_val;
613
614 /* load defaults for future use */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000615 hw->phy.original_ms_type = (phy_data & CTL1000_ENABLE_MASTER) ?
616 ((phy_data & CTL1000_AS_MASTER) ?
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000617 e1000_ms_force_master : e1000_ms_force_slave) : e1000_ms_auto;
618
619 switch (hw->phy.ms_type) {
620 case e1000_ms_force_master:
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000621 phy_data |= (CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000622 break;
623 case e1000_ms_force_slave:
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000624 phy_data |= CTL1000_ENABLE_MASTER;
625 phy_data &= ~(CTL1000_AS_MASTER);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000626 break;
627 case e1000_ms_auto:
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000628 phy_data &= ~CTL1000_ENABLE_MASTER;
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000629 /* fall-through */
630 default:
631 break;
632 }
633
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000634 return e1e_wphy(hw, MII_CTRL1000, phy_data);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000635}
636
637/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000638 * e1000_copper_link_setup_82577 - Setup 82577 PHY for copper link
639 * @hw: pointer to the HW structure
640 *
641 * Sets up Carrier-sense on Transmit and downshift values.
642 **/
643s32 e1000_copper_link_setup_82577(struct e1000_hw *hw)
644{
Bruce Allana4f58f52009-06-02 11:29:18 +0000645 s32 ret_val;
646 u16 phy_data;
647
Bruce Allanaf667a22010-12-31 06:10:01 +0000648 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Bruce Allan482fed82011-01-06 14:29:49 +0000649 ret_val = e1e_rphy(hw, I82577_CFG_REG, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000650 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000651 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +0000652
653 phy_data |= I82577_CFG_ASSERT_CRS_ON_TX;
654
655 /* Enable downshift */
656 phy_data |= I82577_CFG_ENABLE_DOWNSHIFT;
657
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000658 ret_val = e1e_wphy(hw, I82577_CFG_REG, phy_data);
659 if (ret_val)
660 return ret_val;
661
Bruce W Allane86fd892012-07-26 02:30:59 +0000662 /* Set MDI/MDIX mode */
663 ret_val = e1e_rphy(hw, I82577_PHY_CTRL_2, &phy_data);
664 if (ret_val)
665 return ret_val;
666 phy_data &= ~I82577_PHY_CTRL2_MDIX_CFG_MASK;
Bruce Allane921eb12012-11-28 09:28:37 +0000667 /* Options:
Bruce W Allane86fd892012-07-26 02:30:59 +0000668 * 0 - Auto (default)
669 * 1 - MDI mode
670 * 2 - MDI-X mode
671 */
672 switch (hw->phy.mdix) {
673 case 1:
674 break;
675 case 2:
676 phy_data |= I82577_PHY_CTRL2_MANUAL_MDIX;
677 break;
678 case 0:
679 default:
680 phy_data |= I82577_PHY_CTRL2_AUTO_MDI_MDIX;
681 break;
682 }
683 ret_val = e1e_wphy(hw, I82577_PHY_CTRL_2, phy_data);
684 if (ret_val)
685 return ret_val;
686
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000687 return e1000_set_master_slave_mode(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000688}
689
690/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700691 * e1000e_copper_link_setup_m88 - Setup m88 PHY's for copper link
692 * @hw: pointer to the HW structure
693 *
694 * Sets up MDI/MDI-X and polarity for m88 PHY's. If necessary, transmit clock
695 * and downshift values are set also.
696 **/
697s32 e1000e_copper_link_setup_m88(struct e1000_hw *hw)
698{
699 struct e1000_phy_info *phy = &hw->phy;
700 s32 ret_val;
701 u16 phy_data;
702
Bruce Allanad680762008-03-28 09:15:03 -0700703 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700704 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
705 if (ret_val)
706 return ret_val;
707
Bruce Allana4f58f52009-06-02 11:29:18 +0000708 /* For BM PHY this bit is downshift enable */
709 if (phy->type != e1000_phy_bm)
David Graham2d9498f2008-04-23 11:09:14 -0700710 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700711
Bruce Allane921eb12012-11-28 09:28:37 +0000712 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700713 * MDI/MDI-X = 0 (default)
714 * 0 - Auto for all speeds
715 * 1 - MDI mode
716 * 2 - MDI-X mode
717 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
718 */
719 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
720
721 switch (phy->mdix) {
722 case 1:
723 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
724 break;
725 case 2:
726 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
727 break;
728 case 3:
729 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
730 break;
731 case 0:
732 default:
733 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
734 break;
735 }
736
Bruce Allane921eb12012-11-28 09:28:37 +0000737 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700738 * disable_polarity_correction = 0 (default)
739 * Automatic Correction for Reversed Cable Polarity
740 * 0 - Disabled
741 * 1 - Enabled
742 */
743 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
Bruce Allan04499ec2012-04-13 00:08:31 +0000744 if (phy->disable_polarity_correction)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700745 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
746
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700747 /* Enable downshift on BM (disabled by default) */
Matthew Vick885fe7b2012-04-25 07:25:18 +0000748 if (phy->type == e1000_phy_bm) {
749 /* For 82574/82583, first disable then enable downshift */
750 if (phy->id == BME1000_E_PHY_ID_R2) {
751 phy_data &= ~BME1000_PSCR_ENABLE_DOWNSHIFT;
752 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL,
753 phy_data);
754 if (ret_val)
755 return ret_val;
756 /* Commit the changes. */
Bruce Allan6b598e12013-01-23 06:50:05 +0000757 ret_val = phy->ops.commit(hw);
Matthew Vick885fe7b2012-04-25 07:25:18 +0000758 if (ret_val) {
759 e_dbg("Error committing the PHY changes\n");
760 return ret_val;
761 }
762 }
763
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700764 phy_data |= BME1000_PSCR_ENABLE_DOWNSHIFT;
Matthew Vick885fe7b2012-04-25 07:25:18 +0000765 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700766
Auke Kokbc7f75f2007-09-17 12:30:59 -0700767 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
768 if (ret_val)
769 return ret_val;
770
Bruce Allan4662e822008-08-26 18:37:06 -0700771 if ((phy->type == e1000_phy_m88) &&
772 (phy->revision < E1000_REVISION_4) &&
773 (phy->id != BME1000_E_PHY_ID_R2)) {
Bruce Allane921eb12012-11-28 09:28:37 +0000774 /* Force TX_CLK in the Extended PHY Specific Control Register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700775 * to 25MHz clock.
776 */
777 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
778 if (ret_val)
779 return ret_val;
780
781 phy_data |= M88E1000_EPSCR_TX_CLK_25;
782
Bruce Allane5fe2542013-02-20 04:06:27 +0000783 if ((phy->revision == 2) && (phy->id == M88E1111_I_PHY_ID)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700784 /* 82573L PHY - set the downshift counter to 5x. */
785 phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
786 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
787 } else {
788 /* Configure Master and Slave downshift values */
789 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
790 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
791 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
792 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
793 }
794 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
795 if (ret_val)
796 return ret_val;
797 }
798
Bruce Allan4662e822008-08-26 18:37:06 -0700799 if ((phy->type == e1000_phy_bm) && (phy->id == BME1000_E_PHY_ID_R2)) {
800 /* Set PHY page 0, register 29 to 0x0003 */
801 ret_val = e1e_wphy(hw, 29, 0x0003);
802 if (ret_val)
803 return ret_val;
804
805 /* Set PHY page 0, register 30 to 0x0000 */
806 ret_val = e1e_wphy(hw, 30, 0x0000);
807 if (ret_val)
808 return ret_val;
809 }
810
Auke Kokbc7f75f2007-09-17 12:30:59 -0700811 /* Commit the changes. */
Bruce Allan6b598e12013-01-23 06:50:05 +0000812 if (phy->ops.commit) {
813 ret_val = phy->ops.commit(hw);
814 if (ret_val) {
815 e_dbg("Error committing the PHY changes\n");
816 return ret_val;
817 }
Bruce Allana4f58f52009-06-02 11:29:18 +0000818 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700819
Bruce Allana4f58f52009-06-02 11:29:18 +0000820 if (phy->type == e1000_phy_82578) {
Bruce Allan482fed82011-01-06 14:29:49 +0000821 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000822 if (ret_val)
823 return ret_val;
824
825 /* 82578 PHY - set the downshift count to 1x. */
826 phy_data |= I82578_EPSCR_DOWNSHIFT_ENABLE;
827 phy_data &= ~I82578_EPSCR_DOWNSHIFT_COUNTER_MASK;
Bruce Allan482fed82011-01-06 14:29:49 +0000828 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000829 if (ret_val)
830 return ret_val;
831 }
832
833 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700834}
835
836/**
837 * e1000e_copper_link_setup_igp - Setup igp PHY's for copper link
838 * @hw: pointer to the HW structure
839 *
840 * Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for
841 * igp PHY's.
842 **/
843s32 e1000e_copper_link_setup_igp(struct e1000_hw *hw)
844{
845 struct e1000_phy_info *phy = &hw->phy;
846 s32 ret_val;
847 u16 data;
848
849 ret_val = e1000_phy_hw_reset(hw);
850 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000851 e_dbg("Error resetting the PHY.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700852 return ret_val;
853 }
854
Bruce Allane921eb12012-11-28 09:28:37 +0000855 /* Wait 100ms for MAC to configure PHY from NVM settings, to avoid
David Graham2d9498f2008-04-23 11:09:14 -0700856 * timeout issues when LFS is enabled.
857 */
858 msleep(100);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700859
860 /* disable lplu d0 during driver init */
Bruce Allan7de89f02013-01-05 08:06:03 +0000861 if (hw->phy.ops.set_d0_lplu_state) {
862 ret_val = hw->phy.ops.set_d0_lplu_state(hw, false);
863 if (ret_val) {
864 e_dbg("Error Disabling LPLU D0\n");
865 return ret_val;
866 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700867 }
868 /* Configure mdi-mdix settings */
869 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &data);
870 if (ret_val)
871 return ret_val;
872
873 data &= ~IGP01E1000_PSCR_AUTO_MDIX;
874
875 switch (phy->mdix) {
876 case 1:
877 data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
878 break;
879 case 2:
880 data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
881 break;
882 case 0:
883 default:
884 data |= IGP01E1000_PSCR_AUTO_MDIX;
885 break;
886 }
887 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, data);
888 if (ret_val)
889 return ret_val;
890
891 /* set auto-master slave resolution settings */
892 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +0000893 /* when autonegotiation advertisement is only 1000Mbps then we
Auke Kokbc7f75f2007-09-17 12:30:59 -0700894 * should disable SmartSpeed and enable Auto MasterSlave
Bruce Allanad680762008-03-28 09:15:03 -0700895 * resolution as hardware default.
896 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700897 if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
898 /* Disable SmartSpeed */
899 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700900 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700901 if (ret_val)
902 return ret_val;
903
904 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
905 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700906 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700907 if (ret_val)
908 return ret_val;
909
910 /* Set auto Master/Slave resolution process */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000911 ret_val = e1e_rphy(hw, MII_CTRL1000, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700912 if (ret_val)
913 return ret_val;
914
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000915 data &= ~CTL1000_ENABLE_MASTER;
916 ret_val = e1e_wphy(hw, MII_CTRL1000, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700917 if (ret_val)
918 return ret_val;
919 }
920
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000921 ret_val = e1000_set_master_slave_mode(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700922 }
923
924 return ret_val;
925}
926
927/**
928 * e1000_phy_setup_autoneg - Configure PHY for auto-negotiation
929 * @hw: pointer to the HW structure
930 *
931 * Reads the MII auto-neg advertisement register and/or the 1000T control
932 * register and if the PHY is already setup for auto-negotiation, then
933 * return successful. Otherwise, setup advertisement and flow control to
934 * the appropriate values for the wanted auto-negotiation.
935 **/
936static s32 e1000_phy_setup_autoneg(struct e1000_hw *hw)
937{
938 struct e1000_phy_info *phy = &hw->phy;
939 s32 ret_val;
940 u16 mii_autoneg_adv_reg;
941 u16 mii_1000t_ctrl_reg = 0;
942
943 phy->autoneg_advertised &= phy->autoneg_mask;
944
945 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000946 ret_val = e1e_rphy(hw, MII_ADVERTISE, &mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700947 if (ret_val)
948 return ret_val;
949
950 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
951 /* Read the MII 1000Base-T Control Register (Address 9). */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000952 ret_val = e1e_rphy(hw, MII_CTRL1000, &mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700953 if (ret_val)
954 return ret_val;
955 }
956
Bruce Allane921eb12012-11-28 09:28:37 +0000957 /* Need to parse both autoneg_advertised and fc and set up
Auke Kokbc7f75f2007-09-17 12:30:59 -0700958 * the appropriate PHY registers. First we will parse for
959 * autoneg_advertised software override. Since we can advertise
960 * a plethora of combinations, we need to check each bit
961 * individually.
962 */
963
Bruce Allane921eb12012-11-28 09:28:37 +0000964 /* First we clear all the 10/100 mb speed bits in the Auto-Neg
Auke Kokbc7f75f2007-09-17 12:30:59 -0700965 * Advertisement Register (Address 4) and the 1000 mb speed bits in
966 * the 1000Base-T Control Register (Address 9).
967 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000968 mii_autoneg_adv_reg &= ~(ADVERTISE_100FULL |
969 ADVERTISE_100HALF |
970 ADVERTISE_10FULL | ADVERTISE_10HALF);
971 mii_1000t_ctrl_reg &= ~(ADVERTISE_1000HALF | ADVERTISE_1000FULL);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700972
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");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000978 mii_autoneg_adv_reg |= ADVERTISE_10HALF;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700979 }
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");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000984 mii_autoneg_adv_reg |= ADVERTISE_10FULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700985 }
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");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000990 mii_autoneg_adv_reg |= ADVERTISE_100HALF;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700991 }
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");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000996 mii_autoneg_adv_reg |= ADVERTISE_100FULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700997 }
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");
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001006 mii_1000t_ctrl_reg |= ADVERTISE_1000FULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001007 }
1008
Bruce Allane921eb12012-11-28 09:28:37 +00001009 /* Check for a software override of the flow control settings, and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001010 * setup the PHY advertisement registers accordingly. If
1011 * auto-negotiation is enabled, then software will have to set the
1012 * "PAUSE" bits to the correct value in the Auto-Negotiation
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001013 * Advertisement Register (MII_ADVERTISE) and re-start auto-
Auke Kokbc7f75f2007-09-17 12:30:59 -07001014 * negotiation.
1015 *
1016 * The possible values of the "fc" parameter are:
1017 * 0: Flow control is completely disabled
1018 * 1: Rx flow control is enabled (we can receive pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001019 * but not send pause frames).
Auke Kokbc7f75f2007-09-17 12:30:59 -07001020 * 2: Tx flow control is enabled (we can send pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001021 * but we do not support receiving pause frames).
Bruce Allanad680762008-03-28 09:15:03 -07001022 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001023 * other: No software override. The flow control configuration
Bruce Allan3d3a1672012-02-23 03:13:18 +00001024 * in the EEPROM is used.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001025 */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001026 switch (hw->fc.current_mode) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001027 case e1000_fc_none:
Bruce Allane921eb12012-11-28 09:28:37 +00001028 /* Flow control (Rx & Tx) is completely disabled by a
Auke Kokbc7f75f2007-09-17 12:30:59 -07001029 * software over-ride.
1030 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001031 mii_autoneg_adv_reg &=
1032 ~(ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001033 break;
1034 case e1000_fc_rx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001035 /* Rx Flow control is enabled, and Tx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001036 * disabled, by a software over-ride.
Bruce Allanad680762008-03-28 09:15:03 -07001037 *
1038 * Since there really isn't a way to advertise that we are
1039 * capable of Rx Pause ONLY, we will advertise that we
1040 * support both symmetric and asymmetric Rx PAUSE. Later
Auke Kokbc7f75f2007-09-17 12:30:59 -07001041 * (in e1000e_config_fc_after_link_up) we will disable the
1042 * hw's ability to send PAUSE frames.
1043 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001044 mii_autoneg_adv_reg |=
1045 (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001046 break;
1047 case e1000_fc_tx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001048 /* Tx Flow control is enabled, and Rx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001049 * disabled, by a software over-ride.
1050 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001051 mii_autoneg_adv_reg |= ADVERTISE_PAUSE_ASYM;
1052 mii_autoneg_adv_reg &= ~ADVERTISE_PAUSE_CAP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001053 break;
1054 case e1000_fc_full:
Bruce Allane921eb12012-11-28 09:28:37 +00001055 /* Flow control (both Rx and Tx) is enabled by a software
Auke Kokbc7f75f2007-09-17 12:30:59 -07001056 * over-ride.
1057 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001058 mii_autoneg_adv_reg |=
1059 (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001060 break;
1061 default:
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001062 e_dbg("Flow control param set incorrectly\n");
Bruce Allan7eb61d82012-02-08 02:55:03 +00001063 return -E1000_ERR_CONFIG;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001064 }
1065
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001066 ret_val = e1e_wphy(hw, MII_ADVERTISE, mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001067 if (ret_val)
1068 return ret_val;
1069
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001070 e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001071
Bruce Allanb1cdfea2010-12-11 05:53:47 +00001072 if (phy->autoneg_mask & ADVERTISE_1000_FULL)
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001073 ret_val = e1e_wphy(hw, MII_CTRL1000, mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001074
1075 return ret_val;
1076}
1077
1078/**
1079 * e1000_copper_link_autoneg - Setup/Enable autoneg for copper link
1080 * @hw: pointer to the HW structure
1081 *
1082 * Performs initial bounds checking on autoneg advertisement parameter, then
1083 * configure to advertise the full capability. Setup the PHY to autoneg
1084 * and restart the negotiation process between the link partner. If
Bruce Allanad680762008-03-28 09:15:03 -07001085 * autoneg_wait_to_complete, then wait for autoneg to complete before exiting.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001086 **/
1087static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
1088{
1089 struct e1000_phy_info *phy = &hw->phy;
1090 s32 ret_val;
1091 u16 phy_ctrl;
1092
Bruce Allane921eb12012-11-28 09:28:37 +00001093 /* Perform some bounds checking on the autoneg advertisement
Auke Kokbc7f75f2007-09-17 12:30:59 -07001094 * parameter.
1095 */
1096 phy->autoneg_advertised &= phy->autoneg_mask;
1097
Bruce Allane921eb12012-11-28 09:28:37 +00001098 /* If autoneg_advertised is zero, we assume it was not defaulted
Auke Kokbc7f75f2007-09-17 12:30:59 -07001099 * by the calling code so we set to advertise full capability.
1100 */
Bruce Allan04499ec2012-04-13 00:08:31 +00001101 if (!phy->autoneg_advertised)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001102 phy->autoneg_advertised = phy->autoneg_mask;
1103
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001104 e_dbg("Reconfiguring auto-neg advertisement params\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001105 ret_val = e1000_phy_setup_autoneg(hw);
1106 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001107 e_dbg("Error Setting up Auto-Negotiation\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001108 return ret_val;
1109 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001110 e_dbg("Restarting Auto-Neg\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001111
Bruce Allane921eb12012-11-28 09:28:37 +00001112 /* Restart auto-negotiation by setting the Auto Neg Enable bit and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001113 * the Auto Neg Restart bit in the PHY control register.
1114 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001115 ret_val = e1e_rphy(hw, MII_BMCR, &phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001116 if (ret_val)
1117 return ret_val;
1118
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001119 phy_ctrl |= (BMCR_ANENABLE | BMCR_ANRESTART);
1120 ret_val = e1e_wphy(hw, MII_BMCR, phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001121 if (ret_val)
1122 return ret_val;
1123
Bruce Allane921eb12012-11-28 09:28:37 +00001124 /* Does the user want to wait for Auto-Neg to complete here, or
Auke Kokbc7f75f2007-09-17 12:30:59 -07001125 * check at a later time (for example, callback routine).
1126 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001127 if (phy->autoneg_wait_to_complete) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001128 ret_val = e1000_wait_autoneg(hw);
1129 if (ret_val) {
Bruce Allan434f1392011-12-16 00:46:54 +00001130 e_dbg("Error while waiting for autoneg to complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001131 return ret_val;
1132 }
1133 }
1134
Bruce Allanf92518d2012-02-01 11:16:42 +00001135 hw->mac.get_link_status = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001136
1137 return ret_val;
1138}
1139
1140/**
1141 * e1000e_setup_copper_link - Configure copper link settings
1142 * @hw: pointer to the HW structure
1143 *
1144 * Calls the appropriate function to configure the link for auto-neg or forced
1145 * speed and duplex. Then we check for link, once link is established calls
1146 * to configure collision distance and flow control are called. If link is
1147 * not established, we return -E1000_ERR_PHY (-2).
1148 **/
1149s32 e1000e_setup_copper_link(struct e1000_hw *hw)
1150{
1151 s32 ret_val;
1152 bool link;
1153
1154 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +00001155 /* Setup autoneg and flow control advertisement and perform
Bruce Allanad680762008-03-28 09:15:03 -07001156 * autonegotiation.
1157 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001158 ret_val = e1000_copper_link_autoneg(hw);
1159 if (ret_val)
1160 return ret_val;
1161 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001162 /* PHY will be set to 10H, 10F, 100H or 100F
Bruce Allanad680762008-03-28 09:15:03 -07001163 * depending on user settings.
1164 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001165 e_dbg("Forcing Speed and Duplex\n");
Bruce Allanc2c66292013-01-05 08:06:08 +00001166 ret_val = hw->phy.ops.force_speed_duplex(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001167 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001168 e_dbg("Error Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001169 return ret_val;
1170 }
1171 }
1172
Bruce Allane921eb12012-11-28 09:28:37 +00001173 /* Check link status. Wait up to 100 microseconds for link to become
Auke Kokbc7f75f2007-09-17 12:30:59 -07001174 * valid.
1175 */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001176 ret_val = e1000e_phy_has_link_generic(hw, COPPER_LINK_UP_LIMIT, 10,
1177 &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001178 if (ret_val)
1179 return ret_val;
1180
1181 if (link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001182 e_dbg("Valid link established!!!\n");
Bruce Allan57cde762012-02-22 09:02:58 +00001183 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001184 ret_val = e1000e_config_fc_after_link_up(hw);
1185 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001186 e_dbg("Unable to establish link!!!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001187 }
1188
1189 return ret_val;
1190}
1191
1192/**
1193 * e1000e_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY
1194 * @hw: pointer to the HW structure
1195 *
1196 * Calls the PHY setup function to force speed and duplex. Clears the
1197 * auto-crossover to force MDI manually. Waits for link and returns
1198 * successful if link up is successful, else -E1000_ERR_PHY (-2).
1199 **/
1200s32 e1000e_phy_force_speed_duplex_igp(struct e1000_hw *hw)
1201{
1202 struct e1000_phy_info *phy = &hw->phy;
1203 s32 ret_val;
1204 u16 phy_data;
1205 bool link;
1206
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001207 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001208 if (ret_val)
1209 return ret_val;
1210
1211 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1212
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001213 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001214 if (ret_val)
1215 return ret_val;
1216
Bruce Allane921eb12012-11-28 09:28:37 +00001217 /* Clear Auto-Crossover to force MDI manually. IGP requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001218 * forced whenever speed and duplex are forced.
1219 */
1220 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1221 if (ret_val)
1222 return ret_val;
1223
1224 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1225 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1226
1227 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1228 if (ret_val)
1229 return ret_val;
1230
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001231 e_dbg("IGP PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001232
1233 udelay(1);
1234
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001235 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001236 e_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001237
Bruce Allan3d3a1672012-02-23 03:13:18 +00001238 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1239 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001240 if (ret_val)
1241 return ret_val;
1242
1243 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001244 e_dbg("Link taking longer than expected.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001245
1246 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001247 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1248 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001249 }
1250
1251 return ret_val;
1252}
1253
1254/**
1255 * e1000e_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY
1256 * @hw: pointer to the HW structure
1257 *
1258 * Calls the PHY setup function to force speed and duplex. Clears the
1259 * auto-crossover to force MDI manually. Resets the PHY to commit the
1260 * changes. If time expires while waiting for link up, we reset the DSP.
Bruce Allanad680762008-03-28 09:15:03 -07001261 * After reset, TX_CLK and CRS on Tx must be set. Return successful upon
Auke Kokbc7f75f2007-09-17 12:30:59 -07001262 * successful completion, else return corresponding error code.
1263 **/
1264s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw)
1265{
1266 struct e1000_phy_info *phy = &hw->phy;
1267 s32 ret_val;
1268 u16 phy_data;
1269 bool link;
1270
Bruce Allane921eb12012-11-28 09:28:37 +00001271 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001272 * forced whenever speed and duplex are forced.
1273 */
1274 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1275 if (ret_val)
1276 return ret_val;
1277
1278 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1279 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1280 if (ret_val)
1281 return ret_val;
1282
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001283 e_dbg("M88E1000 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001284
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001285 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001286 if (ret_val)
1287 return ret_val;
1288
1289 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1290
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001291 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001292 if (ret_val)
1293 return ret_val;
1294
Bruce Allan5aa49c82008-11-21 16:49:53 -08001295 /* Reset the phy to commit changes. */
Bruce Allan6b598e12013-01-23 06:50:05 +00001296 if (hw->phy.ops.commit) {
1297 ret_val = hw->phy.ops.commit(hw);
1298 if (ret_val)
1299 return ret_val;
1300 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001301
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001302 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001303 e_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001304
1305 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +00001306 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001307 if (ret_val)
1308 return ret_val;
1309
1310 if (!link) {
Bruce Allan0be84012009-12-02 17:03:18 +00001311 if (hw->phy.type != e1000_phy_m88) {
1312 e_dbg("Link taking longer than expected.\n");
1313 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001314 /* We didn't get link.
Bruce Allan0be84012009-12-02 17:03:18 +00001315 * Reset the DSP and cross our fingers.
1316 */
Bruce Allan482fed82011-01-06 14:29:49 +00001317 ret_val = e1e_wphy(hw, M88E1000_PHY_PAGE_SELECT,
1318 0x001d);
Bruce Allan0be84012009-12-02 17:03:18 +00001319 if (ret_val)
1320 return ret_val;
1321 ret_val = e1000e_phy_reset_dsp(hw);
1322 if (ret_val)
1323 return ret_val;
1324 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001325 }
1326
1327 /* Try once more */
1328 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +00001329 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001330 if (ret_val)
1331 return ret_val;
1332 }
1333
Bruce Allan0be84012009-12-02 17:03:18 +00001334 if (hw->phy.type != e1000_phy_m88)
1335 return 0;
1336
Auke Kokbc7f75f2007-09-17 12:30:59 -07001337 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1338 if (ret_val)
1339 return ret_val;
1340
Bruce Allane921eb12012-11-28 09:28:37 +00001341 /* Resetting the phy means we need to re-force TX_CLK in the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001342 * Extended PHY Specific Control Register to 25MHz clock from
1343 * the reset value of 2.5MHz.
1344 */
1345 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1346 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1347 if (ret_val)
1348 return ret_val;
1349
Bruce Allane921eb12012-11-28 09:28:37 +00001350 /* In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -07001351 * duplex.
1352 */
1353 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1354 if (ret_val)
1355 return ret_val;
1356
1357 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1358 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1359
1360 return ret_val;
1361}
1362
1363/**
Bruce Allan0be84012009-12-02 17:03:18 +00001364 * e1000_phy_force_speed_duplex_ife - Force PHY speed & duplex
1365 * @hw: pointer to the HW structure
1366 *
1367 * Forces the speed and duplex settings of the PHY.
1368 * This is a function pointer entry point only called by
1369 * PHY setup routines.
1370 **/
1371s32 e1000_phy_force_speed_duplex_ife(struct e1000_hw *hw)
1372{
1373 struct e1000_phy_info *phy = &hw->phy;
1374 s32 ret_val;
1375 u16 data;
1376 bool link;
1377
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001378 ret_val = e1e_rphy(hw, MII_BMCR, &data);
Bruce Allan0be84012009-12-02 17:03:18 +00001379 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001380 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001381
1382 e1000e_phy_force_speed_duplex_setup(hw, &data);
1383
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001384 ret_val = e1e_wphy(hw, MII_BMCR, data);
Bruce Allan0be84012009-12-02 17:03:18 +00001385 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001386 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001387
1388 /* Disable MDI-X support for 10/100 */
1389 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
1390 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001391 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001392
1393 data &= ~IFE_PMC_AUTO_MDIX;
1394 data &= ~IFE_PMC_FORCE_MDIX;
1395
1396 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data);
1397 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001398 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001399
1400 e_dbg("IFE PMC: %X\n", data);
1401
1402 udelay(1);
1403
1404 if (phy->autoneg_wait_to_complete) {
1405 e_dbg("Waiting for forced speed/duplex link on IFE phy.\n");
1406
Bruce Allan3d3a1672012-02-23 03:13:18 +00001407 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1408 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001409 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001410 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001411
1412 if (!link)
1413 e_dbg("Link taking longer than expected.\n");
1414
1415 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001416 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1417 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001418 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001419 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001420 }
1421
Bruce Allan5015e532012-02-08 02:55:56 +00001422 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00001423}
1424
1425/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001426 * e1000e_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex
1427 * @hw: pointer to the HW structure
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001428 * @phy_ctrl: pointer to current value of MII_BMCR
Auke Kokbc7f75f2007-09-17 12:30:59 -07001429 *
1430 * Forces speed and duplex on the PHY by doing the following: disable flow
1431 * control, force speed/duplex on the MAC, disable auto speed detection,
1432 * disable auto-negotiation, configure duplex, configure speed, configure
1433 * the collision distance, write configuration to CTRL register. The
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001434 * caller must write to the MII_BMCR register for these settings to
Auke Kokbc7f75f2007-09-17 12:30:59 -07001435 * take affect.
1436 **/
1437void e1000e_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl)
1438{
1439 struct e1000_mac_info *mac = &hw->mac;
1440 u32 ctrl;
1441
1442 /* Turn off flow control when forcing speed/duplex */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001443 hw->fc.current_mode = e1000_fc_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001444
1445 /* Force speed/duplex on the mac */
1446 ctrl = er32(CTRL);
1447 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1448 ctrl &= ~E1000_CTRL_SPD_SEL;
1449
1450 /* Disable Auto Speed Detection */
1451 ctrl &= ~E1000_CTRL_ASDE;
1452
1453 /* Disable autoneg on the phy */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001454 *phy_ctrl &= ~BMCR_ANENABLE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001455
1456 /* Forcing Full or Half Duplex? */
1457 if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
1458 ctrl &= ~E1000_CTRL_FD;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001459 *phy_ctrl &= ~BMCR_FULLDPLX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001460 e_dbg("Half Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001461 } else {
1462 ctrl |= E1000_CTRL_FD;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001463 *phy_ctrl |= BMCR_FULLDPLX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001464 e_dbg("Full Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001465 }
1466
1467 /* Forcing 10mb or 100mb? */
1468 if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
1469 ctrl |= E1000_CTRL_SPD_100;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001470 *phy_ctrl |= BMCR_SPEED100;
1471 *phy_ctrl &= ~BMCR_SPEED1000;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001472 e_dbg("Forcing 100mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001473 } else {
1474 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001475 *phy_ctrl &= ~(BMCR_SPEED1000 | BMCR_SPEED100);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001476 e_dbg("Forcing 10mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001477 }
1478
Bruce Allan57cde762012-02-22 09:02:58 +00001479 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001480
1481 ew32(CTRL, ctrl);
1482}
1483
1484/**
1485 * e1000e_set_d3_lplu_state - Sets low power link up state for D3
1486 * @hw: pointer to the HW structure
1487 * @active: boolean used to enable/disable lplu
1488 *
1489 * Success returns 0, Failure returns 1
1490 *
1491 * The low power link up (lplu) state is set to the power management level D3
1492 * and SmartSpeed is disabled when active is true, else clear lplu for D3
1493 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
1494 * is used during Dx states where the power conservation is most important.
1495 * During driver activity, SmartSpeed should be enabled so performance is
1496 * maintained.
1497 **/
1498s32 e1000e_set_d3_lplu_state(struct e1000_hw *hw, bool active)
1499{
1500 struct e1000_phy_info *phy = &hw->phy;
1501 s32 ret_val;
1502 u16 data;
1503
1504 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1505 if (ret_val)
1506 return ret_val;
1507
1508 if (!active) {
1509 data &= ~IGP02E1000_PM_D3_LPLU;
David Graham2d9498f2008-04-23 11:09:14 -07001510 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001511 if (ret_val)
1512 return ret_val;
Bruce Allane921eb12012-11-28 09:28:37 +00001513 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001514 * during Dx states where the power conservation is most
1515 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001516 * SmartSpeed, so performance is maintained.
1517 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001518 if (phy->smart_speed == e1000_smart_speed_on) {
1519 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001520 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001521 if (ret_val)
1522 return ret_val;
1523
1524 data |= IGP01E1000_PSCFR_SMART_SPEED;
1525 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001526 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001527 if (ret_val)
1528 return ret_val;
1529 } else if (phy->smart_speed == e1000_smart_speed_off) {
1530 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001531 &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001532 if (ret_val)
1533 return ret_val;
1534
1535 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1536 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001537 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001538 if (ret_val)
1539 return ret_val;
1540 }
1541 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1542 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1543 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1544 data |= IGP02E1000_PM_D3_LPLU;
1545 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
1546 if (ret_val)
1547 return ret_val;
1548
1549 /* When LPLU is enabled, we should disable SmartSpeed */
1550 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1551 if (ret_val)
1552 return ret_val;
1553
1554 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1555 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1556 }
1557
1558 return ret_val;
1559}
1560
1561/**
Auke Kok489815c2008-02-21 15:11:07 -08001562 * e1000e_check_downshift - Checks whether a downshift in speed occurred
Auke Kokbc7f75f2007-09-17 12:30:59 -07001563 * @hw: pointer to the HW structure
1564 *
1565 * Success returns 0, Failure returns 1
1566 *
1567 * A downshift is detected by querying the PHY link health.
1568 **/
1569s32 e1000e_check_downshift(struct e1000_hw *hw)
1570{
1571 struct e1000_phy_info *phy = &hw->phy;
1572 s32 ret_val;
1573 u16 phy_data, offset, mask;
1574
1575 switch (phy->type) {
1576 case e1000_phy_m88:
1577 case e1000_phy_gg82563:
Bruce Allan07f025e2009-12-01 15:53:48 +00001578 case e1000_phy_bm:
Bruce Allana4f58f52009-06-02 11:29:18 +00001579 case e1000_phy_82578:
Bruce Allane80bd1d2013-05-01 01:19:46 +00001580 offset = M88E1000_PHY_SPEC_STATUS;
1581 mask = M88E1000_PSSR_DOWNSHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001582 break;
1583 case e1000_phy_igp_2:
1584 case e1000_phy_igp_3:
Bruce Allane80bd1d2013-05-01 01:19:46 +00001585 offset = IGP01E1000_PHY_LINK_HEALTH;
1586 mask = IGP01E1000_PLHR_SS_DOWNGRADE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001587 break;
1588 default:
1589 /* speed downshift not supported */
Bruce Allan564ea9b2009-11-20 23:26:44 +00001590 phy->speed_downgraded = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001591 return 0;
1592 }
1593
1594 ret_val = e1e_rphy(hw, offset, &phy_data);
1595
1596 if (!ret_val)
Bruce Allan04499ec2012-04-13 00:08:31 +00001597 phy->speed_downgraded = !!(phy_data & mask);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001598
1599 return ret_val;
1600}
1601
1602/**
1603 * e1000_check_polarity_m88 - Checks the polarity.
1604 * @hw: pointer to the HW structure
1605 *
1606 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1607 *
1608 * Polarity is determined based on the PHY specific status register.
1609 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001610s32 e1000_check_polarity_m88(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001611{
1612 struct e1000_phy_info *phy = &hw->phy;
1613 s32 ret_val;
1614 u16 data;
1615
1616 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &data);
1617
1618 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00001619 phy->cable_polarity = ((data & M88E1000_PSSR_REV_POLARITY)
1620 ? e1000_rev_polarity_reversed
1621 : e1000_rev_polarity_normal);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001622
1623 return ret_val;
1624}
1625
1626/**
1627 * e1000_check_polarity_igp - Checks the polarity.
1628 * @hw: pointer to the HW structure
1629 *
1630 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1631 *
1632 * Polarity is determined based on the PHY port status register, and the
1633 * current speed (since there is no polarity at 100Mbps).
1634 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001635s32 e1000_check_polarity_igp(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001636{
1637 struct e1000_phy_info *phy = &hw->phy;
1638 s32 ret_val;
1639 u16 data, offset, mask;
1640
Bruce Allane921eb12012-11-28 09:28:37 +00001641 /* Polarity is determined based on the speed of
Bruce Allanad680762008-03-28 09:15:03 -07001642 * our connection.
1643 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001644 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1645 if (ret_val)
1646 return ret_val;
1647
1648 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1649 IGP01E1000_PSSR_SPEED_1000MBPS) {
Bruce Allane80bd1d2013-05-01 01:19:46 +00001650 offset = IGP01E1000_PHY_PCS_INIT_REG;
1651 mask = IGP01E1000_PHY_POLARITY_MASK;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001652 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001653 /* This really only applies to 10Mbps since
Auke Kokbc7f75f2007-09-17 12:30:59 -07001654 * there is no polarity for 100Mbps (always 0).
1655 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00001656 offset = IGP01E1000_PHY_PORT_STATUS;
1657 mask = IGP01E1000_PSSR_POLARITY_REVERSED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001658 }
1659
1660 ret_val = e1e_rphy(hw, offset, &data);
1661
1662 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00001663 phy->cable_polarity = ((data & mask)
1664 ? e1000_rev_polarity_reversed
1665 : e1000_rev_polarity_normal);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001666
1667 return ret_val;
1668}
1669
1670/**
Bruce Allan0be84012009-12-02 17:03:18 +00001671 * e1000_check_polarity_ife - Check cable polarity for IFE PHY
1672 * @hw: pointer to the HW structure
1673 *
1674 * Polarity is determined on the polarity reversal feature being enabled.
1675 **/
1676s32 e1000_check_polarity_ife(struct e1000_hw *hw)
1677{
1678 struct e1000_phy_info *phy = &hw->phy;
1679 s32 ret_val;
1680 u16 phy_data, offset, mask;
1681
Bruce Allane921eb12012-11-28 09:28:37 +00001682 /* Polarity is determined based on the reversal feature being enabled.
Bruce Allan0be84012009-12-02 17:03:18 +00001683 */
1684 if (phy->polarity_correction) {
1685 offset = IFE_PHY_EXTENDED_STATUS_CONTROL;
1686 mask = IFE_PESC_POLARITY_REVERSED;
1687 } else {
1688 offset = IFE_PHY_SPECIAL_CONTROL;
1689 mask = IFE_PSC_FORCE_POLARITY;
1690 }
1691
1692 ret_val = e1e_rphy(hw, offset, &phy_data);
1693
1694 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00001695 phy->cable_polarity = ((phy_data & mask)
1696 ? e1000_rev_polarity_reversed
1697 : e1000_rev_polarity_normal);
Bruce Allan0be84012009-12-02 17:03:18 +00001698
1699 return ret_val;
1700}
1701
1702/**
Bruce Allanad680762008-03-28 09:15:03 -07001703 * e1000_wait_autoneg - Wait for auto-neg completion
Auke Kokbc7f75f2007-09-17 12:30:59 -07001704 * @hw: pointer to the HW structure
1705 *
1706 * Waits for auto-negotiation to complete or for the auto-negotiation time
1707 * limit to expire, which ever happens first.
1708 **/
1709static s32 e1000_wait_autoneg(struct e1000_hw *hw)
1710{
1711 s32 ret_val = 0;
1712 u16 i, phy_status;
1713
1714 /* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */
1715 for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001716 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001717 if (ret_val)
1718 break;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001719 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001720 if (ret_val)
1721 break;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001722 if (phy_status & BMSR_ANEGCOMPLETE)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001723 break;
1724 msleep(100);
1725 }
1726
Bruce Allane921eb12012-11-28 09:28:37 +00001727 /* PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation
Auke Kokbc7f75f2007-09-17 12:30:59 -07001728 * has completed.
1729 */
1730 return ret_val;
1731}
1732
1733/**
1734 * e1000e_phy_has_link_generic - Polls PHY for link
1735 * @hw: pointer to the HW structure
1736 * @iterations: number of times to poll for link
1737 * @usec_interval: delay between polling attempts
1738 * @success: pointer to whether polling was successful or not
1739 *
1740 * Polls the PHY status register for link, 'iterations' number of times.
1741 **/
1742s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
Bruce Allan17e813e2013-02-20 04:06:01 +00001743 u32 usec_interval, bool *success)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001744{
1745 s32 ret_val = 0;
1746 u16 i, phy_status;
1747
Benjamin Poirierc4c40e52017-07-21 11:36:23 -07001748 *success = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001749 for (i = 0; i < iterations; i++) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001750 /* Some PHYs require the MII_BMSR register to be read
Auke Kokbc7f75f2007-09-17 12:30:59 -07001751 * twice due to the link bit being sticky. No harm doing
1752 * it across the board.
1753 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001754 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
David Ertman9e6c3b62013-12-14 07:18:18 +00001755 if (ret_val) {
Bruce Allane921eb12012-11-28 09:28:37 +00001756 /* If the first read fails, another entity may have
Bruce Allan906e8d92009-07-01 13:28:50 +00001757 * ownership of the resources, wait and try again to
1758 * see if they have relinquished the resources yet.
1759 */
David Ertman9e6c3b62013-12-14 07:18:18 +00001760 if (usec_interval >= 1000)
1761 msleep(usec_interval / 1000);
1762 else
1763 udelay(usec_interval);
1764 }
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001765 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001766 if (ret_val)
1767 break;
Benjamin Poirierc4c40e52017-07-21 11:36:23 -07001768 if (phy_status & BMSR_LSTATUS) {
1769 *success = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001770 break;
Benjamin Poirierc4c40e52017-07-21 11:36:23 -07001771 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001772 if (usec_interval >= 1000)
David Ertman9e6c3b62013-12-14 07:18:18 +00001773 msleep(usec_interval / 1000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001774 else
1775 udelay(usec_interval);
1776 }
1777
Auke Kokbc7f75f2007-09-17 12:30:59 -07001778 return ret_val;
1779}
1780
1781/**
1782 * e1000e_get_cable_length_m88 - Determine cable length for m88 PHY
1783 * @hw: pointer to the HW structure
1784 *
1785 * Reads the PHY specific status register to retrieve the cable length
1786 * information. The cable length is determined by averaging the minimum and
1787 * maximum values to get the "average" cable length. The m88 PHY has four
1788 * possible cable length values, which are:
1789 * Register Value Cable Length
1790 * 0 < 50 meters
1791 * 1 50 - 80 meters
1792 * 2 80 - 110 meters
1793 * 3 110 - 140 meters
1794 * 4 > 140 meters
1795 **/
1796s32 e1000e_get_cable_length_m88(struct e1000_hw *hw)
1797{
1798 struct e1000_phy_info *phy = &hw->phy;
1799 s32 ret_val;
1800 u16 phy_data, index;
1801
1802 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1803 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001804 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001805
Bruce Allanf0ff4392013-02-20 04:05:39 +00001806 index = ((phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
1807 M88E1000_PSSR_CABLE_LENGTH_SHIFT);
Bruce Allan5015e532012-02-08 02:55:56 +00001808
1809 if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1)
1810 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +00001811
Auke Kokbc7f75f2007-09-17 12:30:59 -07001812 phy->min_cable_length = e1000_m88_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +00001813 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001814
1815 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1816
Bruce Allan5015e532012-02-08 02:55:56 +00001817 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001818}
1819
1820/**
1821 * e1000e_get_cable_length_igp_2 - Determine cable length for igp2 PHY
1822 * @hw: pointer to the HW structure
1823 *
1824 * The automatic gain control (agc) normalizes the amplitude of the
1825 * received signal, adjusting for the attenuation produced by the
Auke Kok489815c2008-02-21 15:11:07 -08001826 * cable. By reading the AGC registers, which represent the
Bruce Allan5ff5b662009-12-01 15:51:11 +00001827 * combination of coarse and fine gain value, the value can be put
Auke Kokbc7f75f2007-09-17 12:30:59 -07001828 * into a lookup table to obtain the approximate cable length
1829 * for each channel.
1830 **/
1831s32 e1000e_get_cable_length_igp_2(struct e1000_hw *hw)
1832{
1833 struct e1000_phy_info *phy = &hw->phy;
1834 s32 ret_val;
1835 u16 phy_data, i, agc_value = 0;
1836 u16 cur_agc_index, max_agc_index = 0;
1837 u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1;
Jeff Kirsher66744502010-12-01 19:59:50 +00001838 static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
Bruce Allanf0ff4392013-02-20 04:05:39 +00001839 IGP02E1000_PHY_AGC_A,
1840 IGP02E1000_PHY_AGC_B,
1841 IGP02E1000_PHY_AGC_C,
1842 IGP02E1000_PHY_AGC_D
Jeff Kirsher66744502010-12-01 19:59:50 +00001843 };
Auke Kokbc7f75f2007-09-17 12:30:59 -07001844
1845 /* Read the AGC registers for all channels */
1846 for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
1847 ret_val = e1e_rphy(hw, agc_reg_array[i], &phy_data);
1848 if (ret_val)
1849 return ret_val;
1850
Bruce Allane921eb12012-11-28 09:28:37 +00001851 /* Getting bits 15:9, which represent the combination of
Bruce Allan5ff5b662009-12-01 15:51:11 +00001852 * coarse and fine gain values. The result is a number
Auke Kokbc7f75f2007-09-17 12:30:59 -07001853 * that can be put into the lookup table to obtain the
Bruce Allanad680762008-03-28 09:15:03 -07001854 * approximate cable length.
1855 */
Bruce Allanf0ff4392013-02-20 04:05:39 +00001856 cur_agc_index = ((phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
1857 IGP02E1000_AGC_LENGTH_MASK);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001858
1859 /* Array index bound check. */
1860 if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) ||
1861 (cur_agc_index == 0))
1862 return -E1000_ERR_PHY;
1863
1864 /* Remove min & max AGC values from calculation. */
1865 if (e1000_igp_2_cable_length_table[min_agc_index] >
1866 e1000_igp_2_cable_length_table[cur_agc_index])
1867 min_agc_index = cur_agc_index;
1868 if (e1000_igp_2_cable_length_table[max_agc_index] <
1869 e1000_igp_2_cable_length_table[cur_agc_index])
1870 max_agc_index = cur_agc_index;
1871
1872 agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
1873 }
1874
1875 agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
1876 e1000_igp_2_cable_length_table[max_agc_index]);
1877 agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);
1878
1879 /* Calculate cable length with the error range of +/- 10 meters. */
Bruce Allanf0ff4392013-02-20 04:05:39 +00001880 phy->min_cable_length = (((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
1881 (agc_value - IGP02E1000_AGC_RANGE) : 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001882 phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;
1883
1884 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1885
Bruce Allan82607252012-02-08 02:55:09 +00001886 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001887}
1888
1889/**
1890 * e1000e_get_phy_info_m88 - Retrieve PHY information
1891 * @hw: pointer to the HW structure
1892 *
1893 * Valid for only copper links. Read the PHY status register (sticky read)
1894 * to verify that link is up. Read the PHY special control register to
1895 * determine the polarity and 10base-T extended distance. Read the PHY
1896 * special status register to determine MDI/MDIx and current speed. If
1897 * speed is 1000, then determine cable length, local and remote receiver.
1898 **/
1899s32 e1000e_get_phy_info_m88(struct e1000_hw *hw)
1900{
1901 struct e1000_phy_info *phy = &hw->phy;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001902 s32 ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001903 u16 phy_data;
1904 bool link;
1905
Bruce Allan0be84012009-12-02 17:03:18 +00001906 if (phy->media_type != e1000_media_type_copper) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001907 e_dbg("Phy info is only valid for copper media\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001908 return -E1000_ERR_CONFIG;
1909 }
1910
1911 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1912 if (ret_val)
1913 return ret_val;
1914
1915 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001916 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001917 return -E1000_ERR_CONFIG;
1918 }
1919
1920 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1921 if (ret_val)
1922 return ret_val;
1923
Bruce Allan04499ec2012-04-13 00:08:31 +00001924 phy->polarity_correction = !!(phy_data &
1925 M88E1000_PSCR_POLARITY_REVERSAL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001926
1927 ret_val = e1000_check_polarity_m88(hw);
1928 if (ret_val)
1929 return ret_val;
1930
1931 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1932 if (ret_val)
1933 return ret_val;
1934
Bruce Allan04499ec2012-04-13 00:08:31 +00001935 phy->is_mdix = !!(phy_data & M88E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001936
1937 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
Bruce Allandde3a572013-01-05 08:06:24 +00001938 ret_val = hw->phy.ops.get_cable_length(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001939 if (ret_val)
1940 return ret_val;
1941
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001942 ret_val = e1e_rphy(hw, MII_STAT1000, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001943 if (ret_val)
1944 return ret_val;
1945
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001946 phy->local_rx = (phy_data & LPA_1000LOCALRXOK)
1947 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001948
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001949 phy->remote_rx = (phy_data & LPA_1000REMRXOK)
1950 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001951 } else {
1952 /* Set values to "undefined" */
1953 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1954 phy->local_rx = e1000_1000t_rx_status_undefined;
1955 phy->remote_rx = e1000_1000t_rx_status_undefined;
1956 }
1957
1958 return ret_val;
1959}
1960
1961/**
1962 * e1000e_get_phy_info_igp - Retrieve igp PHY information
1963 * @hw: pointer to the HW structure
1964 *
1965 * Read PHY status to determine if link is up. If link is up, then
1966 * set/determine 10base-T extended distance and polarity correction. Read
1967 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
1968 * determine on the cable length, local and remote receiver.
1969 **/
1970s32 e1000e_get_phy_info_igp(struct e1000_hw *hw)
1971{
1972 struct e1000_phy_info *phy = &hw->phy;
1973 s32 ret_val;
1974 u16 data;
1975 bool link;
1976
1977 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1978 if (ret_val)
1979 return ret_val;
1980
1981 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001982 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001983 return -E1000_ERR_CONFIG;
1984 }
1985
Bruce Allan564ea9b2009-11-20 23:26:44 +00001986 phy->polarity_correction = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001987
1988 ret_val = e1000_check_polarity_igp(hw);
1989 if (ret_val)
1990 return ret_val;
1991
1992 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1993 if (ret_val)
1994 return ret_val;
1995
Bruce Allan04499ec2012-04-13 00:08:31 +00001996 phy->is_mdix = !!(data & IGP01E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001997
1998 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1999 IGP01E1000_PSSR_SPEED_1000MBPS) {
Bruce Allandde3a572013-01-05 08:06:24 +00002000 ret_val = phy->ops.get_cable_length(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002001 if (ret_val)
2002 return ret_val;
2003
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002004 ret_val = e1e_rphy(hw, MII_STAT1000, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002005 if (ret_val)
2006 return ret_val;
2007
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002008 phy->local_rx = (data & LPA_1000LOCALRXOK)
2009 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002010
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002011 phy->remote_rx = (data & LPA_1000REMRXOK)
2012 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002013 } else {
2014 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2015 phy->local_rx = e1000_1000t_rx_status_undefined;
2016 phy->remote_rx = e1000_1000t_rx_status_undefined;
2017 }
2018
2019 return ret_val;
2020}
2021
2022/**
Bruce Allan0be84012009-12-02 17:03:18 +00002023 * e1000_get_phy_info_ife - Retrieves various IFE PHY states
2024 * @hw: pointer to the HW structure
2025 *
2026 * Populates "phy" structure with various feature states.
2027 **/
2028s32 e1000_get_phy_info_ife(struct e1000_hw *hw)
2029{
2030 struct e1000_phy_info *phy = &hw->phy;
2031 s32 ret_val;
2032 u16 data;
2033 bool link;
2034
2035 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2036 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002037 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002038
2039 if (!link) {
2040 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002041 return -E1000_ERR_CONFIG;
Bruce Allan0be84012009-12-02 17:03:18 +00002042 }
2043
2044 ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data);
2045 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002046 return ret_val;
Bruce Allan04499ec2012-04-13 00:08:31 +00002047 phy->polarity_correction = !(data & IFE_PSC_AUTO_POLARITY_DISABLE);
Bruce Allan0be84012009-12-02 17:03:18 +00002048
2049 if (phy->polarity_correction) {
2050 ret_val = e1000_check_polarity_ife(hw);
2051 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002052 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002053 } else {
2054 /* Polarity is forced */
Bruce Allanf0ff4392013-02-20 04:05:39 +00002055 phy->cable_polarity = ((data & IFE_PSC_FORCE_POLARITY)
2056 ? e1000_rev_polarity_reversed
2057 : e1000_rev_polarity_normal);
Bruce Allan0be84012009-12-02 17:03:18 +00002058 }
2059
2060 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
2061 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002062 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002063
Bruce Allan04499ec2012-04-13 00:08:31 +00002064 phy->is_mdix = !!(data & IFE_PMC_MDIX_STATUS);
Bruce Allan0be84012009-12-02 17:03:18 +00002065
2066 /* The following parameters are undefined for 10/100 operation. */
2067 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2068 phy->local_rx = e1000_1000t_rx_status_undefined;
2069 phy->remote_rx = e1000_1000t_rx_status_undefined;
2070
Bruce Allan5015e532012-02-08 02:55:56 +00002071 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00002072}
2073
2074/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002075 * e1000e_phy_sw_reset - PHY software reset
2076 * @hw: pointer to the HW structure
2077 *
2078 * Does a software reset of the PHY by reading the PHY control register and
2079 * setting/write the control register reset bit to the PHY.
2080 **/
2081s32 e1000e_phy_sw_reset(struct e1000_hw *hw)
2082{
2083 s32 ret_val;
2084 u16 phy_ctrl;
2085
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002086 ret_val = e1e_rphy(hw, MII_BMCR, &phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002087 if (ret_val)
2088 return ret_val;
2089
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002090 phy_ctrl |= BMCR_RESET;
2091 ret_val = e1e_wphy(hw, MII_BMCR, phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002092 if (ret_val)
2093 return ret_val;
2094
2095 udelay(1);
2096
2097 return ret_val;
2098}
2099
2100/**
2101 * e1000e_phy_hw_reset_generic - PHY hardware reset
2102 * @hw: pointer to the HW structure
2103 *
2104 * Verify the reset block is not blocking us from resetting. Acquire
2105 * semaphore (if necessary) and read/set/write the device control reset
2106 * bit in the PHY. Wait the appropriate delay time for the device to
Auke Kok489815c2008-02-21 15:11:07 -08002107 * reset and release the semaphore (if necessary).
Auke Kokbc7f75f2007-09-17 12:30:59 -07002108 **/
2109s32 e1000e_phy_hw_reset_generic(struct e1000_hw *hw)
2110{
2111 struct e1000_phy_info *phy = &hw->phy;
2112 s32 ret_val;
2113 u32 ctrl;
2114
Bruce Allan470a5422012-05-26 06:08:48 +00002115 if (phy->ops.check_reset_block) {
2116 ret_val = phy->ops.check_reset_block(hw);
2117 if (ret_val)
2118 return 0;
2119 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002120
Bruce Allan94d81862009-11-20 23:25:26 +00002121 ret_val = phy->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002122 if (ret_val)
2123 return ret_val;
2124
2125 ctrl = er32(CTRL);
2126 ew32(CTRL, ctrl | E1000_CTRL_PHY_RST);
2127 e1e_flush();
2128
2129 udelay(phy->reset_delay_us);
2130
2131 ew32(CTRL, ctrl);
2132 e1e_flush();
2133
Bruce Allance43a212013-02-20 04:06:32 +00002134 usleep_range(150, 300);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002135
Bruce Allan94d81862009-11-20 23:25:26 +00002136 phy->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002137
Bruce Allan84c1bef2013-01-05 08:06:19 +00002138 return phy->ops.get_cfg_done(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002139}
2140
2141/**
Bruce Allanfe908492013-01-05 08:06:14 +00002142 * e1000e_get_cfg_done_generic - Generic configuration done
Auke Kokbc7f75f2007-09-17 12:30:59 -07002143 * @hw: pointer to the HW structure
2144 *
2145 * Generic function to wait 10 milli-seconds for configuration to complete
2146 * and return success.
2147 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00002148s32 e1000e_get_cfg_done_generic(struct e1000_hw __always_unused *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002149{
2150 mdelay(10);
Bruce Allan3d3a1672012-02-23 03:13:18 +00002151
Auke Kokbc7f75f2007-09-17 12:30:59 -07002152 return 0;
2153}
2154
Bruce Allanf4187b52008-08-26 18:36:50 -07002155/**
2156 * e1000e_phy_init_script_igp3 - Inits the IGP3 PHY
2157 * @hw: pointer to the HW structure
2158 *
2159 * Initializes a Intel Gigabit PHY3 when an EEPROM is not present.
2160 **/
2161s32 e1000e_phy_init_script_igp3(struct e1000_hw *hw)
2162{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002163 e_dbg("Running IGP 3 PHY init script\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07002164
2165 /* PHY init IGP 3 */
2166 /* Enable rise/fall, 10-mode work in class-A */
2167 e1e_wphy(hw, 0x2F5B, 0x9018);
2168 /* Remove all caps from Replica path filter */
2169 e1e_wphy(hw, 0x2F52, 0x0000);
2170 /* Bias trimming for ADC, AFE and Driver (Default) */
2171 e1e_wphy(hw, 0x2FB1, 0x8B24);
2172 /* Increase Hybrid poly bias */
2173 e1e_wphy(hw, 0x2FB2, 0xF8F0);
2174 /* Add 4% to Tx amplitude in Gig mode */
2175 e1e_wphy(hw, 0x2010, 0x10B0);
2176 /* Disable trimming (TTT) */
2177 e1e_wphy(hw, 0x2011, 0x0000);
2178 /* Poly DC correction to 94.6% + 2% for all channels */
2179 e1e_wphy(hw, 0x20DD, 0x249A);
2180 /* ABS DC correction to 95.9% */
2181 e1e_wphy(hw, 0x20DE, 0x00D3);
2182 /* BG temp curve trim */
2183 e1e_wphy(hw, 0x28B4, 0x04CE);
2184 /* Increasing ADC OPAMP stage 1 currents to max */
2185 e1e_wphy(hw, 0x2F70, 0x29E4);
2186 /* Force 1000 ( required for enabling PHY regs configuration) */
2187 e1e_wphy(hw, 0x0000, 0x0140);
2188 /* Set upd_freq to 6 */
2189 e1e_wphy(hw, 0x1F30, 0x1606);
2190 /* Disable NPDFE */
2191 e1e_wphy(hw, 0x1F31, 0xB814);
2192 /* Disable adaptive fixed FFE (Default) */
2193 e1e_wphy(hw, 0x1F35, 0x002A);
2194 /* Enable FFE hysteresis */
2195 e1e_wphy(hw, 0x1F3E, 0x0067);
2196 /* Fixed FFE for short cable lengths */
2197 e1e_wphy(hw, 0x1F54, 0x0065);
2198 /* Fixed FFE for medium cable lengths */
2199 e1e_wphy(hw, 0x1F55, 0x002A);
2200 /* Fixed FFE for long cable lengths */
2201 e1e_wphy(hw, 0x1F56, 0x002A);
2202 /* Enable Adaptive Clip Threshold */
2203 e1e_wphy(hw, 0x1F72, 0x3FB0);
2204 /* AHT reset limit to 1 */
2205 e1e_wphy(hw, 0x1F76, 0xC0FF);
2206 /* Set AHT master delay to 127 msec */
2207 e1e_wphy(hw, 0x1F77, 0x1DEC);
2208 /* Set scan bits for AHT */
2209 e1e_wphy(hw, 0x1F78, 0xF9EF);
2210 /* Set AHT Preset bits */
2211 e1e_wphy(hw, 0x1F79, 0x0210);
2212 /* Change integ_factor of channel A to 3 */
2213 e1e_wphy(hw, 0x1895, 0x0003);
2214 /* Change prop_factor of channels BCD to 8 */
2215 e1e_wphy(hw, 0x1796, 0x0008);
2216 /* Change cg_icount + enable integbp for channels BCD */
2217 e1e_wphy(hw, 0x1798, 0xD008);
Bruce Allane921eb12012-11-28 09:28:37 +00002218 /* Change cg_icount + enable integbp + change prop_factor_master
Bruce Allanf4187b52008-08-26 18:36:50 -07002219 * to 8 for channel A
2220 */
2221 e1e_wphy(hw, 0x1898, 0xD918);
2222 /* Disable AHT in Slave mode on channel A */
2223 e1e_wphy(hw, 0x187A, 0x0800);
Bruce Allane921eb12012-11-28 09:28:37 +00002224 /* Enable LPLU and disable AN to 1000 in non-D0a states,
Bruce Allanf4187b52008-08-26 18:36:50 -07002225 * Enable SPD+B2B
2226 */
2227 e1e_wphy(hw, 0x0019, 0x008D);
2228 /* Enable restart AN on an1000_dis change */
2229 e1e_wphy(hw, 0x001B, 0x2080);
2230 /* Enable wh_fifo read clock in 10/100 modes */
2231 e1e_wphy(hw, 0x0014, 0x0045);
2232 /* Restart AN, Speed selection is 1000 */
2233 e1e_wphy(hw, 0x0000, 0x1340);
2234
2235 return 0;
2236}
2237
Auke Kokbc7f75f2007-09-17 12:30:59 -07002238/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002239 * e1000e_get_phy_type_from_id - Get PHY type from id
2240 * @phy_id: phy_id read from the phy
2241 *
2242 * Returns the phy type from the id.
2243 **/
2244enum e1000_phy_type e1000e_get_phy_type_from_id(u32 phy_id)
2245{
2246 enum e1000_phy_type phy_type = e1000_phy_unknown;
2247
2248 switch (phy_id) {
2249 case M88E1000_I_PHY_ID:
2250 case M88E1000_E_PHY_ID:
2251 case M88E1111_I_PHY_ID:
2252 case M88E1011_I_PHY_ID:
2253 phy_type = e1000_phy_m88;
2254 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002255 case IGP01E1000_I_PHY_ID: /* IGP 1 & 2 share this */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002256 phy_type = e1000_phy_igp_2;
2257 break;
2258 case GG82563_E_PHY_ID:
2259 phy_type = e1000_phy_gg82563;
2260 break;
2261 case IGP03E1000_E_PHY_ID:
2262 phy_type = e1000_phy_igp_3;
2263 break;
2264 case IFE_E_PHY_ID:
2265 case IFE_PLUS_E_PHY_ID:
2266 case IFE_C_E_PHY_ID:
2267 phy_type = e1000_phy_ife;
2268 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002269 case BME1000_E_PHY_ID:
2270 case BME1000_E_PHY_ID_R2:
2271 phy_type = e1000_phy_bm;
2272 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002273 case I82578_E_PHY_ID:
2274 phy_type = e1000_phy_82578;
2275 break;
2276 case I82577_E_PHY_ID:
2277 phy_type = e1000_phy_82577;
2278 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002279 case I82579_E_PHY_ID:
2280 phy_type = e1000_phy_82579;
2281 break;
Bruce Allan2fbe4522012-04-19 03:21:47 +00002282 case I217_E_PHY_ID:
2283 phy_type = e1000_phy_i217;
2284 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002285 default:
2286 phy_type = e1000_phy_unknown;
2287 break;
2288 }
2289 return phy_type;
2290}
2291
2292/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002293 * e1000e_determine_phy_address - Determines PHY address.
2294 * @hw: pointer to the HW structure
2295 *
2296 * This uses a trial and error method to loop through possible PHY
2297 * addresses. It tests each by reading the PHY ID registers and
2298 * checking for a match.
2299 **/
2300s32 e1000e_determine_phy_address(struct e1000_hw *hw)
2301{
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002302 u32 phy_addr = 0;
2303 u32 i;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002304 enum e1000_phy_type phy_type = e1000_phy_unknown;
2305
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002306 hw->phy.id = phy_type;
2307
2308 for (phy_addr = 0; phy_addr < E1000_MAX_PHY_ADDR; phy_addr++) {
2309 hw->phy.addr = phy_addr;
2310 i = 0;
2311
2312 do {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002313 e1000e_get_phy_id(hw);
2314 phy_type = e1000e_get_phy_type_from_id(hw->phy.id);
2315
Bruce Allane921eb12012-11-28 09:28:37 +00002316 /* If phy_type is valid, break - we found our
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002317 * PHY address
2318 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00002319 if (phy_type != e1000_phy_unknown)
Bruce Allan5015e532012-02-08 02:55:56 +00002320 return 0;
2321
Bruce Allan1bba4382011-03-19 00:27:20 +00002322 usleep_range(1000, 2000);
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002323 i++;
2324 } while (i < 10);
2325 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002326
Bruce Allan5015e532012-02-08 02:55:56 +00002327 return -E1000_ERR_PHY_TYPE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002328}
2329
2330/**
2331 * e1000_get_phy_addr_for_bm_page - Retrieve PHY page address
2332 * @page: page to access
2333 *
2334 * Returns the phy address for the page requested.
2335 **/
2336static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg)
2337{
2338 u32 phy_addr = 2;
2339
2340 if ((page >= 768) || (page == 0 && reg == 25) || (reg == 31))
2341 phy_addr = 1;
2342
2343 return phy_addr;
2344}
2345
2346/**
2347 * e1000e_write_phy_reg_bm - Write BM PHY register
2348 * @hw: pointer to the HW structure
2349 * @offset: register offset to write to
2350 * @data: data to write at register offset
2351 *
2352 * Acquires semaphore, if necessary, then writes the data to PHY register
2353 * at the offset. Release any acquired semaphores before exiting.
2354 **/
2355s32 e1000e_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data)
2356{
2357 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002358 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002359
Bruce Allan94d81862009-11-20 23:25:26 +00002360 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002361 if (ret_val)
2362 return ret_val;
2363
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002364 /* Page 800 works differently than the rest so it has its own func */
2365 if (page == BM_WUC_PAGE) {
2366 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002367 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002368 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002369 }
2370
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002371 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2372
2373 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002374 u32 page_shift, page_select;
2375
Bruce Allane921eb12012-11-28 09:28:37 +00002376 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002377 * phy address 2 and 3. Page select is shifted only for
2378 * phy address 1.
2379 */
2380 if (hw->phy.addr == 1) {
2381 page_shift = IGP_PAGE_SHIFT;
2382 page_select = IGP01E1000_PHY_PAGE_SELECT;
2383 } else {
2384 page_shift = 0;
2385 page_select = BM_PHY_PAGE_SELECT;
2386 }
2387
2388 /* Page is shifted left, PHY expects (page x 32) */
2389 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002390 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002391 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002392 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002393 }
2394
2395 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002396 data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002397
Bruce Allan75ce1532012-02-08 02:54:48 +00002398release:
Bruce Allan94d81862009-11-20 23:25:26 +00002399 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002400 return ret_val;
2401}
2402
2403/**
2404 * e1000e_read_phy_reg_bm - Read BM PHY register
2405 * @hw: pointer to the HW structure
2406 * @offset: register offset to be read
2407 * @data: pointer to the read data
2408 *
2409 * Acquires semaphore, if necessary, then reads the PHY register at offset
2410 * and storing the retrieved information in data. Release any acquired
2411 * semaphores before exiting.
2412 **/
2413s32 e1000e_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data)
2414{
2415 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002416 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002417
Bruce Allan94d81862009-11-20 23:25:26 +00002418 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002419 if (ret_val)
2420 return ret_val;
2421
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002422 /* Page 800 works differently than the rest so it has its own func */
2423 if (page == BM_WUC_PAGE) {
2424 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002425 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002426 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002427 }
2428
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002429 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2430
2431 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002432 u32 page_shift, page_select;
2433
Bruce Allane921eb12012-11-28 09:28:37 +00002434 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002435 * phy address 2 and 3. Page select is shifted only for
2436 * phy address 1.
2437 */
2438 if (hw->phy.addr == 1) {
2439 page_shift = IGP_PAGE_SHIFT;
2440 page_select = IGP01E1000_PHY_PAGE_SELECT;
2441 } else {
2442 page_shift = 0;
2443 page_select = BM_PHY_PAGE_SELECT;
2444 }
2445
2446 /* Page is shifted left, PHY expects (page x 32) */
2447 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002448 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002449 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002450 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002451 }
2452
2453 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002454 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002455release:
Bruce Allan94d81862009-11-20 23:25:26 +00002456 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002457 return ret_val;
2458}
2459
2460/**
Bruce Allan4662e822008-08-26 18:37:06 -07002461 * e1000e_read_phy_reg_bm2 - Read BM PHY register
2462 * @hw: pointer to the HW structure
2463 * @offset: register offset to be read
2464 * @data: pointer to the read data
2465 *
2466 * Acquires semaphore, if necessary, then reads the PHY register at offset
2467 * and storing the retrieved information in data. Release any acquired
2468 * semaphores before exiting.
2469 **/
2470s32 e1000e_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data)
2471{
2472 s32 ret_val;
2473 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2474
Bruce Allan94d81862009-11-20 23:25:26 +00002475 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002476 if (ret_val)
2477 return ret_val;
2478
Bruce Allan4662e822008-08-26 18:37:06 -07002479 /* Page 800 works differently than the rest so it has its own func */
2480 if (page == BM_WUC_PAGE) {
2481 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002482 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002483 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002484 }
2485
Bruce Allan4662e822008-08-26 18:37:06 -07002486 hw->phy.addr = 1;
2487
2488 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan4662e822008-08-26 18:37:06 -07002489 /* Page is shifted left, PHY expects (page x 32) */
2490 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2491 page);
2492
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002493 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002494 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002495 }
2496
2497 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2498 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002499release:
Bruce Allan94d81862009-11-20 23:25:26 +00002500 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002501 return ret_val;
2502}
2503
2504/**
2505 * e1000e_write_phy_reg_bm2 - Write BM PHY register
2506 * @hw: pointer to the HW structure
2507 * @offset: register offset to write to
2508 * @data: data to write at register offset
2509 *
2510 * Acquires semaphore, if necessary, then writes the data to PHY register
2511 * at the offset. Release any acquired semaphores before exiting.
2512 **/
2513s32 e1000e_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data)
2514{
2515 s32 ret_val;
2516 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2517
Bruce Allan94d81862009-11-20 23:25:26 +00002518 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002519 if (ret_val)
2520 return ret_val;
2521
Bruce Allan4662e822008-08-26 18:37:06 -07002522 /* Page 800 works differently than the rest so it has its own func */
2523 if (page == BM_WUC_PAGE) {
2524 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002525 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002526 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002527 }
2528
Bruce Allan4662e822008-08-26 18:37:06 -07002529 hw->phy.addr = 1;
2530
2531 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2532 /* Page is shifted left, PHY expects (page x 32) */
2533 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2534 page);
2535
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002536 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002537 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002538 }
2539
2540 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2541 data);
2542
Bruce Allan75ce1532012-02-08 02:54:48 +00002543release:
Bruce Allan94d81862009-11-20 23:25:26 +00002544 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002545 return ret_val;
2546}
2547
2548/**
Bruce Allan2b6b1682011-05-13 07:20:09 +00002549 * e1000_enable_phy_wakeup_reg_access_bm - enable access to BM wakeup registers
2550 * @hw: pointer to the HW structure
2551 * @phy_reg: pointer to store original contents of BM_WUC_ENABLE_REG
2552 *
2553 * Assumes semaphore already acquired and phy_reg points to a valid memory
2554 * address to store contents of the BM_WUC_ENABLE_REG register.
2555 **/
2556s32 e1000_enable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2557{
2558 s32 ret_val;
2559 u16 temp;
2560
2561 /* All page select, port ctrl and wakeup registers use phy address 1 */
2562 hw->phy.addr = 1;
2563
2564 /* Select Port Control Registers page */
2565 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2566 if (ret_val) {
2567 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002568 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002569 }
2570
2571 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
2572 if (ret_val) {
2573 e_dbg("Could not read PHY register %d.%d\n",
2574 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002575 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002576 }
2577
Bruce Allane921eb12012-11-28 09:28:37 +00002578 /* Enable both PHY wakeup mode and Wakeup register page writes.
Bruce Allan2b6b1682011-05-13 07:20:09 +00002579 * Prevent a power state change by disabling ME and Host PHY wakeup.
2580 */
2581 temp = *phy_reg;
2582 temp |= BM_WUC_ENABLE_BIT;
2583 temp &= ~(BM_WUC_ME_WU_BIT | BM_WUC_HOST_WU_BIT);
2584
2585 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, temp);
2586 if (ret_val) {
2587 e_dbg("Could not write PHY register %d.%d\n",
2588 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002589 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002590 }
2591
Bruce Allane921eb12012-11-28 09:28:37 +00002592 /* Select Host Wakeup Registers page - caller now able to write
Bruce Allan5015e532012-02-08 02:55:56 +00002593 * registers on the Wakeup registers page
2594 */
2595 return e1000_set_page_igp(hw, (BM_WUC_PAGE << IGP_PAGE_SHIFT));
Bruce Allan2b6b1682011-05-13 07:20:09 +00002596}
2597
2598/**
2599 * e1000_disable_phy_wakeup_reg_access_bm - disable access to BM wakeup regs
2600 * @hw: pointer to the HW structure
2601 * @phy_reg: pointer to original contents of BM_WUC_ENABLE_REG
2602 *
2603 * Restore BM_WUC_ENABLE_REG to its original value.
2604 *
2605 * Assumes semaphore already acquired and *phy_reg is the contents of the
2606 * BM_WUC_ENABLE_REG before register(s) on BM_WUC_PAGE were accessed by
2607 * caller.
2608 **/
2609s32 e1000_disable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2610{
Bruce Allan70806a72013-01-05 05:08:37 +00002611 s32 ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002612
2613 /* Select Port Control Registers page */
2614 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2615 if (ret_val) {
2616 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002617 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002618 }
2619
2620 /* Restore 769.17 to its original value */
2621 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, *phy_reg);
2622 if (ret_val)
2623 e_dbg("Could not restore PHY register %d.%d\n",
2624 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002625
Bruce Allan2b6b1682011-05-13 07:20:09 +00002626 return ret_val;
2627}
2628
2629/**
2630 * e1000_access_phy_wakeup_reg_bm - Read/write BM PHY wakeup register
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002631 * @hw: pointer to the HW structure
2632 * @offset: register offset to be read or written
2633 * @data: pointer to the data to read or write
2634 * @read: determines if operation is read or write
Bruce Allan2b6b1682011-05-13 07:20:09 +00002635 * @page_set: BM_WUC_PAGE already set and access enabled
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002636 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002637 * Read the PHY register at offset and store the retrieved information in
2638 * data, or write data to PHY register at offset. Note the procedure to
2639 * access the PHY wakeup registers is different than reading the other PHY
2640 * registers. It works as such:
2641 * 1) Set 769.17.2 (page 769, register 17, bit 2) = 1
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002642 * 2) Set page to 800 for host (801 if we were manageability)
2643 * 3) Write the address using the address opcode (0x11)
2644 * 4) Read or write the data using the data opcode (0x12)
Bruce Allan2b6b1682011-05-13 07:20:09 +00002645 * 5) Restore 769.17.2 to its original value
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002646 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002647 * Steps 1 and 2 are done by e1000_enable_phy_wakeup_reg_access_bm() and
2648 * step 5 is done by e1000_disable_phy_wakeup_reg_access_bm().
2649 *
2650 * Assumes semaphore is already acquired. When page_set==true, assumes
2651 * the PHY page is set to BM_WUC_PAGE (i.e. a function in the call stack
2652 * is responsible for calls to e1000_[enable|disable]_phy_wakeup_reg_bm()).
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002653 **/
2654static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002655 u16 *data, bool read, bool page_set)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002656{
2657 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002658 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002659 u16 page = BM_PHY_REG_PAGE(offset);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002660 u16 phy_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002661
Bruce Allan2b6b1682011-05-13 07:20:09 +00002662 /* Gig must be disabled for MDIO accesses to Host Wakeup reg page */
Bruce Allana4f58f52009-06-02 11:29:18 +00002663 if ((hw->mac.type == e1000_pchlan) &&
Bruce Allan2b6b1682011-05-13 07:20:09 +00002664 (!(er32(PHY_CTRL) & E1000_PHY_CTRL_GBE_DISABLE)))
2665 e_dbg("Attempting to access page %d while gig enabled.\n",
2666 page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002667
Bruce Allan2b6b1682011-05-13 07:20:09 +00002668 if (!page_set) {
2669 /* Enable access to PHY wakeup registers */
2670 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2671 if (ret_val) {
2672 e_dbg("Could not enable PHY wakeup reg access\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002673 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002674 }
Bruce Allan9b71b412009-12-01 15:53:07 +00002675 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002676
Bruce Allan2b6b1682011-05-13 07:20:09 +00002677 e_dbg("Accessing PHY page %d reg 0x%x\n", page, reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002678
Bruce Allan2b6b1682011-05-13 07:20:09 +00002679 /* Write the Wakeup register page offset value using opcode 0x11 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002680 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ADDRESS_OPCODE, reg);
Bruce Allan9b71b412009-12-01 15:53:07 +00002681 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002682 e_dbg("Could not write address opcode to page %d\n", page);
Bruce Allan5015e532012-02-08 02:55:56 +00002683 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002684 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002685
2686 if (read) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002687 /* Read the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002688 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002689 data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002690 } else {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002691 /* Write the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002692 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2693 *data);
2694 }
2695
Bruce Allan9b71b412009-12-01 15:53:07 +00002696 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002697 e_dbg("Could not access PHY reg %d.%d\n", page, reg);
Bruce Allan5015e532012-02-08 02:55:56 +00002698 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002699 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002700
Bruce Allan2b6b1682011-05-13 07:20:09 +00002701 if (!page_set)
2702 ret_val = e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002703
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002704 return ret_val;
2705}
2706
2707/**
Bruce Allan17f208d2009-12-01 15:47:22 +00002708 * e1000_power_up_phy_copper - Restore copper link in case of PHY power down
2709 * @hw: pointer to the HW structure
2710 *
2711 * In the case of a PHY power down to save power, or to turn off link during a
2712 * driver unload, or wake on lan is not enabled, restore the link to previous
2713 * settings.
2714 **/
2715void e1000_power_up_phy_copper(struct e1000_hw *hw)
2716{
2717 u16 mii_reg = 0;
2718
2719 /* The PHY will retain its settings across a power down/up cycle */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002720 e1e_rphy(hw, MII_BMCR, &mii_reg);
2721 mii_reg &= ~BMCR_PDOWN;
2722 e1e_wphy(hw, MII_BMCR, mii_reg);
Bruce Allan17f208d2009-12-01 15:47:22 +00002723}
2724
2725/**
2726 * e1000_power_down_phy_copper - Restore copper link in case of PHY power down
2727 * @hw: pointer to the HW structure
2728 *
2729 * In the case of a PHY power down to save power, or to turn off link during a
2730 * driver unload, or wake on lan is not enabled, restore the link to previous
2731 * settings.
2732 **/
2733void e1000_power_down_phy_copper(struct e1000_hw *hw)
2734{
2735 u16 mii_reg = 0;
2736
2737 /* The PHY will retain its settings across a power down/up cycle */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002738 e1e_rphy(hw, MII_BMCR, &mii_reg);
2739 mii_reg |= BMCR_PDOWN;
2740 e1e_wphy(hw, MII_BMCR, mii_reg);
Bruce Allan1bba4382011-03-19 00:27:20 +00002741 usleep_range(1000, 2000);
Bruce Allan17f208d2009-12-01 15:47:22 +00002742}
2743
2744/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002745 * __e1000_read_phy_reg_hv - Read HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002746 * @hw: pointer to the HW structure
2747 * @offset: register offset to be read
2748 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002749 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002750 *
2751 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002752 * and stores the retrieved information in data. Release any acquired
Bruce Allana4f58f52009-06-02 11:29:18 +00002753 * semaphore before exiting.
2754 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002755static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002756 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002757{
2758 s32 ret_val;
2759 u16 page = BM_PHY_REG_PAGE(offset);
2760 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002761 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002762
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002763 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002764 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002765 if (ret_val)
2766 return ret_val;
2767 }
2768
Bruce Allana4f58f52009-06-02 11:29:18 +00002769 /* Page 800 works differently than the rest so it has its own func */
2770 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002771 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
2772 true, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002773 goto out;
2774 }
2775
2776 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2777 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002778 data, true);
Bruce Allana4f58f52009-06-02 11:29:18 +00002779 goto out;
2780 }
2781
Bruce Allan2b6b1682011-05-13 07:20:09 +00002782 if (!page_set) {
2783 if (page == HV_INTC_FC_PAGE_START)
2784 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002785
Bruce Allan2b6b1682011-05-13 07:20:09 +00002786 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2787 /* Page is shifted left, PHY expects (page x 32) */
2788 ret_val = e1000_set_page_igp(hw,
2789 (page << IGP_PAGE_SHIFT));
Bruce Allana4f58f52009-06-02 11:29:18 +00002790
Bruce Allan2b6b1682011-05-13 07:20:09 +00002791 hw->phy.addr = phy_addr;
Bruce Allana4f58f52009-06-02 11:29:18 +00002792
Bruce Allan2b6b1682011-05-13 07:20:09 +00002793 if (ret_val)
2794 goto out;
2795 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002796 }
2797
Bruce Allan2b6b1682011-05-13 07:20:09 +00002798 e_dbg("reading PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2799 page << IGP_PAGE_SHIFT, reg);
2800
Bruce Allanf0ff4392013-02-20 04:05:39 +00002801 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002802out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002803 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002804 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002805
Bruce Allana4f58f52009-06-02 11:29:18 +00002806 return ret_val;
2807}
2808
2809/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002810 * e1000_read_phy_reg_hv - Read HV PHY register
2811 * @hw: pointer to the HW structure
2812 * @offset: register offset to be read
2813 * @data: pointer to the read data
2814 *
2815 * Acquires semaphore then reads the PHY register at offset and stores
2816 * the retrieved information in data. Release the acquired semaphore
2817 * before exiting.
2818 **/
2819s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2820{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002821 return __e1000_read_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002822}
2823
2824/**
2825 * e1000_read_phy_reg_hv_locked - Read HV PHY register
2826 * @hw: pointer to the HW structure
2827 * @offset: register offset to be read
2828 * @data: pointer to the read data
2829 *
2830 * Reads the PHY register at offset and stores the retrieved information
2831 * in data. Assumes semaphore already acquired.
2832 **/
2833s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data)
2834{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002835 return __e1000_read_phy_reg_hv(hw, offset, data, true, false);
2836}
2837
2838/**
2839 * e1000_read_phy_reg_page_hv - Read HV PHY register
2840 * @hw: pointer to the HW structure
2841 * @offset: register offset to write to
2842 * @data: data to write at register offset
2843 *
2844 * Reads the PHY register at offset and stores the retrieved information
2845 * in data. Assumes semaphore already acquired and page already set.
2846 **/
2847s32 e1000_read_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2848{
2849 return __e1000_read_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002850}
2851
2852/**
2853 * __e1000_write_phy_reg_hv - Write HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002854 * @hw: pointer to the HW structure
2855 * @offset: register offset to write to
2856 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002857 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002858 *
2859 * Acquires semaphore, if necessary, then writes the data to PHY register
2860 * at the offset. Release any acquired semaphores before exiting.
2861 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002862static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002863 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002864{
2865 s32 ret_val;
2866 u16 page = BM_PHY_REG_PAGE(offset);
2867 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002868 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002869
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002870 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002871 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002872 if (ret_val)
2873 return ret_val;
2874 }
2875
Bruce Allana4f58f52009-06-02 11:29:18 +00002876 /* Page 800 works differently than the rest so it has its own func */
2877 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002878 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
2879 false, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002880 goto out;
2881 }
2882
2883 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2884 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002885 &data, false);
Bruce Allana4f58f52009-06-02 11:29:18 +00002886 goto out;
2887 }
2888
Bruce Allan2b6b1682011-05-13 07:20:09 +00002889 if (!page_set) {
2890 if (page == HV_INTC_FC_PAGE_START)
2891 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002892
Bruce Allane921eb12012-11-28 09:28:37 +00002893 /* Workaround MDIO accesses being disabled after entering IEEE
Bruce Allan2b6b1682011-05-13 07:20:09 +00002894 * Power Down (when bit 11 of the PHY Control register is set)
2895 */
2896 if ((hw->phy.type == e1000_phy_82578) &&
2897 (hw->phy.revision >= 1) &&
2898 (hw->phy.addr == 2) &&
Jacob Keller18dd2392016-04-13 16:08:32 -07002899 !(MAX_PHY_REG_ADDRESS & reg) && (data & BIT(11))) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002900 u16 data2 = 0x7EFF;
David Ertman6cf08d12014-04-05 06:07:00 +00002901
Bruce Allan2b6b1682011-05-13 07:20:09 +00002902 ret_val = e1000_access_phy_debug_regs_hv(hw,
Jacob Keller18dd2392016-04-13 16:08:32 -07002903 BIT(6) | 0x3,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002904 &data2, false);
2905 if (ret_val)
2906 goto out;
2907 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002908
Bruce Allan2b6b1682011-05-13 07:20:09 +00002909 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2910 /* Page is shifted left, PHY expects (page x 32) */
2911 ret_val = e1000_set_page_igp(hw,
2912 (page << IGP_PAGE_SHIFT));
2913
2914 hw->phy.addr = phy_addr;
2915
2916 if (ret_val)
2917 goto out;
2918 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002919 }
2920
Bruce Allan2b6b1682011-05-13 07:20:09 +00002921 e_dbg("writing PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2922 page << IGP_PAGE_SHIFT, reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00002923
2924 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002925 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002926
2927out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002928 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002929 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002930
Bruce Allana4f58f52009-06-02 11:29:18 +00002931 return ret_val;
2932}
2933
2934/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002935 * e1000_write_phy_reg_hv - Write HV PHY register
2936 * @hw: pointer to the HW structure
2937 * @offset: register offset to write to
2938 * @data: data to write at register offset
2939 *
2940 * Acquires semaphore then writes the data to PHY register at the offset.
2941 * Release the acquired semaphores before exiting.
2942 **/
2943s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data)
2944{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002945 return __e1000_write_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002946}
2947
2948/**
2949 * e1000_write_phy_reg_hv_locked - Write HV PHY register
2950 * @hw: pointer to the HW structure
2951 * @offset: register offset to write to
2952 * @data: data to write at register offset
2953 *
2954 * Writes the data to PHY register at the offset. Assumes semaphore
2955 * already acquired.
2956 **/
2957s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data)
2958{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002959 return __e1000_write_phy_reg_hv(hw, offset, data, true, false);
2960}
2961
2962/**
2963 * e1000_write_phy_reg_page_hv - Write HV PHY register
2964 * @hw: pointer to the HW structure
2965 * @offset: register offset to write to
2966 * @data: data to write at register offset
2967 *
2968 * Writes the data to PHY register at the offset. Assumes semaphore
2969 * already acquired and page already set.
2970 **/
2971s32 e1000_write_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 data)
2972{
2973 return __e1000_write_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002974}
2975
2976/**
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002977 * e1000_get_phy_addr_for_hv_page - Get PHY address based on page
Bruce Allana4f58f52009-06-02 11:29:18 +00002978 * @page: page to be accessed
2979 **/
2980static u32 e1000_get_phy_addr_for_hv_page(u32 page)
2981{
2982 u32 phy_addr = 2;
2983
2984 if (page >= HV_INTC_FC_PAGE_START)
2985 phy_addr = 1;
2986
2987 return phy_addr;
2988}
2989
2990/**
2991 * e1000_access_phy_debug_regs_hv - Read HV PHY vendor specific high registers
2992 * @hw: pointer to the HW structure
2993 * @offset: register offset to be read or written
2994 * @data: pointer to the data to be read or written
Bruce Allan2b6b1682011-05-13 07:20:09 +00002995 * @read: determines if operation is read or write
Bruce Allana4f58f52009-06-02 11:29:18 +00002996 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002997 * Reads the PHY register at offset and stores the retreived information
2998 * in data. Assumes semaphore already acquired. Note that the procedure
Bruce Allan2b6b1682011-05-13 07:20:09 +00002999 * to access these regs uses the address port and data port to read/write.
3000 * These accesses done with PHY address 2 and without using pages.
Bruce Allana4f58f52009-06-02 11:29:18 +00003001 **/
3002static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
Bruce Allan66501f52013-02-20 04:05:55 +00003003 u16 *data, bool read)
Bruce Allana4f58f52009-06-02 11:29:18 +00003004{
3005 s32 ret_val;
Bruce Allan70806a72013-01-05 05:08:37 +00003006 u32 addr_reg;
3007 u32 data_reg;
Bruce Allana4f58f52009-06-02 11:29:18 +00003008
3009 /* This takes care of the difference with desktop vs mobile phy */
Bruce Allanf0ff4392013-02-20 04:05:39 +00003010 addr_reg = ((hw->phy.type == e1000_phy_82578) ?
3011 I82578_ADDR_REG : I82577_ADDR_REG);
Bruce Allana4f58f52009-06-02 11:29:18 +00003012 data_reg = addr_reg + 1;
3013
Bruce Allana4f58f52009-06-02 11:29:18 +00003014 /* All operations in this function are phy address 2 */
3015 hw->phy.addr = 2;
3016
3017 /* masking with 0x3F to remove the page from offset */
3018 ret_val = e1000e_write_phy_reg_mdic(hw, addr_reg, (u16)offset & 0x3F);
3019 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003020 e_dbg("Could not write the Address Offset port register\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003021 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003022 }
3023
3024 /* Read or write the data value next */
3025 if (read)
3026 ret_val = e1000e_read_phy_reg_mdic(hw, data_reg, data);
3027 else
3028 ret_val = e1000e_write_phy_reg_mdic(hw, data_reg, *data);
3029
Bruce Allan5015e532012-02-08 02:55:56 +00003030 if (ret_val)
Bruce Allan2b6b1682011-05-13 07:20:09 +00003031 e_dbg("Could not access the Data port register\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003032
Bruce Allana4f58f52009-06-02 11:29:18 +00003033 return ret_val;
3034}
3035
3036/**
3037 * e1000_link_stall_workaround_hv - Si workaround
3038 * @hw: pointer to the HW structure
3039 *
3040 * This function works around a Si bug where the link partner can get
3041 * a link up indication before the PHY does. If small packets are sent
3042 * by the link partner they can be placed in the packet buffer without
3043 * being properly accounted for by the PHY and will stall preventing
3044 * further packets from being received. The workaround is to clear the
3045 * packet buffer after the PHY detects link up.
3046 **/
3047s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw)
3048{
3049 s32 ret_val = 0;
3050 u16 data;
3051
3052 if (hw->phy.type != e1000_phy_82578)
Bruce Allan5015e532012-02-08 02:55:56 +00003053 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003054
Bruce Allane65fa872009-07-01 13:27:31 +00003055 /* Do not apply workaround if in PHY loopback bit 14 set */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003056 e1e_rphy(hw, MII_BMCR, &data);
3057 if (data & BMCR_LOOPBACK)
Bruce Allan5015e532012-02-08 02:55:56 +00003058 return 0;
Bruce Allane65fa872009-07-01 13:27:31 +00003059
Bruce Allana4f58f52009-06-02 11:29:18 +00003060 /* check if link is up and at 1Gbps */
Bruce Allan482fed82011-01-06 14:29:49 +00003061 ret_val = e1e_rphy(hw, BM_CS_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003062 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003063 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003064
Bruce Allanf0ff4392013-02-20 04:05:39 +00003065 data &= (BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3066 BM_CS_STATUS_SPEED_MASK);
Bruce Allana4f58f52009-06-02 11:29:18 +00003067
Bruce Allan3d3a1672012-02-23 03:13:18 +00003068 if (data != (BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3069 BM_CS_STATUS_SPEED_1000))
Bruce Allan5015e532012-02-08 02:55:56 +00003070 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003071
Bruce Allanbb9c5ee2012-02-23 03:31:29 +00003072 msleep(200);
Bruce Allana4f58f52009-06-02 11:29:18 +00003073
3074 /* flush the packets in the fifo buffer */
Bruce Allanc063f602013-01-12 07:27:53 +00003075 ret_val = e1e_wphy(hw, HV_MUX_DATA_CTRL,
3076 (HV_MUX_DATA_CTRL_GEN_TO_MAC |
3077 HV_MUX_DATA_CTRL_FORCE_SPEED));
Bruce Allana4f58f52009-06-02 11:29:18 +00003078 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003079 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003080
Bruce Allan5015e532012-02-08 02:55:56 +00003081 return e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003082}
3083
3084/**
3085 * e1000_check_polarity_82577 - Checks the polarity.
3086 * @hw: pointer to the HW structure
3087 *
3088 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
3089 *
3090 * Polarity is determined based on the PHY specific status register.
3091 **/
3092s32 e1000_check_polarity_82577(struct e1000_hw *hw)
3093{
3094 struct e1000_phy_info *phy = &hw->phy;
3095 s32 ret_val;
3096 u16 data;
3097
Bruce Allan482fed82011-01-06 14:29:49 +00003098 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003099
3100 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00003101 phy->cable_polarity = ((data & I82577_PHY_STATUS2_REV_POLARITY)
3102 ? e1000_rev_polarity_reversed
3103 : e1000_rev_polarity_normal);
Bruce Allana4f58f52009-06-02 11:29:18 +00003104
3105 return ret_val;
3106}
3107
3108/**
3109 * e1000_phy_force_speed_duplex_82577 - Force speed/duplex for I82577 PHY
3110 * @hw: pointer to the HW structure
3111 *
Bruce Allaneab50ff2010-05-10 15:01:30 +00003112 * Calls the PHY setup function to force speed and duplex.
Bruce Allana4f58f52009-06-02 11:29:18 +00003113 **/
3114s32 e1000_phy_force_speed_duplex_82577(struct e1000_hw *hw)
3115{
3116 struct e1000_phy_info *phy = &hw->phy;
3117 s32 ret_val;
3118 u16 phy_data;
3119 bool link;
3120
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003121 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003122 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003123 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003124
3125 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
3126
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003127 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003128 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003129 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003130
Bruce Allana4f58f52009-06-02 11:29:18 +00003131 udelay(1);
3132
3133 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003134 e_dbg("Waiting for forced speed/duplex link on 82577 phy\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003135
Bruce Allan3d3a1672012-02-23 03:13:18 +00003136 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3137 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003138 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003139 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003140
3141 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003142 e_dbg("Link taking longer than expected.\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003143
3144 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00003145 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3146 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003147 }
3148
Bruce Allana4f58f52009-06-02 11:29:18 +00003149 return ret_val;
3150}
3151
3152/**
3153 * e1000_get_phy_info_82577 - Retrieve I82577 PHY information
3154 * @hw: pointer to the HW structure
3155 *
3156 * Read PHY status to determine if link is up. If link is up, then
3157 * set/determine 10base-T extended distance and polarity correction. Read
3158 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
3159 * determine on the cable length, local and remote receiver.
3160 **/
3161s32 e1000_get_phy_info_82577(struct e1000_hw *hw)
3162{
3163 struct e1000_phy_info *phy = &hw->phy;
3164 s32 ret_val;
3165 u16 data;
3166 bool link;
3167
3168 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
3169 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003170 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003171
3172 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003173 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003174 return -E1000_ERR_CONFIG;
Bruce Allana4f58f52009-06-02 11:29:18 +00003175 }
3176
3177 phy->polarity_correction = true;
3178
3179 ret_val = e1000_check_polarity_82577(hw);
3180 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003181 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003182
Bruce Allan482fed82011-01-06 14:29:49 +00003183 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003184 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003185 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003186
Bruce Allan04499ec2012-04-13 00:08:31 +00003187 phy->is_mdix = !!(data & I82577_PHY_STATUS2_MDIX);
Bruce Allana4f58f52009-06-02 11:29:18 +00003188
3189 if ((data & I82577_PHY_STATUS2_SPEED_MASK) ==
3190 I82577_PHY_STATUS2_SPEED_1000MBPS) {
3191 ret_val = hw->phy.ops.get_cable_length(hw);
3192 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003193 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003194
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003195 ret_val = e1e_rphy(hw, MII_STAT1000, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003196 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003197 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003198
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003199 phy->local_rx = (data & LPA_1000LOCALRXOK)
3200 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Bruce Allana4f58f52009-06-02 11:29:18 +00003201
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003202 phy->remote_rx = (data & LPA_1000REMRXOK)
3203 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Bruce Allana4f58f52009-06-02 11:29:18 +00003204 } else {
3205 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
3206 phy->local_rx = e1000_1000t_rx_status_undefined;
3207 phy->remote_rx = e1000_1000t_rx_status_undefined;
3208 }
3209
Bruce Allan5015e532012-02-08 02:55:56 +00003210 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003211}
3212
3213/**
3214 * e1000_get_cable_length_82577 - Determine cable length for 82577 PHY
3215 * @hw: pointer to the HW structure
3216 *
3217 * Reads the diagnostic status register and verifies result is valid before
3218 * placing it in the phy_cable_length field.
3219 **/
3220s32 e1000_get_cable_length_82577(struct e1000_hw *hw)
3221{
3222 struct e1000_phy_info *phy = &hw->phy;
3223 s32 ret_val;
3224 u16 phy_data, length;
3225
Bruce Allan482fed82011-01-06 14:29:49 +00003226 ret_val = e1e_rphy(hw, I82577_PHY_DIAG_STATUS, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003227 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003228 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003229
Bruce Allanf0ff4392013-02-20 04:05:39 +00003230 length = ((phy_data & I82577_DSTATUS_CABLE_LENGTH) >>
3231 I82577_DSTATUS_CABLE_LENGTH_SHIFT);
Bruce Allana4f58f52009-06-02 11:29:18 +00003232
3233 if (length == E1000_CABLE_LENGTH_UNDEFINED)
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00003234 return -E1000_ERR_PHY;
Bruce Allana4f58f52009-06-02 11:29:18 +00003235
3236 phy->cable_length = length;
3237
Bruce Allan5015e532012-02-08 02:55:56 +00003238 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003239}