Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel PRO/1000 Linux driver |
Bruce Allan | f5e261e | 2012-01-01 16:00:03 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2012 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 | /* |
| 30 | * 80003ES2LAN Gigabit Ethernet Controller (Copper) |
| 31 | * 80003ES2LAN Gigabit Ethernet Controller (Serdes) |
| 32 | */ |
| 33 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 34 | #include "e1000.h" |
| 35 | |
| 36 | #define E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL 0x00 |
| 37 | #define E1000_KMRNCTRLSTA_OFFSET_INB_CTRL 0x02 |
| 38 | #define E1000_KMRNCTRLSTA_OFFSET_HD_CTRL 0x10 |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 39 | #define E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE 0x1F |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 40 | |
| 41 | #define E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS 0x0008 |
| 42 | #define E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS 0x0800 |
| 43 | #define E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING 0x0010 |
| 44 | |
| 45 | #define E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT 0x0004 |
| 46 | #define E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT 0x0000 |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 47 | #define E1000_KMRNCTRLSTA_OPMODE_E_IDLE 0x2000 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 48 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 49 | #define E1000_KMRNCTRLSTA_OPMODE_MASK 0x000C |
| 50 | #define E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO 0x0004 |
| 51 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 52 | #define E1000_TCTL_EXT_GCEX_MASK 0x000FFC00 /* Gigabit Carry Extend Padding */ |
| 53 | #define DEFAULT_TCTL_EXT_GCEX_80003ES2LAN 0x00010000 |
| 54 | |
| 55 | #define DEFAULT_TIPG_IPGT_1000_80003ES2LAN 0x8 |
| 56 | #define DEFAULT_TIPG_IPGT_10_100_80003ES2LAN 0x9 |
| 57 | |
| 58 | /* GG82563 PHY Specific Status Register (Page 0, Register 16 */ |
| 59 | #define GG82563_PSCR_POLARITY_REVERSAL_DISABLE 0x0002 /* 1=Reversal Disab. */ |
| 60 | #define GG82563_PSCR_CROSSOVER_MODE_MASK 0x0060 |
| 61 | #define GG82563_PSCR_CROSSOVER_MODE_MDI 0x0000 /* 00=Manual MDI */ |
| 62 | #define GG82563_PSCR_CROSSOVER_MODE_MDIX 0x0020 /* 01=Manual MDIX */ |
| 63 | #define GG82563_PSCR_CROSSOVER_MODE_AUTO 0x0060 /* 11=Auto crossover */ |
| 64 | |
| 65 | /* PHY Specific Control Register 2 (Page 0, Register 26) */ |
| 66 | #define GG82563_PSCR2_REVERSE_AUTO_NEG 0x2000 |
| 67 | /* 1=Reverse Auto-Negotiation */ |
| 68 | |
| 69 | /* MAC Specific Control Register (Page 2, Register 21) */ |
| 70 | /* Tx clock speed for Link Down and 1000BASE-T for the following speeds */ |
| 71 | #define GG82563_MSCR_TX_CLK_MASK 0x0007 |
| 72 | #define GG82563_MSCR_TX_CLK_10MBPS_2_5 0x0004 |
| 73 | #define GG82563_MSCR_TX_CLK_100MBPS_25 0x0005 |
| 74 | #define GG82563_MSCR_TX_CLK_1000MBPS_25 0x0007 |
| 75 | |
| 76 | #define GG82563_MSCR_ASSERT_CRS_ON_TX 0x0010 /* 1=Assert */ |
| 77 | |
| 78 | /* DSP Distance Register (Page 5, Register 26) */ |
| 79 | #define GG82563_DSPD_CABLE_LENGTH 0x0007 /* 0 = <50M |
| 80 | 1 = 50-80M |
| 81 | 2 = 80-110M |
| 82 | 3 = 110-140M |
| 83 | 4 = >140M */ |
| 84 | |
| 85 | /* Kumeran Mode Control Register (Page 193, Register 16) */ |
| 86 | #define GG82563_KMCR_PASS_FALSE_CARRIER 0x0800 |
| 87 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 88 | /* Max number of times Kumeran read/write should be validated */ |
| 89 | #define GG82563_MAX_KMRN_RETRY 0x5 |
| 90 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 91 | /* Power Management Control Register (Page 193, Register 20) */ |
| 92 | #define GG82563_PMCR_ENABLE_ELECTRICAL_IDLE 0x0001 |
| 93 | /* 1=Enable SERDES Electrical Idle */ |
| 94 | |
| 95 | /* In-Band Control Register (Page 194, Register 18) */ |
| 96 | #define GG82563_ICR_DIS_PADDING 0x0010 /* Disable Padding */ |
| 97 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 98 | /* |
| 99 | * A table for the GG82563 cable length where the range is defined |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 100 | * with a lower bound at "index" and the upper bound at |
| 101 | * "index + 5". |
| 102 | */ |
Bruce Allan | 6480641 | 2010-12-11 05:53:42 +0000 | [diff] [blame] | 103 | static const u16 e1000_gg82563_cable_length_table[] = { |
| 104 | 0, 60, 115, 150, 150, 60, 115, 150, 180, 180, 0xFF }; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 105 | #define GG82563_CABLE_LENGTH_TABLE_SIZE \ |
| 106 | ARRAY_SIZE(e1000_gg82563_cable_length_table) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 107 | |
| 108 | static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw); |
| 109 | static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask); |
| 110 | static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask); |
| 111 | static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw); |
| 112 | static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw); |
| 113 | static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw); |
| 114 | static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex); |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 115 | static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw); |
| 116 | static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset, |
| 117 | u16 *data); |
| 118 | static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset, |
| 119 | u16 data); |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 120 | static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 121 | |
| 122 | /** |
| 123 | * e1000_init_phy_params_80003es2lan - Init ESB2 PHY func ptrs. |
| 124 | * @hw: pointer to the HW structure |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 125 | **/ |
| 126 | static s32 e1000_init_phy_params_80003es2lan(struct e1000_hw *hw) |
| 127 | { |
| 128 | struct e1000_phy_info *phy = &hw->phy; |
| 129 | s32 ret_val; |
| 130 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 131 | if (hw->phy.media_type != e1000_media_type_copper) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 132 | phy->type = e1000_phy_none; |
| 133 | return 0; |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 134 | } else { |
| 135 | phy->ops.power_up = e1000_power_up_phy_copper; |
| 136 | phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | phy->addr = 1; |
| 140 | phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; |
| 141 | phy->reset_delay_us = 100; |
| 142 | phy->type = e1000_phy_gg82563; |
| 143 | |
| 144 | /* This can only be done after all function pointers are setup. */ |
| 145 | ret_val = e1000e_get_phy_id(hw); |
| 146 | |
| 147 | /* Verify phy id */ |
| 148 | if (phy->id != GG82563_E_PHY_ID) |
| 149 | return -E1000_ERR_PHY; |
| 150 | |
| 151 | return ret_val; |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * e1000_init_nvm_params_80003es2lan - Init ESB2 NVM func ptrs. |
| 156 | * @hw: pointer to the HW structure |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 157 | **/ |
| 158 | static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw) |
| 159 | { |
| 160 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 161 | u32 eecd = er32(EECD); |
| 162 | u16 size; |
| 163 | |
| 164 | nvm->opcode_bits = 8; |
| 165 | nvm->delay_usec = 1; |
| 166 | switch (nvm->override) { |
| 167 | case e1000_nvm_override_spi_large: |
| 168 | nvm->page_size = 32; |
| 169 | nvm->address_bits = 16; |
| 170 | break; |
| 171 | case e1000_nvm_override_spi_small: |
| 172 | nvm->page_size = 8; |
| 173 | nvm->address_bits = 8; |
| 174 | break; |
| 175 | default: |
| 176 | nvm->page_size = eecd & E1000_EECD_ADDR_BITS ? 32 : 8; |
| 177 | nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8; |
| 178 | break; |
| 179 | } |
| 180 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 181 | nvm->type = e1000_nvm_eeprom_spi; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 182 | |
| 183 | size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >> |
| 184 | E1000_EECD_SIZE_EX_SHIFT); |
| 185 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 186 | /* |
| 187 | * Added to a constant, "size" becomes the left-shift value |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 188 | * for setting word_size. |
| 189 | */ |
| 190 | size += NVM_WORD_SIZE_BASE_SHIFT; |
Jeff Kirsher | 8d7c294 | 2008-04-02 13:48:07 -0700 | [diff] [blame] | 191 | |
| 192 | /* EEPROM access above 16k is unsupported */ |
| 193 | if (size > 14) |
| 194 | size = 14; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 195 | nvm->word_size = 1 << size; |
| 196 | |
| 197 | return 0; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * e1000_init_mac_params_80003es2lan - Init ESB2 MAC func ptrs. |
| 202 | * @hw: pointer to the HW structure |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 203 | **/ |
Bruce Allan | ec34c17 | 2012-02-01 10:53:05 +0000 | [diff] [blame] | 204 | static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 205 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 206 | struct e1000_mac_info *mac = &hw->mac; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 207 | |
Bruce Allan | e68782e | 2012-01-31 06:37:43 +0000 | [diff] [blame] | 208 | /* Set media type and media-dependent function pointers */ |
Bruce Allan | ec34c17 | 2012-02-01 10:53:05 +0000 | [diff] [blame] | 209 | switch (hw->adapter->pdev->device) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 210 | case E1000_DEV_ID_80003ES2LAN_SERDES_DPT: |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 211 | hw->phy.media_type = e1000_media_type_internal_serdes; |
Bruce Allan | e68782e | 2012-01-31 06:37:43 +0000 | [diff] [blame] | 212 | mac->ops.check_for_link = e1000e_check_for_serdes_link; |
| 213 | mac->ops.setup_physical_interface = |
| 214 | e1000e_setup_fiber_serdes_link; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 215 | break; |
| 216 | default: |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 217 | hw->phy.media_type = e1000_media_type_copper; |
Bruce Allan | e68782e | 2012-01-31 06:37:43 +0000 | [diff] [blame] | 218 | mac->ops.check_for_link = e1000e_check_for_copper_link; |
| 219 | mac->ops.setup_physical_interface = |
| 220 | e1000_setup_copper_link_80003es2lan; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 221 | break; |
| 222 | } |
| 223 | |
| 224 | /* Set mta register count */ |
| 225 | mac->mta_reg_count = 128; |
| 226 | /* Set rar entry count */ |
| 227 | mac->rar_entry_count = E1000_RAR_ENTRIES; |
Bruce Allan | a65a4a0 | 2010-05-10 15:01:51 +0000 | [diff] [blame] | 228 | /* FWSM register */ |
| 229 | mac->has_fwsm = true; |
| 230 | /* ARC supported; valid only if manageability features are enabled. */ |
| 231 | mac->arc_subsystem_valid = |
| 232 | (er32(FWSM) & E1000_FWSM_MODE_MASK) |
| 233 | ? true : false; |
Bruce Allan | f464ba8 | 2010-01-07 16:31:35 +0000 | [diff] [blame] | 234 | /* Adaptive IFS not supported */ |
| 235 | mac->adaptive_ifs = false; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 236 | |
Bruce Allan | f4d2dd4 | 2010-01-13 02:05:18 +0000 | [diff] [blame] | 237 | /* set lan id for port to determine which phy lock to use */ |
| 238 | hw->mac.ops.set_lan_id(hw); |
| 239 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 240 | return 0; |
| 241 | } |
| 242 | |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 243 | static s32 e1000_get_variants_80003es2lan(struct e1000_adapter *adapter) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 244 | { |
| 245 | struct e1000_hw *hw = &adapter->hw; |
| 246 | s32 rc; |
| 247 | |
Bruce Allan | ec34c17 | 2012-02-01 10:53:05 +0000 | [diff] [blame] | 248 | rc = e1000_init_mac_params_80003es2lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 249 | if (rc) |
| 250 | return rc; |
| 251 | |
| 252 | rc = e1000_init_nvm_params_80003es2lan(hw); |
| 253 | if (rc) |
| 254 | return rc; |
| 255 | |
| 256 | rc = e1000_init_phy_params_80003es2lan(hw); |
| 257 | if (rc) |
| 258 | return rc; |
| 259 | |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * e1000_acquire_phy_80003es2lan - Acquire rights to access PHY |
| 265 | * @hw: pointer to the HW structure |
| 266 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 267 | * A wrapper to acquire access rights to the correct PHY. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 268 | **/ |
| 269 | static s32 e1000_acquire_phy_80003es2lan(struct e1000_hw *hw) |
| 270 | { |
| 271 | u16 mask; |
| 272 | |
| 273 | mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 274 | return e1000_acquire_swfw_sync_80003es2lan(hw, mask); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * e1000_release_phy_80003es2lan - Release rights to access PHY |
| 279 | * @hw: pointer to the HW structure |
| 280 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 281 | * A wrapper to release access rights to the correct PHY. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 282 | **/ |
| 283 | static void e1000_release_phy_80003es2lan(struct e1000_hw *hw) |
| 284 | { |
| 285 | u16 mask; |
| 286 | |
| 287 | mask = hw->bus.func ? E1000_SWFW_PHY1_SM : E1000_SWFW_PHY0_SM; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 288 | e1000_release_swfw_sync_80003es2lan(hw, mask); |
| 289 | } |
| 290 | |
| 291 | /** |
Bruce Allan | dffcdde | 2012-02-17 09:35:33 +0000 | [diff] [blame] | 292 | * e1000_acquire_mac_csr_80003es2lan - Acquire right to access Kumeran register |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 293 | * @hw: pointer to the HW structure |
| 294 | * |
| 295 | * Acquire the semaphore to access the Kumeran interface. |
| 296 | * |
| 297 | **/ |
| 298 | static s32 e1000_acquire_mac_csr_80003es2lan(struct e1000_hw *hw) |
| 299 | { |
| 300 | u16 mask; |
| 301 | |
| 302 | mask = E1000_SWFW_CSR_SM; |
| 303 | |
| 304 | return e1000_acquire_swfw_sync_80003es2lan(hw, mask); |
| 305 | } |
| 306 | |
| 307 | /** |
Bruce Allan | dffcdde | 2012-02-17 09:35:33 +0000 | [diff] [blame] | 308 | * e1000_release_mac_csr_80003es2lan - Release right to access Kumeran Register |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 309 | * @hw: pointer to the HW structure |
| 310 | * |
| 311 | * Release the semaphore used to access the Kumeran interface |
| 312 | **/ |
| 313 | static void e1000_release_mac_csr_80003es2lan(struct e1000_hw *hw) |
| 314 | { |
| 315 | u16 mask; |
| 316 | |
| 317 | mask = E1000_SWFW_CSR_SM; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 318 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 319 | e1000_release_swfw_sync_80003es2lan(hw, mask); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * e1000_acquire_nvm_80003es2lan - Acquire rights to access NVM |
| 324 | * @hw: pointer to the HW structure |
| 325 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 326 | * Acquire the semaphore to access the EEPROM. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 327 | **/ |
| 328 | static s32 e1000_acquire_nvm_80003es2lan(struct e1000_hw *hw) |
| 329 | { |
| 330 | s32 ret_val; |
| 331 | |
| 332 | ret_val = e1000_acquire_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM); |
| 333 | if (ret_val) |
| 334 | return ret_val; |
| 335 | |
| 336 | ret_val = e1000e_acquire_nvm(hw); |
| 337 | |
| 338 | if (ret_val) |
| 339 | e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM); |
| 340 | |
| 341 | return ret_val; |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * e1000_release_nvm_80003es2lan - Relinquish rights to access NVM |
| 346 | * @hw: pointer to the HW structure |
| 347 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 348 | * Release the semaphore used to access the EEPROM. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 349 | **/ |
| 350 | static void e1000_release_nvm_80003es2lan(struct e1000_hw *hw) |
| 351 | { |
| 352 | e1000e_release_nvm(hw); |
| 353 | e1000_release_swfw_sync_80003es2lan(hw, E1000_SWFW_EEP_SM); |
| 354 | } |
| 355 | |
| 356 | /** |
| 357 | * e1000_acquire_swfw_sync_80003es2lan - Acquire SW/FW semaphore |
| 358 | * @hw: pointer to the HW structure |
| 359 | * @mask: specifies which semaphore to acquire |
| 360 | * |
| 361 | * Acquire the SW/FW semaphore to access the PHY or NVM. The mask |
| 362 | * will also specify which port we're acquiring the lock for. |
| 363 | **/ |
| 364 | static s32 e1000_acquire_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask) |
| 365 | { |
| 366 | u32 swfw_sync; |
| 367 | u32 swmask = mask; |
| 368 | u32 fwmask = mask << 16; |
| 369 | s32 i = 0; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 370 | s32 timeout = 50; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 371 | |
| 372 | while (i < timeout) { |
| 373 | if (e1000e_get_hw_semaphore(hw)) |
| 374 | return -E1000_ERR_SWFW_SYNC; |
| 375 | |
| 376 | swfw_sync = er32(SW_FW_SYNC); |
| 377 | if (!(swfw_sync & (fwmask | swmask))) |
| 378 | break; |
| 379 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 380 | /* |
| 381 | * Firmware currently using resource (fwmask) |
| 382 | * or other software thread using resource (swmask) |
| 383 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 384 | e1000e_put_hw_semaphore(hw); |
| 385 | mdelay(5); |
| 386 | i++; |
| 387 | } |
| 388 | |
| 389 | if (i == timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 390 | e_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 391 | return -E1000_ERR_SWFW_SYNC; |
| 392 | } |
| 393 | |
| 394 | swfw_sync |= swmask; |
| 395 | ew32(SW_FW_SYNC, swfw_sync); |
| 396 | |
| 397 | e1000e_put_hw_semaphore(hw); |
| 398 | |
| 399 | return 0; |
| 400 | } |
| 401 | |
| 402 | /** |
| 403 | * e1000_release_swfw_sync_80003es2lan - Release SW/FW semaphore |
| 404 | * @hw: pointer to the HW structure |
| 405 | * @mask: specifies which semaphore to acquire |
| 406 | * |
| 407 | * Release the SW/FW semaphore used to access the PHY or NVM. The mask |
| 408 | * will also specify which port we're releasing the lock for. |
| 409 | **/ |
| 410 | static void e1000_release_swfw_sync_80003es2lan(struct e1000_hw *hw, u16 mask) |
| 411 | { |
| 412 | u32 swfw_sync; |
| 413 | |
Bruce Allan | 184125a | 2010-12-11 05:53:37 +0000 | [diff] [blame] | 414 | while (e1000e_get_hw_semaphore(hw) != 0) |
| 415 | ; /* Empty */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 416 | |
| 417 | swfw_sync = er32(SW_FW_SYNC); |
| 418 | swfw_sync &= ~mask; |
| 419 | ew32(SW_FW_SYNC, swfw_sync); |
| 420 | |
| 421 | e1000e_put_hw_semaphore(hw); |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * e1000_read_phy_reg_gg82563_80003es2lan - Read GG82563 PHY register |
| 426 | * @hw: pointer to the HW structure |
| 427 | * @offset: offset of the register to read |
| 428 | * @data: pointer to the data returned from the operation |
| 429 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 430 | * Read the GG82563 PHY register. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 431 | **/ |
| 432 | static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw, |
| 433 | u32 offset, u16 *data) |
| 434 | { |
| 435 | s32 ret_val; |
| 436 | u32 page_select; |
| 437 | u16 temp; |
| 438 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 439 | ret_val = e1000_acquire_phy_80003es2lan(hw); |
| 440 | if (ret_val) |
| 441 | return ret_val; |
| 442 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 443 | /* Select Configuration Page */ |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 444 | if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 445 | page_select = GG82563_PHY_PAGE_SELECT; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 446 | } else { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 447 | /* |
| 448 | * Use Alternative Page Select register to access |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 449 | * registers 30 and 31 |
| 450 | */ |
| 451 | page_select = GG82563_PHY_PAGE_SELECT_ALT; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 452 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 453 | |
| 454 | temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT); |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 455 | ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp); |
| 456 | if (ret_val) { |
| 457 | e1000_release_phy_80003es2lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 458 | return ret_val; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 459 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 460 | |
Bruce Allan | b4d8e21 | 2012-02-17 03:17:55 +0000 | [diff] [blame] | 461 | if (hw->dev_spec.e80003es2lan.mdic_wa_enable) { |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 462 | /* |
| 463 | * The "ready" bit in the MDIC register may be incorrectly set |
| 464 | * before the device has completed the "Page Select" MDI |
| 465 | * transaction. So we wait 200us after each MDI command... |
| 466 | */ |
| 467 | udelay(200); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 468 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 469 | /* ...and verify the command was successful. */ |
| 470 | ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 471 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 472 | if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) { |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 473 | e1000_release_phy_80003es2lan(hw); |
Bruce Allan | 7eb61d8 | 2012-02-08 02:55:03 +0000 | [diff] [blame] | 474 | return -E1000_ERR_PHY; |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | udelay(200); |
| 478 | |
| 479 | ret_val = e1000e_read_phy_reg_mdic(hw, |
| 480 | MAX_PHY_REG_ADDRESS & offset, |
| 481 | data); |
| 482 | |
| 483 | udelay(200); |
| 484 | } else { |
| 485 | ret_val = e1000e_read_phy_reg_mdic(hw, |
| 486 | MAX_PHY_REG_ADDRESS & offset, |
| 487 | data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 488 | } |
| 489 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 490 | e1000_release_phy_80003es2lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 491 | |
| 492 | return ret_val; |
| 493 | } |
| 494 | |
| 495 | /** |
| 496 | * e1000_write_phy_reg_gg82563_80003es2lan - Write GG82563 PHY register |
| 497 | * @hw: pointer to the HW structure |
| 498 | * @offset: offset of the register to read |
| 499 | * @data: value to write to the register |
| 500 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 501 | * Write to the GG82563 PHY register. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 502 | **/ |
| 503 | static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw, |
| 504 | u32 offset, u16 data) |
| 505 | { |
| 506 | s32 ret_val; |
| 507 | u32 page_select; |
| 508 | u16 temp; |
| 509 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 510 | ret_val = e1000_acquire_phy_80003es2lan(hw); |
| 511 | if (ret_val) |
| 512 | return ret_val; |
| 513 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 514 | /* Select Configuration Page */ |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 515 | if ((offset & MAX_PHY_REG_ADDRESS) < GG82563_MIN_ALT_REG) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 516 | page_select = GG82563_PHY_PAGE_SELECT; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 517 | } else { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 518 | /* |
| 519 | * Use Alternative Page Select register to access |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 520 | * registers 30 and 31 |
| 521 | */ |
| 522 | page_select = GG82563_PHY_PAGE_SELECT_ALT; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 523 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 524 | |
| 525 | temp = (u16)((u16)offset >> GG82563_PAGE_SHIFT); |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 526 | ret_val = e1000e_write_phy_reg_mdic(hw, page_select, temp); |
| 527 | if (ret_val) { |
| 528 | e1000_release_phy_80003es2lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 529 | return ret_val; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 530 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 531 | |
Bruce Allan | b4d8e21 | 2012-02-17 03:17:55 +0000 | [diff] [blame] | 532 | if (hw->dev_spec.e80003es2lan.mdic_wa_enable) { |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 533 | /* |
| 534 | * The "ready" bit in the MDIC register may be incorrectly set |
| 535 | * before the device has completed the "Page Select" MDI |
| 536 | * transaction. So we wait 200us after each MDI command... |
| 537 | */ |
| 538 | udelay(200); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 539 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 540 | /* ...and verify the command was successful. */ |
| 541 | ret_val = e1000e_read_phy_reg_mdic(hw, page_select, &temp); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 542 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 543 | if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) { |
| 544 | e1000_release_phy_80003es2lan(hw); |
| 545 | return -E1000_ERR_PHY; |
| 546 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 547 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 548 | udelay(200); |
| 549 | |
| 550 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 551 | MAX_PHY_REG_ADDRESS & offset, |
| 552 | data); |
| 553 | |
| 554 | udelay(200); |
| 555 | } else { |
| 556 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 557 | MAX_PHY_REG_ADDRESS & offset, |
| 558 | data); |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 559 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 560 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 561 | e1000_release_phy_80003es2lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 562 | |
| 563 | return ret_val; |
| 564 | } |
| 565 | |
| 566 | /** |
| 567 | * e1000_write_nvm_80003es2lan - Write to ESB2 NVM |
| 568 | * @hw: pointer to the HW structure |
| 569 | * @offset: offset of the register to read |
| 570 | * @words: number of words to write |
| 571 | * @data: buffer of data to write to the NVM |
| 572 | * |
Bruce Allan | fe40167 | 2009-11-20 23:26:05 +0000 | [diff] [blame] | 573 | * Write "words" of data to the ESB2 NVM. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 574 | **/ |
| 575 | static s32 e1000_write_nvm_80003es2lan(struct e1000_hw *hw, u16 offset, |
| 576 | u16 words, u16 *data) |
| 577 | { |
| 578 | return e1000e_write_nvm_spi(hw, offset, words, data); |
| 579 | } |
| 580 | |
| 581 | /** |
| 582 | * e1000_get_cfg_done_80003es2lan - Wait for configuration to complete |
| 583 | * @hw: pointer to the HW structure |
| 584 | * |
| 585 | * Wait a specific amount of time for manageability processes to complete. |
| 586 | * This is a function pointer entry point called by the phy module. |
| 587 | **/ |
| 588 | static s32 e1000_get_cfg_done_80003es2lan(struct e1000_hw *hw) |
| 589 | { |
| 590 | s32 timeout = PHY_CFG_TIMEOUT; |
| 591 | u32 mask = E1000_NVM_CFG_DONE_PORT_0; |
| 592 | |
| 593 | if (hw->bus.func == 1) |
| 594 | mask = E1000_NVM_CFG_DONE_PORT_1; |
| 595 | |
| 596 | while (timeout) { |
| 597 | if (er32(EEMNGCTL) & mask) |
| 598 | break; |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 599 | usleep_range(1000, 2000); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 600 | timeout--; |
| 601 | } |
| 602 | if (!timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 603 | e_dbg("MNG configuration cycle has not completed.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 604 | return -E1000_ERR_RESET; |
| 605 | } |
| 606 | |
| 607 | return 0; |
| 608 | } |
| 609 | |
| 610 | /** |
| 611 | * e1000_phy_force_speed_duplex_80003es2lan - Force PHY speed and duplex |
| 612 | * @hw: pointer to the HW structure |
| 613 | * |
| 614 | * Force the speed and duplex settings onto the PHY. This is a |
| 615 | * function pointer entry point called by the phy module. |
| 616 | **/ |
| 617 | static s32 e1000_phy_force_speed_duplex_80003es2lan(struct e1000_hw *hw) |
| 618 | { |
| 619 | s32 ret_val; |
| 620 | u16 phy_data; |
| 621 | bool link; |
| 622 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 623 | /* |
| 624 | * Clear Auto-Crossover to force MDI manually. M88E1000 requires MDI |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 625 | * forced whenever speed and duplex are forced. |
| 626 | */ |
| 627 | ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); |
| 628 | if (ret_val) |
| 629 | return ret_val; |
| 630 | |
| 631 | phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO; |
| 632 | ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, phy_data); |
| 633 | if (ret_val) |
| 634 | return ret_val; |
| 635 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 636 | e_dbg("GG82563 PSCR: %X\n", phy_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 637 | |
| 638 | ret_val = e1e_rphy(hw, PHY_CONTROL, &phy_data); |
| 639 | if (ret_val) |
| 640 | return ret_val; |
| 641 | |
| 642 | e1000e_phy_force_speed_duplex_setup(hw, &phy_data); |
| 643 | |
| 644 | /* Reset the phy to commit changes. */ |
| 645 | phy_data |= MII_CR_RESET; |
| 646 | |
| 647 | ret_val = e1e_wphy(hw, PHY_CONTROL, phy_data); |
| 648 | if (ret_val) |
| 649 | return ret_val; |
| 650 | |
| 651 | udelay(1); |
| 652 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 653 | if (hw->phy.autoneg_wait_to_complete) { |
Bruce Allan | 434f139 | 2011-12-16 00:46:54 +0000 | [diff] [blame] | 654 | e_dbg("Waiting for forced speed/duplex link on GG82563 phy.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 655 | |
| 656 | ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT, |
| 657 | 100000, &link); |
| 658 | if (ret_val) |
| 659 | return ret_val; |
| 660 | |
| 661 | if (!link) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 662 | /* |
| 663 | * We didn't get link. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 664 | * Reset the DSP and cross our fingers. |
| 665 | */ |
| 666 | ret_val = e1000e_phy_reset_dsp(hw); |
| 667 | if (ret_val) |
| 668 | return ret_val; |
| 669 | } |
| 670 | |
| 671 | /* Try once more */ |
| 672 | ret_val = e1000e_phy_has_link_generic(hw, PHY_FORCE_LIMIT, |
| 673 | 100000, &link); |
| 674 | if (ret_val) |
| 675 | return ret_val; |
| 676 | } |
| 677 | |
| 678 | ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data); |
| 679 | if (ret_val) |
| 680 | return ret_val; |
| 681 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 682 | /* |
| 683 | * Resetting the phy means we need to verify the TX_CLK corresponds |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 684 | * to the link speed. 10Mbps -> 2.5MHz, else 25MHz. |
| 685 | */ |
| 686 | phy_data &= ~GG82563_MSCR_TX_CLK_MASK; |
| 687 | if (hw->mac.forced_speed_duplex & E1000_ALL_10_SPEED) |
| 688 | phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5; |
| 689 | else |
| 690 | phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25; |
| 691 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 692 | /* |
| 693 | * 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] | 694 | * duplex. |
| 695 | */ |
| 696 | phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX; |
| 697 | ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data); |
| 698 | |
| 699 | return ret_val; |
| 700 | } |
| 701 | |
| 702 | /** |
| 703 | * e1000_get_cable_length_80003es2lan - Set approximate cable length |
| 704 | * @hw: pointer to the HW structure |
| 705 | * |
| 706 | * Find the approximate cable length as measured by the GG82563 PHY. |
| 707 | * This is a function pointer entry point called by the phy module. |
| 708 | **/ |
| 709 | static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw) |
| 710 | { |
| 711 | struct e1000_phy_info *phy = &hw->phy; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 712 | s32 ret_val = 0; |
Bruce Allan | a708dd8 | 2009-11-20 23:28:37 +0000 | [diff] [blame] | 713 | u16 phy_data, index; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 714 | |
| 715 | ret_val = e1e_rphy(hw, GG82563_PHY_DSP_DISTANCE, &phy_data); |
| 716 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 717 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 718 | |
| 719 | index = phy_data & GG82563_DSPD_CABLE_LENGTH; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 720 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 721 | if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5) |
| 722 | return -E1000_ERR_PHY; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 723 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 724 | phy->min_cable_length = e1000_gg82563_cable_length_table[index]; |
Bruce Allan | eb656d4 | 2009-12-01 15:47:02 +0000 | [diff] [blame] | 725 | phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5]; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 726 | |
| 727 | phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2; |
| 728 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 729 | return 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | /** |
| 733 | * e1000_get_link_up_info_80003es2lan - Report speed and duplex |
| 734 | * @hw: pointer to the HW structure |
| 735 | * @speed: pointer to speed buffer |
| 736 | * @duplex: pointer to duplex buffer |
| 737 | * |
| 738 | * Retrieve the current speed and duplex configuration. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 739 | **/ |
| 740 | static s32 e1000_get_link_up_info_80003es2lan(struct e1000_hw *hw, u16 *speed, |
| 741 | u16 *duplex) |
| 742 | { |
| 743 | s32 ret_val; |
| 744 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 745 | if (hw->phy.media_type == e1000_media_type_copper) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 746 | ret_val = e1000e_get_speed_and_duplex_copper(hw, |
| 747 | speed, |
| 748 | duplex); |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 749 | hw->phy.ops.cfg_on_link_up(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 750 | } else { |
| 751 | ret_val = e1000e_get_speed_and_duplex_fiber_serdes(hw, |
| 752 | speed, |
| 753 | duplex); |
| 754 | } |
| 755 | |
| 756 | return ret_val; |
| 757 | } |
| 758 | |
| 759 | /** |
| 760 | * e1000_reset_hw_80003es2lan - Reset the ESB2 controller |
| 761 | * @hw: pointer to the HW structure |
| 762 | * |
| 763 | * Perform a global reset to the ESB2 controller. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 764 | **/ |
| 765 | static s32 e1000_reset_hw_80003es2lan(struct e1000_hw *hw) |
| 766 | { |
Bruce Allan | dd93f95 | 2011-01-06 14:29:48 +0000 | [diff] [blame] | 767 | u32 ctrl; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 768 | s32 ret_val; |
| 769 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 770 | /* |
| 771 | * Prevent the PCI-E bus from sticking if there is no TLP connection |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 772 | * on the last TLP read/write transaction when MAC is reset. |
| 773 | */ |
| 774 | ret_val = e1000e_disable_pcie_master(hw); |
| 775 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 776 | e_dbg("PCI-E Master disable polling has failed.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 777 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 778 | e_dbg("Masking off all interrupts\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 779 | ew32(IMC, 0xffffffff); |
| 780 | |
| 781 | ew32(RCTL, 0); |
| 782 | ew32(TCTL, E1000_TCTL_PSP); |
| 783 | e1e_flush(); |
| 784 | |
Bruce Allan | 1bba438 | 2011-03-19 00:27:20 +0000 | [diff] [blame] | 785 | usleep_range(10000, 20000); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 786 | |
| 787 | ctrl = er32(CTRL); |
| 788 | |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 789 | ret_val = e1000_acquire_phy_80003es2lan(hw); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 790 | e_dbg("Issuing a global reset to MAC\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 791 | ew32(CTRL, ctrl | E1000_CTRL_RST); |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 792 | e1000_release_phy_80003es2lan(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 793 | |
| 794 | ret_val = e1000e_get_auto_rd_done(hw); |
| 795 | if (ret_val) |
| 796 | /* We don't want to continue accessing MAC registers. */ |
| 797 | return ret_val; |
| 798 | |
| 799 | /* Clear any pending interrupt events. */ |
| 800 | ew32(IMC, 0xffffffff); |
Bruce Allan | dd93f95 | 2011-01-06 14:29:48 +0000 | [diff] [blame] | 801 | er32(ICR); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 802 | |
Bruce Allan | 7eb61d8 | 2012-02-08 02:55:03 +0000 | [diff] [blame] | 803 | return e1000_check_alt_mac_addr_generic(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | /** |
| 807 | * e1000_init_hw_80003es2lan - Initialize the ESB2 controller |
| 808 | * @hw: pointer to the HW structure |
| 809 | * |
| 810 | * Initialize the hw bits, LED, VFTA, MTA, link and hw counters. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 811 | **/ |
| 812 | static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw) |
| 813 | { |
| 814 | struct e1000_mac_info *mac = &hw->mac; |
| 815 | u32 reg_data; |
| 816 | s32 ret_val; |
Bruce Allan | d9b2413 | 2011-05-13 07:19:42 +0000 | [diff] [blame] | 817 | u16 kum_reg_data; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 818 | u16 i; |
| 819 | |
| 820 | e1000_initialize_hw_bits_80003es2lan(hw); |
| 821 | |
| 822 | /* Initialize identification LED */ |
Bruce Allan | d1964eb | 2012-02-22 09:02:21 +0000 | [diff] [blame] | 823 | ret_val = mac->ops.id_led_init(hw); |
Bruce Allan | de39b75 | 2009-11-20 23:27:59 +0000 | [diff] [blame] | 824 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 825 | e_dbg("Error initializing identification LED\n"); |
Bruce Allan | de39b75 | 2009-11-20 23:27:59 +0000 | [diff] [blame] | 826 | /* This is not fatal and we should not stop init due to this */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 827 | |
| 828 | /* Disabling VLAN filtering */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 829 | e_dbg("Initializing the IEEE VLAN\n"); |
Bruce Allan | caaddaf | 2009-12-01 15:46:43 +0000 | [diff] [blame] | 830 | mac->ops.clear_vfta(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 831 | |
| 832 | /* Setup the receive address. */ |
| 833 | e1000e_init_rx_addrs(hw, mac->rar_entry_count); |
| 834 | |
| 835 | /* Zero out the Multicast HASH table */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 836 | e_dbg("Zeroing the MTA\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 837 | for (i = 0; i < mac->mta_reg_count; i++) |
| 838 | E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, 0); |
| 839 | |
| 840 | /* Setup link and flow control */ |
Bruce Allan | 1a46b40 | 2012-02-22 09:02:26 +0000 | [diff] [blame] | 841 | ret_val = mac->ops.setup_link(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 842 | |
Bruce Allan | d9b2413 | 2011-05-13 07:19:42 +0000 | [diff] [blame] | 843 | /* Disable IBIST slave mode (far-end loopback) */ |
| 844 | e1000_read_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM, |
| 845 | &kum_reg_data); |
| 846 | kum_reg_data |= E1000_KMRNCTRLSTA_IBIST_DISABLE; |
| 847 | e1000_write_kmrn_reg_80003es2lan(hw, E1000_KMRNCTRLSTA_INBAND_PARAM, |
| 848 | kum_reg_data); |
| 849 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 850 | /* Set the transmit descriptor write-back policy */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 851 | reg_data = er32(TXDCTL(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 852 | reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) | |
| 853 | E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC; |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 854 | ew32(TXDCTL(0), reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 855 | |
| 856 | /* ...for both queues. */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 857 | reg_data = er32(TXDCTL(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 858 | reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) | |
| 859 | E1000_TXDCTL_FULL_TX_DESC_WB | E1000_TXDCTL_COUNT_DESC; |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 860 | ew32(TXDCTL(1), reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 861 | |
| 862 | /* Enable retransmit on late collisions */ |
| 863 | reg_data = er32(TCTL); |
| 864 | reg_data |= E1000_TCTL_RTLC; |
| 865 | ew32(TCTL, reg_data); |
| 866 | |
| 867 | /* Configure Gigabit Carry Extend Padding */ |
| 868 | reg_data = er32(TCTL_EXT); |
| 869 | reg_data &= ~E1000_TCTL_EXT_GCEX_MASK; |
| 870 | reg_data |= DEFAULT_TCTL_EXT_GCEX_80003ES2LAN; |
| 871 | ew32(TCTL_EXT, reg_data); |
| 872 | |
| 873 | /* Configure Transmit Inter-Packet Gap */ |
| 874 | reg_data = er32(TIPG); |
| 875 | reg_data &= ~E1000_TIPG_IPGT_MASK; |
| 876 | reg_data |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN; |
| 877 | ew32(TIPG, reg_data); |
| 878 | |
| 879 | reg_data = E1000_READ_REG_ARRAY(hw, E1000_FFLT, 0x0001); |
| 880 | reg_data &= ~0x00100000; |
| 881 | E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data); |
| 882 | |
Bruce Allan | 3421eec | 2009-12-08 07:28:20 +0000 | [diff] [blame] | 883 | /* default to true to enable the MDIC W/A */ |
| 884 | hw->dev_spec.e80003es2lan.mdic_wa_enable = true; |
| 885 | |
| 886 | ret_val = e1000_read_kmrn_reg_80003es2lan(hw, |
| 887 | E1000_KMRNCTRLSTA_OFFSET >> |
| 888 | E1000_KMRNCTRLSTA_OFFSET_SHIFT, |
| 889 | &i); |
| 890 | if (!ret_val) { |
| 891 | if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) == |
| 892 | E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO) |
| 893 | hw->dev_spec.e80003es2lan.mdic_wa_enable = false; |
| 894 | } |
| 895 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 896 | /* |
| 897 | * Clear all of the statistics registers (clear on read). It is |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 898 | * important that we do this after we have tried to establish link |
| 899 | * because the symbol error count will increment wildly if there |
| 900 | * is no link. |
| 901 | */ |
| 902 | e1000_clear_hw_cntrs_80003es2lan(hw); |
| 903 | |
| 904 | return ret_val; |
| 905 | } |
| 906 | |
| 907 | /** |
| 908 | * e1000_initialize_hw_bits_80003es2lan - Init hw bits of ESB2 |
| 909 | * @hw: pointer to the HW structure |
| 910 | * |
| 911 | * Initializes required hardware-dependent bits needed for normal operation. |
| 912 | **/ |
| 913 | static void e1000_initialize_hw_bits_80003es2lan(struct e1000_hw *hw) |
| 914 | { |
| 915 | u32 reg; |
| 916 | |
| 917 | /* Transmit Descriptor Control 0 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 918 | reg = er32(TXDCTL(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 919 | reg |= (1 << 22); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 920 | ew32(TXDCTL(0), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 921 | |
| 922 | /* Transmit Descriptor Control 1 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 923 | reg = er32(TXDCTL(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 924 | reg |= (1 << 22); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 925 | ew32(TXDCTL(1), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 926 | |
| 927 | /* Transmit Arbitration Control 0 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 928 | reg = er32(TARC(0)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 929 | reg &= ~(0xF << 27); /* 30:27 */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 930 | if (hw->phy.media_type != e1000_media_type_copper) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 931 | reg &= ~(1 << 20); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 932 | ew32(TARC(0), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 933 | |
| 934 | /* Transmit Arbitration Control 1 */ |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 935 | reg = er32(TARC(1)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 936 | if (er32(TCTL) & E1000_TCTL_MULR) |
| 937 | reg &= ~(1 << 28); |
| 938 | else |
| 939 | reg |= (1 << 28); |
Jeff Kirsher | e9ec2c0 | 2008-04-02 13:48:13 -0700 | [diff] [blame] | 940 | ew32(TARC(1), reg); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | /** |
| 944 | * e1000_copper_link_setup_gg82563_80003es2lan - Configure GG82563 Link |
| 945 | * @hw: pointer to the HW structure |
| 946 | * |
| 947 | * Setup some GG82563 PHY registers for obtaining link |
| 948 | **/ |
| 949 | static s32 e1000_copper_link_setup_gg82563_80003es2lan(struct e1000_hw *hw) |
| 950 | { |
| 951 | struct e1000_phy_info *phy = &hw->phy; |
| 952 | s32 ret_val; |
| 953 | u32 ctrl_ext; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 954 | u16 data; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 955 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 956 | ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 957 | if (ret_val) |
| 958 | return ret_val; |
| 959 | |
| 960 | data |= GG82563_MSCR_ASSERT_CRS_ON_TX; |
| 961 | /* Use 25MHz for both link down and 1000Base-T for Tx clock. */ |
| 962 | data |= GG82563_MSCR_TX_CLK_1000MBPS_25; |
| 963 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 964 | ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 965 | if (ret_val) |
| 966 | return ret_val; |
| 967 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 968 | /* |
| 969 | * Options: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 970 | * MDI/MDI-X = 0 (default) |
| 971 | * 0 - Auto for all speeds |
| 972 | * 1 - MDI mode |
| 973 | * 2 - MDI-X mode |
| 974 | * 3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes) |
| 975 | */ |
| 976 | ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL, &data); |
| 977 | if (ret_val) |
| 978 | return ret_val; |
| 979 | |
| 980 | data &= ~GG82563_PSCR_CROSSOVER_MODE_MASK; |
| 981 | |
| 982 | switch (phy->mdix) { |
| 983 | case 1: |
| 984 | data |= GG82563_PSCR_CROSSOVER_MODE_MDI; |
| 985 | break; |
| 986 | case 2: |
| 987 | data |= GG82563_PSCR_CROSSOVER_MODE_MDIX; |
| 988 | break; |
| 989 | case 0: |
| 990 | default: |
| 991 | data |= GG82563_PSCR_CROSSOVER_MODE_AUTO; |
| 992 | break; |
| 993 | } |
| 994 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 995 | /* |
| 996 | * Options: |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 997 | * disable_polarity_correction = 0 (default) |
| 998 | * Automatic Correction for Reversed Cable Polarity |
| 999 | * 0 - Disabled |
| 1000 | * 1 - Enabled |
| 1001 | */ |
| 1002 | data &= ~GG82563_PSCR_POLARITY_REVERSAL_DISABLE; |
| 1003 | if (phy->disable_polarity_correction) |
| 1004 | data |= GG82563_PSCR_POLARITY_REVERSAL_DISABLE; |
| 1005 | |
| 1006 | ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, data); |
| 1007 | if (ret_val) |
| 1008 | return ret_val; |
| 1009 | |
| 1010 | /* SW Reset the PHY so all changes take effect */ |
| 1011 | ret_val = e1000e_commit_phy(hw); |
| 1012 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1013 | e_dbg("Error Resetting the PHY\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1014 | return ret_val; |
| 1015 | } |
| 1016 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1017 | /* Bypass Rx and Tx FIFO's */ |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1018 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, |
| 1019 | E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1020 | E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1021 | E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS); |
| 1022 | if (ret_val) |
| 1023 | return ret_val; |
| 1024 | |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1025 | ret_val = e1000_read_kmrn_reg_80003es2lan(hw, |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1026 | E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE, |
| 1027 | &data); |
| 1028 | if (ret_val) |
| 1029 | return ret_val; |
| 1030 | data |= E1000_KMRNCTRLSTA_OPMODE_E_IDLE; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1031 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1032 | E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE, |
| 1033 | data); |
| 1034 | if (ret_val) |
| 1035 | return ret_val; |
| 1036 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1037 | ret_val = e1e_rphy(hw, GG82563_PHY_SPEC_CTRL_2, &data); |
| 1038 | if (ret_val) |
| 1039 | return ret_val; |
| 1040 | |
| 1041 | data &= ~GG82563_PSCR2_REVERSE_AUTO_NEG; |
| 1042 | ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL_2, data); |
| 1043 | if (ret_val) |
| 1044 | return ret_val; |
| 1045 | |
| 1046 | ctrl_ext = er32(CTRL_EXT); |
| 1047 | ctrl_ext &= ~(E1000_CTRL_EXT_LINK_MODE_MASK); |
| 1048 | ew32(CTRL_EXT, ctrl_ext); |
| 1049 | |
| 1050 | ret_val = e1e_rphy(hw, GG82563_PHY_PWR_MGMT_CTRL, &data); |
| 1051 | if (ret_val) |
| 1052 | return ret_val; |
| 1053 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1054 | /* |
| 1055 | * Do not init these registers when the HW is in IAMT mode, since the |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1056 | * firmware will have already initialized them. We only initialize |
| 1057 | * them if the HW is not in IAMT mode. |
| 1058 | */ |
Bruce Allan | 4876832 | 2012-02-22 09:02:32 +0000 | [diff] [blame] | 1059 | if (!hw->mac.ops.check_mng_mode(hw)) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1060 | /* Enable Electrical Idle on the PHY */ |
| 1061 | data |= GG82563_PMCR_ENABLE_ELECTRICAL_IDLE; |
| 1062 | ret_val = e1e_wphy(hw, GG82563_PHY_PWR_MGMT_CTRL, data); |
| 1063 | if (ret_val) |
| 1064 | return ret_val; |
| 1065 | |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1066 | ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, &data); |
| 1067 | if (ret_val) |
| 1068 | return ret_val; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1069 | |
| 1070 | data &= ~GG82563_KMCR_PASS_FALSE_CARRIER; |
| 1071 | ret_val = e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, data); |
| 1072 | if (ret_val) |
| 1073 | return ret_val; |
| 1074 | } |
| 1075 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1076 | /* |
| 1077 | * Workaround: Disable padding in Kumeran interface in the MAC |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1078 | * and in the PHY to avoid CRC errors. |
| 1079 | */ |
| 1080 | ret_val = e1e_rphy(hw, GG82563_PHY_INBAND_CTRL, &data); |
| 1081 | if (ret_val) |
| 1082 | return ret_val; |
| 1083 | |
| 1084 | data |= GG82563_ICR_DIS_PADDING; |
| 1085 | ret_val = e1e_wphy(hw, GG82563_PHY_INBAND_CTRL, data); |
| 1086 | if (ret_val) |
| 1087 | return ret_val; |
| 1088 | |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | /** |
| 1093 | * e1000_setup_copper_link_80003es2lan - Setup Copper Link for ESB2 |
| 1094 | * @hw: pointer to the HW structure |
| 1095 | * |
| 1096 | * Essentially a wrapper for setting up all things "copper" related. |
| 1097 | * This is a function pointer entry point called by the mac module. |
| 1098 | **/ |
| 1099 | static s32 e1000_setup_copper_link_80003es2lan(struct e1000_hw *hw) |
| 1100 | { |
| 1101 | u32 ctrl; |
| 1102 | s32 ret_val; |
| 1103 | u16 reg_data; |
| 1104 | |
| 1105 | ctrl = er32(CTRL); |
| 1106 | ctrl |= E1000_CTRL_SLU; |
| 1107 | ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); |
| 1108 | ew32(CTRL, ctrl); |
| 1109 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1110 | /* |
| 1111 | * Set the mac to wait the maximum time between each |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1112 | * iteration and increase the max iterations when |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1113 | * polling the phy; this fixes erroneous timeouts at 10Mbps. |
| 1114 | */ |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1115 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 4), |
| 1116 | 0xFFFF); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1117 | if (ret_val) |
| 1118 | return ret_val; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1119 | ret_val = e1000_read_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9), |
| 1120 | ®_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1121 | if (ret_val) |
| 1122 | return ret_val; |
| 1123 | reg_data |= 0x3F; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1124 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, GG82563_REG(0x34, 9), |
| 1125 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1126 | if (ret_val) |
| 1127 | return ret_val; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1128 | ret_val = e1000_read_kmrn_reg_80003es2lan(hw, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1129 | E1000_KMRNCTRLSTA_OFFSET_INB_CTRL, |
| 1130 | ®_data); |
| 1131 | if (ret_val) |
| 1132 | return ret_val; |
| 1133 | reg_data |= E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1134 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, |
| 1135 | E1000_KMRNCTRLSTA_OFFSET_INB_CTRL, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1136 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1137 | if (ret_val) |
| 1138 | return ret_val; |
| 1139 | |
| 1140 | ret_val = e1000_copper_link_setup_gg82563_80003es2lan(hw); |
| 1141 | if (ret_val) |
| 1142 | return ret_val; |
| 1143 | |
Bruce Allan | 8649f43 | 2012-02-08 02:54:58 +0000 | [diff] [blame] | 1144 | return e1000e_setup_copper_link(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | /** |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1148 | * e1000_cfg_on_link_up_80003es2lan - es2 link configuration after link-up |
| 1149 | * @hw: pointer to the HW structure |
| 1150 | * @duplex: current duplex setting |
| 1151 | * |
| 1152 | * Configure the KMRN interface by applying last minute quirks for |
| 1153 | * 10/100 operation. |
| 1154 | **/ |
| 1155 | static s32 e1000_cfg_on_link_up_80003es2lan(struct e1000_hw *hw) |
| 1156 | { |
| 1157 | s32 ret_val = 0; |
| 1158 | u16 speed; |
| 1159 | u16 duplex; |
| 1160 | |
| 1161 | if (hw->phy.media_type == e1000_media_type_copper) { |
| 1162 | ret_val = e1000e_get_speed_and_duplex_copper(hw, &speed, |
| 1163 | &duplex); |
| 1164 | if (ret_val) |
| 1165 | return ret_val; |
| 1166 | |
| 1167 | if (speed == SPEED_1000) |
| 1168 | ret_val = e1000_cfg_kmrn_1000_80003es2lan(hw); |
| 1169 | else |
| 1170 | ret_val = e1000_cfg_kmrn_10_100_80003es2lan(hw, duplex); |
| 1171 | } |
| 1172 | |
| 1173 | return ret_val; |
| 1174 | } |
| 1175 | |
| 1176 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1177 | * e1000_cfg_kmrn_10_100_80003es2lan - Apply "quirks" for 10/100 operation |
| 1178 | * @hw: pointer to the HW structure |
| 1179 | * @duplex: current duplex setting |
| 1180 | * |
| 1181 | * Configure the KMRN interface by applying last minute quirks for |
| 1182 | * 10/100 operation. |
| 1183 | **/ |
| 1184 | static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex) |
| 1185 | { |
| 1186 | s32 ret_val; |
| 1187 | u32 tipg; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1188 | u32 i = 0; |
| 1189 | u16 reg_data, reg_data2; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1190 | |
| 1191 | reg_data = E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1192 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, |
| 1193 | E1000_KMRNCTRLSTA_OFFSET_HD_CTRL, |
| 1194 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1195 | if (ret_val) |
| 1196 | return ret_val; |
| 1197 | |
| 1198 | /* Configure Transmit Inter-Packet Gap */ |
| 1199 | tipg = er32(TIPG); |
| 1200 | tipg &= ~E1000_TIPG_IPGT_MASK; |
| 1201 | tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN; |
| 1202 | ew32(TIPG, tipg); |
| 1203 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1204 | do { |
| 1205 | ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, ®_data); |
| 1206 | if (ret_val) |
| 1207 | return ret_val; |
| 1208 | |
| 1209 | ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, ®_data2); |
| 1210 | if (ret_val) |
| 1211 | return ret_val; |
| 1212 | i++; |
| 1213 | } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1214 | |
| 1215 | if (duplex == HALF_DUPLEX) |
| 1216 | reg_data |= GG82563_KMCR_PASS_FALSE_CARRIER; |
| 1217 | else |
| 1218 | reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER; |
| 1219 | |
Bruce Allan | 520d6f2 | 2012-02-08 02:54:53 +0000 | [diff] [blame] | 1220 | return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | /** |
| 1224 | * e1000_cfg_kmrn_1000_80003es2lan - Apply "quirks" for gigabit operation |
| 1225 | * @hw: pointer to the HW structure |
| 1226 | * |
| 1227 | * Configure the KMRN interface by applying last minute quirks for |
| 1228 | * gigabit operation. |
| 1229 | **/ |
| 1230 | static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw) |
| 1231 | { |
| 1232 | s32 ret_val; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1233 | u16 reg_data, reg_data2; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1234 | u32 tipg; |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1235 | u32 i = 0; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1236 | |
| 1237 | reg_data = E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT; |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1238 | ret_val = e1000_write_kmrn_reg_80003es2lan(hw, |
| 1239 | E1000_KMRNCTRLSTA_OFFSET_HD_CTRL, |
| 1240 | reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1241 | if (ret_val) |
| 1242 | return ret_val; |
| 1243 | |
| 1244 | /* Configure Transmit Inter-Packet Gap */ |
| 1245 | tipg = er32(TIPG); |
| 1246 | tipg &= ~E1000_TIPG_IPGT_MASK; |
| 1247 | tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN; |
| 1248 | ew32(TIPG, tipg); |
| 1249 | |
David Graham | 2d9498f | 2008-04-23 11:09:14 -0700 | [diff] [blame] | 1250 | do { |
| 1251 | ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, ®_data); |
| 1252 | if (ret_val) |
| 1253 | return ret_val; |
| 1254 | |
| 1255 | ret_val = e1e_rphy(hw, GG82563_PHY_KMRN_MODE_CTRL, ®_data2); |
| 1256 | if (ret_val) |
| 1257 | return ret_val; |
| 1258 | i++; |
| 1259 | } while ((reg_data != reg_data2) && (i < GG82563_MAX_KMRN_RETRY)); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1260 | |
| 1261 | reg_data &= ~GG82563_KMCR_PASS_FALSE_CARRIER; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1262 | |
Bruce Allan | 7eb61d8 | 2012-02-08 02:55:03 +0000 | [diff] [blame] | 1263 | return e1e_wphy(hw, GG82563_PHY_KMRN_MODE_CTRL, reg_data); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | /** |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1267 | * e1000_read_kmrn_reg_80003es2lan - Read kumeran register |
| 1268 | * @hw: pointer to the HW structure |
| 1269 | * @offset: register offset to be read |
| 1270 | * @data: pointer to the read data |
| 1271 | * |
| 1272 | * Acquire semaphore, then read the PHY register at offset |
| 1273 | * using the kumeran interface. The information retrieved is stored in data. |
| 1274 | * Release the semaphore before exiting. |
| 1275 | **/ |
Hannes Eder | fa4c16d | 2008-12-22 09:16:13 +0000 | [diff] [blame] | 1276 | static s32 e1000_read_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset, |
| 1277 | u16 *data) |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1278 | { |
| 1279 | u32 kmrnctrlsta; |
| 1280 | s32 ret_val = 0; |
| 1281 | |
| 1282 | ret_val = e1000_acquire_mac_csr_80003es2lan(hw); |
| 1283 | if (ret_val) |
| 1284 | return ret_val; |
| 1285 | |
| 1286 | kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) & |
| 1287 | E1000_KMRNCTRLSTA_OFFSET) | E1000_KMRNCTRLSTA_REN; |
| 1288 | ew32(KMRNCTRLSTA, kmrnctrlsta); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1289 | e1e_flush(); |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1290 | |
| 1291 | udelay(2); |
| 1292 | |
| 1293 | kmrnctrlsta = er32(KMRNCTRLSTA); |
| 1294 | *data = (u16)kmrnctrlsta; |
| 1295 | |
| 1296 | e1000_release_mac_csr_80003es2lan(hw); |
| 1297 | |
| 1298 | return ret_val; |
| 1299 | } |
| 1300 | |
| 1301 | /** |
| 1302 | * e1000_write_kmrn_reg_80003es2lan - Write kumeran register |
| 1303 | * @hw: pointer to the HW structure |
| 1304 | * @offset: register offset to write to |
| 1305 | * @data: data to write at register offset |
| 1306 | * |
| 1307 | * Acquire semaphore, then write the data to PHY register |
| 1308 | * at the offset using the kumeran interface. Release semaphore |
| 1309 | * before exiting. |
| 1310 | **/ |
Hannes Eder | fa4c16d | 2008-12-22 09:16:13 +0000 | [diff] [blame] | 1311 | static s32 e1000_write_kmrn_reg_80003es2lan(struct e1000_hw *hw, u32 offset, |
| 1312 | u16 data) |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1313 | { |
| 1314 | u32 kmrnctrlsta; |
| 1315 | s32 ret_val = 0; |
| 1316 | |
| 1317 | ret_val = e1000_acquire_mac_csr_80003es2lan(hw); |
| 1318 | if (ret_val) |
| 1319 | return ret_val; |
| 1320 | |
| 1321 | kmrnctrlsta = ((offset << E1000_KMRNCTRLSTA_OFFSET_SHIFT) & |
| 1322 | E1000_KMRNCTRLSTA_OFFSET) | data; |
| 1323 | ew32(KMRNCTRLSTA, kmrnctrlsta); |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 1324 | e1e_flush(); |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1325 | |
| 1326 | udelay(2); |
| 1327 | |
| 1328 | e1000_release_mac_csr_80003es2lan(hw); |
| 1329 | |
| 1330 | return ret_val; |
| 1331 | } |
| 1332 | |
| 1333 | /** |
Bruce Allan | 608f8a0 | 2010-01-13 02:04:58 +0000 | [diff] [blame] | 1334 | * e1000_read_mac_addr_80003es2lan - Read device MAC address |
| 1335 | * @hw: pointer to the HW structure |
| 1336 | **/ |
| 1337 | static s32 e1000_read_mac_addr_80003es2lan(struct e1000_hw *hw) |
| 1338 | { |
| 1339 | s32 ret_val = 0; |
| 1340 | |
| 1341 | /* |
| 1342 | * If there's an alternate MAC address place it in RAR0 |
| 1343 | * so that it will override the Si installed default perm |
| 1344 | * address. |
| 1345 | */ |
| 1346 | ret_val = e1000_check_alt_mac_addr_generic(hw); |
| 1347 | if (ret_val) |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1348 | return ret_val; |
Bruce Allan | 608f8a0 | 2010-01-13 02:04:58 +0000 | [diff] [blame] | 1349 | |
Bruce Allan | 5015e53 | 2012-02-08 02:55:56 +0000 | [diff] [blame] | 1350 | return e1000_read_mac_addr_generic(hw); |
Bruce Allan | 608f8a0 | 2010-01-13 02:04:58 +0000 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | /** |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 1354 | * e1000_power_down_phy_copper_80003es2lan - Remove link during PHY power down |
| 1355 | * @hw: pointer to the HW structure |
| 1356 | * |
| 1357 | * In the case of a PHY power down to save power, or to turn off link during a |
| 1358 | * driver unload, or wake on lan is not enabled, remove the link. |
| 1359 | **/ |
| 1360 | static void e1000_power_down_phy_copper_80003es2lan(struct e1000_hw *hw) |
| 1361 | { |
| 1362 | /* If the management interface is not enabled, then power down */ |
| 1363 | if (!(hw->mac.ops.check_mng_mode(hw) || |
| 1364 | hw->phy.ops.check_reset_block(hw))) |
| 1365 | e1000_power_down_phy_copper(hw); |
Bruce Allan | 17f208d | 2009-12-01 15:47:22 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
| 1368 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1369 | * e1000_clear_hw_cntrs_80003es2lan - Clear device specific hardware counters |
| 1370 | * @hw: pointer to the HW structure |
| 1371 | * |
| 1372 | * Clears the hardware counters by reading the counter registers. |
| 1373 | **/ |
| 1374 | static void e1000_clear_hw_cntrs_80003es2lan(struct e1000_hw *hw) |
| 1375 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1376 | e1000e_clear_hw_cntrs_base(hw); |
| 1377 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 1378 | er32(PRC64); |
| 1379 | er32(PRC127); |
| 1380 | er32(PRC255); |
| 1381 | er32(PRC511); |
| 1382 | er32(PRC1023); |
| 1383 | er32(PRC1522); |
| 1384 | er32(PTC64); |
| 1385 | er32(PTC127); |
| 1386 | er32(PTC255); |
| 1387 | er32(PTC511); |
| 1388 | er32(PTC1023); |
| 1389 | er32(PTC1522); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1390 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 1391 | er32(ALGNERRC); |
| 1392 | er32(RXERRC); |
| 1393 | er32(TNCRS); |
| 1394 | er32(CEXTERR); |
| 1395 | er32(TSCTC); |
| 1396 | er32(TSCTFC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1397 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 1398 | er32(MGTPRC); |
| 1399 | er32(MGTPDC); |
| 1400 | er32(MGTPTC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1401 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 1402 | er32(IAC); |
| 1403 | er32(ICRXOC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1404 | |
Bruce Allan | 99673d9 | 2009-11-20 23:27:21 +0000 | [diff] [blame] | 1405 | er32(ICRXPTC); |
| 1406 | er32(ICRXATC); |
| 1407 | er32(ICTXPTC); |
| 1408 | er32(ICTXATC); |
| 1409 | er32(ICTXQEC); |
| 1410 | er32(ICTXQMTC); |
| 1411 | er32(ICRXDMTC); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1412 | } |
| 1413 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 1414 | static const struct e1000_mac_operations es2_mac_ops = { |
Bruce Allan | 608f8a0 | 2010-01-13 02:04:58 +0000 | [diff] [blame] | 1415 | .read_mac_addr = e1000_read_mac_addr_80003es2lan, |
Bruce Allan | d1964eb | 2012-02-22 09:02:21 +0000 | [diff] [blame] | 1416 | .id_led_init = e1000e_id_led_init_generic, |
Bruce Allan | dbf80dc | 2011-04-16 00:34:40 +0000 | [diff] [blame] | 1417 | .blink_led = e1000e_blink_led_generic, |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 1418 | .check_mng_mode = e1000e_check_mng_mode_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1419 | /* check_for_link dependent on media type */ |
| 1420 | .cleanup_led = e1000e_cleanup_led_generic, |
| 1421 | .clear_hw_cntrs = e1000_clear_hw_cntrs_80003es2lan, |
| 1422 | .get_bus_info = e1000e_get_bus_info_pcie, |
Bruce Allan | f4d2dd4 | 2010-01-13 02:05:18 +0000 | [diff] [blame] | 1423 | .set_lan_id = e1000_set_lan_id_multi_port_pcie, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1424 | .get_link_up_info = e1000_get_link_up_info_80003es2lan, |
| 1425 | .led_on = e1000e_led_on_generic, |
| 1426 | .led_off = e1000e_led_off_generic, |
Jeff Kirsher | e2de3eb | 2008-03-28 09:15:11 -0700 | [diff] [blame] | 1427 | .update_mc_addr_list = e1000e_update_mc_addr_list_generic, |
Bruce Allan | caaddaf | 2009-12-01 15:46:43 +0000 | [diff] [blame] | 1428 | .write_vfta = e1000_write_vfta_generic, |
| 1429 | .clear_vfta = e1000_clear_vfta_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1430 | .reset_hw = e1000_reset_hw_80003es2lan, |
| 1431 | .init_hw = e1000_init_hw_80003es2lan, |
Bruce Allan | 1a46b40 | 2012-02-22 09:02:26 +0000 | [diff] [blame] | 1432 | .setup_link = e1000e_setup_link_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1433 | /* setup_physical_interface dependent on media type */ |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1434 | .setup_led = e1000e_setup_led_generic, |
Bruce Allan | 57cde76 | 2012-02-22 09:02:58 +0000 | [diff] [blame] | 1435 | .config_collision_dist = e1000e_config_collision_dist_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1436 | }; |
| 1437 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 1438 | static const struct e1000_phy_operations es2_phy_ops = { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1439 | .acquire = e1000_acquire_phy_80003es2lan, |
Bruce Allan | 94e5b65 | 2009-12-02 17:02:14 +0000 | [diff] [blame] | 1440 | .check_polarity = e1000_check_polarity_m88, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1441 | .check_reset_block = e1000e_check_reset_block_generic, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1442 | .commit = e1000e_phy_sw_reset, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1443 | .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan, |
| 1444 | .get_cfg_done = e1000_get_cfg_done_80003es2lan, |
| 1445 | .get_cable_length = e1000_get_cable_length_80003es2lan, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1446 | .get_info = e1000e_get_phy_info_m88, |
| 1447 | .read_reg = e1000_read_phy_reg_gg82563_80003es2lan, |
| 1448 | .release = e1000_release_phy_80003es2lan, |
| 1449 | .reset = e1000e_phy_hw_reset_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1450 | .set_d0_lplu_state = NULL, |
| 1451 | .set_d3_lplu_state = e1000e_set_d3_lplu_state, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1452 | .write_reg = e1000_write_phy_reg_gg82563_80003es2lan, |
Bruce Allan | 75eb0fa | 2008-11-21 16:53:51 -0800 | [diff] [blame] | 1453 | .cfg_on_link_up = e1000_cfg_on_link_up_80003es2lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1454 | }; |
| 1455 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 1456 | static const struct e1000_nvm_operations es2_nvm_ops = { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1457 | .acquire = e1000_acquire_nvm_80003es2lan, |
| 1458 | .read = e1000e_read_nvm_eerd, |
| 1459 | .release = e1000_release_nvm_80003es2lan, |
Bruce Allan | e85e363 | 2012-02-22 09:03:14 +0000 | [diff] [blame^] | 1460 | .reload = e1000e_reload_nvm_generic, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1461 | .update = e1000e_update_nvm_checksum_generic, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1462 | .valid_led_default = e1000e_valid_led_default, |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1463 | .validate = e1000e_validate_nvm_checksum_generic, |
| 1464 | .write = e1000_write_nvm_80003es2lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1465 | }; |
| 1466 | |
Jeff Kirsher | 8ce9d6c | 2011-09-24 13:23:52 +0000 | [diff] [blame] | 1467 | const struct e1000_info e1000_es2_info = { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1468 | .mac = e1000_80003es2lan, |
| 1469 | .flags = FLAG_HAS_HW_VLAN_FILTER |
| 1470 | | FLAG_HAS_JUMBO_FRAMES |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1471 | | FLAG_HAS_WOL |
| 1472 | | FLAG_APME_IN_CTRL3 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1473 | | FLAG_HAS_CTRLEXT_ON_LOAD |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1474 | | FLAG_RX_NEEDS_RESTART /* errata */ |
| 1475 | | FLAG_TARC_SET_BIT_ZERO /* errata */ |
| 1476 | | FLAG_APME_CHECK_PORT_B |
Bruce Allan | 6a92f73 | 2011-12-16 00:46:12 +0000 | [diff] [blame] | 1477 | | FLAG_DISABLE_FC_PAUSE_TIME, /* errata */ |
Jesse Brandeburg | 3a3b758 | 2010-09-29 21:38:49 +0000 | [diff] [blame] | 1478 | .flags2 = FLAG2_DMA_BURST, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1479 | .pba = 38, |
Bruce Allan | 2adc55c | 2009-06-02 11:28:58 +0000 | [diff] [blame] | 1480 | .max_hw_frame_size = DEFAULT_JUMBO, |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 1481 | .get_variants = e1000_get_variants_80003es2lan, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1482 | .mac_ops = &es2_mac_ops, |
| 1483 | .phy_ops = &es2_phy_ops, |
| 1484 | .nvm_ops = &es2_nvm_ops, |
| 1485 | }; |
| 1486 | |