Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel PRO/1000 Linux driver |
Bruce Allan | c7e54b1 | 2009-11-20 23:25:45 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2009 Intel Corporation. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -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: |
| 23 | Linux NICS <linux.nics@intel.com> |
| 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 26 | |
| 27 | *******************************************************************************/ |
| 28 | |
| 29 | #include <linux/delay.h> |
| 30 | |
| 31 | #include "e1000.h" |
| 32 | |
| 33 | static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw); |
| 34 | static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw); |
| 35 | static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active); |
| 36 | static s32 e1000_wait_autoneg(struct e1000_hw *hw); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 37 | static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg); |
| 38 | static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset, |
| 39 | u16 *data, bool read); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 40 | static u32 e1000_get_phy_addr_for_hv_page(u32 page); |
| 41 | static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset, |
| 42 | u16 *data, bool read); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 43 | |
| 44 | /* Cable length tables */ |
| 45 | static const u16 e1000_m88_cable_length_table[] = |
| 46 | { 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED }; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 47 | #define M88E1000_CABLE_LENGTH_TABLE_SIZE \ |
| 48 | ARRAY_SIZE(e1000_m88_cable_length_table) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 49 | |
| 50 | static const u16 e1000_igp_2_cable_length_table[] = |
| 51 | { 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, 0, 0, 0, 3, |
| 52 | 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, 6, 10, 14, 18, 22, |
| 53 | 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, 21, 26, 31, 35, 40, |
| 54 | 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, 40, 45, 51, 56, 61, |
| 55 | 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, 60, 66, 72, 77, 82, |
| 56 | 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, 83, 89, 95, |
| 57 | 100, 105, 109, 113, 116, 119, 122, 124, 104, 109, 114, 118, 121, |
| 58 | 124}; |
| 59 | #define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \ |
Alejandro Martinez Ruiz | c00acf4 | 2007-10-18 10:16:33 +0200 | [diff] [blame] | 60 | ARRAY_SIZE(e1000_igp_2_cable_length_table) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 61 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 62 | #define BM_PHY_REG_PAGE(offset) \ |
| 63 | ((u16)(((offset) >> PHY_PAGE_SHIFT) & 0xFFFF)) |
| 64 | #define BM_PHY_REG_NUM(offset) \ |
| 65 | ((u16)(((offset) & MAX_PHY_REG_ADDRESS) |\ |
| 66 | (((offset) >> (PHY_UPPER_SHIFT - PHY_PAGE_SHIFT)) &\ |
| 67 | ~MAX_PHY_REG_ADDRESS))) |
| 68 | |
| 69 | #define HV_INTC_FC_PAGE_START 768 |
| 70 | #define I82578_ADDR_REG 29 |
| 71 | #define I82577_ADDR_REG 16 |
| 72 | #define I82577_CFG_REG 22 |
| 73 | #define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15) |
| 74 | #define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */ |
| 75 | #define I82577_CTRL_REG 23 |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 76 | |
| 77 | /* 82577 specific PHY registers */ |
| 78 | #define I82577_PHY_CTRL_2 18 |
| 79 | #define I82577_PHY_STATUS_2 26 |
| 80 | #define I82577_PHY_DIAG_STATUS 31 |
| 81 | |
| 82 | /* I82577 PHY Status 2 */ |
| 83 | #define I82577_PHY_STATUS2_REV_POLARITY 0x0400 |
| 84 | #define I82577_PHY_STATUS2_MDIX 0x0800 |
| 85 | #define I82577_PHY_STATUS2_SPEED_MASK 0x0300 |
| 86 | #define I82577_PHY_STATUS2_SPEED_1000MBPS 0x0200 |
| 87 | |
| 88 | /* I82577 PHY Control 2 */ |
| 89 | #define I82577_PHY_CTRL2_AUTO_MDIX 0x0400 |
| 90 | #define I82577_PHY_CTRL2_FORCE_MDI_MDIX 0x0200 |
| 91 | |
| 92 | /* I82577 PHY Diagnostics Status */ |
| 93 | #define I82577_DSTATUS_CABLE_LENGTH 0x03FC |
| 94 | #define I82577_DSTATUS_CABLE_LENGTH_SHIFT 2 |
| 95 | |
| 96 | /* BM PHY Copper Specific Control 1 */ |
| 97 | #define BM_CS_CTRL1 16 |
| 98 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 99 | #define HV_MUX_DATA_CTRL PHY_REG(776, 16) |
| 100 | #define HV_MUX_DATA_CTRL_GEN_TO_MAC 0x0400 |
| 101 | #define HV_MUX_DATA_CTRL_FORCE_SPEED 0x0004 |
| 102 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 103 | /** |
| 104 | * e1000e_check_reset_block_generic - Check if PHY reset is blocked |
| 105 | * @hw: pointer to the HW structure |
| 106 | * |
| 107 | * Read the PHY management control register and check whether a PHY reset |
| 108 | * is blocked. If a reset is not blocked return 0, otherwise |
| 109 | * return E1000_BLK_PHY_RESET (12). |
| 110 | **/ |
| 111 | s32 e1000e_check_reset_block_generic(struct e1000_hw *hw) |
| 112 | { |
| 113 | u32 manc; |
| 114 | |
| 115 | manc = er32(MANC); |
| 116 | |
| 117 | return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ? |
| 118 | E1000_BLK_PHY_RESET : 0; |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * e1000e_get_phy_id - Retrieve the PHY ID and revision |
| 123 | * @hw: pointer to the HW structure |
| 124 | * |
| 125 | * Reads the PHY registers and stores the PHY ID and possibly the PHY |
| 126 | * revision in the hardware structure. |
| 127 | **/ |
| 128 | s32 e1000e_get_phy_id(struct e1000_hw *hw) |
| 129 | { |
| 130 | struct e1000_phy_info *phy = &hw->phy; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 131 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 132 | u16 phy_id; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 133 | u16 retry_count = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 134 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 135 | if (!(phy->ops.read_reg)) |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 136 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 137 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 138 | while (retry_count < 2) { |
| 139 | ret_val = e1e_rphy(hw, PHY_ID1, &phy_id); |
| 140 | if (ret_val) |
| 141 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 142 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 143 | phy->id = (u32)(phy_id << 16); |
| 144 | udelay(20); |
| 145 | ret_val = e1e_rphy(hw, PHY_ID2, &phy_id); |
| 146 | if (ret_val) |
| 147 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 148 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 149 | phy->id |= (u32)(phy_id & PHY_REVISION_MASK); |
| 150 | phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK); |
| 151 | |
| 152 | if (phy->id != 0 && phy->id != PHY_REVISION_MASK) |
| 153 | goto out; |
| 154 | |
| 155 | /* |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 156 | * If the PHY ID is still unknown, we may have an 82577 |
| 157 | * without link. We will try again after setting Slow MDIC |
| 158 | * mode. No harm in trying again in this case since the PHY |
| 159 | * ID is unknown at this point anyway. |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 160 | */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 161 | ret_val = phy->ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 162 | if (ret_val) |
| 163 | goto out; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 164 | ret_val = e1000_set_mdio_slow_mode_hv(hw, true); |
| 165 | if (ret_val) |
| 166 | goto out; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 167 | phy->ops.release(hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 168 | |
| 169 | retry_count++; |
| 170 | } |
| 171 | out: |
| 172 | /* Revert to MDIO fast mode, if applicable */ |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 173 | if (retry_count) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 174 | ret_val = phy->ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 175 | if (ret_val) |
| 176 | return ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 177 | ret_val = e1000_set_mdio_slow_mode_hv(hw, false); |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 178 | phy->ops.release(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 179 | } |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 180 | |
| 181 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | /** |
| 185 | * e1000e_phy_reset_dsp - Reset PHY DSP |
| 186 | * @hw: pointer to the HW structure |
| 187 | * |
| 188 | * Reset the digital signal processor. |
| 189 | **/ |
| 190 | s32 e1000e_phy_reset_dsp(struct e1000_hw *hw) |
| 191 | { |
| 192 | s32 ret_val; |
| 193 | |
| 194 | ret_val = e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0xC1); |
| 195 | if (ret_val) |
| 196 | return ret_val; |
| 197 | |
| 198 | return e1e_wphy(hw, M88E1000_PHY_GEN_CONTROL, 0); |
| 199 | } |
| 200 | |
| 201 | /** |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 202 | * e1000e_read_phy_reg_mdic - Read MDI control register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 203 | * @hw: pointer to the HW structure |
| 204 | * @offset: register offset to be read |
| 205 | * @data: pointer to the read data |
| 206 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 207 | * Reads the MDI control register in the PHY at offset and stores the |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 208 | * information read to data. |
| 209 | **/ |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 210 | s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 211 | { |
| 212 | struct e1000_phy_info *phy = &hw->phy; |
| 213 | u32 i, mdic = 0; |
| 214 | |
| 215 | if (offset > MAX_PHY_REG_ADDRESS) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 216 | e_dbg("PHY Address %d is out of range\n", offset); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 217 | return -E1000_ERR_PARAM; |
| 218 | } |
| 219 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 220 | /* |
| 221 | * Set up Op-code, Phy Address, and register offset in the MDI |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 222 | * Control register. The MAC will take care of interfacing with the |
| 223 | * PHY to retrieve the desired data. |
| 224 | */ |
| 225 | mdic = ((offset << E1000_MDIC_REG_SHIFT) | |
| 226 | (phy->addr << E1000_MDIC_PHY_SHIFT) | |
| 227 | (E1000_MDIC_OP_READ)); |
| 228 | |
| 229 | ew32(MDIC, mdic); |
| 230 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 231 | /* |
| 232 | * Poll the ready bit to see if the MDI read completed |
| 233 | * Increasing the time out as testing showed failures with |
| 234 | * the lower time out |
| 235 | */ |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 236 | for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 237 | udelay(50); |
| 238 | mdic = er32(MDIC); |
| 239 | if (mdic & E1000_MDIC_READY) |
| 240 | break; |
| 241 | } |
| 242 | if (!(mdic & E1000_MDIC_READY)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 243 | e_dbg("MDI Read did not complete\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 244 | return -E1000_ERR_PHY; |
| 245 | } |
| 246 | if (mdic & E1000_MDIC_ERROR) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 247 | e_dbg("MDI Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 248 | return -E1000_ERR_PHY; |
| 249 | } |
| 250 | *data = (u16) mdic; |
| 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | /** |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 256 | * e1000e_write_phy_reg_mdic - Write MDI control register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 257 | * @hw: pointer to the HW structure |
| 258 | * @offset: register offset to write to |
| 259 | * @data: data to write to register at offset |
| 260 | * |
| 261 | * Writes data to MDI control register in the PHY at offset. |
| 262 | **/ |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 263 | s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 264 | { |
| 265 | struct e1000_phy_info *phy = &hw->phy; |
| 266 | u32 i, mdic = 0; |
| 267 | |
| 268 | if (offset > MAX_PHY_REG_ADDRESS) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 269 | e_dbg("PHY Address %d is out of range\n", offset); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 270 | return -E1000_ERR_PARAM; |
| 271 | } |
| 272 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 273 | /* |
| 274 | * Set up Op-code, Phy Address, and register offset in the MDI |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 275 | * Control register. The MAC will take care of interfacing with the |
| 276 | * PHY to retrieve the desired data. |
| 277 | */ |
| 278 | mdic = (((u32)data) | |
| 279 | (offset << E1000_MDIC_REG_SHIFT) | |
| 280 | (phy->addr << E1000_MDIC_PHY_SHIFT) | |
| 281 | (E1000_MDIC_OP_WRITE)); |
| 282 | |
| 283 | ew32(MDIC, mdic); |
| 284 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 285 | /* |
| 286 | * Poll the ready bit to see if the MDI read completed |
| 287 | * Increasing the time out as testing showed failures with |
| 288 | * the lower time out |
| 289 | */ |
| 290 | for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) { |
| 291 | udelay(50); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 292 | mdic = er32(MDIC); |
| 293 | if (mdic & E1000_MDIC_READY) |
| 294 | break; |
| 295 | } |
| 296 | if (!(mdic & E1000_MDIC_READY)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 297 | e_dbg("MDI Write did not complete\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 298 | return -E1000_ERR_PHY; |
| 299 | } |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 300 | if (mdic & E1000_MDIC_ERROR) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 301 | e_dbg("MDI Error\n"); |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 302 | return -E1000_ERR_PHY; |
| 303 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 304 | |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * e1000e_read_phy_reg_m88 - Read m88 PHY register |
| 310 | * @hw: pointer to the HW structure |
| 311 | * @offset: register offset to be read |
| 312 | * @data: pointer to the read data |
| 313 | * |
| 314 | * Acquires semaphore, if necessary, then reads the PHY register at offset |
| 315 | * and storing the retrieved information in data. Release any acquired |
| 316 | * semaphores before exiting. |
| 317 | **/ |
| 318 | s32 e1000e_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data) |
| 319 | { |
| 320 | s32 ret_val; |
| 321 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 322 | ret_val = hw->phy.ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 323 | if (ret_val) |
| 324 | return ret_val; |
| 325 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 326 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 327 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 328 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 329 | hw->phy.ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 330 | |
| 331 | return ret_val; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * e1000e_write_phy_reg_m88 - Write m88 PHY register |
| 336 | * @hw: pointer to the HW structure |
| 337 | * @offset: register offset to write to |
| 338 | * @data: data to write at register offset |
| 339 | * |
| 340 | * Acquires semaphore, if necessary, then writes the data to PHY register |
| 341 | * at the offset. Release any acquired semaphores before exiting. |
| 342 | **/ |
| 343 | s32 e1000e_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data) |
| 344 | { |
| 345 | s32 ret_val; |
| 346 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 347 | ret_val = hw->phy.ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 348 | if (ret_val) |
| 349 | return ret_val; |
| 350 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 351 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 352 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 353 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 354 | hw->phy.ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 355 | |
| 356 | return ret_val; |
| 357 | } |
| 358 | |
| 359 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 360 | * __e1000e_read_phy_reg_igp - Read igp PHY register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 361 | * @hw: pointer to the HW structure |
| 362 | * @offset: register offset to be read |
| 363 | * @data: pointer to the read data |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 364 | * @locked: semaphore has already been acquired or not |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 365 | * |
| 366 | * Acquires semaphore, if necessary, then reads the PHY register at offset |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 367 | * and stores the retrieved information in data. Release any acquired |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 368 | * semaphores before exiting. |
| 369 | **/ |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 370 | static s32 __e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data, |
| 371 | bool locked) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 372 | { |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 373 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 374 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 375 | if (!locked) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 376 | if (!(hw->phy.ops.acquire)) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 377 | goto out; |
| 378 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 379 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 380 | if (ret_val) |
| 381 | goto out; |
| 382 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 383 | |
| 384 | if (offset > MAX_PHY_MULTI_PAGE_REG) { |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 385 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 386 | IGP01E1000_PHY_PAGE_SELECT, |
| 387 | (u16)offset); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 388 | if (ret_val) |
| 389 | goto release; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 390 | } |
| 391 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 392 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 393 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 394 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 395 | release: |
| 396 | if (!locked) |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 397 | hw->phy.ops.release(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 398 | out: |
| 399 | return ret_val; |
| 400 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 401 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 402 | /** |
| 403 | * e1000e_read_phy_reg_igp - Read igp PHY register |
| 404 | * @hw: pointer to the HW structure |
| 405 | * @offset: register offset to be read |
| 406 | * @data: pointer to the read data |
| 407 | * |
| 408 | * Acquires semaphore then reads the PHY register at offset and stores the |
| 409 | * retrieved information in data. |
| 410 | * Release the acquired semaphore before exiting. |
| 411 | **/ |
| 412 | s32 e1000e_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data) |
| 413 | { |
| 414 | return __e1000e_read_phy_reg_igp(hw, offset, data, false); |
| 415 | } |
| 416 | |
| 417 | /** |
| 418 | * e1000e_read_phy_reg_igp_locked - Read igp PHY register |
| 419 | * @hw: pointer to the HW structure |
| 420 | * @offset: register offset to be read |
| 421 | * @data: pointer to the read data |
| 422 | * |
| 423 | * Reads the PHY register at offset and stores the retrieved information |
| 424 | * in data. Assumes semaphore already acquired. |
| 425 | **/ |
| 426 | s32 e1000e_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data) |
| 427 | { |
| 428 | return __e1000e_read_phy_reg_igp(hw, offset, data, true); |
| 429 | } |
| 430 | |
| 431 | /** |
| 432 | * e1000e_write_phy_reg_igp - Write igp PHY register |
| 433 | * @hw: pointer to the HW structure |
| 434 | * @offset: register offset to write to |
| 435 | * @data: data to write at register offset |
| 436 | * @locked: semaphore has already been acquired or not |
| 437 | * |
| 438 | * Acquires semaphore, if necessary, then writes the data to PHY register |
| 439 | * at the offset. Release any acquired semaphores before exiting. |
| 440 | **/ |
| 441 | static s32 __e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data, |
| 442 | bool locked) |
| 443 | { |
| 444 | s32 ret_val = 0; |
| 445 | |
| 446 | if (!locked) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 447 | if (!(hw->phy.ops.acquire)) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 448 | goto out; |
| 449 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 450 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 451 | if (ret_val) |
| 452 | goto out; |
| 453 | } |
| 454 | |
| 455 | if (offset > MAX_PHY_MULTI_PAGE_REG) { |
| 456 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 457 | IGP01E1000_PHY_PAGE_SELECT, |
| 458 | (u16)offset); |
| 459 | if (ret_val) |
| 460 | goto release; |
| 461 | } |
| 462 | |
| 463 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 464 | data); |
| 465 | |
| 466 | release: |
| 467 | if (!locked) |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 468 | hw->phy.ops.release(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 469 | |
| 470 | out: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 471 | return ret_val; |
| 472 | } |
| 473 | |
| 474 | /** |
| 475 | * e1000e_write_phy_reg_igp - Write igp PHY register |
| 476 | * @hw: pointer to the HW structure |
| 477 | * @offset: register offset to write to |
| 478 | * @data: data to write at register offset |
| 479 | * |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 480 | * Acquires semaphore then writes the data to PHY register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 481 | * at the offset. Release any acquired semaphores before exiting. |
| 482 | **/ |
| 483 | s32 e1000e_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data) |
| 484 | { |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 485 | return __e1000e_write_phy_reg_igp(hw, offset, data, false); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 489 | * e1000e_write_phy_reg_igp_locked - Write igp PHY register |
| 490 | * @hw: pointer to the HW structure |
| 491 | * @offset: register offset to write to |
| 492 | * @data: data to write at register offset |
| 493 | * |
| 494 | * Writes the data to PHY register at the offset. |
| 495 | * Assumes semaphore already acquired. |
| 496 | **/ |
| 497 | s32 e1000e_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data) |
| 498 | { |
| 499 | return __e1000e_write_phy_reg_igp(hw, offset, data, true); |
| 500 | } |
| 501 | |
| 502 | /** |
| 503 | * __e1000_read_kmrn_reg - Read kumeran register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 504 | * @hw: pointer to the HW structure |
| 505 | * @offset: register offset to be read |
| 506 | * @data: pointer to the read data |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 507 | * @locked: semaphore has already been acquired or not |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 508 | * |
| 509 | * Acquires semaphore, if necessary. Then reads the PHY register at offset |
| 510 | * using the kumeran interface. The information retrieved is stored in data. |
| 511 | * Release any acquired semaphores before exiting. |
| 512 | **/ |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 513 | static s32 __e1000_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data, |
| 514 | bool locked) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 515 | { |
| 516 | u32 kmrnctrlsta; |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 517 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 518 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 519 | if (!locked) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 520 | if (!(hw->phy.ops.acquire)) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 521 | goto out; |
| 522 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 523 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 524 | if (ret_val) |
| 525 | goto out; |
| 526 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 527 | |
| 528 | kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) & |
| 529 | E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN; |
| 530 | ew32(KMRNCTRLSTA, kmrnctrlsta); |
| 531 | |
| 532 | udelay(2); |
| 533 | |
| 534 | kmrnctrlsta = er32(KMRNCTRLSTA); |
| 535 | *data = (u16)kmrnctrlsta; |
| 536 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 537 | if (!locked) |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 538 | hw->phy.ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 539 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 540 | out: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 541 | return ret_val; |
| 542 | } |
| 543 | |
| 544 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 545 | * e1000e_read_kmrn_reg - Read kumeran register |
| 546 | * @hw: pointer to the HW structure |
| 547 | * @offset: register offset to be read |
| 548 | * @data: pointer to the read data |
| 549 | * |
| 550 | * Acquires semaphore then reads the PHY register at offset using the |
| 551 | * kumeran interface. The information retrieved is stored in data. |
| 552 | * Release the acquired semaphore before exiting. |
| 553 | **/ |
| 554 | s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data) |
| 555 | { |
| 556 | return __e1000_read_kmrn_reg(hw, offset, data, false); |
| 557 | } |
| 558 | |
| 559 | /** |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 560 | * e1000e_read_kmrn_reg_locked - Read kumeran register |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 561 | * @hw: pointer to the HW structure |
| 562 | * @offset: register offset to be read |
| 563 | * @data: pointer to the read data |
| 564 | * |
| 565 | * Reads the PHY register at offset using the kumeran interface. The |
| 566 | * information retrieved is stored in data. |
| 567 | * Assumes semaphore already acquired. |
| 568 | **/ |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 569 | s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 570 | { |
| 571 | return __e1000_read_kmrn_reg(hw, offset, data, true); |
| 572 | } |
| 573 | |
| 574 | /** |
| 575 | * __e1000_write_kmrn_reg - Write kumeran register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 576 | * @hw: pointer to the HW structure |
| 577 | * @offset: register offset to write to |
| 578 | * @data: data to write at register offset |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 579 | * @locked: semaphore has already been acquired or not |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 580 | * |
| 581 | * Acquires semaphore, if necessary. Then write the data to PHY register |
| 582 | * at the offset using the kumeran interface. Release any acquired semaphores |
| 583 | * before exiting. |
| 584 | **/ |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 585 | static s32 __e1000_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data, |
| 586 | bool locked) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 587 | { |
| 588 | u32 kmrnctrlsta; |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 589 | s32 ret_val = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 590 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 591 | if (!locked) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 592 | if (!(hw->phy.ops.acquire)) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 593 | goto out; |
| 594 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 595 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 596 | if (ret_val) |
| 597 | goto out; |
| 598 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 599 | |
| 600 | kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) & |
| 601 | E1000_KMRNCTRLSTA_OFFSET) | data; |
| 602 | ew32(KMRNCTRLSTA, kmrnctrlsta); |
| 603 | |
| 604 | udelay(2); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 605 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 606 | if (!locked) |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 607 | hw->phy.ops.release(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 608 | |
| 609 | out: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 610 | return ret_val; |
| 611 | } |
| 612 | |
| 613 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 614 | * e1000e_write_kmrn_reg - Write kumeran register |
| 615 | * @hw: pointer to the HW structure |
| 616 | * @offset: register offset to write to |
| 617 | * @data: data to write at register offset |
| 618 | * |
| 619 | * Acquires semaphore then writes the data to the PHY register at the offset |
| 620 | * using the kumeran interface. Release the acquired semaphore before exiting. |
| 621 | **/ |
| 622 | s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data) |
| 623 | { |
| 624 | return __e1000_write_kmrn_reg(hw, offset, data, false); |
| 625 | } |
| 626 | |
| 627 | /** |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 628 | * e1000e_write_kmrn_reg_locked - Write kumeran register |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 629 | * @hw: pointer to the HW structure |
| 630 | * @offset: register offset to write to |
| 631 | * @data: data to write at register offset |
| 632 | * |
| 633 | * Write the data to PHY register at the offset using the kumeran interface. |
| 634 | * Assumes semaphore already acquired. |
| 635 | **/ |
Bruce Allan | 1d5846b | 2009-10-29 13:46:05 +0000 | [diff] [blame] | 636 | s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 637 | { |
| 638 | return __e1000_write_kmrn_reg(hw, offset, data, true); |
| 639 | } |
| 640 | |
| 641 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 642 | * e1000_copper_link_setup_82577 - Setup 82577 PHY for copper link |
| 643 | * @hw: pointer to the HW structure |
| 644 | * |
| 645 | * Sets up Carrier-sense on Transmit and downshift values. |
| 646 | **/ |
| 647 | s32 e1000_copper_link_setup_82577(struct e1000_hw *hw) |
| 648 | { |
| 649 | struct e1000_phy_info *phy = &hw->phy; |
| 650 | s32 ret_val; |
| 651 | u16 phy_data; |
| 652 | |
| 653 | /* Enable CRS on TX. This must be set for half-duplex operation. */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 654 | ret_val = phy->ops.read_reg(hw, I82577_CFG_REG, &phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 655 | if (ret_val) |
| 656 | goto out; |
| 657 | |
| 658 | phy_data |= I82577_CFG_ASSERT_CRS_ON_TX; |
| 659 | |
| 660 | /* Enable downshift */ |
| 661 | phy_data |= I82577_CFG_ENABLE_DOWNSHIFT; |
| 662 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 663 | ret_val = phy->ops.write_reg(hw, I82577_CFG_REG, phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 664 | |
| 665 | out: |
| 666 | return ret_val; |
| 667 | } |
| 668 | |
| 669 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 670 | * e1000e_copper_link_setup_m88 - Setup m88 PHY's for copper link |
| 671 | * @hw: pointer to the HW structure |
| 672 | * |
| 673 | * Sets up MDI/MDI-X and polarity for m88 PHY's. If necessary, transmit clock |
| 674 | * and downshift values are set also. |
| 675 | **/ |
| 676 | s32 e1000e_copper_link_setup_m88(struct e1000_hw *hw) |
| 677 | { |
| 678 | struct e1000_phy_info *phy = &hw->phy; |
| 679 | s32 ret_val; |
| 680 | u16 phy_data; |
| 681 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 682 | /* Enable CRS on Tx. This must be set for half-duplex operation. */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 683 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); |
| 684 | if (ret_val) |
| 685 | return ret_val; |
| 686 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 687 | /* For BM PHY this bit is downshift enable */ |
| 688 | if (phy->type != e1000_phy_bm) |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 689 | phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 690 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 691 | /* |
| 692 | * Options: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 693 | * MDI/MDI-X = 0 (default) |
| 694 | * 0 - Auto for all speeds |
| 695 | * 1 - MDI mode |
| 696 | * 2 - MDI-X mode |
| 697 | * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes) |
| 698 | */ |
| 699 | phy_data &= ~M88E1000_PSCR_AUTO_X_MODE; |
| 700 | |
| 701 | switch (phy->mdix) { |
| 702 | case 1: |
| 703 | phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE; |
| 704 | break; |
| 705 | case 2: |
| 706 | phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE; |
| 707 | break; |
| 708 | case 3: |
| 709 | phy_data |= M88E1000_PSCR_AUTO_X_1000T; |
| 710 | break; |
| 711 | case 0: |
| 712 | default: |
| 713 | phy_data |= M88E1000_PSCR_AUTO_X_MODE; |
| 714 | break; |
| 715 | } |
| 716 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 717 | /* |
| 718 | * Options: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 719 | * disable_polarity_correction = 0 (default) |
| 720 | * Automatic Correction for Reversed Cable Polarity |
| 721 | * 0 - Disabled |
| 722 | * 1 - Enabled |
| 723 | */ |
| 724 | phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL; |
| 725 | if (phy->disable_polarity_correction == 1) |
| 726 | phy_data |= M88E1000_PSCR_POLARITY_REVERSAL; |
| 727 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 728 | /* Enable downshift on BM (disabled by default) */ |
| 729 | if (phy->type == e1000_phy_bm) |
| 730 | phy_data |= BME1000_PSCR_ENABLE_DOWNSHIFT; |
| 731 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 732 | ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data); |
| 733 | if (ret_val) |
| 734 | return ret_val; |
| 735 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 736 | if ((phy->type == e1000_phy_m88) && |
| 737 | (phy->revision < E1000_REVISION_4) && |
| 738 | (phy->id != BME1000_E_PHY_ID_R2)) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 739 | /* |
| 740 | * Force TX_CLK in the Extended PHY Specific Control Register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 741 | * to 25MHz clock. |
| 742 | */ |
| 743 | ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data); |
| 744 | if (ret_val) |
| 745 | return ret_val; |
| 746 | |
| 747 | phy_data |= M88E1000_EPSCR_TX_CLK_25; |
| 748 | |
| 749 | if ((phy->revision == 2) && |
| 750 | (phy->id == M88E1111_I_PHY_ID)) { |
| 751 | /* 82573L PHY - set the downshift counter to 5x. */ |
| 752 | phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK; |
| 753 | phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X; |
| 754 | } else { |
| 755 | /* Configure Master and Slave downshift values */ |
| 756 | phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK | |
| 757 | M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK); |
| 758 | phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X | |
| 759 | M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X); |
| 760 | } |
| 761 | ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data); |
| 762 | if (ret_val) |
| 763 | return ret_val; |
| 764 | } |
| 765 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 766 | if ((phy->type == e1000_phy_bm) && (phy->id == BME1000_E_PHY_ID_R2)) { |
| 767 | /* Set PHY page 0, register 29 to 0x0003 */ |
| 768 | ret_val = e1e_wphy(hw, 29, 0x0003); |
| 769 | if (ret_val) |
| 770 | return ret_val; |
| 771 | |
| 772 | /* Set PHY page 0, register 30 to 0x0000 */ |
| 773 | ret_val = e1e_wphy(hw, 30, 0x0000); |
| 774 | if (ret_val) |
| 775 | return ret_val; |
| 776 | } |
| 777 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 778 | /* Commit the changes. */ |
| 779 | ret_val = e1000e_commit_phy(hw); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 780 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 781 | e_dbg("Error committing the PHY changes\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 782 | return ret_val; |
| 783 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 784 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 785 | if (phy->type == e1000_phy_82578) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 786 | ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 787 | &phy_data); |
| 788 | if (ret_val) |
| 789 | return ret_val; |
| 790 | |
| 791 | /* 82578 PHY - set the downshift count to 1x. */ |
| 792 | phy_data |= I82578_EPSCR_DOWNSHIFT_ENABLE; |
| 793 | phy_data &= ~I82578_EPSCR_DOWNSHIFT_COUNTER_MASK; |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 794 | ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 795 | phy_data); |
| 796 | if (ret_val) |
| 797 | return ret_val; |
| 798 | } |
| 799 | |
| 800 | return 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /** |
| 804 | * e1000e_copper_link_setup_igp - Setup igp PHY's for copper link |
| 805 | * @hw: pointer to the HW structure |
| 806 | * |
| 807 | * Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for |
| 808 | * igp PHY's. |
| 809 | **/ |
| 810 | s32 e1000e_copper_link_setup_igp(struct e1000_hw *hw) |
| 811 | { |
| 812 | struct e1000_phy_info *phy = &hw->phy; |
| 813 | s32 ret_val; |
| 814 | u16 data; |
| 815 | |
| 816 | ret_val = e1000_phy_hw_reset(hw); |
| 817 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 818 | e_dbg("Error resetting the PHY.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 819 | return ret_val; |
| 820 | } |
| 821 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 822 | /* |
| 823 | * Wait 100ms for MAC to configure PHY from NVM settings, to avoid |
| 824 | * timeout issues when LFS is enabled. |
| 825 | */ |
| 826 | msleep(100); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 827 | |
| 828 | /* disable lplu d0 during driver init */ |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 829 | ret_val = e1000_set_d0_lplu_state(hw, false); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 830 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 831 | e_dbg("Error Disabling LPLU D0\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 832 | return ret_val; |
| 833 | } |
| 834 | /* Configure mdi-mdix settings */ |
| 835 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &data); |
| 836 | if (ret_val) |
| 837 | return ret_val; |
| 838 | |
| 839 | data &= ~IGP01E1000_PSCR_AUTO_MDIX; |
| 840 | |
| 841 | switch (phy->mdix) { |
| 842 | case 1: |
| 843 | data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX; |
| 844 | break; |
| 845 | case 2: |
| 846 | data |= IGP01E1000_PSCR_FORCE_MDI_MDIX; |
| 847 | break; |
| 848 | case 0: |
| 849 | default: |
| 850 | data |= IGP01E1000_PSCR_AUTO_MDIX; |
| 851 | break; |
| 852 | } |
| 853 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, data); |
| 854 | if (ret_val) |
| 855 | return ret_val; |
| 856 | |
| 857 | /* set auto-master slave resolution settings */ |
| 858 | if (hw->mac.autoneg) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 859 | /* |
| 860 | * when autonegotiation advertisement is only 1000Mbps then we |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 861 | * should disable SmartSpeed and enable Auto MasterSlave |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 862 | * resolution as hardware default. |
| 863 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 864 | if (phy->autoneg_advertised == ADVERTISE_1000_FULL) { |
| 865 | /* Disable SmartSpeed */ |
| 866 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 867 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 868 | if (ret_val) |
| 869 | return ret_val; |
| 870 | |
| 871 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 872 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 873 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 874 | if (ret_val) |
| 875 | return ret_val; |
| 876 | |
| 877 | /* Set auto Master/Slave resolution process */ |
| 878 | ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &data); |
| 879 | if (ret_val) |
| 880 | return ret_val; |
| 881 | |
| 882 | data &= ~CR_1000T_MS_ENABLE; |
| 883 | ret_val = e1e_wphy(hw, PHY_1000T_CTRL, data); |
| 884 | if (ret_val) |
| 885 | return ret_val; |
| 886 | } |
| 887 | |
| 888 | ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &data); |
| 889 | if (ret_val) |
| 890 | return ret_val; |
| 891 | |
| 892 | /* load defaults for future use */ |
| 893 | phy->original_ms_type = (data & CR_1000T_MS_ENABLE) ? |
| 894 | ((data & CR_1000T_MS_VALUE) ? |
| 895 | e1000_ms_force_master : |
| 896 | e1000_ms_force_slave) : |
| 897 | e1000_ms_auto; |
| 898 | |
| 899 | switch (phy->ms_type) { |
| 900 | case e1000_ms_force_master: |
| 901 | data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE); |
| 902 | break; |
| 903 | case e1000_ms_force_slave: |
| 904 | data |= CR_1000T_MS_ENABLE; |
| 905 | data &= ~(CR_1000T_MS_VALUE); |
| 906 | break; |
| 907 | case e1000_ms_auto: |
| 908 | data &= ~CR_1000T_MS_ENABLE; |
| 909 | default: |
| 910 | break; |
| 911 | } |
| 912 | ret_val = e1e_wphy(hw, PHY_1000T_CTRL, data); |
| 913 | } |
| 914 | |
| 915 | return ret_val; |
| 916 | } |
| 917 | |
| 918 | /** |
| 919 | * e1000_phy_setup_autoneg - Configure PHY for auto-negotiation |
| 920 | * @hw: pointer to the HW structure |
| 921 | * |
| 922 | * Reads the MII auto-neg advertisement register and/or the 1000T control |
| 923 | * register and if the PHY is already setup for auto-negotiation, then |
| 924 | * return successful. Otherwise, setup advertisement and flow control to |
| 925 | * the appropriate values for the wanted auto-negotiation. |
| 926 | **/ |
| 927 | static s32 e1000_phy_setup_autoneg(struct e1000_hw *hw) |
| 928 | { |
| 929 | struct e1000_phy_info *phy = &hw->phy; |
| 930 | s32 ret_val; |
| 931 | u16 mii_autoneg_adv_reg; |
| 932 | u16 mii_1000t_ctrl_reg = 0; |
| 933 | |
| 934 | phy->autoneg_advertised &= phy->autoneg_mask; |
| 935 | |
| 936 | /* Read the MII Auto-Neg Advertisement Register (Address 4). */ |
| 937 | ret_val = e1e_rphy(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg); |
| 938 | if (ret_val) |
| 939 | return ret_val; |
| 940 | |
| 941 | if (phy->autoneg_mask & ADVERTISE_1000_FULL) { |
| 942 | /* Read the MII 1000Base-T Control Register (Address 9). */ |
| 943 | ret_val = e1e_rphy(hw, PHY_1000T_CTRL, &mii_1000t_ctrl_reg); |
| 944 | if (ret_val) |
| 945 | return ret_val; |
| 946 | } |
| 947 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 948 | /* |
| 949 | * Need to parse both autoneg_advertised and fc and set up |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 950 | * the appropriate PHY registers. First we will parse for |
| 951 | * autoneg_advertised software override. Since we can advertise |
| 952 | * a plethora of combinations, we need to check each bit |
| 953 | * individually. |
| 954 | */ |
| 955 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 956 | /* |
| 957 | * First we clear all the 10/100 mb speed bits in the Auto-Neg |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 958 | * Advertisement Register (Address 4) and the 1000 mb speed bits in |
| 959 | * the 1000Base-T Control Register (Address 9). |
| 960 | */ |
| 961 | mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS | |
| 962 | NWAY_AR_100TX_HD_CAPS | |
| 963 | NWAY_AR_10T_FD_CAPS | |
| 964 | NWAY_AR_10T_HD_CAPS); |
| 965 | mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS); |
| 966 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 967 | e_dbg("autoneg_advertised %x\n", phy->autoneg_advertised); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 968 | |
| 969 | /* Do we want to advertise 10 Mb Half Duplex? */ |
| 970 | if (phy->autoneg_advertised & ADVERTISE_10_HALF) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 971 | e_dbg("Advertise 10mb Half duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 972 | mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS; |
| 973 | } |
| 974 | |
| 975 | /* Do we want to advertise 10 Mb Full Duplex? */ |
| 976 | if (phy->autoneg_advertised & ADVERTISE_10_FULL) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 977 | e_dbg("Advertise 10mb Full duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 978 | mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS; |
| 979 | } |
| 980 | |
| 981 | /* Do we want to advertise 100 Mb Half Duplex? */ |
| 982 | if (phy->autoneg_advertised & ADVERTISE_100_HALF) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 983 | e_dbg("Advertise 100mb Half duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 984 | mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS; |
| 985 | } |
| 986 | |
| 987 | /* Do we want to advertise 100 Mb Full Duplex? */ |
| 988 | if (phy->autoneg_advertised & ADVERTISE_100_FULL) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 989 | e_dbg("Advertise 100mb Full duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 990 | mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS; |
| 991 | } |
| 992 | |
| 993 | /* We do not allow the Phy to advertise 1000 Mb Half Duplex */ |
| 994 | if (phy->autoneg_advertised & ADVERTISE_1000_HALF) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 995 | e_dbg("Advertise 1000mb Half duplex request denied!\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 996 | |
| 997 | /* Do we want to advertise 1000 Mb Full Duplex? */ |
| 998 | if (phy->autoneg_advertised & ADVERTISE_1000_FULL) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 999 | e_dbg("Advertise 1000mb Full duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1000 | mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS; |
| 1001 | } |
| 1002 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1003 | /* |
| 1004 | * Check for a software override of the flow control settings, and |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1005 | * setup the PHY advertisement registers accordingly. If |
| 1006 | * auto-negotiation is enabled, then software will have to set the |
| 1007 | * "PAUSE" bits to the correct value in the Auto-Negotiation |
| 1008 | * Advertisement Register (PHY_AUTONEG_ADV) and re-start auto- |
| 1009 | * negotiation. |
| 1010 | * |
| 1011 | * The possible values of the "fc" parameter are: |
| 1012 | * 0: Flow control is completely disabled |
| 1013 | * 1: Rx flow control is enabled (we can receive pause frames |
| 1014 | * but not send pause frames). |
| 1015 | * 2: Tx flow control is enabled (we can send pause frames |
| 1016 | * but we do not support receiving pause frames). |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1017 | * 3: Both Rx and Tx flow control (symmetric) are enabled. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1018 | * other: No software override. The flow control configuration |
| 1019 | * in the EEPROM is used. |
| 1020 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1021 | switch (hw->fc.current_mode) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1022 | case e1000_fc_none: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1023 | /* |
| 1024 | * Flow control (Rx & Tx) is completely disabled by a |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1025 | * software over-ride. |
| 1026 | */ |
| 1027 | mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE); |
| 1028 | break; |
| 1029 | case e1000_fc_rx_pause: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1030 | /* |
| 1031 | * Rx Flow control is enabled, and Tx Flow control is |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1032 | * disabled, by a software over-ride. |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1033 | * |
| 1034 | * Since there really isn't a way to advertise that we are |
| 1035 | * capable of Rx Pause ONLY, we will advertise that we |
| 1036 | * support both symmetric and asymmetric Rx PAUSE. Later |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1037 | * (in e1000e_config_fc_after_link_up) we will disable the |
| 1038 | * hw's ability to send PAUSE frames. |
| 1039 | */ |
| 1040 | mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE); |
| 1041 | break; |
| 1042 | case e1000_fc_tx_pause: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1043 | /* |
| 1044 | * Tx Flow control is enabled, and Rx Flow control is |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1045 | * disabled, by a software over-ride. |
| 1046 | */ |
| 1047 | mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR; |
| 1048 | mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE; |
| 1049 | break; |
| 1050 | case e1000_fc_full: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1051 | /* |
| 1052 | * Flow control (both Rx and Tx) is enabled by a software |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1053 | * over-ride. |
| 1054 | */ |
| 1055 | mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE); |
| 1056 | break; |
| 1057 | default: |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1058 | e_dbg("Flow control param set incorrectly\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1059 | ret_val = -E1000_ERR_CONFIG; |
| 1060 | return ret_val; |
| 1061 | } |
| 1062 | |
| 1063 | ret_val = e1e_wphy(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg); |
| 1064 | if (ret_val) |
| 1065 | return ret_val; |
| 1066 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1067 | e_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1068 | |
| 1069 | if (phy->autoneg_mask & ADVERTISE_1000_FULL) { |
| 1070 | ret_val = e1e_wphy(hw, PHY_1000T_CTRL, mii_1000t_ctrl_reg); |
| 1071 | } |
| 1072 | |
| 1073 | return ret_val; |
| 1074 | } |
| 1075 | |
| 1076 | /** |
| 1077 | * e1000_copper_link_autoneg - Setup/Enable autoneg for copper link |
| 1078 | * @hw: pointer to the HW structure |
| 1079 | * |
| 1080 | * Performs initial bounds checking on autoneg advertisement parameter, then |
| 1081 | * configure to advertise the full capability. Setup the PHY to autoneg |
| 1082 | * and restart the negotiation process between the link partner. If |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1083 | * autoneg_wait_to_complete, then wait for autoneg to complete before exiting. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1084 | **/ |
| 1085 | static s32 e1000_copper_link_autoneg(struct e1000_hw *hw) |
| 1086 | { |
| 1087 | struct e1000_phy_info *phy = &hw->phy; |
| 1088 | s32 ret_val; |
| 1089 | u16 phy_ctrl; |
| 1090 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1091 | /* |
| 1092 | * Perform some bounds checking on the autoneg advertisement |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1093 | * parameter. |
| 1094 | */ |
| 1095 | phy->autoneg_advertised &= phy->autoneg_mask; |
| 1096 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1097 | /* |
| 1098 | * If autoneg_advertised is zero, we assume it was not defaulted |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1099 | * by the calling code so we set to advertise full capability. |
| 1100 | */ |
| 1101 | if (phy->autoneg_advertised == 0) |
| 1102 | phy->autoneg_advertised = phy->autoneg_mask; |
| 1103 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1104 | e_dbg("Reconfiguring auto-neg advertisement params\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1105 | ret_val = e1000_phy_setup_autoneg(hw); |
| 1106 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1107 | e_dbg("Error Setting up Auto-Negotiation\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1108 | return ret_val; |
| 1109 | } |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1110 | e_dbg("Restarting Auto-Neg\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1111 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1112 | /* |
| 1113 | * Restart auto-negotiation by setting the Auto Neg Enable bit and |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1114 | * the Auto Neg Restart bit in the PHY control register. |
| 1115 | */ |
| 1116 | ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl); |
| 1117 | if (ret_val) |
| 1118 | return ret_val; |
| 1119 | |
| 1120 | phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG); |
| 1121 | ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl); |
| 1122 | if (ret_val) |
| 1123 | return ret_val; |
| 1124 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1125 | /* |
| 1126 | * Does the user want to wait for Auto-Neg to complete here, or |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1127 | * check at a later time (for example, callback routine). |
| 1128 | */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1129 | if (phy->autoneg_wait_to_complete) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1130 | ret_val = e1000_wait_autoneg(hw); |
| 1131 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1132 | e_dbg("Error while waiting for " |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1133 | "autoneg to complete\n"); |
| 1134 | return ret_val; |
| 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | hw->mac.get_link_status = 1; |
| 1139 | |
| 1140 | return ret_val; |
| 1141 | } |
| 1142 | |
| 1143 | /** |
| 1144 | * e1000e_setup_copper_link - Configure copper link settings |
| 1145 | * @hw: pointer to the HW structure |
| 1146 | * |
| 1147 | * Calls the appropriate function to configure the link for auto-neg or forced |
| 1148 | * speed and duplex. Then we check for link, once link is established calls |
| 1149 | * to configure collision distance and flow control are called. If link is |
| 1150 | * not established, we return -E1000_ERR_PHY (-2). |
| 1151 | **/ |
| 1152 | s32 e1000e_setup_copper_link(struct e1000_hw *hw) |
| 1153 | { |
| 1154 | s32 ret_val; |
| 1155 | bool link; |
| 1156 | |
| 1157 | if (hw->mac.autoneg) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1158 | /* |
| 1159 | * Setup autoneg and flow control advertisement and perform |
| 1160 | * autonegotiation. |
| 1161 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1162 | ret_val = e1000_copper_link_autoneg(hw); |
| 1163 | if (ret_val) |
| 1164 | return ret_val; |
| 1165 | } else { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1166 | /* |
| 1167 | * PHY will be set to 10H, 10F, 100H or 100F |
| 1168 | * depending on user settings. |
| 1169 | */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1170 | e_dbg("Forcing Speed and Duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1171 | ret_val = e1000_phy_force_speed_duplex(hw); |
| 1172 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1173 | e_dbg("Error Forcing Speed and Duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1174 | return ret_val; |
| 1175 | } |
| 1176 | } |
| 1177 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1178 | /* |
| 1179 | * Check link status. Wait up to 100 microseconds for link to become |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1180 | * valid. |
| 1181 | */ |
| 1182 | ret_val = e1000e_phy_has_link_generic(hw, |
| 1183 | COPPER_LINK_UP_LIMIT, |
| 1184 | 10, |
| 1185 | &link); |
| 1186 | if (ret_val) |
| 1187 | return ret_val; |
| 1188 | |
| 1189 | if (link) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1190 | e_dbg("Valid link established!!!\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1191 | e1000e_config_collision_dist(hw); |
| 1192 | ret_val = e1000e_config_fc_after_link_up(hw); |
| 1193 | } else { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1194 | e_dbg("Unable to establish link!!!\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1195 | } |
| 1196 | |
| 1197 | return ret_val; |
| 1198 | } |
| 1199 | |
| 1200 | /** |
| 1201 | * e1000e_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY |
| 1202 | * @hw: pointer to the HW structure |
| 1203 | * |
| 1204 | * Calls the PHY setup function to force speed and duplex. Clears the |
| 1205 | * auto-crossover to force MDI manually. Waits for link and returns |
| 1206 | * successful if link up is successful, else -E1000_ERR_PHY (-2). |
| 1207 | **/ |
| 1208 | s32 e1000e_phy_force_speed_duplex_igp(struct e1000_hw *hw) |
| 1209 | { |
| 1210 | struct e1000_phy_info *phy = &hw->phy; |
| 1211 | s32 ret_val; |
| 1212 | u16 phy_data; |
| 1213 | bool link; |
| 1214 | |
| 1215 | ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data); |
| 1216 | if (ret_val) |
| 1217 | return ret_val; |
| 1218 | |
| 1219 | e1000e_phy_force_speed_duplex_setup(hw, &phy_data); |
| 1220 | |
| 1221 | ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data); |
| 1222 | if (ret_val) |
| 1223 | return ret_val; |
| 1224 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1225 | /* |
| 1226 | * Clear Auto-Crossover to force MDI manually. IGP requires MDI |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1227 | * forced whenever speed and duplex are forced. |
| 1228 | */ |
| 1229 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data); |
| 1230 | if (ret_val) |
| 1231 | return ret_val; |
| 1232 | |
| 1233 | phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX; |
| 1234 | phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX; |
| 1235 | |
| 1236 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CTRL, phy_data); |
| 1237 | if (ret_val) |
| 1238 | return ret_val; |
| 1239 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1240 | e_dbg("IGP PSCR: %X\n", phy_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1241 | |
| 1242 | udelay(1); |
| 1243 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1244 | if (phy->autoneg_wait_to_complete) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1245 | e_dbg("Waiting for forced speed/duplex link on IGP phy.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1246 | |
| 1247 | ret_val = e1000e_phy_has_link_generic(hw, |
| 1248 | PHY_FORCE_LIMIT, |
| 1249 | 100000, |
| 1250 | &link); |
| 1251 | if (ret_val) |
| 1252 | return ret_val; |
| 1253 | |
| 1254 | if (!link) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1255 | e_dbg("Link taking longer than expected.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1256 | |
| 1257 | /* Try once more */ |
| 1258 | ret_val = e1000e_phy_has_link_generic(hw, |
| 1259 | PHY_FORCE_LIMIT, |
| 1260 | 100000, |
| 1261 | &link); |
| 1262 | if (ret_val) |
| 1263 | return ret_val; |
| 1264 | } |
| 1265 | |
| 1266 | return ret_val; |
| 1267 | } |
| 1268 | |
| 1269 | /** |
| 1270 | * e1000e_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY |
| 1271 | * @hw: pointer to the HW structure |
| 1272 | * |
| 1273 | * Calls the PHY setup function to force speed and duplex. Clears the |
| 1274 | * auto-crossover to force MDI manually. Resets the PHY to commit the |
| 1275 | * changes. If time expires while waiting for link up, we reset the DSP. |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1276 | * After reset, TX_CLK and CRS on Tx must be set. Return successful upon |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1277 | * successful completion, else return corresponding error code. |
| 1278 | **/ |
| 1279 | s32 e1000e_phy_force_speed_duplex_m88(struct e1000_hw *hw) |
| 1280 | { |
| 1281 | struct e1000_phy_info *phy = &hw->phy; |
| 1282 | s32 ret_val; |
| 1283 | u16 phy_data; |
| 1284 | bool link; |
| 1285 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1286 | /* |
| 1287 | * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1288 | * forced whenever speed and duplex are forced. |
| 1289 | */ |
| 1290 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); |
| 1291 | if (ret_val) |
| 1292 | return ret_val; |
| 1293 | |
| 1294 | phy_data &= ~M88E1000_PSCR_AUTO_X_MODE; |
| 1295 | ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data); |
| 1296 | if (ret_val) |
| 1297 | return ret_val; |
| 1298 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1299 | e_dbg("M88E1000 PSCR: %X\n", phy_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1300 | |
| 1301 | ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data); |
| 1302 | if (ret_val) |
| 1303 | return ret_val; |
| 1304 | |
| 1305 | e1000e_phy_force_speed_duplex_setup(hw, &phy_data); |
| 1306 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1307 | ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data); |
| 1308 | if (ret_val) |
| 1309 | return ret_val; |
| 1310 | |
Bruce Allan | 5aa49c8 | 2008-11-21 16:49:53 -0800 | [diff] [blame] | 1311 | /* Reset the phy to commit changes. */ |
| 1312 | ret_val = e1000e_commit_phy(hw); |
| 1313 | if (ret_val) |
| 1314 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1315 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1316 | if (phy->autoneg_wait_to_complete) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1317 | e_dbg("Waiting for forced speed/duplex link on M88 phy.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1318 | |
| 1319 | ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT, |
| 1320 | 100000, &link); |
| 1321 | if (ret_val) |
| 1322 | return ret_val; |
| 1323 | |
| 1324 | if (!link) { |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1325 | if (hw->phy.type != e1000_phy_m88) { |
| 1326 | e_dbg("Link taking longer than expected.\n"); |
| 1327 | } else { |
| 1328 | /* |
| 1329 | * We didn't get link. |
| 1330 | * Reset the DSP and cross our fingers. |
| 1331 | */ |
| 1332 | ret_val = e1e_wphy(hw, |
| 1333 | M88E1000_PHY_PAGE_SELECT, |
| 1334 | 0x001d); |
| 1335 | if (ret_val) |
| 1336 | return ret_val; |
| 1337 | ret_val = e1000e_phy_reset_dsp(hw); |
| 1338 | if (ret_val) |
| 1339 | return ret_val; |
| 1340 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1341 | } |
| 1342 | |
| 1343 | /* Try once more */ |
| 1344 | ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT, |
| 1345 | 100000, &link); |
| 1346 | if (ret_val) |
| 1347 | return ret_val; |
| 1348 | } |
| 1349 | |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1350 | if (hw->phy.type != e1000_phy_m88) |
| 1351 | return 0; |
| 1352 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1353 | ret_val = e1e_rphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data); |
| 1354 | if (ret_val) |
| 1355 | return ret_val; |
| 1356 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1357 | /* |
| 1358 | * Resetting the phy means we need to re-force TX_CLK in the |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1359 | * Extended PHY Specific Control Register to 25MHz clock from |
| 1360 | * the reset value of 2.5MHz. |
| 1361 | */ |
| 1362 | phy_data |= M88E1000_EPSCR_TX_CLK_25; |
| 1363 | ret_val = e1e_wphy(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data); |
| 1364 | if (ret_val) |
| 1365 | return ret_val; |
| 1366 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1367 | /* |
| 1368 | * In addition, we must re-enable CRS on Tx for both half and full |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1369 | * duplex. |
| 1370 | */ |
| 1371 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); |
| 1372 | if (ret_val) |
| 1373 | return ret_val; |
| 1374 | |
| 1375 | phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX; |
| 1376 | ret_val = e1e_wphy(hw, M88E1000_PHY_SPEC_CTRL, phy_data); |
| 1377 | |
| 1378 | return ret_val; |
| 1379 | } |
| 1380 | |
| 1381 | /** |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1382 | * e1000_phy_force_speed_duplex_ife - Force PHY speed & duplex |
| 1383 | * @hw: pointer to the HW structure |
| 1384 | * |
| 1385 | * Forces the speed and duplex settings of the PHY. |
| 1386 | * This is a function pointer entry point only called by |
| 1387 | * PHY setup routines. |
| 1388 | **/ |
| 1389 | s32 e1000_phy_force_speed_duplex_ife(struct e1000_hw *hw) |
| 1390 | { |
| 1391 | struct e1000_phy_info *phy = &hw->phy; |
| 1392 | s32 ret_val; |
| 1393 | u16 data; |
| 1394 | bool link; |
| 1395 | |
| 1396 | ret_val = e1e_rphy(hw, PHY_CONTROL, &data); |
| 1397 | if (ret_val) |
| 1398 | goto out; |
| 1399 | |
| 1400 | e1000e_phy_force_speed_duplex_setup(hw, &data); |
| 1401 | |
| 1402 | ret_val = e1e_wphy(hw, PHY_CONTROL, data); |
| 1403 | if (ret_val) |
| 1404 | goto out; |
| 1405 | |
| 1406 | /* Disable MDI-X support for 10/100 */ |
| 1407 | ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data); |
| 1408 | if (ret_val) |
| 1409 | goto out; |
| 1410 | |
| 1411 | data &= ~IFE_PMC_AUTO_MDIX; |
| 1412 | data &= ~IFE_PMC_FORCE_MDIX; |
| 1413 | |
| 1414 | ret_val = e1e_wphy(hw, IFE_PHY_MDIX_CONTROL, data); |
| 1415 | if (ret_val) |
| 1416 | goto out; |
| 1417 | |
| 1418 | e_dbg("IFE PMC: %X\n", data); |
| 1419 | |
| 1420 | udelay(1); |
| 1421 | |
| 1422 | if (phy->autoneg_wait_to_complete) { |
| 1423 | e_dbg("Waiting for forced speed/duplex link on IFE phy.\n"); |
| 1424 | |
| 1425 | ret_val = e1000e_phy_has_link_generic(hw, |
| 1426 | PHY_FORCE_LIMIT, |
| 1427 | 100000, |
| 1428 | &link); |
| 1429 | if (ret_val) |
| 1430 | goto out; |
| 1431 | |
| 1432 | if (!link) |
| 1433 | e_dbg("Link taking longer than expected.\n"); |
| 1434 | |
| 1435 | /* Try once more */ |
| 1436 | ret_val = e1000e_phy_has_link_generic(hw, |
| 1437 | PHY_FORCE_LIMIT, |
| 1438 | 100000, |
| 1439 | &link); |
| 1440 | if (ret_val) |
| 1441 | goto out; |
| 1442 | } |
| 1443 | |
| 1444 | out: |
| 1445 | return ret_val; |
| 1446 | } |
| 1447 | |
| 1448 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1449 | * e1000e_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex |
| 1450 | * @hw: pointer to the HW structure |
| 1451 | * @phy_ctrl: pointer to current value of PHY_CONTROL |
| 1452 | * |
| 1453 | * Forces speed and duplex on the PHY by doing the following: disable flow |
| 1454 | * control, force speed/duplex on the MAC, disable auto speed detection, |
| 1455 | * disable auto-negotiation, configure duplex, configure speed, configure |
| 1456 | * the collision distance, write configuration to CTRL register. The |
| 1457 | * caller must write to the PHY_CONTROL register for these settings to |
| 1458 | * take affect. |
| 1459 | **/ |
| 1460 | void e1000e_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl) |
| 1461 | { |
| 1462 | struct e1000_mac_info *mac = &hw->mac; |
| 1463 | u32 ctrl; |
| 1464 | |
| 1465 | /* Turn off flow control when forcing speed/duplex */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1466 | hw->fc.current_mode = e1000_fc_none; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1467 | |
| 1468 | /* Force speed/duplex on the mac */ |
| 1469 | ctrl = er32(CTRL); |
| 1470 | ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
| 1471 | ctrl &= ~E1000_CTRL_SPD_SEL; |
| 1472 | |
| 1473 | /* Disable Auto Speed Detection */ |
| 1474 | ctrl &= ~E1000_CTRL_ASDE; |
| 1475 | |
| 1476 | /* Disable autoneg on the phy */ |
| 1477 | *phy_ctrl &= ~MII_CR_AUTO_NEG_EN; |
| 1478 | |
| 1479 | /* Forcing Full or Half Duplex? */ |
| 1480 | if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) { |
| 1481 | ctrl &= ~E1000_CTRL_FD; |
| 1482 | *phy_ctrl &= ~MII_CR_FULL_DUPLEX; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1483 | e_dbg("Half Duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1484 | } else { |
| 1485 | ctrl |= E1000_CTRL_FD; |
| 1486 | *phy_ctrl |= MII_CR_FULL_DUPLEX; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1487 | e_dbg("Full Duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | /* Forcing 10mb or 100mb? */ |
| 1491 | if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) { |
| 1492 | ctrl |= E1000_CTRL_SPD_100; |
| 1493 | *phy_ctrl |= MII_CR_SPEED_100; |
| 1494 | *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1495 | e_dbg("Forcing 100mb\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1496 | } else { |
| 1497 | ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100); |
| 1498 | *phy_ctrl |= MII_CR_SPEED_10; |
| 1499 | *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1500 | e_dbg("Forcing 10mb\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1501 | } |
| 1502 | |
| 1503 | e1000e_config_collision_dist(hw); |
| 1504 | |
| 1505 | ew32(CTRL, ctrl); |
| 1506 | } |
| 1507 | |
| 1508 | /** |
| 1509 | * e1000e_set_d3_lplu_state - Sets low power link up state for D3 |
| 1510 | * @hw: pointer to the HW structure |
| 1511 | * @active: boolean used to enable/disable lplu |
| 1512 | * |
| 1513 | * Success returns 0, Failure returns 1 |
| 1514 | * |
| 1515 | * The low power link up (lplu) state is set to the power management level D3 |
| 1516 | * and SmartSpeed is disabled when active is true, else clear lplu for D3 |
| 1517 | * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU |
| 1518 | * is used during Dx states where the power conservation is most important. |
| 1519 | * During driver activity, SmartSpeed should be enabled so performance is |
| 1520 | * maintained. |
| 1521 | **/ |
| 1522 | s32 e1000e_set_d3_lplu_state(struct e1000_hw *hw, bool active) |
| 1523 | { |
| 1524 | struct e1000_phy_info *phy = &hw->phy; |
| 1525 | s32 ret_val; |
| 1526 | u16 data; |
| 1527 | |
| 1528 | ret_val = e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &data); |
| 1529 | if (ret_val) |
| 1530 | return ret_val; |
| 1531 | |
| 1532 | if (!active) { |
| 1533 | data &= ~IGP02E1000_PM_D3_LPLU; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1534 | ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1535 | if (ret_val) |
| 1536 | return ret_val; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1537 | /* |
| 1538 | * LPLU and SmartSpeed are mutually exclusive. LPLU is used |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1539 | * during Dx states where the power conservation is most |
| 1540 | * important. During driver activity we should enable |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1541 | * SmartSpeed, so performance is maintained. |
| 1542 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1543 | if (phy->smart_speed == e1000_smart_speed_on) { |
| 1544 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1545 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1546 | if (ret_val) |
| 1547 | return ret_val; |
| 1548 | |
| 1549 | data |= IGP01E1000_PSCFR_SMART_SPEED; |
| 1550 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1551 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1552 | if (ret_val) |
| 1553 | return ret_val; |
| 1554 | } else if (phy->smart_speed == e1000_smart_speed_off) { |
| 1555 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1556 | &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1557 | if (ret_val) |
| 1558 | return ret_val; |
| 1559 | |
| 1560 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 1561 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1562 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1563 | if (ret_val) |
| 1564 | return ret_val; |
| 1565 | } |
| 1566 | } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) || |
| 1567 | (phy->autoneg_advertised == E1000_ALL_NOT_GIG) || |
| 1568 | (phy->autoneg_advertised == E1000_ALL_10_SPEED)) { |
| 1569 | data |= IGP02E1000_PM_D3_LPLU; |
| 1570 | ret_val = e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, data); |
| 1571 | if (ret_val) |
| 1572 | return ret_val; |
| 1573 | |
| 1574 | /* When LPLU is enabled, we should disable SmartSpeed */ |
| 1575 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_CONFIG, &data); |
| 1576 | if (ret_val) |
| 1577 | return ret_val; |
| 1578 | |
| 1579 | data &= ~IGP01E1000_PSCFR_SMART_SPEED; |
| 1580 | ret_val = e1e_wphy(hw, IGP01E1000_PHY_PORT_CONFIG, data); |
| 1581 | } |
| 1582 | |
| 1583 | return ret_val; |
| 1584 | } |
| 1585 | |
| 1586 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1587 | * e1000e_check_downshift - Checks whether a downshift in speed occurred |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1588 | * @hw: pointer to the HW structure |
| 1589 | * |
| 1590 | * Success returns 0, Failure returns 1 |
| 1591 | * |
| 1592 | * A downshift is detected by querying the PHY link health. |
| 1593 | **/ |
| 1594 | s32 e1000e_check_downshift(struct e1000_hw *hw) |
| 1595 | { |
| 1596 | struct e1000_phy_info *phy = &hw->phy; |
| 1597 | s32 ret_val; |
| 1598 | u16 phy_data, offset, mask; |
| 1599 | |
| 1600 | switch (phy->type) { |
| 1601 | case e1000_phy_m88: |
| 1602 | case e1000_phy_gg82563: |
Bruce Allan | 07f025e | 2009-12-01 15:53:48 +0000 | [diff] [blame] | 1603 | case e1000_phy_bm: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1604 | case e1000_phy_82578: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1605 | offset = M88E1000_PHY_SPEC_STATUS; |
| 1606 | mask = M88E1000_PSSR_DOWNSHIFT; |
| 1607 | break; |
| 1608 | case e1000_phy_igp_2: |
| 1609 | case e1000_phy_igp_3: |
| 1610 | offset = IGP01E1000_PHY_LINK_HEALTH; |
| 1611 | mask = IGP01E1000_PLHR_SS_DOWNGRADE; |
| 1612 | break; |
| 1613 | default: |
| 1614 | /* speed downshift not supported */ |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 1615 | phy->speed_downgraded = false; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1616 | return 0; |
| 1617 | } |
| 1618 | |
| 1619 | ret_val = e1e_rphy(hw, offset, &phy_data); |
| 1620 | |
| 1621 | if (!ret_val) |
| 1622 | phy->speed_downgraded = (phy_data & mask); |
| 1623 | |
| 1624 | return ret_val; |
| 1625 | } |
| 1626 | |
| 1627 | /** |
| 1628 | * e1000_check_polarity_m88 - Checks the polarity. |
| 1629 | * @hw: pointer to the HW structure |
| 1630 | * |
| 1631 | * Success returns 0, Failure returns -E1000_ERR_PHY (-2) |
| 1632 | * |
| 1633 | * Polarity is determined based on the PHY specific status register. |
| 1634 | **/ |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1635 | s32 e1000_check_polarity_m88(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1636 | { |
| 1637 | struct e1000_phy_info *phy = &hw->phy; |
| 1638 | s32 ret_val; |
| 1639 | u16 data; |
| 1640 | |
| 1641 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &data); |
| 1642 | |
| 1643 | if (!ret_val) |
| 1644 | phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY) |
| 1645 | ? e1000_rev_polarity_reversed |
| 1646 | : e1000_rev_polarity_normal; |
| 1647 | |
| 1648 | return ret_val; |
| 1649 | } |
| 1650 | |
| 1651 | /** |
| 1652 | * e1000_check_polarity_igp - Checks the polarity. |
| 1653 | * @hw: pointer to the HW structure |
| 1654 | * |
| 1655 | * Success returns 0, Failure returns -E1000_ERR_PHY (-2) |
| 1656 | * |
| 1657 | * Polarity is determined based on the PHY port status register, and the |
| 1658 | * current speed (since there is no polarity at 100Mbps). |
| 1659 | **/ |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1660 | s32 e1000_check_polarity_igp(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1661 | { |
| 1662 | struct e1000_phy_info *phy = &hw->phy; |
| 1663 | s32 ret_val; |
| 1664 | u16 data, offset, mask; |
| 1665 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1666 | /* |
| 1667 | * Polarity is determined based on the speed of |
| 1668 | * our connection. |
| 1669 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1670 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data); |
| 1671 | if (ret_val) |
| 1672 | return ret_val; |
| 1673 | |
| 1674 | if ((data & IGP01E1000_PSSR_SPEED_MASK) == |
| 1675 | IGP01E1000_PSSR_SPEED_1000MBPS) { |
| 1676 | offset = IGP01E1000_PHY_PCS_INIT_REG; |
| 1677 | mask = IGP01E1000_PHY_POLARITY_MASK; |
| 1678 | } else { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1679 | /* |
| 1680 | * This really only applies to 10Mbps since |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1681 | * there is no polarity for 100Mbps (always 0). |
| 1682 | */ |
| 1683 | offset = IGP01E1000_PHY_PORT_STATUS; |
| 1684 | mask = IGP01E1000_PSSR_POLARITY_REVERSED; |
| 1685 | } |
| 1686 | |
| 1687 | ret_val = e1e_rphy(hw, offset, &data); |
| 1688 | |
| 1689 | if (!ret_val) |
| 1690 | phy->cable_polarity = (data & mask) |
| 1691 | ? e1000_rev_polarity_reversed |
| 1692 | : e1000_rev_polarity_normal; |
| 1693 | |
| 1694 | return ret_val; |
| 1695 | } |
| 1696 | |
| 1697 | /** |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1698 | * e1000_check_polarity_ife - Check cable polarity for IFE PHY |
| 1699 | * @hw: pointer to the HW structure |
| 1700 | * |
| 1701 | * Polarity is determined on the polarity reversal feature being enabled. |
| 1702 | **/ |
| 1703 | s32 e1000_check_polarity_ife(struct e1000_hw *hw) |
| 1704 | { |
| 1705 | struct e1000_phy_info *phy = &hw->phy; |
| 1706 | s32 ret_val; |
| 1707 | u16 phy_data, offset, mask; |
| 1708 | |
| 1709 | /* |
| 1710 | * Polarity is determined based on the reversal feature being enabled. |
| 1711 | */ |
| 1712 | if (phy->polarity_correction) { |
| 1713 | offset = IFE_PHY_EXTENDED_STATUS_CONTROL; |
| 1714 | mask = IFE_PESC_POLARITY_REVERSED; |
| 1715 | } else { |
| 1716 | offset = IFE_PHY_SPECIAL_CONTROL; |
| 1717 | mask = IFE_PSC_FORCE_POLARITY; |
| 1718 | } |
| 1719 | |
| 1720 | ret_val = e1e_rphy(hw, offset, &phy_data); |
| 1721 | |
| 1722 | if (!ret_val) |
| 1723 | phy->cable_polarity = (phy_data & mask) |
| 1724 | ? e1000_rev_polarity_reversed |
| 1725 | : e1000_rev_polarity_normal; |
| 1726 | |
| 1727 | return ret_val; |
| 1728 | } |
| 1729 | |
| 1730 | /** |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1731 | * e1000_wait_autoneg - Wait for auto-neg completion |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1732 | * @hw: pointer to the HW structure |
| 1733 | * |
| 1734 | * Waits for auto-negotiation to complete or for the auto-negotiation time |
| 1735 | * limit to expire, which ever happens first. |
| 1736 | **/ |
| 1737 | static s32 e1000_wait_autoneg(struct e1000_hw *hw) |
| 1738 | { |
| 1739 | s32 ret_val = 0; |
| 1740 | u16 i, phy_status; |
| 1741 | |
| 1742 | /* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */ |
| 1743 | for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) { |
| 1744 | ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status); |
| 1745 | if (ret_val) |
| 1746 | break; |
| 1747 | ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status); |
| 1748 | if (ret_val) |
| 1749 | break; |
| 1750 | if (phy_status & MII_SR_AUTONEG_COMPLETE) |
| 1751 | break; |
| 1752 | msleep(100); |
| 1753 | } |
| 1754 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1755 | /* |
| 1756 | * PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1757 | * has completed. |
| 1758 | */ |
| 1759 | return ret_val; |
| 1760 | } |
| 1761 | |
| 1762 | /** |
| 1763 | * e1000e_phy_has_link_generic - Polls PHY for link |
| 1764 | * @hw: pointer to the HW structure |
| 1765 | * @iterations: number of times to poll for link |
| 1766 | * @usec_interval: delay between polling attempts |
| 1767 | * @success: pointer to whether polling was successful or not |
| 1768 | * |
| 1769 | * Polls the PHY status register for link, 'iterations' number of times. |
| 1770 | **/ |
| 1771 | s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations, |
| 1772 | u32 usec_interval, bool *success) |
| 1773 | { |
| 1774 | s32 ret_val = 0; |
| 1775 | u16 i, phy_status; |
| 1776 | |
| 1777 | for (i = 0; i < iterations; i++) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1778 | /* |
| 1779 | * Some PHYs require the PHY_STATUS register to be read |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1780 | * twice due to the link bit being sticky. No harm doing |
| 1781 | * it across the board. |
| 1782 | */ |
| 1783 | ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status); |
| 1784 | if (ret_val) |
Bruce Allan | 906e8d9 | 2009-07-01 13:28:50 +0000 | [diff] [blame] | 1785 | /* |
| 1786 | * If the first read fails, another entity may have |
| 1787 | * ownership of the resources, wait and try again to |
| 1788 | * see if they have relinquished the resources yet. |
| 1789 | */ |
| 1790 | udelay(usec_interval); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1791 | ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status); |
| 1792 | if (ret_val) |
| 1793 | break; |
| 1794 | if (phy_status & MII_SR_LINK_STATUS) |
| 1795 | break; |
| 1796 | if (usec_interval >= 1000) |
| 1797 | mdelay(usec_interval/1000); |
| 1798 | else |
| 1799 | udelay(usec_interval); |
| 1800 | } |
| 1801 | |
| 1802 | *success = (i < iterations); |
| 1803 | |
| 1804 | return ret_val; |
| 1805 | } |
| 1806 | |
| 1807 | /** |
| 1808 | * e1000e_get_cable_length_m88 - Determine cable length for m88 PHY |
| 1809 | * @hw: pointer to the HW structure |
| 1810 | * |
| 1811 | * Reads the PHY specific status register to retrieve the cable length |
| 1812 | * information. The cable length is determined by averaging the minimum and |
| 1813 | * maximum values to get the "average" cable length. The m88 PHY has four |
| 1814 | * possible cable length values, which are: |
| 1815 | * Register Value Cable Length |
| 1816 | * 0 < 50 meters |
| 1817 | * 1 50 - 80 meters |
| 1818 | * 2 80 - 110 meters |
| 1819 | * 3 110 - 140 meters |
| 1820 | * 4 > 140 meters |
| 1821 | **/ |
| 1822 | s32 e1000e_get_cable_length_m88(struct e1000_hw *hw) |
| 1823 | { |
| 1824 | struct e1000_phy_info *phy = &hw->phy; |
| 1825 | s32 ret_val; |
| 1826 | u16 phy_data, index; |
| 1827 | |
| 1828 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data); |
| 1829 | if (ret_val) |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 1830 | goto out; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1831 | |
| 1832 | index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >> |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 1833 | M88E1000_PSSR_CABLE_LENGTH_SHIFT; |
| 1834 | if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1) { |
| 1835 | ret_val = -E1000_ERR_PHY; |
| 1836 | goto out; |
| 1837 | } |
| 1838 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1839 | phy->min_cable_length = e1000_m88_cable_length_table[index]; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 1840 | phy->max_cable_length = e1000_m88_cable_length_table[index + 1]; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1841 | |
| 1842 | phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2; |
| 1843 | |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 1844 | out: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1845 | return ret_val; |
| 1846 | } |
| 1847 | |
| 1848 | /** |
| 1849 | * e1000e_get_cable_length_igp_2 - Determine cable length for igp2 PHY |
| 1850 | * @hw: pointer to the HW structure |
| 1851 | * |
| 1852 | * The automatic gain control (agc) normalizes the amplitude of the |
| 1853 | * received signal, adjusting for the attenuation produced by the |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1854 | * cable. By reading the AGC registers, which represent the |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 1855 | * combination of coarse and fine gain value, the value can be put |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1856 | * into a lookup table to obtain the approximate cable length |
| 1857 | * for each channel. |
| 1858 | **/ |
| 1859 | s32 e1000e_get_cable_length_igp_2(struct e1000_hw *hw) |
| 1860 | { |
| 1861 | struct e1000_phy_info *phy = &hw->phy; |
| 1862 | s32 ret_val; |
| 1863 | u16 phy_data, i, agc_value = 0; |
| 1864 | u16 cur_agc_index, max_agc_index = 0; |
| 1865 | u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1; |
| 1866 | u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = |
| 1867 | {IGP02E1000_PHY_AGC_A, |
| 1868 | IGP02E1000_PHY_AGC_B, |
| 1869 | IGP02E1000_PHY_AGC_C, |
| 1870 | IGP02E1000_PHY_AGC_D}; |
| 1871 | |
| 1872 | /* Read the AGC registers for all channels */ |
| 1873 | for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) { |
| 1874 | ret_val = e1e_rphy(hw, agc_reg_array[i], &phy_data); |
| 1875 | if (ret_val) |
| 1876 | return ret_val; |
| 1877 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1878 | /* |
| 1879 | * Getting bits 15:9, which represent the combination of |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 1880 | * coarse and fine gain values. The result is a number |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1881 | * that can be put into the lookup table to obtain the |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1882 | * approximate cable length. |
| 1883 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1884 | cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) & |
| 1885 | IGP02E1000_AGC_LENGTH_MASK; |
| 1886 | |
| 1887 | /* Array index bound check. */ |
| 1888 | if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) || |
| 1889 | (cur_agc_index == 0)) |
| 1890 | return -E1000_ERR_PHY; |
| 1891 | |
| 1892 | /* Remove min & max AGC values from calculation. */ |
| 1893 | if (e1000_igp_2_cable_length_table[min_agc_index] > |
| 1894 | e1000_igp_2_cable_length_table[cur_agc_index]) |
| 1895 | min_agc_index = cur_agc_index; |
| 1896 | if (e1000_igp_2_cable_length_table[max_agc_index] < |
| 1897 | e1000_igp_2_cable_length_table[cur_agc_index]) |
| 1898 | max_agc_index = cur_agc_index; |
| 1899 | |
| 1900 | agc_value += e1000_igp_2_cable_length_table[cur_agc_index]; |
| 1901 | } |
| 1902 | |
| 1903 | agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] + |
| 1904 | e1000_igp_2_cable_length_table[max_agc_index]); |
| 1905 | agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2); |
| 1906 | |
| 1907 | /* Calculate cable length with the error range of +/- 10 meters. */ |
| 1908 | phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ? |
| 1909 | (agc_value - IGP02E1000_AGC_RANGE) : 0; |
| 1910 | phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE; |
| 1911 | |
| 1912 | phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2; |
| 1913 | |
| 1914 | return ret_val; |
| 1915 | } |
| 1916 | |
| 1917 | /** |
| 1918 | * e1000e_get_phy_info_m88 - Retrieve PHY information |
| 1919 | * @hw: pointer to the HW structure |
| 1920 | * |
| 1921 | * Valid for only copper links. Read the PHY status register (sticky read) |
| 1922 | * to verify that link is up. Read the PHY special control register to |
| 1923 | * determine the polarity and 10base-T extended distance. Read the PHY |
| 1924 | * special status register to determine MDI/MDIx and current speed. If |
| 1925 | * speed is 1000, then determine cable length, local and remote receiver. |
| 1926 | **/ |
| 1927 | s32 e1000e_get_phy_info_m88(struct e1000_hw *hw) |
| 1928 | { |
| 1929 | struct e1000_phy_info *phy = &hw->phy; |
| 1930 | s32 ret_val; |
| 1931 | u16 phy_data; |
| 1932 | bool link; |
| 1933 | |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 1934 | if (phy->media_type != e1000_media_type_copper) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1935 | e_dbg("Phy info is only valid for copper media\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1936 | return -E1000_ERR_CONFIG; |
| 1937 | } |
| 1938 | |
| 1939 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 1940 | if (ret_val) |
| 1941 | return ret_val; |
| 1942 | |
| 1943 | if (!link) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1944 | e_dbg("Phy info is only valid if link is up\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1945 | return -E1000_ERR_CONFIG; |
| 1946 | } |
| 1947 | |
| 1948 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); |
| 1949 | if (ret_val) |
| 1950 | return ret_val; |
| 1951 | |
| 1952 | phy->polarity_correction = (phy_data & |
| 1953 | M88E1000_PSCR_POLARITY_REVERSAL); |
| 1954 | |
| 1955 | ret_val = e1000_check_polarity_m88(hw); |
| 1956 | if (ret_val) |
| 1957 | return ret_val; |
| 1958 | |
| 1959 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_STATUS, &phy_data); |
| 1960 | if (ret_val) |
| 1961 | return ret_val; |
| 1962 | |
| 1963 | phy->is_mdix = (phy_data & M88E1000_PSSR_MDIX); |
| 1964 | |
| 1965 | if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) { |
| 1966 | ret_val = e1000_get_cable_length(hw); |
| 1967 | if (ret_val) |
| 1968 | return ret_val; |
| 1969 | |
| 1970 | ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &phy_data); |
| 1971 | if (ret_val) |
| 1972 | return ret_val; |
| 1973 | |
| 1974 | phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS) |
| 1975 | ? e1000_1000t_rx_status_ok |
| 1976 | : e1000_1000t_rx_status_not_ok; |
| 1977 | |
| 1978 | phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS) |
| 1979 | ? e1000_1000t_rx_status_ok |
| 1980 | : e1000_1000t_rx_status_not_ok; |
| 1981 | } else { |
| 1982 | /* Set values to "undefined" */ |
| 1983 | phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; |
| 1984 | phy->local_rx = e1000_1000t_rx_status_undefined; |
| 1985 | phy->remote_rx = e1000_1000t_rx_status_undefined; |
| 1986 | } |
| 1987 | |
| 1988 | return ret_val; |
| 1989 | } |
| 1990 | |
| 1991 | /** |
| 1992 | * e1000e_get_phy_info_igp - Retrieve igp PHY information |
| 1993 | * @hw: pointer to the HW structure |
| 1994 | * |
| 1995 | * Read PHY status to determine if link is up. If link is up, then |
| 1996 | * set/determine 10base-T extended distance and polarity correction. Read |
| 1997 | * PHY port status to determine MDI/MDIx and speed. Based on the speed, |
| 1998 | * determine on the cable length, local and remote receiver. |
| 1999 | **/ |
| 2000 | s32 e1000e_get_phy_info_igp(struct e1000_hw *hw) |
| 2001 | { |
| 2002 | struct e1000_phy_info *phy = &hw->phy; |
| 2003 | s32 ret_val; |
| 2004 | u16 data; |
| 2005 | bool link; |
| 2006 | |
| 2007 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 2008 | if (ret_val) |
| 2009 | return ret_val; |
| 2010 | |
| 2011 | if (!link) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2012 | e_dbg("Phy info is only valid if link is up\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2013 | return -E1000_ERR_CONFIG; |
| 2014 | } |
| 2015 | |
Bruce Allan | 564ea9b | 2009-11-20 23:26:44 +0000 | [diff] [blame] | 2016 | phy->polarity_correction = true; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2017 | |
| 2018 | ret_val = e1000_check_polarity_igp(hw); |
| 2019 | if (ret_val) |
| 2020 | return ret_val; |
| 2021 | |
| 2022 | ret_val = e1e_rphy(hw, IGP01E1000_PHY_PORT_STATUS, &data); |
| 2023 | if (ret_val) |
| 2024 | return ret_val; |
| 2025 | |
| 2026 | phy->is_mdix = (data & IGP01E1000_PSSR_MDIX); |
| 2027 | |
| 2028 | if ((data & IGP01E1000_PSSR_SPEED_MASK) == |
| 2029 | IGP01E1000_PSSR_SPEED_1000MBPS) { |
| 2030 | ret_val = e1000_get_cable_length(hw); |
| 2031 | if (ret_val) |
| 2032 | return ret_val; |
| 2033 | |
| 2034 | ret_val = e1e_rphy(hw, PHY_1000T_STATUS, &data); |
| 2035 | if (ret_val) |
| 2036 | return ret_val; |
| 2037 | |
| 2038 | phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS) |
| 2039 | ? e1000_1000t_rx_status_ok |
| 2040 | : e1000_1000t_rx_status_not_ok; |
| 2041 | |
| 2042 | phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS) |
| 2043 | ? e1000_1000t_rx_status_ok |
| 2044 | : e1000_1000t_rx_status_not_ok; |
| 2045 | } else { |
| 2046 | phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; |
| 2047 | phy->local_rx = e1000_1000t_rx_status_undefined; |
| 2048 | phy->remote_rx = e1000_1000t_rx_status_undefined; |
| 2049 | } |
| 2050 | |
| 2051 | return ret_val; |
| 2052 | } |
| 2053 | |
| 2054 | /** |
Bruce Allan | 0be8401 | 2009-12-02 17:03:18 +0000 | [diff] [blame] | 2055 | * e1000_get_phy_info_ife - Retrieves various IFE PHY states |
| 2056 | * @hw: pointer to the HW structure |
| 2057 | * |
| 2058 | * Populates "phy" structure with various feature states. |
| 2059 | **/ |
| 2060 | s32 e1000_get_phy_info_ife(struct e1000_hw *hw) |
| 2061 | { |
| 2062 | struct e1000_phy_info *phy = &hw->phy; |
| 2063 | s32 ret_val; |
| 2064 | u16 data; |
| 2065 | bool link; |
| 2066 | |
| 2067 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 2068 | if (ret_val) |
| 2069 | goto out; |
| 2070 | |
| 2071 | if (!link) { |
| 2072 | e_dbg("Phy info is only valid if link is up\n"); |
| 2073 | ret_val = -E1000_ERR_CONFIG; |
| 2074 | goto out; |
| 2075 | } |
| 2076 | |
| 2077 | ret_val = e1e_rphy(hw, IFE_PHY_SPECIAL_CONTROL, &data); |
| 2078 | if (ret_val) |
| 2079 | goto out; |
| 2080 | phy->polarity_correction = (data & IFE_PSC_AUTO_POLARITY_DISABLE) |
| 2081 | ? false : true; |
| 2082 | |
| 2083 | if (phy->polarity_correction) { |
| 2084 | ret_val = e1000_check_polarity_ife(hw); |
| 2085 | if (ret_val) |
| 2086 | goto out; |
| 2087 | } else { |
| 2088 | /* Polarity is forced */ |
| 2089 | phy->cable_polarity = (data & IFE_PSC_FORCE_POLARITY) |
| 2090 | ? e1000_rev_polarity_reversed |
| 2091 | : e1000_rev_polarity_normal; |
| 2092 | } |
| 2093 | |
| 2094 | ret_val = e1e_rphy(hw, IFE_PHY_MDIX_CONTROL, &data); |
| 2095 | if (ret_val) |
| 2096 | goto out; |
| 2097 | |
| 2098 | phy->is_mdix = (data & IFE_PMC_MDIX_STATUS) ? true : false; |
| 2099 | |
| 2100 | /* The following parameters are undefined for 10/100 operation. */ |
| 2101 | phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; |
| 2102 | phy->local_rx = e1000_1000t_rx_status_undefined; |
| 2103 | phy->remote_rx = e1000_1000t_rx_status_undefined; |
| 2104 | |
| 2105 | out: |
| 2106 | return ret_val; |
| 2107 | } |
| 2108 | |
| 2109 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2110 | * e1000e_phy_sw_reset - PHY software reset |
| 2111 | * @hw: pointer to the HW structure |
| 2112 | * |
| 2113 | * Does a software reset of the PHY by reading the PHY control register and |
| 2114 | * setting/write the control register reset bit to the PHY. |
| 2115 | **/ |
| 2116 | s32 e1000e_phy_sw_reset(struct e1000_hw *hw) |
| 2117 | { |
| 2118 | s32 ret_val; |
| 2119 | u16 phy_ctrl; |
| 2120 | |
| 2121 | ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_ctrl); |
| 2122 | if (ret_val) |
| 2123 | return ret_val; |
| 2124 | |
| 2125 | phy_ctrl |= MII_CR_RESET; |
| 2126 | ret_val = e1e_wphy(hw, PHY_CONTROL, phy_ctrl); |
| 2127 | if (ret_val) |
| 2128 | return ret_val; |
| 2129 | |
| 2130 | udelay(1); |
| 2131 | |
| 2132 | return ret_val; |
| 2133 | } |
| 2134 | |
| 2135 | /** |
| 2136 | * e1000e_phy_hw_reset_generic - PHY hardware reset |
| 2137 | * @hw: pointer to the HW structure |
| 2138 | * |
| 2139 | * Verify the reset block is not blocking us from resetting. Acquire |
| 2140 | * semaphore (if necessary) and read/set/write the device control reset |
| 2141 | * bit in the PHY. Wait the appropriate delay time for the device to |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 2142 | * reset and release the semaphore (if necessary). |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2143 | **/ |
| 2144 | s32 e1000e_phy_hw_reset_generic(struct e1000_hw *hw) |
| 2145 | { |
| 2146 | struct e1000_phy_info *phy = &hw->phy; |
| 2147 | s32 ret_val; |
| 2148 | u32 ctrl; |
| 2149 | |
| 2150 | ret_val = e1000_check_reset_block(hw); |
| 2151 | if (ret_val) |
| 2152 | return 0; |
| 2153 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2154 | ret_val = phy->ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2155 | if (ret_val) |
| 2156 | return ret_val; |
| 2157 | |
| 2158 | ctrl = er32(CTRL); |
| 2159 | ew32(CTRL, ctrl | E1000_CTRL_PHY_RST); |
| 2160 | e1e_flush(); |
| 2161 | |
| 2162 | udelay(phy->reset_delay_us); |
| 2163 | |
| 2164 | ew32(CTRL, ctrl); |
| 2165 | e1e_flush(); |
| 2166 | |
| 2167 | udelay(150); |
| 2168 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2169 | phy->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2170 | |
| 2171 | return e1000_get_phy_cfg_done(hw); |
| 2172 | } |
| 2173 | |
| 2174 | /** |
| 2175 | * e1000e_get_cfg_done - Generic configuration done |
| 2176 | * @hw: pointer to the HW structure |
| 2177 | * |
| 2178 | * Generic function to wait 10 milli-seconds for configuration to complete |
| 2179 | * and return success. |
| 2180 | **/ |
| 2181 | s32 e1000e_get_cfg_done(struct e1000_hw *hw) |
| 2182 | { |
| 2183 | mdelay(10); |
| 2184 | return 0; |
| 2185 | } |
| 2186 | |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2187 | /** |
| 2188 | * e1000e_phy_init_script_igp3 - Inits the IGP3 PHY |
| 2189 | * @hw: pointer to the HW structure |
| 2190 | * |
| 2191 | * Initializes a Intel Gigabit PHY3 when an EEPROM is not present. |
| 2192 | **/ |
| 2193 | s32 e1000e_phy_init_script_igp3(struct e1000_hw *hw) |
| 2194 | { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2195 | e_dbg("Running IGP 3 PHY init script\n"); |
Bruce Allan | f4187b5 | 2008-08-26 18:36:50 -0700 | [diff] [blame] | 2196 | |
| 2197 | /* PHY init IGP 3 */ |
| 2198 | /* Enable rise/fall, 10-mode work in class-A */ |
| 2199 | e1e_wphy(hw, 0x2F5B, 0x9018); |
| 2200 | /* Remove all caps from Replica path filter */ |
| 2201 | e1e_wphy(hw, 0x2F52, 0x0000); |
| 2202 | /* Bias trimming for ADC, AFE and Driver (Default) */ |
| 2203 | e1e_wphy(hw, 0x2FB1, 0x8B24); |
| 2204 | /* Increase Hybrid poly bias */ |
| 2205 | e1e_wphy(hw, 0x2FB2, 0xF8F0); |
| 2206 | /* Add 4% to Tx amplitude in Gig mode */ |
| 2207 | e1e_wphy(hw, 0x2010, 0x10B0); |
| 2208 | /* Disable trimming (TTT) */ |
| 2209 | e1e_wphy(hw, 0x2011, 0x0000); |
| 2210 | /* Poly DC correction to 94.6% + 2% for all channels */ |
| 2211 | e1e_wphy(hw, 0x20DD, 0x249A); |
| 2212 | /* ABS DC correction to 95.9% */ |
| 2213 | e1e_wphy(hw, 0x20DE, 0x00D3); |
| 2214 | /* BG temp curve trim */ |
| 2215 | e1e_wphy(hw, 0x28B4, 0x04CE); |
| 2216 | /* Increasing ADC OPAMP stage 1 currents to max */ |
| 2217 | e1e_wphy(hw, 0x2F70, 0x29E4); |
| 2218 | /* Force 1000 ( required for enabling PHY regs configuration) */ |
| 2219 | e1e_wphy(hw, 0x0000, 0x0140); |
| 2220 | /* Set upd_freq to 6 */ |
| 2221 | e1e_wphy(hw, 0x1F30, 0x1606); |
| 2222 | /* Disable NPDFE */ |
| 2223 | e1e_wphy(hw, 0x1F31, 0xB814); |
| 2224 | /* Disable adaptive fixed FFE (Default) */ |
| 2225 | e1e_wphy(hw, 0x1F35, 0x002A); |
| 2226 | /* Enable FFE hysteresis */ |
| 2227 | e1e_wphy(hw, 0x1F3E, 0x0067); |
| 2228 | /* Fixed FFE for short cable lengths */ |
| 2229 | e1e_wphy(hw, 0x1F54, 0x0065); |
| 2230 | /* Fixed FFE for medium cable lengths */ |
| 2231 | e1e_wphy(hw, 0x1F55, 0x002A); |
| 2232 | /* Fixed FFE for long cable lengths */ |
| 2233 | e1e_wphy(hw, 0x1F56, 0x002A); |
| 2234 | /* Enable Adaptive Clip Threshold */ |
| 2235 | e1e_wphy(hw, 0x1F72, 0x3FB0); |
| 2236 | /* AHT reset limit to 1 */ |
| 2237 | e1e_wphy(hw, 0x1F76, 0xC0FF); |
| 2238 | /* Set AHT master delay to 127 msec */ |
| 2239 | e1e_wphy(hw, 0x1F77, 0x1DEC); |
| 2240 | /* Set scan bits for AHT */ |
| 2241 | e1e_wphy(hw, 0x1F78, 0xF9EF); |
| 2242 | /* Set AHT Preset bits */ |
| 2243 | e1e_wphy(hw, 0x1F79, 0x0210); |
| 2244 | /* Change integ_factor of channel A to 3 */ |
| 2245 | e1e_wphy(hw, 0x1895, 0x0003); |
| 2246 | /* Change prop_factor of channels BCD to 8 */ |
| 2247 | e1e_wphy(hw, 0x1796, 0x0008); |
| 2248 | /* Change cg_icount + enable integbp for channels BCD */ |
| 2249 | e1e_wphy(hw, 0x1798, 0xD008); |
| 2250 | /* |
| 2251 | * Change cg_icount + enable integbp + change prop_factor_master |
| 2252 | * to 8 for channel A |
| 2253 | */ |
| 2254 | e1e_wphy(hw, 0x1898, 0xD918); |
| 2255 | /* Disable AHT in Slave mode on channel A */ |
| 2256 | e1e_wphy(hw, 0x187A, 0x0800); |
| 2257 | /* |
| 2258 | * Enable LPLU and disable AN to 1000 in non-D0a states, |
| 2259 | * Enable SPD+B2B |
| 2260 | */ |
| 2261 | e1e_wphy(hw, 0x0019, 0x008D); |
| 2262 | /* Enable restart AN on an1000_dis change */ |
| 2263 | e1e_wphy(hw, 0x001B, 0x2080); |
| 2264 | /* Enable wh_fifo read clock in 10/100 modes */ |
| 2265 | e1e_wphy(hw, 0x0014, 0x0045); |
| 2266 | /* Restart AN, Speed selection is 1000 */ |
| 2267 | e1e_wphy(hw, 0x0000, 0x1340); |
| 2268 | |
| 2269 | return 0; |
| 2270 | } |
| 2271 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2272 | /* Internal function pointers */ |
| 2273 | |
| 2274 | /** |
| 2275 | * e1000_get_phy_cfg_done - Generic PHY configuration done |
| 2276 | * @hw: pointer to the HW structure |
| 2277 | * |
| 2278 | * Return success if silicon family did not implement a family specific |
| 2279 | * get_cfg_done function. |
| 2280 | **/ |
| 2281 | static s32 e1000_get_phy_cfg_done(struct e1000_hw *hw) |
| 2282 | { |
| 2283 | if (hw->phy.ops.get_cfg_done) |
| 2284 | return hw->phy.ops.get_cfg_done(hw); |
| 2285 | |
| 2286 | return 0; |
| 2287 | } |
| 2288 | |
| 2289 | /** |
| 2290 | * e1000_phy_force_speed_duplex - Generic force PHY speed/duplex |
| 2291 | * @hw: pointer to the HW structure |
| 2292 | * |
| 2293 | * When the silicon family has not implemented a forced speed/duplex |
| 2294 | * function for the PHY, simply return 0. |
| 2295 | **/ |
| 2296 | static s32 e1000_phy_force_speed_duplex(struct e1000_hw *hw) |
| 2297 | { |
| 2298 | if (hw->phy.ops.force_speed_duplex) |
| 2299 | return hw->phy.ops.force_speed_duplex(hw); |
| 2300 | |
| 2301 | return 0; |
| 2302 | } |
| 2303 | |
| 2304 | /** |
| 2305 | * e1000e_get_phy_type_from_id - Get PHY type from id |
| 2306 | * @phy_id: phy_id read from the phy |
| 2307 | * |
| 2308 | * Returns the phy type from the id. |
| 2309 | **/ |
| 2310 | enum e1000_phy_type e1000e_get_phy_type_from_id(u32 phy_id) |
| 2311 | { |
| 2312 | enum e1000_phy_type phy_type = e1000_phy_unknown; |
| 2313 | |
| 2314 | switch (phy_id) { |
| 2315 | case M88E1000_I_PHY_ID: |
| 2316 | case M88E1000_E_PHY_ID: |
| 2317 | case M88E1111_I_PHY_ID: |
| 2318 | case M88E1011_I_PHY_ID: |
| 2319 | phy_type = e1000_phy_m88; |
| 2320 | break; |
| 2321 | case IGP01E1000_I_PHY_ID: /* IGP 1 & 2 share this */ |
| 2322 | phy_type = e1000_phy_igp_2; |
| 2323 | break; |
| 2324 | case GG82563_E_PHY_ID: |
| 2325 | phy_type = e1000_phy_gg82563; |
| 2326 | break; |
| 2327 | case IGP03E1000_E_PHY_ID: |
| 2328 | phy_type = e1000_phy_igp_3; |
| 2329 | break; |
| 2330 | case IFE_E_PHY_ID: |
| 2331 | case IFE_PLUS_E_PHY_ID: |
| 2332 | case IFE_C_E_PHY_ID: |
| 2333 | phy_type = e1000_phy_ife; |
| 2334 | break; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2335 | case BME1000_E_PHY_ID: |
| 2336 | case BME1000_E_PHY_ID_R2: |
| 2337 | phy_type = e1000_phy_bm; |
| 2338 | break; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2339 | case I82578_E_PHY_ID: |
| 2340 | phy_type = e1000_phy_82578; |
| 2341 | break; |
| 2342 | case I82577_E_PHY_ID: |
| 2343 | phy_type = e1000_phy_82577; |
| 2344 | break; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2345 | default: |
| 2346 | phy_type = e1000_phy_unknown; |
| 2347 | break; |
| 2348 | } |
| 2349 | return phy_type; |
| 2350 | } |
| 2351 | |
| 2352 | /** |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2353 | * e1000e_determine_phy_address - Determines PHY address. |
| 2354 | * @hw: pointer to the HW structure |
| 2355 | * |
| 2356 | * This uses a trial and error method to loop through possible PHY |
| 2357 | * addresses. It tests each by reading the PHY ID registers and |
| 2358 | * checking for a match. |
| 2359 | **/ |
| 2360 | s32 e1000e_determine_phy_address(struct e1000_hw *hw) |
| 2361 | { |
| 2362 | s32 ret_val = -E1000_ERR_PHY_TYPE; |
Bruce Allan | 5eb6f3c | 2009-12-02 17:02:43 +0000 | [diff] [blame] | 2363 | u32 phy_addr = 0; |
| 2364 | u32 i; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2365 | enum e1000_phy_type phy_type = e1000_phy_unknown; |
| 2366 | |
Bruce Allan | 5eb6f3c | 2009-12-02 17:02:43 +0000 | [diff] [blame] | 2367 | hw->phy.id = phy_type; |
| 2368 | |
| 2369 | for (phy_addr = 0; phy_addr < E1000_MAX_PHY_ADDR; phy_addr++) { |
| 2370 | hw->phy.addr = phy_addr; |
| 2371 | i = 0; |
| 2372 | |
| 2373 | do { |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2374 | e1000e_get_phy_id(hw); |
| 2375 | phy_type = e1000e_get_phy_type_from_id(hw->phy.id); |
| 2376 | |
Bruce Allan | 5eb6f3c | 2009-12-02 17:02:43 +0000 | [diff] [blame] | 2377 | /* |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2378 | * If phy_type is valid, break - we found our |
| 2379 | * PHY address |
| 2380 | */ |
| 2381 | if (phy_type != e1000_phy_unknown) { |
| 2382 | ret_val = 0; |
Bruce Allan | 5eb6f3c | 2009-12-02 17:02:43 +0000 | [diff] [blame] | 2383 | goto out; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2384 | } |
Bruce Allan | 5eb6f3c | 2009-12-02 17:02:43 +0000 | [diff] [blame] | 2385 | msleep(1); |
| 2386 | i++; |
| 2387 | } while (i < 10); |
| 2388 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2389 | |
Bruce Allan | 5eb6f3c | 2009-12-02 17:02:43 +0000 | [diff] [blame] | 2390 | out: |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2391 | return ret_val; |
| 2392 | } |
| 2393 | |
| 2394 | /** |
| 2395 | * e1000_get_phy_addr_for_bm_page - Retrieve PHY page address |
| 2396 | * @page: page to access |
| 2397 | * |
| 2398 | * Returns the phy address for the page requested. |
| 2399 | **/ |
| 2400 | static u32 e1000_get_phy_addr_for_bm_page(u32 page, u32 reg) |
| 2401 | { |
| 2402 | u32 phy_addr = 2; |
| 2403 | |
| 2404 | if ((page >= 768) || (page == 0 && reg == 25) || (reg == 31)) |
| 2405 | phy_addr = 1; |
| 2406 | |
| 2407 | return phy_addr; |
| 2408 | } |
| 2409 | |
| 2410 | /** |
| 2411 | * e1000e_write_phy_reg_bm - Write BM PHY register |
| 2412 | * @hw: pointer to the HW structure |
| 2413 | * @offset: register offset to write to |
| 2414 | * @data: data to write at register offset |
| 2415 | * |
| 2416 | * Acquires semaphore, if necessary, then writes the data to PHY register |
| 2417 | * at the offset. Release any acquired semaphores before exiting. |
| 2418 | **/ |
| 2419 | s32 e1000e_write_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 data) |
| 2420 | { |
| 2421 | s32 ret_val; |
| 2422 | u32 page_select = 0; |
| 2423 | u32 page = offset >> IGP_PAGE_SHIFT; |
| 2424 | u32 page_shift = 0; |
| 2425 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2426 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2427 | if (ret_val) |
| 2428 | return ret_val; |
| 2429 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2430 | /* Page 800 works differently than the rest so it has its own func */ |
| 2431 | if (page == BM_WUC_PAGE) { |
| 2432 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data, |
| 2433 | false); |
| 2434 | goto out; |
| 2435 | } |
| 2436 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2437 | hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset); |
| 2438 | |
| 2439 | if (offset > MAX_PHY_MULTI_PAGE_REG) { |
| 2440 | /* |
| 2441 | * Page select is register 31 for phy address 1 and 22 for |
| 2442 | * phy address 2 and 3. Page select is shifted only for |
| 2443 | * phy address 1. |
| 2444 | */ |
| 2445 | if (hw->phy.addr == 1) { |
| 2446 | page_shift = IGP_PAGE_SHIFT; |
| 2447 | page_select = IGP01E1000_PHY_PAGE_SELECT; |
| 2448 | } else { |
| 2449 | page_shift = 0; |
| 2450 | page_select = BM_PHY_PAGE_SELECT; |
| 2451 | } |
| 2452 | |
| 2453 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2454 | ret_val = e1000e_write_phy_reg_mdic(hw, page_select, |
| 2455 | (page << page_shift)); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2456 | if (ret_val) |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2457 | goto out; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2458 | } |
| 2459 | |
| 2460 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 2461 | data); |
| 2462 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2463 | out: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2464 | hw->phy.ops.release(hw); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2465 | return ret_val; |
| 2466 | } |
| 2467 | |
| 2468 | /** |
| 2469 | * e1000e_read_phy_reg_bm - Read BM PHY register |
| 2470 | * @hw: pointer to the HW structure |
| 2471 | * @offset: register offset to be read |
| 2472 | * @data: pointer to the read data |
| 2473 | * |
| 2474 | * Acquires semaphore, if necessary, then reads the PHY register at offset |
| 2475 | * and storing the retrieved information in data. Release any acquired |
| 2476 | * semaphores before exiting. |
| 2477 | **/ |
| 2478 | s32 e1000e_read_phy_reg_bm(struct e1000_hw *hw, u32 offset, u16 *data) |
| 2479 | { |
| 2480 | s32 ret_val; |
| 2481 | u32 page_select = 0; |
| 2482 | u32 page = offset >> IGP_PAGE_SHIFT; |
| 2483 | u32 page_shift = 0; |
| 2484 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2485 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2486 | if (ret_val) |
| 2487 | return ret_val; |
| 2488 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2489 | /* Page 800 works differently than the rest so it has its own func */ |
| 2490 | if (page == BM_WUC_PAGE) { |
| 2491 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data, |
| 2492 | true); |
| 2493 | goto out; |
| 2494 | } |
| 2495 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2496 | hw->phy.addr = e1000_get_phy_addr_for_bm_page(page, offset); |
| 2497 | |
| 2498 | if (offset > MAX_PHY_MULTI_PAGE_REG) { |
| 2499 | /* |
| 2500 | * Page select is register 31 for phy address 1 and 22 for |
| 2501 | * phy address 2 and 3. Page select is shifted only for |
| 2502 | * phy address 1. |
| 2503 | */ |
| 2504 | if (hw->phy.addr == 1) { |
| 2505 | page_shift = IGP_PAGE_SHIFT; |
| 2506 | page_select = IGP01E1000_PHY_PAGE_SELECT; |
| 2507 | } else { |
| 2508 | page_shift = 0; |
| 2509 | page_select = BM_PHY_PAGE_SELECT; |
| 2510 | } |
| 2511 | |
| 2512 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2513 | ret_val = e1000e_write_phy_reg_mdic(hw, page_select, |
| 2514 | (page << page_shift)); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2515 | if (ret_val) |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2516 | goto out; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2517 | } |
| 2518 | |
| 2519 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 2520 | data); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2521 | out: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2522 | hw->phy.ops.release(hw); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2523 | return ret_val; |
| 2524 | } |
| 2525 | |
| 2526 | /** |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2527 | * e1000e_read_phy_reg_bm2 - Read BM PHY register |
| 2528 | * @hw: pointer to the HW structure |
| 2529 | * @offset: register offset to be read |
| 2530 | * @data: pointer to the read data |
| 2531 | * |
| 2532 | * Acquires semaphore, if necessary, then reads the PHY register at offset |
| 2533 | * and storing the retrieved information in data. Release any acquired |
| 2534 | * semaphores before exiting. |
| 2535 | **/ |
| 2536 | s32 e1000e_read_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 *data) |
| 2537 | { |
| 2538 | s32 ret_val; |
| 2539 | u16 page = (u16)(offset >> IGP_PAGE_SHIFT); |
| 2540 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2541 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2542 | if (ret_val) |
| 2543 | return ret_val; |
| 2544 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2545 | /* Page 800 works differently than the rest so it has its own func */ |
| 2546 | if (page == BM_WUC_PAGE) { |
| 2547 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, data, |
| 2548 | true); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2549 | goto out; |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2550 | } |
| 2551 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2552 | hw->phy.addr = 1; |
| 2553 | |
| 2554 | if (offset > MAX_PHY_MULTI_PAGE_REG) { |
| 2555 | |
| 2556 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2557 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT, |
| 2558 | page); |
| 2559 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2560 | if (ret_val) |
| 2561 | goto out; |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2562 | } |
| 2563 | |
| 2564 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 2565 | data); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2566 | out: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2567 | hw->phy.ops.release(hw); |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2568 | return ret_val; |
| 2569 | } |
| 2570 | |
| 2571 | /** |
| 2572 | * e1000e_write_phy_reg_bm2 - Write BM PHY register |
| 2573 | * @hw: pointer to the HW structure |
| 2574 | * @offset: register offset to write to |
| 2575 | * @data: data to write at register offset |
| 2576 | * |
| 2577 | * Acquires semaphore, if necessary, then writes the data to PHY register |
| 2578 | * at the offset. Release any acquired semaphores before exiting. |
| 2579 | **/ |
| 2580 | s32 e1000e_write_phy_reg_bm2(struct e1000_hw *hw, u32 offset, u16 data) |
| 2581 | { |
| 2582 | s32 ret_val; |
| 2583 | u16 page = (u16)(offset >> IGP_PAGE_SHIFT); |
| 2584 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2585 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2586 | if (ret_val) |
| 2587 | return ret_val; |
| 2588 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2589 | /* Page 800 works differently than the rest so it has its own func */ |
| 2590 | if (page == BM_WUC_PAGE) { |
| 2591 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, &data, |
| 2592 | false); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2593 | goto out; |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2594 | } |
| 2595 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2596 | hw->phy.addr = 1; |
| 2597 | |
| 2598 | if (offset > MAX_PHY_MULTI_PAGE_REG) { |
| 2599 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2600 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_PHY_PAGE_SELECT, |
| 2601 | page); |
| 2602 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2603 | if (ret_val) |
| 2604 | goto out; |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2605 | } |
| 2606 | |
| 2607 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, |
| 2608 | data); |
| 2609 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2610 | out: |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2611 | hw->phy.ops.release(hw); |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2612 | return ret_val; |
| 2613 | } |
| 2614 | |
| 2615 | /** |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2616 | * e1000_access_phy_wakeup_reg_bm - Read BM PHY wakeup register |
| 2617 | * @hw: pointer to the HW structure |
| 2618 | * @offset: register offset to be read or written |
| 2619 | * @data: pointer to the data to read or write |
| 2620 | * @read: determines if operation is read or write |
| 2621 | * |
| 2622 | * Acquires semaphore, if necessary, then reads the PHY register at offset |
| 2623 | * and storing the retrieved information in data. Release any acquired |
| 2624 | * semaphores before exiting. Note that procedure to read the wakeup |
| 2625 | * registers are different. It works as such: |
| 2626 | * 1) Set page 769, register 17, bit 2 = 1 |
| 2627 | * 2) Set page to 800 for host (801 if we were manageability) |
| 2628 | * 3) Write the address using the address opcode (0x11) |
| 2629 | * 4) Read or write the data using the data opcode (0x12) |
| 2630 | * 5) Restore 769_17.2 to its original value |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2631 | * |
| 2632 | * Assumes semaphore already acquired. |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2633 | **/ |
| 2634 | static s32 e1000_access_phy_wakeup_reg_bm(struct e1000_hw *hw, u32 offset, |
| 2635 | u16 *data, bool read) |
| 2636 | { |
| 2637 | s32 ret_val; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2638 | u16 reg = BM_PHY_REG_NUM(offset); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2639 | u16 phy_reg = 0; |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2640 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2641 | /* Gig must be disabled for MDIO accesses to page 800 */ |
| 2642 | if ((hw->mac.type == e1000_pchlan) && |
| 2643 | (!(er32(PHY_CTRL) & E1000_PHY_CTRL_GBE_DISABLE))) |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2644 | e_dbg("Attempting to access page 800 while gig enabled.\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2645 | |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2646 | /* All operations in this function are phy address 1 */ |
| 2647 | hw->phy.addr = 1; |
| 2648 | |
| 2649 | /* Set page 769 */ |
| 2650 | e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, |
| 2651 | (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT)); |
| 2652 | |
| 2653 | ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &phy_reg); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2654 | if (ret_val) { |
| 2655 | e_dbg("Could not read PHY page 769\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2656 | goto out; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2657 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2658 | |
| 2659 | /* First clear bit 4 to avoid a power state change */ |
| 2660 | phy_reg &= ~(BM_WUC_HOST_WU_BIT); |
| 2661 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2662 | if (ret_val) { |
| 2663 | e_dbg("Could not clear PHY page 769 bit 4\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2664 | goto out; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2665 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2666 | |
| 2667 | /* Write bit 2 = 1, and clear bit 4 to 769_17 */ |
| 2668 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, |
| 2669 | phy_reg | BM_WUC_ENABLE_BIT); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2670 | if (ret_val) { |
| 2671 | e_dbg("Could not write PHY page 769 bit 2\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2672 | goto out; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2673 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2674 | |
| 2675 | /* Select page 800 */ |
| 2676 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, |
| 2677 | (BM_WUC_PAGE << IGP_PAGE_SHIFT)); |
| 2678 | |
| 2679 | /* Write the page 800 offset value using opcode 0x11 */ |
| 2680 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ADDRESS_OPCODE, reg); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2681 | if (ret_val) { |
| 2682 | e_dbg("Could not write address opcode to page 800\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2683 | goto out; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2684 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2685 | |
| 2686 | if (read) { |
| 2687 | /* Read the page 800 value using opcode 0x12 */ |
| 2688 | ret_val = e1000e_read_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE, |
| 2689 | data); |
| 2690 | } else { |
Bruce Allan | 5ff5b66 | 2009-12-01 15:51:11 +0000 | [diff] [blame] | 2691 | /* Write the page 800 value using opcode 0x12 */ |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2692 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_DATA_OPCODE, |
| 2693 | *data); |
| 2694 | } |
| 2695 | |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2696 | if (ret_val) { |
| 2697 | e_dbg("Could not access data value from page 800\n"); |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2698 | goto out; |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2699 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2700 | |
| 2701 | /* |
| 2702 | * Restore 769_17.2 to its original value |
| 2703 | * Set page 769 |
| 2704 | */ |
| 2705 | e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, |
| 2706 | (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT)); |
| 2707 | |
| 2708 | /* Clear 769_17.2 */ |
| 2709 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg); |
Bruce Allan | 9b71b41 | 2009-12-01 15:53:07 +0000 | [diff] [blame] | 2710 | if (ret_val) { |
| 2711 | e_dbg("Could not clear PHY page 769 bit 2\n"); |
| 2712 | goto out; |
| 2713 | } |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2714 | |
| 2715 | out: |
Bruce Allan | 97ac8ca | 2008-04-29 09:16:05 -0700 | [diff] [blame] | 2716 | return ret_val; |
| 2717 | } |
| 2718 | |
| 2719 | /** |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 2720 | * e1000_power_up_phy_copper - Restore copper link in case of PHY power down |
| 2721 | * @hw: pointer to the HW structure |
| 2722 | * |
| 2723 | * In the case of a PHY power down to save power, or to turn off link during a |
| 2724 | * driver unload, or wake on lan is not enabled, restore the link to previous |
| 2725 | * settings. |
| 2726 | **/ |
| 2727 | void e1000_power_up_phy_copper(struct e1000_hw *hw) |
| 2728 | { |
| 2729 | u16 mii_reg = 0; |
| 2730 | |
| 2731 | /* The PHY will retain its settings across a power down/up cycle */ |
| 2732 | e1e_rphy(hw, PHY_CONTROL, &mii_reg); |
| 2733 | mii_reg &= ~MII_CR_POWER_DOWN; |
| 2734 | e1e_wphy(hw, PHY_CONTROL, mii_reg); |
| 2735 | } |
| 2736 | |
| 2737 | /** |
| 2738 | * e1000_power_down_phy_copper - Restore copper link in case of PHY power down |
| 2739 | * @hw: pointer to the HW structure |
| 2740 | * |
| 2741 | * In the case of a PHY power down to save power, or to turn off link during a |
| 2742 | * driver unload, or wake on lan is not enabled, restore the link to previous |
| 2743 | * settings. |
| 2744 | **/ |
| 2745 | void e1000_power_down_phy_copper(struct e1000_hw *hw) |
| 2746 | { |
| 2747 | u16 mii_reg = 0; |
| 2748 | |
| 2749 | /* The PHY will retain its settings across a power down/up cycle */ |
| 2750 | e1e_rphy(hw, PHY_CONTROL, &mii_reg); |
| 2751 | mii_reg |= MII_CR_POWER_DOWN; |
| 2752 | e1e_wphy(hw, PHY_CONTROL, mii_reg); |
| 2753 | msleep(1); |
| 2754 | } |
| 2755 | |
| 2756 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2757 | * e1000e_commit_phy - Soft PHY reset |
| 2758 | * @hw: pointer to the HW structure |
| 2759 | * |
| 2760 | * Performs a soft PHY reset on those that apply. This is a function pointer |
| 2761 | * entry point called by drivers. |
| 2762 | **/ |
| 2763 | s32 e1000e_commit_phy(struct e1000_hw *hw) |
| 2764 | { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2765 | if (hw->phy.ops.commit) |
| 2766 | return hw->phy.ops.commit(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2767 | |
| 2768 | return 0; |
| 2769 | } |
| 2770 | |
| 2771 | /** |
| 2772 | * e1000_set_d0_lplu_state - Sets low power link up state for D0 |
| 2773 | * @hw: pointer to the HW structure |
| 2774 | * @active: boolean used to enable/disable lplu |
| 2775 | * |
| 2776 | * Success returns 0, Failure returns 1 |
| 2777 | * |
| 2778 | * The low power link up (lplu) state is set to the power management level D0 |
| 2779 | * and SmartSpeed is disabled when active is true, else clear lplu for D0 |
| 2780 | * and enable Smartspeed. LPLU and Smartspeed are mutually exclusive. LPLU |
| 2781 | * is used during Dx states where the power conservation is most important. |
| 2782 | * During driver activity, SmartSpeed should be enabled so performance is |
| 2783 | * maintained. This is a function pointer entry point called by drivers. |
| 2784 | **/ |
| 2785 | static s32 e1000_set_d0_lplu_state(struct e1000_hw *hw, bool active) |
| 2786 | { |
| 2787 | if (hw->phy.ops.set_d0_lplu_state) |
| 2788 | return hw->phy.ops.set_d0_lplu_state(hw, active); |
| 2789 | |
| 2790 | return 0; |
| 2791 | } |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2792 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2793 | /** |
| 2794 | * e1000_set_mdio_slow_mode_hv - Set slow MDIO access mode |
| 2795 | * @hw: pointer to the HW structure |
| 2796 | * @slow: true for slow mode, false for normal mode |
| 2797 | * |
| 2798 | * Assumes semaphore already acquired. |
| 2799 | **/ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2800 | s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw, bool slow) |
| 2801 | { |
| 2802 | s32 ret_val = 0; |
| 2803 | u16 data = 0; |
| 2804 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2805 | /* Set MDIO mode - page 769, register 16: 0x2580==slow, 0x2180==fast */ |
| 2806 | hw->phy.addr = 1; |
| 2807 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, |
| 2808 | (BM_PORT_CTRL_PAGE << IGP_PAGE_SHIFT)); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2809 | if (ret_val) |
| 2810 | goto out; |
| 2811 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2812 | ret_val = e1000e_write_phy_reg_mdic(hw, BM_CS_CTRL1, |
| 2813 | (0x2180 | (slow << 10))); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2814 | if (ret_val) |
| 2815 | goto out; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2816 | |
| 2817 | /* dummy read when reverting to fast mode - throw away result */ |
| 2818 | if (!slow) |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2819 | ret_val = e1000e_read_phy_reg_mdic(hw, BM_CS_CTRL1, &data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2820 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2821 | out: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2822 | return ret_val; |
| 2823 | } |
| 2824 | |
| 2825 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2826 | * __e1000_read_phy_reg_hv - Read HV PHY register |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2827 | * @hw: pointer to the HW structure |
| 2828 | * @offset: register offset to be read |
| 2829 | * @data: pointer to the read data |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2830 | * @locked: semaphore has already been acquired or not |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2831 | * |
| 2832 | * Acquires semaphore, if necessary, then reads the PHY register at offset |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2833 | * and stores the retrieved information in data. Release any acquired |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2834 | * semaphore before exiting. |
| 2835 | **/ |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2836 | static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data, |
| 2837 | bool locked) |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2838 | { |
| 2839 | s32 ret_val; |
| 2840 | u16 page = BM_PHY_REG_PAGE(offset); |
| 2841 | u16 reg = BM_PHY_REG_NUM(offset); |
| 2842 | bool in_slow_mode = false; |
| 2843 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2844 | if (!locked) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2845 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2846 | if (ret_val) |
| 2847 | return ret_val; |
| 2848 | } |
| 2849 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2850 | /* Workaround failure in MDIO access while cable is disconnected */ |
| 2851 | if ((hw->phy.type == e1000_phy_82577) && |
| 2852 | !(er32(STATUS) & E1000_STATUS_LU)) { |
| 2853 | ret_val = e1000_set_mdio_slow_mode_hv(hw, true); |
| 2854 | if (ret_val) |
| 2855 | goto out; |
| 2856 | |
| 2857 | in_slow_mode = true; |
| 2858 | } |
| 2859 | |
| 2860 | /* Page 800 works differently than the rest so it has its own func */ |
| 2861 | if (page == BM_WUC_PAGE) { |
| 2862 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, |
| 2863 | data, true); |
| 2864 | goto out; |
| 2865 | } |
| 2866 | |
| 2867 | if (page > 0 && page < HV_INTC_FC_PAGE_START) { |
| 2868 | ret_val = e1000_access_phy_debug_regs_hv(hw, offset, |
| 2869 | data, true); |
| 2870 | goto out; |
| 2871 | } |
| 2872 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2873 | hw->phy.addr = e1000_get_phy_addr_for_hv_page(page); |
| 2874 | |
| 2875 | if (page == HV_INTC_FC_PAGE_START) |
| 2876 | page = 0; |
| 2877 | |
| 2878 | if (reg > MAX_PHY_MULTI_PAGE_REG) { |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 2879 | u32 phy_addr = hw->phy.addr; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2880 | |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 2881 | hw->phy.addr = 1; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2882 | |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 2883 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2884 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 2885 | IGP01E1000_PHY_PAGE_SELECT, |
| 2886 | (page << IGP_PAGE_SHIFT)); |
| 2887 | hw->phy.addr = phy_addr; |
| 2888 | |
| 2889 | if (ret_val) |
| 2890 | goto out; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2891 | } |
| 2892 | |
| 2893 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, |
| 2894 | data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2895 | out: |
| 2896 | /* Revert to MDIO fast mode, if applicable */ |
| 2897 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 2898 | ret_val |= e1000_set_mdio_slow_mode_hv(hw, false); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2899 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2900 | if (!locked) |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2901 | hw->phy.ops.release(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2902 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2903 | return ret_val; |
| 2904 | } |
| 2905 | |
| 2906 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2907 | * e1000_read_phy_reg_hv - Read HV PHY register |
| 2908 | * @hw: pointer to the HW structure |
| 2909 | * @offset: register offset to be read |
| 2910 | * @data: pointer to the read data |
| 2911 | * |
| 2912 | * Acquires semaphore then reads the PHY register at offset and stores |
| 2913 | * the retrieved information in data. Release the acquired semaphore |
| 2914 | * before exiting. |
| 2915 | **/ |
| 2916 | s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data) |
| 2917 | { |
| 2918 | return __e1000_read_phy_reg_hv(hw, offset, data, false); |
| 2919 | } |
| 2920 | |
| 2921 | /** |
| 2922 | * e1000_read_phy_reg_hv_locked - Read HV PHY register |
| 2923 | * @hw: pointer to the HW structure |
| 2924 | * @offset: register offset to be read |
| 2925 | * @data: pointer to the read data |
| 2926 | * |
| 2927 | * Reads the PHY register at offset and stores the retrieved information |
| 2928 | * in data. Assumes semaphore already acquired. |
| 2929 | **/ |
| 2930 | s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data) |
| 2931 | { |
| 2932 | return __e1000_read_phy_reg_hv(hw, offset, data, true); |
| 2933 | } |
| 2934 | |
| 2935 | /** |
| 2936 | * __e1000_write_phy_reg_hv - Write HV PHY register |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2937 | * @hw: pointer to the HW structure |
| 2938 | * @offset: register offset to write to |
| 2939 | * @data: data to write at register offset |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2940 | * @locked: semaphore has already been acquired or not |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2941 | * |
| 2942 | * Acquires semaphore, if necessary, then writes the data to PHY register |
| 2943 | * at the offset. Release any acquired semaphores before exiting. |
| 2944 | **/ |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2945 | static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data, |
| 2946 | bool locked) |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2947 | { |
| 2948 | s32 ret_val; |
| 2949 | u16 page = BM_PHY_REG_PAGE(offset); |
| 2950 | u16 reg = BM_PHY_REG_NUM(offset); |
| 2951 | bool in_slow_mode = false; |
| 2952 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2953 | if (!locked) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2954 | ret_val = hw->phy.ops.acquire(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 2955 | if (ret_val) |
| 2956 | return ret_val; |
| 2957 | } |
| 2958 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2959 | /* Workaround failure in MDIO access while cable is disconnected */ |
| 2960 | if ((hw->phy.type == e1000_phy_82577) && |
| 2961 | !(er32(STATUS) & E1000_STATUS_LU)) { |
| 2962 | ret_val = e1000_set_mdio_slow_mode_hv(hw, true); |
| 2963 | if (ret_val) |
| 2964 | goto out; |
| 2965 | |
| 2966 | in_slow_mode = true; |
| 2967 | } |
| 2968 | |
| 2969 | /* Page 800 works differently than the rest so it has its own func */ |
| 2970 | if (page == BM_WUC_PAGE) { |
| 2971 | ret_val = e1000_access_phy_wakeup_reg_bm(hw, offset, |
| 2972 | &data, false); |
| 2973 | goto out; |
| 2974 | } |
| 2975 | |
| 2976 | if (page > 0 && page < HV_INTC_FC_PAGE_START) { |
| 2977 | ret_val = e1000_access_phy_debug_regs_hv(hw, offset, |
| 2978 | &data, false); |
| 2979 | goto out; |
| 2980 | } |
| 2981 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2982 | hw->phy.addr = e1000_get_phy_addr_for_hv_page(page); |
| 2983 | |
| 2984 | if (page == HV_INTC_FC_PAGE_START) |
| 2985 | page = 0; |
| 2986 | |
| 2987 | /* |
| 2988 | * Workaround MDIO accesses being disabled after entering IEEE Power |
| 2989 | * Down (whenever bit 11 of the PHY Control register is set) |
| 2990 | */ |
| 2991 | if ((hw->phy.type == e1000_phy_82578) && |
| 2992 | (hw->phy.revision >= 1) && |
| 2993 | (hw->phy.addr == 2) && |
| 2994 | ((MAX_PHY_REG_ADDRESS & reg) == 0) && |
| 2995 | (data & (1 << 11))) { |
| 2996 | u16 data2 = 0x7EFF; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 2997 | ret_val = e1000_access_phy_debug_regs_hv(hw, (1 << 6) | 0x3, |
| 2998 | &data2, false); |
| 2999 | if (ret_val) |
| 3000 | goto out; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3001 | } |
| 3002 | |
| 3003 | if (reg > MAX_PHY_MULTI_PAGE_REG) { |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 3004 | u32 phy_addr = hw->phy.addr; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3005 | |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 3006 | hw->phy.addr = 1; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3007 | |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 3008 | /* Page is shifted left, PHY expects (page x 32) */ |
| 3009 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 3010 | IGP01E1000_PHY_PAGE_SELECT, |
| 3011 | (page << IGP_PAGE_SHIFT)); |
| 3012 | hw->phy.addr = phy_addr; |
| 3013 | |
| 3014 | if (ret_val) |
| 3015 | goto out; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3016 | } |
| 3017 | |
| 3018 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, |
| 3019 | data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3020 | |
| 3021 | out: |
| 3022 | /* Revert to MDIO fast mode, if applicable */ |
| 3023 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) |
Bruce Allan | 842ec8b | 2009-11-19 12:34:40 +0000 | [diff] [blame] | 3024 | ret_val |= e1000_set_mdio_slow_mode_hv(hw, false); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3025 | |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 3026 | if (!locked) |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3027 | hw->phy.ops.release(hw); |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 3028 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3029 | return ret_val; |
| 3030 | } |
| 3031 | |
| 3032 | /** |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 3033 | * e1000_write_phy_reg_hv - Write HV PHY register |
| 3034 | * @hw: pointer to the HW structure |
| 3035 | * @offset: register offset to write to |
| 3036 | * @data: data to write at register offset |
| 3037 | * |
| 3038 | * Acquires semaphore then writes the data to PHY register at the offset. |
| 3039 | * Release the acquired semaphores before exiting. |
| 3040 | **/ |
| 3041 | s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data) |
| 3042 | { |
| 3043 | return __e1000_write_phy_reg_hv(hw, offset, data, false); |
| 3044 | } |
| 3045 | |
| 3046 | /** |
| 3047 | * e1000_write_phy_reg_hv_locked - Write HV PHY register |
| 3048 | * @hw: pointer to the HW structure |
| 3049 | * @offset: register offset to write to |
| 3050 | * @data: data to write at register offset |
| 3051 | * |
| 3052 | * Writes the data to PHY register at the offset. Assumes semaphore |
| 3053 | * already acquired. |
| 3054 | **/ |
| 3055 | s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data) |
| 3056 | { |
| 3057 | return __e1000_write_phy_reg_hv(hw, offset, data, true); |
| 3058 | } |
| 3059 | |
| 3060 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3061 | * e1000_get_phy_addr_for_hv_page - Get PHY adrress based on page |
| 3062 | * @page: page to be accessed |
| 3063 | **/ |
| 3064 | static u32 e1000_get_phy_addr_for_hv_page(u32 page) |
| 3065 | { |
| 3066 | u32 phy_addr = 2; |
| 3067 | |
| 3068 | if (page >= HV_INTC_FC_PAGE_START) |
| 3069 | phy_addr = 1; |
| 3070 | |
| 3071 | return phy_addr; |
| 3072 | } |
| 3073 | |
| 3074 | /** |
| 3075 | * e1000_access_phy_debug_regs_hv - Read HV PHY vendor specific high registers |
| 3076 | * @hw: pointer to the HW structure |
| 3077 | * @offset: register offset to be read or written |
| 3078 | * @data: pointer to the data to be read or written |
| 3079 | * @read: determines if operation is read or written |
| 3080 | * |
Bruce Allan | 5ccdcec | 2009-10-26 11:24:02 +0000 | [diff] [blame] | 3081 | * Reads the PHY register at offset and stores the retreived information |
| 3082 | * in data. Assumes semaphore already acquired. Note that the procedure |
| 3083 | * to read these regs uses the address port and data port to read/write. |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3084 | **/ |
| 3085 | static s32 e1000_access_phy_debug_regs_hv(struct e1000_hw *hw, u32 offset, |
| 3086 | u16 *data, bool read) |
| 3087 | { |
| 3088 | s32 ret_val; |
| 3089 | u32 addr_reg = 0; |
| 3090 | u32 data_reg = 0; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3091 | |
| 3092 | /* This takes care of the difference with desktop vs mobile phy */ |
| 3093 | addr_reg = (hw->phy.type == e1000_phy_82578) ? |
| 3094 | I82578_ADDR_REG : I82577_ADDR_REG; |
| 3095 | data_reg = addr_reg + 1; |
| 3096 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3097 | /* All operations in this function are phy address 2 */ |
| 3098 | hw->phy.addr = 2; |
| 3099 | |
| 3100 | /* masking with 0x3F to remove the page from offset */ |
| 3101 | ret_val = e1000e_write_phy_reg_mdic(hw, addr_reg, (u16)offset & 0x3F); |
| 3102 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3103 | e_dbg("Could not write PHY the HV address register\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3104 | goto out; |
| 3105 | } |
| 3106 | |
| 3107 | /* Read or write the data value next */ |
| 3108 | if (read) |
| 3109 | ret_val = e1000e_read_phy_reg_mdic(hw, data_reg, data); |
| 3110 | else |
| 3111 | ret_val = e1000e_write_phy_reg_mdic(hw, data_reg, *data); |
| 3112 | |
| 3113 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3114 | e_dbg("Could not read data value from HV data register\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3115 | goto out; |
| 3116 | } |
| 3117 | |
| 3118 | out: |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3119 | return ret_val; |
| 3120 | } |
| 3121 | |
| 3122 | /** |
| 3123 | * e1000_link_stall_workaround_hv - Si workaround |
| 3124 | * @hw: pointer to the HW structure |
| 3125 | * |
| 3126 | * This function works around a Si bug where the link partner can get |
| 3127 | * a link up indication before the PHY does. If small packets are sent |
| 3128 | * by the link partner they can be placed in the packet buffer without |
| 3129 | * being properly accounted for by the PHY and will stall preventing |
| 3130 | * further packets from being received. The workaround is to clear the |
| 3131 | * packet buffer after the PHY detects link up. |
| 3132 | **/ |
| 3133 | s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw) |
| 3134 | { |
| 3135 | s32 ret_val = 0; |
| 3136 | u16 data; |
| 3137 | |
| 3138 | if (hw->phy.type != e1000_phy_82578) |
| 3139 | goto out; |
| 3140 | |
Bruce Allan | e65fa87 | 2009-07-01 13:27:31 +0000 | [diff] [blame] | 3141 | /* Do not apply workaround if in PHY loopback bit 14 set */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3142 | hw->phy.ops.read_reg(hw, PHY_CONTROL, &data); |
Bruce Allan | e65fa87 | 2009-07-01 13:27:31 +0000 | [diff] [blame] | 3143 | if (data & PHY_CONTROL_LB) |
| 3144 | goto out; |
| 3145 | |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3146 | /* check if link is up and at 1Gbps */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3147 | ret_val = hw->phy.ops.read_reg(hw, BM_CS_STATUS, &data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3148 | if (ret_val) |
| 3149 | goto out; |
| 3150 | |
| 3151 | data &= BM_CS_STATUS_LINK_UP | |
| 3152 | BM_CS_STATUS_RESOLVED | |
| 3153 | BM_CS_STATUS_SPEED_MASK; |
| 3154 | |
| 3155 | if (data != (BM_CS_STATUS_LINK_UP | |
| 3156 | BM_CS_STATUS_RESOLVED | |
| 3157 | BM_CS_STATUS_SPEED_1000)) |
| 3158 | goto out; |
| 3159 | |
| 3160 | mdelay(200); |
| 3161 | |
| 3162 | /* flush the packets in the fifo buffer */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3163 | ret_val = hw->phy.ops.write_reg(hw, HV_MUX_DATA_CTRL, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3164 | HV_MUX_DATA_CTRL_GEN_TO_MAC | |
| 3165 | HV_MUX_DATA_CTRL_FORCE_SPEED); |
| 3166 | if (ret_val) |
| 3167 | goto out; |
| 3168 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3169 | ret_val = hw->phy.ops.write_reg(hw, HV_MUX_DATA_CTRL, |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3170 | HV_MUX_DATA_CTRL_GEN_TO_MAC); |
| 3171 | |
| 3172 | out: |
| 3173 | return ret_val; |
| 3174 | } |
| 3175 | |
| 3176 | /** |
| 3177 | * e1000_check_polarity_82577 - Checks the polarity. |
| 3178 | * @hw: pointer to the HW structure |
| 3179 | * |
| 3180 | * Success returns 0, Failure returns -E1000_ERR_PHY (-2) |
| 3181 | * |
| 3182 | * Polarity is determined based on the PHY specific status register. |
| 3183 | **/ |
| 3184 | s32 e1000_check_polarity_82577(struct e1000_hw *hw) |
| 3185 | { |
| 3186 | struct e1000_phy_info *phy = &hw->phy; |
| 3187 | s32 ret_val; |
| 3188 | u16 data; |
| 3189 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3190 | ret_val = phy->ops.read_reg(hw, I82577_PHY_STATUS_2, &data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3191 | |
| 3192 | if (!ret_val) |
| 3193 | phy->cable_polarity = (data & I82577_PHY_STATUS2_REV_POLARITY) |
| 3194 | ? e1000_rev_polarity_reversed |
| 3195 | : e1000_rev_polarity_normal; |
| 3196 | |
| 3197 | return ret_val; |
| 3198 | } |
| 3199 | |
| 3200 | /** |
| 3201 | * e1000_phy_force_speed_duplex_82577 - Force speed/duplex for I82577 PHY |
| 3202 | * @hw: pointer to the HW structure |
| 3203 | * |
| 3204 | * Calls the PHY setup function to force speed and duplex. Clears the |
| 3205 | * auto-crossover to force MDI manually. Waits for link and returns |
| 3206 | * successful if link up is successful, else -E1000_ERR_PHY (-2). |
| 3207 | **/ |
| 3208 | s32 e1000_phy_force_speed_duplex_82577(struct e1000_hw *hw) |
| 3209 | { |
| 3210 | struct e1000_phy_info *phy = &hw->phy; |
| 3211 | s32 ret_val; |
| 3212 | u16 phy_data; |
| 3213 | bool link; |
| 3214 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3215 | ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3216 | if (ret_val) |
| 3217 | goto out; |
| 3218 | |
| 3219 | e1000e_phy_force_speed_duplex_setup(hw, &phy_data); |
| 3220 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3221 | ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3222 | if (ret_val) |
| 3223 | goto out; |
| 3224 | |
| 3225 | /* |
| 3226 | * Clear Auto-Crossover to force MDI manually. 82577 requires MDI |
| 3227 | * forced whenever speed and duplex are forced. |
| 3228 | */ |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3229 | ret_val = phy->ops.read_reg(hw, I82577_PHY_CTRL_2, &phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3230 | if (ret_val) |
| 3231 | goto out; |
| 3232 | |
| 3233 | phy_data &= ~I82577_PHY_CTRL2_AUTO_MDIX; |
| 3234 | phy_data &= ~I82577_PHY_CTRL2_FORCE_MDI_MDIX; |
| 3235 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3236 | ret_val = phy->ops.write_reg(hw, I82577_PHY_CTRL_2, phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3237 | if (ret_val) |
| 3238 | goto out; |
| 3239 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3240 | e_dbg("I82577_PHY_CTRL_2: %X\n", phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3241 | |
| 3242 | udelay(1); |
| 3243 | |
| 3244 | if (phy->autoneg_wait_to_complete) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3245 | e_dbg("Waiting for forced speed/duplex link on 82577 phy\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3246 | |
| 3247 | ret_val = e1000e_phy_has_link_generic(hw, |
| 3248 | PHY_FORCE_LIMIT, |
| 3249 | 100000, |
| 3250 | &link); |
| 3251 | if (ret_val) |
| 3252 | goto out; |
| 3253 | |
| 3254 | if (!link) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3255 | e_dbg("Link taking longer than expected.\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3256 | |
| 3257 | /* Try once more */ |
| 3258 | ret_val = e1000e_phy_has_link_generic(hw, |
| 3259 | PHY_FORCE_LIMIT, |
| 3260 | 100000, |
| 3261 | &link); |
| 3262 | if (ret_val) |
| 3263 | goto out; |
| 3264 | } |
| 3265 | |
| 3266 | out: |
| 3267 | return ret_val; |
| 3268 | } |
| 3269 | |
| 3270 | /** |
| 3271 | * e1000_get_phy_info_82577 - Retrieve I82577 PHY information |
| 3272 | * @hw: pointer to the HW structure |
| 3273 | * |
| 3274 | * Read PHY status to determine if link is up. If link is up, then |
| 3275 | * set/determine 10base-T extended distance and polarity correction. Read |
| 3276 | * PHY port status to determine MDI/MDIx and speed. Based on the speed, |
| 3277 | * determine on the cable length, local and remote receiver. |
| 3278 | **/ |
| 3279 | s32 e1000_get_phy_info_82577(struct e1000_hw *hw) |
| 3280 | { |
| 3281 | struct e1000_phy_info *phy = &hw->phy; |
| 3282 | s32 ret_val; |
| 3283 | u16 data; |
| 3284 | bool link; |
| 3285 | |
| 3286 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 3287 | if (ret_val) |
| 3288 | goto out; |
| 3289 | |
| 3290 | if (!link) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 3291 | e_dbg("Phy info is only valid if link is up\n"); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3292 | ret_val = -E1000_ERR_CONFIG; |
| 3293 | goto out; |
| 3294 | } |
| 3295 | |
| 3296 | phy->polarity_correction = true; |
| 3297 | |
| 3298 | ret_val = e1000_check_polarity_82577(hw); |
| 3299 | if (ret_val) |
| 3300 | goto out; |
| 3301 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3302 | ret_val = phy->ops.read_reg(hw, I82577_PHY_STATUS_2, &data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3303 | if (ret_val) |
| 3304 | goto out; |
| 3305 | |
| 3306 | phy->is_mdix = (data & I82577_PHY_STATUS2_MDIX) ? true : false; |
| 3307 | |
| 3308 | if ((data & I82577_PHY_STATUS2_SPEED_MASK) == |
| 3309 | I82577_PHY_STATUS2_SPEED_1000MBPS) { |
| 3310 | ret_val = hw->phy.ops.get_cable_length(hw); |
| 3311 | if (ret_val) |
| 3312 | goto out; |
| 3313 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3314 | ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3315 | if (ret_val) |
| 3316 | goto out; |
| 3317 | |
| 3318 | phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS) |
| 3319 | ? e1000_1000t_rx_status_ok |
| 3320 | : e1000_1000t_rx_status_not_ok; |
| 3321 | |
| 3322 | phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS) |
| 3323 | ? e1000_1000t_rx_status_ok |
| 3324 | : e1000_1000t_rx_status_not_ok; |
| 3325 | } else { |
| 3326 | phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; |
| 3327 | phy->local_rx = e1000_1000t_rx_status_undefined; |
| 3328 | phy->remote_rx = e1000_1000t_rx_status_undefined; |
| 3329 | } |
| 3330 | |
| 3331 | out: |
| 3332 | return ret_val; |
| 3333 | } |
| 3334 | |
| 3335 | /** |
| 3336 | * e1000_get_cable_length_82577 - Determine cable length for 82577 PHY |
| 3337 | * @hw: pointer to the HW structure |
| 3338 | * |
| 3339 | * Reads the diagnostic status register and verifies result is valid before |
| 3340 | * placing it in the phy_cable_length field. |
| 3341 | **/ |
| 3342 | s32 e1000_get_cable_length_82577(struct e1000_hw *hw) |
| 3343 | { |
| 3344 | struct e1000_phy_info *phy = &hw->phy; |
| 3345 | s32 ret_val; |
| 3346 | u16 phy_data, length; |
| 3347 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 3348 | ret_val = phy->ops.read_reg(hw, I82577_PHY_DIAG_STATUS, &phy_data); |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3349 | if (ret_val) |
| 3350 | goto out; |
| 3351 | |
| 3352 | length = (phy_data & I82577_DSTATUS_CABLE_LENGTH) >> |
| 3353 | I82577_DSTATUS_CABLE_LENGTH_SHIFT; |
| 3354 | |
| 3355 | if (length == E1000_CABLE_LENGTH_UNDEFINED) |
Bruce Allan | 98086a9 | 2009-11-20 23:23:53 +0000 | [diff] [blame] | 3356 | ret_val = -E1000_ERR_PHY; |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 3357 | |
| 3358 | phy->cable_length = length; |
| 3359 | |
| 3360 | out: |
| 3361 | return ret_val; |
| 3362 | } |