blob: 0c65814f5803e5dd6bec585081fc77b115f0592b [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmorec97506a2014-02-27 20:32:43 -08004 Copyright(c) 1999 - 2014 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -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:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Auke Kok9a799d72007-09-15 14:07:45 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include <linux/pci.h>
30#include <linux/delay.h>
31#include <linux/sched.h>
32
Mark Rustadb12babd2014-01-14 18:53:16 -080033#include "ixgbe.h"
Auke Kok9a799d72007-09-15 14:07:45 -070034#include "ixgbe_phy.h"
35
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000036static void ixgbe_i2c_start(struct ixgbe_hw *hw);
37static void ixgbe_i2c_stop(struct ixgbe_hw *hw);
38static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data);
39static s32 ixgbe_clock_out_i2c_byte(struct ixgbe_hw *hw, u8 data);
40static s32 ixgbe_get_i2c_ack(struct ixgbe_hw *hw);
41static s32 ixgbe_clock_in_i2c_bit(struct ixgbe_hw *hw, bool *data);
42static s32 ixgbe_clock_out_i2c_bit(struct ixgbe_hw *hw, bool data);
Emil Tantilove1befd72011-08-27 07:18:47 +000043static void ixgbe_raise_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000044static void ixgbe_lower_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl);
45static s32 ixgbe_set_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl, bool data);
Don Skidmore9a75a1a2014-11-07 03:53:35 +000046static bool ixgbe_get_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000047static void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070048static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id);
49static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw);
Mark Rustad88217542013-11-23 03:19:19 +000050static s32 ixgbe_identify_qsfp_module_generic(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070051
52/**
Don Skidmore28abba02014-11-29 05:22:43 +000053 * ixgbe_out_i2c_byte_ack - Send I2C byte with ack
54 * @hw: pointer to the hardware structure
55 * @byte: byte to send
56 *
57 * Returns an error code on error.
58 **/
59static s32 ixgbe_out_i2c_byte_ack(struct ixgbe_hw *hw, u8 byte)
60{
61 s32 status;
62
63 status = ixgbe_clock_out_i2c_byte(hw, byte);
64 if (status)
65 return status;
66 return ixgbe_get_i2c_ack(hw);
67}
68
69/**
70 * ixgbe_in_i2c_byte_ack - Receive an I2C byte and send ack
71 * @hw: pointer to the hardware structure
72 * @byte: pointer to a u8 to receive the byte
73 *
74 * Returns an error code on error.
75 **/
76static s32 ixgbe_in_i2c_byte_ack(struct ixgbe_hw *hw, u8 *byte)
77{
78 s32 status;
79
80 status = ixgbe_clock_in_i2c_byte(hw, byte);
81 if (status)
82 return status;
83 /* ACK */
84 return ixgbe_clock_out_i2c_bit(hw, false);
85}
86
87/**
88 * ixgbe_ones_comp_byte_add - Perform one's complement addition
89 * @add1: addend 1
90 * @add2: addend 2
91 *
92 * Returns one's complement 8-bit sum.
93 **/
94static u8 ixgbe_ones_comp_byte_add(u8 add1, u8 add2)
95{
96 u16 sum = add1 + add2;
97
98 sum = (sum & 0xFF) + (sum >> 8);
99 return sum & 0xFF;
100}
101
102/**
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700103 * ixgbe_read_i2c_combined_generic_int - Perform I2C read combined operation
Don Skidmore28abba02014-11-29 05:22:43 +0000104 * @hw: pointer to the hardware structure
105 * @addr: I2C bus address to read from
106 * @reg: I2C device register to read from
107 * @val: pointer to location to receive read value
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700108 * @lock: true if to take and release semaphore
Don Skidmore28abba02014-11-29 05:22:43 +0000109 *
110 * Returns an error code on error.
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700111 */
Emil Tantilovb71f6c42016-10-10 14:54:03 -0700112s32 ixgbe_read_i2c_combined_generic_int(struct ixgbe_hw *hw, u8 addr,
113 u16 reg, u16 *val, bool lock)
Don Skidmore28abba02014-11-29 05:22:43 +0000114{
115 u32 swfw_mask = hw->phy.phy_semaphore_mask;
116 int max_retry = 10;
117 int retry = 0;
118 u8 csum_byte;
119 u8 high_bits;
120 u8 low_bits;
121 u8 reg_high;
122 u8 csum;
123
124 reg_high = ((reg >> 7) & 0xFE) | 1; /* Indicate read combined */
125 csum = ixgbe_ones_comp_byte_add(reg_high, reg & 0xFF);
126 csum = ~csum;
127 do {
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700128 if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask))
Don Skidmore28abba02014-11-29 05:22:43 +0000129 return IXGBE_ERR_SWFW_SYNC;
130 ixgbe_i2c_start(hw);
131 /* Device Address and write indication */
132 if (ixgbe_out_i2c_byte_ack(hw, addr))
133 goto fail;
134 /* Write bits 14:8 */
135 if (ixgbe_out_i2c_byte_ack(hw, reg_high))
136 goto fail;
137 /* Write bits 7:0 */
138 if (ixgbe_out_i2c_byte_ack(hw, reg & 0xFF))
139 goto fail;
140 /* Write csum */
141 if (ixgbe_out_i2c_byte_ack(hw, csum))
142 goto fail;
143 /* Re-start condition */
144 ixgbe_i2c_start(hw);
145 /* Device Address and read indication */
146 if (ixgbe_out_i2c_byte_ack(hw, addr | 1))
147 goto fail;
148 /* Get upper bits */
149 if (ixgbe_in_i2c_byte_ack(hw, &high_bits))
150 goto fail;
151 /* Get low bits */
152 if (ixgbe_in_i2c_byte_ack(hw, &low_bits))
153 goto fail;
154 /* Get csum */
155 if (ixgbe_clock_in_i2c_byte(hw, &csum_byte))
156 goto fail;
157 /* NACK */
158 if (ixgbe_clock_out_i2c_bit(hw, false))
159 goto fail;
160 ixgbe_i2c_stop(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700161 if (lock)
162 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Don Skidmore28abba02014-11-29 05:22:43 +0000163 *val = (high_bits << 8) | low_bits;
164 return 0;
165
166fail:
167 ixgbe_i2c_bus_clear(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700168 if (lock)
169 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Don Skidmore28abba02014-11-29 05:22:43 +0000170 retry++;
171 if (retry < max_retry)
172 hw_dbg(hw, "I2C byte read combined error - Retry.\n");
173 else
174 hw_dbg(hw, "I2C byte read combined error.\n");
175 } while (retry < max_retry);
176
177 return IXGBE_ERR_I2C;
178}
179
180/**
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700181 * ixgbe_write_i2c_combined_generic_int - Perform I2C write combined operation
Don Skidmore28abba02014-11-29 05:22:43 +0000182 * @hw: pointer to the hardware structure
183 * @addr: I2C bus address to write to
184 * @reg: I2C device register to write to
185 * @val: value to write
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700186 * @lock: true if to take and release semaphore
Don Skidmore28abba02014-11-29 05:22:43 +0000187 *
188 * Returns an error code on error.
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700189 */
Emil Tantilovb71f6c42016-10-10 14:54:03 -0700190s32 ixgbe_write_i2c_combined_generic_int(struct ixgbe_hw *hw, u8 addr,
191 u16 reg, u16 val, bool lock)
Don Skidmore28abba02014-11-29 05:22:43 +0000192{
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700193 u32 swfw_mask = hw->phy.phy_semaphore_mask;
Don Skidmore28abba02014-11-29 05:22:43 +0000194 int max_retry = 1;
195 int retry = 0;
196 u8 reg_high;
197 u8 csum;
198
199 reg_high = (reg >> 7) & 0xFE; /* Indicate write combined */
200 csum = ixgbe_ones_comp_byte_add(reg_high, reg & 0xFF);
201 csum = ixgbe_ones_comp_byte_add(csum, val >> 8);
202 csum = ixgbe_ones_comp_byte_add(csum, val & 0xFF);
203 csum = ~csum;
204 do {
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700205 if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask))
206 return IXGBE_ERR_SWFW_SYNC;
Don Skidmore28abba02014-11-29 05:22:43 +0000207 ixgbe_i2c_start(hw);
208 /* Device Address and write indication */
209 if (ixgbe_out_i2c_byte_ack(hw, addr))
210 goto fail;
211 /* Write bits 14:8 */
212 if (ixgbe_out_i2c_byte_ack(hw, reg_high))
213 goto fail;
214 /* Write bits 7:0 */
215 if (ixgbe_out_i2c_byte_ack(hw, reg & 0xFF))
216 goto fail;
217 /* Write data 15:8 */
218 if (ixgbe_out_i2c_byte_ack(hw, val >> 8))
219 goto fail;
220 /* Write data 7:0 */
221 if (ixgbe_out_i2c_byte_ack(hw, val & 0xFF))
222 goto fail;
223 /* Write csum */
224 if (ixgbe_out_i2c_byte_ack(hw, csum))
225 goto fail;
226 ixgbe_i2c_stop(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700227 if (lock)
228 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Don Skidmore28abba02014-11-29 05:22:43 +0000229 return 0;
230
231fail:
232 ixgbe_i2c_bus_clear(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -0700233 if (lock)
234 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Don Skidmore28abba02014-11-29 05:22:43 +0000235 retry++;
236 if (retry < max_retry)
237 hw_dbg(hw, "I2C byte write combined error - Retry.\n");
238 else
239 hw_dbg(hw, "I2C byte write combined error.\n");
240 } while (retry < max_retry);
241
242 return IXGBE_ERR_I2C;
243}
244
245/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700246 * ixgbe_identify_phy_generic - Get physical layer module
Auke Kok9a799d72007-09-15 14:07:45 -0700247 * @hw: pointer to hardware structure
248 *
249 * Determines the physical layer module found on the current adapter.
250 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700251s32 ixgbe_identify_phy_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700252{
Auke Kok9a799d72007-09-15 14:07:45 -0700253 u32 phy_addr;
Emil Tantilov037c6d02011-02-25 07:49:39 +0000254 u16 ext_ability = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700255
Don Skidmore030eaec2014-11-29 05:22:37 +0000256 if (!hw->phy.phy_semaphore_mask) {
Don Skidmored5702de2015-06-19 12:23:36 -0400257 if (hw->bus.lan_id)
Don Skidmore030eaec2014-11-29 05:22:37 +0000258 hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY1_SM;
259 else
260 hw->phy.phy_semaphore_mask = IXGBE_GSSR_PHY0_SM;
261 }
262
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700263 if (hw->phy.type == ixgbe_phy_unknown) {
264 for (phy_addr = 0; phy_addr < IXGBE_MAX_PHY_ADDR; phy_addr++) {
Don Skidmore63d6e1d2009-07-02 12:50:12 +0000265 hw->phy.mdio.prtad = phy_addr;
Ben Hutchings6b73e102009-04-29 08:08:58 +0000266 if (mdio45_probe(&hw->phy.mdio, phy_addr) == 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700267 ixgbe_get_phy_id(hw);
268 hw->phy.type =
Jacob Kellere7cf7452014-04-09 06:03:10 +0000269 ixgbe_get_phy_type_from_id(hw->phy.id);
Emil Tantilov037c6d02011-02-25 07:49:39 +0000270
271 if (hw->phy.type == ixgbe_phy_unknown) {
272 hw->phy.ops.read_reg(hw,
273 MDIO_PMA_EXTABLE,
274 MDIO_MMD_PMAPMD,
275 &ext_ability);
276 if (ext_ability &
277 (MDIO_PMA_EXTABLE_10GBT |
278 MDIO_PMA_EXTABLE_1000BT))
279 hw->phy.type =
280 ixgbe_phy_cu_unknown;
281 else
282 hw->phy.type =
283 ixgbe_phy_generic;
284 }
285
Mark Rustade90dd262014-07-22 06:51:08 +0000286 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700287 }
Auke Kok9a799d72007-09-15 14:07:45 -0700288 }
Mark Rustad7564a882016-09-01 13:58:51 -0700289 /* indicate no PHY found */
290 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
Mark Rustade90dd262014-07-22 06:51:08 +0000291 return IXGBE_ERR_PHY_ADDR_INVALID;
Auke Kok9a799d72007-09-15 14:07:45 -0700292 }
Mark Rustade90dd262014-07-22 06:51:08 +0000293 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700294}
295
296/**
Don Skidmorec97506a2014-02-27 20:32:43 -0800297 * ixgbe_check_reset_blocked - check status of MNG FW veto bit
298 * @hw: pointer to the hardware structure
299 *
300 * This function checks the MMNGC.MNG_VETO bit to see if there are
301 * any constraints on link from manageability. For MAC's that don't
302 * have this bit just return false since the link can not be blocked
303 * via this method.
304 **/
Jean Sacren6425f0f2014-03-11 05:57:56 +0000305bool ixgbe_check_reset_blocked(struct ixgbe_hw *hw)
Don Skidmorec97506a2014-02-27 20:32:43 -0800306{
307 u32 mmngc;
308
309 /* If we don't have this bit, it can't be blocking */
310 if (hw->mac.type == ixgbe_mac_82598EB)
311 return false;
312
313 mmngc = IXGBE_READ_REG(hw, IXGBE_MMNGC);
314 if (mmngc & IXGBE_MMNGC_MNG_VETO) {
315 hw_dbg(hw, "MNG_VETO bit detected.\n");
316 return true;
317 }
318
319 return false;
320}
321
322/**
Auke Kok9a799d72007-09-15 14:07:45 -0700323 * ixgbe_get_phy_id - Get the phy type
324 * @hw: pointer to hardware structure
325 *
326 **/
327static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw)
328{
Mark Rustada1e869d2015-04-10 10:36:36 -0700329 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700330 u16 phy_id_high = 0;
331 u16 phy_id_low = 0;
332
Ben Hutchings6b73e102009-04-29 08:08:58 +0000333 status = hw->phy.ops.read_reg(hw, MDIO_DEVID1, MDIO_MMD_PMAPMD,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000334 &phy_id_high);
Auke Kok9a799d72007-09-15 14:07:45 -0700335
Mark Rustada1e869d2015-04-10 10:36:36 -0700336 if (!status) {
Auke Kok9a799d72007-09-15 14:07:45 -0700337 hw->phy.id = (u32)(phy_id_high << 16);
Ben Hutchings6b73e102009-04-29 08:08:58 +0000338 status = hw->phy.ops.read_reg(hw, MDIO_DEVID2, MDIO_MMD_PMAPMD,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000339 &phy_id_low);
Auke Kok9a799d72007-09-15 14:07:45 -0700340 hw->phy.id |= (u32)(phy_id_low & IXGBE_PHY_REVISION_MASK);
341 hw->phy.revision = (u32)(phy_id_low & ~IXGBE_PHY_REVISION_MASK);
342 }
Auke Kok9a799d72007-09-15 14:07:45 -0700343 return status;
344}
345
346/**
347 * ixgbe_get_phy_type_from_id - Get the phy type
348 * @hw: pointer to hardware structure
349 *
350 **/
351static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id)
352{
353 enum ixgbe_phy_type phy_type;
354
355 switch (phy_id) {
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700356 case TN1010_PHY_ID:
357 phy_type = ixgbe_phy_tn;
358 break;
Don Skidmorededa5622015-06-09 17:39:46 -0700359 case X550_PHY_ID:
Don Skidmore2b264902010-12-09 06:55:14 +0000360 case X540_PHY_ID:
Don Skidmorefe15e8e12010-11-16 19:27:16 -0800361 phy_type = ixgbe_phy_aq;
362 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700363 case QT2022_PHY_ID:
364 phy_type = ixgbe_phy_qt;
365 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800366 case ATH_PHY_ID:
367 phy_type = ixgbe_phy_nl;
368 break;
Don Skidmorec2c78d52015-06-09 16:04:59 -0700369 case X557_PHY_ID:
370 phy_type = ixgbe_phy_x550em_ext_t;
371 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700372 default:
373 phy_type = ixgbe_phy_unknown;
374 break;
375 }
376
377 return phy_type;
378}
379
380/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700381 * ixgbe_reset_phy_generic - Performs a PHY reset
Auke Kok9a799d72007-09-15 14:07:45 -0700382 * @hw: pointer to hardware structure
383 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700384s32 ixgbe_reset_phy_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700385{
Emil Tantilov17835752011-02-16 01:38:13 +0000386 u32 i;
387 u16 ctrl = 0;
388 s32 status = 0;
389
390 if (hw->phy.type == ixgbe_phy_unknown)
391 status = ixgbe_identify_phy_generic(hw);
392
393 if (status != 0 || hw->phy.type == ixgbe_phy_none)
Mark Rustade90dd262014-07-22 06:51:08 +0000394 return status;
Emil Tantilov17835752011-02-16 01:38:13 +0000395
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700396 /* Don't reset PHY if it's shut down due to overtemp. */
397 if (!hw->phy.reset_if_overtemp &&
398 (IXGBE_ERR_OVERTEMP == hw->phy.ops.check_overtemp(hw)))
Mark Rustade90dd262014-07-22 06:51:08 +0000399 return 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700400
Don Skidmorec97506a2014-02-27 20:32:43 -0800401 /* Blocked by MNG FW so bail */
402 if (ixgbe_check_reset_blocked(hw))
Mark Rustade90dd262014-07-22 06:51:08 +0000403 return 0;
Don Skidmorec97506a2014-02-27 20:32:43 -0800404
Auke Kok9a799d72007-09-15 14:07:45 -0700405 /*
406 * Perform soft PHY reset to the PHY_XS.
407 * This will cause a soft reset to the PHY
408 */
Emil Tantilov17835752011-02-16 01:38:13 +0000409 hw->phy.ops.write_reg(hw, MDIO_CTRL1,
410 MDIO_MMD_PHYXS,
411 MDIO_CTRL1_RESET);
412
413 /*
414 * Poll for reset bit to self-clear indicating reset is complete.
415 * Some PHYs could take up to 3 seconds to complete and need about
416 * 1.7 usec delay after the reset is complete.
417 */
418 for (i = 0; i < 30; i++) {
419 msleep(100);
420 hw->phy.ops.read_reg(hw, MDIO_CTRL1,
421 MDIO_MMD_PHYXS, &ctrl);
422 if (!(ctrl & MDIO_CTRL1_RESET)) {
423 udelay(2);
424 break;
425 }
426 }
427
428 if (ctrl & MDIO_CTRL1_RESET) {
Emil Tantilov17835752011-02-16 01:38:13 +0000429 hw_dbg(hw, "PHY reset polling failed to complete.\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000430 return IXGBE_ERR_RESET_FAILED;
Emil Tantilov17835752011-02-16 01:38:13 +0000431 }
432
Mark Rustade90dd262014-07-22 06:51:08 +0000433 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700434}
435
436/**
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000437 * ixgbe_read_phy_mdi - Reads a value from a specified PHY register without
438 * the SWFW lock
439 * @hw: pointer to hardware structure
440 * @reg_addr: 32 bit address of PHY register to read
441 * @phy_data: Pointer to read data from PHY register
442 **/
443s32 ixgbe_read_phy_reg_mdi(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
444 u16 *phy_data)
445{
446 u32 i, data, command;
447
448 /* Setup and write the address cycle command */
449 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
450 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
451 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
452 (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND));
453
454 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
455
456 /* Check every 10 usec to see if the address cycle completed.
457 * The MDI Command bit will clear when the operation is
458 * complete
459 */
460 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
461 udelay(10);
462
463 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
464 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
465 break;
466 }
467
468
469 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
470 hw_dbg(hw, "PHY address command did not complete.\n");
471 return IXGBE_ERR_PHY;
472 }
473
474 /* Address cycle complete, setup and write the read
475 * command
476 */
477 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
478 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
479 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
480 (IXGBE_MSCA_READ | IXGBE_MSCA_MDI_COMMAND));
481
482 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
483
484 /* Check every 10 usec to see if the address cycle
485 * completed. The MDI Command bit will clear when the
486 * operation is complete
487 */
488 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
489 udelay(10);
490
491 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
492 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
493 break;
494 }
495
496 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
497 hw_dbg(hw, "PHY read command didn't complete\n");
498 return IXGBE_ERR_PHY;
499 }
500
501 /* Read operation is complete. Get the data
502 * from MSRWD
503 */
504 data = IXGBE_READ_REG(hw, IXGBE_MSRWD);
505 data >>= IXGBE_MSRWD_READ_DATA_SHIFT;
506 *phy_data = (u16)(data);
507
508 return 0;
509}
510
511/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700512 * ixgbe_read_phy_reg_generic - Reads a value from a specified PHY register
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000513 * using the SWFW lock - this function is needed in most cases
Auke Kok9a799d72007-09-15 14:07:45 -0700514 * @hw: pointer to hardware structure
515 * @reg_addr: 32 bit address of PHY register to read
516 * @phy_data: Pointer to read data from PHY register
517 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700518s32 ixgbe_read_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000519 u32 device_type, u16 *phy_data)
Auke Kok9a799d72007-09-15 14:07:45 -0700520{
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000521 s32 status;
Don Skidmore030eaec2014-11-29 05:22:37 +0000522 u32 gssr = hw->phy.phy_semaphore_mask;
Auke Kok9a799d72007-09-15 14:07:45 -0700523
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000524 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) == 0) {
525 status = ixgbe_read_phy_reg_mdi(hw, reg_addr, device_type,
526 phy_data);
Don Skidmore5e655102011-02-25 01:58:04 +0000527 hw->mac.ops.release_swfw_sync(hw, gssr);
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000528 } else {
Mark Rustade90dd262014-07-22 06:51:08 +0000529 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -0700530 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700531
Auke Kok9a799d72007-09-15 14:07:45 -0700532 return status;
533}
534
535/**
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000536 * ixgbe_write_phy_reg_mdi - Writes a value to specified PHY register
537 * without SWFW lock
538 * @hw: pointer to hardware structure
539 * @reg_addr: 32 bit PHY register to write
540 * @device_type: 5 bit device type
541 * @phy_data: Data to write to the PHY register
542 **/
543s32 ixgbe_write_phy_reg_mdi(struct ixgbe_hw *hw, u32 reg_addr,
544 u32 device_type, u16 phy_data)
545{
546 u32 i, command;
547
548 /* Put the data in the MDI single read and write data register*/
549 IXGBE_WRITE_REG(hw, IXGBE_MSRWD, (u32)phy_data);
550
551 /* Setup and write the address cycle command */
552 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
553 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
554 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
555 (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND));
556
557 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
558
559 /*
560 * Check every 10 usec to see if the address cycle completed.
561 * The MDI Command bit will clear when the operation is
562 * complete
563 */
564 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
565 udelay(10);
566
567 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
568 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
569 break;
570 }
571
572 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
573 hw_dbg(hw, "PHY address cmd didn't complete\n");
574 return IXGBE_ERR_PHY;
575 }
576
577 /*
578 * Address cycle complete, setup and write the write
579 * command
580 */
581 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
582 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
583 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
584 (IXGBE_MSCA_WRITE | IXGBE_MSCA_MDI_COMMAND));
585
586 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
587
588 /* Check every 10 usec to see if the address cycle
589 * completed. The MDI Command bit will clear when the
590 * operation is complete
591 */
592 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
593 udelay(10);
594
595 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
596 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
597 break;
598 }
599
600 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
601 hw_dbg(hw, "PHY write cmd didn't complete\n");
602 return IXGBE_ERR_PHY;
603 }
604
605 return 0;
606}
607
608/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700609 * ixgbe_write_phy_reg_generic - Writes a value to specified PHY register
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000610 * using SWFW lock- this function is needed in most cases
Auke Kok9a799d72007-09-15 14:07:45 -0700611 * @hw: pointer to hardware structure
612 * @reg_addr: 32 bit PHY register to write
613 * @device_type: 5 bit device type
614 * @phy_data: Data to write to the PHY register
615 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700616s32 ixgbe_write_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000617 u32 device_type, u16 phy_data)
Auke Kok9a799d72007-09-15 14:07:45 -0700618{
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000619 s32 status;
Don Skidmore897b9342015-06-19 19:14:57 -0400620 u32 gssr = hw->phy.phy_semaphore_mask;
Auke Kok9a799d72007-09-15 14:07:45 -0700621
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000622 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) == 0) {
623 status = ixgbe_write_phy_reg_mdi(hw, reg_addr, device_type,
624 phy_data);
Don Skidmore5e655102011-02-25 01:58:04 +0000625 hw->mac.ops.release_swfw_sync(hw, gssr);
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000626 } else {
Mark Rustade90dd262014-07-22 06:51:08 +0000627 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -0700628 }
629
630 return status;
631}
632
633/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700634 * ixgbe_setup_phy_link_generic - Set and restart autoneg
Auke Kok9a799d72007-09-15 14:07:45 -0700635 * @hw: pointer to hardware structure
636 *
637 * Restart autonegotiation and PHY and waits for completion.
638 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700639s32 ixgbe_setup_phy_link_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700640{
Emil Tantilov9dda1732011-03-05 01:28:07 +0000641 s32 status = 0;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000642 u16 autoneg_reg = IXGBE_MII_AUTONEG_REG;
643 bool autoneg = false;
644 ixgbe_link_speed speed;
Auke Kok9a799d72007-09-15 14:07:45 -0700645
Emil Tantilov9dda1732011-03-05 01:28:07 +0000646 ixgbe_get_copper_link_capabilities_generic(hw, &speed, &autoneg);
Auke Kok9a799d72007-09-15 14:07:45 -0700647
Don Skidmored2e455a2016-10-21 21:10:54 -0400648 /* Set or unset auto-negotiation 10G advertisement */
649 hw->phy.ops.read_reg(hw, MDIO_AN_10GBT_CTRL, MDIO_MMD_AN, &autoneg_reg);
Emil Tantilov9dda1732011-03-05 01:28:07 +0000650
Don Skidmored2e455a2016-10-21 21:10:54 -0400651 autoneg_reg &= ~MDIO_AN_10GBT_CTRL_ADV10G;
652 if ((hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL) &&
653 (speed & IXGBE_LINK_SPEED_10GB_FULL))
654 autoneg_reg |= MDIO_AN_10GBT_CTRL_ADV10G;
Auke Kok9a799d72007-09-15 14:07:45 -0700655
Don Skidmored2e455a2016-10-21 21:10:54 -0400656 hw->phy.ops.write_reg(hw, MDIO_AN_10GBT_CTRL, MDIO_MMD_AN, autoneg_reg);
657
658 hw->phy.ops.read_reg(hw, IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
659 MDIO_MMD_AN, &autoneg_reg);
660
661 if (hw->mac.type == ixgbe_mac_X550) {
662 /* Set or unset auto-negotiation 5G advertisement */
663 autoneg_reg &= ~IXGBE_MII_5GBASE_T_ADVERTISE;
664 if ((hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_5GB_FULL) &&
665 (speed & IXGBE_LINK_SPEED_5GB_FULL))
666 autoneg_reg |= IXGBE_MII_5GBASE_T_ADVERTISE;
667
668 /* Set or unset auto-negotiation 2.5G advertisement */
669 autoneg_reg &= ~IXGBE_MII_2_5GBASE_T_ADVERTISE;
670 if ((hw->phy.autoneg_advertised &
671 IXGBE_LINK_SPEED_2_5GB_FULL) &&
672 (speed & IXGBE_LINK_SPEED_2_5GB_FULL))
673 autoneg_reg |= IXGBE_MII_2_5GBASE_T_ADVERTISE;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000674 }
675
Don Skidmored2e455a2016-10-21 21:10:54 -0400676 /* Set or unset auto-negotiation 1G advertisement */
677 autoneg_reg &= ~IXGBE_MII_1GBASE_T_ADVERTISE;
678 if ((hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL) &&
679 (speed & IXGBE_LINK_SPEED_1GB_FULL))
680 autoneg_reg |= IXGBE_MII_1GBASE_T_ADVERTISE;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000681
Don Skidmored2e455a2016-10-21 21:10:54 -0400682 hw->phy.ops.write_reg(hw, IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
683 MDIO_MMD_AN, autoneg_reg);
Emil Tantilov9dda1732011-03-05 01:28:07 +0000684
Don Skidmored2e455a2016-10-21 21:10:54 -0400685 /* Set or unset auto-negotiation 100M advertisement */
686 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE, MDIO_MMD_AN, &autoneg_reg);
Emil Tantilov9dda1732011-03-05 01:28:07 +0000687
Don Skidmored2e455a2016-10-21 21:10:54 -0400688 autoneg_reg &= ~(ADVERTISE_100FULL | ADVERTISE_100HALF);
689 if ((hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL) &&
690 (speed & IXGBE_LINK_SPEED_100_FULL))
691 autoneg_reg |= ADVERTISE_100FULL;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000692
Don Skidmored2e455a2016-10-21 21:10:54 -0400693 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE, MDIO_MMD_AN, autoneg_reg);
Auke Kok9a799d72007-09-15 14:07:45 -0700694
Don Skidmorec97506a2014-02-27 20:32:43 -0800695 /* Blocked by MNG FW so don't reset PHY */
696 if (ixgbe_check_reset_blocked(hw))
Mark Rustade90dd262014-07-22 06:51:08 +0000697 return 0;
Don Skidmorec97506a2014-02-27 20:32:43 -0800698
Auke Kok9a799d72007-09-15 14:07:45 -0700699 /* Restart PHY autonegotiation and wait for completion */
Emil Tantilov9dda1732011-03-05 01:28:07 +0000700 hw->phy.ops.read_reg(hw, MDIO_CTRL1,
701 MDIO_MMD_AN, &autoneg_reg);
Auke Kok9a799d72007-09-15 14:07:45 -0700702
Ben Hutchings6b73e102009-04-29 08:08:58 +0000703 autoneg_reg |= MDIO_AN_CTRL1_RESTART;
Auke Kok9a799d72007-09-15 14:07:45 -0700704
Emil Tantilov9dda1732011-03-05 01:28:07 +0000705 hw->phy.ops.write_reg(hw, MDIO_CTRL1,
706 MDIO_MMD_AN, autoneg_reg);
Auke Kok9a799d72007-09-15 14:07:45 -0700707
Auke Kok9a799d72007-09-15 14:07:45 -0700708 return status;
709}
710
711/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700712 * ixgbe_setup_phy_link_speed_generic - Sets the auto advertised capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700713 * @hw: pointer to hardware structure
714 * @speed: new link speed
Auke Kok9a799d72007-09-15 14:07:45 -0700715 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700716s32 ixgbe_setup_phy_link_speed_generic(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000717 ixgbe_link_speed speed,
718 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700719{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700720
Auke Kok9a799d72007-09-15 14:07:45 -0700721 /*
722 * Clear autoneg_advertised and set new values based on input link
723 * speed.
724 */
725 hw->phy.autoneg_advertised = 0;
726
727 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
728 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700729
Auke Kok9a799d72007-09-15 14:07:45 -0700730 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
731 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL;
732
Emil Tantilov9dda1732011-03-05 01:28:07 +0000733 if (speed & IXGBE_LINK_SPEED_100_FULL)
734 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_100_FULL;
735
Auke Kok9a799d72007-09-15 14:07:45 -0700736 /* Setup link based on the new speed settings */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700737 hw->phy.ops.setup_link(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700738
739 return 0;
740}
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700741
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700742/**
Mark Rustadae8140a2015-06-25 17:49:57 -0700743 * ixgbe_get_copper_speeds_supported - Get copper link speed from phy
744 * @hw: pointer to hardware structure
745 *
746 * Determines the supported link capabilities by reading the PHY auto
747 * negotiation register.
748 */
749static s32 ixgbe_get_copper_speeds_supported(struct ixgbe_hw *hw)
750{
751 u16 speed_ability;
752 s32 status;
753
754 status = hw->phy.ops.read_reg(hw, MDIO_SPEED, MDIO_MMD_PMAPMD,
755 &speed_ability);
756 if (status)
757 return status;
758
759 if (speed_ability & MDIO_SPEED_10G)
760 hw->phy.speeds_supported |= IXGBE_LINK_SPEED_10GB_FULL;
761 if (speed_ability & MDIO_PMA_SPEED_1000)
762 hw->phy.speeds_supported |= IXGBE_LINK_SPEED_1GB_FULL;
763 if (speed_ability & MDIO_PMA_SPEED_100)
764 hw->phy.speeds_supported |= IXGBE_LINK_SPEED_100_FULL;
765
766 switch (hw->mac.type) {
767 case ixgbe_mac_X550:
768 hw->phy.speeds_supported |= IXGBE_LINK_SPEED_2_5GB_FULL;
769 hw->phy.speeds_supported |= IXGBE_LINK_SPEED_5GB_FULL;
770 break;
771 case ixgbe_mac_X550EM_x:
772 hw->phy.speeds_supported &= ~IXGBE_LINK_SPEED_100_FULL;
773 break;
774 default:
775 break;
776 }
777
778 return 0;
779}
780
781/**
Don Skidmorea391f1d2010-11-16 19:27:15 -0800782 * ixgbe_get_copper_link_capabilities_generic - Determines link capabilities
783 * @hw: pointer to hardware structure
784 * @speed: pointer to link speed
785 * @autoneg: boolean auto-negotiation value
Don Skidmorea391f1d2010-11-16 19:27:15 -0800786 */
787s32 ixgbe_get_copper_link_capabilities_generic(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000788 ixgbe_link_speed *speed,
789 bool *autoneg)
Don Skidmorea391f1d2010-11-16 19:27:15 -0800790{
Mark Rustadae8140a2015-06-25 17:49:57 -0700791 s32 status = 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -0800792
Don Skidmorea391f1d2010-11-16 19:27:15 -0800793 *autoneg = true;
Mark Rustadae8140a2015-06-25 17:49:57 -0700794 if (!hw->phy.speeds_supported)
795 status = ixgbe_get_copper_speeds_supported(hw);
Don Skidmorea391f1d2010-11-16 19:27:15 -0800796
Mark Rustadae8140a2015-06-25 17:49:57 -0700797 *speed = hw->phy.speeds_supported;
Don Skidmorea391f1d2010-11-16 19:27:15 -0800798 return status;
799}
800
801/**
Emil Tantilov9dda1732011-03-05 01:28:07 +0000802 * ixgbe_check_phy_link_tnx - Determine link and speed status
803 * @hw: pointer to hardware structure
804 *
805 * Reads the VS1 register to determine if link is up and the current speed for
806 * the PHY.
807 **/
808s32 ixgbe_check_phy_link_tnx(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
809 bool *link_up)
810{
Mark Rustade90dd262014-07-22 06:51:08 +0000811 s32 status;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000812 u32 time_out;
813 u32 max_time_out = 10;
814 u16 phy_link = 0;
815 u16 phy_speed = 0;
816 u16 phy_data = 0;
817
818 /* Initialize speed and link to default case */
819 *link_up = false;
820 *speed = IXGBE_LINK_SPEED_10GB_FULL;
821
822 /*
823 * Check current speed and link status of the PHY register.
824 * This is a vendor specific register and may have to
825 * be changed for other copper PHYs.
826 */
827 for (time_out = 0; time_out < max_time_out; time_out++) {
828 udelay(10);
829 status = hw->phy.ops.read_reg(hw,
830 MDIO_STAT1,
831 MDIO_MMD_VEND1,
832 &phy_data);
833 phy_link = phy_data &
834 IXGBE_MDIO_VENDOR_SPECIFIC_1_LINK_STATUS;
835 phy_speed = phy_data &
836 IXGBE_MDIO_VENDOR_SPECIFIC_1_SPEED_STATUS;
837 if (phy_link == IXGBE_MDIO_VENDOR_SPECIFIC_1_LINK_STATUS) {
838 *link_up = true;
839 if (phy_speed ==
840 IXGBE_MDIO_VENDOR_SPECIFIC_1_SPEED_STATUS)
841 *speed = IXGBE_LINK_SPEED_1GB_FULL;
842 break;
843 }
844 }
845
846 return status;
847}
848
849/**
850 * ixgbe_setup_phy_link_tnx - Set and restart autoneg
851 * @hw: pointer to hardware structure
852 *
853 * Restart autonegotiation and PHY and waits for completion.
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000854 * This function always returns success, this is nessary since
855 * it is called via a function pointer that could call other
856 * functions that could return an error.
Emil Tantilov9dda1732011-03-05 01:28:07 +0000857 **/
858s32 ixgbe_setup_phy_link_tnx(struct ixgbe_hw *hw)
859{
Emil Tantilov9dda1732011-03-05 01:28:07 +0000860 u16 autoneg_reg = IXGBE_MII_AUTONEG_REG;
861 bool autoneg = false;
862 ixgbe_link_speed speed;
863
864 ixgbe_get_copper_link_capabilities_generic(hw, &speed, &autoneg);
865
866 if (speed & IXGBE_LINK_SPEED_10GB_FULL) {
867 /* Set or unset auto-negotiation 10G advertisement */
868 hw->phy.ops.read_reg(hw, MDIO_AN_10GBT_CTRL,
869 MDIO_MMD_AN,
870 &autoneg_reg);
871
872 autoneg_reg &= ~MDIO_AN_10GBT_CTRL_ADV10G;
873 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL)
874 autoneg_reg |= MDIO_AN_10GBT_CTRL_ADV10G;
875
876 hw->phy.ops.write_reg(hw, MDIO_AN_10GBT_CTRL,
877 MDIO_MMD_AN,
878 autoneg_reg);
879 }
880
881 if (speed & IXGBE_LINK_SPEED_1GB_FULL) {
882 /* Set or unset auto-negotiation 1G advertisement */
883 hw->phy.ops.read_reg(hw, IXGBE_MII_AUTONEG_XNP_TX_REG,
884 MDIO_MMD_AN,
885 &autoneg_reg);
886
887 autoneg_reg &= ~IXGBE_MII_1GBASE_T_ADVERTISE_XNP_TX;
888 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
889 autoneg_reg |= IXGBE_MII_1GBASE_T_ADVERTISE_XNP_TX;
890
891 hw->phy.ops.write_reg(hw, IXGBE_MII_AUTONEG_XNP_TX_REG,
892 MDIO_MMD_AN,
893 autoneg_reg);
894 }
895
896 if (speed & IXGBE_LINK_SPEED_100_FULL) {
897 /* Set or unset auto-negotiation 100M advertisement */
898 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
899 MDIO_MMD_AN,
900 &autoneg_reg);
901
Emil Tantilov50c022e2011-03-31 09:36:12 +0000902 autoneg_reg &= ~(ADVERTISE_100FULL |
903 ADVERTISE_100HALF);
Emil Tantilov9dda1732011-03-05 01:28:07 +0000904 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
905 autoneg_reg |= ADVERTISE_100FULL;
906
907 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
908 MDIO_MMD_AN,
909 autoneg_reg);
910 }
911
Don Skidmorec97506a2014-02-27 20:32:43 -0800912 /* Blocked by MNG FW so don't reset PHY */
913 if (ixgbe_check_reset_blocked(hw))
Mark Rustade90dd262014-07-22 06:51:08 +0000914 return 0;
Don Skidmorec97506a2014-02-27 20:32:43 -0800915
Emil Tantilov9dda1732011-03-05 01:28:07 +0000916 /* Restart PHY autonegotiation and wait for completion */
917 hw->phy.ops.read_reg(hw, MDIO_CTRL1,
918 MDIO_MMD_AN, &autoneg_reg);
919
920 autoneg_reg |= MDIO_AN_CTRL1_RESTART;
921
922 hw->phy.ops.write_reg(hw, MDIO_CTRL1,
923 MDIO_MMD_AN, autoneg_reg);
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000924 return 0;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000925}
926
927/**
928 * ixgbe_get_phy_firmware_version_tnx - Gets the PHY Firmware Version
929 * @hw: pointer to hardware structure
930 * @firmware_version: pointer to the PHY Firmware Version
931 **/
932s32 ixgbe_get_phy_firmware_version_tnx(struct ixgbe_hw *hw,
933 u16 *firmware_version)
934{
Mark Rustade90dd262014-07-22 06:51:08 +0000935 s32 status;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000936
937 status = hw->phy.ops.read_reg(hw, TNX_FW_REV,
938 MDIO_MMD_VEND1,
939 firmware_version);
940
941 return status;
942}
943
944/**
945 * ixgbe_get_phy_firmware_version_generic - Gets the PHY Firmware Version
946 * @hw: pointer to hardware structure
947 * @firmware_version: pointer to the PHY Firmware Version
948 **/
949s32 ixgbe_get_phy_firmware_version_generic(struct ixgbe_hw *hw,
950 u16 *firmware_version)
951{
Mark Rustade90dd262014-07-22 06:51:08 +0000952 s32 status;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000953
954 status = hw->phy.ops.read_reg(hw, AQ_FW_REV,
955 MDIO_MMD_VEND1,
956 firmware_version);
957
958 return status;
959}
960
961/**
Donald Skidmorec4900be2008-11-20 21:11:42 -0800962 * ixgbe_reset_phy_nl - Performs a PHY reset
963 * @hw: pointer to hardware structure
964 **/
965s32 ixgbe_reset_phy_nl(struct ixgbe_hw *hw)
966{
967 u16 phy_offset, control, eword, edata, block_crc;
968 bool end_data = false;
969 u16 list_offset, data_offset;
970 u16 phy_data = 0;
Mark Rustade90dd262014-07-22 06:51:08 +0000971 s32 ret_val;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800972 u32 i;
973
Don Skidmorec97506a2014-02-27 20:32:43 -0800974 /* Blocked by MNG FW so bail */
975 if (ixgbe_check_reset_blocked(hw))
Mark Rustade90dd262014-07-22 06:51:08 +0000976 return 0;
Don Skidmorec97506a2014-02-27 20:32:43 -0800977
Ben Hutchings6b73e102009-04-29 08:08:58 +0000978 hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS, &phy_data);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800979
980 /* reset the PHY and poll for completion */
Ben Hutchings6b73e102009-04-29 08:08:58 +0000981 hw->phy.ops.write_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000982 (phy_data | MDIO_CTRL1_RESET));
Donald Skidmorec4900be2008-11-20 21:11:42 -0800983
984 for (i = 0; i < 100; i++) {
Ben Hutchings6b73e102009-04-29 08:08:58 +0000985 hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000986 &phy_data);
Ben Hutchings6b73e102009-04-29 08:08:58 +0000987 if ((phy_data & MDIO_CTRL1_RESET) == 0)
Donald Skidmorec4900be2008-11-20 21:11:42 -0800988 break;
Don Skidmore032b4322011-03-18 09:32:53 +0000989 usleep_range(10000, 20000);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800990 }
991
Ben Hutchings6b73e102009-04-29 08:08:58 +0000992 if ((phy_data & MDIO_CTRL1_RESET) != 0) {
Donald Skidmorec4900be2008-11-20 21:11:42 -0800993 hw_dbg(hw, "PHY reset did not complete.\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000994 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800995 }
996
997 /* Get init offsets */
998 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000999 &data_offset);
Mark Rustade90dd262014-07-22 06:51:08 +00001000 if (ret_val)
1001 return ret_val;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001002
1003 ret_val = hw->eeprom.ops.read(hw, data_offset, &block_crc);
1004 data_offset++;
1005 while (!end_data) {
1006 /*
1007 * Read control word from PHY init contents offset
1008 */
1009 ret_val = hw->eeprom.ops.read(hw, data_offset, &eword);
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001010 if (ret_val)
1011 goto err_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001012 control = (eword & IXGBE_CONTROL_MASK_NL) >>
Jacob Kellere7cf7452014-04-09 06:03:10 +00001013 IXGBE_CONTROL_SHIFT_NL;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001014 edata = eword & IXGBE_DATA_MASK_NL;
1015 switch (control) {
1016 case IXGBE_DELAY_NL:
1017 data_offset++;
1018 hw_dbg(hw, "DELAY: %d MS\n", edata);
Don Skidmore032b4322011-03-18 09:32:53 +00001019 usleep_range(edata * 1000, edata * 2000);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001020 break;
1021 case IXGBE_DATA_NL:
Frans Popd6dbee82010-03-24 07:57:35 +00001022 hw_dbg(hw, "DATA:\n");
Donald Skidmorec4900be2008-11-20 21:11:42 -08001023 data_offset++;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001024 ret_val = hw->eeprom.ops.read(hw, data_offset++,
1025 &phy_offset);
1026 if (ret_val)
1027 goto err_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001028 for (i = 0; i < edata; i++) {
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001029 ret_val = hw->eeprom.ops.read(hw, data_offset,
1030 &eword);
1031 if (ret_val)
1032 goto err_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001033 hw->phy.ops.write_reg(hw, phy_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001034 MDIO_MMD_PMAPMD, eword);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001035 hw_dbg(hw, "Wrote %4.4x to %4.4x\n", eword,
1036 phy_offset);
1037 data_offset++;
1038 phy_offset++;
1039 }
1040 break;
1041 case IXGBE_CONTROL_NL:
1042 data_offset++;
Frans Popd6dbee82010-03-24 07:57:35 +00001043 hw_dbg(hw, "CONTROL:\n");
Donald Skidmorec4900be2008-11-20 21:11:42 -08001044 if (edata == IXGBE_CONTROL_EOL_NL) {
1045 hw_dbg(hw, "EOL\n");
1046 end_data = true;
1047 } else if (edata == IXGBE_CONTROL_SOL_NL) {
1048 hw_dbg(hw, "SOL\n");
1049 } else {
1050 hw_dbg(hw, "Bad control value\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001051 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001052 }
1053 break;
1054 default:
1055 hw_dbg(hw, "Bad control type\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001056 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001057 }
1058 }
1059
Donald Skidmorec4900be2008-11-20 21:11:42 -08001060 return ret_val;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001061
1062err_eeprom:
1063 hw_err(hw, "eeprom read at offset %d failed\n", data_offset);
1064 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001065}
1066
1067/**
Don Skidmore8f583322013-07-27 06:25:38 +00001068 * ixgbe_identify_module_generic - Identifies module type
Donald Skidmorec4900be2008-11-20 21:11:42 -08001069 * @hw: pointer to hardware structure
1070 *
Don Skidmore8f583322013-07-27 06:25:38 +00001071 * Determines HW type and calls appropriate function.
1072 **/
1073s32 ixgbe_identify_module_generic(struct ixgbe_hw *hw)
1074{
Don Skidmore8f583322013-07-27 06:25:38 +00001075 switch (hw->mac.ops.get_media_type(hw)) {
1076 case ixgbe_media_type_fiber:
Mark Rustade90dd262014-07-22 06:51:08 +00001077 return ixgbe_identify_sfp_module_generic(hw);
Don Skidmore8f583322013-07-27 06:25:38 +00001078 case ixgbe_media_type_fiber_qsfp:
Mark Rustade90dd262014-07-22 06:51:08 +00001079 return ixgbe_identify_qsfp_module_generic(hw);
Don Skidmore8f583322013-07-27 06:25:38 +00001080 default:
1081 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
Mark Rustade90dd262014-07-22 06:51:08 +00001082 return IXGBE_ERR_SFP_NOT_PRESENT;
Don Skidmore8f583322013-07-27 06:25:38 +00001083 }
1084
Mark Rustade90dd262014-07-22 06:51:08 +00001085 return IXGBE_ERR_SFP_NOT_PRESENT;
Don Skidmore8f583322013-07-27 06:25:38 +00001086}
1087
1088/**
1089 * ixgbe_identify_sfp_module_generic - Identifies SFP modules
1090 * @hw: pointer to hardware structure
Mark Rustade90dd262014-07-22 06:51:08 +00001091 *
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001092 * Searches for and identifies the SFP module and assigns appropriate PHY type.
Donald Skidmorec4900be2008-11-20 21:11:42 -08001093 **/
1094s32 ixgbe_identify_sfp_module_generic(struct ixgbe_hw *hw)
1095{
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00001096 struct ixgbe_adapter *adapter = hw->back;
Mark Rustade90dd262014-07-22 06:51:08 +00001097 s32 status;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001098 u32 vendor_oui = 0;
PJ Waskiewicz553b4492009-04-09 22:28:15 +00001099 enum ixgbe_sfp_type stored_sfp_type = hw->phy.sfp_type;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001100 u8 identifier = 0;
1101 u8 comp_codes_1g = 0;
1102 u8 comp_codes_10g = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001103 u8 oui_bytes[3] = {0, 0, 0};
Peter P Waskiewicz Jr537d58a2009-05-19 09:18:51 +00001104 u8 cable_tech = 0;
Don Skidmoreea0a04d2010-05-18 16:00:13 +00001105 u8 cable_spec = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001106 u16 enforce_sfp = 0;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001107
Don Skidmore8ca783a2009-05-26 20:40:47 -07001108 if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber) {
1109 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
Mark Rustade90dd262014-07-22 06:51:08 +00001110 return IXGBE_ERR_SFP_NOT_PRESENT;
Don Skidmore8ca783a2009-05-26 20:40:47 -07001111 }
1112
Mark Rustadda4ea4b2015-08-08 16:18:07 -07001113 /* LAN ID is needed for sfp_type determination */
1114 hw->mac.ops.set_lan_id(hw);
1115
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001116 status = hw->phy.ops.read_i2c_eeprom(hw,
1117 IXGBE_SFF_IDENTIFIER,
Emil Tantilov51d04202013-01-18 02:17:11 +00001118 &identifier);
Donald Skidmorec4900be2008-11-20 21:11:42 -08001119
Mark Rustade90dd262014-07-22 06:51:08 +00001120 if (status)
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001121 goto err_read_i2c_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001122
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001123 if (identifier != IXGBE_SFF_IDENTIFIER_SFP) {
1124 hw->phy.type = ixgbe_phy_sfp_unsupported;
Mark Rustade90dd262014-07-22 06:51:08 +00001125 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1126 }
1127 status = hw->phy.ops.read_i2c_eeprom(hw,
1128 IXGBE_SFF_1GBE_COMP_CODES,
1129 &comp_codes_1g);
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001130
Mark Rustade90dd262014-07-22 06:51:08 +00001131 if (status)
1132 goto err_read_i2c_eeprom;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001133
Mark Rustade90dd262014-07-22 06:51:08 +00001134 status = hw->phy.ops.read_i2c_eeprom(hw,
1135 IXGBE_SFF_10GBE_COMP_CODES,
1136 &comp_codes_10g);
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001137
Mark Rustade90dd262014-07-22 06:51:08 +00001138 if (status)
1139 goto err_read_i2c_eeprom;
1140 status = hw->phy.ops.read_i2c_eeprom(hw,
1141 IXGBE_SFF_CABLE_TECHNOLOGY,
1142 &cable_tech);
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001143
Mark Rustade90dd262014-07-22 06:51:08 +00001144 if (status)
1145 goto err_read_i2c_eeprom;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001146
Mark Rustade90dd262014-07-22 06:51:08 +00001147 /* ID Module
1148 * =========
1149 * 0 SFP_DA_CU
1150 * 1 SFP_SR
1151 * 2 SFP_LR
1152 * 3 SFP_DA_CORE0 - 82599-specific
1153 * 4 SFP_DA_CORE1 - 82599-specific
1154 * 5 SFP_SR/LR_CORE0 - 82599-specific
1155 * 6 SFP_SR/LR_CORE1 - 82599-specific
1156 * 7 SFP_act_lmt_DA_CORE0 - 82599-specific
1157 * 8 SFP_act_lmt_DA_CORE1 - 82599-specific
1158 * 9 SFP_1g_cu_CORE0 - 82599-specific
1159 * 10 SFP_1g_cu_CORE1 - 82599-specific
1160 * 11 SFP_1g_sx_CORE0 - 82599-specific
1161 * 12 SFP_1g_sx_CORE1 - 82599-specific
1162 */
1163 if (hw->mac.type == ixgbe_mac_82598EB) {
1164 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE)
1165 hw->phy.sfp_type = ixgbe_sfp_type_da_cu;
1166 else if (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)
1167 hw->phy.sfp_type = ixgbe_sfp_type_sr;
1168 else if (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)
1169 hw->phy.sfp_type = ixgbe_sfp_type_lr;
1170 else
1171 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Mark Rustad69eec0c2015-08-08 16:18:43 -07001172 } else {
Mark Rustade90dd262014-07-22 06:51:08 +00001173 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE) {
1174 if (hw->bus.lan_id == 0)
1175 hw->phy.sfp_type =
1176 ixgbe_sfp_type_da_cu_core0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001177 else
Mark Rustade90dd262014-07-22 06:51:08 +00001178 hw->phy.sfp_type =
1179 ixgbe_sfp_type_da_cu_core1;
1180 } else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE) {
1181 hw->phy.ops.read_i2c_eeprom(
1182 hw, IXGBE_SFF_CABLE_SPEC_COMP,
1183 &cable_spec);
1184 if (cable_spec &
1185 IXGBE_SFF_DA_SPEC_ACTIVE_LIMITING) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001186 if (hw->bus.lan_id == 0)
1187 hw->phy.sfp_type =
Mark Rustade90dd262014-07-22 06:51:08 +00001188 ixgbe_sfp_type_da_act_lmt_core0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001189 else
1190 hw->phy.sfp_type =
Mark Rustade90dd262014-07-22 06:51:08 +00001191 ixgbe_sfp_type_da_act_lmt_core1;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001192 } else {
Mark Rustade90dd262014-07-22 06:51:08 +00001193 hw->phy.sfp_type =
1194 ixgbe_sfp_type_unknown;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001195 }
Mark Rustade90dd262014-07-22 06:51:08 +00001196 } else if (comp_codes_10g &
1197 (IXGBE_SFF_10GBASESR_CAPABLE |
1198 IXGBE_SFF_10GBASELR_CAPABLE)) {
1199 if (hw->bus.lan_id == 0)
1200 hw->phy.sfp_type =
1201 ixgbe_sfp_type_srlr_core0;
1202 else
1203 hw->phy.sfp_type =
1204 ixgbe_sfp_type_srlr_core1;
1205 } else if (comp_codes_1g & IXGBE_SFF_1GBASET_CAPABLE) {
1206 if (hw->bus.lan_id == 0)
1207 hw->phy.sfp_type =
1208 ixgbe_sfp_type_1g_cu_core0;
1209 else
1210 hw->phy.sfp_type =
1211 ixgbe_sfp_type_1g_cu_core1;
1212 } else if (comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) {
1213 if (hw->bus.lan_id == 0)
1214 hw->phy.sfp_type =
1215 ixgbe_sfp_type_1g_sx_core0;
1216 else
1217 hw->phy.sfp_type =
1218 ixgbe_sfp_type_1g_sx_core1;
1219 } else if (comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) {
1220 if (hw->bus.lan_id == 0)
1221 hw->phy.sfp_type =
1222 ixgbe_sfp_type_1g_lx_core0;
1223 else
1224 hw->phy.sfp_type =
1225 ixgbe_sfp_type_1g_lx_core1;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001226 } else {
Mark Rustade90dd262014-07-22 06:51:08 +00001227 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001228 }
Donald Skidmorec4900be2008-11-20 21:11:42 -08001229 }
1230
Mark Rustade90dd262014-07-22 06:51:08 +00001231 if (hw->phy.sfp_type != stored_sfp_type)
1232 hw->phy.sfp_setup_needed = true;
1233
1234 /* Determine if the SFP+ PHY is dual speed or not. */
1235 hw->phy.multispeed_fiber = false;
1236 if (((comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) &&
1237 (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)) ||
1238 ((comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) &&
1239 (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)))
1240 hw->phy.multispeed_fiber = true;
1241
1242 /* Determine PHY vendor */
1243 if (hw->phy.type != ixgbe_phy_nl) {
1244 hw->phy.id = identifier;
1245 status = hw->phy.ops.read_i2c_eeprom(hw,
1246 IXGBE_SFF_VENDOR_OUI_BYTE0,
1247 &oui_bytes[0]);
1248
1249 if (status != 0)
1250 goto err_read_i2c_eeprom;
1251
1252 status = hw->phy.ops.read_i2c_eeprom(hw,
1253 IXGBE_SFF_VENDOR_OUI_BYTE1,
1254 &oui_bytes[1]);
1255
1256 if (status != 0)
1257 goto err_read_i2c_eeprom;
1258
1259 status = hw->phy.ops.read_i2c_eeprom(hw,
1260 IXGBE_SFF_VENDOR_OUI_BYTE2,
1261 &oui_bytes[2]);
1262
1263 if (status != 0)
1264 goto err_read_i2c_eeprom;
1265
1266 vendor_oui =
1267 ((oui_bytes[0] << IXGBE_SFF_VENDOR_OUI_BYTE0_SHIFT) |
1268 (oui_bytes[1] << IXGBE_SFF_VENDOR_OUI_BYTE1_SHIFT) |
1269 (oui_bytes[2] << IXGBE_SFF_VENDOR_OUI_BYTE2_SHIFT));
1270
1271 switch (vendor_oui) {
1272 case IXGBE_SFF_VENDOR_OUI_TYCO:
1273 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE)
1274 hw->phy.type =
1275 ixgbe_phy_sfp_passive_tyco;
1276 break;
1277 case IXGBE_SFF_VENDOR_OUI_FTL:
1278 if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE)
1279 hw->phy.type = ixgbe_phy_sfp_ftl_active;
1280 else
1281 hw->phy.type = ixgbe_phy_sfp_ftl;
1282 break;
1283 case IXGBE_SFF_VENDOR_OUI_AVAGO:
1284 hw->phy.type = ixgbe_phy_sfp_avago;
1285 break;
1286 case IXGBE_SFF_VENDOR_OUI_INTEL:
1287 hw->phy.type = ixgbe_phy_sfp_intel;
1288 break;
1289 default:
1290 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE)
1291 hw->phy.type =
1292 ixgbe_phy_sfp_passive_unknown;
1293 else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE)
1294 hw->phy.type =
1295 ixgbe_phy_sfp_active_unknown;
1296 else
1297 hw->phy.type = ixgbe_phy_sfp_unknown;
1298 break;
1299 }
1300 }
1301
1302 /* Allow any DA cable vendor */
1303 if (cable_tech & (IXGBE_SFF_DA_PASSIVE_CABLE |
1304 IXGBE_SFF_DA_ACTIVE_CABLE))
1305 return 0;
1306
1307 /* Verify supported 1G SFP modules */
1308 if (comp_codes_10g == 0 &&
1309 !(hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core1 ||
1310 hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core0 ||
1311 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
1312 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1 ||
1313 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
1314 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1)) {
1315 hw->phy.type = ixgbe_phy_sfp_unsupported;
1316 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1317 }
1318
1319 /* Anything else 82598-based is supported */
1320 if (hw->mac.type == ixgbe_mac_82598EB)
1321 return 0;
1322
1323 hw->mac.ops.get_device_caps(hw, &enforce_sfp);
1324 if (!(enforce_sfp & IXGBE_DEVICE_CAPS_ALLOW_ANY_SFP) &&
1325 !(hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core0 ||
1326 hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core1 ||
1327 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
1328 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1 ||
1329 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
1330 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1)) {
1331 /* Make sure we're a supported PHY type */
1332 if (hw->phy.type == ixgbe_phy_sfp_intel)
1333 return 0;
1334 if (hw->allow_unsupported_sfp) {
1335 e_warn(drv, "WARNING: Intel (R) Network Connections are quality tested using Intel (R) Ethernet Optics. Using untested modules is not supported and may cause unstable operation or damage to the module or the adapter. Intel Corporation is not responsible for any harm caused by using untested modules.\n");
1336 return 0;
1337 }
1338 hw_dbg(hw, "SFP+ module not supported\n");
1339 hw->phy.type = ixgbe_phy_sfp_unsupported;
1340 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1341 }
1342 return 0;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001343
1344err_read_i2c_eeprom:
1345 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
1346 if (hw->phy.type != ixgbe_phy_nl) {
1347 hw->phy.id = 0;
1348 hw->phy.type = ixgbe_phy_unknown;
1349 }
1350 return IXGBE_ERR_SFP_NOT_PRESENT;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001351}
1352
1353/**
Don Skidmore8f583322013-07-27 06:25:38 +00001354 * ixgbe_identify_qsfp_module_generic - Identifies QSFP modules
1355 * @hw: pointer to hardware structure
1356 *
1357 * Searches for and identifies the QSFP module and assigns appropriate PHY type
1358 **/
Mark Rustad88217542013-11-23 03:19:19 +00001359static s32 ixgbe_identify_qsfp_module_generic(struct ixgbe_hw *hw)
Don Skidmore8f583322013-07-27 06:25:38 +00001360{
1361 struct ixgbe_adapter *adapter = hw->back;
Mark Rustade90dd262014-07-22 06:51:08 +00001362 s32 status;
Don Skidmore8f583322013-07-27 06:25:38 +00001363 u32 vendor_oui = 0;
1364 enum ixgbe_sfp_type stored_sfp_type = hw->phy.sfp_type;
1365 u8 identifier = 0;
1366 u8 comp_codes_1g = 0;
1367 u8 comp_codes_10g = 0;
1368 u8 oui_bytes[3] = {0, 0, 0};
1369 u16 enforce_sfp = 0;
Emil Tantilov9a84fea2013-08-16 23:11:14 +00001370 u8 connector = 0;
1371 u8 cable_length = 0;
1372 u8 device_tech = 0;
1373 bool active_cable = false;
Don Skidmore8f583322013-07-27 06:25:38 +00001374
1375 if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber_qsfp) {
1376 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
Mark Rustade90dd262014-07-22 06:51:08 +00001377 return IXGBE_ERR_SFP_NOT_PRESENT;
Don Skidmore8f583322013-07-27 06:25:38 +00001378 }
1379
Don Skidmore7e49d612015-06-09 17:48:54 -07001380 /* LAN ID is needed for sfp_type determination */
1381 hw->mac.ops.set_lan_id(hw);
1382
Don Skidmore8f583322013-07-27 06:25:38 +00001383 status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_IDENTIFIER,
1384 &identifier);
1385
1386 if (status != 0)
1387 goto err_read_i2c_eeprom;
1388
1389 if (identifier != IXGBE_SFF_IDENTIFIER_QSFP_PLUS) {
1390 hw->phy.type = ixgbe_phy_sfp_unsupported;
Mark Rustade90dd262014-07-22 06:51:08 +00001391 return IXGBE_ERR_SFP_NOT_SUPPORTED;
Don Skidmore8f583322013-07-27 06:25:38 +00001392 }
1393
1394 hw->phy.id = identifier;
1395
Don Skidmore8f583322013-07-27 06:25:38 +00001396 status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_QSFP_10GBE_COMP,
1397 &comp_codes_10g);
1398
1399 if (status != 0)
1400 goto err_read_i2c_eeprom;
1401
Emil Tantilov61aaf9e2013-08-13 07:22:16 +00001402 status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_QSFP_1GBE_COMP,
1403 &comp_codes_1g);
1404
1405 if (status != 0)
1406 goto err_read_i2c_eeprom;
1407
Don Skidmore8f583322013-07-27 06:25:38 +00001408 if (comp_codes_10g & IXGBE_SFF_QSFP_DA_PASSIVE_CABLE) {
1409 hw->phy.type = ixgbe_phy_qsfp_passive_unknown;
1410 if (hw->bus.lan_id == 0)
1411 hw->phy.sfp_type = ixgbe_sfp_type_da_cu_core0;
1412 else
1413 hw->phy.sfp_type = ixgbe_sfp_type_da_cu_core1;
Don Skidmore8f583322013-07-27 06:25:38 +00001414 } else if (comp_codes_10g & (IXGBE_SFF_10GBASESR_CAPABLE |
1415 IXGBE_SFF_10GBASELR_CAPABLE)) {
1416 if (hw->bus.lan_id == 0)
1417 hw->phy.sfp_type = ixgbe_sfp_type_srlr_core0;
1418 else
1419 hw->phy.sfp_type = ixgbe_sfp_type_srlr_core1;
1420 } else {
Emil Tantilov9a84fea2013-08-16 23:11:14 +00001421 if (comp_codes_10g & IXGBE_SFF_QSFP_DA_ACTIVE_CABLE)
1422 active_cable = true;
1423
1424 if (!active_cable) {
1425 /* check for active DA cables that pre-date
1426 * SFF-8436 v3.6
1427 */
1428 hw->phy.ops.read_i2c_eeprom(hw,
1429 IXGBE_SFF_QSFP_CONNECTOR,
1430 &connector);
1431
1432 hw->phy.ops.read_i2c_eeprom(hw,
1433 IXGBE_SFF_QSFP_CABLE_LENGTH,
1434 &cable_length);
1435
1436 hw->phy.ops.read_i2c_eeprom(hw,
1437 IXGBE_SFF_QSFP_DEVICE_TECH,
1438 &device_tech);
1439
1440 if ((connector ==
1441 IXGBE_SFF_QSFP_CONNECTOR_NOT_SEPARABLE) &&
1442 (cable_length > 0) &&
1443 ((device_tech >> 4) ==
1444 IXGBE_SFF_QSFP_TRANSMITER_850NM_VCSEL))
1445 active_cable = true;
1446 }
1447
1448 if (active_cable) {
1449 hw->phy.type = ixgbe_phy_qsfp_active_unknown;
1450 if (hw->bus.lan_id == 0)
1451 hw->phy.sfp_type =
1452 ixgbe_sfp_type_da_act_lmt_core0;
1453 else
1454 hw->phy.sfp_type =
1455 ixgbe_sfp_type_da_act_lmt_core1;
1456 } else {
1457 /* unsupported module type */
1458 hw->phy.type = ixgbe_phy_sfp_unsupported;
Mark Rustade90dd262014-07-22 06:51:08 +00001459 return IXGBE_ERR_SFP_NOT_SUPPORTED;
Emil Tantilov9a84fea2013-08-16 23:11:14 +00001460 }
Don Skidmore8f583322013-07-27 06:25:38 +00001461 }
1462
1463 if (hw->phy.sfp_type != stored_sfp_type)
1464 hw->phy.sfp_setup_needed = true;
1465
1466 /* Determine if the QSFP+ PHY is dual speed or not. */
1467 hw->phy.multispeed_fiber = false;
1468 if (((comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) &&
1469 (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)) ||
1470 ((comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) &&
1471 (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)))
1472 hw->phy.multispeed_fiber = true;
1473
1474 /* Determine PHY vendor for optical modules */
1475 if (comp_codes_10g & (IXGBE_SFF_10GBASESR_CAPABLE |
1476 IXGBE_SFF_10GBASELR_CAPABLE)) {
1477 status = hw->phy.ops.read_i2c_eeprom(hw,
1478 IXGBE_SFF_QSFP_VENDOR_OUI_BYTE0,
1479 &oui_bytes[0]);
1480
1481 if (status != 0)
1482 goto err_read_i2c_eeprom;
1483
1484 status = hw->phy.ops.read_i2c_eeprom(hw,
1485 IXGBE_SFF_QSFP_VENDOR_OUI_BYTE1,
1486 &oui_bytes[1]);
1487
1488 if (status != 0)
1489 goto err_read_i2c_eeprom;
1490
1491 status = hw->phy.ops.read_i2c_eeprom(hw,
1492 IXGBE_SFF_QSFP_VENDOR_OUI_BYTE2,
1493 &oui_bytes[2]);
1494
1495 if (status != 0)
1496 goto err_read_i2c_eeprom;
1497
1498 vendor_oui =
1499 ((oui_bytes[0] << IXGBE_SFF_VENDOR_OUI_BYTE0_SHIFT) |
1500 (oui_bytes[1] << IXGBE_SFF_VENDOR_OUI_BYTE1_SHIFT) |
1501 (oui_bytes[2] << IXGBE_SFF_VENDOR_OUI_BYTE2_SHIFT));
1502
1503 if (vendor_oui == IXGBE_SFF_VENDOR_OUI_INTEL)
1504 hw->phy.type = ixgbe_phy_qsfp_intel;
1505 else
1506 hw->phy.type = ixgbe_phy_qsfp_unknown;
1507
1508 hw->mac.ops.get_device_caps(hw, &enforce_sfp);
1509 if (!(enforce_sfp & IXGBE_DEVICE_CAPS_ALLOW_ANY_SFP)) {
1510 /* Make sure we're a supported PHY type */
Mark Rustade90dd262014-07-22 06:51:08 +00001511 if (hw->phy.type == ixgbe_phy_qsfp_intel)
1512 return 0;
1513 if (hw->allow_unsupported_sfp) {
1514 e_warn(drv, "WARNING: Intel (R) Network Connections are quality tested using Intel (R) Ethernet Optics. Using untested modules is not supported and may cause unstable operation or damage to the module or the adapter. Intel Corporation is not responsible for any harm caused by using untested modules.\n");
1515 return 0;
Don Skidmore8f583322013-07-27 06:25:38 +00001516 }
Mark Rustade90dd262014-07-22 06:51:08 +00001517 hw_dbg(hw, "QSFP module not supported\n");
1518 hw->phy.type = ixgbe_phy_sfp_unsupported;
1519 return IXGBE_ERR_SFP_NOT_SUPPORTED;
Don Skidmore8f583322013-07-27 06:25:38 +00001520 }
Mark Rustade90dd262014-07-22 06:51:08 +00001521 return 0;
Don Skidmore8f583322013-07-27 06:25:38 +00001522 }
Mark Rustade90dd262014-07-22 06:51:08 +00001523 return 0;
Don Skidmore8f583322013-07-27 06:25:38 +00001524
1525err_read_i2c_eeprom:
1526 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
1527 hw->phy.id = 0;
1528 hw->phy.type = ixgbe_phy_unknown;
1529
1530 return IXGBE_ERR_SFP_NOT_PRESENT;
1531}
1532
1533/**
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001534 * ixgbe_get_sfp_init_sequence_offsets - Provides offset of PHY init sequence
Donald Skidmorec4900be2008-11-20 21:11:42 -08001535 * @hw: pointer to hardware structure
1536 * @list_offset: offset to the SFP ID list
1537 * @data_offset: offset to the SFP data block
Emil Tantilov75f19c32011-02-19 08:43:55 +00001538 *
1539 * Checks the MAC's EEPROM to see if it supports a given SFP+ module type, if
1540 * so it returns the offsets to the phy init sequence block.
Donald Skidmorec4900be2008-11-20 21:11:42 -08001541 **/
1542s32 ixgbe_get_sfp_init_sequence_offsets(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001543 u16 *list_offset,
1544 u16 *data_offset)
Donald Skidmorec4900be2008-11-20 21:11:42 -08001545{
1546 u16 sfp_id;
Don Skidmorecb836a92010-06-29 18:30:59 +00001547 u16 sfp_type = hw->phy.sfp_type;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001548
1549 if (hw->phy.sfp_type == ixgbe_sfp_type_unknown)
1550 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1551
1552 if (hw->phy.sfp_type == ixgbe_sfp_type_not_present)
1553 return IXGBE_ERR_SFP_NOT_PRESENT;
1554
1555 if ((hw->device_id == IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) &&
1556 (hw->phy.sfp_type == ixgbe_sfp_type_da_cu))
1557 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1558
Don Skidmorecb836a92010-06-29 18:30:59 +00001559 /*
1560 * Limiting active cables and 1G Phys must be initialized as
1561 * SR modules
1562 */
1563 if (sfp_type == ixgbe_sfp_type_da_act_lmt_core0 ||
Don Skidmore345be202013-04-11 06:23:34 +00001564 sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
Jacob Kellera49fda32012-06-08 06:59:09 +00001565 sfp_type == ixgbe_sfp_type_1g_cu_core0 ||
1566 sfp_type == ixgbe_sfp_type_1g_sx_core0)
Don Skidmorecb836a92010-06-29 18:30:59 +00001567 sfp_type = ixgbe_sfp_type_srlr_core0;
1568 else if (sfp_type == ixgbe_sfp_type_da_act_lmt_core1 ||
Don Skidmore345be202013-04-11 06:23:34 +00001569 sfp_type == ixgbe_sfp_type_1g_lx_core1 ||
Jacob Kellera49fda32012-06-08 06:59:09 +00001570 sfp_type == ixgbe_sfp_type_1g_cu_core1 ||
1571 sfp_type == ixgbe_sfp_type_1g_sx_core1)
Don Skidmorecb836a92010-06-29 18:30:59 +00001572 sfp_type = ixgbe_sfp_type_srlr_core1;
1573
Donald Skidmorec4900be2008-11-20 21:11:42 -08001574 /* Read offset to PHY init contents */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001575 if (hw->eeprom.ops.read(hw, IXGBE_PHY_INIT_OFFSET_NL, list_offset)) {
1576 hw_err(hw, "eeprom read at %d failed\n",
1577 IXGBE_PHY_INIT_OFFSET_NL);
1578 return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT;
1579 }
Donald Skidmorec4900be2008-11-20 21:11:42 -08001580
1581 if ((!*list_offset) || (*list_offset == 0xFFFF))
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001582 return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001583
1584 /* Shift offset to first ID word */
1585 (*list_offset)++;
1586
1587 /*
1588 * Find the matching SFP ID in the EEPROM
1589 * and program the init sequence
1590 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001591 if (hw->eeprom.ops.read(hw, *list_offset, &sfp_id))
1592 goto err_phy;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001593
1594 while (sfp_id != IXGBE_PHY_INIT_END_NL) {
Don Skidmorecb836a92010-06-29 18:30:59 +00001595 if (sfp_id == sfp_type) {
Donald Skidmorec4900be2008-11-20 21:11:42 -08001596 (*list_offset)++;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001597 if (hw->eeprom.ops.read(hw, *list_offset, data_offset))
1598 goto err_phy;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001599 if ((!*data_offset) || (*data_offset == 0xFFFF)) {
1600 hw_dbg(hw, "SFP+ module not supported\n");
1601 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1602 } else {
1603 break;
1604 }
1605 } else {
1606 (*list_offset) += 2;
1607 if (hw->eeprom.ops.read(hw, *list_offset, &sfp_id))
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001608 goto err_phy;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001609 }
1610 }
1611
1612 if (sfp_id == IXGBE_PHY_INIT_END_NL) {
1613 hw_dbg(hw, "No matching SFP+ module found\n");
1614 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1615 }
1616
1617 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001618
1619err_phy:
1620 hw_err(hw, "eeprom read at offset %d failed\n", *list_offset);
1621 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001622}
1623
1624/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001625 * ixgbe_read_i2c_eeprom_generic - Reads 8 bit EEPROM word over I2C interface
1626 * @hw: pointer to hardware structure
1627 * @byte_offset: EEPROM byte offset to read
1628 * @eeprom_data: value read
1629 *
1630 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1631 **/
1632s32 ixgbe_read_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001633 u8 *eeprom_data)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001634{
1635 return hw->phy.ops.read_i2c_byte(hw, byte_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001636 IXGBE_I2C_EEPROM_DEV_ADDR,
1637 eeprom_data);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001638}
1639
1640/**
Emil Tantilov07ce8702012-12-19 07:14:17 +00001641 * ixgbe_read_i2c_sff8472_generic - Reads 8 bit word over I2C interface
1642 * @hw: pointer to hardware structure
1643 * @byte_offset: byte offset at address 0xA2
1644 * @eeprom_data: value read
1645 *
1646 * Performs byte read operation to SFP module's SFF-8472 data over I2C
1647 **/
1648s32 ixgbe_read_i2c_sff8472_generic(struct ixgbe_hw *hw, u8 byte_offset,
1649 u8 *sff8472_data)
1650{
1651 return hw->phy.ops.read_i2c_byte(hw, byte_offset,
1652 IXGBE_I2C_EEPROM_DEV_ADDR2,
1653 sff8472_data);
1654}
1655
1656/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001657 * ixgbe_write_i2c_eeprom_generic - Writes 8 bit EEPROM word over I2C interface
1658 * @hw: pointer to hardware structure
1659 * @byte_offset: EEPROM byte offset to write
1660 * @eeprom_data: value to write
1661 *
1662 * Performs byte write operation to SFP module's EEPROM over I2C interface.
1663 **/
1664s32 ixgbe_write_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001665 u8 eeprom_data)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001666{
1667 return hw->phy.ops.write_i2c_byte(hw, byte_offset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001668 IXGBE_I2C_EEPROM_DEV_ADDR,
1669 eeprom_data);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001670}
1671
1672/**
Mark Rustad56f6ed12015-08-08 16:18:22 -07001673 * ixgbe_is_sfp_probe - Returns true if SFP is being detected
1674 * @hw: pointer to hardware structure
1675 * @offset: eeprom offset to be read
1676 * @addr: I2C address to be read
1677 */
1678static bool ixgbe_is_sfp_probe(struct ixgbe_hw *hw, u8 offset, u8 addr)
1679{
1680 if (addr == IXGBE_I2C_EEPROM_DEV_ADDR &&
1681 offset == IXGBE_SFF_IDENTIFIER &&
1682 hw->phy.sfp_type == ixgbe_sfp_type_not_present)
1683 return true;
1684 return false;
1685}
1686
1687/**
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001688 * ixgbe_read_i2c_byte_generic_int - Reads 8 bit word over I2C
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001689 * @hw: pointer to hardware structure
1690 * @byte_offset: byte offset to read
1691 * @data: value read
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001692 * @lock: true if to take and release semaphore
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001693 *
1694 * Performs byte read operation to SFP module's EEPROM over I2C interface at
Emil Tantilov3fbaa3a2011-08-30 13:33:51 +00001695 * a specified device address.
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001696 */
1697static s32 ixgbe_read_i2c_byte_generic_int(struct ixgbe_hw *hw, u8 byte_offset,
1698 u8 dev_addr, u8 *data, bool lock)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001699{
Mark Rustade90dd262014-07-22 06:51:08 +00001700 s32 status;
Emil Tantilov75f19c32011-02-19 08:43:55 +00001701 u32 max_retry = 10;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001702 u32 retry = 0;
Don Skidmore030eaec2014-11-29 05:22:37 +00001703 u32 swfw_mask = hw->phy.phy_semaphore_mask;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001704 bool nack = true;
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001705
Mark Rustad56f6ed12015-08-08 16:18:22 -07001706 if (ixgbe_is_sfp_probe(hw, byte_offset, dev_addr))
1707 max_retry = IXGBE_SFP_DETECT_RETRIES;
1708
Emil Tantilov3fbaa3a2011-08-30 13:33:51 +00001709 *data = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001710
1711 do {
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001712 if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask))
Mark Rustade90dd262014-07-22 06:51:08 +00001713 return IXGBE_ERR_SWFW_SYNC;
Emil Tantilov75f19c32011-02-19 08:43:55 +00001714
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001715 ixgbe_i2c_start(hw);
1716
1717 /* Device Address and write indication */
1718 status = ixgbe_clock_out_i2c_byte(hw, dev_addr);
1719 if (status != 0)
1720 goto fail;
1721
1722 status = ixgbe_get_i2c_ack(hw);
1723 if (status != 0)
1724 goto fail;
1725
1726 status = ixgbe_clock_out_i2c_byte(hw, byte_offset);
1727 if (status != 0)
1728 goto fail;
1729
1730 status = ixgbe_get_i2c_ack(hw);
1731 if (status != 0)
1732 goto fail;
1733
1734 ixgbe_i2c_start(hw);
1735
1736 /* Device Address and read indication */
1737 status = ixgbe_clock_out_i2c_byte(hw, (dev_addr | 0x1));
1738 if (status != 0)
1739 goto fail;
1740
1741 status = ixgbe_get_i2c_ack(hw);
1742 if (status != 0)
1743 goto fail;
1744
1745 status = ixgbe_clock_in_i2c_byte(hw, data);
1746 if (status != 0)
1747 goto fail;
1748
1749 status = ixgbe_clock_out_i2c_bit(hw, nack);
1750 if (status != 0)
1751 goto fail;
1752
1753 ixgbe_i2c_stop(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001754 if (lock)
1755 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
1756 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001757
1758fail:
Emil Tantilovd0310dc2013-01-18 02:16:41 +00001759 ixgbe_i2c_bus_clear(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001760 if (lock) {
1761 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
1762 msleep(100);
1763 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001764 retry++;
1765 if (retry < max_retry)
1766 hw_dbg(hw, "I2C byte read error - Retrying.\n");
1767 else
1768 hw_dbg(hw, "I2C byte read error.\n");
1769
1770 } while (retry < max_retry);
1771
1772 return status;
1773}
1774
1775/**
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001776 * ixgbe_read_i2c_byte_generic - Reads 8 bit word over I2C
1777 * @hw: pointer to hardware structure
1778 * @byte_offset: byte offset to read
1779 * @data: value read
1780 *
1781 * Performs byte read operation to SFP module's EEPROM over I2C interface at
1782 * a specified device address.
1783 */
1784s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
1785 u8 dev_addr, u8 *data)
1786{
1787 return ixgbe_read_i2c_byte_generic_int(hw, byte_offset, dev_addr,
1788 data, true);
1789}
1790
1791/**
1792 * ixgbe_read_i2c_byte_generic_unlocked - Reads 8 bit word over I2C
1793 * @hw: pointer to hardware structure
1794 * @byte_offset: byte offset to read
1795 * @data: value read
1796 *
1797 * Performs byte read operation to SFP module's EEPROM over I2C interface at
1798 * a specified device address.
1799 */
1800s32 ixgbe_read_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
1801 u8 dev_addr, u8 *data)
1802{
1803 return ixgbe_read_i2c_byte_generic_int(hw, byte_offset, dev_addr,
1804 data, false);
1805}
1806
1807/**
1808 * ixgbe_write_i2c_byte_generic_int - Writes 8 bit word over I2C
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001809 * @hw: pointer to hardware structure
1810 * @byte_offset: byte offset to write
1811 * @data: value to write
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001812 * @lock: true if to take and release semaphore
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001813 *
1814 * Performs byte write operation to SFP module's EEPROM over I2C interface at
1815 * a specified device address.
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001816 */
1817static s32 ixgbe_write_i2c_byte_generic_int(struct ixgbe_hw *hw, u8 byte_offset,
1818 u8 dev_addr, u8 data, bool lock)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001819{
Mark Rustade90dd262014-07-22 06:51:08 +00001820 s32 status;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001821 u32 max_retry = 1;
1822 u32 retry = 0;
Don Skidmore030eaec2014-11-29 05:22:37 +00001823 u32 swfw_mask = hw->phy.phy_semaphore_mask;
Emil Tantilov75f19c32011-02-19 08:43:55 +00001824
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001825 if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask))
Mark Rustade90dd262014-07-22 06:51:08 +00001826 return IXGBE_ERR_SWFW_SYNC;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001827
1828 do {
1829 ixgbe_i2c_start(hw);
1830
1831 status = ixgbe_clock_out_i2c_byte(hw, dev_addr);
1832 if (status != 0)
1833 goto fail;
1834
1835 status = ixgbe_get_i2c_ack(hw);
1836 if (status != 0)
1837 goto fail;
1838
1839 status = ixgbe_clock_out_i2c_byte(hw, byte_offset);
1840 if (status != 0)
1841 goto fail;
1842
1843 status = ixgbe_get_i2c_ack(hw);
1844 if (status != 0)
1845 goto fail;
1846
1847 status = ixgbe_clock_out_i2c_byte(hw, data);
1848 if (status != 0)
1849 goto fail;
1850
1851 status = ixgbe_get_i2c_ack(hw);
1852 if (status != 0)
1853 goto fail;
1854
1855 ixgbe_i2c_stop(hw);
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001856 if (lock)
1857 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
1858 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001859
1860fail:
1861 ixgbe_i2c_bus_clear(hw);
1862 retry++;
1863 if (retry < max_retry)
1864 hw_dbg(hw, "I2C byte write error - Retrying.\n");
1865 else
1866 hw_dbg(hw, "I2C byte write error.\n");
1867 } while (retry < max_retry);
1868
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001869 if (lock)
1870 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Emil Tantilov75f19c32011-02-19 08:43:55 +00001871
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001872 return status;
1873}
1874
1875/**
Mark Rustadbb5ce9a52015-08-08 16:18:02 -07001876 * ixgbe_write_i2c_byte_generic - Writes 8 bit word over I2C
1877 * @hw: pointer to hardware structure
1878 * @byte_offset: byte offset to write
1879 * @data: value to write
1880 *
1881 * Performs byte write operation to SFP module's EEPROM over I2C interface at
1882 * a specified device address.
1883 */
1884s32 ixgbe_write_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
1885 u8 dev_addr, u8 data)
1886{
1887 return ixgbe_write_i2c_byte_generic_int(hw, byte_offset, dev_addr,
1888 data, true);
1889}
1890
1891/**
1892 * ixgbe_write_i2c_byte_generic_unlocked - Writes 8 bit word over I2C
1893 * @hw: pointer to hardware structure
1894 * @byte_offset: byte offset to write
1895 * @data: value to write
1896 *
1897 * Performs byte write operation to SFP module's EEPROM over I2C interface at
1898 * a specified device address.
1899 */
1900s32 ixgbe_write_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
1901 u8 dev_addr, u8 data)
1902{
1903 return ixgbe_write_i2c_byte_generic_int(hw, byte_offset, dev_addr,
1904 data, false);
1905}
1906
1907/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001908 * ixgbe_i2c_start - Sets I2C start condition
1909 * @hw: pointer to hardware structure
1910 *
1911 * Sets I2C start condition (High -> Low on SDA while SCL is High)
Mark Rustad25b10292015-08-08 16:18:12 -07001912 * Set bit-bang mode on X550 hardware.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001913 **/
1914static void ixgbe_i2c_start(struct ixgbe_hw *hw)
1915{
Don Skidmore9a900ec2015-06-09 17:15:01 -07001916 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001917
Mark Rustad25b10292015-08-08 16:18:12 -07001918 i2cctl |= IXGBE_I2C_BB_EN(hw);
1919
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001920 /* Start condition must begin with data and clock high */
1921 ixgbe_set_i2c_data(hw, &i2cctl, 1);
1922 ixgbe_raise_i2c_clk(hw, &i2cctl);
1923
1924 /* Setup time for start condition (4.7us) */
1925 udelay(IXGBE_I2C_T_SU_STA);
1926
1927 ixgbe_set_i2c_data(hw, &i2cctl, 0);
1928
1929 /* Hold time for start condition (4us) */
1930 udelay(IXGBE_I2C_T_HD_STA);
1931
1932 ixgbe_lower_i2c_clk(hw, &i2cctl);
1933
1934 /* Minimum low period of clock is 4.7 us */
1935 udelay(IXGBE_I2C_T_LOW);
1936
1937}
1938
1939/**
1940 * ixgbe_i2c_stop - Sets I2C stop condition
1941 * @hw: pointer to hardware structure
1942 *
1943 * Sets I2C stop condition (Low -> High on SDA while SCL is High)
Mark Rustad25b10292015-08-08 16:18:12 -07001944 * Disables bit-bang mode and negates data output enable on X550
1945 * hardware.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001946 **/
1947static void ixgbe_i2c_stop(struct ixgbe_hw *hw)
1948{
Don Skidmore9a900ec2015-06-09 17:15:01 -07001949 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
Mark Rustad25b10292015-08-08 16:18:12 -07001950 u32 data_oe_bit = IXGBE_I2C_DATA_OE_N_EN(hw);
1951 u32 clk_oe_bit = IXGBE_I2C_CLK_OE_N_EN(hw);
1952 u32 bb_en_bit = IXGBE_I2C_BB_EN(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001953
1954 /* Stop condition must begin with data low and clock high */
1955 ixgbe_set_i2c_data(hw, &i2cctl, 0);
1956 ixgbe_raise_i2c_clk(hw, &i2cctl);
1957
1958 /* Setup time for stop condition (4us) */
1959 udelay(IXGBE_I2C_T_SU_STO);
1960
1961 ixgbe_set_i2c_data(hw, &i2cctl, 1);
1962
1963 /* bus free time between stop and start (4.7us)*/
1964 udelay(IXGBE_I2C_T_BUF);
Mark Rustad25b10292015-08-08 16:18:12 -07001965
1966 if (bb_en_bit || data_oe_bit || clk_oe_bit) {
1967 i2cctl &= ~bb_en_bit;
1968 i2cctl |= data_oe_bit | clk_oe_bit;
1969 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), i2cctl);
1970 IXGBE_WRITE_FLUSH(hw);
1971 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001972}
1973
1974/**
1975 * ixgbe_clock_in_i2c_byte - Clocks in one byte via I2C
1976 * @hw: pointer to hardware structure
1977 * @data: data byte to clock in
1978 *
1979 * Clocks in one byte data via I2C data/clock
1980 **/
1981static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data)
1982{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001983 s32 i;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001984 bool bit = false;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001985
Mark Rustad6ee8c9a2015-08-08 16:18:17 -07001986 *data = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001987 for (i = 7; i >= 0; i--) {
Emil Tantilove1befd72011-08-27 07:18:47 +00001988 ixgbe_clock_in_i2c_bit(hw, &bit);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001989 *data |= bit << i;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001990 }
1991
Emil Tantilove1befd72011-08-27 07:18:47 +00001992 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001993}
1994
1995/**
1996 * ixgbe_clock_out_i2c_byte - Clocks out one byte via I2C
1997 * @hw: pointer to hardware structure
1998 * @data: data byte clocked out
1999 *
2000 * Clocks out one byte data via I2C data/clock
2001 **/
2002static s32 ixgbe_clock_out_i2c_byte(struct ixgbe_hw *hw, u8 data)
2003{
Mark Rustade90dd262014-07-22 06:51:08 +00002004 s32 status;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002005 s32 i;
2006 u32 i2cctl;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002007 bool bit = false;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002008
2009 for (i = 7; i >= 0; i--) {
2010 bit = (data >> i) & 0x1;
2011 status = ixgbe_clock_out_i2c_bit(hw, bit);
2012
2013 if (status != 0)
2014 break;
2015 }
2016
2017 /* Release SDA line (set high) */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002018 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
2019 i2cctl |= IXGBE_I2C_DATA_OUT(hw);
Mark Rustad25b10292015-08-08 16:18:12 -07002020 i2cctl |= IXGBE_I2C_DATA_OE_N_EN(hw);
Don Skidmore9a900ec2015-06-09 17:15:01 -07002021 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), i2cctl);
Emil Tantilov176f9502011-11-04 06:43:23 +00002022 IXGBE_WRITE_FLUSH(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002023
2024 return status;
2025}
2026
2027/**
2028 * ixgbe_get_i2c_ack - Polls for I2C ACK
2029 * @hw: pointer to hardware structure
2030 *
2031 * Clocks in/out one bit via I2C data/clock
2032 **/
2033static s32 ixgbe_get_i2c_ack(struct ixgbe_hw *hw)
2034{
Mark Rustad25b10292015-08-08 16:18:12 -07002035 u32 data_oe_bit = IXGBE_I2C_DATA_OE_N_EN(hw);
Emil Tantilove1befd72011-08-27 07:18:47 +00002036 s32 status = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002037 u32 i = 0;
Don Skidmore9a900ec2015-06-09 17:15:01 -07002038 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002039 u32 timeout = 10;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002040 bool ack = true;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002041
Mark Rustad25b10292015-08-08 16:18:12 -07002042 if (data_oe_bit) {
2043 i2cctl |= IXGBE_I2C_DATA_OUT(hw);
2044 i2cctl |= data_oe_bit;
2045 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), i2cctl);
2046 IXGBE_WRITE_FLUSH(hw);
2047 }
Emil Tantilove1befd72011-08-27 07:18:47 +00002048 ixgbe_raise_i2c_clk(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002049
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002050 /* Minimum high period of clock is 4us */
2051 udelay(IXGBE_I2C_T_HIGH);
2052
2053 /* Poll for ACK. Note that ACK in I2C spec is
2054 * transition from 1 to 0 */
2055 for (i = 0; i < timeout; i++) {
Don Skidmore9a900ec2015-06-09 17:15:01 -07002056 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002057 ack = ixgbe_get_i2c_data(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002058
2059 udelay(1);
2060 if (ack == 0)
2061 break;
2062 }
2063
2064 if (ack == 1) {
2065 hw_dbg(hw, "I2C ack was not received.\n");
2066 status = IXGBE_ERR_I2C;
2067 }
2068
2069 ixgbe_lower_i2c_clk(hw, &i2cctl);
2070
2071 /* Minimum low period of clock is 4.7 us */
2072 udelay(IXGBE_I2C_T_LOW);
2073
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002074 return status;
2075}
2076
2077/**
2078 * ixgbe_clock_in_i2c_bit - Clocks in one bit via I2C data/clock
2079 * @hw: pointer to hardware structure
2080 * @data: read data value
2081 *
2082 * Clocks in one bit via I2C data/clock
2083 **/
2084static s32 ixgbe_clock_in_i2c_bit(struct ixgbe_hw *hw, bool *data)
2085{
Don Skidmore9a900ec2015-06-09 17:15:01 -07002086 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
Mark Rustad25b10292015-08-08 16:18:12 -07002087 u32 data_oe_bit = IXGBE_I2C_DATA_OE_N_EN(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002088
Mark Rustad25b10292015-08-08 16:18:12 -07002089 if (data_oe_bit) {
2090 i2cctl |= IXGBE_I2C_DATA_OUT(hw);
2091 i2cctl |= data_oe_bit;
2092 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), i2cctl);
2093 IXGBE_WRITE_FLUSH(hw);
2094 }
Emil Tantilove1befd72011-08-27 07:18:47 +00002095 ixgbe_raise_i2c_clk(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002096
2097 /* Minimum high period of clock is 4us */
2098 udelay(IXGBE_I2C_T_HIGH);
2099
Don Skidmore9a900ec2015-06-09 17:15:01 -07002100 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002101 *data = ixgbe_get_i2c_data(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002102
2103 ixgbe_lower_i2c_clk(hw, &i2cctl);
2104
2105 /* Minimum low period of clock is 4.7 us */
2106 udelay(IXGBE_I2C_T_LOW);
2107
Emil Tantilove1befd72011-08-27 07:18:47 +00002108 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002109}
2110
2111/**
2112 * ixgbe_clock_out_i2c_bit - Clocks in/out one bit via I2C data/clock
2113 * @hw: pointer to hardware structure
2114 * @data: data value to write
2115 *
2116 * Clocks out one bit via I2C data/clock
2117 **/
2118static s32 ixgbe_clock_out_i2c_bit(struct ixgbe_hw *hw, bool data)
2119{
2120 s32 status;
Don Skidmore9a900ec2015-06-09 17:15:01 -07002121 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002122
2123 status = ixgbe_set_i2c_data(hw, &i2cctl, data);
2124 if (status == 0) {
Emil Tantilove1befd72011-08-27 07:18:47 +00002125 ixgbe_raise_i2c_clk(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002126
2127 /* Minimum high period of clock is 4us */
2128 udelay(IXGBE_I2C_T_HIGH);
2129
2130 ixgbe_lower_i2c_clk(hw, &i2cctl);
2131
2132 /* Minimum low period of clock is 4.7 us.
2133 * This also takes care of the data hold time.
2134 */
2135 udelay(IXGBE_I2C_T_LOW);
2136 } else {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002137 hw_dbg(hw, "I2C data was not set to %X\n", data);
Mark Rustade90dd262014-07-22 06:51:08 +00002138 return IXGBE_ERR_I2C;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002139 }
2140
Mark Rustade90dd262014-07-22 06:51:08 +00002141 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002142}
2143/**
2144 * ixgbe_raise_i2c_clk - Raises the I2C SCL clock
2145 * @hw: pointer to hardware structure
2146 * @i2cctl: Current value of I2CCTL register
2147 *
2148 * Raises the I2C clock line '0'->'1'
Mark Rustad25b10292015-08-08 16:18:12 -07002149 * Negates the I2C clock output enable on X550 hardware.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002150 **/
Emil Tantilove1befd72011-08-27 07:18:47 +00002151static void ixgbe_raise_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002152{
Mark Rustad25b10292015-08-08 16:18:12 -07002153 u32 clk_oe_bit = IXGBE_I2C_CLK_OE_N_EN(hw);
Don Skidmore8f56e4b2012-03-15 07:36:37 +00002154 u32 i = 0;
2155 u32 timeout = IXGBE_I2C_CLOCK_STRETCHING_TIMEOUT;
2156 u32 i2cctl_r = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002157
Mark Rustad25b10292015-08-08 16:18:12 -07002158 if (clk_oe_bit) {
2159 *i2cctl |= clk_oe_bit;
2160 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), *i2cctl);
2161 }
2162
Don Skidmore8f56e4b2012-03-15 07:36:37 +00002163 for (i = 0; i < timeout; i++) {
Don Skidmore9a900ec2015-06-09 17:15:01 -07002164 *i2cctl |= IXGBE_I2C_CLK_OUT(hw);
2165 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), *i2cctl);
Don Skidmore8f56e4b2012-03-15 07:36:37 +00002166 IXGBE_WRITE_FLUSH(hw);
2167 /* SCL rise time (1000ns) */
2168 udelay(IXGBE_I2C_T_RISE);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002169
Don Skidmore9a900ec2015-06-09 17:15:01 -07002170 i2cctl_r = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
2171 if (i2cctl_r & IXGBE_I2C_CLK_IN(hw))
Don Skidmore8f56e4b2012-03-15 07:36:37 +00002172 break;
2173 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002174}
2175
2176/**
2177 * ixgbe_lower_i2c_clk - Lowers the I2C SCL clock
2178 * @hw: pointer to hardware structure
2179 * @i2cctl: Current value of I2CCTL register
2180 *
2181 * Lowers the I2C clock line '1'->'0'
Mark Rustad25b10292015-08-08 16:18:12 -07002182 * Asserts the I2C clock output enable on X550 hardware.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002183 **/
2184static void ixgbe_lower_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl)
2185{
2186
Don Skidmore9a900ec2015-06-09 17:15:01 -07002187 *i2cctl &= ~IXGBE_I2C_CLK_OUT(hw);
Mark Rustad25b10292015-08-08 16:18:12 -07002188 *i2cctl &= ~IXGBE_I2C_CLK_OE_N_EN(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002189
Don Skidmore9a900ec2015-06-09 17:15:01 -07002190 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), *i2cctl);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002191 IXGBE_WRITE_FLUSH(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002192
2193 /* SCL fall time (300ns) */
2194 udelay(IXGBE_I2C_T_FALL);
2195}
2196
2197/**
2198 * ixgbe_set_i2c_data - Sets the I2C data bit
2199 * @hw: pointer to hardware structure
2200 * @i2cctl: Current value of I2CCTL register
2201 * @data: I2C data value (0 or 1) to set
2202 *
2203 * Sets the I2C data bit
Mark Rustad25b10292015-08-08 16:18:12 -07002204 * Asserts the I2C data output enable on X550 hardware.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002205 **/
2206static s32 ixgbe_set_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl, bool data)
2207{
Mark Rustad25b10292015-08-08 16:18:12 -07002208 u32 data_oe_bit = IXGBE_I2C_DATA_OE_N_EN(hw);
2209
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002210 if (data)
Don Skidmore9a900ec2015-06-09 17:15:01 -07002211 *i2cctl |= IXGBE_I2C_DATA_OUT(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002212 else
Don Skidmore9a900ec2015-06-09 17:15:01 -07002213 *i2cctl &= ~IXGBE_I2C_DATA_OUT(hw);
Mark Rustad25b10292015-08-08 16:18:12 -07002214 *i2cctl &= ~data_oe_bit;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002215
Don Skidmore9a900ec2015-06-09 17:15:01 -07002216 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), *i2cctl);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002217 IXGBE_WRITE_FLUSH(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002218
2219 /* Data rise/fall (1000ns/300ns) and set-up time (250ns) */
2220 udelay(IXGBE_I2C_T_RISE + IXGBE_I2C_T_FALL + IXGBE_I2C_T_SU_DATA);
2221
Mark Rustad25b10292015-08-08 16:18:12 -07002222 if (!data) /* Can't verify data in this case */
2223 return 0;
2224 if (data_oe_bit) {
2225 *i2cctl |= data_oe_bit;
2226 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), *i2cctl);
2227 IXGBE_WRITE_FLUSH(hw);
2228 }
2229
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002230 /* Verify data was set correctly */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002231 *i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002232 if (data != ixgbe_get_i2c_data(hw, i2cctl)) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002233 hw_dbg(hw, "Error - I2C data was not set to %X.\n", data);
Mark Rustade90dd262014-07-22 06:51:08 +00002234 return IXGBE_ERR_I2C;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002235 }
2236
Mark Rustade90dd262014-07-22 06:51:08 +00002237 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002238}
2239
2240/**
2241 * ixgbe_get_i2c_data - Reads the I2C SDA data bit
2242 * @hw: pointer to hardware structure
2243 * @i2cctl: Current value of I2CCTL register
2244 *
2245 * Returns the I2C data bit value
Mark Rustad25b10292015-08-08 16:18:12 -07002246 * Negates the I2C data output enable on X550 hardware.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002247 **/
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002248static bool ixgbe_get_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002249{
Mark Rustad25b10292015-08-08 16:18:12 -07002250 u32 data_oe_bit = IXGBE_I2C_DATA_OE_N_EN(hw);
2251
2252 if (data_oe_bit) {
2253 *i2cctl |= data_oe_bit;
2254 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL(hw), *i2cctl);
2255 IXGBE_WRITE_FLUSH(hw);
2256 udelay(IXGBE_I2C_T_FALL);
2257 }
2258
Don Skidmore9a900ec2015-06-09 17:15:01 -07002259 if (*i2cctl & IXGBE_I2C_DATA_IN(hw))
Mark Rustade90dd262014-07-22 06:51:08 +00002260 return true;
2261 return false;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002262}
2263
2264/**
2265 * ixgbe_i2c_bus_clear - Clears the I2C bus
2266 * @hw: pointer to hardware structure
2267 *
2268 * Clears the I2C bus by sending nine clock pulses.
2269 * Used when data line is stuck low.
2270 **/
2271static void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw)
2272{
Mark Rustad25b10292015-08-08 16:18:12 -07002273 u32 i2cctl;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002274 u32 i;
2275
Emil Tantilov75f19c32011-02-19 08:43:55 +00002276 ixgbe_i2c_start(hw);
Mark Rustad25b10292015-08-08 16:18:12 -07002277 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw));
Emil Tantilov75f19c32011-02-19 08:43:55 +00002278
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002279 ixgbe_set_i2c_data(hw, &i2cctl, 1);
2280
2281 for (i = 0; i < 9; i++) {
2282 ixgbe_raise_i2c_clk(hw, &i2cctl);
2283
2284 /* Min high period of clock is 4us */
2285 udelay(IXGBE_I2C_T_HIGH);
2286
2287 ixgbe_lower_i2c_clk(hw, &i2cctl);
2288
2289 /* Min low period of clock is 4.7us*/
2290 udelay(IXGBE_I2C_T_LOW);
2291 }
2292
Emil Tantilov75f19c32011-02-19 08:43:55 +00002293 ixgbe_i2c_start(hw);
2294
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002295 /* Put the i2c bus back to default state */
2296 ixgbe_i2c_stop(hw);
2297}
2298
2299/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002300 * ixgbe_tn_check_overtemp - Checks if an overtemp occurred.
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002301 * @hw: pointer to hardware structure
2302 *
2303 * Checks if the LASI temp alarm status was triggered due to overtemp
2304 **/
2305s32 ixgbe_tn_check_overtemp(struct ixgbe_hw *hw)
2306{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002307 u16 phy_data = 0;
2308
2309 if (hw->device_id != IXGBE_DEV_ID_82599_T3_LOM)
Mark Rustade90dd262014-07-22 06:51:08 +00002310 return 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002311
2312 /* Check that the LASI temp alarm status was triggered */
2313 hw->phy.ops.read_reg(hw, IXGBE_TN_LASI_STATUS_REG,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002314 MDIO_MMD_PMAPMD, &phy_data);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002315
2316 if (!(phy_data & IXGBE_TN_LASI_STATUS_TEMP_ALARM))
Mark Rustade90dd262014-07-22 06:51:08 +00002317 return 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002318
Mark Rustade90dd262014-07-22 06:51:08 +00002319 return IXGBE_ERR_OVERTEMP;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002320}
Don Skidmore961fac82015-06-09 16:09:47 -07002321
2322/** ixgbe_set_copper_phy_power - Control power for copper phy
2323 * @hw: pointer to hardware structure
2324 * @on: true for on, false for off
2325 **/
2326s32 ixgbe_set_copper_phy_power(struct ixgbe_hw *hw, bool on)
2327{
2328 u32 status;
2329 u16 reg;
2330
2331 /* Bail if we don't have copper phy */
2332 if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper)
2333 return 0;
2334
Mark Rustad3c2f2b72015-11-05 11:02:14 -08002335 if (!on && ixgbe_mng_present(hw))
2336 return 0;
2337
Emil Tantilov4dc40002016-09-26 14:08:13 -07002338 status = hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_VEND1, &reg);
Don Skidmore961fac82015-06-09 16:09:47 -07002339 if (status)
2340 return status;
2341
2342 if (on) {
2343 reg &= ~IXGBE_MDIO_PHY_SET_LOW_POWER_MODE;
2344 } else {
2345 if (ixgbe_check_reset_blocked(hw))
2346 return 0;
2347 reg |= IXGBE_MDIO_PHY_SET_LOW_POWER_MODE;
2348 }
2349
Emil Tantilov4dc40002016-09-26 14:08:13 -07002350 status = hw->phy.ops.write_reg(hw, MDIO_CTRL1, MDIO_MMD_VEND1, reg);
Don Skidmore961fac82015-06-09 16:09:47 -07002351 return status;
2352}