blob: 20e71f4ca4261f99694b04eccd3647906326239d [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Auke Kokbc7f75f2007-09-17 12:30:59 -070029#include "e1000.h"
30
Auke Kokbc7f75f2007-09-17 12:30:59 -070031static s32 e1000_wait_autoneg(struct e1000_hw *hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -070032static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +000033 u16 *data, bool read, bool page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +000034static u32 e1000_get_phy_addr_for_hv_page(u32 page);
35static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
Bruce Allan1f96012d2013-01-05 03:06:54 +000036 u16 *data, bool read);
Auke Kokbc7f75f2007-09-17 12:30:59 -070037
38/* Cable length tables */
Bruce Allan64806412010-12-11 05:53:42 +000039static const u16 e1000_m88_cable_length_table[] = {
Bruce Allan04e115c2013-02-20 04:06:22 +000040 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED
41};
Bruce Allanfc830b72013-02-20 04:06:11 +000042
Bruce Allaneb656d42009-12-01 15:47:02 +000043#define M88E1000_CABLE_LENGTH_TABLE_SIZE \
44 ARRAY_SIZE(e1000_m88_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070045
Bruce Allan64806412010-12-11 05:53:42 +000046static const u16 e1000_igp_2_cable_length_table[] = {
47 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, 0, 0, 0, 3,
48 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, 6, 10, 14, 18, 22,
49 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, 21, 26, 31, 35, 40,
50 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, 40, 45, 51, 56, 61,
51 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, 60, 66, 72, 77, 82,
52 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, 83, 89, 95,
53 100, 105, 109, 113, 116, 119, 122, 124, 104, 109, 114, 118, 121,
Bruce Allan04e115c2013-02-20 04:06:22 +000054 124
55};
Bruce Allanfc830b72013-02-20 04:06:11 +000056
Auke Kokbc7f75f2007-09-17 12:30:59 -070057#define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \
Alejandro Martinez Ruizc00acf42007-10-18 10:16:33 +020058 ARRAY_SIZE(e1000_igp_2_cable_length_table)
Auke Kokbc7f75f2007-09-17 12:30:59 -070059
60/**
61 * e1000e_check_reset_block_generic - Check if PHY reset is blocked
62 * @hw: pointer to the HW structure
63 *
64 * Read the PHY management control register and check whether a PHY reset
65 * is blocked. If a reset is not blocked return 0, otherwise
66 * return E1000_BLK_PHY_RESET (12).
67 **/
68s32 e1000e_check_reset_block_generic(struct e1000_hw *hw)
69{
70 u32 manc;
71
72 manc = er32(MANC);
73
Bruce Allane5fe2542013-02-20 04:06:27 +000074 return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ? E1000_BLK_PHY_RESET : 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070075}
76
77/**
78 * e1000e_get_phy_id - Retrieve the PHY ID and revision
79 * @hw: pointer to the HW structure
80 *
81 * Reads the PHY registers and stores the PHY ID and possibly the PHY
82 * revision in the hardware structure.
83 **/
84s32 e1000e_get_phy_id(struct e1000_hw *hw)
85{
86 struct e1000_phy_info *phy = &hw->phy;
Bruce Allana4f58f52009-06-02 11:29:18 +000087 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070088 u16 phy_id;
Bruce Allana4f58f52009-06-02 11:29:18 +000089 u16 retry_count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070090
Bruce Allan668018d2012-01-31 07:02:56 +000091 if (!phy->ops.read_reg)
Bruce Allan5015e532012-02-08 02:55:56 +000092 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -070093
Bruce Allana4f58f52009-06-02 11:29:18 +000094 while (retry_count < 2) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +000095 ret_val = e1e_rphy(hw, MII_PHYSID1, &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 << 16);
Bruce Allance43a212013-02-20 04:06:32 +0000100 usleep_range(20, 40);
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000101 ret_val = e1e_rphy(hw, MII_PHYSID2, &phy_id);
Bruce Allana4f58f52009-06-02 11:29:18 +0000102 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000103 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700104
Bruce Allana4f58f52009-06-02 11:29:18 +0000105 phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
106 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
107
108 if (phy->id != 0 && phy->id != PHY_REVISION_MASK)
Bruce Allan5015e532012-02-08 02:55:56 +0000109 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +0000110
Bruce Allana4f58f52009-06-02 11:29:18 +0000111 retry_count++;
112 }
Bruce Allan5015e532012-02-08 02:55:56 +0000113
114 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700115}
116
117/**
118 * e1000e_phy_reset_dsp - Reset PHY DSP
119 * @hw: pointer to the HW structure
120 *
121 * Reset the digital signal processor.
122 **/
123s32 e1000e_phy_reset_dsp(struct e1000_hw *hw)
124{
125 s32 ret_val;
126
127 ret_val = e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
128 if (ret_val)
129 return ret_val;
130
131 return e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0);
132}
133
134/**
David Graham2d9498f2008-04-23 11:09:14 -0700135 * e1000e_read_phy_reg_mdic - Read MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700136 * @hw: pointer to the HW structure
137 * @offset: register offset to be read
138 * @data: pointer to the read data
139 *
Auke Kok489815c2008-02-21 15:11:07 -0800140 * Reads the MDI control register in the PHY at offset and stores the
Auke Kokbc7f75f2007-09-17 12:30:59 -0700141 * information read to data.
142 **/
David Graham2d9498f2008-04-23 11:09:14 -0700143s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700144{
145 struct e1000_phy_info *phy = &hw->phy;
146 u32 i, mdic = 0;
147
148 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000149 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700150 return -E1000_ERR_PARAM;
151 }
152
Bruce Allane921eb12012-11-28 09:28:37 +0000153 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700154 * Control register. The MAC will take care of interfacing with the
155 * PHY to retrieve the desired data.
156 */
157 mdic = ((offset << E1000_MDIC_REG_SHIFT) |
158 (phy->addr << E1000_MDIC_PHY_SHIFT) |
159 (E1000_MDIC_OP_READ));
160
161 ew32(MDIC, mdic);
162
Bruce Allane921eb12012-11-28 09:28:37 +0000163 /* Poll the ready bit to see if the MDI read completed
Bruce Allanad680762008-03-28 09:15:03 -0700164 * Increasing the time out as testing showed failures with
165 * the lower time out
166 */
David Graham2d9498f2008-04-23 11:09:14 -0700167 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Bruce Allan274a85e2013-03-19 01:47:12 +0000168 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700169 mdic = er32(MDIC);
170 if (mdic & E1000_MDIC_READY)
171 break;
172 }
173 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000174 e_dbg("MDI Read did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700175 return -E1000_ERR_PHY;
176 }
177 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000178 e_dbg("MDI Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700179 return -E1000_ERR_PHY;
180 }
Bruce Allanbb034512013-03-06 09:02:31 +0000181 if (((mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT) != offset) {
182 e_dbg("MDI Read offset error - requested %d, returned %d\n",
183 offset,
184 (mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT);
185 return -E1000_ERR_PHY;
186 }
Bruce Allan53aa82d2013-02-20 04:06:06 +0000187 *data = (u16)mdic;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700188
Bruce Allane921eb12012-11-28 09:28:37 +0000189 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000190 * reading duplicate data in the next MDIC transaction.
191 */
192 if (hw->mac.type == e1000_pch2lan)
Bruce Allan274a85e2013-03-19 01:47:12 +0000193 udelay(100);
Bruce Allan664dc872010-11-24 06:01:46 +0000194
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 return 0;
196}
197
198/**
David Graham2d9498f2008-04-23 11:09:14 -0700199 * e1000e_write_phy_reg_mdic - Write MDI control register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700200 * @hw: pointer to the HW structure
201 * @offset: register offset to write to
202 * @data: data to write to register at offset
203 *
204 * Writes data to MDI control register in the PHY at offset.
205 **/
David Graham2d9498f2008-04-23 11:09:14 -0700206s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700207{
208 struct e1000_phy_info *phy = &hw->phy;
209 u32 i, mdic = 0;
210
211 if (offset > MAX_PHY_REG_ADDRESS) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000212 e_dbg("PHY Address %d is out of range\n", offset);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700213 return -E1000_ERR_PARAM;
214 }
215
Bruce Allane921eb12012-11-28 09:28:37 +0000216 /* Set up Op-code, Phy Address, and register offset in the MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -0700217 * Control register. The MAC will take care of interfacing with the
218 * PHY to retrieve the desired data.
219 */
220 mdic = (((u32)data) |
221 (offset << E1000_MDIC_REG_SHIFT) |
222 (phy->addr << E1000_MDIC_PHY_SHIFT) |
223 (E1000_MDIC_OP_WRITE));
224
225 ew32(MDIC, mdic);
226
Bruce Allane921eb12012-11-28 09:28:37 +0000227 /* Poll the ready bit to see if the MDI read completed
David Graham2d9498f2008-04-23 11:09:14 -0700228 * Increasing the time out as testing showed failures with
229 * the lower time out
230 */
231 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
Bruce Allan274a85e2013-03-19 01:47:12 +0000232 udelay(50);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700233 mdic = er32(MDIC);
234 if (mdic & E1000_MDIC_READY)
235 break;
236 }
237 if (!(mdic & E1000_MDIC_READY)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000238 e_dbg("MDI Write did not complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700239 return -E1000_ERR_PHY;
240 }
David Graham2d9498f2008-04-23 11:09:14 -0700241 if (mdic & E1000_MDIC_ERROR) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000242 e_dbg("MDI Error\n");
David Graham2d9498f2008-04-23 11:09:14 -0700243 return -E1000_ERR_PHY;
244 }
Bruce Allanbb034512013-03-06 09:02:31 +0000245 if (((mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT) != offset) {
246 e_dbg("MDI Write offset error - requested %d, returned %d\n",
247 offset,
248 (mdic & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT);
249 return -E1000_ERR_PHY;
250 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700251
Bruce Allane921eb12012-11-28 09:28:37 +0000252 /* Allow some time after each MDIC transaction to avoid
Bruce Allan664dc872010-11-24 06:01:46 +0000253 * reading duplicate data in the next MDIC transaction.
254 */
255 if (hw->mac.type == e1000_pch2lan)
Bruce Allan274a85e2013-03-19 01:47:12 +0000256 udelay(100);
Bruce Allan664dc872010-11-24 06:01:46 +0000257
Auke Kokbc7f75f2007-09-17 12:30:59 -0700258 return 0;
259}
260
261/**
262 * e1000e_read_phy_reg_m88 - Read m88 PHY register
263 * @hw: pointer to the HW structure
264 * @offset: register offset to be read
265 * @data: pointer to the read data
266 *
267 * Acquires semaphore, if necessary, then reads the PHY register at offset
268 * and storing the retrieved information in data. Release any acquired
269 * semaphores before exiting.
270 **/
271s32 e1000e_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data)
272{
273 s32 ret_val;
274
Bruce Allan94d81862009-11-20 23:25:26 +0000275 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700276 if (ret_val)
277 return ret_val;
278
David Graham2d9498f2008-04-23 11:09:14 -0700279 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
280 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700281
Bruce Allan94d81862009-11-20 23:25:26 +0000282 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700283
284 return ret_val;
285}
286
287/**
288 * e1000e_write_phy_reg_m88 - Write m88 PHY register
289 * @hw: pointer to the HW structure
290 * @offset: register offset to write to
291 * @data: data to write at register offset
292 *
293 * Acquires semaphore, if necessary, then writes the data to PHY register
294 * at the offset. Release any acquired semaphores before exiting.
295 **/
296s32 e1000e_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data)
297{
298 s32 ret_val;
299
Bruce Allan94d81862009-11-20 23:25:26 +0000300 ret_val = hw->phy.ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700301 if (ret_val)
302 return ret_val;
303
David Graham2d9498f2008-04-23 11:09:14 -0700304 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
305 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700306
Bruce Allan94d81862009-11-20 23:25:26 +0000307 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700308
309 return ret_val;
310}
311
312/**
Bruce Allan2b6b1682011-05-13 07:20:09 +0000313 * e1000_set_page_igp - Set page as on IGP-like PHY(s)
314 * @hw: pointer to the HW structure
315 * @page: page to set (shifted left when necessary)
316 *
317 * Sets PHY page required for PHY register access. Assumes semaphore is
318 * already acquired. Note, this function sets phy.addr to 1 so the caller
319 * must set it appropriately (if necessary) after this function returns.
320 **/
321s32 e1000_set_page_igp(struct e1000_hw *hw, u16 page)
322{
323 e_dbg("Setting page 0x%x\n", page);
324
325 hw->phy.addr = 1;
326
327 return e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, page);
328}
329
330/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000331 * __e1000e_read_phy_reg_igp - Read igp PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700332 * @hw: pointer to the HW structure
333 * @offset: register offset to be read
334 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000335 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700336 *
337 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000338 * and stores the retrieved information in data. Release any acquired
Auke Kokbc7f75f2007-09-17 12:30:59 -0700339 * semaphores before exiting.
340 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000341static s32 __e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan66501f52013-02-20 04:05:55 +0000342 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700343{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000344 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700345
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000346 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000347 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000348 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000349
Bruce Allan94d81862009-11-20 23:25:26 +0000350 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000351 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000352 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000353 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700354
Bruce Allan5015e532012-02-08 02:55:56 +0000355 if (offset > MAX_PHY_MULTI_PAGE_REG)
David Graham2d9498f2008-04-23 11:09:14 -0700356 ret_val = e1000e_write_phy_reg_mdic(hw,
357 IGP01E1000_PHY_PAGE_SELECT,
358 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000359 if (!ret_val)
360 ret_val = e1000e_read_phy_reg_mdic(hw,
361 MAX_PHY_REG_ADDRESS & offset,
362 data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000363 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000364 hw->phy.ops.release(hw);
Bruce Allan5015e532012-02-08 02:55:56 +0000365
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000366 return ret_val;
367}
Auke Kokbc7f75f2007-09-17 12:30:59 -0700368
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000369/**
370 * e1000e_read_phy_reg_igp - Read igp PHY register
371 * @hw: pointer to the HW structure
372 * @offset: register offset to be read
373 * @data: pointer to the read data
374 *
375 * Acquires semaphore then reads the PHY register at offset and stores the
376 * retrieved information in data.
377 * Release the acquired semaphore before exiting.
378 **/
379s32 e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
380{
381 return __e1000e_read_phy_reg_igp(hw, offset, data, false);
382}
383
384/**
385 * e1000e_read_phy_reg_igp_locked - Read igp PHY register
386 * @hw: pointer to the HW structure
387 * @offset: register offset to be read
388 * @data: pointer to the read data
389 *
390 * Reads the PHY register at offset and stores the retrieved information
391 * in data. Assumes semaphore already acquired.
392 **/
393s32 e1000e_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data)
394{
395 return __e1000e_read_phy_reg_igp(hw, offset, data, true);
396}
397
398/**
399 * e1000e_write_phy_reg_igp - Write igp PHY register
400 * @hw: pointer to the HW structure
401 * @offset: register offset to write to
402 * @data: data to write at register offset
403 * @locked: semaphore has already been acquired or not
404 *
405 * Acquires semaphore, if necessary, then writes the data to PHY register
406 * at the offset. Release any acquired semaphores before exiting.
407 **/
408static s32 __e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan66501f52013-02-20 04:05:55 +0000409 bool locked)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000410{
411 s32 ret_val = 0;
412
413 if (!locked) {
Bruce Allan668018d2012-01-31 07:02:56 +0000414 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000415 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000416
Bruce Allan94d81862009-11-20 23:25:26 +0000417 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000418 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000419 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000420 }
421
Bruce Allan5015e532012-02-08 02:55:56 +0000422 if (offset > MAX_PHY_MULTI_PAGE_REG)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000423 ret_val = e1000e_write_phy_reg_mdic(hw,
424 IGP01E1000_PHY_PAGE_SELECT,
425 (u16)offset);
Bruce Allan5015e532012-02-08 02:55:56 +0000426 if (!ret_val)
427 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS &
Bruce Allan17e813e2013-02-20 04:06:01 +0000428 offset, data);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000429 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000430 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000431
Auke Kokbc7f75f2007-09-17 12:30:59 -0700432 return ret_val;
433}
434
435/**
436 * e1000e_write_phy_reg_igp - Write igp PHY register
437 * @hw: pointer to the HW structure
438 * @offset: register offset to write to
439 * @data: data to write at register offset
440 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000441 * Acquires semaphore then writes the data to PHY register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700442 * at the offset. Release any acquired semaphores before exiting.
443 **/
444s32 e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
445{
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000446 return __e1000e_write_phy_reg_igp(hw, offset, data, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700447}
448
449/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000450 * e1000e_write_phy_reg_igp_locked - Write igp PHY register
451 * @hw: pointer to the HW structure
452 * @offset: register offset to write to
453 * @data: data to write at register offset
454 *
455 * Writes the data to PHY register at the offset.
456 * Assumes semaphore already acquired.
457 **/
458s32 e1000e_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data)
459{
460 return __e1000e_write_phy_reg_igp(hw, offset, data, true);
461}
462
463/**
464 * __e1000_read_kmrn_reg - Read kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700465 * @hw: pointer to the HW structure
466 * @offset: register offset to be read
467 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000468 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700469 *
470 * Acquires semaphore, if necessary. Then reads the PHY register at offset
471 * using the kumeran interface. The information retrieved is stored in data.
472 * Release any acquired semaphores before exiting.
473 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000474static s32 __e1000_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan66501f52013-02-20 04:05:55 +0000475 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700476{
477 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700478
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000479 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000480 s32 ret_val = 0;
481
Bruce Allan668018d2012-01-31 07:02:56 +0000482 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000483 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000484
Bruce Allan94d81862009-11-20 23:25:26 +0000485 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000486 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000487 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000488 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700489
490 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
491 E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN;
492 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000493 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700494
495 udelay(2);
496
497 kmrnctrlsta = er32(KMRNCTRLSTA);
498 *data = (u16)kmrnctrlsta;
499
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000500 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000501 hw->phy.ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700502
Bruce Allan5015e532012-02-08 02:55:56 +0000503 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700504}
505
506/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000507 * e1000e_read_kmrn_reg - Read kumeran register
508 * @hw: pointer to the HW structure
509 * @offset: register offset to be read
510 * @data: pointer to the read data
511 *
512 * Acquires semaphore then reads the PHY register at offset using the
513 * kumeran interface. The information retrieved is stored in data.
514 * Release the acquired semaphore before exiting.
515 **/
516s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data)
517{
518 return __e1000_read_kmrn_reg(hw, offset, data, false);
519}
520
521/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000522 * e1000e_read_kmrn_reg_locked - Read kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000523 * @hw: pointer to the HW structure
524 * @offset: register offset to be read
525 * @data: pointer to the read data
526 *
527 * Reads the PHY register at offset using the kumeran interface. The
528 * information retrieved is stored in data.
529 * Assumes semaphore already acquired.
530 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000531s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000532{
533 return __e1000_read_kmrn_reg(hw, offset, data, true);
534}
535
536/**
537 * __e1000_write_kmrn_reg - Write kumeran register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700538 * @hw: pointer to the HW structure
539 * @offset: register offset to write to
540 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000541 * @locked: semaphore has already been acquired or not
Auke Kokbc7f75f2007-09-17 12:30:59 -0700542 *
543 * Acquires semaphore, if necessary. Then write the data to PHY register
544 * at the offset using the kumeran interface. Release any acquired semaphores
545 * before exiting.
546 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000547static s32 __e1000_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan66501f52013-02-20 04:05:55 +0000548 bool locked)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700549{
550 u32 kmrnctrlsta;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700551
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000552 if (!locked) {
Bruce Allan5015e532012-02-08 02:55:56 +0000553 s32 ret_val = 0;
554
Bruce Allan668018d2012-01-31 07:02:56 +0000555 if (!hw->phy.ops.acquire)
Bruce Allan5015e532012-02-08 02:55:56 +0000556 return 0;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000557
Bruce Allan94d81862009-11-20 23:25:26 +0000558 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000559 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000560 return ret_val;
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000561 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700562
563 kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) &
564 E1000_KMRNCTRLSTA_OFFSET) | data;
565 ew32(KMRNCTRLSTA, kmrnctrlsta);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000566 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -0700567
568 udelay(2);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700569
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000570 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +0000571 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000572
Bruce Allan5015e532012-02-08 02:55:56 +0000573 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700574}
575
576/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000577 * e1000e_write_kmrn_reg - Write kumeran register
578 * @hw: pointer to the HW structure
579 * @offset: register offset to write to
580 * @data: data to write at register offset
581 *
582 * Acquires semaphore then writes the data to the PHY register at the offset
583 * using the kumeran interface. Release the acquired semaphore before exiting.
584 **/
585s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data)
586{
587 return __e1000_write_kmrn_reg(hw, offset, data, false);
588}
589
590/**
Bruce Allan1d5846b2009-10-29 13:46:05 +0000591 * e1000e_write_kmrn_reg_locked - Write kumeran register
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000592 * @hw: pointer to the HW structure
593 * @offset: register offset to write to
594 * @data: data to write at register offset
595 *
596 * Write the data to PHY register at the offset using the kumeran interface.
597 * Assumes semaphore already acquired.
598 **/
Bruce Allan1d5846b2009-10-29 13:46:05 +0000599s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data)
Bruce Allan5ccdcec2009-10-26 11:24:02 +0000600{
601 return __e1000_write_kmrn_reg(hw, offset, data, true);
602}
603
604/**
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000605 * e1000_set_master_slave_mode - Setup PHY for Master/slave mode
606 * @hw: pointer to the HW structure
607 *
608 * Sets up Master/slave mode
609 **/
610static s32 e1000_set_master_slave_mode(struct e1000_hw *hw)
611{
612 s32 ret_val;
613 u16 phy_data;
614
615 /* Resolve Master/Slave mode */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000616 ret_val = e1e_rphy(hw, MII_CTRL1000, &phy_data);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000617 if (ret_val)
618 return ret_val;
619
620 /* load defaults for future use */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000621 hw->phy.original_ms_type = (phy_data & CTL1000_ENABLE_MASTER) ?
622 ((phy_data & CTL1000_AS_MASTER) ?
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000623 e1000_ms_force_master : e1000_ms_force_slave) : e1000_ms_auto;
624
625 switch (hw->phy.ms_type) {
626 case e1000_ms_force_master:
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000627 phy_data |= (CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000628 break;
629 case e1000_ms_force_slave:
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000630 phy_data |= CTL1000_ENABLE_MASTER;
631 phy_data &= ~(CTL1000_AS_MASTER);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000632 break;
633 case e1000_ms_auto:
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000634 phy_data &= ~CTL1000_ENABLE_MASTER;
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000635 /* fall-through */
636 default:
637 break;
638 }
639
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000640 return e1e_wphy(hw, MII_CTRL1000, phy_data);
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000641}
642
643/**
Bruce Allana4f58f52009-06-02 11:29:18 +0000644 * e1000_copper_link_setup_82577 - Setup 82577 PHY for copper link
645 * @hw: pointer to the HW structure
646 *
647 * Sets up Carrier-sense on Transmit and downshift values.
648 **/
649s32 e1000_copper_link_setup_82577(struct e1000_hw *hw)
650{
Bruce Allana4f58f52009-06-02 11:29:18 +0000651 s32 ret_val;
652 u16 phy_data;
653
Bruce Allanaf667a22010-12-31 06:10:01 +0000654 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Bruce Allan482fed82011-01-06 14:29:49 +0000655 ret_val = e1e_rphy(hw, I82577_CFG_REG, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000656 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +0000657 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +0000658
659 phy_data |= I82577_CFG_ASSERT_CRS_ON_TX;
660
661 /* Enable downshift */
662 phy_data |= I82577_CFG_ENABLE_DOWNSHIFT;
663
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000664 ret_val = e1e_wphy(hw, I82577_CFG_REG, phy_data);
665 if (ret_val)
666 return ret_val;
667
Bruce W Allane86fd892012-07-26 02:30:59 +0000668 /* Set MDI/MDIX mode */
669 ret_val = e1e_rphy(hw, I82577_PHY_CTRL_2, &phy_data);
670 if (ret_val)
671 return ret_val;
672 phy_data &= ~I82577_PHY_CTRL2_MDIX_CFG_MASK;
Bruce Allane921eb12012-11-28 09:28:37 +0000673 /* Options:
Bruce W Allane86fd892012-07-26 02:30:59 +0000674 * 0 - Auto (default)
675 * 1 - MDI mode
676 * 2 - MDI-X mode
677 */
678 switch (hw->phy.mdix) {
679 case 1:
680 break;
681 case 2:
682 phy_data |= I82577_PHY_CTRL2_MANUAL_MDIX;
683 break;
684 case 0:
685 default:
686 phy_data |= I82577_PHY_CTRL2_AUTO_MDI_MDIX;
687 break;
688 }
689 ret_val = e1e_wphy(hw, I82577_PHY_CTRL_2, phy_data);
690 if (ret_val)
691 return ret_val;
692
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000693 return e1000_set_master_slave_mode(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +0000694}
695
696/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700697 * e1000e_copper_link_setup_m88 - Setup m88 PHY's for copper link
698 * @hw: pointer to the HW structure
699 *
700 * Sets up MDI/MDI-X and polarity for m88 PHY's. If necessary, transmit clock
701 * and downshift values are set also.
702 **/
703s32 e1000e_copper_link_setup_m88(struct e1000_hw *hw)
704{
705 struct e1000_phy_info *phy = &hw->phy;
706 s32 ret_val;
707 u16 phy_data;
708
Bruce Allanad680762008-03-28 09:15:03 -0700709 /* Enable CRS on Tx. This must be set for half-duplex operation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700710 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
711 if (ret_val)
712 return ret_val;
713
Bruce Allana4f58f52009-06-02 11:29:18 +0000714 /* For BM PHY this bit is downshift enable */
715 if (phy->type != e1000_phy_bm)
David Graham2d9498f2008-04-23 11:09:14 -0700716 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700717
Bruce Allane921eb12012-11-28 09:28:37 +0000718 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700719 * MDI/MDI-X = 0 (default)
720 * 0 - Auto for all speeds
721 * 1 - MDI mode
722 * 2 - MDI-X mode
723 * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes)
724 */
725 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
726
727 switch (phy->mdix) {
728 case 1:
729 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
730 break;
731 case 2:
732 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
733 break;
734 case 3:
735 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
736 break;
737 case 0:
738 default:
739 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
740 break;
741 }
742
Bruce Allane921eb12012-11-28 09:28:37 +0000743 /* Options:
Auke Kokbc7f75f2007-09-17 12:30:59 -0700744 * disable_polarity_correction = 0 (default)
745 * Automatic Correction for Reversed Cable Polarity
746 * 0 - Disabled
747 * 1 - Enabled
748 */
749 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
Bruce Allan04499ec2012-04-13 00:08:31 +0000750 if (phy->disable_polarity_correction)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700751 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
752
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700753 /* Enable downshift on BM (disabled by default) */
Matthew Vick885fe7b2012-04-25 07:25:18 +0000754 if (phy->type == e1000_phy_bm) {
755 /* For 82574/82583, first disable then enable downshift */
756 if (phy->id == BME1000_E_PHY_ID_R2) {
757 phy_data &= ~BME1000_PSCR_ENABLE_DOWNSHIFT;
758 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL,
759 phy_data);
760 if (ret_val)
761 return ret_val;
762 /* Commit the changes. */
Bruce Allan6b598e12013-01-23 06:50:05 +0000763 ret_val = phy->ops.commit(hw);
Matthew Vick885fe7b2012-04-25 07:25:18 +0000764 if (ret_val) {
765 e_dbg("Error committing the PHY changes\n");
766 return ret_val;
767 }
768 }
769
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700770 phy_data |= BME1000_PSCR_ENABLE_DOWNSHIFT;
Matthew Vick885fe7b2012-04-25 07:25:18 +0000771 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700772
Auke Kokbc7f75f2007-09-17 12:30:59 -0700773 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
774 if (ret_val)
775 return ret_val;
776
Bruce Allan4662e822008-08-26 18:37:06 -0700777 if ((phy->type == e1000_phy_m88) &&
778 (phy->revision < E1000_REVISION_4) &&
779 (phy->id != BME1000_E_PHY_ID_R2)) {
Bruce Allane921eb12012-11-28 09:28:37 +0000780 /* Force TX_CLK in the Extended PHY Specific Control Register
Auke Kokbc7f75f2007-09-17 12:30:59 -0700781 * to 25MHz clock.
782 */
783 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
784 if (ret_val)
785 return ret_val;
786
787 phy_data |= M88E1000_EPSCR_TX_CLK_25;
788
Bruce Allane5fe2542013-02-20 04:06:27 +0000789 if ((phy->revision == 2) && (phy->id == M88E1111_I_PHY_ID)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700790 /* 82573L PHY - set the downshift counter to 5x. */
791 phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
792 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
793 } else {
794 /* Configure Master and Slave downshift values */
795 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
796 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
797 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
798 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
799 }
800 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
801 if (ret_val)
802 return ret_val;
803 }
804
Bruce Allan4662e822008-08-26 18:37:06 -0700805 if ((phy->type == e1000_phy_bm) && (phy->id == BME1000_E_PHY_ID_R2)) {
806 /* Set PHY page 0, register 29 to 0x0003 */
807 ret_val = e1e_wphy(hw, 29, 0x0003);
808 if (ret_val)
809 return ret_val;
810
811 /* Set PHY page 0, register 30 to 0x0000 */
812 ret_val = e1e_wphy(hw, 30, 0x0000);
813 if (ret_val)
814 return ret_val;
815 }
816
Auke Kokbc7f75f2007-09-17 12:30:59 -0700817 /* Commit the changes. */
Bruce Allan6b598e12013-01-23 06:50:05 +0000818 if (phy->ops.commit) {
819 ret_val = phy->ops.commit(hw);
820 if (ret_val) {
821 e_dbg("Error committing the PHY changes\n");
822 return ret_val;
823 }
Bruce Allana4f58f52009-06-02 11:29:18 +0000824 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700825
Bruce Allana4f58f52009-06-02 11:29:18 +0000826 if (phy->type == e1000_phy_82578) {
Bruce Allan482fed82011-01-06 14:29:49 +0000827 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000828 if (ret_val)
829 return ret_val;
830
831 /* 82578 PHY - set the downshift count to 1x. */
832 phy_data |= I82578_EPSCR_DOWNSHIFT_ENABLE;
833 phy_data &= ~I82578_EPSCR_DOWNSHIFT_COUNTER_MASK;
Bruce Allan482fed82011-01-06 14:29:49 +0000834 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +0000835 if (ret_val)
836 return ret_val;
837 }
838
839 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700840}
841
842/**
843 * e1000e_copper_link_setup_igp - Setup igp PHY's for copper link
844 * @hw: pointer to the HW structure
845 *
846 * Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for
847 * igp PHY's.
848 **/
849s32 e1000e_copper_link_setup_igp(struct e1000_hw *hw)
850{
851 struct e1000_phy_info *phy = &hw->phy;
852 s32 ret_val;
853 u16 data;
854
855 ret_val = e1000_phy_hw_reset(hw);
856 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000857 e_dbg("Error resetting the PHY.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700858 return ret_val;
859 }
860
Bruce Allane921eb12012-11-28 09:28:37 +0000861 /* Wait 100ms for MAC to configure PHY from NVM settings, to avoid
David Graham2d9498f2008-04-23 11:09:14 -0700862 * timeout issues when LFS is enabled.
863 */
864 msleep(100);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700865
866 /* disable lplu d0 during driver init */
Bruce Allan7de89f02013-01-05 08:06:03 +0000867 if (hw->phy.ops.set_d0_lplu_state) {
868 ret_val = hw->phy.ops.set_d0_lplu_state(hw, false);
869 if (ret_val) {
870 e_dbg("Error Disabling LPLU D0\n");
871 return ret_val;
872 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700873 }
874 /* Configure mdi-mdix settings */
875 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &data);
876 if (ret_val)
877 return ret_val;
878
879 data &= ~IGP01E1000_PSCR_AUTO_MDIX;
880
881 switch (phy->mdix) {
882 case 1:
883 data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
884 break;
885 case 2:
886 data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
887 break;
888 case 0:
889 default:
890 data |= IGP01E1000_PSCR_AUTO_MDIX;
891 break;
892 }
893 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, data);
894 if (ret_val)
895 return ret_val;
896
897 /* set auto-master slave resolution settings */
898 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +0000899 /* when autonegotiation advertisement is only 1000Mbps then we
Auke Kokbc7f75f2007-09-17 12:30:59 -0700900 * should disable SmartSpeed and enable Auto MasterSlave
Bruce Allanad680762008-03-28 09:15:03 -0700901 * resolution as hardware default.
902 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700903 if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
904 /* Disable SmartSpeed */
905 ret_val = e1e_rphy(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 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
911 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -0700912 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700913 if (ret_val)
914 return ret_val;
915
916 /* Set auto Master/Slave resolution process */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000917 ret_val = e1e_rphy(hw, MII_CTRL1000, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700918 if (ret_val)
919 return ret_val;
920
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000921 data &= ~CTL1000_ENABLE_MASTER;
922 ret_val = e1e_wphy(hw, MII_CTRL1000, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700923 if (ret_val)
924 return ret_val;
925 }
926
Bruce Allan7b9f7e32012-03-20 03:47:41 +0000927 ret_val = e1000_set_master_slave_mode(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 }
929
930 return ret_val;
931}
932
933/**
934 * e1000_phy_setup_autoneg - Configure PHY for auto-negotiation
935 * @hw: pointer to the HW structure
936 *
937 * Reads the MII auto-neg advertisement register and/or the 1000T control
938 * register and if the PHY is already setup for auto-negotiation, then
939 * return successful. Otherwise, setup advertisement and flow control to
940 * the appropriate values for the wanted auto-negotiation.
941 **/
942static s32 e1000_phy_setup_autoneg(struct e1000_hw *hw)
943{
944 struct e1000_phy_info *phy = &hw->phy;
945 s32 ret_val;
946 u16 mii_autoneg_adv_reg;
947 u16 mii_1000t_ctrl_reg = 0;
948
949 phy->autoneg_advertised &= phy->autoneg_mask;
950
951 /* Read the MII Auto-Neg Advertisement Register (Address 4). */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000952 ret_val = e1e_rphy(hw, MII_ADVERTISE, &mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700953 if (ret_val)
954 return ret_val;
955
956 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
957 /* Read the MII 1000Base-T Control Register (Address 9). */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000958 ret_val = e1e_rphy(hw, MII_CTRL1000, &mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700959 if (ret_val)
960 return ret_val;
961 }
962
Bruce Allane921eb12012-11-28 09:28:37 +0000963 /* Need to parse both autoneg_advertised and fc and set up
Auke Kokbc7f75f2007-09-17 12:30:59 -0700964 * the appropriate PHY registers. First we will parse for
965 * autoneg_advertised software override. Since we can advertise
966 * a plethora of combinations, we need to check each bit
967 * individually.
968 */
969
Bruce Allane921eb12012-11-28 09:28:37 +0000970 /* First we clear all the 10/100 mb speed bits in the Auto-Neg
Auke Kokbc7f75f2007-09-17 12:30:59 -0700971 * Advertisement Register (Address 4) and the 1000 mb speed bits in
972 * the 1000Base-T Control Register (Address 9).
973 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000974 mii_autoneg_adv_reg &= ~(ADVERTISE_100FULL |
975 ADVERTISE_100HALF |
976 ADVERTISE_10FULL | ADVERTISE_10HALF);
977 mii_1000t_ctrl_reg &= ~(ADVERTISE_1000HALF | ADVERTISE_1000FULL);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700978
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000979 e_dbg("autoneg_advertised %x\n", phy->autoneg_advertised);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700980
981 /* Do we want to advertise 10 Mb Half Duplex? */
982 if (phy->autoneg_advertised & ADVERTISE_10_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000983 e_dbg("Advertise 10mb Half duplex\n");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000984 mii_autoneg_adv_reg |= ADVERTISE_10HALF;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700985 }
986
987 /* Do we want to advertise 10 Mb Full Duplex? */
988 if (phy->autoneg_advertised & ADVERTISE_10_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000989 e_dbg("Advertise 10mb Full duplex\n");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000990 mii_autoneg_adv_reg |= ADVERTISE_10FULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700991 }
992
993 /* Do we want to advertise 100 Mb Half Duplex? */
994 if (phy->autoneg_advertised & ADVERTISE_100_HALF) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000995 e_dbg("Advertise 100mb Half duplex\n");
Bruce Allanc2ade1a2013-01-16 08:54:35 +0000996 mii_autoneg_adv_reg |= ADVERTISE_100HALF;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700997 }
998
999 /* Do we want to advertise 100 Mb Full Duplex? */
1000 if (phy->autoneg_advertised & ADVERTISE_100_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001001 e_dbg("Advertise 100mb Full duplex\n");
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001002 mii_autoneg_adv_reg |= ADVERTISE_100FULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001003 }
1004
1005 /* We do not allow the Phy to advertise 1000 Mb Half Duplex */
1006 if (phy->autoneg_advertised & ADVERTISE_1000_HALF)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001007 e_dbg("Advertise 1000mb Half duplex request denied!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001008
1009 /* Do we want to advertise 1000 Mb Full Duplex? */
1010 if (phy->autoneg_advertised & ADVERTISE_1000_FULL) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001011 e_dbg("Advertise 1000mb Full duplex\n");
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001012 mii_1000t_ctrl_reg |= ADVERTISE_1000FULL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001013 }
1014
Bruce Allane921eb12012-11-28 09:28:37 +00001015 /* Check for a software override of the flow control settings, and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001016 * setup the PHY advertisement registers accordingly. If
1017 * auto-negotiation is enabled, then software will have to set the
1018 * "PAUSE" bits to the correct value in the Auto-Negotiation
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001019 * Advertisement Register (MII_ADVERTISE) and re-start auto-
Auke Kokbc7f75f2007-09-17 12:30:59 -07001020 * negotiation.
1021 *
1022 * The possible values of the "fc" parameter are:
1023 * 0: Flow control is completely disabled
1024 * 1: Rx flow control is enabled (we can receive pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001025 * but not send pause frames).
Auke Kokbc7f75f2007-09-17 12:30:59 -07001026 * 2: Tx flow control is enabled (we can send pause frames
Bruce Allan3d3a1672012-02-23 03:13:18 +00001027 * but we do not support receiving pause frames).
Bruce Allanad680762008-03-28 09:15:03 -07001028 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001029 * other: No software override. The flow control configuration
Bruce Allan3d3a1672012-02-23 03:13:18 +00001030 * in the EEPROM is used.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001031 */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001032 switch (hw->fc.current_mode) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001033 case e1000_fc_none:
Bruce Allane921eb12012-11-28 09:28:37 +00001034 /* Flow control (Rx & Tx) is completely disabled by a
Auke Kokbc7f75f2007-09-17 12:30:59 -07001035 * software over-ride.
1036 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001037 mii_autoneg_adv_reg &=
1038 ~(ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001039 break;
1040 case e1000_fc_rx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001041 /* Rx Flow control is enabled, and Tx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001042 * disabled, by a software over-ride.
Bruce Allanad680762008-03-28 09:15:03 -07001043 *
1044 * Since there really isn't a way to advertise that we are
1045 * capable of Rx Pause ONLY, we will advertise that we
1046 * support both symmetric and asymmetric Rx PAUSE. Later
Auke Kokbc7f75f2007-09-17 12:30:59 -07001047 * (in e1000e_config_fc_after_link_up) we will disable the
1048 * hw's ability to send PAUSE frames.
1049 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001050 mii_autoneg_adv_reg |=
1051 (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001052 break;
1053 case e1000_fc_tx_pause:
Bruce Allane921eb12012-11-28 09:28:37 +00001054 /* Tx Flow control is enabled, and Rx Flow control is
Auke Kokbc7f75f2007-09-17 12:30:59 -07001055 * disabled, by a software over-ride.
1056 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001057 mii_autoneg_adv_reg |= ADVERTISE_PAUSE_ASYM;
1058 mii_autoneg_adv_reg &= ~ADVERTISE_PAUSE_CAP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001059 break;
1060 case e1000_fc_full:
Bruce Allane921eb12012-11-28 09:28:37 +00001061 /* Flow control (both Rx and Tx) is enabled by a software
Auke Kokbc7f75f2007-09-17 12:30:59 -07001062 * over-ride.
1063 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001064 mii_autoneg_adv_reg |=
1065 (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001066 break;
1067 default:
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001068 e_dbg("Flow control param set incorrectly\n");
Bruce Allan7eb61d82012-02-08 02:55:03 +00001069 return -E1000_ERR_CONFIG;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001070 }
1071
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001072 ret_val = e1e_wphy(hw, MII_ADVERTISE, mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001073 if (ret_val)
1074 return ret_val;
1075
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001076 e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001077
Bruce Allanb1cdfea2010-12-11 05:53:47 +00001078 if (phy->autoneg_mask & ADVERTISE_1000_FULL)
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001079 ret_val = e1e_wphy(hw, MII_CTRL1000, mii_1000t_ctrl_reg);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001080
1081 return ret_val;
1082}
1083
1084/**
1085 * e1000_copper_link_autoneg - Setup/Enable autoneg for copper link
1086 * @hw: pointer to the HW structure
1087 *
1088 * Performs initial bounds checking on autoneg advertisement parameter, then
1089 * configure to advertise the full capability. Setup the PHY to autoneg
1090 * and restart the negotiation process between the link partner. If
Bruce Allanad680762008-03-28 09:15:03 -07001091 * autoneg_wait_to_complete, then wait for autoneg to complete before exiting.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001092 **/
1093static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
1094{
1095 struct e1000_phy_info *phy = &hw->phy;
1096 s32 ret_val;
1097 u16 phy_ctrl;
1098
Bruce Allane921eb12012-11-28 09:28:37 +00001099 /* Perform some bounds checking on the autoneg advertisement
Auke Kokbc7f75f2007-09-17 12:30:59 -07001100 * parameter.
1101 */
1102 phy->autoneg_advertised &= phy->autoneg_mask;
1103
Bruce Allane921eb12012-11-28 09:28:37 +00001104 /* If autoneg_advertised is zero, we assume it was not defaulted
Auke Kokbc7f75f2007-09-17 12:30:59 -07001105 * by the calling code so we set to advertise full capability.
1106 */
Bruce Allan04499ec2012-04-13 00:08:31 +00001107 if (!phy->autoneg_advertised)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001108 phy->autoneg_advertised = phy->autoneg_mask;
1109
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001110 e_dbg("Reconfiguring auto-neg advertisement params\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001111 ret_val = e1000_phy_setup_autoneg(hw);
1112 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001113 e_dbg("Error Setting up Auto-Negotiation\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001114 return ret_val;
1115 }
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001116 e_dbg("Restarting Auto-Neg\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001117
Bruce Allane921eb12012-11-28 09:28:37 +00001118 /* Restart auto-negotiation by setting the Auto Neg Enable bit and
Auke Kokbc7f75f2007-09-17 12:30:59 -07001119 * the Auto Neg Restart bit in the PHY control register.
1120 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001121 ret_val = e1e_rphy(hw, MII_BMCR, &phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001122 if (ret_val)
1123 return ret_val;
1124
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001125 phy_ctrl |= (BMCR_ANENABLE | BMCR_ANRESTART);
1126 ret_val = e1e_wphy(hw, MII_BMCR, phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001127 if (ret_val)
1128 return ret_val;
1129
Bruce Allane921eb12012-11-28 09:28:37 +00001130 /* Does the user want to wait for Auto-Neg to complete here, or
Auke Kokbc7f75f2007-09-17 12:30:59 -07001131 * check at a later time (for example, callback routine).
1132 */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001133 if (phy->autoneg_wait_to_complete) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001134 ret_val = e1000_wait_autoneg(hw);
1135 if (ret_val) {
Bruce Allan434f1392011-12-16 00:46:54 +00001136 e_dbg("Error while waiting for autoneg to complete\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001137 return ret_val;
1138 }
1139 }
1140
Bruce Allanf92518d2012-02-01 11:16:42 +00001141 hw->mac.get_link_status = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001142
1143 return ret_val;
1144}
1145
1146/**
1147 * e1000e_setup_copper_link - Configure copper link settings
1148 * @hw: pointer to the HW structure
1149 *
1150 * Calls the appropriate function to configure the link for auto-neg or forced
1151 * speed and duplex. Then we check for link, once link is established calls
1152 * to configure collision distance and flow control are called. If link is
1153 * not established, we return -E1000_ERR_PHY (-2).
1154 **/
1155s32 e1000e_setup_copper_link(struct e1000_hw *hw)
1156{
1157 s32 ret_val;
1158 bool link;
1159
1160 if (hw->mac.autoneg) {
Bruce Allane921eb12012-11-28 09:28:37 +00001161 /* Setup autoneg and flow control advertisement and perform
Bruce Allanad680762008-03-28 09:15:03 -07001162 * autonegotiation.
1163 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001164 ret_val = e1000_copper_link_autoneg(hw);
1165 if (ret_val)
1166 return ret_val;
1167 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001168 /* PHY will be set to 10H, 10F, 100H or 100F
Bruce Allanad680762008-03-28 09:15:03 -07001169 * depending on user settings.
1170 */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001171 e_dbg("Forcing Speed and Duplex\n");
Bruce Allanc2c66292013-01-05 08:06:08 +00001172 ret_val = hw->phy.ops.force_speed_duplex(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001173 if (ret_val) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001174 e_dbg("Error Forcing Speed and Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001175 return ret_val;
1176 }
1177 }
1178
Bruce Allane921eb12012-11-28 09:28:37 +00001179 /* Check link status. Wait up to 100 microseconds for link to become
Auke Kokbc7f75f2007-09-17 12:30:59 -07001180 * valid.
1181 */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001182 ret_val = e1000e_phy_has_link_generic(hw, COPPER_LINK_UP_LIMIT, 10,
1183 &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001184 if (ret_val)
1185 return ret_val;
1186
1187 if (link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001188 e_dbg("Valid link established!!!\n");
Bruce Allan57cde762012-02-22 09:02:58 +00001189 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001190 ret_val = e1000e_config_fc_after_link_up(hw);
1191 } else {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001192 e_dbg("Unable to establish link!!!\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001193 }
1194
1195 return ret_val;
1196}
1197
1198/**
1199 * e1000e_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY
1200 * @hw: pointer to the HW structure
1201 *
1202 * Calls the PHY setup function to force speed and duplex. Clears the
1203 * auto-crossover to force MDI manually. Waits for link and returns
1204 * successful if link up is successful, else -E1000_ERR_PHY (-2).
1205 **/
1206s32 e1000e_phy_force_speed_duplex_igp(struct e1000_hw *hw)
1207{
1208 struct e1000_phy_info *phy = &hw->phy;
1209 s32 ret_val;
1210 u16 phy_data;
1211 bool link;
1212
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001213 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001214 if (ret_val)
1215 return ret_val;
1216
1217 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1218
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001219 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001220 if (ret_val)
1221 return ret_val;
1222
Bruce Allane921eb12012-11-28 09:28:37 +00001223 /* Clear Auto-Crossover to force MDI manually. IGP requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001224 * forced whenever speed and duplex are forced.
1225 */
1226 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1227 if (ret_val)
1228 return ret_val;
1229
1230 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1231 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1232
1233 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1234 if (ret_val)
1235 return ret_val;
1236
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001237 e_dbg("IGP PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001238
1239 udelay(1);
1240
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001241 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001242 e_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001243
Bruce Allan3d3a1672012-02-23 03:13:18 +00001244 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1245 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001246 if (ret_val)
1247 return ret_val;
1248
1249 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001250 e_dbg("Link taking longer than expected.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001251
1252 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001253 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1254 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001255 }
1256
1257 return ret_val;
1258}
1259
1260/**
1261 * e1000e_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY
1262 * @hw: pointer to the HW structure
1263 *
1264 * Calls the PHY setup function to force speed and duplex. Clears the
1265 * auto-crossover to force MDI manually. Resets the PHY to commit the
1266 * changes. If time expires while waiting for link up, we reset the DSP.
Bruce Allanad680762008-03-28 09:15:03 -07001267 * After reset, TX_CLK and CRS on Tx must be set. Return successful upon
Auke Kokbc7f75f2007-09-17 12:30:59 -07001268 * successful completion, else return corresponding error code.
1269 **/
1270s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw)
1271{
1272 struct e1000_phy_info *phy = &hw->phy;
1273 s32 ret_val;
1274 u16 phy_data;
1275 bool link;
1276
Bruce Allane921eb12012-11-28 09:28:37 +00001277 /* Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI
Auke Kokbc7f75f2007-09-17 12:30:59 -07001278 * forced whenever speed and duplex are forced.
1279 */
1280 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1281 if (ret_val)
1282 return ret_val;
1283
1284 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1285 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1286 if (ret_val)
1287 return ret_val;
1288
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001289 e_dbg("M88E1000 PSCR: %X\n", phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001290
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001291 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001292 if (ret_val)
1293 return ret_val;
1294
1295 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
1296
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001297 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001298 if (ret_val)
1299 return ret_val;
1300
Bruce Allan5aa49c82008-11-21 16:49:53 -08001301 /* Reset the phy to commit changes. */
Bruce Allan6b598e12013-01-23 06:50:05 +00001302 if (hw->phy.ops.commit) {
1303 ret_val = hw->phy.ops.commit(hw);
1304 if (ret_val)
1305 return ret_val;
1306 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001307
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001308 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001309 e_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001310
1311 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +00001312 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001313 if (ret_val)
1314 return ret_val;
1315
1316 if (!link) {
Bruce Allan0be84012009-12-02 17:03:18 +00001317 if (hw->phy.type != e1000_phy_m88) {
1318 e_dbg("Link taking longer than expected.\n");
1319 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001320 /* We didn't get link.
Bruce Allan0be84012009-12-02 17:03:18 +00001321 * Reset the DSP and cross our fingers.
1322 */
Bruce Allan482fed82011-01-06 14:29:49 +00001323 ret_val = e1e_wphy(hw, M88E1000_PHY_PAGE_SELECT,
1324 0x001d);
Bruce Allan0be84012009-12-02 17:03:18 +00001325 if (ret_val)
1326 return ret_val;
1327 ret_val = e1000e_phy_reset_dsp(hw);
1328 if (ret_val)
1329 return ret_val;
1330 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001331 }
1332
1333 /* Try once more */
1334 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
Bruce Allan17e813e2013-02-20 04:06:01 +00001335 100000, &link);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001336 if (ret_val)
1337 return ret_val;
1338 }
1339
Bruce Allan0be84012009-12-02 17:03:18 +00001340 if (hw->phy.type != e1000_phy_m88)
1341 return 0;
1342
Auke Kokbc7f75f2007-09-17 12:30:59 -07001343 ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1344 if (ret_val)
1345 return ret_val;
1346
Bruce Allane921eb12012-11-28 09:28:37 +00001347 /* Resetting the phy means we need to re-force TX_CLK in the
Auke Kokbc7f75f2007-09-17 12:30:59 -07001348 * Extended PHY Specific Control Register to 25MHz clock from
1349 * the reset value of 2.5MHz.
1350 */
1351 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1352 ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1353 if (ret_val)
1354 return ret_val;
1355
Bruce Allane921eb12012-11-28 09:28:37 +00001356 /* In addition, we must re-enable CRS on Tx for both half and full
Auke Kokbc7f75f2007-09-17 12:30:59 -07001357 * duplex.
1358 */
1359 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1360 if (ret_val)
1361 return ret_val;
1362
1363 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1364 ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1365
1366 return ret_val;
1367}
1368
1369/**
Bruce Allan0be84012009-12-02 17:03:18 +00001370 * e1000_phy_force_speed_duplex_ife - Force PHY speed & duplex
1371 * @hw: pointer to the HW structure
1372 *
1373 * Forces the speed and duplex settings of the PHY.
1374 * This is a function pointer entry point only called by
1375 * PHY setup routines.
1376 **/
1377s32 e1000_phy_force_speed_duplex_ife(struct e1000_hw *hw)
1378{
1379 struct e1000_phy_info *phy = &hw->phy;
1380 s32 ret_val;
1381 u16 data;
1382 bool link;
1383
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001384 ret_val = e1e_rphy(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 e1000e_phy_force_speed_duplex_setup(hw, &data);
1389
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001390 ret_val = e1e_wphy(hw, MII_BMCR, data);
Bruce Allan0be84012009-12-02 17:03:18 +00001391 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001392 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001393
1394 /* Disable MDI-X support for 10/100 */
1395 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
1396 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001397 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001398
1399 data &= ~IFE_PMC_AUTO_MDIX;
1400 data &= ~IFE_PMC_FORCE_MDIX;
1401
1402 ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data);
1403 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001404 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001405
1406 e_dbg("IFE PMC: %X\n", data);
1407
1408 udelay(1);
1409
1410 if (phy->autoneg_wait_to_complete) {
1411 e_dbg("Waiting for forced speed/duplex link on IFE phy.\n");
1412
Bruce Allan3d3a1672012-02-23 03:13:18 +00001413 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1414 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001415 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001416 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001417
1418 if (!link)
1419 e_dbg("Link taking longer than expected.\n");
1420
1421 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00001422 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
1423 100000, &link);
Bruce Allan0be84012009-12-02 17:03:18 +00001424 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001425 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00001426 }
1427
Bruce Allan5015e532012-02-08 02:55:56 +00001428 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00001429}
1430
1431/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001432 * e1000e_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex
1433 * @hw: pointer to the HW structure
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001434 * @phy_ctrl: pointer to current value of MII_BMCR
Auke Kokbc7f75f2007-09-17 12:30:59 -07001435 *
1436 * Forces speed and duplex on the PHY by doing the following: disable flow
1437 * control, force speed/duplex on the MAC, disable auto speed detection,
1438 * disable auto-negotiation, configure duplex, configure speed, configure
1439 * the collision distance, write configuration to CTRL register. The
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001440 * caller must write to the MII_BMCR register for these settings to
Auke Kokbc7f75f2007-09-17 12:30:59 -07001441 * take affect.
1442 **/
1443void e1000e_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl)
1444{
1445 struct e1000_mac_info *mac = &hw->mac;
1446 u32 ctrl;
1447
1448 /* Turn off flow control when forcing speed/duplex */
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08001449 hw->fc.current_mode = e1000_fc_none;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001450
1451 /* Force speed/duplex on the mac */
1452 ctrl = er32(CTRL);
1453 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1454 ctrl &= ~E1000_CTRL_SPD_SEL;
1455
1456 /* Disable Auto Speed Detection */
1457 ctrl &= ~E1000_CTRL_ASDE;
1458
1459 /* Disable autoneg on the phy */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001460 *phy_ctrl &= ~BMCR_ANENABLE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001461
1462 /* Forcing Full or Half Duplex? */
1463 if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
1464 ctrl &= ~E1000_CTRL_FD;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001465 *phy_ctrl &= ~BMCR_FULLDPLX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001466 e_dbg("Half Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001467 } else {
1468 ctrl |= E1000_CTRL_FD;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001469 *phy_ctrl |= BMCR_FULLDPLX;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001470 e_dbg("Full Duplex\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001471 }
1472
1473 /* Forcing 10mb or 100mb? */
1474 if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
1475 ctrl |= E1000_CTRL_SPD_100;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001476 *phy_ctrl |= BMCR_SPEED100;
1477 *phy_ctrl &= ~BMCR_SPEED1000;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001478 e_dbg("Forcing 100mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001479 } else {
1480 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001481 *phy_ctrl &= ~(BMCR_SPEED1000 | BMCR_SPEED100);
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001482 e_dbg("Forcing 10mb\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001483 }
1484
Bruce Allan57cde762012-02-22 09:02:58 +00001485 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001486
1487 ew32(CTRL, ctrl);
1488}
1489
1490/**
1491 * e1000e_set_d3_lplu_state - Sets low power link up state for D3
1492 * @hw: pointer to the HW structure
1493 * @active: boolean used to enable/disable lplu
1494 *
1495 * Success returns 0, Failure returns 1
1496 *
1497 * The low power link up (lplu) state is set to the power management level D3
1498 * and SmartSpeed is disabled when active is true, else clear lplu for D3
1499 * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU
1500 * is used during Dx states where the power conservation is most important.
1501 * During driver activity, SmartSpeed should be enabled so performance is
1502 * maintained.
1503 **/
1504s32 e1000e_set_d3_lplu_state(struct e1000_hw *hw, bool active)
1505{
1506 struct e1000_phy_info *phy = &hw->phy;
1507 s32 ret_val;
1508 u16 data;
1509
1510 ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1511 if (ret_val)
1512 return ret_val;
1513
1514 if (!active) {
1515 data &= ~IGP02E1000_PM_D3_LPLU;
David Graham2d9498f2008-04-23 11:09:14 -07001516 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001517 if (ret_val)
1518 return ret_val;
Bruce Allane921eb12012-11-28 09:28:37 +00001519 /* LPLU and SmartSpeed are mutually exclusive. LPLU is used
Auke Kokbc7f75f2007-09-17 12:30:59 -07001520 * during Dx states where the power conservation is most
1521 * important. During driver activity we should enable
Bruce Allanad680762008-03-28 09:15:03 -07001522 * SmartSpeed, so performance is maintained.
1523 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001524 if (phy->smart_speed == e1000_smart_speed_on) {
1525 ret_val = e1e_rphy(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
1530 data |= IGP01E1000_PSCFR_SMART_SPEED;
1531 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001532 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001533 if (ret_val)
1534 return ret_val;
1535 } else if (phy->smart_speed == e1000_smart_speed_off) {
1536 ret_val = e1e_rphy(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 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1542 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG,
Bruce Allanad680762008-03-28 09:15:03 -07001543 data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001544 if (ret_val)
1545 return ret_val;
1546 }
1547 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1548 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1549 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1550 data |= IGP02E1000_PM_D3_LPLU;
1551 ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data);
1552 if (ret_val)
1553 return ret_val;
1554
1555 /* When LPLU is enabled, we should disable SmartSpeed */
1556 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data);
1557 if (ret_val)
1558 return ret_val;
1559
1560 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1561 ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data);
1562 }
1563
1564 return ret_val;
1565}
1566
1567/**
Auke Kok489815c2008-02-21 15:11:07 -08001568 * e1000e_check_downshift - Checks whether a downshift in speed occurred
Auke Kokbc7f75f2007-09-17 12:30:59 -07001569 * @hw: pointer to the HW structure
1570 *
1571 * Success returns 0, Failure returns 1
1572 *
1573 * A downshift is detected by querying the PHY link health.
1574 **/
1575s32 e1000e_check_downshift(struct e1000_hw *hw)
1576{
1577 struct e1000_phy_info *phy = &hw->phy;
1578 s32 ret_val;
1579 u16 phy_data, offset, mask;
1580
1581 switch (phy->type) {
1582 case e1000_phy_m88:
1583 case e1000_phy_gg82563:
Bruce Allan07f025e2009-12-01 15:53:48 +00001584 case e1000_phy_bm:
Bruce Allana4f58f52009-06-02 11:29:18 +00001585 case e1000_phy_82578:
Bruce Allane80bd1d2013-05-01 01:19:46 +00001586 offset = M88E1000_PHY_SPEC_STATUS;
1587 mask = M88E1000_PSSR_DOWNSHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001588 break;
1589 case e1000_phy_igp_2:
1590 case e1000_phy_igp_3:
Bruce Allane80bd1d2013-05-01 01:19:46 +00001591 offset = IGP01E1000_PHY_LINK_HEALTH;
1592 mask = IGP01E1000_PLHR_SS_DOWNGRADE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001593 break;
1594 default:
1595 /* speed downshift not supported */
Bruce Allan564ea9b2009-11-20 23:26:44 +00001596 phy->speed_downgraded = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001597 return 0;
1598 }
1599
1600 ret_val = e1e_rphy(hw, offset, &phy_data);
1601
1602 if (!ret_val)
Bruce Allan04499ec2012-04-13 00:08:31 +00001603 phy->speed_downgraded = !!(phy_data & mask);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001604
1605 return ret_val;
1606}
1607
1608/**
1609 * e1000_check_polarity_m88 - Checks the polarity.
1610 * @hw: pointer to the HW structure
1611 *
1612 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1613 *
1614 * Polarity is determined based on the PHY specific status register.
1615 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001616s32 e1000_check_polarity_m88(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001617{
1618 struct e1000_phy_info *phy = &hw->phy;
1619 s32 ret_val;
1620 u16 data;
1621
1622 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &data);
1623
1624 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00001625 phy->cable_polarity = ((data & M88E1000_PSSR_REV_POLARITY)
1626 ? e1000_rev_polarity_reversed
1627 : e1000_rev_polarity_normal);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001628
1629 return ret_val;
1630}
1631
1632/**
1633 * e1000_check_polarity_igp - Checks the polarity.
1634 * @hw: pointer to the HW structure
1635 *
1636 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
1637 *
1638 * Polarity is determined based on the PHY port status register, and the
1639 * current speed (since there is no polarity at 100Mbps).
1640 **/
Bruce Allan0be84012009-12-02 17:03:18 +00001641s32 e1000_check_polarity_igp(struct e1000_hw *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001642{
1643 struct e1000_phy_info *phy = &hw->phy;
1644 s32 ret_val;
1645 u16 data, offset, mask;
1646
Bruce Allane921eb12012-11-28 09:28:37 +00001647 /* Polarity is determined based on the speed of
Bruce Allanad680762008-03-28 09:15:03 -07001648 * our connection.
1649 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001650 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1651 if (ret_val)
1652 return ret_val;
1653
1654 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1655 IGP01E1000_PSSR_SPEED_1000MBPS) {
Bruce Allane80bd1d2013-05-01 01:19:46 +00001656 offset = IGP01E1000_PHY_PCS_INIT_REG;
1657 mask = IGP01E1000_PHY_POLARITY_MASK;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001658 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00001659 /* This really only applies to 10Mbps since
Auke Kokbc7f75f2007-09-17 12:30:59 -07001660 * there is no polarity for 100Mbps (always 0).
1661 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00001662 offset = IGP01E1000_PHY_PORT_STATUS;
1663 mask = IGP01E1000_PSSR_POLARITY_REVERSED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001664 }
1665
1666 ret_val = e1e_rphy(hw, offset, &data);
1667
1668 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00001669 phy->cable_polarity = ((data & mask)
1670 ? e1000_rev_polarity_reversed
1671 : e1000_rev_polarity_normal);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001672
1673 return ret_val;
1674}
1675
1676/**
Bruce Allan0be84012009-12-02 17:03:18 +00001677 * e1000_check_polarity_ife - Check cable polarity for IFE PHY
1678 * @hw: pointer to the HW structure
1679 *
1680 * Polarity is determined on the polarity reversal feature being enabled.
1681 **/
1682s32 e1000_check_polarity_ife(struct e1000_hw *hw)
1683{
1684 struct e1000_phy_info *phy = &hw->phy;
1685 s32 ret_val;
1686 u16 phy_data, offset, mask;
1687
Bruce Allane921eb12012-11-28 09:28:37 +00001688 /* Polarity is determined based on the reversal feature being enabled.
Bruce Allan0be84012009-12-02 17:03:18 +00001689 */
1690 if (phy->polarity_correction) {
1691 offset = IFE_PHY_EXTENDED_STATUS_CONTROL;
1692 mask = IFE_PESC_POLARITY_REVERSED;
1693 } else {
1694 offset = IFE_PHY_SPECIAL_CONTROL;
1695 mask = IFE_PSC_FORCE_POLARITY;
1696 }
1697
1698 ret_val = e1e_rphy(hw, offset, &phy_data);
1699
1700 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00001701 phy->cable_polarity = ((phy_data & mask)
1702 ? e1000_rev_polarity_reversed
1703 : e1000_rev_polarity_normal);
Bruce Allan0be84012009-12-02 17:03:18 +00001704
1705 return ret_val;
1706}
1707
1708/**
Bruce Allanad680762008-03-28 09:15:03 -07001709 * e1000_wait_autoneg - Wait for auto-neg completion
Auke Kokbc7f75f2007-09-17 12:30:59 -07001710 * @hw: pointer to the HW structure
1711 *
1712 * Waits for auto-negotiation to complete or for the auto-negotiation time
1713 * limit to expire, which ever happens first.
1714 **/
1715static s32 e1000_wait_autoneg(struct e1000_hw *hw)
1716{
1717 s32 ret_val = 0;
1718 u16 i, phy_status;
1719
1720 /* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */
1721 for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001722 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001723 if (ret_val)
1724 break;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001725 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001726 if (ret_val)
1727 break;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001728 if (phy_status & BMSR_ANEGCOMPLETE)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001729 break;
1730 msleep(100);
1731 }
1732
Bruce Allane921eb12012-11-28 09:28:37 +00001733 /* PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation
Auke Kokbc7f75f2007-09-17 12:30:59 -07001734 * has completed.
1735 */
1736 return ret_val;
1737}
1738
1739/**
1740 * e1000e_phy_has_link_generic - Polls PHY for link
1741 * @hw: pointer to the HW structure
1742 * @iterations: number of times to poll for link
1743 * @usec_interval: delay between polling attempts
1744 * @success: pointer to whether polling was successful or not
1745 *
1746 * Polls the PHY status register for link, 'iterations' number of times.
1747 **/
1748s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
Bruce Allan17e813e2013-02-20 04:06:01 +00001749 u32 usec_interval, bool *success)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001750{
1751 s32 ret_val = 0;
1752 u16 i, phy_status;
1753
1754 for (i = 0; i < iterations; i++) {
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001755 /* Some PHYs require the MII_BMSR register to be read
Auke Kokbc7f75f2007-09-17 12:30:59 -07001756 * twice due to the link bit being sticky. No harm doing
1757 * it across the board.
1758 */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001759 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
David Ertman9e6c3b62013-12-14 07:18:18 +00001760 if (ret_val) {
Bruce Allane921eb12012-11-28 09:28:37 +00001761 /* If the first read fails, another entity may have
Bruce Allan906e8d92009-07-01 13:28:50 +00001762 * ownership of the resources, wait and try again to
1763 * see if they have relinquished the resources yet.
1764 */
David Ertman9e6c3b62013-12-14 07:18:18 +00001765 if (usec_interval >= 1000)
1766 msleep(usec_interval / 1000);
1767 else
1768 udelay(usec_interval);
1769 }
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001770 ret_val = e1e_rphy(hw, MII_BMSR, &phy_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001771 if (ret_val)
1772 break;
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001773 if (phy_status & BMSR_LSTATUS)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001774 break;
1775 if (usec_interval >= 1000)
David Ertman9e6c3b62013-12-14 07:18:18 +00001776 msleep(usec_interval / 1000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001777 else
1778 udelay(usec_interval);
1779 }
1780
1781 *success = (i < iterations);
1782
1783 return ret_val;
1784}
1785
1786/**
1787 * e1000e_get_cable_length_m88 - Determine cable length for m88 PHY
1788 * @hw: pointer to the HW structure
1789 *
1790 * Reads the PHY specific status register to retrieve the cable length
1791 * information. The cable length is determined by averaging the minimum and
1792 * maximum values to get the "average" cable length. The m88 PHY has four
1793 * possible cable length values, which are:
1794 * Register Value Cable Length
1795 * 0 < 50 meters
1796 * 1 50 - 80 meters
1797 * 2 80 - 110 meters
1798 * 3 110 - 140 meters
1799 * 4 > 140 meters
1800 **/
1801s32 e1000e_get_cable_length_m88(struct e1000_hw *hw)
1802{
1803 struct e1000_phy_info *phy = &hw->phy;
1804 s32 ret_val;
1805 u16 phy_data, index;
1806
1807 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1808 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00001809 return ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001810
Bruce Allanf0ff4392013-02-20 04:05:39 +00001811 index = ((phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
1812 M88E1000_PSSR_CABLE_LENGTH_SHIFT);
Bruce Allan5015e532012-02-08 02:55:56 +00001813
1814 if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1)
1815 return -E1000_ERR_PHY;
Bruce Allaneb656d42009-12-01 15:47:02 +00001816
Auke Kokbc7f75f2007-09-17 12:30:59 -07001817 phy->min_cable_length = e1000_m88_cable_length_table[index];
Bruce Allaneb656d42009-12-01 15:47:02 +00001818 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001819
1820 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1821
Bruce Allan5015e532012-02-08 02:55:56 +00001822 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001823}
1824
1825/**
1826 * e1000e_get_cable_length_igp_2 - Determine cable length for igp2 PHY
1827 * @hw: pointer to the HW structure
1828 *
1829 * The automatic gain control (agc) normalizes the amplitude of the
1830 * received signal, adjusting for the attenuation produced by the
Auke Kok489815c2008-02-21 15:11:07 -08001831 * cable. By reading the AGC registers, which represent the
Bruce Allan5ff5b662009-12-01 15:51:11 +00001832 * combination of coarse and fine gain value, the value can be put
Auke Kokbc7f75f2007-09-17 12:30:59 -07001833 * into a lookup table to obtain the approximate cable length
1834 * for each channel.
1835 **/
1836s32 e1000e_get_cable_length_igp_2(struct e1000_hw *hw)
1837{
1838 struct e1000_phy_info *phy = &hw->phy;
1839 s32 ret_val;
1840 u16 phy_data, i, agc_value = 0;
1841 u16 cur_agc_index, max_agc_index = 0;
1842 u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1;
Jeff Kirsher66744502010-12-01 19:59:50 +00001843 static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
Bruce Allanf0ff4392013-02-20 04:05:39 +00001844 IGP02E1000_PHY_AGC_A,
1845 IGP02E1000_PHY_AGC_B,
1846 IGP02E1000_PHY_AGC_C,
1847 IGP02E1000_PHY_AGC_D
Jeff Kirsher66744502010-12-01 19:59:50 +00001848 };
Auke Kokbc7f75f2007-09-17 12:30:59 -07001849
1850 /* Read the AGC registers for all channels */
1851 for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
1852 ret_val = e1e_rphy(hw, agc_reg_array[i], &phy_data);
1853 if (ret_val)
1854 return ret_val;
1855
Bruce Allane921eb12012-11-28 09:28:37 +00001856 /* Getting bits 15:9, which represent the combination of
Bruce Allan5ff5b662009-12-01 15:51:11 +00001857 * coarse and fine gain values. The result is a number
Auke Kokbc7f75f2007-09-17 12:30:59 -07001858 * that can be put into the lookup table to obtain the
Bruce Allanad680762008-03-28 09:15:03 -07001859 * approximate cable length.
1860 */
Bruce Allanf0ff4392013-02-20 04:05:39 +00001861 cur_agc_index = ((phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
1862 IGP02E1000_AGC_LENGTH_MASK);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001863
1864 /* Array index bound check. */
1865 if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) ||
1866 (cur_agc_index == 0))
1867 return -E1000_ERR_PHY;
1868
1869 /* Remove min & max AGC values from calculation. */
1870 if (e1000_igp_2_cable_length_table[min_agc_index] >
1871 e1000_igp_2_cable_length_table[cur_agc_index])
1872 min_agc_index = cur_agc_index;
1873 if (e1000_igp_2_cable_length_table[max_agc_index] <
1874 e1000_igp_2_cable_length_table[cur_agc_index])
1875 max_agc_index = cur_agc_index;
1876
1877 agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
1878 }
1879
1880 agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
1881 e1000_igp_2_cable_length_table[max_agc_index]);
1882 agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);
1883
1884 /* Calculate cable length with the error range of +/- 10 meters. */
Bruce Allanf0ff4392013-02-20 04:05:39 +00001885 phy->min_cable_length = (((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
1886 (agc_value - IGP02E1000_AGC_RANGE) : 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001887 phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;
1888
1889 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1890
Bruce Allan82607252012-02-08 02:55:09 +00001891 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001892}
1893
1894/**
1895 * e1000e_get_phy_info_m88 - Retrieve PHY information
1896 * @hw: pointer to the HW structure
1897 *
1898 * Valid for only copper links. Read the PHY status register (sticky read)
1899 * to verify that link is up. Read the PHY special control register to
1900 * determine the polarity and 10base-T extended distance. Read the PHY
1901 * special status register to determine MDI/MDIx and current speed. If
1902 * speed is 1000, then determine cable length, local and remote receiver.
1903 **/
1904s32 e1000e_get_phy_info_m88(struct e1000_hw *hw)
1905{
1906 struct e1000_phy_info *phy = &hw->phy;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001907 s32 ret_val;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001908 u16 phy_data;
1909 bool link;
1910
Bruce Allan0be84012009-12-02 17:03:18 +00001911 if (phy->media_type != e1000_media_type_copper) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001912 e_dbg("Phy info is only valid for copper media\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001913 return -E1000_ERR_CONFIG;
1914 }
1915
1916 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1917 if (ret_val)
1918 return ret_val;
1919
1920 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001921 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001922 return -E1000_ERR_CONFIG;
1923 }
1924
1925 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1926 if (ret_val)
1927 return ret_val;
1928
Bruce Allan04499ec2012-04-13 00:08:31 +00001929 phy->polarity_correction = !!(phy_data &
1930 M88E1000_PSCR_POLARITY_REVERSAL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001931
1932 ret_val = e1000_check_polarity_m88(hw);
1933 if (ret_val)
1934 return ret_val;
1935
1936 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1937 if (ret_val)
1938 return ret_val;
1939
Bruce Allan04499ec2012-04-13 00:08:31 +00001940 phy->is_mdix = !!(phy_data & M88E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001941
1942 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
Bruce Allandde3a572013-01-05 08:06:24 +00001943 ret_val = hw->phy.ops.get_cable_length(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001944 if (ret_val)
1945 return ret_val;
1946
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001947 ret_val = e1e_rphy(hw, MII_STAT1000, &phy_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001948 if (ret_val)
1949 return ret_val;
1950
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001951 phy->local_rx = (phy_data & LPA_1000LOCALRXOK)
1952 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001953
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001954 phy->remote_rx = (phy_data & LPA_1000REMRXOK)
1955 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001956 } else {
1957 /* Set values to "undefined" */
1958 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1959 phy->local_rx = e1000_1000t_rx_status_undefined;
1960 phy->remote_rx = e1000_1000t_rx_status_undefined;
1961 }
1962
1963 return ret_val;
1964}
1965
1966/**
1967 * e1000e_get_phy_info_igp - Retrieve igp PHY information
1968 * @hw: pointer to the HW structure
1969 *
1970 * Read PHY status to determine if link is up. If link is up, then
1971 * set/determine 10base-T extended distance and polarity correction. Read
1972 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
1973 * determine on the cable length, local and remote receiver.
1974 **/
1975s32 e1000e_get_phy_info_igp(struct e1000_hw *hw)
1976{
1977 struct e1000_phy_info *phy = &hw->phy;
1978 s32 ret_val;
1979 u16 data;
1980 bool link;
1981
1982 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
1983 if (ret_val)
1984 return ret_val;
1985
1986 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001987 e_dbg("Phy info is only valid if link is up\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001988 return -E1000_ERR_CONFIG;
1989 }
1990
Bruce Allan564ea9b2009-11-20 23:26:44 +00001991 phy->polarity_correction = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001992
1993 ret_val = e1000_check_polarity_igp(hw);
1994 if (ret_val)
1995 return ret_val;
1996
1997 ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1998 if (ret_val)
1999 return ret_val;
2000
Bruce Allan04499ec2012-04-13 00:08:31 +00002001 phy->is_mdix = !!(data & IGP01E1000_PSSR_MDIX);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002002
2003 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
2004 IGP01E1000_PSSR_SPEED_1000MBPS) {
Bruce Allandde3a572013-01-05 08:06:24 +00002005 ret_val = phy->ops.get_cable_length(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002006 if (ret_val)
2007 return ret_val;
2008
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002009 ret_val = e1e_rphy(hw, MII_STAT1000, &data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002010 if (ret_val)
2011 return ret_val;
2012
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002013 phy->local_rx = (data & LPA_1000LOCALRXOK)
2014 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002015
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002016 phy->remote_rx = (data & LPA_1000REMRXOK)
2017 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002018 } else {
2019 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2020 phy->local_rx = e1000_1000t_rx_status_undefined;
2021 phy->remote_rx = e1000_1000t_rx_status_undefined;
2022 }
2023
2024 return ret_val;
2025}
2026
2027/**
Bruce Allan0be84012009-12-02 17:03:18 +00002028 * e1000_get_phy_info_ife - Retrieves various IFE PHY states
2029 * @hw: pointer to the HW structure
2030 *
2031 * Populates "phy" structure with various feature states.
2032 **/
2033s32 e1000_get_phy_info_ife(struct e1000_hw *hw)
2034{
2035 struct e1000_phy_info *phy = &hw->phy;
2036 s32 ret_val;
2037 u16 data;
2038 bool link;
2039
2040 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
2041 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002042 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002043
2044 if (!link) {
2045 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002046 return -E1000_ERR_CONFIG;
Bruce Allan0be84012009-12-02 17:03:18 +00002047 }
2048
2049 ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data);
2050 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002051 return ret_val;
Bruce Allan04499ec2012-04-13 00:08:31 +00002052 phy->polarity_correction = !(data & IFE_PSC_AUTO_POLARITY_DISABLE);
Bruce Allan0be84012009-12-02 17:03:18 +00002053
2054 if (phy->polarity_correction) {
2055 ret_val = e1000_check_polarity_ife(hw);
2056 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002057 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002058 } else {
2059 /* Polarity is forced */
Bruce Allanf0ff4392013-02-20 04:05:39 +00002060 phy->cable_polarity = ((data & IFE_PSC_FORCE_POLARITY)
2061 ? e1000_rev_polarity_reversed
2062 : e1000_rev_polarity_normal);
Bruce Allan0be84012009-12-02 17:03:18 +00002063 }
2064
2065 ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data);
2066 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00002067 return ret_val;
Bruce Allan0be84012009-12-02 17:03:18 +00002068
Bruce Allan04499ec2012-04-13 00:08:31 +00002069 phy->is_mdix = !!(data & IFE_PMC_MDIX_STATUS);
Bruce Allan0be84012009-12-02 17:03:18 +00002070
2071 /* The following parameters are undefined for 10/100 operation. */
2072 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2073 phy->local_rx = e1000_1000t_rx_status_undefined;
2074 phy->remote_rx = e1000_1000t_rx_status_undefined;
2075
Bruce Allan5015e532012-02-08 02:55:56 +00002076 return 0;
Bruce Allan0be84012009-12-02 17:03:18 +00002077}
2078
2079/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002080 * e1000e_phy_sw_reset - PHY software reset
2081 * @hw: pointer to the HW structure
2082 *
2083 * Does a software reset of the PHY by reading the PHY control register and
2084 * setting/write the control register reset bit to the PHY.
2085 **/
2086s32 e1000e_phy_sw_reset(struct e1000_hw *hw)
2087{
2088 s32 ret_val;
2089 u16 phy_ctrl;
2090
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002091 ret_val = e1e_rphy(hw, MII_BMCR, &phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002092 if (ret_val)
2093 return ret_val;
2094
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002095 phy_ctrl |= BMCR_RESET;
2096 ret_val = e1e_wphy(hw, MII_BMCR, phy_ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002097 if (ret_val)
2098 return ret_val;
2099
2100 udelay(1);
2101
2102 return ret_val;
2103}
2104
2105/**
2106 * e1000e_phy_hw_reset_generic - PHY hardware reset
2107 * @hw: pointer to the HW structure
2108 *
2109 * Verify the reset block is not blocking us from resetting. Acquire
2110 * semaphore (if necessary) and read/set/write the device control reset
2111 * bit in the PHY. Wait the appropriate delay time for the device to
Auke Kok489815c2008-02-21 15:11:07 -08002112 * reset and release the semaphore (if necessary).
Auke Kokbc7f75f2007-09-17 12:30:59 -07002113 **/
2114s32 e1000e_phy_hw_reset_generic(struct e1000_hw *hw)
2115{
2116 struct e1000_phy_info *phy = &hw->phy;
2117 s32 ret_val;
2118 u32 ctrl;
2119
Bruce Allan470a5422012-05-26 06:08:48 +00002120 if (phy->ops.check_reset_block) {
2121 ret_val = phy->ops.check_reset_block(hw);
2122 if (ret_val)
2123 return 0;
2124 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002125
Bruce Allan94d81862009-11-20 23:25:26 +00002126 ret_val = phy->ops.acquire(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002127 if (ret_val)
2128 return ret_val;
2129
2130 ctrl = er32(CTRL);
2131 ew32(CTRL, ctrl | E1000_CTRL_PHY_RST);
2132 e1e_flush();
2133
2134 udelay(phy->reset_delay_us);
2135
2136 ew32(CTRL, ctrl);
2137 e1e_flush();
2138
Bruce Allance43a212013-02-20 04:06:32 +00002139 usleep_range(150, 300);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002140
Bruce Allan94d81862009-11-20 23:25:26 +00002141 phy->ops.release(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002142
Bruce Allan84c1bef2013-01-05 08:06:19 +00002143 return phy->ops.get_cfg_done(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002144}
2145
2146/**
Bruce Allanfe908492013-01-05 08:06:14 +00002147 * e1000e_get_cfg_done_generic - Generic configuration done
Auke Kokbc7f75f2007-09-17 12:30:59 -07002148 * @hw: pointer to the HW structure
2149 *
2150 * Generic function to wait 10 milli-seconds for configuration to complete
2151 * and return success.
2152 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00002153s32 e1000e_get_cfg_done_generic(struct e1000_hw __always_unused *hw)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002154{
2155 mdelay(10);
Bruce Allan3d3a1672012-02-23 03:13:18 +00002156
Auke Kokbc7f75f2007-09-17 12:30:59 -07002157 return 0;
2158}
2159
Bruce Allanf4187b52008-08-26 18:36:50 -07002160/**
2161 * e1000e_phy_init_script_igp3 - Inits the IGP3 PHY
2162 * @hw: pointer to the HW structure
2163 *
2164 * Initializes a Intel Gigabit PHY3 when an EEPROM is not present.
2165 **/
2166s32 e1000e_phy_init_script_igp3(struct e1000_hw *hw)
2167{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002168 e_dbg("Running IGP 3 PHY init script\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07002169
2170 /* PHY init IGP 3 */
2171 /* Enable rise/fall, 10-mode work in class-A */
2172 e1e_wphy(hw, 0x2F5B, 0x9018);
2173 /* Remove all caps from Replica path filter */
2174 e1e_wphy(hw, 0x2F52, 0x0000);
2175 /* Bias trimming for ADC, AFE and Driver (Default) */
2176 e1e_wphy(hw, 0x2FB1, 0x8B24);
2177 /* Increase Hybrid poly bias */
2178 e1e_wphy(hw, 0x2FB2, 0xF8F0);
2179 /* Add 4% to Tx amplitude in Gig mode */
2180 e1e_wphy(hw, 0x2010, 0x10B0);
2181 /* Disable trimming (TTT) */
2182 e1e_wphy(hw, 0x2011, 0x0000);
2183 /* Poly DC correction to 94.6% + 2% for all channels */
2184 e1e_wphy(hw, 0x20DD, 0x249A);
2185 /* ABS DC correction to 95.9% */
2186 e1e_wphy(hw, 0x20DE, 0x00D3);
2187 /* BG temp curve trim */
2188 e1e_wphy(hw, 0x28B4, 0x04CE);
2189 /* Increasing ADC OPAMP stage 1 currents to max */
2190 e1e_wphy(hw, 0x2F70, 0x29E4);
2191 /* Force 1000 ( required for enabling PHY regs configuration) */
2192 e1e_wphy(hw, 0x0000, 0x0140);
2193 /* Set upd_freq to 6 */
2194 e1e_wphy(hw, 0x1F30, 0x1606);
2195 /* Disable NPDFE */
2196 e1e_wphy(hw, 0x1F31, 0xB814);
2197 /* Disable adaptive fixed FFE (Default) */
2198 e1e_wphy(hw, 0x1F35, 0x002A);
2199 /* Enable FFE hysteresis */
2200 e1e_wphy(hw, 0x1F3E, 0x0067);
2201 /* Fixed FFE for short cable lengths */
2202 e1e_wphy(hw, 0x1F54, 0x0065);
2203 /* Fixed FFE for medium cable lengths */
2204 e1e_wphy(hw, 0x1F55, 0x002A);
2205 /* Fixed FFE for long cable lengths */
2206 e1e_wphy(hw, 0x1F56, 0x002A);
2207 /* Enable Adaptive Clip Threshold */
2208 e1e_wphy(hw, 0x1F72, 0x3FB0);
2209 /* AHT reset limit to 1 */
2210 e1e_wphy(hw, 0x1F76, 0xC0FF);
2211 /* Set AHT master delay to 127 msec */
2212 e1e_wphy(hw, 0x1F77, 0x1DEC);
2213 /* Set scan bits for AHT */
2214 e1e_wphy(hw, 0x1F78, 0xF9EF);
2215 /* Set AHT Preset bits */
2216 e1e_wphy(hw, 0x1F79, 0x0210);
2217 /* Change integ_factor of channel A to 3 */
2218 e1e_wphy(hw, 0x1895, 0x0003);
2219 /* Change prop_factor of channels BCD to 8 */
2220 e1e_wphy(hw, 0x1796, 0x0008);
2221 /* Change cg_icount + enable integbp for channels BCD */
2222 e1e_wphy(hw, 0x1798, 0xD008);
Bruce Allane921eb12012-11-28 09:28:37 +00002223 /* Change cg_icount + enable integbp + change prop_factor_master
Bruce Allanf4187b52008-08-26 18:36:50 -07002224 * to 8 for channel A
2225 */
2226 e1e_wphy(hw, 0x1898, 0xD918);
2227 /* Disable AHT in Slave mode on channel A */
2228 e1e_wphy(hw, 0x187A, 0x0800);
Bruce Allane921eb12012-11-28 09:28:37 +00002229 /* Enable LPLU and disable AN to 1000 in non-D0a states,
Bruce Allanf4187b52008-08-26 18:36:50 -07002230 * Enable SPD+B2B
2231 */
2232 e1e_wphy(hw, 0x0019, 0x008D);
2233 /* Enable restart AN on an1000_dis change */
2234 e1e_wphy(hw, 0x001B, 0x2080);
2235 /* Enable wh_fifo read clock in 10/100 modes */
2236 e1e_wphy(hw, 0x0014, 0x0045);
2237 /* Restart AN, Speed selection is 1000 */
2238 e1e_wphy(hw, 0x0000, 0x1340);
2239
2240 return 0;
2241}
2242
Auke Kokbc7f75f2007-09-17 12:30:59 -07002243/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002244 * e1000e_get_phy_type_from_id - Get PHY type from id
2245 * @phy_id: phy_id read from the phy
2246 *
2247 * Returns the phy type from the id.
2248 **/
2249enum e1000_phy_type e1000e_get_phy_type_from_id(u32 phy_id)
2250{
2251 enum e1000_phy_type phy_type = e1000_phy_unknown;
2252
2253 switch (phy_id) {
2254 case M88E1000_I_PHY_ID:
2255 case M88E1000_E_PHY_ID:
2256 case M88E1111_I_PHY_ID:
2257 case M88E1011_I_PHY_ID:
2258 phy_type = e1000_phy_m88;
2259 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002260 case IGP01E1000_I_PHY_ID: /* IGP 1 & 2 share this */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002261 phy_type = e1000_phy_igp_2;
2262 break;
2263 case GG82563_E_PHY_ID:
2264 phy_type = e1000_phy_gg82563;
2265 break;
2266 case IGP03E1000_E_PHY_ID:
2267 phy_type = e1000_phy_igp_3;
2268 break;
2269 case IFE_E_PHY_ID:
2270 case IFE_PLUS_E_PHY_ID:
2271 case IFE_C_E_PHY_ID:
2272 phy_type = e1000_phy_ife;
2273 break;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002274 case BME1000_E_PHY_ID:
2275 case BME1000_E_PHY_ID_R2:
2276 phy_type = e1000_phy_bm;
2277 break;
Bruce Allana4f58f52009-06-02 11:29:18 +00002278 case I82578_E_PHY_ID:
2279 phy_type = e1000_phy_82578;
2280 break;
2281 case I82577_E_PHY_ID:
2282 phy_type = e1000_phy_82577;
2283 break;
Bruce Alland3738bb2010-06-16 13:27:28 +00002284 case I82579_E_PHY_ID:
2285 phy_type = e1000_phy_82579;
2286 break;
Bruce Allan2fbe4522012-04-19 03:21:47 +00002287 case I217_E_PHY_ID:
2288 phy_type = e1000_phy_i217;
2289 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002290 default:
2291 phy_type = e1000_phy_unknown;
2292 break;
2293 }
2294 return phy_type;
2295}
2296
2297/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002298 * e1000e_determine_phy_address - Determines PHY address.
2299 * @hw: pointer to the HW structure
2300 *
2301 * This uses a trial and error method to loop through possible PHY
2302 * addresses. It tests each by reading the PHY ID registers and
2303 * checking for a match.
2304 **/
2305s32 e1000e_determine_phy_address(struct e1000_hw *hw)
2306{
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002307 u32 phy_addr = 0;
2308 u32 i;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002309 enum e1000_phy_type phy_type = e1000_phy_unknown;
2310
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002311 hw->phy.id = phy_type;
2312
2313 for (phy_addr = 0; phy_addr < E1000_MAX_PHY_ADDR; phy_addr++) {
2314 hw->phy.addr = phy_addr;
2315 i = 0;
2316
2317 do {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002318 e1000e_get_phy_id(hw);
2319 phy_type = e1000e_get_phy_type_from_id(hw->phy.id);
2320
Bruce Allane921eb12012-11-28 09:28:37 +00002321 /* If phy_type is valid, break - we found our
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002322 * PHY address
2323 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00002324 if (phy_type != e1000_phy_unknown)
Bruce Allan5015e532012-02-08 02:55:56 +00002325 return 0;
2326
Bruce Allan1bba4382011-03-19 00:27:20 +00002327 usleep_range(1000, 2000);
Bruce Allan5eb6f3c2009-12-02 17:02:43 +00002328 i++;
2329 } while (i < 10);
2330 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002331
Bruce Allan5015e532012-02-08 02:55:56 +00002332 return -E1000_ERR_PHY_TYPE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002333}
2334
2335/**
2336 * e1000_get_phy_addr_for_bm_page - Retrieve PHY page address
2337 * @page: page to access
2338 *
2339 * Returns the phy address for the page requested.
2340 **/
2341static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg)
2342{
2343 u32 phy_addr = 2;
2344
2345 if ((page >= 768) || (page == 0 && reg == 25) || (reg == 31))
2346 phy_addr = 1;
2347
2348 return phy_addr;
2349}
2350
2351/**
2352 * e1000e_write_phy_reg_bm - Write BM PHY register
2353 * @hw: pointer to the HW structure
2354 * @offset: register offset to write to
2355 * @data: data to write at register offset
2356 *
2357 * Acquires semaphore, if necessary, then writes the data to PHY register
2358 * at the offset. Release any acquired semaphores before exiting.
2359 **/
2360s32 e1000e_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data)
2361{
2362 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002363 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002364
Bruce Allan94d81862009-11-20 23:25:26 +00002365 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002366 if (ret_val)
2367 return ret_val;
2368
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002369 /* Page 800 works differently than the rest so it has its own func */
2370 if (page == BM_WUC_PAGE) {
2371 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002372 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002373 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002374 }
2375
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002376 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2377
2378 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002379 u32 page_shift, page_select;
2380
Bruce Allane921eb12012-11-28 09:28:37 +00002381 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002382 * phy address 2 and 3. Page select is shifted only for
2383 * phy address 1.
2384 */
2385 if (hw->phy.addr == 1) {
2386 page_shift = IGP_PAGE_SHIFT;
2387 page_select = IGP01E1000_PHY_PAGE_SELECT;
2388 } else {
2389 page_shift = 0;
2390 page_select = BM_PHY_PAGE_SELECT;
2391 }
2392
2393 /* Page is shifted left, PHY expects (page x 32) */
2394 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002395 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002396 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002397 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002398 }
2399
2400 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002401 data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002402
Bruce Allan75ce1532012-02-08 02:54:48 +00002403release:
Bruce Allan94d81862009-11-20 23:25:26 +00002404 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002405 return ret_val;
2406}
2407
2408/**
2409 * e1000e_read_phy_reg_bm - Read BM PHY register
2410 * @hw: pointer to the HW structure
2411 * @offset: register offset to be read
2412 * @data: pointer to the read data
2413 *
2414 * Acquires semaphore, if necessary, then reads the PHY register at offset
2415 * and storing the retrieved information in data. Release any acquired
2416 * semaphores before exiting.
2417 **/
2418s32 e1000e_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data)
2419{
2420 s32 ret_val;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002421 u32 page = offset >> IGP_PAGE_SHIFT;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002422
Bruce Allan94d81862009-11-20 23:25:26 +00002423 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002424 if (ret_val)
2425 return ret_val;
2426
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002427 /* Page 800 works differently than the rest so it has its own func */
2428 if (page == BM_WUC_PAGE) {
2429 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002430 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002431 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002432 }
2433
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002434 hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset);
2435
2436 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan90da0662011-01-06 07:02:53 +00002437 u32 page_shift, page_select;
2438
Bruce Allane921eb12012-11-28 09:28:37 +00002439 /* Page select is register 31 for phy address 1 and 22 for
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002440 * phy address 2 and 3. Page select is shifted only for
2441 * phy address 1.
2442 */
2443 if (hw->phy.addr == 1) {
2444 page_shift = IGP_PAGE_SHIFT;
2445 page_select = IGP01E1000_PHY_PAGE_SELECT;
2446 } else {
2447 page_shift = 0;
2448 page_select = BM_PHY_PAGE_SELECT;
2449 }
2450
2451 /* Page is shifted left, PHY expects (page x 32) */
2452 ret_val = e1000e_write_phy_reg_mdic(hw, page_select,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002453 (page << page_shift));
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002454 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002455 goto release;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002456 }
2457
2458 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002459 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002460release:
Bruce Allan94d81862009-11-20 23:25:26 +00002461 hw->phy.ops.release(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002462 return ret_val;
2463}
2464
2465/**
Bruce Allan4662e822008-08-26 18:37:06 -07002466 * e1000e_read_phy_reg_bm2 - Read BM PHY register
2467 * @hw: pointer to the HW structure
2468 * @offset: register offset to be read
2469 * @data: pointer to the read data
2470 *
2471 * Acquires semaphore, if necessary, then reads the PHY register at offset
2472 * and storing the retrieved information in data. Release any acquired
2473 * semaphores before exiting.
2474 **/
2475s32 e1000e_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data)
2476{
2477 s32 ret_val;
2478 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2479
Bruce Allan94d81862009-11-20 23:25:26 +00002480 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002481 if (ret_val)
2482 return ret_val;
2483
Bruce Allan4662e822008-08-26 18:37:06 -07002484 /* Page 800 works differently than the rest so it has its own func */
2485 if (page == BM_WUC_PAGE) {
2486 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002487 true, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002488 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002489 }
2490
Bruce Allan4662e822008-08-26 18:37:06 -07002491 hw->phy.addr = 1;
2492
2493 if (offset > MAX_PHY_MULTI_PAGE_REG) {
Bruce Allan4662e822008-08-26 18:37:06 -07002494 /* Page is shifted left, PHY expects (page x 32) */
2495 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2496 page);
2497
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002498 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002499 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002500 }
2501
2502 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2503 data);
Bruce Allan75ce1532012-02-08 02:54:48 +00002504release:
Bruce Allan94d81862009-11-20 23:25:26 +00002505 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002506 return ret_val;
2507}
2508
2509/**
2510 * e1000e_write_phy_reg_bm2 - Write BM PHY register
2511 * @hw: pointer to the HW structure
2512 * @offset: register offset to write to
2513 * @data: data to write at register offset
2514 *
2515 * Acquires semaphore, if necessary, then writes the data to PHY register
2516 * at the offset. Release any acquired semaphores before exiting.
2517 **/
2518s32 e1000e_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data)
2519{
2520 s32 ret_val;
2521 u16 page = (u16)(offset >> IGP_PAGE_SHIFT);
2522
Bruce Allan94d81862009-11-20 23:25:26 +00002523 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002524 if (ret_val)
2525 return ret_val;
2526
Bruce Allan4662e822008-08-26 18:37:06 -07002527 /* Page 800 works differently than the rest so it has its own func */
2528 if (page == BM_WUC_PAGE) {
2529 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002530 false, false);
Bruce Allan75ce1532012-02-08 02:54:48 +00002531 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002532 }
2533
Bruce Allan4662e822008-08-26 18:37:06 -07002534 hw->phy.addr = 1;
2535
2536 if (offset > MAX_PHY_MULTI_PAGE_REG) {
2537 /* Page is shifted left, PHY expects (page x 32) */
2538 ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT,
2539 page);
2540
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002541 if (ret_val)
Bruce Allan75ce1532012-02-08 02:54:48 +00002542 goto release;
Bruce Allan4662e822008-08-26 18:37:06 -07002543 }
2544
2545 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
2546 data);
2547
Bruce Allan75ce1532012-02-08 02:54:48 +00002548release:
Bruce Allan94d81862009-11-20 23:25:26 +00002549 hw->phy.ops.release(hw);
Bruce Allan4662e822008-08-26 18:37:06 -07002550 return ret_val;
2551}
2552
2553/**
Bruce Allan2b6b1682011-05-13 07:20:09 +00002554 * e1000_enable_phy_wakeup_reg_access_bm - enable access to BM wakeup registers
2555 * @hw: pointer to the HW structure
2556 * @phy_reg: pointer to store original contents of BM_WUC_ENABLE_REG
2557 *
2558 * Assumes semaphore already acquired and phy_reg points to a valid memory
2559 * address to store contents of the BM_WUC_ENABLE_REG register.
2560 **/
2561s32 e1000_enable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2562{
2563 s32 ret_val;
2564 u16 temp;
2565
2566 /* All page select, port ctrl and wakeup registers use phy address 1 */
2567 hw->phy.addr = 1;
2568
2569 /* Select Port Control Registers page */
2570 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2571 if (ret_val) {
2572 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002573 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002574 }
2575
2576 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
2577 if (ret_val) {
2578 e_dbg("Could not read PHY register %d.%d\n",
2579 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002580 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002581 }
2582
Bruce Allane921eb12012-11-28 09:28:37 +00002583 /* Enable both PHY wakeup mode and Wakeup register page writes.
Bruce Allan2b6b1682011-05-13 07:20:09 +00002584 * Prevent a power state change by disabling ME and Host PHY wakeup.
2585 */
2586 temp = *phy_reg;
2587 temp |= BM_WUC_ENABLE_BIT;
2588 temp &= ~(BM_WUC_ME_WU_BIT | BM_WUC_HOST_WU_BIT);
2589
2590 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, temp);
2591 if (ret_val) {
2592 e_dbg("Could not write PHY register %d.%d\n",
2593 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002594 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002595 }
2596
Bruce Allane921eb12012-11-28 09:28:37 +00002597 /* Select Host Wakeup Registers page - caller now able to write
Bruce Allan5015e532012-02-08 02:55:56 +00002598 * registers on the Wakeup registers page
2599 */
2600 return e1000_set_page_igp(hw, (BM_WUC_PAGE << IGP_PAGE_SHIFT));
Bruce Allan2b6b1682011-05-13 07:20:09 +00002601}
2602
2603/**
2604 * e1000_disable_phy_wakeup_reg_access_bm - disable access to BM wakeup regs
2605 * @hw: pointer to the HW structure
2606 * @phy_reg: pointer to original contents of BM_WUC_ENABLE_REG
2607 *
2608 * Restore BM_WUC_ENABLE_REG to its original value.
2609 *
2610 * Assumes semaphore already acquired and *phy_reg is the contents of the
2611 * BM_WUC_ENABLE_REG before register(s) on BM_WUC_PAGE were accessed by
2612 * caller.
2613 **/
2614s32 e1000_disable_phy_wakeup_reg_access_bm(struct e1000_hw *hw, u16 *phy_reg)
2615{
Bruce Allan70806a72013-01-05 05:08:37 +00002616 s32 ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002617
2618 /* Select Port Control Registers page */
2619 ret_val = e1000_set_page_igp(hw, (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT));
2620 if (ret_val) {
2621 e_dbg("Could not set Port Control page\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002622 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002623 }
2624
2625 /* Restore 769.17 to its original value */
2626 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, *phy_reg);
2627 if (ret_val)
2628 e_dbg("Could not restore PHY register %d.%d\n",
2629 BM_PORT_CTRL_PAGE, BM_WUC_ENABLE_REG);
Bruce Allan5015e532012-02-08 02:55:56 +00002630
Bruce Allan2b6b1682011-05-13 07:20:09 +00002631 return ret_val;
2632}
2633
2634/**
2635 * e1000_access_phy_wakeup_reg_bm - Read/write BM PHY wakeup register
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002636 * @hw: pointer to the HW structure
2637 * @offset: register offset to be read or written
2638 * @data: pointer to the data to read or write
2639 * @read: determines if operation is read or write
Bruce Allan2b6b1682011-05-13 07:20:09 +00002640 * @page_set: BM_WUC_PAGE already set and access enabled
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002641 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002642 * Read the PHY register at offset and store the retrieved information in
2643 * data, or write data to PHY register at offset. Note the procedure to
2644 * access the PHY wakeup registers is different than reading the other PHY
2645 * registers. It works as such:
2646 * 1) Set 769.17.2 (page 769, register 17, bit 2) = 1
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002647 * 2) Set page to 800 for host (801 if we were manageability)
2648 * 3) Write the address using the address opcode (0x11)
2649 * 4) Read or write the data using the data opcode (0x12)
Bruce Allan2b6b1682011-05-13 07:20:09 +00002650 * 5) Restore 769.17.2 to its original value
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002651 *
Bruce Allan2b6b1682011-05-13 07:20:09 +00002652 * Steps 1 and 2 are done by e1000_enable_phy_wakeup_reg_access_bm() and
2653 * step 5 is done by e1000_disable_phy_wakeup_reg_access_bm().
2654 *
2655 * Assumes semaphore is already acquired. When page_set==true, assumes
2656 * the PHY page is set to BM_WUC_PAGE (i.e. a function in the call stack
2657 * is responsible for calls to e1000_[enable|disable]_phy_wakeup_reg_bm()).
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002658 **/
2659static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002660 u16 *data, bool read, bool page_set)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002661{
2662 s32 ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00002663 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002664 u16 page = BM_PHY_REG_PAGE(offset);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002665 u16 phy_reg = 0;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002666
Bruce Allan2b6b1682011-05-13 07:20:09 +00002667 /* Gig must be disabled for MDIO accesses to Host Wakeup reg page */
Bruce Allana4f58f52009-06-02 11:29:18 +00002668 if ((hw->mac.type == e1000_pchlan) &&
Bruce Allan2b6b1682011-05-13 07:20:09 +00002669 (!(er32(PHY_CTRL) & E1000_PHY_CTRL_GBE_DISABLE)))
2670 e_dbg("Attempting to access page %d while gig enabled.\n",
2671 page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002672
Bruce Allan2b6b1682011-05-13 07:20:09 +00002673 if (!page_set) {
2674 /* Enable access to PHY wakeup registers */
2675 ret_val = e1000_enable_phy_wakeup_reg_access_bm(hw, &phy_reg);
2676 if (ret_val) {
2677 e_dbg("Could not enable PHY wakeup reg access\n");
Bruce Allan5015e532012-02-08 02:55:56 +00002678 return ret_val;
Bruce Allan2b6b1682011-05-13 07:20:09 +00002679 }
Bruce Allan9b71b412009-12-01 15:53:07 +00002680 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002681
Bruce Allan2b6b1682011-05-13 07:20:09 +00002682 e_dbg("Accessing PHY page %d reg 0x%x\n", page, reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002683
Bruce Allan2b6b1682011-05-13 07:20:09 +00002684 /* Write the Wakeup register page offset value using opcode 0x11 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002685 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ADDRESS_OPCODE, reg);
Bruce Allan9b71b412009-12-01 15:53:07 +00002686 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002687 e_dbg("Could not write address opcode to page %d\n", page);
Bruce Allan5015e532012-02-08 02:55:56 +00002688 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002689 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002690
2691 if (read) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002692 /* Read the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002693 ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002694 data);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002695 } else {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002696 /* Write the Wakeup register page value using opcode 0x12 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002697 ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE,
2698 *data);
2699 }
2700
Bruce Allan9b71b412009-12-01 15:53:07 +00002701 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002702 e_dbg("Could not access PHY reg %d.%d\n", page, reg);
Bruce Allan5015e532012-02-08 02:55:56 +00002703 return ret_val;
Bruce Allan9b71b412009-12-01 15:53:07 +00002704 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002705
Bruce Allan2b6b1682011-05-13 07:20:09 +00002706 if (!page_set)
2707 ret_val = e1000_disable_phy_wakeup_reg_access_bm(hw, &phy_reg);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002708
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002709 return ret_val;
2710}
2711
2712/**
Bruce Allan17f208d2009-12-01 15:47:22 +00002713 * e1000_power_up_phy_copper - Restore copper link in case of PHY power down
2714 * @hw: pointer to the HW structure
2715 *
2716 * In the case of a PHY power down to save power, or to turn off link during a
2717 * driver unload, or wake on lan is not enabled, restore the link to previous
2718 * settings.
2719 **/
2720void e1000_power_up_phy_copper(struct e1000_hw *hw)
2721{
2722 u16 mii_reg = 0;
2723
2724 /* The PHY will retain its settings across a power down/up cycle */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002725 e1e_rphy(hw, MII_BMCR, &mii_reg);
2726 mii_reg &= ~BMCR_PDOWN;
2727 e1e_wphy(hw, MII_BMCR, mii_reg);
Bruce Allan17f208d2009-12-01 15:47:22 +00002728}
2729
2730/**
2731 * e1000_power_down_phy_copper - Restore copper link in case of PHY power down
2732 * @hw: pointer to the HW structure
2733 *
2734 * In the case of a PHY power down to save power, or to turn off link during a
2735 * driver unload, or wake on lan is not enabled, restore the link to previous
2736 * settings.
2737 **/
2738void e1000_power_down_phy_copper(struct e1000_hw *hw)
2739{
2740 u16 mii_reg = 0;
2741
2742 /* The PHY will retain its settings across a power down/up cycle */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00002743 e1e_rphy(hw, MII_BMCR, &mii_reg);
2744 mii_reg |= BMCR_PDOWN;
2745 e1e_wphy(hw, MII_BMCR, mii_reg);
Bruce Allan1bba4382011-03-19 00:27:20 +00002746 usleep_range(1000, 2000);
Bruce Allan17f208d2009-12-01 15:47:22 +00002747}
2748
2749/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002750 * __e1000_read_phy_reg_hv - Read HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002751 * @hw: pointer to the HW structure
2752 * @offset: register offset to be read
2753 * @data: pointer to the read data
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002754 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002755 *
2756 * Acquires semaphore, if necessary, then reads the PHY register at offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002757 * and stores the retrieved information in data. Release any acquired
Bruce Allana4f58f52009-06-02 11:29:18 +00002758 * semaphore before exiting.
2759 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002760static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002761 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002762{
2763 s32 ret_val;
2764 u16 page = BM_PHY_REG_PAGE(offset);
2765 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002766 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002767
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002768 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002769 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002770 if (ret_val)
2771 return ret_val;
2772 }
2773
Bruce Allana4f58f52009-06-02 11:29:18 +00002774 /* Page 800 works differently than the rest so it has its own func */
2775 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002776 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data,
2777 true, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002778 goto out;
2779 }
2780
2781 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2782 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002783 data, true);
Bruce Allana4f58f52009-06-02 11:29:18 +00002784 goto out;
2785 }
2786
Bruce Allan2b6b1682011-05-13 07:20:09 +00002787 if (!page_set) {
2788 if (page == HV_INTC_FC_PAGE_START)
2789 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002790
Bruce Allan2b6b1682011-05-13 07:20:09 +00002791 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2792 /* Page is shifted left, PHY expects (page x 32) */
2793 ret_val = e1000_set_page_igp(hw,
2794 (page << IGP_PAGE_SHIFT));
Bruce Allana4f58f52009-06-02 11:29:18 +00002795
Bruce Allan2b6b1682011-05-13 07:20:09 +00002796 hw->phy.addr = phy_addr;
Bruce Allana4f58f52009-06-02 11:29:18 +00002797
Bruce Allan2b6b1682011-05-13 07:20:09 +00002798 if (ret_val)
2799 goto out;
2800 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002801 }
2802
Bruce Allan2b6b1682011-05-13 07:20:09 +00002803 e_dbg("reading PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2804 page << IGP_PAGE_SHIFT, reg);
2805
Bruce Allanf0ff4392013-02-20 04:05:39 +00002806 ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002807out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002808 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002809 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002810
Bruce Allana4f58f52009-06-02 11:29:18 +00002811 return ret_val;
2812}
2813
2814/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002815 * e1000_read_phy_reg_hv - Read HV PHY register
2816 * @hw: pointer to the HW structure
2817 * @offset: register offset to be read
2818 * @data: pointer to the read data
2819 *
2820 * Acquires semaphore then reads the PHY register at offset and stores
2821 * the retrieved information in data. Release the acquired semaphore
2822 * before exiting.
2823 **/
2824s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2825{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002826 return __e1000_read_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002827}
2828
2829/**
2830 * e1000_read_phy_reg_hv_locked - Read HV PHY register
2831 * @hw: pointer to the HW structure
2832 * @offset: register offset to be read
2833 * @data: pointer to the read data
2834 *
2835 * Reads the PHY register at offset and stores the retrieved information
2836 * in data. Assumes semaphore already acquired.
2837 **/
2838s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data)
2839{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002840 return __e1000_read_phy_reg_hv(hw, offset, data, true, false);
2841}
2842
2843/**
2844 * e1000_read_phy_reg_page_hv - Read HV PHY register
2845 * @hw: pointer to the HW structure
2846 * @offset: register offset to write to
2847 * @data: data to write at register offset
2848 *
2849 * Reads the PHY register at offset and stores the retrieved information
2850 * in data. Assumes semaphore already acquired and page already set.
2851 **/
2852s32 e1000_read_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 *data)
2853{
2854 return __e1000_read_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002855}
2856
2857/**
2858 * __e1000_write_phy_reg_hv - Write HV PHY register
Bruce Allana4f58f52009-06-02 11:29:18 +00002859 * @hw: pointer to the HW structure
2860 * @offset: register offset to write to
2861 * @data: data to write at register offset
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002862 * @locked: semaphore has already been acquired or not
Bruce Allana4f58f52009-06-02 11:29:18 +00002863 *
2864 * Acquires semaphore, if necessary, then writes the data to PHY register
2865 * at the offset. Release any acquired semaphores before exiting.
2866 **/
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002867static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data,
Bruce Allan2b6b1682011-05-13 07:20:09 +00002868 bool locked, bool page_set)
Bruce Allana4f58f52009-06-02 11:29:18 +00002869{
2870 s32 ret_val;
2871 u16 page = BM_PHY_REG_PAGE(offset);
2872 u16 reg = BM_PHY_REG_NUM(offset);
Bruce Allan2b6b1682011-05-13 07:20:09 +00002873 u32 phy_addr = hw->phy.addr = e1000_get_phy_addr_for_hv_page(page);
Bruce Allana4f58f52009-06-02 11:29:18 +00002874
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002875 if (!locked) {
Bruce Allan94d81862009-11-20 23:25:26 +00002876 ret_val = hw->phy.ops.acquire(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002877 if (ret_val)
2878 return ret_val;
2879 }
2880
Bruce Allana4f58f52009-06-02 11:29:18 +00002881 /* Page 800 works differently than the rest so it has its own func */
2882 if (page == BM_WUC_PAGE) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002883 ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data,
2884 false, page_set);
Bruce Allana4f58f52009-06-02 11:29:18 +00002885 goto out;
2886 }
2887
2888 if (page > 0 && page < HV_INTC_FC_PAGE_START) {
2889 ret_val = e1000_access_phy_debug_regs_hv(hw, offset,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002890 &data, false);
Bruce Allana4f58f52009-06-02 11:29:18 +00002891 goto out;
2892 }
2893
Bruce Allan2b6b1682011-05-13 07:20:09 +00002894 if (!page_set) {
2895 if (page == HV_INTC_FC_PAGE_START)
2896 page = 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00002897
Bruce Allane921eb12012-11-28 09:28:37 +00002898 /* Workaround MDIO accesses being disabled after entering IEEE
Bruce Allan2b6b1682011-05-13 07:20:09 +00002899 * Power Down (when bit 11 of the PHY Control register is set)
2900 */
2901 if ((hw->phy.type == e1000_phy_82578) &&
2902 (hw->phy.revision >= 1) &&
2903 (hw->phy.addr == 2) &&
Bruce Allan04499ec2012-04-13 00:08:31 +00002904 !(MAX_PHY_REG_ADDRESS & reg) && (data & (1 << 11))) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00002905 u16 data2 = 0x7EFF;
2906 ret_val = e1000_access_phy_debug_regs_hv(hw,
2907 (1 << 6) | 0x3,
2908 &data2, false);
2909 if (ret_val)
2910 goto out;
2911 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002912
Bruce Allan2b6b1682011-05-13 07:20:09 +00002913 if (reg > MAX_PHY_MULTI_PAGE_REG) {
2914 /* Page is shifted left, PHY expects (page x 32) */
2915 ret_val = e1000_set_page_igp(hw,
2916 (page << IGP_PAGE_SHIFT));
2917
2918 hw->phy.addr = phy_addr;
2919
2920 if (ret_val)
2921 goto out;
2922 }
Bruce Allana4f58f52009-06-02 11:29:18 +00002923 }
2924
Bruce Allan2b6b1682011-05-13 07:20:09 +00002925 e_dbg("writing PHY page %d (or 0x%x shifted) reg 0x%x\n", page,
2926 page << IGP_PAGE_SHIFT, reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00002927
2928 ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg,
Bruce Allanf0ff4392013-02-20 04:05:39 +00002929 data);
Bruce Allana4f58f52009-06-02 11:29:18 +00002930
2931out:
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002932 if (!locked)
Bruce Allan94d81862009-11-20 23:25:26 +00002933 hw->phy.ops.release(hw);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002934
Bruce Allana4f58f52009-06-02 11:29:18 +00002935 return ret_val;
2936}
2937
2938/**
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002939 * e1000_write_phy_reg_hv - Write HV PHY register
2940 * @hw: pointer to the HW structure
2941 * @offset: register offset to write to
2942 * @data: data to write at register offset
2943 *
2944 * Acquires semaphore then writes the data to PHY register at the offset.
2945 * Release the acquired semaphores before exiting.
2946 **/
2947s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data)
2948{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002949 return __e1000_write_phy_reg_hv(hw, offset, data, false, false);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002950}
2951
2952/**
2953 * e1000_write_phy_reg_hv_locked - Write HV PHY register
2954 * @hw: pointer to the HW structure
2955 * @offset: register offset to write to
2956 * @data: data to write at register offset
2957 *
2958 * Writes the data to PHY register at the offset. Assumes semaphore
2959 * already acquired.
2960 **/
2961s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data)
2962{
Bruce Allan2b6b1682011-05-13 07:20:09 +00002963 return __e1000_write_phy_reg_hv(hw, offset, data, true, false);
2964}
2965
2966/**
2967 * e1000_write_phy_reg_page_hv - Write HV PHY register
2968 * @hw: pointer to the HW structure
2969 * @offset: register offset to write to
2970 * @data: data to write at register offset
2971 *
2972 * Writes the data to PHY register at the offset. Assumes semaphore
2973 * already acquired and page already set.
2974 **/
2975s32 e1000_write_phy_reg_page_hv(struct e1000_hw *hw, u32 offset, u16 data)
2976{
2977 return __e1000_write_phy_reg_hv(hw, offset, data, true, true);
Bruce Allan5ccdcec2009-10-26 11:24:02 +00002978}
2979
2980/**
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002981 * e1000_get_phy_addr_for_hv_page - Get PHY address based on page
Bruce Allana4f58f52009-06-02 11:29:18 +00002982 * @page: page to be accessed
2983 **/
2984static u32 e1000_get_phy_addr_for_hv_page(u32 page)
2985{
2986 u32 phy_addr = 2;
2987
2988 if (page >= HV_INTC_FC_PAGE_START)
2989 phy_addr = 1;
2990
2991 return phy_addr;
2992}
2993
2994/**
2995 * e1000_access_phy_debug_regs_hv - Read HV PHY vendor specific high registers
2996 * @hw: pointer to the HW structure
2997 * @offset: register offset to be read or written
2998 * @data: pointer to the data to be read or written
Bruce Allan2b6b1682011-05-13 07:20:09 +00002999 * @read: determines if operation is read or write
Bruce Allana4f58f52009-06-02 11:29:18 +00003000 *
Bruce Allan5ccdcec2009-10-26 11:24:02 +00003001 * Reads the PHY register at offset and stores the retreived information
3002 * in data. Assumes semaphore already acquired. Note that the procedure
Bruce Allan2b6b1682011-05-13 07:20:09 +00003003 * to access these regs uses the address port and data port to read/write.
3004 * These accesses done with PHY address 2 and without using pages.
Bruce Allana4f58f52009-06-02 11:29:18 +00003005 **/
3006static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset,
Bruce Allan66501f52013-02-20 04:05:55 +00003007 u16 *data, bool read)
Bruce Allana4f58f52009-06-02 11:29:18 +00003008{
3009 s32 ret_val;
Bruce Allan70806a72013-01-05 05:08:37 +00003010 u32 addr_reg;
3011 u32 data_reg;
Bruce Allana4f58f52009-06-02 11:29:18 +00003012
3013 /* This takes care of the difference with desktop vs mobile phy */
Bruce Allanf0ff4392013-02-20 04:05:39 +00003014 addr_reg = ((hw->phy.type == e1000_phy_82578) ?
3015 I82578_ADDR_REG : I82577_ADDR_REG);
Bruce Allana4f58f52009-06-02 11:29:18 +00003016 data_reg = addr_reg + 1;
3017
Bruce Allana4f58f52009-06-02 11:29:18 +00003018 /* All operations in this function are phy address 2 */
3019 hw->phy.addr = 2;
3020
3021 /* masking with 0x3F to remove the page from offset */
3022 ret_val = e1000e_write_phy_reg_mdic(hw, addr_reg, (u16)offset & 0x3F);
3023 if (ret_val) {
Bruce Allan2b6b1682011-05-13 07:20:09 +00003024 e_dbg("Could not write the Address Offset port register\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003025 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003026 }
3027
3028 /* Read or write the data value next */
3029 if (read)
3030 ret_val = e1000e_read_phy_reg_mdic(hw, data_reg, data);
3031 else
3032 ret_val = e1000e_write_phy_reg_mdic(hw, data_reg, *data);
3033
Bruce Allan5015e532012-02-08 02:55:56 +00003034 if (ret_val)
Bruce Allan2b6b1682011-05-13 07:20:09 +00003035 e_dbg("Could not access the Data port register\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003036
Bruce Allana4f58f52009-06-02 11:29:18 +00003037 return ret_val;
3038}
3039
3040/**
3041 * e1000_link_stall_workaround_hv - Si workaround
3042 * @hw: pointer to the HW structure
3043 *
3044 * This function works around a Si bug where the link partner can get
3045 * a link up indication before the PHY does. If small packets are sent
3046 * by the link partner they can be placed in the packet buffer without
3047 * being properly accounted for by the PHY and will stall preventing
3048 * further packets from being received. The workaround is to clear the
3049 * packet buffer after the PHY detects link up.
3050 **/
3051s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw)
3052{
3053 s32 ret_val = 0;
3054 u16 data;
3055
3056 if (hw->phy.type != e1000_phy_82578)
Bruce Allan5015e532012-02-08 02:55:56 +00003057 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003058
Bruce Allane65fa872009-07-01 13:27:31 +00003059 /* Do not apply workaround if in PHY loopback bit 14 set */
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003060 e1e_rphy(hw, MII_BMCR, &data);
3061 if (data & BMCR_LOOPBACK)
Bruce Allan5015e532012-02-08 02:55:56 +00003062 return 0;
Bruce Allane65fa872009-07-01 13:27:31 +00003063
Bruce Allana4f58f52009-06-02 11:29:18 +00003064 /* check if link is up and at 1Gbps */
Bruce Allan482fed82011-01-06 14:29:49 +00003065 ret_val = e1e_rphy(hw, BM_CS_STATUS, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003066 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003067 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003068
Bruce Allanf0ff4392013-02-20 04:05:39 +00003069 data &= (BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3070 BM_CS_STATUS_SPEED_MASK);
Bruce Allana4f58f52009-06-02 11:29:18 +00003071
Bruce Allan3d3a1672012-02-23 03:13:18 +00003072 if (data != (BM_CS_STATUS_LINK_UP | BM_CS_STATUS_RESOLVED |
3073 BM_CS_STATUS_SPEED_1000))
Bruce Allan5015e532012-02-08 02:55:56 +00003074 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003075
Bruce Allanbb9c5ee2012-02-23 03:31:29 +00003076 msleep(200);
Bruce Allana4f58f52009-06-02 11:29:18 +00003077
3078 /* flush the packets in the fifo buffer */
Bruce Allanc063f602013-01-12 07:27:53 +00003079 ret_val = e1e_wphy(hw, HV_MUX_DATA_CTRL,
3080 (HV_MUX_DATA_CTRL_GEN_TO_MAC |
3081 HV_MUX_DATA_CTRL_FORCE_SPEED));
Bruce Allana4f58f52009-06-02 11:29:18 +00003082 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003083 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003084
Bruce Allan5015e532012-02-08 02:55:56 +00003085 return e1e_wphy(hw, HV_MUX_DATA_CTRL, HV_MUX_DATA_CTRL_GEN_TO_MAC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003086}
3087
3088/**
3089 * e1000_check_polarity_82577 - Checks the polarity.
3090 * @hw: pointer to the HW structure
3091 *
3092 * Success returns 0, Failure returns -E1000_ERR_PHY (-2)
3093 *
3094 * Polarity is determined based on the PHY specific status register.
3095 **/
3096s32 e1000_check_polarity_82577(struct e1000_hw *hw)
3097{
3098 struct e1000_phy_info *phy = &hw->phy;
3099 s32 ret_val;
3100 u16 data;
3101
Bruce Allan482fed82011-01-06 14:29:49 +00003102 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003103
3104 if (!ret_val)
Bruce Allanf0ff4392013-02-20 04:05:39 +00003105 phy->cable_polarity = ((data & I82577_PHY_STATUS2_REV_POLARITY)
3106 ? e1000_rev_polarity_reversed
3107 : e1000_rev_polarity_normal);
Bruce Allana4f58f52009-06-02 11:29:18 +00003108
3109 return ret_val;
3110}
3111
3112/**
3113 * e1000_phy_force_speed_duplex_82577 - Force speed/duplex for I82577 PHY
3114 * @hw: pointer to the HW structure
3115 *
Bruce Allaneab50ff2010-05-10 15:01:30 +00003116 * Calls the PHY setup function to force speed and duplex.
Bruce Allana4f58f52009-06-02 11:29:18 +00003117 **/
3118s32 e1000_phy_force_speed_duplex_82577(struct e1000_hw *hw)
3119{
3120 struct e1000_phy_info *phy = &hw->phy;
3121 s32 ret_val;
3122 u16 phy_data;
3123 bool link;
3124
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003125 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003126 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003127 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003128
3129 e1000e_phy_force_speed_duplex_setup(hw, &phy_data);
3130
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003131 ret_val = e1e_wphy(hw, MII_BMCR, phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003132 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003133 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003134
Bruce Allana4f58f52009-06-02 11:29:18 +00003135 udelay(1);
3136
3137 if (phy->autoneg_wait_to_complete) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003138 e_dbg("Waiting for forced speed/duplex link on 82577 phy\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003139
Bruce Allan3d3a1672012-02-23 03:13:18 +00003140 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3141 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003142 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003143 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003144
3145 if (!link)
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003146 e_dbg("Link taking longer than expected.\n");
Bruce Allana4f58f52009-06-02 11:29:18 +00003147
3148 /* Try once more */
Bruce Allan3d3a1672012-02-23 03:13:18 +00003149 ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT,
3150 100000, &link);
Bruce Allana4f58f52009-06-02 11:29:18 +00003151 }
3152
Bruce Allana4f58f52009-06-02 11:29:18 +00003153 return ret_val;
3154}
3155
3156/**
3157 * e1000_get_phy_info_82577 - Retrieve I82577 PHY information
3158 * @hw: pointer to the HW structure
3159 *
3160 * Read PHY status to determine if link is up. If link is up, then
3161 * set/determine 10base-T extended distance and polarity correction. Read
3162 * PHY port status to determine MDI/MDIx and speed. Based on the speed,
3163 * determine on the cable length, local and remote receiver.
3164 **/
3165s32 e1000_get_phy_info_82577(struct e1000_hw *hw)
3166{
3167 struct e1000_phy_info *phy = &hw->phy;
3168 s32 ret_val;
3169 u16 data;
3170 bool link;
3171
3172 ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link);
3173 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003174 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003175
3176 if (!link) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003177 e_dbg("Phy info is only valid if link is up\n");
Bruce Allan5015e532012-02-08 02:55:56 +00003178 return -E1000_ERR_CONFIG;
Bruce Allana4f58f52009-06-02 11:29:18 +00003179 }
3180
3181 phy->polarity_correction = true;
3182
3183 ret_val = e1000_check_polarity_82577(hw);
3184 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003185 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003186
Bruce Allan482fed82011-01-06 14:29:49 +00003187 ret_val = e1e_rphy(hw, I82577_PHY_STATUS_2, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003188 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003189 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003190
Bruce Allan04499ec2012-04-13 00:08:31 +00003191 phy->is_mdix = !!(data & I82577_PHY_STATUS2_MDIX);
Bruce Allana4f58f52009-06-02 11:29:18 +00003192
3193 if ((data & I82577_PHY_STATUS2_SPEED_MASK) ==
3194 I82577_PHY_STATUS2_SPEED_1000MBPS) {
3195 ret_val = hw->phy.ops.get_cable_length(hw);
3196 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 ret_val = e1e_rphy(hw, MII_STAT1000, &data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003200 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003201 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003202
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003203 phy->local_rx = (data & LPA_1000LOCALRXOK)
3204 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Bruce Allana4f58f52009-06-02 11:29:18 +00003205
Bruce Allanc2ade1a2013-01-16 08:54:35 +00003206 phy->remote_rx = (data & LPA_1000REMRXOK)
3207 ? e1000_1000t_rx_status_ok : e1000_1000t_rx_status_not_ok;
Bruce Allana4f58f52009-06-02 11:29:18 +00003208 } else {
3209 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
3210 phy->local_rx = e1000_1000t_rx_status_undefined;
3211 phy->remote_rx = e1000_1000t_rx_status_undefined;
3212 }
3213
Bruce Allan5015e532012-02-08 02:55:56 +00003214 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003215}
3216
3217/**
3218 * e1000_get_cable_length_82577 - Determine cable length for 82577 PHY
3219 * @hw: pointer to the HW structure
3220 *
3221 * Reads the diagnostic status register and verifies result is valid before
3222 * placing it in the phy_cable_length field.
3223 **/
3224s32 e1000_get_cable_length_82577(struct e1000_hw *hw)
3225{
3226 struct e1000_phy_info *phy = &hw->phy;
3227 s32 ret_val;
3228 u16 phy_data, length;
3229
Bruce Allan482fed82011-01-06 14:29:49 +00003230 ret_val = e1e_rphy(hw, I82577_PHY_DIAG_STATUS, &phy_data);
Bruce Allana4f58f52009-06-02 11:29:18 +00003231 if (ret_val)
Bruce Allan5015e532012-02-08 02:55:56 +00003232 return ret_val;
Bruce Allana4f58f52009-06-02 11:29:18 +00003233
Bruce Allanf0ff4392013-02-20 04:05:39 +00003234 length = ((phy_data & I82577_DSTATUS_CABLE_LENGTH) >>
3235 I82577_DSTATUS_CABLE_LENGTH_SHIFT);
Bruce Allana4f58f52009-06-02 11:29:18 +00003236
3237 if (length == E1000_CABLE_LENGTH_UNDEFINED)
Bruce Allan7dbbe5d2013-01-05 05:08:31 +00003238 return -E1000_ERR_PHY;
Bruce Allana4f58f52009-06-02 11:29:18 +00003239
3240 phy->cable_length = length;
3241
Bruce Allan5015e532012-02-08 02:55:56 +00003242 return 0;
Bruce Allana4f58f52009-06-02 11:29:18 +00003243}