Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Shannon Nelson | 8c47eaa | 2010-01-13 01:49:34 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2010 Intel Corporation. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5 | |
| 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 Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 23 | 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 Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 35 | static void ixgbe_i2c_start(struct ixgbe_hw *hw); |
| 36 | static void ixgbe_i2c_stop(struct ixgbe_hw *hw); |
| 37 | static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data); |
| 38 | static s32 ixgbe_clock_out_i2c_byte(struct ixgbe_hw *hw, u8 data); |
| 39 | static s32 ixgbe_get_i2c_ack(struct ixgbe_hw *hw); |
| 40 | static s32 ixgbe_clock_in_i2c_bit(struct ixgbe_hw *hw, bool *data); |
| 41 | static s32 ixgbe_clock_out_i2c_bit(struct ixgbe_hw *hw, bool data); |
| 42 | static s32 ixgbe_raise_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl); |
| 43 | static void ixgbe_lower_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl); |
| 44 | static s32 ixgbe_set_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl, bool data); |
| 45 | static bool ixgbe_get_i2c_data(u32 *i2cctl); |
| 46 | static void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 47 | static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id); |
| 48 | static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 49 | |
| 50 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 51 | * ixgbe_identify_phy_generic - Get physical layer module |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 52 | * @hw: pointer to hardware structure |
| 53 | * |
| 54 | * Determines the physical layer module found on the current adapter. |
| 55 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 56 | s32 ixgbe_identify_phy_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 57 | { |
| 58 | s32 status = IXGBE_ERR_PHY_ADDR_INVALID; |
| 59 | u32 phy_addr; |
| 60 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 61 | if (hw->phy.type == ixgbe_phy_unknown) { |
| 62 | for (phy_addr = 0; phy_addr < IXGBE_MAX_PHY_ADDR; phy_addr++) { |
Don Skidmore | 63d6e1d | 2009-07-02 12:50:12 +0000 | [diff] [blame] | 63 | hw->phy.mdio.prtad = phy_addr; |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 64 | if (mdio45_probe(&hw->phy.mdio, phy_addr) == 0) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 65 | ixgbe_get_phy_id(hw); |
| 66 | hw->phy.type = |
| 67 | ixgbe_get_phy_type_from_id(hw->phy.id); |
| 68 | status = 0; |
| 69 | break; |
| 70 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 71 | } |
Don Skidmore | 63d6e1d | 2009-07-02 12:50:12 +0000 | [diff] [blame] | 72 | /* clear value if nothing found */ |
| 73 | hw->phy.mdio.prtad = 0; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 74 | } else { |
| 75 | status = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 76 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 77 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 78 | return status; |
| 79 | } |
| 80 | |
| 81 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 82 | * ixgbe_get_phy_id - Get the phy type |
| 83 | * @hw: pointer to hardware structure |
| 84 | * |
| 85 | **/ |
| 86 | static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw) |
| 87 | { |
| 88 | u32 status; |
| 89 | u16 phy_id_high = 0; |
| 90 | u16 phy_id_low = 0; |
| 91 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 92 | status = hw->phy.ops.read_reg(hw, MDIO_DEVID1, MDIO_MMD_PMAPMD, |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 93 | &phy_id_high); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 94 | |
| 95 | if (status == 0) { |
| 96 | hw->phy.id = (u32)(phy_id_high << 16); |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 97 | status = hw->phy.ops.read_reg(hw, MDIO_DEVID2, MDIO_MMD_PMAPMD, |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 98 | &phy_id_low); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 99 | hw->phy.id |= (u32)(phy_id_low & IXGBE_PHY_REVISION_MASK); |
| 100 | hw->phy.revision = (u32)(phy_id_low & ~IXGBE_PHY_REVISION_MASK); |
| 101 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 102 | return status; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * ixgbe_get_phy_type_from_id - Get the phy type |
| 107 | * @hw: pointer to hardware structure |
| 108 | * |
| 109 | **/ |
| 110 | static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id) |
| 111 | { |
| 112 | enum ixgbe_phy_type phy_type; |
| 113 | |
| 114 | switch (phy_id) { |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 115 | case TN1010_PHY_ID: |
| 116 | phy_type = ixgbe_phy_tn; |
| 117 | break; |
Don Skidmore | 2b26490 | 2010-12-09 06:55:14 +0000 | [diff] [blame] | 118 | case X540_PHY_ID: |
Don Skidmore | fe15e8e1 | 2010-11-16 19:27:16 -0800 | [diff] [blame] | 119 | phy_type = ixgbe_phy_aq; |
| 120 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 121 | case QT2022_PHY_ID: |
| 122 | phy_type = ixgbe_phy_qt; |
| 123 | break; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 124 | case ATH_PHY_ID: |
| 125 | phy_type = ixgbe_phy_nl; |
| 126 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 127 | default: |
| 128 | phy_type = ixgbe_phy_unknown; |
| 129 | break; |
| 130 | } |
| 131 | |
| 132 | return phy_type; |
| 133 | } |
| 134 | |
| 135 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 136 | * ixgbe_reset_phy_generic - Performs a PHY reset |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 137 | * @hw: pointer to hardware structure |
| 138 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 139 | s32 ixgbe_reset_phy_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 140 | { |
Emil Tantilov | 1783575 | 2011-02-16 01:38:13 +0000 | [diff] [blame^] | 141 | u32 i; |
| 142 | u16 ctrl = 0; |
| 143 | s32 status = 0; |
| 144 | |
| 145 | if (hw->phy.type == ixgbe_phy_unknown) |
| 146 | status = ixgbe_identify_phy_generic(hw); |
| 147 | |
| 148 | if (status != 0 || hw->phy.type == ixgbe_phy_none) |
| 149 | goto out; |
| 150 | |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 151 | /* Don't reset PHY if it's shut down due to overtemp. */ |
| 152 | if (!hw->phy.reset_if_overtemp && |
| 153 | (IXGBE_ERR_OVERTEMP == hw->phy.ops.check_overtemp(hw))) |
Emil Tantilov | 1783575 | 2011-02-16 01:38:13 +0000 | [diff] [blame^] | 154 | goto out; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 155 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 156 | /* |
| 157 | * Perform soft PHY reset to the PHY_XS. |
| 158 | * This will cause a soft reset to the PHY |
| 159 | */ |
Emil Tantilov | 1783575 | 2011-02-16 01:38:13 +0000 | [diff] [blame^] | 160 | hw->phy.ops.write_reg(hw, MDIO_CTRL1, |
| 161 | MDIO_MMD_PHYXS, |
| 162 | MDIO_CTRL1_RESET); |
| 163 | |
| 164 | /* |
| 165 | * Poll for reset bit to self-clear indicating reset is complete. |
| 166 | * Some PHYs could take up to 3 seconds to complete and need about |
| 167 | * 1.7 usec delay after the reset is complete. |
| 168 | */ |
| 169 | for (i = 0; i < 30; i++) { |
| 170 | msleep(100); |
| 171 | hw->phy.ops.read_reg(hw, MDIO_CTRL1, |
| 172 | MDIO_MMD_PHYXS, &ctrl); |
| 173 | if (!(ctrl & MDIO_CTRL1_RESET)) { |
| 174 | udelay(2); |
| 175 | break; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | if (ctrl & MDIO_CTRL1_RESET) { |
| 180 | status = IXGBE_ERR_RESET_FAILED; |
| 181 | hw_dbg(hw, "PHY reset polling failed to complete.\n"); |
| 182 | } |
| 183 | |
| 184 | out: |
| 185 | return status; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 189 | * ixgbe_read_phy_reg_generic - Reads a value from a specified PHY register |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 190 | * @hw: pointer to hardware structure |
| 191 | * @reg_addr: 32 bit address of PHY register to read |
| 192 | * @phy_data: Pointer to read data from PHY register |
| 193 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 194 | s32 ixgbe_read_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr, |
| 195 | u32 device_type, u16 *phy_data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 196 | { |
| 197 | u32 command; |
| 198 | u32 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 199 | u32 data; |
| 200 | s32 status = 0; |
| 201 | u16 gssr; |
| 202 | |
| 203 | if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1) |
| 204 | gssr = IXGBE_GSSR_PHY1_SM; |
| 205 | else |
| 206 | gssr = IXGBE_GSSR_PHY0_SM; |
| 207 | |
| 208 | if (ixgbe_acquire_swfw_sync(hw, gssr) != 0) |
| 209 | status = IXGBE_ERR_SWFW_SYNC; |
| 210 | |
| 211 | if (status == 0) { |
| 212 | /* Setup and write the address cycle command */ |
| 213 | command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 214 | (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 215 | (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 216 | (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 217 | |
| 218 | IXGBE_WRITE_REG(hw, IXGBE_MSCA, command); |
| 219 | |
| 220 | /* |
| 221 | * Check every 10 usec to see if the address cycle completed. |
| 222 | * The MDI Command bit will clear when the operation is |
| 223 | * complete |
| 224 | */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 225 | for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 226 | udelay(10); |
| 227 | |
| 228 | command = IXGBE_READ_REG(hw, IXGBE_MSCA); |
| 229 | |
| 230 | if ((command & IXGBE_MSCA_MDI_COMMAND) == 0) |
| 231 | break; |
| 232 | } |
| 233 | |
| 234 | if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { |
| 235 | hw_dbg(hw, "PHY address command did not complete.\n"); |
| 236 | status = IXGBE_ERR_PHY; |
| 237 | } |
| 238 | |
| 239 | if (status == 0) { |
| 240 | /* |
| 241 | * Address cycle complete, setup and write the read |
| 242 | * command |
| 243 | */ |
| 244 | command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 245 | (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 246 | (hw->phy.mdio.prtad << |
| 247 | IXGBE_MSCA_PHY_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 248 | (IXGBE_MSCA_READ | IXGBE_MSCA_MDI_COMMAND)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 249 | |
| 250 | IXGBE_WRITE_REG(hw, IXGBE_MSCA, command); |
| 251 | |
| 252 | /* |
| 253 | * Check every 10 usec to see if the address cycle |
| 254 | * completed. The MDI Command bit will clear when the |
| 255 | * operation is complete |
| 256 | */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 257 | for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 258 | udelay(10); |
| 259 | |
| 260 | command = IXGBE_READ_REG(hw, IXGBE_MSCA); |
| 261 | |
| 262 | if ((command & IXGBE_MSCA_MDI_COMMAND) == 0) |
| 263 | break; |
| 264 | } |
| 265 | |
| 266 | if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 267 | hw_dbg(hw, "PHY read command didn't complete\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 268 | status = IXGBE_ERR_PHY; |
| 269 | } else { |
| 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 | } |
| 279 | |
| 280 | ixgbe_release_swfw_sync(hw, gssr); |
| 281 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 282 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 283 | return status; |
| 284 | } |
| 285 | |
| 286 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 287 | * ixgbe_write_phy_reg_generic - Writes a value to specified PHY register |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 288 | * @hw: pointer to hardware structure |
| 289 | * @reg_addr: 32 bit PHY register to write |
| 290 | * @device_type: 5 bit device type |
| 291 | * @phy_data: Data to write to the PHY register |
| 292 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 293 | s32 ixgbe_write_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr, |
| 294 | u32 device_type, u16 phy_data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 295 | { |
| 296 | u32 command; |
| 297 | u32 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 298 | s32 status = 0; |
| 299 | u16 gssr; |
| 300 | |
| 301 | if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1) |
| 302 | gssr = IXGBE_GSSR_PHY1_SM; |
| 303 | else |
| 304 | gssr = IXGBE_GSSR_PHY0_SM; |
| 305 | |
| 306 | if (ixgbe_acquire_swfw_sync(hw, gssr) != 0) |
| 307 | status = IXGBE_ERR_SWFW_SYNC; |
| 308 | |
| 309 | if (status == 0) { |
| 310 | /* Put the data in the MDI single read and write data register*/ |
| 311 | IXGBE_WRITE_REG(hw, IXGBE_MSRWD, (u32)phy_data); |
| 312 | |
| 313 | /* Setup and write the address cycle command */ |
| 314 | command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 315 | (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 316 | (hw->phy.mdio.prtad << IXGBE_MSCA_PHY_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 317 | (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 318 | |
| 319 | IXGBE_WRITE_REG(hw, IXGBE_MSCA, command); |
| 320 | |
| 321 | /* |
| 322 | * Check every 10 usec to see if the address cycle completed. |
| 323 | * The MDI Command bit will clear when the operation is |
| 324 | * complete |
| 325 | */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 326 | for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 327 | udelay(10); |
| 328 | |
| 329 | command = IXGBE_READ_REG(hw, IXGBE_MSCA); |
| 330 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 331 | if ((command & IXGBE_MSCA_MDI_COMMAND) == 0) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 332 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 335 | if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { |
| 336 | hw_dbg(hw, "PHY address cmd didn't complete\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 337 | status = IXGBE_ERR_PHY; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 338 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 339 | |
| 340 | if (status == 0) { |
| 341 | /* |
| 342 | * Address cycle complete, setup and write the write |
| 343 | * command |
| 344 | */ |
| 345 | command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 346 | (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 347 | (hw->phy.mdio.prtad << |
| 348 | IXGBE_MSCA_PHY_ADDR_SHIFT) | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 349 | (IXGBE_MSCA_WRITE | IXGBE_MSCA_MDI_COMMAND)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 350 | |
| 351 | IXGBE_WRITE_REG(hw, IXGBE_MSCA, command); |
| 352 | |
| 353 | /* |
| 354 | * Check every 10 usec to see if the address cycle |
| 355 | * completed. The MDI Command bit will clear when the |
| 356 | * operation is complete |
| 357 | */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 358 | for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 359 | udelay(10); |
| 360 | |
| 361 | command = IXGBE_READ_REG(hw, IXGBE_MSCA); |
| 362 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 363 | if ((command & IXGBE_MSCA_MDI_COMMAND) == 0) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 364 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 365 | } |
| 366 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 367 | if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { |
| 368 | hw_dbg(hw, "PHY address cmd didn't complete\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 369 | status = IXGBE_ERR_PHY; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 370 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | ixgbe_release_swfw_sync(hw, gssr); |
| 374 | } |
| 375 | |
| 376 | return status; |
| 377 | } |
| 378 | |
| 379 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 380 | * ixgbe_setup_phy_link_generic - Set and restart autoneg |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 381 | * @hw: pointer to hardware structure |
| 382 | * |
| 383 | * Restart autonegotiation and PHY and waits for completion. |
| 384 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 385 | s32 ixgbe_setup_phy_link_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 386 | { |
| 387 | s32 status = IXGBE_NOT_IMPLEMENTED; |
| 388 | u32 time_out; |
| 389 | u32 max_time_out = 10; |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 390 | u16 autoneg_reg; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 391 | |
| 392 | /* |
| 393 | * Set advertisement settings in PHY based on autoneg_advertised |
| 394 | * settings. If autoneg_advertised = 0, then advertise default values |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 395 | * tnx devices cannot be "forced" to a autoneg 10G and fail. But can |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 396 | * for a 1G. |
| 397 | */ |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 398 | hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE, MDIO_MMD_AN, &autoneg_reg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 399 | |
| 400 | if (hw->phy.autoneg_advertised == IXGBE_LINK_SPEED_1GB_FULL) |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 401 | autoneg_reg &= ~MDIO_AN_10GBT_CTRL_ADV10G; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 402 | else |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 403 | autoneg_reg |= MDIO_AN_10GBT_CTRL_ADV10G; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 404 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 405 | hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE, MDIO_MMD_AN, autoneg_reg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 406 | |
| 407 | /* Restart PHY autonegotiation and wait for completion */ |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 408 | hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_AN, &autoneg_reg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 409 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 410 | autoneg_reg |= MDIO_AN_CTRL1_RESTART; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 411 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 412 | hw->phy.ops.write_reg(hw, MDIO_CTRL1, MDIO_MMD_AN, autoneg_reg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 413 | |
| 414 | /* Wait for autonegotiation to finish */ |
| 415 | for (time_out = 0; time_out < max_time_out; time_out++) { |
| 416 | udelay(10); |
| 417 | /* Restart PHY autonegotiation and wait for completion */ |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 418 | status = hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN, |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 419 | &autoneg_reg); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 420 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 421 | autoneg_reg &= MDIO_AN_STAT1_COMPLETE; |
| 422 | if (autoneg_reg == MDIO_AN_STAT1_COMPLETE) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 423 | status = 0; |
| 424 | break; |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | if (time_out == max_time_out) |
| 429 | status = IXGBE_ERR_LINK_SETUP; |
| 430 | |
| 431 | return status; |
| 432 | } |
| 433 | |
| 434 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 435 | * ixgbe_setup_phy_link_speed_generic - Sets the auto advertised capabilities |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 436 | * @hw: pointer to hardware structure |
| 437 | * @speed: new link speed |
| 438 | * @autoneg: true if autonegotiation enabled |
| 439 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 440 | s32 ixgbe_setup_phy_link_speed_generic(struct ixgbe_hw *hw, |
| 441 | ixgbe_link_speed speed, |
| 442 | bool autoneg, |
| 443 | bool autoneg_wait_to_complete) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 444 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 445 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 446 | /* |
| 447 | * Clear autoneg_advertised and set new values based on input link |
| 448 | * speed. |
| 449 | */ |
| 450 | hw->phy.autoneg_advertised = 0; |
| 451 | |
| 452 | if (speed & IXGBE_LINK_SPEED_10GB_FULL) |
| 453 | hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 454 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 455 | if (speed & IXGBE_LINK_SPEED_1GB_FULL) |
| 456 | hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL; |
| 457 | |
| 458 | /* Setup link based on the new speed settings */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 459 | hw->phy.ops.setup_link(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 460 | |
| 461 | return 0; |
| 462 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 463 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 464 | /** |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 465 | * ixgbe_get_copper_link_capabilities_generic - Determines link capabilities |
| 466 | * @hw: pointer to hardware structure |
| 467 | * @speed: pointer to link speed |
| 468 | * @autoneg: boolean auto-negotiation value |
| 469 | * |
| 470 | * Determines the link capabilities by reading the AUTOC register. |
| 471 | */ |
| 472 | s32 ixgbe_get_copper_link_capabilities_generic(struct ixgbe_hw *hw, |
Don Skidmore | fe15e8e1 | 2010-11-16 19:27:16 -0800 | [diff] [blame] | 473 | ixgbe_link_speed *speed, |
| 474 | bool *autoneg) |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 475 | { |
| 476 | s32 status = IXGBE_ERR_LINK_SETUP; |
| 477 | u16 speed_ability; |
| 478 | |
| 479 | *speed = 0; |
| 480 | *autoneg = true; |
| 481 | |
| 482 | status = hw->phy.ops.read_reg(hw, MDIO_SPEED, MDIO_MMD_PMAPMD, |
| 483 | &speed_ability); |
| 484 | |
| 485 | if (status == 0) { |
| 486 | if (speed_ability & MDIO_SPEED_10G) |
| 487 | *speed |= IXGBE_LINK_SPEED_10GB_FULL; |
| 488 | if (speed_ability & MDIO_PMA_SPEED_1000) |
| 489 | *speed |= IXGBE_LINK_SPEED_1GB_FULL; |
| 490 | if (speed_ability & MDIO_PMA_SPEED_100) |
| 491 | *speed |= IXGBE_LINK_SPEED_100_FULL; |
| 492 | } |
| 493 | |
| 494 | return status; |
| 495 | } |
| 496 | |
| 497 | /** |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 498 | * ixgbe_reset_phy_nl - Performs a PHY reset |
| 499 | * @hw: pointer to hardware structure |
| 500 | **/ |
| 501 | s32 ixgbe_reset_phy_nl(struct ixgbe_hw *hw) |
| 502 | { |
| 503 | u16 phy_offset, control, eword, edata, block_crc; |
| 504 | bool end_data = false; |
| 505 | u16 list_offset, data_offset; |
| 506 | u16 phy_data = 0; |
| 507 | s32 ret_val = 0; |
| 508 | u32 i; |
| 509 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 510 | hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS, &phy_data); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 511 | |
| 512 | /* reset the PHY and poll for completion */ |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 513 | hw->phy.ops.write_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS, |
| 514 | (phy_data | MDIO_CTRL1_RESET)); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 515 | |
| 516 | for (i = 0; i < 100; i++) { |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 517 | hw->phy.ops.read_reg(hw, MDIO_CTRL1, MDIO_MMD_PHYXS, |
| 518 | &phy_data); |
| 519 | if ((phy_data & MDIO_CTRL1_RESET) == 0) |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 520 | break; |
| 521 | msleep(10); |
| 522 | } |
| 523 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 524 | if ((phy_data & MDIO_CTRL1_RESET) != 0) { |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 525 | hw_dbg(hw, "PHY reset did not complete.\n"); |
| 526 | ret_val = IXGBE_ERR_PHY; |
| 527 | goto out; |
| 528 | } |
| 529 | |
| 530 | /* Get init offsets */ |
| 531 | ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset, |
| 532 | &data_offset); |
| 533 | if (ret_val != 0) |
| 534 | goto out; |
| 535 | |
| 536 | ret_val = hw->eeprom.ops.read(hw, data_offset, &block_crc); |
| 537 | data_offset++; |
| 538 | while (!end_data) { |
| 539 | /* |
| 540 | * Read control word from PHY init contents offset |
| 541 | */ |
| 542 | ret_val = hw->eeprom.ops.read(hw, data_offset, &eword); |
| 543 | control = (eword & IXGBE_CONTROL_MASK_NL) >> |
| 544 | IXGBE_CONTROL_SHIFT_NL; |
| 545 | edata = eword & IXGBE_DATA_MASK_NL; |
| 546 | switch (control) { |
| 547 | case IXGBE_DELAY_NL: |
| 548 | data_offset++; |
| 549 | hw_dbg(hw, "DELAY: %d MS\n", edata); |
| 550 | msleep(edata); |
| 551 | break; |
| 552 | case IXGBE_DATA_NL: |
Frans Pop | d6dbee8 | 2010-03-24 07:57:35 +0000 | [diff] [blame] | 553 | hw_dbg(hw, "DATA:\n"); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 554 | data_offset++; |
| 555 | hw->eeprom.ops.read(hw, data_offset++, |
| 556 | &phy_offset); |
| 557 | for (i = 0; i < edata; i++) { |
| 558 | hw->eeprom.ops.read(hw, data_offset, &eword); |
| 559 | hw->phy.ops.write_reg(hw, phy_offset, |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 560 | MDIO_MMD_PMAPMD, eword); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 561 | hw_dbg(hw, "Wrote %4.4x to %4.4x\n", eword, |
| 562 | phy_offset); |
| 563 | data_offset++; |
| 564 | phy_offset++; |
| 565 | } |
| 566 | break; |
| 567 | case IXGBE_CONTROL_NL: |
| 568 | data_offset++; |
Frans Pop | d6dbee8 | 2010-03-24 07:57:35 +0000 | [diff] [blame] | 569 | hw_dbg(hw, "CONTROL:\n"); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 570 | if (edata == IXGBE_CONTROL_EOL_NL) { |
| 571 | hw_dbg(hw, "EOL\n"); |
| 572 | end_data = true; |
| 573 | } else if (edata == IXGBE_CONTROL_SOL_NL) { |
| 574 | hw_dbg(hw, "SOL\n"); |
| 575 | } else { |
| 576 | hw_dbg(hw, "Bad control value\n"); |
| 577 | ret_val = IXGBE_ERR_PHY; |
| 578 | goto out; |
| 579 | } |
| 580 | break; |
| 581 | default: |
| 582 | hw_dbg(hw, "Bad control type\n"); |
| 583 | ret_val = IXGBE_ERR_PHY; |
| 584 | goto out; |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | out: |
| 589 | return ret_val; |
| 590 | } |
| 591 | |
| 592 | /** |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 593 | * ixgbe_identify_sfp_module_generic - Identifies SFP modules |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 594 | * @hw: pointer to hardware structure |
| 595 | * |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 596 | * Searches for and identifies the SFP module and assigns appropriate PHY type. |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 597 | **/ |
| 598 | s32 ixgbe_identify_sfp_module_generic(struct ixgbe_hw *hw) |
| 599 | { |
| 600 | s32 status = IXGBE_ERR_PHY_ADDR_INVALID; |
| 601 | u32 vendor_oui = 0; |
PJ Waskiewicz | 553b449 | 2009-04-09 22:28:15 +0000 | [diff] [blame] | 602 | enum ixgbe_sfp_type stored_sfp_type = hw->phy.sfp_type; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 603 | u8 identifier = 0; |
| 604 | u8 comp_codes_1g = 0; |
| 605 | u8 comp_codes_10g = 0; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 606 | u8 oui_bytes[3] = {0, 0, 0}; |
Peter P Waskiewicz Jr | 537d58a | 2009-05-19 09:18:51 +0000 | [diff] [blame] | 607 | u8 cable_tech = 0; |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 608 | u8 cable_spec = 0; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 609 | u16 enforce_sfp = 0; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 610 | |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 611 | if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber) { |
| 612 | hw->phy.sfp_type = ixgbe_sfp_type_not_present; |
| 613 | status = IXGBE_ERR_SFP_NOT_PRESENT; |
| 614 | goto out; |
| 615 | } |
| 616 | |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 617 | status = hw->phy.ops.read_i2c_eeprom(hw, |
| 618 | IXGBE_SFF_IDENTIFIER, |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 619 | &identifier); |
| 620 | |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 621 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 622 | status == IXGBE_ERR_I2C || |
| 623 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 624 | goto err_read_i2c_eeprom; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 625 | |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 626 | /* LAN ID is needed for sfp_type determination */ |
| 627 | hw->mac.ops.set_lan_id(hw); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 628 | |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 629 | if (identifier != IXGBE_SFF_IDENTIFIER_SFP) { |
| 630 | hw->phy.type = ixgbe_phy_sfp_unsupported; |
| 631 | status = IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 632 | } else { |
| 633 | status = hw->phy.ops.read_i2c_eeprom(hw, |
| 634 | IXGBE_SFF_1GBE_COMP_CODES, |
| 635 | &comp_codes_1g); |
| 636 | |
| 637 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 638 | status == IXGBE_ERR_I2C || |
| 639 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 640 | goto err_read_i2c_eeprom; |
| 641 | |
| 642 | status = hw->phy.ops.read_i2c_eeprom(hw, |
| 643 | IXGBE_SFF_10GBE_COMP_CODES, |
| 644 | &comp_codes_10g); |
| 645 | |
| 646 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 647 | status == IXGBE_ERR_I2C || |
| 648 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 649 | goto err_read_i2c_eeprom; |
| 650 | status = hw->phy.ops.read_i2c_eeprom(hw, |
| 651 | IXGBE_SFF_CABLE_TECHNOLOGY, |
| 652 | &cable_tech); |
| 653 | |
| 654 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 655 | status == IXGBE_ERR_I2C || |
| 656 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 657 | goto err_read_i2c_eeprom; |
| 658 | |
| 659 | /* ID Module |
| 660 | * ========= |
| 661 | * 0 SFP_DA_CU |
| 662 | * 1 SFP_SR |
| 663 | * 2 SFP_LR |
| 664 | * 3 SFP_DA_CORE0 - 82599-specific |
| 665 | * 4 SFP_DA_CORE1 - 82599-specific |
| 666 | * 5 SFP_SR/LR_CORE0 - 82599-specific |
| 667 | * 6 SFP_SR/LR_CORE1 - 82599-specific |
| 668 | * 7 SFP_act_lmt_DA_CORE0 - 82599-specific |
| 669 | * 8 SFP_act_lmt_DA_CORE1 - 82599-specific |
| 670 | * 9 SFP_1g_cu_CORE0 - 82599-specific |
| 671 | * 10 SFP_1g_cu_CORE1 - 82599-specific |
| 672 | */ |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 673 | if (hw->mac.type == ixgbe_mac_82598EB) { |
Peter P Waskiewicz Jr | 537d58a | 2009-05-19 09:18:51 +0000 | [diff] [blame] | 674 | if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 675 | hw->phy.sfp_type = ixgbe_sfp_type_da_cu; |
| 676 | else if (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE) |
| 677 | hw->phy.sfp_type = ixgbe_sfp_type_sr; |
| 678 | else if (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE) |
| 679 | hw->phy.sfp_type = ixgbe_sfp_type_lr; |
| 680 | else |
| 681 | hw->phy.sfp_type = ixgbe_sfp_type_unknown; |
| 682 | } else if (hw->mac.type == ixgbe_mac_82599EB) { |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 683 | if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE) { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 684 | if (hw->bus.lan_id == 0) |
| 685 | hw->phy.sfp_type = |
| 686 | ixgbe_sfp_type_da_cu_core0; |
| 687 | else |
| 688 | hw->phy.sfp_type = |
| 689 | ixgbe_sfp_type_da_cu_core1; |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 690 | } else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE) { |
| 691 | hw->phy.ops.read_i2c_eeprom( |
| 692 | hw, IXGBE_SFF_CABLE_SPEC_COMP, |
| 693 | &cable_spec); |
| 694 | if (cable_spec & |
| 695 | IXGBE_SFF_DA_SPEC_ACTIVE_LIMITING) { |
| 696 | if (hw->bus.lan_id == 0) |
| 697 | hw->phy.sfp_type = |
| 698 | ixgbe_sfp_type_da_act_lmt_core0; |
| 699 | else |
| 700 | hw->phy.sfp_type = |
| 701 | ixgbe_sfp_type_da_act_lmt_core1; |
| 702 | } else { |
| 703 | hw->phy.sfp_type = |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 704 | ixgbe_sfp_type_unknown; |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 705 | } |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 706 | } else if (comp_codes_10g & |
| 707 | (IXGBE_SFF_10GBASESR_CAPABLE | |
| 708 | IXGBE_SFF_10GBASELR_CAPABLE)) { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 709 | if (hw->bus.lan_id == 0) |
| 710 | hw->phy.sfp_type = |
| 711 | ixgbe_sfp_type_srlr_core0; |
| 712 | else |
| 713 | hw->phy.sfp_type = |
| 714 | ixgbe_sfp_type_srlr_core1; |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 715 | } else if (comp_codes_1g & IXGBE_SFF_1GBASET_CAPABLE) { |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 716 | if (hw->bus.lan_id == 0) |
| 717 | hw->phy.sfp_type = |
| 718 | ixgbe_sfp_type_1g_cu_core0; |
| 719 | else |
| 720 | hw->phy.sfp_type = |
| 721 | ixgbe_sfp_type_1g_cu_core1; |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 722 | } else { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 723 | hw->phy.sfp_type = ixgbe_sfp_type_unknown; |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 724 | } |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 725 | } |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 726 | |
PJ Waskiewicz | 553b449 | 2009-04-09 22:28:15 +0000 | [diff] [blame] | 727 | if (hw->phy.sfp_type != stored_sfp_type) |
| 728 | hw->phy.sfp_setup_needed = true; |
| 729 | |
| 730 | /* Determine if the SFP+ PHY is dual speed or not. */ |
Peter P Waskiewicz Jr | 50ac58b | 2009-06-04 11:10:53 +0000 | [diff] [blame] | 731 | hw->phy.multispeed_fiber = false; |
PJ Waskiewicz | 553b449 | 2009-04-09 22:28:15 +0000 | [diff] [blame] | 732 | if (((comp_codes_1g & IXGBE_SFF_1GBASESX_CAPABLE) && |
| 733 | (comp_codes_10g & IXGBE_SFF_10GBASESR_CAPABLE)) || |
| 734 | ((comp_codes_1g & IXGBE_SFF_1GBASELX_CAPABLE) && |
| 735 | (comp_codes_10g & IXGBE_SFF_10GBASELR_CAPABLE))) |
| 736 | hw->phy.multispeed_fiber = true; |
| 737 | |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 738 | /* Determine PHY vendor */ |
Peter P Waskiewicz Jr | 0419305 | 2009-04-09 22:28:50 +0000 | [diff] [blame] | 739 | if (hw->phy.type != ixgbe_phy_nl) { |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 740 | hw->phy.id = identifier; |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 741 | status = hw->phy.ops.read_i2c_eeprom(hw, |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 742 | IXGBE_SFF_VENDOR_OUI_BYTE0, |
| 743 | &oui_bytes[0]); |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 744 | |
| 745 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 746 | status == IXGBE_ERR_I2C || |
| 747 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 748 | goto err_read_i2c_eeprom; |
| 749 | |
| 750 | status = hw->phy.ops.read_i2c_eeprom(hw, |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 751 | IXGBE_SFF_VENDOR_OUI_BYTE1, |
| 752 | &oui_bytes[1]); |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 753 | |
| 754 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 755 | status == IXGBE_ERR_I2C || |
| 756 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 757 | goto err_read_i2c_eeprom; |
| 758 | |
| 759 | status = hw->phy.ops.read_i2c_eeprom(hw, |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 760 | IXGBE_SFF_VENDOR_OUI_BYTE2, |
| 761 | &oui_bytes[2]); |
| 762 | |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 763 | if (status == IXGBE_ERR_SWFW_SYNC || |
| 764 | status == IXGBE_ERR_I2C || |
| 765 | status == IXGBE_ERR_SFP_NOT_PRESENT) |
| 766 | goto err_read_i2c_eeprom; |
| 767 | |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 768 | vendor_oui = |
| 769 | ((oui_bytes[0] << IXGBE_SFF_VENDOR_OUI_BYTE0_SHIFT) | |
| 770 | (oui_bytes[1] << IXGBE_SFF_VENDOR_OUI_BYTE1_SHIFT) | |
| 771 | (oui_bytes[2] << IXGBE_SFF_VENDOR_OUI_BYTE2_SHIFT)); |
| 772 | |
| 773 | switch (vendor_oui) { |
| 774 | case IXGBE_SFF_VENDOR_OUI_TYCO: |
Peter P Waskiewicz Jr | 537d58a | 2009-05-19 09:18:51 +0000 | [diff] [blame] | 775 | if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE) |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 776 | hw->phy.type = |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 777 | ixgbe_phy_sfp_passive_tyco; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 778 | break; |
| 779 | case IXGBE_SFF_VENDOR_OUI_FTL: |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 780 | if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE) |
| 781 | hw->phy.type = ixgbe_phy_sfp_ftl_active; |
| 782 | else |
| 783 | hw->phy.type = ixgbe_phy_sfp_ftl; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 784 | break; |
| 785 | case IXGBE_SFF_VENDOR_OUI_AVAGO: |
| 786 | hw->phy.type = ixgbe_phy_sfp_avago; |
| 787 | break; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 788 | case IXGBE_SFF_VENDOR_OUI_INTEL: |
| 789 | hw->phy.type = ixgbe_phy_sfp_intel; |
| 790 | break; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 791 | default: |
Peter P Waskiewicz Jr | 537d58a | 2009-05-19 09:18:51 +0000 | [diff] [blame] | 792 | if (cable_tech & IXGBE_SFF_DA_PASSIVE_CABLE) |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 793 | hw->phy.type = |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 794 | ixgbe_phy_sfp_passive_unknown; |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 795 | else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE) |
| 796 | hw->phy.type = |
| 797 | ixgbe_phy_sfp_active_unknown; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 798 | else |
| 799 | hw->phy.type = ixgbe_phy_sfp_unknown; |
| 800 | break; |
| 801 | } |
| 802 | } |
Waskiewicz Jr, Peter P | fa466e9 | 2009-04-23 11:31:37 +0000 | [diff] [blame] | 803 | |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 804 | /* Allow any DA cable vendor */ |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 805 | if (cable_tech & (IXGBE_SFF_DA_PASSIVE_CABLE | |
| 806 | IXGBE_SFF_DA_ACTIVE_CABLE)) { |
Waskiewicz Jr, Peter P | fa466e9 | 2009-04-23 11:31:37 +0000 | [diff] [blame] | 807 | status = 0; |
| 808 | goto out; |
| 809 | } |
| 810 | |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 811 | /* Verify supported 1G SFP modules */ |
| 812 | if (comp_codes_10g == 0 && |
| 813 | !(hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core1 || |
| 814 | hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core0)) { |
Waskiewicz Jr, Peter P | fa466e9 | 2009-04-23 11:31:37 +0000 | [diff] [blame] | 815 | hw->phy.type = ixgbe_phy_sfp_unsupported; |
| 816 | status = IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 817 | goto out; |
| 818 | } |
| 819 | |
| 820 | /* Anything else 82598-based is supported */ |
| 821 | if (hw->mac.type == ixgbe_mac_82598EB) { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 822 | status = 0; |
| 823 | goto out; |
| 824 | } |
| 825 | |
Peter P Waskiewicz Jr | 0419305 | 2009-04-09 22:28:50 +0000 | [diff] [blame] | 826 | /* This is guaranteed to be 82599, no need to check for NULL */ |
| 827 | hw->mac.ops.get_device_caps(hw, &enforce_sfp); |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 828 | if (!(enforce_sfp & IXGBE_DEVICE_CAPS_ALLOW_ANY_SFP) && |
| 829 | !((hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core0) || |
| 830 | (hw->phy.sfp_type == ixgbe_sfp_type_1g_cu_core1))) { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 831 | /* Make sure we're a supported PHY type */ |
| 832 | if (hw->phy.type == ixgbe_phy_sfp_intel) { |
| 833 | status = 0; |
| 834 | } else { |
| 835 | hw_dbg(hw, "SFP+ module not supported\n"); |
Waskiewicz Jr, Peter P | fa466e9 | 2009-04-23 11:31:37 +0000 | [diff] [blame] | 836 | hw->phy.type = ixgbe_phy_sfp_unsupported; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 837 | status = IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 838 | } |
| 839 | } else { |
| 840 | status = 0; |
| 841 | } |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | out: |
| 845 | return status; |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 846 | |
| 847 | err_read_i2c_eeprom: |
| 848 | hw->phy.sfp_type = ixgbe_sfp_type_not_present; |
| 849 | if (hw->phy.type != ixgbe_phy_nl) { |
| 850 | hw->phy.id = 0; |
| 851 | hw->phy.type = ixgbe_phy_unknown; |
| 852 | } |
| 853 | return IXGBE_ERR_SFP_NOT_PRESENT; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | /** |
Emil Tantilov | 76d97dd | 2011-02-16 10:14:00 +0000 | [diff] [blame] | 857 | * ixgbe_get_sfp_init_sequence_offsets - Provides offset of PHY init sequence |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 858 | * @hw: pointer to hardware structure |
| 859 | * @list_offset: offset to the SFP ID list |
| 860 | * @data_offset: offset to the SFP data block |
| 861 | **/ |
| 862 | s32 ixgbe_get_sfp_init_sequence_offsets(struct ixgbe_hw *hw, |
| 863 | u16 *list_offset, |
| 864 | u16 *data_offset) |
| 865 | { |
| 866 | u16 sfp_id; |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 867 | u16 sfp_type = hw->phy.sfp_type; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 868 | |
| 869 | if (hw->phy.sfp_type == ixgbe_sfp_type_unknown) |
| 870 | return IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 871 | |
| 872 | if (hw->phy.sfp_type == ixgbe_sfp_type_not_present) |
| 873 | return IXGBE_ERR_SFP_NOT_PRESENT; |
| 874 | |
| 875 | if ((hw->device_id == IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) && |
| 876 | (hw->phy.sfp_type == ixgbe_sfp_type_da_cu)) |
| 877 | return IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 878 | |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 879 | /* |
| 880 | * Limiting active cables and 1G Phys must be initialized as |
| 881 | * SR modules |
| 882 | */ |
| 883 | if (sfp_type == ixgbe_sfp_type_da_act_lmt_core0 || |
| 884 | sfp_type == ixgbe_sfp_type_1g_cu_core0) |
| 885 | sfp_type = ixgbe_sfp_type_srlr_core0; |
| 886 | else if (sfp_type == ixgbe_sfp_type_da_act_lmt_core1 || |
| 887 | sfp_type == ixgbe_sfp_type_1g_cu_core1) |
| 888 | sfp_type = ixgbe_sfp_type_srlr_core1; |
| 889 | |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 890 | /* Read offset to PHY init contents */ |
| 891 | hw->eeprom.ops.read(hw, IXGBE_PHY_INIT_OFFSET_NL, list_offset); |
| 892 | |
| 893 | if ((!*list_offset) || (*list_offset == 0xFFFF)) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 894 | return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 895 | |
| 896 | /* Shift offset to first ID word */ |
| 897 | (*list_offset)++; |
| 898 | |
| 899 | /* |
| 900 | * Find the matching SFP ID in the EEPROM |
| 901 | * and program the init sequence |
| 902 | */ |
| 903 | hw->eeprom.ops.read(hw, *list_offset, &sfp_id); |
| 904 | |
| 905 | while (sfp_id != IXGBE_PHY_INIT_END_NL) { |
Don Skidmore | cb836a9 | 2010-06-29 18:30:59 +0000 | [diff] [blame] | 906 | if (sfp_id == sfp_type) { |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 907 | (*list_offset)++; |
| 908 | hw->eeprom.ops.read(hw, *list_offset, data_offset); |
| 909 | if ((!*data_offset) || (*data_offset == 0xFFFF)) { |
| 910 | hw_dbg(hw, "SFP+ module not supported\n"); |
| 911 | return IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 912 | } else { |
| 913 | break; |
| 914 | } |
| 915 | } else { |
| 916 | (*list_offset) += 2; |
| 917 | if (hw->eeprom.ops.read(hw, *list_offset, &sfp_id)) |
| 918 | return IXGBE_ERR_PHY; |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | if (sfp_id == IXGBE_PHY_INIT_END_NL) { |
| 923 | hw_dbg(hw, "No matching SFP+ module found\n"); |
| 924 | return IXGBE_ERR_SFP_NOT_SUPPORTED; |
| 925 | } |
| 926 | |
| 927 | return 0; |
| 928 | } |
| 929 | |
| 930 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 931 | * ixgbe_read_i2c_eeprom_generic - Reads 8 bit EEPROM word over I2C interface |
| 932 | * @hw: pointer to hardware structure |
| 933 | * @byte_offset: EEPROM byte offset to read |
| 934 | * @eeprom_data: value read |
| 935 | * |
| 936 | * Performs byte read operation to SFP module's EEPROM over I2C interface. |
| 937 | **/ |
| 938 | s32 ixgbe_read_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset, |
| 939 | u8 *eeprom_data) |
| 940 | { |
| 941 | return hw->phy.ops.read_i2c_byte(hw, byte_offset, |
| 942 | IXGBE_I2C_EEPROM_DEV_ADDR, |
| 943 | eeprom_data); |
| 944 | } |
| 945 | |
| 946 | /** |
| 947 | * ixgbe_write_i2c_eeprom_generic - Writes 8 bit EEPROM word over I2C interface |
| 948 | * @hw: pointer to hardware structure |
| 949 | * @byte_offset: EEPROM byte offset to write |
| 950 | * @eeprom_data: value to write |
| 951 | * |
| 952 | * Performs byte write operation to SFP module's EEPROM over I2C interface. |
| 953 | **/ |
| 954 | s32 ixgbe_write_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset, |
| 955 | u8 eeprom_data) |
| 956 | { |
| 957 | return hw->phy.ops.write_i2c_byte(hw, byte_offset, |
| 958 | IXGBE_I2C_EEPROM_DEV_ADDR, |
| 959 | eeprom_data); |
| 960 | } |
| 961 | |
| 962 | /** |
| 963 | * ixgbe_read_i2c_byte_generic - Reads 8 bit word over I2C |
| 964 | * @hw: pointer to hardware structure |
| 965 | * @byte_offset: byte offset to read |
| 966 | * @data: value read |
| 967 | * |
| 968 | * Performs byte read operation to SFP module's EEPROM over I2C interface at |
| 969 | * a specified deivce address. |
| 970 | **/ |
| 971 | s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset, |
| 972 | u8 dev_addr, u8 *data) |
| 973 | { |
| 974 | s32 status = 0; |
| 975 | u32 max_retry = 1; |
| 976 | u32 retry = 0; |
| 977 | bool nack = 1; |
| 978 | |
| 979 | do { |
| 980 | ixgbe_i2c_start(hw); |
| 981 | |
| 982 | /* Device Address and write indication */ |
| 983 | status = ixgbe_clock_out_i2c_byte(hw, dev_addr); |
| 984 | if (status != 0) |
| 985 | goto fail; |
| 986 | |
| 987 | status = ixgbe_get_i2c_ack(hw); |
| 988 | if (status != 0) |
| 989 | goto fail; |
| 990 | |
| 991 | status = ixgbe_clock_out_i2c_byte(hw, byte_offset); |
| 992 | if (status != 0) |
| 993 | goto fail; |
| 994 | |
| 995 | status = ixgbe_get_i2c_ack(hw); |
| 996 | if (status != 0) |
| 997 | goto fail; |
| 998 | |
| 999 | ixgbe_i2c_start(hw); |
| 1000 | |
| 1001 | /* Device Address and read indication */ |
| 1002 | status = ixgbe_clock_out_i2c_byte(hw, (dev_addr | 0x1)); |
| 1003 | if (status != 0) |
| 1004 | goto fail; |
| 1005 | |
| 1006 | status = ixgbe_get_i2c_ack(hw); |
| 1007 | if (status != 0) |
| 1008 | goto fail; |
| 1009 | |
| 1010 | status = ixgbe_clock_in_i2c_byte(hw, data); |
| 1011 | if (status != 0) |
| 1012 | goto fail; |
| 1013 | |
| 1014 | status = ixgbe_clock_out_i2c_bit(hw, nack); |
| 1015 | if (status != 0) |
| 1016 | goto fail; |
| 1017 | |
| 1018 | ixgbe_i2c_stop(hw); |
| 1019 | break; |
| 1020 | |
| 1021 | fail: |
| 1022 | ixgbe_i2c_bus_clear(hw); |
| 1023 | retry++; |
| 1024 | if (retry < max_retry) |
| 1025 | hw_dbg(hw, "I2C byte read error - Retrying.\n"); |
| 1026 | else |
| 1027 | hw_dbg(hw, "I2C byte read error.\n"); |
| 1028 | |
| 1029 | } while (retry < max_retry); |
| 1030 | |
| 1031 | return status; |
| 1032 | } |
| 1033 | |
| 1034 | /** |
| 1035 | * ixgbe_write_i2c_byte_generic - Writes 8 bit word over I2C |
| 1036 | * @hw: pointer to hardware structure |
| 1037 | * @byte_offset: byte offset to write |
| 1038 | * @data: value to write |
| 1039 | * |
| 1040 | * Performs byte write operation to SFP module's EEPROM over I2C interface at |
| 1041 | * a specified device address. |
| 1042 | **/ |
| 1043 | s32 ixgbe_write_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset, |
| 1044 | u8 dev_addr, u8 data) |
| 1045 | { |
| 1046 | s32 status = 0; |
| 1047 | u32 max_retry = 1; |
| 1048 | u32 retry = 0; |
| 1049 | |
| 1050 | do { |
| 1051 | ixgbe_i2c_start(hw); |
| 1052 | |
| 1053 | status = ixgbe_clock_out_i2c_byte(hw, dev_addr); |
| 1054 | if (status != 0) |
| 1055 | goto fail; |
| 1056 | |
| 1057 | status = ixgbe_get_i2c_ack(hw); |
| 1058 | if (status != 0) |
| 1059 | goto fail; |
| 1060 | |
| 1061 | status = ixgbe_clock_out_i2c_byte(hw, byte_offset); |
| 1062 | if (status != 0) |
| 1063 | goto fail; |
| 1064 | |
| 1065 | status = ixgbe_get_i2c_ack(hw); |
| 1066 | if (status != 0) |
| 1067 | goto fail; |
| 1068 | |
| 1069 | status = ixgbe_clock_out_i2c_byte(hw, data); |
| 1070 | if (status != 0) |
| 1071 | goto fail; |
| 1072 | |
| 1073 | status = ixgbe_get_i2c_ack(hw); |
| 1074 | if (status != 0) |
| 1075 | goto fail; |
| 1076 | |
| 1077 | ixgbe_i2c_stop(hw); |
| 1078 | break; |
| 1079 | |
| 1080 | fail: |
| 1081 | ixgbe_i2c_bus_clear(hw); |
| 1082 | retry++; |
| 1083 | if (retry < max_retry) |
| 1084 | hw_dbg(hw, "I2C byte write error - Retrying.\n"); |
| 1085 | else |
| 1086 | hw_dbg(hw, "I2C byte write error.\n"); |
| 1087 | } while (retry < max_retry); |
| 1088 | |
| 1089 | return status; |
| 1090 | } |
| 1091 | |
| 1092 | /** |
| 1093 | * ixgbe_i2c_start - Sets I2C start condition |
| 1094 | * @hw: pointer to hardware structure |
| 1095 | * |
| 1096 | * Sets I2C start condition (High -> Low on SDA while SCL is High) |
| 1097 | **/ |
| 1098 | static void ixgbe_i2c_start(struct ixgbe_hw *hw) |
| 1099 | { |
| 1100 | u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1101 | |
| 1102 | /* Start condition must begin with data and clock high */ |
| 1103 | ixgbe_set_i2c_data(hw, &i2cctl, 1); |
| 1104 | ixgbe_raise_i2c_clk(hw, &i2cctl); |
| 1105 | |
| 1106 | /* Setup time for start condition (4.7us) */ |
| 1107 | udelay(IXGBE_I2C_T_SU_STA); |
| 1108 | |
| 1109 | ixgbe_set_i2c_data(hw, &i2cctl, 0); |
| 1110 | |
| 1111 | /* Hold time for start condition (4us) */ |
| 1112 | udelay(IXGBE_I2C_T_HD_STA); |
| 1113 | |
| 1114 | ixgbe_lower_i2c_clk(hw, &i2cctl); |
| 1115 | |
| 1116 | /* Minimum low period of clock is 4.7 us */ |
| 1117 | udelay(IXGBE_I2C_T_LOW); |
| 1118 | |
| 1119 | } |
| 1120 | |
| 1121 | /** |
| 1122 | * ixgbe_i2c_stop - Sets I2C stop condition |
| 1123 | * @hw: pointer to hardware structure |
| 1124 | * |
| 1125 | * Sets I2C stop condition (Low -> High on SDA while SCL is High) |
| 1126 | **/ |
| 1127 | static void ixgbe_i2c_stop(struct ixgbe_hw *hw) |
| 1128 | { |
| 1129 | u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1130 | |
| 1131 | /* Stop condition must begin with data low and clock high */ |
| 1132 | ixgbe_set_i2c_data(hw, &i2cctl, 0); |
| 1133 | ixgbe_raise_i2c_clk(hw, &i2cctl); |
| 1134 | |
| 1135 | /* Setup time for stop condition (4us) */ |
| 1136 | udelay(IXGBE_I2C_T_SU_STO); |
| 1137 | |
| 1138 | ixgbe_set_i2c_data(hw, &i2cctl, 1); |
| 1139 | |
| 1140 | /* bus free time between stop and start (4.7us)*/ |
| 1141 | udelay(IXGBE_I2C_T_BUF); |
| 1142 | } |
| 1143 | |
| 1144 | /** |
| 1145 | * ixgbe_clock_in_i2c_byte - Clocks in one byte via I2C |
| 1146 | * @hw: pointer to hardware structure |
| 1147 | * @data: data byte to clock in |
| 1148 | * |
| 1149 | * Clocks in one byte data via I2C data/clock |
| 1150 | **/ |
| 1151 | static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data) |
| 1152 | { |
| 1153 | s32 status = 0; |
| 1154 | s32 i; |
| 1155 | bool bit = 0; |
| 1156 | |
| 1157 | for (i = 7; i >= 0; i--) { |
| 1158 | status = ixgbe_clock_in_i2c_bit(hw, &bit); |
| 1159 | *data |= bit << i; |
| 1160 | |
| 1161 | if (status != 0) |
| 1162 | break; |
| 1163 | } |
| 1164 | |
| 1165 | return status; |
| 1166 | } |
| 1167 | |
| 1168 | /** |
| 1169 | * ixgbe_clock_out_i2c_byte - Clocks out one byte via I2C |
| 1170 | * @hw: pointer to hardware structure |
| 1171 | * @data: data byte clocked out |
| 1172 | * |
| 1173 | * Clocks out one byte data via I2C data/clock |
| 1174 | **/ |
| 1175 | static s32 ixgbe_clock_out_i2c_byte(struct ixgbe_hw *hw, u8 data) |
| 1176 | { |
| 1177 | s32 status = 0; |
| 1178 | s32 i; |
| 1179 | u32 i2cctl; |
| 1180 | bool bit = 0; |
| 1181 | |
| 1182 | for (i = 7; i >= 0; i--) { |
| 1183 | bit = (data >> i) & 0x1; |
| 1184 | status = ixgbe_clock_out_i2c_bit(hw, bit); |
| 1185 | |
| 1186 | if (status != 0) |
| 1187 | break; |
| 1188 | } |
| 1189 | |
| 1190 | /* Release SDA line (set high) */ |
| 1191 | i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1192 | i2cctl |= IXGBE_I2C_DATA_OUT; |
| 1193 | IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, i2cctl); |
| 1194 | |
| 1195 | return status; |
| 1196 | } |
| 1197 | |
| 1198 | /** |
| 1199 | * ixgbe_get_i2c_ack - Polls for I2C ACK |
| 1200 | * @hw: pointer to hardware structure |
| 1201 | * |
| 1202 | * Clocks in/out one bit via I2C data/clock |
| 1203 | **/ |
| 1204 | static s32 ixgbe_get_i2c_ack(struct ixgbe_hw *hw) |
| 1205 | { |
| 1206 | s32 status; |
| 1207 | u32 i = 0; |
| 1208 | u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1209 | u32 timeout = 10; |
| 1210 | bool ack = 1; |
| 1211 | |
| 1212 | status = ixgbe_raise_i2c_clk(hw, &i2cctl); |
| 1213 | |
| 1214 | if (status != 0) |
| 1215 | goto out; |
| 1216 | |
| 1217 | /* Minimum high period of clock is 4us */ |
| 1218 | udelay(IXGBE_I2C_T_HIGH); |
| 1219 | |
| 1220 | /* Poll for ACK. Note that ACK in I2C spec is |
| 1221 | * transition from 1 to 0 */ |
| 1222 | for (i = 0; i < timeout; i++) { |
| 1223 | i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1224 | ack = ixgbe_get_i2c_data(&i2cctl); |
| 1225 | |
| 1226 | udelay(1); |
| 1227 | if (ack == 0) |
| 1228 | break; |
| 1229 | } |
| 1230 | |
| 1231 | if (ack == 1) { |
| 1232 | hw_dbg(hw, "I2C ack was not received.\n"); |
| 1233 | status = IXGBE_ERR_I2C; |
| 1234 | } |
| 1235 | |
| 1236 | ixgbe_lower_i2c_clk(hw, &i2cctl); |
| 1237 | |
| 1238 | /* Minimum low period of clock is 4.7 us */ |
| 1239 | udelay(IXGBE_I2C_T_LOW); |
| 1240 | |
| 1241 | out: |
| 1242 | return status; |
| 1243 | } |
| 1244 | |
| 1245 | /** |
| 1246 | * ixgbe_clock_in_i2c_bit - Clocks in one bit via I2C data/clock |
| 1247 | * @hw: pointer to hardware structure |
| 1248 | * @data: read data value |
| 1249 | * |
| 1250 | * Clocks in one bit via I2C data/clock |
| 1251 | **/ |
| 1252 | static s32 ixgbe_clock_in_i2c_bit(struct ixgbe_hw *hw, bool *data) |
| 1253 | { |
| 1254 | s32 status; |
| 1255 | u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1256 | |
| 1257 | status = ixgbe_raise_i2c_clk(hw, &i2cctl); |
| 1258 | |
| 1259 | /* Minimum high period of clock is 4us */ |
| 1260 | udelay(IXGBE_I2C_T_HIGH); |
| 1261 | |
| 1262 | i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1263 | *data = ixgbe_get_i2c_data(&i2cctl); |
| 1264 | |
| 1265 | ixgbe_lower_i2c_clk(hw, &i2cctl); |
| 1266 | |
| 1267 | /* Minimum low period of clock is 4.7 us */ |
| 1268 | udelay(IXGBE_I2C_T_LOW); |
| 1269 | |
| 1270 | return status; |
| 1271 | } |
| 1272 | |
| 1273 | /** |
| 1274 | * ixgbe_clock_out_i2c_bit - Clocks in/out one bit via I2C data/clock |
| 1275 | * @hw: pointer to hardware structure |
| 1276 | * @data: data value to write |
| 1277 | * |
| 1278 | * Clocks out one bit via I2C data/clock |
| 1279 | **/ |
| 1280 | static s32 ixgbe_clock_out_i2c_bit(struct ixgbe_hw *hw, bool data) |
| 1281 | { |
| 1282 | s32 status; |
| 1283 | u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1284 | |
| 1285 | status = ixgbe_set_i2c_data(hw, &i2cctl, data); |
| 1286 | if (status == 0) { |
| 1287 | status = ixgbe_raise_i2c_clk(hw, &i2cctl); |
| 1288 | |
| 1289 | /* Minimum high period of clock is 4us */ |
| 1290 | udelay(IXGBE_I2C_T_HIGH); |
| 1291 | |
| 1292 | ixgbe_lower_i2c_clk(hw, &i2cctl); |
| 1293 | |
| 1294 | /* Minimum low period of clock is 4.7 us. |
| 1295 | * This also takes care of the data hold time. |
| 1296 | */ |
| 1297 | udelay(IXGBE_I2C_T_LOW); |
| 1298 | } else { |
| 1299 | status = IXGBE_ERR_I2C; |
| 1300 | hw_dbg(hw, "I2C data was not set to %X\n", data); |
| 1301 | } |
| 1302 | |
| 1303 | return status; |
| 1304 | } |
| 1305 | /** |
| 1306 | * ixgbe_raise_i2c_clk - Raises the I2C SCL clock |
| 1307 | * @hw: pointer to hardware structure |
| 1308 | * @i2cctl: Current value of I2CCTL register |
| 1309 | * |
| 1310 | * Raises the I2C clock line '0'->'1' |
| 1311 | **/ |
| 1312 | static s32 ixgbe_raise_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl) |
| 1313 | { |
| 1314 | s32 status = 0; |
| 1315 | |
| 1316 | *i2cctl |= IXGBE_I2C_CLK_OUT; |
| 1317 | |
| 1318 | IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, *i2cctl); |
| 1319 | |
| 1320 | /* SCL rise time (1000ns) */ |
| 1321 | udelay(IXGBE_I2C_T_RISE); |
| 1322 | |
| 1323 | return status; |
| 1324 | } |
| 1325 | |
| 1326 | /** |
| 1327 | * ixgbe_lower_i2c_clk - Lowers the I2C SCL clock |
| 1328 | * @hw: pointer to hardware structure |
| 1329 | * @i2cctl: Current value of I2CCTL register |
| 1330 | * |
| 1331 | * Lowers the I2C clock line '1'->'0' |
| 1332 | **/ |
| 1333 | static void ixgbe_lower_i2c_clk(struct ixgbe_hw *hw, u32 *i2cctl) |
| 1334 | { |
| 1335 | |
| 1336 | *i2cctl &= ~IXGBE_I2C_CLK_OUT; |
| 1337 | |
| 1338 | IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, *i2cctl); |
| 1339 | |
| 1340 | /* SCL fall time (300ns) */ |
| 1341 | udelay(IXGBE_I2C_T_FALL); |
| 1342 | } |
| 1343 | |
| 1344 | /** |
| 1345 | * ixgbe_set_i2c_data - Sets the I2C data bit |
| 1346 | * @hw: pointer to hardware structure |
| 1347 | * @i2cctl: Current value of I2CCTL register |
| 1348 | * @data: I2C data value (0 or 1) to set |
| 1349 | * |
| 1350 | * Sets the I2C data bit |
| 1351 | **/ |
| 1352 | static s32 ixgbe_set_i2c_data(struct ixgbe_hw *hw, u32 *i2cctl, bool data) |
| 1353 | { |
| 1354 | s32 status = 0; |
| 1355 | |
| 1356 | if (data) |
| 1357 | *i2cctl |= IXGBE_I2C_DATA_OUT; |
| 1358 | else |
| 1359 | *i2cctl &= ~IXGBE_I2C_DATA_OUT; |
| 1360 | |
| 1361 | IXGBE_WRITE_REG(hw, IXGBE_I2CCTL, *i2cctl); |
| 1362 | |
| 1363 | /* Data rise/fall (1000ns/300ns) and set-up time (250ns) */ |
| 1364 | udelay(IXGBE_I2C_T_RISE + IXGBE_I2C_T_FALL + IXGBE_I2C_T_SU_DATA); |
| 1365 | |
| 1366 | /* Verify data was set correctly */ |
| 1367 | *i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1368 | if (data != ixgbe_get_i2c_data(i2cctl)) { |
| 1369 | status = IXGBE_ERR_I2C; |
| 1370 | hw_dbg(hw, "Error - I2C data was not set to %X.\n", data); |
| 1371 | } |
| 1372 | |
| 1373 | return status; |
| 1374 | } |
| 1375 | |
| 1376 | /** |
| 1377 | * ixgbe_get_i2c_data - Reads the I2C SDA data bit |
| 1378 | * @hw: pointer to hardware structure |
| 1379 | * @i2cctl: Current value of I2CCTL register |
| 1380 | * |
| 1381 | * Returns the I2C data bit value |
| 1382 | **/ |
| 1383 | static bool ixgbe_get_i2c_data(u32 *i2cctl) |
| 1384 | { |
| 1385 | bool data; |
| 1386 | |
| 1387 | if (*i2cctl & IXGBE_I2C_DATA_IN) |
| 1388 | data = 1; |
| 1389 | else |
| 1390 | data = 0; |
| 1391 | |
| 1392 | return data; |
| 1393 | } |
| 1394 | |
| 1395 | /** |
| 1396 | * ixgbe_i2c_bus_clear - Clears the I2C bus |
| 1397 | * @hw: pointer to hardware structure |
| 1398 | * |
| 1399 | * Clears the I2C bus by sending nine clock pulses. |
| 1400 | * Used when data line is stuck low. |
| 1401 | **/ |
| 1402 | static void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw) |
| 1403 | { |
| 1404 | u32 i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL); |
| 1405 | u32 i; |
| 1406 | |
| 1407 | ixgbe_set_i2c_data(hw, &i2cctl, 1); |
| 1408 | |
| 1409 | for (i = 0; i < 9; i++) { |
| 1410 | ixgbe_raise_i2c_clk(hw, &i2cctl); |
| 1411 | |
| 1412 | /* Min high period of clock is 4us */ |
| 1413 | udelay(IXGBE_I2C_T_HIGH); |
| 1414 | |
| 1415 | ixgbe_lower_i2c_clk(hw, &i2cctl); |
| 1416 | |
| 1417 | /* Min low period of clock is 4.7us*/ |
| 1418 | udelay(IXGBE_I2C_T_LOW); |
| 1419 | } |
| 1420 | |
| 1421 | /* Put the i2c bus back to default state */ |
| 1422 | ixgbe_i2c_stop(hw); |
| 1423 | } |
| 1424 | |
| 1425 | /** |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 1426 | * ixgbe_check_phy_link_tnx - Determine link and speed status |
| 1427 | * @hw: pointer to hardware structure |
| 1428 | * |
| 1429 | * Reads the VS1 register to determine if link is up and the current speed for |
| 1430 | * the PHY. |
| 1431 | **/ |
| 1432 | s32 ixgbe_check_phy_link_tnx(struct ixgbe_hw *hw, ixgbe_link_speed *speed, |
| 1433 | bool *link_up) |
| 1434 | { |
| 1435 | s32 status = 0; |
| 1436 | u32 time_out; |
| 1437 | u32 max_time_out = 10; |
| 1438 | u16 phy_link = 0; |
| 1439 | u16 phy_speed = 0; |
| 1440 | u16 phy_data = 0; |
| 1441 | |
| 1442 | /* Initialize speed and link to default case */ |
| 1443 | *link_up = false; |
| 1444 | *speed = IXGBE_LINK_SPEED_10GB_FULL; |
| 1445 | |
| 1446 | /* |
| 1447 | * Check current speed and link status of the PHY register. |
| 1448 | * This is a vendor specific register and may have to |
| 1449 | * be changed for other copper PHYs. |
| 1450 | */ |
| 1451 | for (time_out = 0; time_out < max_time_out; time_out++) { |
| 1452 | udelay(10); |
| 1453 | status = hw->phy.ops.read_reg(hw, |
| 1454 | IXGBE_MDIO_VENDOR_SPECIFIC_1_STATUS, |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 1455 | MDIO_MMD_VEND1, |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 1456 | &phy_data); |
| 1457 | phy_link = phy_data & |
| 1458 | IXGBE_MDIO_VENDOR_SPECIFIC_1_LINK_STATUS; |
| 1459 | phy_speed = phy_data & |
| 1460 | IXGBE_MDIO_VENDOR_SPECIFIC_1_SPEED_STATUS; |
| 1461 | if (phy_link == IXGBE_MDIO_VENDOR_SPECIFIC_1_LINK_STATUS) { |
| 1462 | *link_up = true; |
| 1463 | if (phy_speed == |
| 1464 | IXGBE_MDIO_VENDOR_SPECIFIC_1_SPEED_STATUS) |
| 1465 | *speed = IXGBE_LINK_SPEED_1GB_FULL; |
| 1466 | break; |
| 1467 | } |
| 1468 | } |
| 1469 | |
| 1470 | return status; |
| 1471 | } |
| 1472 | |
| 1473 | /** |
| 1474 | * ixgbe_get_phy_firmware_version_tnx - Gets the PHY Firmware Version |
| 1475 | * @hw: pointer to hardware structure |
| 1476 | * @firmware_version: pointer to the PHY Firmware Version |
| 1477 | **/ |
| 1478 | s32 ixgbe_get_phy_firmware_version_tnx(struct ixgbe_hw *hw, |
| 1479 | u16 *firmware_version) |
| 1480 | { |
| 1481 | s32 status = 0; |
| 1482 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 1483 | status = hw->phy.ops.read_reg(hw, TNX_FW_REV, MDIO_MMD_VEND1, |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 1484 | firmware_version); |
| 1485 | |
| 1486 | return status; |
| 1487 | } |
| 1488 | |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 1489 | /** |
Don Skidmore | fe15e8e1 | 2010-11-16 19:27:16 -0800 | [diff] [blame] | 1490 | * ixgbe_get_phy_firmware_version_generic - Gets the PHY Firmware Version |
| 1491 | * @hw: pointer to hardware structure |
| 1492 | * @firmware_version: pointer to the PHY Firmware Version |
| 1493 | **/ |
| 1494 | s32 ixgbe_get_phy_firmware_version_generic(struct ixgbe_hw *hw, |
| 1495 | u16 *firmware_version) |
| 1496 | { |
| 1497 | s32 status = 0; |
| 1498 | |
| 1499 | status = hw->phy.ops.read_reg(hw, AQ_FW_REV, MDIO_MMD_VEND1, |
| 1500 | firmware_version); |
| 1501 | |
| 1502 | return status; |
| 1503 | } |
| 1504 | |
| 1505 | /** |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 1506 | * ixgbe_tn_check_overtemp - Checks if an overtemp occured. |
| 1507 | * @hw: pointer to hardware structure |
| 1508 | * |
| 1509 | * Checks if the LASI temp alarm status was triggered due to overtemp |
| 1510 | **/ |
| 1511 | s32 ixgbe_tn_check_overtemp(struct ixgbe_hw *hw) |
| 1512 | { |
| 1513 | s32 status = 0; |
| 1514 | u16 phy_data = 0; |
| 1515 | |
| 1516 | if (hw->device_id != IXGBE_DEV_ID_82599_T3_LOM) |
| 1517 | goto out; |
| 1518 | |
| 1519 | /* Check that the LASI temp alarm status was triggered */ |
| 1520 | hw->phy.ops.read_reg(hw, IXGBE_TN_LASI_STATUS_REG, |
| 1521 | MDIO_MMD_PMAPMD, &phy_data); |
| 1522 | |
| 1523 | if (!(phy_data & IXGBE_TN_LASI_STATUS_TEMP_ALARM)) |
| 1524 | goto out; |
| 1525 | |
| 1526 | status = IXGBE_ERR_OVERTEMP; |
| 1527 | out: |
| 1528 | return status; |
| 1529 | } |