blob: e89b34eae4dbd39a705e3fc81af3b5e66563f1f4 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore434c5e32013-01-08 05:02:28 +00004 Copyright(c) 1999 - 2013 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:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/pci.h>
29#include <linux/delay.h>
30#include <linux/sched.h>
31
32#include "ixgbe_common.h"
33#include "ixgbe_phy.h"
34
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000035static void ixgbe_i2c_start(struct ixgbe_hw *hw);
36static void ixgbe_i2c_stop(struct ixgbe_hw *hw);
37static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data);
38static s32 ixgbe_clock_out_i2c_byte(struct ixgbe_hw *hw, u8 data);
39static s32 ixgbe_get_i2c_ack(struct ixgbe_hw *hw);
40static s32 ixgbe_clock_in_i2c_bit(struct ixgbe_hw *hw, bool *data);
41static s32 ixgbe_clock_out_i2c_bit(struct ixgbe_hw *hw, bool data);
Emil Tantilove1befd72011-08-27 07:18:47 +000042static void ixgbe_raise_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000043static void ixgbe_lower_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl);
44static s32 ixgbe_set_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl, bool data);
45static bool ixgbe_get_i2c_data(u32 *i2cctl);
46static void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070047static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id);
48static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070049
50/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070051 * ixgbe_identify_phy_generic - Get physical layer module
Auke Kok9a799d72007-09-15 14:07:45 -070052 * @hw: pointer to hardware structure
53 *
54 * Determines the physical layer module found on the current adapter.
55 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070056s32 ixgbe_identify_phy_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -070057{
58 s32 status = IXGBE_ERR_PHY_ADDR_INVALID;
59 u32 phy_addr;
Emil Tantilov037c6d02011-02-25 07:49:39 +000060 u16 ext_ability = 0;
Auke Kok9a799d72007-09-15 14:07:45 -070061
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070062 if (hw->phy.type == ixgbe_phy_unknown) {
63 for (phy_addr = 0; phy_addr < IXGBE_MAX_PHY_ADDR; phy_addr++) {
Don Skidmore63d6e1d2009-07-02 12:50:12 +000064 hw->phy.mdio.prtad = phy_addr;
Ben Hutchings6b73e102009-04-29 08:08:58 +000065 if (mdio45_probe(&hw->phy.mdio, phy_addr) == 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070066 ixgbe_get_phy_id(hw);
67 hw->phy.type =
68 ixgbe_get_phy_type_from_id(hw->phy.id);
Emil Tantilov037c6d02011-02-25 07:49:39 +000069
70 if (hw->phy.type == ixgbe_phy_unknown) {
71 hw->phy.ops.read_reg(hw,
72 MDIO_PMA_EXTABLE,
73 MDIO_MMD_PMAPMD,
74 &ext_ability);
75 if (ext_ability &
76 (MDIO_PMA_EXTABLE_10GBT |
77 MDIO_PMA_EXTABLE_1000BT))
78 hw->phy.type =
79 ixgbe_phy_cu_unknown;
80 else
81 hw->phy.type =
82 ixgbe_phy_generic;
83 }
84
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070085 status = 0;
86 break;
87 }
Auke Kok9a799d72007-09-15 14:07:45 -070088 }
Don Skidmore63d6e1d2009-07-02 12:50:12 +000089 /* clear value if nothing found */
Emil Tantilov037c6d02011-02-25 07:49:39 +000090 if (status != 0)
91 hw->phy.mdio.prtad = 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070092 } else {
93 status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -070094 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070095
Auke Kok9a799d72007-09-15 14:07:45 -070096 return status;
97}
98
99/**
Auke Kok9a799d72007-09-15 14:07:45 -0700100 * ixgbe_get_phy_id - Get the phy type
101 * @hw: pointer to hardware structure
102 *
103 **/
104static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw)
105{
106 u32 status;
107 u16 phy_id_high = 0;
108 u16 phy_id_low = 0;
109
Ben Hutchings6b73e102009-04-29 08:08:58 +0000110 status = hw->phy.ops.read_reg(hw, MDIO_DEVID1, MDIO_MMD_PMAPMD,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700111 &phy_id_high);
Auke Kok9a799d72007-09-15 14:07:45 -0700112
113 if (status == 0) {
114 hw->phy.id = (u32)(phy_id_high << 16);
Ben Hutchings6b73e102009-04-29 08:08:58 +0000115 status = hw->phy.ops.read_reg(hw, MDIO_DEVID2, MDIO_MMD_PMAPMD,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700116 &phy_id_low);
Auke Kok9a799d72007-09-15 14:07:45 -0700117 hw->phy.id |= (u32)(phy_id_low & IXGBE_PHY_REVISION_MASK);
118 hw->phy.revision = (u32)(phy_id_low & ~IXGBE_PHY_REVISION_MASK);
119 }
Auke Kok9a799d72007-09-15 14:07:45 -0700120 return status;
121}
122
123/**
124 * ixgbe_get_phy_type_from_id - Get the phy type
125 * @hw: pointer to hardware structure
126 *
127 **/
128static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id)
129{
130 enum ixgbe_phy_type phy_type;
131
132 switch (phy_id) {
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700133 case TN1010_PHY_ID:
134 phy_type = ixgbe_phy_tn;
135 break;
Don Skidmore2b264902010-12-09 06:55:14 +0000136 case X540_PHY_ID:
Don Skidmorefe15e8e12010-11-16 19:27:16 -0800137 phy_type = ixgbe_phy_aq;
138 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700139 case QT2022_PHY_ID:
140 phy_type = ixgbe_phy_qt;
141 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800142 case ATH_PHY_ID:
143 phy_type = ixgbe_phy_nl;
144 break;
Auke Kok9a799d72007-09-15 14:07:45 -0700145 default:
146 phy_type = ixgbe_phy_unknown;
147 break;
148 }
149
150 return phy_type;
151}
152
153/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700154 * ixgbe_reset_phy_generic - Performs a PHY reset
Auke Kok9a799d72007-09-15 14:07:45 -0700155 * @hw: pointer to hardware structure
156 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700157s32 ixgbe_reset_phy_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700158{
Emil Tantilov17835752011-02-16 01:38:13 +0000159 u32 i;
160 u16 ctrl = 0;
161 s32 status = 0;
162
163 if (hw->phy.type == ixgbe_phy_unknown)
164 status = ixgbe_identify_phy_generic(hw);
165
166 if (status != 0 || hw->phy.type == ixgbe_phy_none)
167 goto out;
168
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700169 /* Don't reset PHY if it's shut down due to overtemp. */
170 if (!hw->phy.reset_if_overtemp &&
171 (IXGBE_ERR_OVERTEMP == hw->phy.ops.check_overtemp(hw)))
Emil Tantilov17835752011-02-16 01:38:13 +0000172 goto out;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700173
Auke Kok9a799d72007-09-15 14:07:45 -0700174 /*
175 * Perform soft PHY reset to the PHY_XS.
176 * This will cause a soft reset to the PHY
177 */
Emil Tantilov17835752011-02-16 01:38:13 +0000178 hw->phy.ops.write_reg(hw, MDIO_CTRL1,
179 MDIO_MMD_PHYXS,
180 MDIO_CTRL1_RESET);
181
182 /*
183 * Poll for reset bit to self-clear indicating reset is complete.
184 * Some PHYs could take up to 3 seconds to complete and need about
185 * 1.7 usec delay after the reset is complete.
186 */
187 for (i = 0; i < 30; i++) {
188 msleep(100);
189 hw->phy.ops.read_reg(hw, MDIO_CTRL1,
190 MDIO_MMD_PHYXS, &ctrl);
191 if (!(ctrl & MDIO_CTRL1_RESET)) {
192 udelay(2);
193 break;
194 }
195 }
196
197 if (ctrl & MDIO_CTRL1_RESET) {
198 status = IXGBE_ERR_RESET_FAILED;
199 hw_dbg(hw, "PHY reset polling failed to complete.\n");
200 }
201
202out:
203 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700204}
205
206/**
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000207 * ixgbe_read_phy_mdi - Reads a value from a specified PHY register without
208 * the SWFW lock
209 * @hw: pointer to hardware structure
210 * @reg_addr: 32 bit address of PHY register to read
211 * @phy_data: Pointer to read data from PHY register
212 **/
213s32 ixgbe_read_phy_reg_mdi(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
214 u16 *phy_data)
215{
216 u32 i, data, command;
217
218 /* Setup and write the address cycle command */
219 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
220 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
221 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
222 (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND));
223
224 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
225
226 /* Check every 10 usec to see if the address cycle completed.
227 * The MDI Command bit will clear when the operation is
228 * complete
229 */
230 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
231 udelay(10);
232
233 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
234 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
235 break;
236 }
237
238
239 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
240 hw_dbg(hw, "PHY address command did not complete.\n");
241 return IXGBE_ERR_PHY;
242 }
243
244 /* Address cycle complete, setup and write the read
245 * command
246 */
247 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
248 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
249 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
250 (IXGBE_MSCA_READ | IXGBE_MSCA_MDI_COMMAND));
251
252 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
253
254 /* Check every 10 usec to see if the address cycle
255 * completed. The MDI Command bit will clear when the
256 * operation is complete
257 */
258 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
259 udelay(10);
260
261 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
262 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
263 break;
264 }
265
266 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
267 hw_dbg(hw, "PHY read command didn't complete\n");
268 return IXGBE_ERR_PHY;
269 }
270
271 /* Read operation is complete. Get the data
272 * from MSRWD
273 */
274 data = IXGBE_READ_REG(hw, IXGBE_MSRWD);
275 data >>= IXGBE_MSRWD_READ_DATA_SHIFT;
276 *phy_data = (u16)(data);
277
278 return 0;
279}
280
281/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700282 * ixgbe_read_phy_reg_generic - Reads a value from a specified PHY register
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000283 * using the SWFW lock - this function is needed in most cases
Auke Kok9a799d72007-09-15 14:07:45 -0700284 * @hw: pointer to hardware structure
285 * @reg_addr: 32 bit address of PHY register to read
286 * @phy_data: Pointer to read data from PHY register
287 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700288s32 ixgbe_read_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
289 u32 device_type, u16 *phy_data)
Auke Kok9a799d72007-09-15 14:07:45 -0700290{
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000291 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700292 u16 gssr;
293
294 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
295 gssr = IXGBE_GSSR_PHY1_SM;
296 else
297 gssr = IXGBE_GSSR_PHY0_SM;
298
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000299 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) == 0) {
300 status = ixgbe_read_phy_reg_mdi(hw, reg_addr, device_type,
301 phy_data);
Don Skidmore5e655102011-02-25 01:58:04 +0000302 hw->mac.ops.release_swfw_sync(hw, gssr);
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000303 } else {
304 status = IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -0700305 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700306
Auke Kok9a799d72007-09-15 14:07:45 -0700307 return status;
308}
309
310/**
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000311 * ixgbe_write_phy_reg_mdi - Writes a value to specified PHY register
312 * without SWFW lock
313 * @hw: pointer to hardware structure
314 * @reg_addr: 32 bit PHY register to write
315 * @device_type: 5 bit device type
316 * @phy_data: Data to write to the PHY register
317 **/
318s32 ixgbe_write_phy_reg_mdi(struct ixgbe_hw *hw, u32 reg_addr,
319 u32 device_type, u16 phy_data)
320{
321 u32 i, command;
322
323 /* Put the data in the MDI single read and write data register*/
324 IXGBE_WRITE_REG(hw, IXGBE_MSRWD, (u32)phy_data);
325
326 /* Setup and write the address cycle command */
327 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
328 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
329 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
330 (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND));
331
332 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
333
334 /*
335 * Check every 10 usec to see if the address cycle completed.
336 * The MDI Command bit will clear when the operation is
337 * complete
338 */
339 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
340 udelay(10);
341
342 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
343 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
344 break;
345 }
346
347 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
348 hw_dbg(hw, "PHY address cmd didn't complete\n");
349 return IXGBE_ERR_PHY;
350 }
351
352 /*
353 * Address cycle complete, setup and write the write
354 * command
355 */
356 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
357 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
358 (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) |
359 (IXGBE_MSCA_WRITE | IXGBE_MSCA_MDI_COMMAND));
360
361 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
362
363 /* Check every 10 usec to see if the address cycle
364 * completed. The MDI Command bit will clear when the
365 * operation is complete
366 */
367 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
368 udelay(10);
369
370 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
371 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
372 break;
373 }
374
375 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
376 hw_dbg(hw, "PHY write cmd didn't complete\n");
377 return IXGBE_ERR_PHY;
378 }
379
380 return 0;
381}
382
383/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700384 * ixgbe_write_phy_reg_generic - Writes a value to specified PHY register
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000385 * using SWFW lock- this function is needed in most cases
Auke Kok9a799d72007-09-15 14:07:45 -0700386 * @hw: pointer to hardware structure
387 * @reg_addr: 32 bit PHY register to write
388 * @device_type: 5 bit device type
389 * @phy_data: Data to write to the PHY register
390 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700391s32 ixgbe_write_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
392 u32 device_type, u16 phy_data)
Auke Kok9a799d72007-09-15 14:07:45 -0700393{
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000394 s32 status;
Auke Kok9a799d72007-09-15 14:07:45 -0700395 u16 gssr;
396
397 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
398 gssr = IXGBE_GSSR_PHY1_SM;
399 else
400 gssr = IXGBE_GSSR_PHY0_SM;
401
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000402 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) == 0) {
403 status = ixgbe_write_phy_reg_mdi(hw, reg_addr, device_type,
404 phy_data);
Don Skidmore5e655102011-02-25 01:58:04 +0000405 hw->mac.ops.release_swfw_sync(hw, gssr);
Emil Tantilov3dcc2f412013-05-29 06:23:05 +0000406 } else {
407 status = IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -0700408 }
409
410 return status;
411}
412
413/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700414 * ixgbe_setup_phy_link_generic - Set and restart autoneg
Auke Kok9a799d72007-09-15 14:07:45 -0700415 * @hw: pointer to hardware structure
416 *
417 * Restart autonegotiation and PHY and waits for completion.
418 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700419s32 ixgbe_setup_phy_link_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700420{
Emil Tantilov9dda1732011-03-05 01:28:07 +0000421 s32 status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700422 u32 time_out;
423 u32 max_time_out = 10;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000424 u16 autoneg_reg = IXGBE_MII_AUTONEG_REG;
425 bool autoneg = false;
426 ixgbe_link_speed speed;
Auke Kok9a799d72007-09-15 14:07:45 -0700427
Emil Tantilov9dda1732011-03-05 01:28:07 +0000428 ixgbe_get_copper_link_capabilities_generic(hw, &speed, &autoneg);
Auke Kok9a799d72007-09-15 14:07:45 -0700429
Emil Tantilov9dda1732011-03-05 01:28:07 +0000430 if (speed & IXGBE_LINK_SPEED_10GB_FULL) {
431 /* Set or unset auto-negotiation 10G advertisement */
432 hw->phy.ops.read_reg(hw, MDIO_AN_10GBT_CTRL,
433 MDIO_MMD_AN,
434 &autoneg_reg);
435
Ben Hutchings6b73e102009-04-29 08:08:58 +0000436 autoneg_reg &= ~MDIO_AN_10GBT_CTRL_ADV10G;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000437 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL)
438 autoneg_reg |= MDIO_AN_10GBT_CTRL_ADV10G;
Auke Kok9a799d72007-09-15 14:07:45 -0700439
Emil Tantilov9dda1732011-03-05 01:28:07 +0000440 hw->phy.ops.write_reg(hw, MDIO_AN_10GBT_CTRL,
441 MDIO_MMD_AN,
442 autoneg_reg);
443 }
444
445 if (speed & IXGBE_LINK_SPEED_1GB_FULL) {
446 /* Set or unset auto-negotiation 1G advertisement */
447 hw->phy.ops.read_reg(hw,
448 IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
449 MDIO_MMD_AN,
450 &autoneg_reg);
451
452 autoneg_reg &= ~IXGBE_MII_1GBASE_T_ADVERTISE;
453 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
454 autoneg_reg |= IXGBE_MII_1GBASE_T_ADVERTISE;
455
456 hw->phy.ops.write_reg(hw,
457 IXGBE_MII_AUTONEG_VENDOR_PROVISION_1_REG,
458 MDIO_MMD_AN,
459 autoneg_reg);
460 }
461
462 if (speed & IXGBE_LINK_SPEED_100_FULL) {
463 /* Set or unset auto-negotiation 100M advertisement */
464 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
465 MDIO_MMD_AN,
466 &autoneg_reg);
467
Emil Tantilova59e8a12011-03-31 09:36:12 +0000468 autoneg_reg &= ~(ADVERTISE_100FULL |
469 ADVERTISE_100HALF);
Emil Tantilov9dda1732011-03-05 01:28:07 +0000470 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
471 autoneg_reg |= ADVERTISE_100FULL;
472
473 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
474 MDIO_MMD_AN,
475 autoneg_reg);
476 }
Auke Kok9a799d72007-09-15 14:07:45 -0700477
478 /* Restart PHY autonegotiation and wait for completion */
Emil Tantilov9dda1732011-03-05 01:28:07 +0000479 hw->phy.ops.read_reg(hw, MDIO_CTRL1,
480 MDIO_MMD_AN, &autoneg_reg);
Auke Kok9a799d72007-09-15 14:07:45 -0700481
Ben Hutchings6b73e102009-04-29 08:08:58 +0000482 autoneg_reg |= MDIO_AN_CTRL1_RESTART;
Auke Kok9a799d72007-09-15 14:07:45 -0700483
Emil Tantilov9dda1732011-03-05 01:28:07 +0000484 hw->phy.ops.write_reg(hw, MDIO_CTRL1,
485 MDIO_MMD_AN, autoneg_reg);
Auke Kok9a799d72007-09-15 14:07:45 -0700486
487 /* Wait for autonegotiation to finish */
488 for (time_out = 0; time_out < max_time_out; time_out++) {
489 udelay(10);
490 /* Restart PHY autonegotiation and wait for completion */
Emil Tantilov9dda1732011-03-05 01:28:07 +0000491 status = hw->phy.ops.read_reg(hw, MDIO_STAT1,
492 MDIO_MMD_AN,
493 &autoneg_reg);
Auke Kok9a799d72007-09-15 14:07:45 -0700494
Ben Hutchings6b73e102009-04-29 08:08:58 +0000495 autoneg_reg &= MDIO_AN_STAT1_COMPLETE;
496 if (autoneg_reg == MDIO_AN_STAT1_COMPLETE) {
Auke Kok9a799d72007-09-15 14:07:45 -0700497 break;
498 }
499 }
500
Emil Tantilov9dda1732011-03-05 01:28:07 +0000501 if (time_out == max_time_out) {
Auke Kok9a799d72007-09-15 14:07:45 -0700502 status = IXGBE_ERR_LINK_SETUP;
Emil Tantilov9dda1732011-03-05 01:28:07 +0000503 hw_dbg(hw, "ixgbe_setup_phy_link_generic: time out");
504 }
Auke Kok9a799d72007-09-15 14:07:45 -0700505
506 return status;
507}
508
509/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700510 * ixgbe_setup_phy_link_speed_generic - Sets the auto advertised capabilities
Auke Kok9a799d72007-09-15 14:07:45 -0700511 * @hw: pointer to hardware structure
512 * @speed: new link speed
Auke Kok9a799d72007-09-15 14:07:45 -0700513 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700514s32 ixgbe_setup_phy_link_speed_generic(struct ixgbe_hw *hw,
515 ixgbe_link_speed speed,
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700516 bool autoneg_wait_to_complete)
Auke Kok9a799d72007-09-15 14:07:45 -0700517{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700518
Auke Kok9a799d72007-09-15 14:07:45 -0700519 /*
520 * Clear autoneg_advertised and set new values based on input link
521 * speed.
522 */
523 hw->phy.autoneg_advertised = 0;
524
525 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
526 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700527
Auke Kok9a799d72007-09-15 14:07:45 -0700528 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
529 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL;
530
Emil Tantilov9dda1732011-03-05 01:28:07 +0000531 if (speed & IXGBE_LINK_SPEED_100_FULL)
532 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_100_FULL;
533
Auke Kok9a799d72007-09-15 14:07:45 -0700534 /* Setup link based on the new speed settings */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700535 hw->phy.ops.setup_link(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700536
537 return 0;
538}
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700539
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700540/**
Don Skidmorea391f1d2010-11-16 19:27:15 -0800541 * ixgbe_get_copper_link_capabilities_generic - Determines link capabilities
542 * @hw: pointer to hardware structure
543 * @speed: pointer to link speed
544 * @autoneg: boolean auto-negotiation value
545 *
546 * Determines the link capabilities by reading the AUTOC register.
547 */
548s32 ixgbe_get_copper_link_capabilities_generic(struct ixgbe_hw *hw,
Don Skidmorefe15e8e12010-11-16 19:27:16 -0800549 ixgbe_link_speed *speed,
550 bool *autoneg)
Don Skidmorea391f1d2010-11-16 19:27:15 -0800551{
552 s32 status = IXGBE_ERR_LINK_SETUP;
553 u16 speed_ability;
554
555 *speed = 0;
556 *autoneg = true;
557
558 status = hw->phy.ops.read_reg(hw, MDIO_SPEED, MDIO_MMD_PMAPMD,
559 &speed_ability);
560
561 if (status == 0) {
562 if (speed_ability & MDIO_SPEED_10G)
563 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
564 if (speed_ability & MDIO_PMA_SPEED_1000)
565 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
566 if (speed_ability & MDIO_PMA_SPEED_100)
567 *speed |= IXGBE_LINK_SPEED_100_FULL;
568 }
569
570 return status;
571}
572
573/**
Emil Tantilov9dda1732011-03-05 01:28:07 +0000574 * ixgbe_check_phy_link_tnx - Determine link and speed status
575 * @hw: pointer to hardware structure
576 *
577 * Reads the VS1 register to determine if link is up and the current speed for
578 * the PHY.
579 **/
580s32 ixgbe_check_phy_link_tnx(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
581 bool *link_up)
582{
583 s32 status = 0;
584 u32 time_out;
585 u32 max_time_out = 10;
586 u16 phy_link = 0;
587 u16 phy_speed = 0;
588 u16 phy_data = 0;
589
590 /* Initialize speed and link to default case */
591 *link_up = false;
592 *speed = IXGBE_LINK_SPEED_10GB_FULL;
593
594 /*
595 * Check current speed and link status of the PHY register.
596 * This is a vendor specific register and may have to
597 * be changed for other copper PHYs.
598 */
599 for (time_out = 0; time_out < max_time_out; time_out++) {
600 udelay(10);
601 status = hw->phy.ops.read_reg(hw,
602 MDIO_STAT1,
603 MDIO_MMD_VEND1,
604 &phy_data);
605 phy_link = phy_data &
606 IXGBE_MDIO_VENDOR_SPECIFIC_1_LINK_STATUS;
607 phy_speed = phy_data &
608 IXGBE_MDIO_VENDOR_SPECIFIC_1_SPEED_STATUS;
609 if (phy_link == IXGBE_MDIO_VENDOR_SPECIFIC_1_LINK_STATUS) {
610 *link_up = true;
611 if (phy_speed ==
612 IXGBE_MDIO_VENDOR_SPECIFIC_1_SPEED_STATUS)
613 *speed = IXGBE_LINK_SPEED_1GB_FULL;
614 break;
615 }
616 }
617
618 return status;
619}
620
621/**
622 * ixgbe_setup_phy_link_tnx - Set and restart autoneg
623 * @hw: pointer to hardware structure
624 *
625 * Restart autonegotiation and PHY and waits for completion.
626 **/
627s32 ixgbe_setup_phy_link_tnx(struct ixgbe_hw *hw)
628{
629 s32 status = 0;
630 u32 time_out;
631 u32 max_time_out = 10;
632 u16 autoneg_reg = IXGBE_MII_AUTONEG_REG;
633 bool autoneg = false;
634 ixgbe_link_speed speed;
635
636 ixgbe_get_copper_link_capabilities_generic(hw, &speed, &autoneg);
637
638 if (speed & IXGBE_LINK_SPEED_10GB_FULL) {
639 /* Set or unset auto-negotiation 10G advertisement */
640 hw->phy.ops.read_reg(hw, MDIO_AN_10GBT_CTRL,
641 MDIO_MMD_AN,
642 &autoneg_reg);
643
644 autoneg_reg &= ~MDIO_AN_10GBT_CTRL_ADV10G;
645 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL)
646 autoneg_reg |= MDIO_AN_10GBT_CTRL_ADV10G;
647
648 hw->phy.ops.write_reg(hw, MDIO_AN_10GBT_CTRL,
649 MDIO_MMD_AN,
650 autoneg_reg);
651 }
652
653 if (speed & IXGBE_LINK_SPEED_1GB_FULL) {
654 /* Set or unset auto-negotiation 1G advertisement */
655 hw->phy.ops.read_reg(hw, IXGBE_MII_AUTONEG_XNP_TX_REG,
656 MDIO_MMD_AN,
657 &autoneg_reg);
658
659 autoneg_reg &= ~IXGBE_MII_1GBASE_T_ADVERTISE_XNP_TX;
660 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
661 autoneg_reg |= IXGBE_MII_1GBASE_T_ADVERTISE_XNP_TX;
662
663 hw->phy.ops.write_reg(hw, IXGBE_MII_AUTONEG_XNP_TX_REG,
664 MDIO_MMD_AN,
665 autoneg_reg);
666 }
667
668 if (speed & IXGBE_LINK_SPEED_100_FULL) {
669 /* Set or unset auto-negotiation 100M advertisement */
670 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
671 MDIO_MMD_AN,
672 &autoneg_reg);
673
Emil Tantilov50c022e2011-03-31 09:36:12 +0000674 autoneg_reg &= ~(ADVERTISE_100FULL |
675 ADVERTISE_100HALF);
Emil Tantilov9dda1732011-03-05 01:28:07 +0000676 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
677 autoneg_reg |= ADVERTISE_100FULL;
678
679 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
680 MDIO_MMD_AN,
681 autoneg_reg);
682 }
683
684 /* Restart PHY autonegotiation and wait for completion */
685 hw->phy.ops.read_reg(hw, MDIO_CTRL1,
686 MDIO_MMD_AN, &autoneg_reg);
687
688 autoneg_reg |= MDIO_AN_CTRL1_RESTART;
689
690 hw->phy.ops.write_reg(hw, MDIO_CTRL1,
691 MDIO_MMD_AN, autoneg_reg);
692
693 /* Wait for autonegotiation to finish */
694 for (time_out = 0; time_out < max_time_out; time_out++) {
695 udelay(10);
696 /* Restart PHY autonegotiation and wait for completion */
697 status = hw->phy.ops.read_reg(hw, MDIO_STAT1,
698 MDIO_MMD_AN,
699 &autoneg_reg);
700
701 autoneg_reg &= MDIO_AN_STAT1_COMPLETE;
702 if (autoneg_reg == MDIO_AN_STAT1_COMPLETE)
703 break;
704 }
705
706 if (time_out == max_time_out) {
707 status = IXGBE_ERR_LINK_SETUP;
708 hw_dbg(hw, "ixgbe_setup_phy_link_tnx: time out");
709 }
710
711 return status;
712}
713
714/**
715 * ixgbe_get_phy_firmware_version_tnx - Gets the PHY Firmware Version
716 * @hw: pointer to hardware structure
717 * @firmware_version: pointer to the PHY Firmware Version
718 **/
719s32 ixgbe_get_phy_firmware_version_tnx(struct ixgbe_hw *hw,
720 u16 *firmware_version)
721{
722 s32 status = 0;
723
724 status = hw->phy.ops.read_reg(hw, TNX_FW_REV,
725 MDIO_MMD_VEND1,
726 firmware_version);
727
728 return status;
729}
730
731/**
732 * ixgbe_get_phy_firmware_version_generic - Gets the PHY Firmware Version
733 * @hw: pointer to hardware structure
734 * @firmware_version: pointer to the PHY Firmware Version
735 **/
736s32 ixgbe_get_phy_firmware_version_generic(struct ixgbe_hw *hw,
737 u16 *firmware_version)
738{
739 s32 status = 0;
740
741 status = hw->phy.ops.read_reg(hw, AQ_FW_REV,
742 MDIO_MMD_VEND1,
743 firmware_version);
744
745 return status;
746}
747
748/**
Donald Skidmorec4900be2008-11-20 21:11:42 -0800749 * ixgbe_reset_phy_nl - Performs a PHY reset
750 * @hw: pointer to hardware structure
751 **/
752s32 ixgbe_reset_phy_nl(struct ixgbe_hw *hw)
753{
754 u16 phy_offset, control, eword, edata, block_crc;
755 bool end_data = false;
756 u16 list_offset, data_offset;
757 u16 phy_data = 0;
758 s32 ret_val = 0;
759 u32 i;
760
Ben Hutchings6b73e102009-04-29 08:08:58 +0000761 hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS, &phy_data);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800762
763 /* reset the PHY and poll for completion */
Ben Hutchings6b73e102009-04-29 08:08:58 +0000764 hw->phy.ops.write_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS,
765 (phy_data | MDIO_CTRL1_RESET));
Donald Skidmorec4900be2008-11-20 21:11:42 -0800766
767 for (i = 0; i < 100; i++) {
Ben Hutchings6b73e102009-04-29 08:08:58 +0000768 hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS,
769 &phy_data);
770 if ((phy_data & MDIO_CTRL1_RESET) == 0)
Donald Skidmorec4900be2008-11-20 21:11:42 -0800771 break;
Don Skidmore032b4322011-03-18 09:32:53 +0000772 usleep_range(10000, 20000);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800773 }
774
Ben Hutchings6b73e102009-04-29 08:08:58 +0000775 if ((phy_data & MDIO_CTRL1_RESET) != 0) {
Donald Skidmorec4900be2008-11-20 21:11:42 -0800776 hw_dbg(hw, "PHY reset did not complete.\n");
777 ret_val = IXGBE_ERR_PHY;
778 goto out;
779 }
780
781 /* Get init offsets */
782 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset,
783 &data_offset);
784 if (ret_val != 0)
785 goto out;
786
787 ret_val = hw->eeprom.ops.read(hw, data_offset, &block_crc);
788 data_offset++;
789 while (!end_data) {
790 /*
791 * Read control word from PHY init contents offset
792 */
793 ret_val = hw->eeprom.ops.read(hw, data_offset, &eword);
Mark Rustadbe0c27b2013-05-24 07:31:09 +0000794 if (ret_val)
795 goto err_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800796 control = (eword & IXGBE_CONTROL_MASK_NL) >>
797 IXGBE_CONTROL_SHIFT_NL;
798 edata = eword & IXGBE_DATA_MASK_NL;
799 switch (control) {
800 case IXGBE_DELAY_NL:
801 data_offset++;
802 hw_dbg(hw, "DELAY: %d MS\n", edata);
Don Skidmore032b4322011-03-18 09:32:53 +0000803 usleep_range(edata * 1000, edata * 2000);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800804 break;
805 case IXGBE_DATA_NL:
Frans Popd6dbee82010-03-24 07:57:35 +0000806 hw_dbg(hw, "DATA:\n");
Donald Skidmorec4900be2008-11-20 21:11:42 -0800807 data_offset++;
Mark Rustadbe0c27b2013-05-24 07:31:09 +0000808 ret_val = hw->eeprom.ops.read(hw, data_offset++,
809 &phy_offset);
810 if (ret_val)
811 goto err_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800812 for (i = 0; i < edata; i++) {
Mark Rustadbe0c27b2013-05-24 07:31:09 +0000813 ret_val = hw->eeprom.ops.read(hw, data_offset,
814 &eword);
815 if (ret_val)
816 goto err_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800817 hw->phy.ops.write_reg(hw, phy_offset,
Ben Hutchings6b73e102009-04-29 08:08:58 +0000818 MDIO_MMD_PMAPMD, eword);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800819 hw_dbg(hw, "Wrote %4.4x to %4.4x\n", eword,
820 phy_offset);
821 data_offset++;
822 phy_offset++;
823 }
824 break;
825 case IXGBE_CONTROL_NL:
826 data_offset++;
Frans Popd6dbee82010-03-24 07:57:35 +0000827 hw_dbg(hw, "CONTROL:\n");
Donald Skidmorec4900be2008-11-20 21:11:42 -0800828 if (edata == IXGBE_CONTROL_EOL_NL) {
829 hw_dbg(hw, "EOL\n");
830 end_data = true;
831 } else if (edata == IXGBE_CONTROL_SOL_NL) {
832 hw_dbg(hw, "SOL\n");
833 } else {
834 hw_dbg(hw, "Bad control value\n");
835 ret_val = IXGBE_ERR_PHY;
836 goto out;
837 }
838 break;
839 default:
840 hw_dbg(hw, "Bad control type\n");
841 ret_val = IXGBE_ERR_PHY;
842 goto out;
843 }
844 }
845
846out:
847 return ret_val;
Mark Rustadbe0c27b2013-05-24 07:31:09 +0000848
849err_eeprom:
850 hw_err(hw, "eeprom read at offset %d failed\n", data_offset);
851 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800852}
853
854/**
Don Skidmore8f583322013-07-27 06:25:38 +0000855 * ixgbe_identify_module_generic - Identifies module type
Donald Skidmorec4900be2008-11-20 21:11:42 -0800856 * @hw: pointer to hardware structure
857 *
Don Skidmore8f583322013-07-27 06:25:38 +0000858 * Determines HW type and calls appropriate function.
859 **/
860s32 ixgbe_identify_module_generic(struct ixgbe_hw *hw)
861{
862 s32 status = IXGBE_ERR_SFP_NOT_PRESENT;
863
864 switch (hw->mac.ops.get_media_type(hw)) {
865 case ixgbe_media_type_fiber:
866 status = ixgbe_identify_sfp_module_generic(hw);
867 break;
868 case ixgbe_media_type_fiber_qsfp:
869 status = ixgbe_identify_qsfp_module_generic(hw);
870 break;
871 default:
872 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
873 status = IXGBE_ERR_SFP_NOT_PRESENT;
874 break;
875 }
876
877 return status;
878}
879
880/**
881 * ixgbe_identify_sfp_module_generic - Identifies SFP modules
882 * @hw: pointer to hardware structure
883*
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000884 * Searches for and identifies the SFP module and assigns appropriate PHY type.
Donald Skidmorec4900be2008-11-20 21:11:42 -0800885 **/
886s32 ixgbe_identify_sfp_module_generic(struct ixgbe_hw *hw)
887{
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000888 struct ixgbe_adapter *adapter = hw->back;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800889 s32 status = IXGBE_ERR_PHY_ADDR_INVALID;
890 u32 vendor_oui = 0;
PJ Waskiewicz553b4492009-04-09 22:28:15 +0000891 enum ixgbe_sfp_type stored_sfp_type = hw->phy.sfp_type;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800892 u8 identifier = 0;
893 u8 comp_codes_1g = 0;
894 u8 comp_codes_10g = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000895 u8 oui_bytes[3] = {0, 0, 0};
Peter P Waskiewicz Jr537d58a2009-05-19 09:18:51 +0000896 u8 cable_tech = 0;
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000897 u8 cable_spec = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000898 u16 enforce_sfp = 0;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800899
Don Skidmore8ca783a2009-05-26 20:40:47 -0700900 if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber) {
901 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
902 status = IXGBE_ERR_SFP_NOT_PRESENT;
903 goto out;
904 }
905
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000906 status = hw->phy.ops.read_i2c_eeprom(hw,
907 IXGBE_SFF_IDENTIFIER,
Emil Tantilov51d04202013-01-18 02:17:11 +0000908 &identifier);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800909
Emil Tantilov51d04202013-01-18 02:17:11 +0000910 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000911 goto err_read_i2c_eeprom;
Donald Skidmorec4900be2008-11-20 21:11:42 -0800912
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000913 /* LAN ID is needed for sfp_type determination */
914 hw->mac.ops.set_lan_id(hw);
Donald Skidmorec4900be2008-11-20 21:11:42 -0800915
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000916 if (identifier != IXGBE_SFF_IDENTIFIER_SFP) {
917 hw->phy.type = ixgbe_phy_sfp_unsupported;
918 status = IXGBE_ERR_SFP_NOT_SUPPORTED;
919 } else {
920 status = hw->phy.ops.read_i2c_eeprom(hw,
921 IXGBE_SFF_1GBE_COMP_CODES,
922 &comp_codes_1g);
923
Emil Tantilov51d04202013-01-18 02:17:11 +0000924 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000925 goto err_read_i2c_eeprom;
926
927 status = hw->phy.ops.read_i2c_eeprom(hw,
928 IXGBE_SFF_10GBE_COMP_CODES,
929 &comp_codes_10g);
930
Emil Tantilov51d04202013-01-18 02:17:11 +0000931 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000932 goto err_read_i2c_eeprom;
933 status = hw->phy.ops.read_i2c_eeprom(hw,
934 IXGBE_SFF_CABLE_TECHNOLOGY,
935 &cable_tech);
936
Emil Tantilov51d04202013-01-18 02:17:11 +0000937 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000938 goto err_read_i2c_eeprom;
939
940 /* ID Module
941 * =========
942 * 0 SFP_DA_CU
943 * 1 SFP_SR
944 * 2 SFP_LR
945 * 3 SFP_DA_CORE0 - 82599-specific
946 * 4 SFP_DA_CORE1 - 82599-specific
947 * 5 SFP_SR/LR_CORE0 - 82599-specific
948 * 6 SFP_SR/LR_CORE1 - 82599-specific
949 * 7 SFP_act_lmt_DA_CORE0 - 82599-specific
950 * 8 SFP_act_lmt_DA_CORE1 - 82599-specific
951 * 9 SFP_1g_cu_CORE0 - 82599-specific
952 * 10 SFP_1g_cu_CORE1 - 82599-specific
Jacob Kellera49fda32012-06-08 06:59:09 +0000953 * 11 SFP_1g_sx_CORE0 - 82599-specific
954 * 12 SFP_1g_sx_CORE1 - 82599-specific
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000955 */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000956 if (hw->mac.type == ixgbe_mac_82598EB) {
Peter P Waskiewicz Jr537d58a2009-05-19 09:18:51 +0000957 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000958 hw->phy.sfp_type = ixgbe_sfp_type_da_cu;
959 else if (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)
960 hw->phy.sfp_type = ixgbe_sfp_type_sr;
961 else if (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)
962 hw->phy.sfp_type = ixgbe_sfp_type_lr;
963 else
964 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
965 } else if (hw->mac.type == ixgbe_mac_82599EB) {
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000966 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000967 if (hw->bus.lan_id == 0)
968 hw->phy.sfp_type =
969 ixgbe_sfp_type_da_cu_core0;
970 else
971 hw->phy.sfp_type =
972 ixgbe_sfp_type_da_cu_core1;
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000973 } else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE) {
974 hw->phy.ops.read_i2c_eeprom(
975 hw, IXGBE_SFF_CABLE_SPEC_COMP,
976 &cable_spec);
977 if (cable_spec &
978 IXGBE_SFF_DA_SPEC_ACTIVE_LIMITING) {
979 if (hw->bus.lan_id == 0)
980 hw->phy.sfp_type =
981 ixgbe_sfp_type_da_act_lmt_core0;
982 else
983 hw->phy.sfp_type =
984 ixgbe_sfp_type_da_act_lmt_core1;
985 } else {
986 hw->phy.sfp_type =
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000987 ixgbe_sfp_type_unknown;
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000988 }
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000989 } else if (comp_codes_10g &
990 (IXGBE_SFF_10GBASESR_CAPABLE |
991 IXGBE_SFF_10GBASELR_CAPABLE)) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000992 if (hw->bus.lan_id == 0)
993 hw->phy.sfp_type =
994 ixgbe_sfp_type_srlr_core0;
995 else
996 hw->phy.sfp_type =
997 ixgbe_sfp_type_srlr_core1;
Emil Tantilov76d97dd2011-02-16 10:14:00 +0000998 } else if (comp_codes_1g & IXGBE_SFF_1GBASET_CAPABLE) {
Don Skidmorecb836a92010-06-29 18:30:59 +0000999 if (hw->bus.lan_id == 0)
1000 hw->phy.sfp_type =
1001 ixgbe_sfp_type_1g_cu_core0;
1002 else
1003 hw->phy.sfp_type =
1004 ixgbe_sfp_type_1g_cu_core1;
Jacob Kellera49fda32012-06-08 06:59:09 +00001005 } else if (comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) {
1006 if (hw->bus.lan_id == 0)
1007 hw->phy.sfp_type =
1008 ixgbe_sfp_type_1g_sx_core0;
1009 else
1010 hw->phy.sfp_type =
1011 ixgbe_sfp_type_1g_sx_core1;
Don Skidmore345be202013-04-11 06:23:34 +00001012 } else if (comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) {
1013 if (hw->bus.lan_id == 0)
1014 hw->phy.sfp_type =
1015 ixgbe_sfp_type_1g_lx_core0;
1016 else
1017 hw->phy.sfp_type =
1018 ixgbe_sfp_type_1g_lx_core1;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001019 } else {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001020 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001021 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001022 }
Donald Skidmorec4900be2008-11-20 21:11:42 -08001023
PJ Waskiewicz553b4492009-04-09 22:28:15 +00001024 if (hw->phy.sfp_type != stored_sfp_type)
1025 hw->phy.sfp_setup_needed = true;
1026
1027 /* Determine if the SFP+ PHY is dual speed or not. */
Peter P Waskiewicz Jr50ac58b2009-06-04 11:10:53 +00001028 hw->phy.multispeed_fiber = false;
PJ Waskiewicz553b4492009-04-09 22:28:15 +00001029 if (((comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) &&
1030 (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)) ||
1031 ((comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) &&
1032 (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)))
1033 hw->phy.multispeed_fiber = true;
1034
Donald Skidmorec4900be2008-11-20 21:11:42 -08001035 /* Determine PHY vendor */
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001036 if (hw->phy.type != ixgbe_phy_nl) {
Donald Skidmorec4900be2008-11-20 21:11:42 -08001037 hw->phy.id = identifier;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001038 status = hw->phy.ops.read_i2c_eeprom(hw,
Emil Tantilov51d04202013-01-18 02:17:11 +00001039 IXGBE_SFF_VENDOR_OUI_BYTE0,
1040 &oui_bytes[0]);
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001041
Emil Tantilov51d04202013-01-18 02:17:11 +00001042 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001043 goto err_read_i2c_eeprom;
1044
1045 status = hw->phy.ops.read_i2c_eeprom(hw,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001046 IXGBE_SFF_VENDOR_OUI_BYTE1,
1047 &oui_bytes[1]);
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001048
Emil Tantilov51d04202013-01-18 02:17:11 +00001049 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001050 goto err_read_i2c_eeprom;
1051
1052 status = hw->phy.ops.read_i2c_eeprom(hw,
Donald Skidmorec4900be2008-11-20 21:11:42 -08001053 IXGBE_SFF_VENDOR_OUI_BYTE2,
1054 &oui_bytes[2]);
1055
Emil Tantilov51d04202013-01-18 02:17:11 +00001056 if (status != 0)
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001057 goto err_read_i2c_eeprom;
1058
Donald Skidmorec4900be2008-11-20 21:11:42 -08001059 vendor_oui =
1060 ((oui_bytes[0] << IXGBE_SFF_VENDOR_OUI_BYTE0_SHIFT) |
1061 (oui_bytes[1] << IXGBE_SFF_VENDOR_OUI_BYTE1_SHIFT) |
1062 (oui_bytes[2] << IXGBE_SFF_VENDOR_OUI_BYTE2_SHIFT));
1063
1064 switch (vendor_oui) {
1065 case IXGBE_SFF_VENDOR_OUI_TYCO:
Peter P Waskiewicz Jr537d58a2009-05-19 09:18:51 +00001066 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE)
Don Skidmoreea0a04d2010-05-18 16:00:13 +00001067 hw->phy.type =
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001068 ixgbe_phy_sfp_passive_tyco;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001069 break;
1070 case IXGBE_SFF_VENDOR_OUI_FTL:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00001071 if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE)
1072 hw->phy.type = ixgbe_phy_sfp_ftl_active;
1073 else
1074 hw->phy.type = ixgbe_phy_sfp_ftl;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001075 break;
1076 case IXGBE_SFF_VENDOR_OUI_AVAGO:
1077 hw->phy.type = ixgbe_phy_sfp_avago;
1078 break;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001079 case IXGBE_SFF_VENDOR_OUI_INTEL:
1080 hw->phy.type = ixgbe_phy_sfp_intel;
1081 break;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001082 default:
Peter P Waskiewicz Jr537d58a2009-05-19 09:18:51 +00001083 if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE)
Don Skidmoreea0a04d2010-05-18 16:00:13 +00001084 hw->phy.type =
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001085 ixgbe_phy_sfp_passive_unknown;
Don Skidmoreea0a04d2010-05-18 16:00:13 +00001086 else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE)
1087 hw->phy.type =
1088 ixgbe_phy_sfp_active_unknown;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001089 else
1090 hw->phy.type = ixgbe_phy_sfp_unknown;
1091 break;
1092 }
1093 }
Waskiewicz Jr, Peter Pfa466e92009-04-23 11:31:37 +00001094
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001095 /* Allow any DA cable vendor */
Don Skidmoreea0a04d2010-05-18 16:00:13 +00001096 if (cable_tech & (IXGBE_SFF_DA_PASSIVE_CABLE |
1097 IXGBE_SFF_DA_ACTIVE_CABLE)) {
Waskiewicz Jr, Peter Pfa466e92009-04-23 11:31:37 +00001098 status = 0;
1099 goto out;
1100 }
1101
Don Skidmorecb836a92010-06-29 18:30:59 +00001102 /* Verify supported 1G SFP modules */
1103 if (comp_codes_10g == 0 &&
1104 !(hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core1 ||
Jacob Kellera49fda32012-06-08 06:59:09 +00001105 hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core0 ||
Don Skidmore345be202013-04-11 06:23:34 +00001106 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
1107 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1 ||
Jacob Kellera49fda32012-06-08 06:59:09 +00001108 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
1109 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1)) {
Waskiewicz Jr, Peter Pfa466e92009-04-23 11:31:37 +00001110 hw->phy.type = ixgbe_phy_sfp_unsupported;
1111 status = IXGBE_ERR_SFP_NOT_SUPPORTED;
1112 goto out;
1113 }
1114
1115 /* Anything else 82598-based is supported */
1116 if (hw->mac.type == ixgbe_mac_82598EB) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001117 status = 0;
1118 goto out;
1119 }
1120
Peter P Waskiewicz Jr04193052009-04-09 22:28:50 +00001121 hw->mac.ops.get_device_caps(hw, &enforce_sfp);
Don Skidmorecb836a92010-06-29 18:30:59 +00001122 if (!(enforce_sfp & IXGBE_DEVICE_CAPS_ALLOW_ANY_SFP) &&
Don Skidmore345be202013-04-11 06:23:34 +00001123 !(hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core0 ||
1124 hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core1 ||
1125 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
1126 hw->phy.sfp_type == ixgbe_sfp_type_1g_lx_core1 ||
1127 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 ||
1128 hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1)) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001129 /* Make sure we're a supported PHY type */
1130 if (hw->phy.type == ixgbe_phy_sfp_intel) {
1131 status = 0;
1132 } else {
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00001133 if (hw->allow_unsupported_sfp) {
1134 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.");
1135 status = 0;
1136 } else {
1137 hw_dbg(hw,
1138 "SFP+ module not supported\n");
1139 hw->phy.type =
1140 ixgbe_phy_sfp_unsupported;
1141 status = IXGBE_ERR_SFP_NOT_SUPPORTED;
1142 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001143 }
1144 } else {
1145 status = 0;
1146 }
Donald Skidmorec4900be2008-11-20 21:11:42 -08001147 }
1148
1149out:
1150 return status;
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001151
1152err_read_i2c_eeprom:
1153 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
1154 if (hw->phy.type != ixgbe_phy_nl) {
1155 hw->phy.id = 0;
1156 hw->phy.type = ixgbe_phy_unknown;
1157 }
1158 return IXGBE_ERR_SFP_NOT_PRESENT;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001159}
1160
1161/**
Don Skidmore8f583322013-07-27 06:25:38 +00001162 * ixgbe_identify_qsfp_module_generic - Identifies QSFP modules
1163 * @hw: pointer to hardware structure
1164 *
1165 * Searches for and identifies the QSFP module and assigns appropriate PHY type
1166 **/
1167s32 ixgbe_identify_qsfp_module_generic(struct ixgbe_hw *hw)
1168{
1169 struct ixgbe_adapter *adapter = hw->back;
1170 s32 status = IXGBE_ERR_PHY_ADDR_INVALID;
1171 u32 vendor_oui = 0;
1172 enum ixgbe_sfp_type stored_sfp_type = hw->phy.sfp_type;
1173 u8 identifier = 0;
1174 u8 comp_codes_1g = 0;
1175 u8 comp_codes_10g = 0;
1176 u8 oui_bytes[3] = {0, 0, 0};
1177 u16 enforce_sfp = 0;
1178
1179 if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber_qsfp) {
1180 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
1181 status = IXGBE_ERR_SFP_NOT_PRESENT;
1182 goto out;
1183 }
1184
1185 status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_IDENTIFIER,
1186 &identifier);
1187
1188 if (status != 0)
1189 goto err_read_i2c_eeprom;
1190
1191 if (identifier != IXGBE_SFF_IDENTIFIER_QSFP_PLUS) {
1192 hw->phy.type = ixgbe_phy_sfp_unsupported;
1193 status = IXGBE_ERR_SFP_NOT_SUPPORTED;
1194 goto out;
1195 }
1196
1197 hw->phy.id = identifier;
1198
1199 /* LAN ID is needed for sfp_type determination */
1200 hw->mac.ops.set_lan_id(hw);
1201
1202 status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_QSFP_10GBE_COMP,
1203 &comp_codes_10g);
1204
1205 if (status != 0)
1206 goto err_read_i2c_eeprom;
1207
Emil Tantilov61aaf9e2013-08-13 07:22:16 +00001208 status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_QSFP_1GBE_COMP,
1209 &comp_codes_1g);
1210
1211 if (status != 0)
1212 goto err_read_i2c_eeprom;
1213
Don Skidmore8f583322013-07-27 06:25:38 +00001214 if (comp_codes_10g & IXGBE_SFF_QSFP_DA_PASSIVE_CABLE) {
1215 hw->phy.type = ixgbe_phy_qsfp_passive_unknown;
1216 if (hw->bus.lan_id == 0)
1217 hw->phy.sfp_type = ixgbe_sfp_type_da_cu_core0;
1218 else
1219 hw->phy.sfp_type = ixgbe_sfp_type_da_cu_core1;
1220 } else if (comp_codes_10g & IXGBE_SFF_QSFP_DA_ACTIVE_CABLE) {
1221 hw->phy.type = ixgbe_phy_qsfp_active_unknown;
1222 if (hw->bus.lan_id == 0)
1223 hw->phy.sfp_type = ixgbe_sfp_type_da_act_lmt_core0;
1224 else
1225 hw->phy.sfp_type = ixgbe_sfp_type_da_act_lmt_core1;
1226 } else if (comp_codes_10g & (IXGBE_SFF_10GBASESR_CAPABLE |
1227 IXGBE_SFF_10GBASELR_CAPABLE)) {
1228 if (hw->bus.lan_id == 0)
1229 hw->phy.sfp_type = ixgbe_sfp_type_srlr_core0;
1230 else
1231 hw->phy.sfp_type = ixgbe_sfp_type_srlr_core1;
1232 } else {
1233 /* unsupported module type */
1234 hw->phy.type = ixgbe_phy_sfp_unsupported;
1235 status = IXGBE_ERR_SFP_NOT_SUPPORTED;
1236 goto out;
1237 }
1238
1239 if (hw->phy.sfp_type != stored_sfp_type)
1240 hw->phy.sfp_setup_needed = true;
1241
1242 /* Determine if the QSFP+ PHY is dual speed or not. */
1243 hw->phy.multispeed_fiber = false;
1244 if (((comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) &&
1245 (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)) ||
1246 ((comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) &&
1247 (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE)))
1248 hw->phy.multispeed_fiber = true;
1249
1250 /* Determine PHY vendor for optical modules */
1251 if (comp_codes_10g & (IXGBE_SFF_10GBASESR_CAPABLE |
1252 IXGBE_SFF_10GBASELR_CAPABLE)) {
1253 status = hw->phy.ops.read_i2c_eeprom(hw,
1254 IXGBE_SFF_QSFP_VENDOR_OUI_BYTE0,
1255 &oui_bytes[0]);
1256
1257 if (status != 0)
1258 goto err_read_i2c_eeprom;
1259
1260 status = hw->phy.ops.read_i2c_eeprom(hw,
1261 IXGBE_SFF_QSFP_VENDOR_OUI_BYTE1,
1262 &oui_bytes[1]);
1263
1264 if (status != 0)
1265 goto err_read_i2c_eeprom;
1266
1267 status = hw->phy.ops.read_i2c_eeprom(hw,
1268 IXGBE_SFF_QSFP_VENDOR_OUI_BYTE2,
1269 &oui_bytes[2]);
1270
1271 if (status != 0)
1272 goto err_read_i2c_eeprom;
1273
1274 vendor_oui =
1275 ((oui_bytes[0] << IXGBE_SFF_VENDOR_OUI_BYTE0_SHIFT) |
1276 (oui_bytes[1] << IXGBE_SFF_VENDOR_OUI_BYTE1_SHIFT) |
1277 (oui_bytes[2] << IXGBE_SFF_VENDOR_OUI_BYTE2_SHIFT));
1278
1279 if (vendor_oui == IXGBE_SFF_VENDOR_OUI_INTEL)
1280 hw->phy.type = ixgbe_phy_qsfp_intel;
1281 else
1282 hw->phy.type = ixgbe_phy_qsfp_unknown;
1283
1284 hw->mac.ops.get_device_caps(hw, &enforce_sfp);
1285 if (!(enforce_sfp & IXGBE_DEVICE_CAPS_ALLOW_ANY_SFP)) {
1286 /* Make sure we're a supported PHY type */
1287 if (hw->phy.type == ixgbe_phy_qsfp_intel) {
1288 status = 0;
1289 } else {
1290 if (hw->allow_unsupported_sfp == true) {
Don Skidmore1b1bf312013-07-31 05:27:04 +00001291 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");
Don Skidmore8f583322013-07-27 06:25:38 +00001292 status = 0;
1293 } else {
1294 hw_dbg(hw,
1295 "QSFP module not supported\n");
1296 hw->phy.type =
1297 ixgbe_phy_sfp_unsupported;
1298 status = IXGBE_ERR_SFP_NOT_SUPPORTED;
1299 }
1300 }
1301 } else {
1302 status = 0;
1303 }
1304 }
1305
1306out:
1307 return status;
1308
1309err_read_i2c_eeprom:
1310 hw->phy.sfp_type = ixgbe_sfp_type_not_present;
1311 hw->phy.id = 0;
1312 hw->phy.type = ixgbe_phy_unknown;
1313
1314 return IXGBE_ERR_SFP_NOT_PRESENT;
1315}
1316
1317/**
Emil Tantilov76d97dd2011-02-16 10:14:00 +00001318 * ixgbe_get_sfp_init_sequence_offsets - Provides offset of PHY init sequence
Donald Skidmorec4900be2008-11-20 21:11:42 -08001319 * @hw: pointer to hardware structure
1320 * @list_offset: offset to the SFP ID list
1321 * @data_offset: offset to the SFP data block
Emil Tantilov75f19c32011-02-19 08:43:55 +00001322 *
1323 * Checks the MAC's EEPROM to see if it supports a given SFP+ module type, if
1324 * so it returns the offsets to the phy init sequence block.
Donald Skidmorec4900be2008-11-20 21:11:42 -08001325 **/
1326s32 ixgbe_get_sfp_init_sequence_offsets(struct ixgbe_hw *hw,
1327 u16 *list_offset,
1328 u16 *data_offset)
1329{
1330 u16 sfp_id;
Don Skidmorecb836a92010-06-29 18:30:59 +00001331 u16 sfp_type = hw->phy.sfp_type;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001332
1333 if (hw->phy.sfp_type == ixgbe_sfp_type_unknown)
1334 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1335
1336 if (hw->phy.sfp_type == ixgbe_sfp_type_not_present)
1337 return IXGBE_ERR_SFP_NOT_PRESENT;
1338
1339 if ((hw->device_id == IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) &&
1340 (hw->phy.sfp_type == ixgbe_sfp_type_da_cu))
1341 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1342
Don Skidmorecb836a92010-06-29 18:30:59 +00001343 /*
1344 * Limiting active cables and 1G Phys must be initialized as
1345 * SR modules
1346 */
1347 if (sfp_type == ixgbe_sfp_type_da_act_lmt_core0 ||
Don Skidmore345be202013-04-11 06:23:34 +00001348 sfp_type == ixgbe_sfp_type_1g_lx_core0 ||
Jacob Kellera49fda32012-06-08 06:59:09 +00001349 sfp_type == ixgbe_sfp_type_1g_cu_core0 ||
1350 sfp_type == ixgbe_sfp_type_1g_sx_core0)
Don Skidmorecb836a92010-06-29 18:30:59 +00001351 sfp_type = ixgbe_sfp_type_srlr_core0;
1352 else if (sfp_type == ixgbe_sfp_type_da_act_lmt_core1 ||
Don Skidmore345be202013-04-11 06:23:34 +00001353 sfp_type == ixgbe_sfp_type_1g_lx_core1 ||
Jacob Kellera49fda32012-06-08 06:59:09 +00001354 sfp_type == ixgbe_sfp_type_1g_cu_core1 ||
1355 sfp_type == ixgbe_sfp_type_1g_sx_core1)
Don Skidmorecb836a92010-06-29 18:30:59 +00001356 sfp_type = ixgbe_sfp_type_srlr_core1;
1357
Donald Skidmorec4900be2008-11-20 21:11:42 -08001358 /* Read offset to PHY init contents */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001359 if (hw->eeprom.ops.read(hw, IXGBE_PHY_INIT_OFFSET_NL, list_offset)) {
1360 hw_err(hw, "eeprom read at %d failed\n",
1361 IXGBE_PHY_INIT_OFFSET_NL);
1362 return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT;
1363 }
Donald Skidmorec4900be2008-11-20 21:11:42 -08001364
1365 if ((!*list_offset) || (*list_offset == 0xFFFF))
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001366 return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001367
1368 /* Shift offset to first ID word */
1369 (*list_offset)++;
1370
1371 /*
1372 * Find the matching SFP ID in the EEPROM
1373 * and program the init sequence
1374 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001375 if (hw->eeprom.ops.read(hw, *list_offset, &sfp_id))
1376 goto err_phy;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001377
1378 while (sfp_id != IXGBE_PHY_INIT_END_NL) {
Don Skidmorecb836a92010-06-29 18:30:59 +00001379 if (sfp_id == sfp_type) {
Donald Skidmorec4900be2008-11-20 21:11:42 -08001380 (*list_offset)++;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001381 if (hw->eeprom.ops.read(hw, *list_offset, data_offset))
1382 goto err_phy;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001383 if ((!*data_offset) || (*data_offset == 0xFFFF)) {
1384 hw_dbg(hw, "SFP+ module not supported\n");
1385 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1386 } else {
1387 break;
1388 }
1389 } else {
1390 (*list_offset) += 2;
1391 if (hw->eeprom.ops.read(hw, *list_offset, &sfp_id))
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001392 goto err_phy;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001393 }
1394 }
1395
1396 if (sfp_id == IXGBE_PHY_INIT_END_NL) {
1397 hw_dbg(hw, "No matching SFP+ module found\n");
1398 return IXGBE_ERR_SFP_NOT_SUPPORTED;
1399 }
1400
1401 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00001402
1403err_phy:
1404 hw_err(hw, "eeprom read at offset %d failed\n", *list_offset);
1405 return IXGBE_ERR_PHY;
Donald Skidmorec4900be2008-11-20 21:11:42 -08001406}
1407
1408/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001409 * ixgbe_read_i2c_eeprom_generic - Reads 8 bit EEPROM word over I2C interface
1410 * @hw: pointer to hardware structure
1411 * @byte_offset: EEPROM byte offset to read
1412 * @eeprom_data: value read
1413 *
1414 * Performs byte read operation to SFP module's EEPROM over I2C interface.
1415 **/
1416s32 ixgbe_read_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
1417 u8 *eeprom_data)
1418{
1419 return hw->phy.ops.read_i2c_byte(hw, byte_offset,
1420 IXGBE_I2C_EEPROM_DEV_ADDR,
1421 eeprom_data);
1422}
1423
1424/**
Emil Tantilov07ce8702012-12-19 07:14:17 +00001425 * ixgbe_read_i2c_sff8472_generic - Reads 8 bit word over I2C interface
1426 * @hw: pointer to hardware structure
1427 * @byte_offset: byte offset at address 0xA2
1428 * @eeprom_data: value read
1429 *
1430 * Performs byte read operation to SFP module's SFF-8472 data over I2C
1431 **/
1432s32 ixgbe_read_i2c_sff8472_generic(struct ixgbe_hw *hw, u8 byte_offset,
1433 u8 *sff8472_data)
1434{
1435 return hw->phy.ops.read_i2c_byte(hw, byte_offset,
1436 IXGBE_I2C_EEPROM_DEV_ADDR2,
1437 sff8472_data);
1438}
1439
1440/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001441 * ixgbe_write_i2c_eeprom_generic - Writes 8 bit EEPROM word over I2C interface
1442 * @hw: pointer to hardware structure
1443 * @byte_offset: EEPROM byte offset to write
1444 * @eeprom_data: value to write
1445 *
1446 * Performs byte write operation to SFP module's EEPROM over I2C interface.
1447 **/
1448s32 ixgbe_write_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
1449 u8 eeprom_data)
1450{
1451 return hw->phy.ops.write_i2c_byte(hw, byte_offset,
1452 IXGBE_I2C_EEPROM_DEV_ADDR,
1453 eeprom_data);
1454}
1455
1456/**
1457 * ixgbe_read_i2c_byte_generic - Reads 8 bit word over I2C
1458 * @hw: pointer to hardware structure
1459 * @byte_offset: byte offset to read
1460 * @data: value read
1461 *
1462 * Performs byte read operation to SFP module's EEPROM over I2C interface at
Emil Tantilov3fbaa3a2011-08-30 13:33:51 +00001463 * a specified device address.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001464 **/
1465s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
1466 u8 dev_addr, u8 *data)
1467{
1468 s32 status = 0;
Emil Tantilov75f19c32011-02-19 08:43:55 +00001469 u32 max_retry = 10;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001470 u32 retry = 0;
Emil Tantilov75f19c32011-02-19 08:43:55 +00001471 u16 swfw_mask = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001472 bool nack = true;
Emil Tantilov3fbaa3a2011-08-30 13:33:51 +00001473 *data = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001474
Emil Tantilov75f19c32011-02-19 08:43:55 +00001475 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
1476 swfw_mask = IXGBE_GSSR_PHY1_SM;
1477 else
1478 swfw_mask = IXGBE_GSSR_PHY0_SM;
1479
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001480 do {
Emil Tantilov6d980c32011-04-13 04:56:15 +00001481 if (hw->mac.ops.acquire_swfw_sync(hw, swfw_mask) != 0) {
Emil Tantilov75f19c32011-02-19 08:43:55 +00001482 status = IXGBE_ERR_SWFW_SYNC;
1483 goto read_byte_out;
1484 }
1485
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001486 ixgbe_i2c_start(hw);
1487
1488 /* Device Address and write indication */
1489 status = ixgbe_clock_out_i2c_byte(hw, dev_addr);
1490 if (status != 0)
1491 goto fail;
1492
1493 status = ixgbe_get_i2c_ack(hw);
1494 if (status != 0)
1495 goto fail;
1496
1497 status = ixgbe_clock_out_i2c_byte(hw, byte_offset);
1498 if (status != 0)
1499 goto fail;
1500
1501 status = ixgbe_get_i2c_ack(hw);
1502 if (status != 0)
1503 goto fail;
1504
1505 ixgbe_i2c_start(hw);
1506
1507 /* Device Address and read indication */
1508 status = ixgbe_clock_out_i2c_byte(hw, (dev_addr | 0x1));
1509 if (status != 0)
1510 goto fail;
1511
1512 status = ixgbe_get_i2c_ack(hw);
1513 if (status != 0)
1514 goto fail;
1515
1516 status = ixgbe_clock_in_i2c_byte(hw, data);
1517 if (status != 0)
1518 goto fail;
1519
1520 status = ixgbe_clock_out_i2c_bit(hw, nack);
1521 if (status != 0)
1522 goto fail;
1523
1524 ixgbe_i2c_stop(hw);
1525 break;
1526
1527fail:
Emil Tantilovd0310dc2013-01-18 02:16:41 +00001528 ixgbe_i2c_bus_clear(hw);
Emil Tantilov6d980c32011-04-13 04:56:15 +00001529 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Emil Tantilov75f19c32011-02-19 08:43:55 +00001530 msleep(100);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001531 retry++;
1532 if (retry < max_retry)
1533 hw_dbg(hw, "I2C byte read error - Retrying.\n");
1534 else
1535 hw_dbg(hw, "I2C byte read error.\n");
1536
1537 } while (retry < max_retry);
1538
Emil Tantilov6d980c32011-04-13 04:56:15 +00001539 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Emil Tantilov75f19c32011-02-19 08:43:55 +00001540
1541read_byte_out:
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001542 return status;
1543}
1544
1545/**
1546 * ixgbe_write_i2c_byte_generic - Writes 8 bit word over I2C
1547 * @hw: pointer to hardware structure
1548 * @byte_offset: byte offset to write
1549 * @data: value to write
1550 *
1551 * Performs byte write operation to SFP module's EEPROM over I2C interface at
1552 * a specified device address.
1553 **/
1554s32 ixgbe_write_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
1555 u8 dev_addr, u8 data)
1556{
1557 s32 status = 0;
1558 u32 max_retry = 1;
1559 u32 retry = 0;
Emil Tantilov75f19c32011-02-19 08:43:55 +00001560 u16 swfw_mask = 0;
1561
1562 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
1563 swfw_mask = IXGBE_GSSR_PHY1_SM;
1564 else
1565 swfw_mask = IXGBE_GSSR_PHY0_SM;
1566
Emil Tantilov6d980c32011-04-13 04:56:15 +00001567 if (hw->mac.ops.acquire_swfw_sync(hw, swfw_mask) != 0) {
Emil Tantilov75f19c32011-02-19 08:43:55 +00001568 status = IXGBE_ERR_SWFW_SYNC;
1569 goto write_byte_out;
1570 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001571
1572 do {
1573 ixgbe_i2c_start(hw);
1574
1575 status = ixgbe_clock_out_i2c_byte(hw, dev_addr);
1576 if (status != 0)
1577 goto fail;
1578
1579 status = ixgbe_get_i2c_ack(hw);
1580 if (status != 0)
1581 goto fail;
1582
1583 status = ixgbe_clock_out_i2c_byte(hw, byte_offset);
1584 if (status != 0)
1585 goto fail;
1586
1587 status = ixgbe_get_i2c_ack(hw);
1588 if (status != 0)
1589 goto fail;
1590
1591 status = ixgbe_clock_out_i2c_byte(hw, data);
1592 if (status != 0)
1593 goto fail;
1594
1595 status = ixgbe_get_i2c_ack(hw);
1596 if (status != 0)
1597 goto fail;
1598
1599 ixgbe_i2c_stop(hw);
1600 break;
1601
1602fail:
1603 ixgbe_i2c_bus_clear(hw);
1604 retry++;
1605 if (retry < max_retry)
1606 hw_dbg(hw, "I2C byte write error - Retrying.\n");
1607 else
1608 hw_dbg(hw, "I2C byte write error.\n");
1609 } while (retry < max_retry);
1610
Emil Tantilov6d980c32011-04-13 04:56:15 +00001611 hw->mac.ops.release_swfw_sync(hw, swfw_mask);
Emil Tantilov75f19c32011-02-19 08:43:55 +00001612
1613write_byte_out:
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001614 return status;
1615}
1616
1617/**
1618 * ixgbe_i2c_start - Sets I2C start condition
1619 * @hw: pointer to hardware structure
1620 *
1621 * Sets I2C start condition (High -> Low on SDA while SCL is High)
1622 **/
1623static void ixgbe_i2c_start(struct ixgbe_hw *hw)
1624{
1625 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1626
1627 /* Start condition must begin with data and clock high */
1628 ixgbe_set_i2c_data(hw, &i2cctl, 1);
1629 ixgbe_raise_i2c_clk(hw, &i2cctl);
1630
1631 /* Setup time for start condition (4.7us) */
1632 udelay(IXGBE_I2C_T_SU_STA);
1633
1634 ixgbe_set_i2c_data(hw, &i2cctl, 0);
1635
1636 /* Hold time for start condition (4us) */
1637 udelay(IXGBE_I2C_T_HD_STA);
1638
1639 ixgbe_lower_i2c_clk(hw, &i2cctl);
1640
1641 /* Minimum low period of clock is 4.7 us */
1642 udelay(IXGBE_I2C_T_LOW);
1643
1644}
1645
1646/**
1647 * ixgbe_i2c_stop - Sets I2C stop condition
1648 * @hw: pointer to hardware structure
1649 *
1650 * Sets I2C stop condition (Low -> High on SDA while SCL is High)
1651 **/
1652static void ixgbe_i2c_stop(struct ixgbe_hw *hw)
1653{
1654 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1655
1656 /* Stop condition must begin with data low and clock high */
1657 ixgbe_set_i2c_data(hw, &i2cctl, 0);
1658 ixgbe_raise_i2c_clk(hw, &i2cctl);
1659
1660 /* Setup time for stop condition (4us) */
1661 udelay(IXGBE_I2C_T_SU_STO);
1662
1663 ixgbe_set_i2c_data(hw, &i2cctl, 1);
1664
1665 /* bus free time between stop and start (4.7us)*/
1666 udelay(IXGBE_I2C_T_BUF);
1667}
1668
1669/**
1670 * ixgbe_clock_in_i2c_byte - Clocks in one byte via I2C
1671 * @hw: pointer to hardware structure
1672 * @data: data byte to clock in
1673 *
1674 * Clocks in one byte data via I2C data/clock
1675 **/
1676static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data)
1677{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001678 s32 i;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001679 bool bit = false;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001680
1681 for (i = 7; i >= 0; i--) {
Emil Tantilove1befd72011-08-27 07:18:47 +00001682 ixgbe_clock_in_i2c_bit(hw, &bit);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001683 *data |= bit << i;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001684 }
1685
Emil Tantilove1befd72011-08-27 07:18:47 +00001686 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001687}
1688
1689/**
1690 * ixgbe_clock_out_i2c_byte - Clocks out one byte via I2C
1691 * @hw: pointer to hardware structure
1692 * @data: data byte clocked out
1693 *
1694 * Clocks out one byte data via I2C data/clock
1695 **/
1696static s32 ixgbe_clock_out_i2c_byte(struct ixgbe_hw *hw, u8 data)
1697{
1698 s32 status = 0;
1699 s32 i;
1700 u32 i2cctl;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001701 bool bit = false;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001702
1703 for (i = 7; i >= 0; i--) {
1704 bit = (data >> i) & 0x1;
1705 status = ixgbe_clock_out_i2c_bit(hw, bit);
1706
1707 if (status != 0)
1708 break;
1709 }
1710
1711 /* Release SDA line (set high) */
1712 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1713 i2cctl |= IXGBE_I2C_DATA_OUT;
1714 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, i2cctl);
Emil Tantilov176f9502011-11-04 06:43:23 +00001715 IXGBE_WRITE_FLUSH(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001716
1717 return status;
1718}
1719
1720/**
1721 * ixgbe_get_i2c_ack - Polls for I2C ACK
1722 * @hw: pointer to hardware structure
1723 *
1724 * Clocks in/out one bit via I2C data/clock
1725 **/
1726static s32 ixgbe_get_i2c_ack(struct ixgbe_hw *hw)
1727{
Emil Tantilove1befd72011-08-27 07:18:47 +00001728 s32 status = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001729 u32 i = 0;
1730 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1731 u32 timeout = 10;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001732 bool ack = true;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001733
Emil Tantilove1befd72011-08-27 07:18:47 +00001734 ixgbe_raise_i2c_clk(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001735
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001736
1737 /* Minimum high period of clock is 4us */
1738 udelay(IXGBE_I2C_T_HIGH);
1739
1740 /* Poll for ACK. Note that ACK in I2C spec is
1741 * transition from 1 to 0 */
1742 for (i = 0; i < timeout; i++) {
1743 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1744 ack = ixgbe_get_i2c_data(&i2cctl);
1745
1746 udelay(1);
1747 if (ack == 0)
1748 break;
1749 }
1750
1751 if (ack == 1) {
1752 hw_dbg(hw, "I2C ack was not received.\n");
1753 status = IXGBE_ERR_I2C;
1754 }
1755
1756 ixgbe_lower_i2c_clk(hw, &i2cctl);
1757
1758 /* Minimum low period of clock is 4.7 us */
1759 udelay(IXGBE_I2C_T_LOW);
1760
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001761 return status;
1762}
1763
1764/**
1765 * ixgbe_clock_in_i2c_bit - Clocks in one bit via I2C data/clock
1766 * @hw: pointer to hardware structure
1767 * @data: read data value
1768 *
1769 * Clocks in one bit via I2C data/clock
1770 **/
1771static s32 ixgbe_clock_in_i2c_bit(struct ixgbe_hw *hw, bool *data)
1772{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001773 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1774
Emil Tantilove1befd72011-08-27 07:18:47 +00001775 ixgbe_raise_i2c_clk(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001776
1777 /* Minimum high period of clock is 4us */
1778 udelay(IXGBE_I2C_T_HIGH);
1779
1780 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1781 *data = ixgbe_get_i2c_data(&i2cctl);
1782
1783 ixgbe_lower_i2c_clk(hw, &i2cctl);
1784
1785 /* Minimum low period of clock is 4.7 us */
1786 udelay(IXGBE_I2C_T_LOW);
1787
Emil Tantilove1befd72011-08-27 07:18:47 +00001788 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001789}
1790
1791/**
1792 * ixgbe_clock_out_i2c_bit - Clocks in/out one bit via I2C data/clock
1793 * @hw: pointer to hardware structure
1794 * @data: data value to write
1795 *
1796 * Clocks out one bit via I2C data/clock
1797 **/
1798static s32 ixgbe_clock_out_i2c_bit(struct ixgbe_hw *hw, bool data)
1799{
1800 s32 status;
1801 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1802
1803 status = ixgbe_set_i2c_data(hw, &i2cctl, data);
1804 if (status == 0) {
Emil Tantilove1befd72011-08-27 07:18:47 +00001805 ixgbe_raise_i2c_clk(hw, &i2cctl);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001806
1807 /* Minimum high period of clock is 4us */
1808 udelay(IXGBE_I2C_T_HIGH);
1809
1810 ixgbe_lower_i2c_clk(hw, &i2cctl);
1811
1812 /* Minimum low period of clock is 4.7 us.
1813 * This also takes care of the data hold time.
1814 */
1815 udelay(IXGBE_I2C_T_LOW);
1816 } else {
1817 status = IXGBE_ERR_I2C;
1818 hw_dbg(hw, "I2C data was not set to %X\n", data);
1819 }
1820
1821 return status;
1822}
1823/**
1824 * ixgbe_raise_i2c_clk - Raises the I2C SCL clock
1825 * @hw: pointer to hardware structure
1826 * @i2cctl: Current value of I2CCTL register
1827 *
1828 * Raises the I2C clock line '0'->'1'
1829 **/
Emil Tantilove1befd72011-08-27 07:18:47 +00001830static void ixgbe_raise_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001831{
Don Skidmore8f56e4b2012-03-15 07:36:37 +00001832 u32 i = 0;
1833 u32 timeout = IXGBE_I2C_CLOCK_STRETCHING_TIMEOUT;
1834 u32 i2cctl_r = 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001835
Don Skidmore8f56e4b2012-03-15 07:36:37 +00001836 for (i = 0; i < timeout; i++) {
1837 *i2cctl |= IXGBE_I2C_CLK_OUT;
1838 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, *i2cctl);
1839 IXGBE_WRITE_FLUSH(hw);
1840 /* SCL rise time (1000ns) */
1841 udelay(IXGBE_I2C_T_RISE);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001842
Don Skidmore8f56e4b2012-03-15 07:36:37 +00001843 i2cctl_r = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1844 if (i2cctl_r & IXGBE_I2C_CLK_IN)
1845 break;
1846 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001847}
1848
1849/**
1850 * ixgbe_lower_i2c_clk - Lowers the I2C SCL clock
1851 * @hw: pointer to hardware structure
1852 * @i2cctl: Current value of I2CCTL register
1853 *
1854 * Lowers the I2C clock line '1'->'0'
1855 **/
1856static void ixgbe_lower_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl)
1857{
1858
1859 *i2cctl &= ~IXGBE_I2C_CLK_OUT;
1860
1861 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, *i2cctl);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001862 IXGBE_WRITE_FLUSH(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001863
1864 /* SCL fall time (300ns) */
1865 udelay(IXGBE_I2C_T_FALL);
1866}
1867
1868/**
1869 * ixgbe_set_i2c_data - Sets the I2C data bit
1870 * @hw: pointer to hardware structure
1871 * @i2cctl: Current value of I2CCTL register
1872 * @data: I2C data value (0 or 1) to set
1873 *
1874 * Sets the I2C data bit
1875 **/
1876static s32 ixgbe_set_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl, bool data)
1877{
1878 s32 status = 0;
1879
1880 if (data)
1881 *i2cctl |= IXGBE_I2C_DATA_OUT;
1882 else
1883 *i2cctl &= ~IXGBE_I2C_DATA_OUT;
1884
1885 IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, *i2cctl);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001886 IXGBE_WRITE_FLUSH(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001887
1888 /* Data rise/fall (1000ns/300ns) and set-up time (250ns) */
1889 udelay(IXGBE_I2C_T_RISE + IXGBE_I2C_T_FALL + IXGBE_I2C_T_SU_DATA);
1890
1891 /* Verify data was set correctly */
1892 *i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1893 if (data != ixgbe_get_i2c_data(i2cctl)) {
1894 status = IXGBE_ERR_I2C;
1895 hw_dbg(hw, "Error - I2C data was not set to %X.\n", data);
1896 }
1897
1898 return status;
1899}
1900
1901/**
1902 * ixgbe_get_i2c_data - Reads the I2C SDA data bit
1903 * @hw: pointer to hardware structure
1904 * @i2cctl: Current value of I2CCTL register
1905 *
1906 * Returns the I2C data bit value
1907 **/
1908static bool ixgbe_get_i2c_data(u32 *i2cctl)
1909{
1910 bool data;
1911
1912 if (*i2cctl & IXGBE_I2C_DATA_IN)
Rusty Russell3db1cd52011-12-19 13:56:45 +00001913 data = true;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001914 else
Rusty Russell3db1cd52011-12-19 13:56:45 +00001915 data = false;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001916
1917 return data;
1918}
1919
1920/**
1921 * ixgbe_i2c_bus_clear - Clears the I2C bus
1922 * @hw: pointer to hardware structure
1923 *
1924 * Clears the I2C bus by sending nine clock pulses.
1925 * Used when data line is stuck low.
1926 **/
1927static void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw)
1928{
1929 u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL);
1930 u32 i;
1931
Emil Tantilov75f19c32011-02-19 08:43:55 +00001932 ixgbe_i2c_start(hw);
1933
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001934 ixgbe_set_i2c_data(hw, &i2cctl, 1);
1935
1936 for (i = 0; i < 9; i++) {
1937 ixgbe_raise_i2c_clk(hw, &i2cctl);
1938
1939 /* Min high period of clock is 4us */
1940 udelay(IXGBE_I2C_T_HIGH);
1941
1942 ixgbe_lower_i2c_clk(hw, &i2cctl);
1943
1944 /* Min low period of clock is 4.7us*/
1945 udelay(IXGBE_I2C_T_LOW);
1946 }
1947
Emil Tantilov75f19c32011-02-19 08:43:55 +00001948 ixgbe_i2c_start(hw);
1949
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001950 /* Put the i2c bus back to default state */
1951 ixgbe_i2c_stop(hw);
1952}
1953
1954/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001955 * ixgbe_tn_check_overtemp - Checks if an overtemp occurred.
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001956 * @hw: pointer to hardware structure
1957 *
1958 * Checks if the LASI temp alarm status was triggered due to overtemp
1959 **/
1960s32 ixgbe_tn_check_overtemp(struct ixgbe_hw *hw)
1961{
1962 s32 status = 0;
1963 u16 phy_data = 0;
1964
1965 if (hw->device_id != IXGBE_DEV_ID_82599_T3_LOM)
1966 goto out;
1967
1968 /* Check that the LASI temp alarm status was triggered */
1969 hw->phy.ops.read_reg(hw, IXGBE_TN_LASI_STATUS_REG,
1970 MDIO_MMD_PMAPMD, &phy_data);
1971
1972 if (!(phy_data & IXGBE_TN_LASI_STATUS_TEMP_ALARM))
1973 goto out;
1974
1975 status = IXGBE_ERR_OVERTEMP;
1976out:
1977 return status;
1978}