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 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 29 | #include "e1000.h" |
| 30 | |
| 31 | enum e1000_mng_mode { |
| 32 | e1000_mng_mode_none = 0, |
| 33 | e1000_mng_mode_asf, |
| 34 | e1000_mng_mode_pt, |
| 35 | e1000_mng_mode_ipmi, |
| 36 | e1000_mng_mode_host_if_only |
| 37 | }; |
| 38 | |
| 39 | #define E1000_FACTPS_MNGCG 0x20000000 |
| 40 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 41 | /* Intel(R) Active Management Technology signature */ |
| 42 | #define E1000_IAMT_SIGNATURE 0x544D4149 |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 43 | |
| 44 | /** |
| 45 | * e1000e_get_bus_info_pcie - Get PCIe bus information |
| 46 | * @hw: pointer to the HW structure |
| 47 | * |
| 48 | * Determines and stores the system bus information for a particular |
| 49 | * network interface. The following bus information is determined and stored: |
| 50 | * bus speed, bus width, type (PCIe), and PCIe function. |
| 51 | **/ |
| 52 | s32 e1000e_get_bus_info_pcie(struct e1000_hw *hw) |
| 53 | { |
| 54 | struct e1000_bus_info *bus = &hw->bus; |
| 55 | struct e1000_adapter *adapter = hw->adapter; |
| 56 | u32 status; |
| 57 | u16 pcie_link_status, pci_header_type, cap_offset; |
| 58 | |
| 59 | cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP); |
| 60 | if (!cap_offset) { |
| 61 | bus->width = e1000_bus_width_unknown; |
| 62 | } else { |
| 63 | pci_read_config_word(adapter->pdev, |
| 64 | cap_offset + PCIE_LINK_STATUS, |
| 65 | &pcie_link_status); |
| 66 | bus->width = (enum e1000_bus_width)((pcie_link_status & |
| 67 | PCIE_LINK_WIDTH_MASK) >> |
| 68 | PCIE_LINK_WIDTH_SHIFT); |
| 69 | } |
| 70 | |
| 71 | pci_read_config_word(adapter->pdev, PCI_HEADER_TYPE_REGISTER, |
| 72 | &pci_header_type); |
| 73 | if (pci_header_type & PCI_HEADER_TYPE_MULTIFUNC) { |
| 74 | status = er32(STATUS); |
| 75 | bus->func = (status & E1000_STATUS_FUNC_MASK) |
| 76 | >> E1000_STATUS_FUNC_SHIFT; |
| 77 | } else { |
| 78 | bus->func = 0; |
| 79 | } |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * e1000e_write_vfta - Write value to VLAN filter table |
| 86 | * @hw: pointer to the HW structure |
| 87 | * @offset: register offset in VLAN filter table |
| 88 | * @value: register value written to VLAN filter table |
| 89 | * |
| 90 | * Writes value at the given offset in the register array which stores |
| 91 | * the VLAN filter table. |
| 92 | **/ |
| 93 | void e1000e_write_vfta(struct e1000_hw *hw, u32 offset, u32 value) |
| 94 | { |
| 95 | E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, offset, value); |
| 96 | e1e_flush(); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * e1000e_init_rx_addrs - Initialize receive address's |
| 101 | * @hw: pointer to the HW structure |
| 102 | * @rar_count: receive address registers |
| 103 | * |
| 104 | * Setups the receive address registers by setting the base receive address |
| 105 | * register to the devices MAC address and clearing all the other receive |
| 106 | * address registers to 0. |
| 107 | **/ |
| 108 | void e1000e_init_rx_addrs(struct e1000_hw *hw, u16 rar_count) |
| 109 | { |
| 110 | u32 i; |
| 111 | |
| 112 | /* Setup the receive address */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 113 | e_dbg("Programming MAC Address into RAR[0]\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 114 | |
| 115 | e1000e_rar_set(hw, hw->mac.addr, 0); |
| 116 | |
| 117 | /* Zero out the other (rar_entry_count - 1) receive addresses */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 118 | e_dbg("Clearing RAR[1-%u]\n", rar_count-1); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 119 | for (i = 1; i < rar_count; i++) { |
| 120 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, (i << 1), 0); |
| 121 | e1e_flush(); |
| 122 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, ((i << 1) + 1), 0); |
| 123 | e1e_flush(); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * e1000e_rar_set - Set receive address register |
| 129 | * @hw: pointer to the HW structure |
| 130 | * @addr: pointer to the receive address |
| 131 | * @index: receive address array register |
| 132 | * |
| 133 | * Sets the receive address array register at index to the address passed |
| 134 | * in by addr. |
| 135 | **/ |
| 136 | void e1000e_rar_set(struct e1000_hw *hw, u8 *addr, u32 index) |
| 137 | { |
| 138 | u32 rar_low, rar_high; |
| 139 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 140 | /* |
| 141 | * HW expects these in little endian so we reverse the byte order |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 142 | * from network order (big endian) to little endian |
| 143 | */ |
| 144 | rar_low = ((u32) addr[0] | |
| 145 | ((u32) addr[1] << 8) | |
| 146 | ((u32) addr[2] << 16) | ((u32) addr[3] << 24)); |
| 147 | |
| 148 | rar_high = ((u32) addr[4] | ((u32) addr[5] << 8)); |
| 149 | |
| 150 | rar_high |= E1000_RAH_AV; |
| 151 | |
| 152 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, (index << 1), rar_low); |
| 153 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, ((index << 1) + 1), rar_high); |
| 154 | } |
| 155 | |
| 156 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 157 | * e1000_hash_mc_addr - Generate a multicast hash value |
| 158 | * @hw: pointer to the HW structure |
| 159 | * @mc_addr: pointer to a multicast address |
| 160 | * |
| 161 | * Generates a multicast address hash value which is used to determine |
| 162 | * the multicast filter table array address and new table value. See |
| 163 | * e1000_mta_set_generic() |
| 164 | **/ |
| 165 | static u32 e1000_hash_mc_addr(struct e1000_hw *hw, u8 *mc_addr) |
| 166 | { |
| 167 | u32 hash_value, hash_mask; |
| 168 | u8 bit_shift = 0; |
| 169 | |
| 170 | /* Register count multiplied by bits per register */ |
| 171 | hash_mask = (hw->mac.mta_reg_count * 32) - 1; |
| 172 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 173 | /* |
| 174 | * For a mc_filter_type of 0, bit_shift is the number of left-shifts |
| 175 | * where 0xFF would still fall within the hash mask. |
| 176 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 177 | while (hash_mask >> bit_shift != 0xFF) |
| 178 | bit_shift++; |
| 179 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 180 | /* |
| 181 | * The portion of the address that is used for the hash table |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 182 | * is determined by the mc_filter_type setting. |
| 183 | * The algorithm is such that there is a total of 8 bits of shifting. |
| 184 | * The bit_shift for a mc_filter_type of 0 represents the number of |
| 185 | * left-shifts where the MSB of mc_addr[5] would still fall within |
| 186 | * the hash_mask. Case 0 does this exactly. Since there are a total |
| 187 | * of 8 bits of shifting, then mc_addr[4] will shift right the |
| 188 | * remaining number of bits. Thus 8 - bit_shift. The rest of the |
| 189 | * cases are a variation of this algorithm...essentially raising the |
| 190 | * number of bits to shift mc_addr[5] left, while still keeping the |
| 191 | * 8-bit shifting total. |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 192 | * |
| 193 | * For example, given the following Destination MAC Address and an |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 194 | * mta register count of 128 (thus a 4096-bit vector and 0xFFF mask), |
| 195 | * we can see that the bit_shift for case 0 is 4. These are the hash |
| 196 | * values resulting from each mc_filter_type... |
| 197 | * [0] [1] [2] [3] [4] [5] |
| 198 | * 01 AA 00 12 34 56 |
| 199 | * LSB MSB |
| 200 | * |
| 201 | * case 0: hash_value = ((0x34 >> 4) | (0x56 << 4)) & 0xFFF = 0x563 |
| 202 | * case 1: hash_value = ((0x34 >> 3) | (0x56 << 5)) & 0xFFF = 0xAC6 |
| 203 | * case 2: hash_value = ((0x34 >> 2) | (0x56 << 6)) & 0xFFF = 0x163 |
| 204 | * case 3: hash_value = ((0x34 >> 0) | (0x56 << 8)) & 0xFFF = 0x634 |
| 205 | */ |
| 206 | switch (hw->mac.mc_filter_type) { |
| 207 | default: |
| 208 | case 0: |
| 209 | break; |
| 210 | case 1: |
| 211 | bit_shift += 1; |
| 212 | break; |
| 213 | case 2: |
| 214 | bit_shift += 2; |
| 215 | break; |
| 216 | case 3: |
| 217 | bit_shift += 4; |
| 218 | break; |
| 219 | } |
| 220 | |
| 221 | hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) | |
| 222 | (((u16) mc_addr[5]) << bit_shift))); |
| 223 | |
| 224 | return hash_value; |
| 225 | } |
| 226 | |
| 227 | /** |
Jeff Kirsher | e2de3eb | 2008-03-28 09:15:11 -0700 | [diff] [blame] | 228 | * e1000e_update_mc_addr_list_generic - Update Multicast addresses |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 229 | * @hw: pointer to the HW structure |
| 230 | * @mc_addr_list: array of multicast addresses to program |
| 231 | * @mc_addr_count: number of multicast addresses to program |
| 232 | * @rar_used_count: the first RAR register free to program |
| 233 | * @rar_count: total number of supported Receive Address Registers |
| 234 | * |
| 235 | * Updates the Receive Address Registers and Multicast Table Array. |
| 236 | * The caller must have a packed mc_addr_list of multicast addresses. |
| 237 | * The parameter rar_count will usually be hw->mac.rar_entry_count |
| 238 | * unless there are workarounds that change this. |
| 239 | **/ |
Jeff Kirsher | e2de3eb | 2008-03-28 09:15:11 -0700 | [diff] [blame] | 240 | void e1000e_update_mc_addr_list_generic(struct e1000_hw *hw, |
| 241 | u8 *mc_addr_list, u32 mc_addr_count, |
| 242 | u32 rar_used_count, u32 rar_count) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 243 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 244 | u32 i; |
Jesse Brandeburg | a72d2b2 | 2009-03-25 22:05:21 +0000 | [diff] [blame] | 245 | u32 *mcarray = kzalloc(hw->mac.mta_reg_count * sizeof(u32), GFP_ATOMIC); |
| 246 | |
| 247 | if (!mcarray) { |
| 248 | printk(KERN_ERR "multicast array memory allocation failed\n"); |
| 249 | return; |
| 250 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 251 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 252 | /* |
| 253 | * Load the first set of multicast addresses into the exact |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 254 | * filters (RAR). If there are not enough to fill the RAR |
| 255 | * array, clear the filters. |
| 256 | */ |
| 257 | for (i = rar_used_count; i < rar_count; i++) { |
| 258 | if (mc_addr_count) { |
| 259 | e1000e_rar_set(hw, mc_addr_list, i); |
| 260 | mc_addr_count--; |
| 261 | mc_addr_list += ETH_ALEN; |
| 262 | } else { |
| 263 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, i << 1, 0); |
| 264 | e1e_flush(); |
| 265 | E1000_WRITE_REG_ARRAY(hw, E1000_RA, (i << 1) + 1, 0); |
| 266 | e1e_flush(); |
| 267 | } |
| 268 | } |
| 269 | |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 270 | /* Load any remaining multicast addresses into the hash table. */ |
| 271 | for (; mc_addr_count > 0; mc_addr_count--) { |
Jesse Brandeburg | a72d2b2 | 2009-03-25 22:05:21 +0000 | [diff] [blame] | 272 | u32 hash_value, hash_reg, hash_bit, mta; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 273 | hash_value = e1000_hash_mc_addr(hw, mc_addr_list); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 274 | e_dbg("Hash value = 0x%03X\n", hash_value); |
Jesse Brandeburg | a72d2b2 | 2009-03-25 22:05:21 +0000 | [diff] [blame] | 275 | hash_reg = (hash_value >> 5) & (hw->mac.mta_reg_count - 1); |
| 276 | hash_bit = hash_value & 0x1F; |
| 277 | mta = (1 << hash_bit); |
| 278 | mcarray[hash_reg] |= mta; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 279 | mc_addr_list += ETH_ALEN; |
| 280 | } |
Jesse Brandeburg | a72d2b2 | 2009-03-25 22:05:21 +0000 | [diff] [blame] | 281 | |
| 282 | /* write the hash table completely */ |
| 283 | for (i = 0; i < hw->mac.mta_reg_count; i++) |
| 284 | E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, mcarray[i]); |
| 285 | |
| 286 | e1e_flush(); |
| 287 | kfree(mcarray); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | /** |
| 291 | * e1000e_clear_hw_cntrs_base - Clear base hardware counters |
| 292 | * @hw: pointer to the HW structure |
| 293 | * |
| 294 | * Clears the base hardware counters by reading the counter registers. |
| 295 | **/ |
| 296 | void e1000e_clear_hw_cntrs_base(struct e1000_hw *hw) |
| 297 | { |
| 298 | u32 temp; |
| 299 | |
| 300 | temp = er32(CRCERRS); |
| 301 | temp = er32(SYMERRS); |
| 302 | temp = er32(MPC); |
| 303 | temp = er32(SCC); |
| 304 | temp = er32(ECOL); |
| 305 | temp = er32(MCC); |
| 306 | temp = er32(LATECOL); |
| 307 | temp = er32(COLC); |
| 308 | temp = er32(DC); |
| 309 | temp = er32(SEC); |
| 310 | temp = er32(RLEC); |
| 311 | temp = er32(XONRXC); |
| 312 | temp = er32(XONTXC); |
| 313 | temp = er32(XOFFRXC); |
| 314 | temp = er32(XOFFTXC); |
| 315 | temp = er32(FCRUC); |
| 316 | temp = er32(GPRC); |
| 317 | temp = er32(BPRC); |
| 318 | temp = er32(MPRC); |
| 319 | temp = er32(GPTC); |
| 320 | temp = er32(GORCL); |
| 321 | temp = er32(GORCH); |
| 322 | temp = er32(GOTCL); |
| 323 | temp = er32(GOTCH); |
| 324 | temp = er32(RNBC); |
| 325 | temp = er32(RUC); |
| 326 | temp = er32(RFC); |
| 327 | temp = er32(ROC); |
| 328 | temp = er32(RJC); |
| 329 | temp = er32(TORL); |
| 330 | temp = er32(TORH); |
| 331 | temp = er32(TOTL); |
| 332 | temp = er32(TOTH); |
| 333 | temp = er32(TPR); |
| 334 | temp = er32(TPT); |
| 335 | temp = er32(MPTC); |
| 336 | temp = er32(BPTC); |
| 337 | } |
| 338 | |
| 339 | /** |
| 340 | * e1000e_check_for_copper_link - Check for link (Copper) |
| 341 | * @hw: pointer to the HW structure |
| 342 | * |
| 343 | * Checks to see of the link status of the hardware has changed. If a |
| 344 | * change in link status has been detected, then we read the PHY registers |
| 345 | * to get the current speed/duplex if link exists. |
| 346 | **/ |
| 347 | s32 e1000e_check_for_copper_link(struct e1000_hw *hw) |
| 348 | { |
| 349 | struct e1000_mac_info *mac = &hw->mac; |
| 350 | s32 ret_val; |
| 351 | bool link; |
| 352 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 353 | /* |
| 354 | * We only want to go out to the PHY registers to see if Auto-Neg |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 355 | * has completed and/or if our link status has changed. The |
| 356 | * get_link_status flag is set upon receiving a Link Status |
| 357 | * Change or Rx Sequence Error interrupt. |
| 358 | */ |
| 359 | if (!mac->get_link_status) |
| 360 | return 0; |
| 361 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 362 | /* |
| 363 | * First we want to see if the MII Status Register reports |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 364 | * link. If so, then we want to get the current speed/duplex |
| 365 | * of the PHY. |
| 366 | */ |
| 367 | ret_val = e1000e_phy_has_link_generic(hw, 1, 0, &link); |
| 368 | if (ret_val) |
| 369 | return ret_val; |
| 370 | |
| 371 | if (!link) |
| 372 | return ret_val; /* No link detected */ |
| 373 | |
| 374 | mac->get_link_status = 0; |
| 375 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 376 | /* |
| 377 | * Check if there was DownShift, must be checked |
| 378 | * immediately after link-up |
| 379 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 380 | e1000e_check_downshift(hw); |
| 381 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 382 | /* |
| 383 | * If we are forcing speed/duplex, then we simply return since |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 384 | * we have already determined whether we have link or not. |
| 385 | */ |
| 386 | if (!mac->autoneg) { |
| 387 | ret_val = -E1000_ERR_CONFIG; |
| 388 | return ret_val; |
| 389 | } |
| 390 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 391 | /* |
| 392 | * Auto-Neg is enabled. Auto Speed Detection takes care |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 393 | * of MAC speed/duplex configuration. So we only need to |
| 394 | * configure Collision Distance in the MAC. |
| 395 | */ |
| 396 | e1000e_config_collision_dist(hw); |
| 397 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 398 | /* |
| 399 | * Configure Flow Control now that Auto-Neg has completed. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 400 | * First, we need to restore the desired flow control |
| 401 | * settings because we may have had to re-autoneg with a |
| 402 | * different link partner. |
| 403 | */ |
| 404 | ret_val = e1000e_config_fc_after_link_up(hw); |
| 405 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 406 | e_dbg("Error configuring flow control\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | return ret_val; |
| 410 | } |
| 411 | |
| 412 | /** |
| 413 | * e1000e_check_for_fiber_link - Check for link (Fiber) |
| 414 | * @hw: pointer to the HW structure |
| 415 | * |
| 416 | * Checks for link up on the hardware. If link is not up and we have |
| 417 | * a signal, then we need to force link up. |
| 418 | **/ |
| 419 | s32 e1000e_check_for_fiber_link(struct e1000_hw *hw) |
| 420 | { |
| 421 | struct e1000_mac_info *mac = &hw->mac; |
| 422 | u32 rxcw; |
| 423 | u32 ctrl; |
| 424 | u32 status; |
| 425 | s32 ret_val; |
| 426 | |
| 427 | ctrl = er32(CTRL); |
| 428 | status = er32(STATUS); |
| 429 | rxcw = er32(RXCW); |
| 430 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 431 | /* |
| 432 | * If we don't have link (auto-negotiation failed or link partner |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 433 | * cannot auto-negotiate), the cable is plugged in (we have signal), |
| 434 | * and our link partner is not trying to auto-negotiate with us (we |
| 435 | * are receiving idles or data), we need to force link up. We also |
| 436 | * need to give auto-negotiation time to complete, in case the cable |
| 437 | * was just plugged in. The autoneg_failed flag does this. |
| 438 | */ |
| 439 | /* (ctrl & E1000_CTRL_SWDPIN1) == 1 == have signal */ |
| 440 | if ((ctrl & E1000_CTRL_SWDPIN1) && (!(status & E1000_STATUS_LU)) && |
| 441 | (!(rxcw & E1000_RXCW_C))) { |
| 442 | if (mac->autoneg_failed == 0) { |
| 443 | mac->autoneg_failed = 1; |
| 444 | return 0; |
| 445 | } |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 446 | e_dbg("NOT RXing /C/, disable AutoNeg and force link.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 447 | |
| 448 | /* Disable auto-negotiation in the TXCW register */ |
| 449 | ew32(TXCW, (mac->txcw & ~E1000_TXCW_ANE)); |
| 450 | |
| 451 | /* Force link-up and also force full-duplex. */ |
| 452 | ctrl = er32(CTRL); |
| 453 | ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FD); |
| 454 | ew32(CTRL, ctrl); |
| 455 | |
| 456 | /* Configure Flow Control after forcing link up. */ |
| 457 | ret_val = e1000e_config_fc_after_link_up(hw); |
| 458 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 459 | e_dbg("Error configuring flow control\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 460 | return ret_val; |
| 461 | } |
| 462 | } else if ((ctrl & E1000_CTRL_SLU) && (rxcw & E1000_RXCW_C)) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 463 | /* |
| 464 | * If we are forcing link and we are receiving /C/ ordered |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 465 | * sets, re-enable auto-negotiation in the TXCW register |
| 466 | * and disable forced link in the Device Control register |
| 467 | * in an attempt to auto-negotiate with our link partner. |
| 468 | */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 469 | e_dbg("RXing /C/, enable AutoNeg and stop forcing link.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 470 | ew32(TXCW, mac->txcw); |
| 471 | ew32(CTRL, (ctrl & ~E1000_CTRL_SLU)); |
| 472 | |
Alex Chiang | 612e244 | 2009-02-05 23:55:45 -0800 | [diff] [blame] | 473 | mac->serdes_has_link = true; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * e1000e_check_for_serdes_link - Check for link (Serdes) |
| 481 | * @hw: pointer to the HW structure |
| 482 | * |
| 483 | * Checks for link up on the hardware. If link is not up and we have |
| 484 | * a signal, then we need to force link up. |
| 485 | **/ |
| 486 | s32 e1000e_check_for_serdes_link(struct e1000_hw *hw) |
| 487 | { |
| 488 | struct e1000_mac_info *mac = &hw->mac; |
| 489 | u32 rxcw; |
| 490 | u32 ctrl; |
| 491 | u32 status; |
| 492 | s32 ret_val; |
| 493 | |
| 494 | ctrl = er32(CTRL); |
| 495 | status = er32(STATUS); |
| 496 | rxcw = er32(RXCW); |
| 497 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 498 | /* |
| 499 | * If we don't have link (auto-negotiation failed or link partner |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 500 | * cannot auto-negotiate), and our link partner is not trying to |
| 501 | * auto-negotiate with us (we are receiving idles or data), |
| 502 | * we need to force link up. We also need to give auto-negotiation |
| 503 | * time to complete. |
| 504 | */ |
| 505 | /* (ctrl & E1000_CTRL_SWDPIN1) == 1 == have signal */ |
| 506 | if ((!(status & E1000_STATUS_LU)) && (!(rxcw & E1000_RXCW_C))) { |
| 507 | if (mac->autoneg_failed == 0) { |
| 508 | mac->autoneg_failed = 1; |
| 509 | return 0; |
| 510 | } |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 511 | e_dbg("NOT RXing /C/, disable AutoNeg and force link.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 512 | |
| 513 | /* Disable auto-negotiation in the TXCW register */ |
| 514 | ew32(TXCW, (mac->txcw & ~E1000_TXCW_ANE)); |
| 515 | |
| 516 | /* Force link-up and also force full-duplex. */ |
| 517 | ctrl = er32(CTRL); |
| 518 | ctrl |= (E1000_CTRL_SLU | E1000_CTRL_FD); |
| 519 | ew32(CTRL, ctrl); |
| 520 | |
| 521 | /* Configure Flow Control after forcing link up. */ |
| 522 | ret_val = e1000e_config_fc_after_link_up(hw); |
| 523 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 524 | e_dbg("Error configuring flow control\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 525 | return ret_val; |
| 526 | } |
| 527 | } else if ((ctrl & E1000_CTRL_SLU) && (rxcw & E1000_RXCW_C)) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 528 | /* |
| 529 | * If we are forcing link and we are receiving /C/ ordered |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 530 | * sets, re-enable auto-negotiation in the TXCW register |
| 531 | * and disable forced link in the Device Control register |
| 532 | * in an attempt to auto-negotiate with our link partner. |
| 533 | */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 534 | e_dbg("RXing /C/, enable AutoNeg and stop forcing link.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 535 | ew32(TXCW, mac->txcw); |
| 536 | ew32(CTRL, (ctrl & ~E1000_CTRL_SLU)); |
| 537 | |
Alex Chiang | 612e244 | 2009-02-05 23:55:45 -0800 | [diff] [blame] | 538 | mac->serdes_has_link = true; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 539 | } else if (!(E1000_TXCW_ANE & er32(TXCW))) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 540 | /* |
| 541 | * If we force link for non-auto-negotiation switch, check |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 542 | * link status based on MAC synchronization for internal |
| 543 | * serdes media type. |
| 544 | */ |
| 545 | /* SYNCH bit and IV bit are sticky. */ |
| 546 | udelay(10); |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 547 | rxcw = er32(RXCW); |
| 548 | if (rxcw & E1000_RXCW_SYNCH) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 549 | if (!(rxcw & E1000_RXCW_IV)) { |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 550 | mac->serdes_has_link = true; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 551 | e_dbg("SERDES: Link up - forced.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 552 | } |
| 553 | } else { |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 554 | mac->serdes_has_link = false; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 555 | e_dbg("SERDES: Link down - force failed.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 556 | } |
| 557 | } |
| 558 | |
| 559 | if (E1000_TXCW_ANE & er32(TXCW)) { |
| 560 | status = er32(STATUS); |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 561 | if (status & E1000_STATUS_LU) { |
| 562 | /* SYNCH bit and IV bit are sticky, so reread rxcw. */ |
| 563 | udelay(10); |
| 564 | rxcw = er32(RXCW); |
| 565 | if (rxcw & E1000_RXCW_SYNCH) { |
| 566 | if (!(rxcw & E1000_RXCW_IV)) { |
| 567 | mac->serdes_has_link = true; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 568 | e_dbg("SERDES: Link up - autoneg " |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 569 | "completed sucessfully.\n"); |
| 570 | } else { |
| 571 | mac->serdes_has_link = false; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 572 | e_dbg("SERDES: Link down - invalid" |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 573 | "codewords detected in autoneg.\n"); |
| 574 | } |
| 575 | } else { |
| 576 | mac->serdes_has_link = false; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 577 | e_dbg("SERDES: Link down - no sync.\n"); |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 578 | } |
| 579 | } else { |
| 580 | mac->serdes_has_link = false; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 581 | e_dbg("SERDES: Link down - autoneg failed\n"); |
Bruce Allan | 63dcf3d | 2008-11-21 16:50:34 -0800 | [diff] [blame] | 582 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * e1000_set_default_fc_generic - Set flow control default values |
| 590 | * @hw: pointer to the HW structure |
| 591 | * |
| 592 | * Read the EEPROM for the default values for flow control and store the |
| 593 | * values. |
| 594 | **/ |
| 595 | static s32 e1000_set_default_fc_generic(struct e1000_hw *hw) |
| 596 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 597 | s32 ret_val; |
| 598 | u16 nvm_data; |
| 599 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 600 | /* |
| 601 | * Read and store word 0x0F of the EEPROM. This word contains bits |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 602 | * that determine the hardware's default PAUSE (flow control) mode, |
| 603 | * a bit that determines whether the HW defaults to enabling or |
| 604 | * disabling auto-negotiation, and the direction of the |
| 605 | * SW defined pins. If there is no SW over-ride of the flow |
| 606 | * control setting, then the variable hw->fc will |
| 607 | * be initialized based on a value in the EEPROM. |
| 608 | */ |
| 609 | ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &nvm_data); |
| 610 | |
| 611 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 612 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 613 | return ret_val; |
| 614 | } |
| 615 | |
| 616 | if ((nvm_data & NVM_WORD0F_PAUSE_MASK) == 0) |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 617 | hw->fc.requested_mode = e1000_fc_none; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 618 | else if ((nvm_data & NVM_WORD0F_PAUSE_MASK) == |
| 619 | NVM_WORD0F_ASM_DIR) |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 620 | hw->fc.requested_mode = e1000_fc_tx_pause; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 621 | else |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 622 | hw->fc.requested_mode = e1000_fc_full; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 623 | |
| 624 | return 0; |
| 625 | } |
| 626 | |
| 627 | /** |
| 628 | * e1000e_setup_link - Setup flow control and link settings |
| 629 | * @hw: pointer to the HW structure |
| 630 | * |
| 631 | * Determines which flow control settings to use, then configures flow |
| 632 | * control. Calls the appropriate media-specific link configuration |
| 633 | * function. Assuming the adapter has a valid link partner, a valid link |
| 634 | * should be established. Assumes the hardware has previously been reset |
| 635 | * and the transmitter and receiver are not enabled. |
| 636 | **/ |
| 637 | s32 e1000e_setup_link(struct e1000_hw *hw) |
| 638 | { |
| 639 | struct e1000_mac_info *mac = &hw->mac; |
| 640 | s32 ret_val; |
| 641 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 642 | /* |
| 643 | * In the case of the phy reset being blocked, we already have a link. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 644 | * We do not need to set it up again. |
| 645 | */ |
| 646 | if (e1000_check_reset_block(hw)) |
| 647 | return 0; |
| 648 | |
Auke Kok | 309af40 | 2007-10-05 15:22:02 -0700 | [diff] [blame] | 649 | /* |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 650 | * If requested flow control is set to default, set flow control |
| 651 | * based on the EEPROM flow control settings. |
Auke Kok | 309af40 | 2007-10-05 15:22:02 -0700 | [diff] [blame] | 652 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 653 | if (hw->fc.requested_mode == e1000_fc_default) { |
Auke Kok | 309af40 | 2007-10-05 15:22:02 -0700 | [diff] [blame] | 654 | ret_val = e1000_set_default_fc_generic(hw); |
| 655 | if (ret_val) |
| 656 | return ret_val; |
| 657 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 658 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 659 | /* |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 660 | * Save off the requested flow control mode for use later. Depending |
| 661 | * on the link partner's capabilities, we may or may not use this mode. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 662 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 663 | hw->fc.current_mode = hw->fc.requested_mode; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 664 | |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 665 | e_dbg("After fix-ups FlowControl is now = %x\n", |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 666 | hw->fc.current_mode); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 667 | |
| 668 | /* Call the necessary media_type subroutine to configure the link. */ |
| 669 | ret_val = mac->ops.setup_physical_interface(hw); |
| 670 | if (ret_val) |
| 671 | return ret_val; |
| 672 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 673 | /* |
| 674 | * Initialize the flow control address, type, and PAUSE timer |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 675 | * registers to their default values. This is done even if flow |
| 676 | * control is disabled, because it does not hurt anything to |
| 677 | * initialize these registers. |
| 678 | */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 679 | e_dbg("Initializing the Flow Control address, type and timer regs\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 680 | ew32(FCT, FLOW_CONTROL_TYPE); |
| 681 | ew32(FCAH, FLOW_CONTROL_ADDRESS_HIGH); |
| 682 | ew32(FCAL, FLOW_CONTROL_ADDRESS_LOW); |
| 683 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 684 | ew32(FCTTV, hw->fc.pause_time); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 685 | |
| 686 | return e1000e_set_fc_watermarks(hw); |
| 687 | } |
| 688 | |
| 689 | /** |
| 690 | * e1000_commit_fc_settings_generic - Configure flow control |
| 691 | * @hw: pointer to the HW structure |
| 692 | * |
| 693 | * Write the flow control settings to the Transmit Config Word Register (TXCW) |
| 694 | * base on the flow control settings in e1000_mac_info. |
| 695 | **/ |
| 696 | static s32 e1000_commit_fc_settings_generic(struct e1000_hw *hw) |
| 697 | { |
| 698 | struct e1000_mac_info *mac = &hw->mac; |
| 699 | u32 txcw; |
| 700 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 701 | /* |
| 702 | * Check for a software override of the flow control settings, and |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 703 | * setup the device accordingly. If auto-negotiation is enabled, then |
| 704 | * software will have to set the "PAUSE" bits to the correct value in |
| 705 | * the Transmit Config Word Register (TXCW) and re-start auto- |
| 706 | * negotiation. However, if auto-negotiation is disabled, then |
| 707 | * software will have to manually configure the two flow control enable |
| 708 | * bits in the CTRL register. |
| 709 | * |
| 710 | * The possible values of the "fc" parameter are: |
| 711 | * 0: Flow control is completely disabled |
| 712 | * 1: Rx flow control is enabled (we can receive pause frames, |
| 713 | * but not send pause frames). |
| 714 | * 2: Tx flow control is enabled (we can send pause frames but we |
| 715 | * do not support receiving pause frames). |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 716 | * 3: Both Rx and Tx flow control (symmetric) are enabled. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 717 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 718 | switch (hw->fc.current_mode) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 719 | case e1000_fc_none: |
| 720 | /* Flow control completely disabled by a software over-ride. */ |
| 721 | txcw = (E1000_TXCW_ANE | E1000_TXCW_FD); |
| 722 | break; |
| 723 | case e1000_fc_rx_pause: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 724 | /* |
| 725 | * Rx Flow control is enabled and Tx Flow control is disabled |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 726 | * by a software over-ride. Since there really isn't a way to |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 727 | * advertise that we are capable of Rx Pause ONLY, we will |
| 728 | * advertise that we support both symmetric and asymmetric Rx |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 729 | * PAUSE. Later, we will disable the adapter's ability to send |
| 730 | * PAUSE frames. |
| 731 | */ |
| 732 | txcw = (E1000_TXCW_ANE | E1000_TXCW_FD | E1000_TXCW_PAUSE_MASK); |
| 733 | break; |
| 734 | case e1000_fc_tx_pause: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 735 | /* |
| 736 | * Tx Flow control is enabled, and Rx Flow control is disabled, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 737 | * by a software over-ride. |
| 738 | */ |
| 739 | txcw = (E1000_TXCW_ANE | E1000_TXCW_FD | E1000_TXCW_ASM_DIR); |
| 740 | break; |
| 741 | case e1000_fc_full: |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 742 | /* |
| 743 | * Flow control (both Rx and Tx) is enabled by a software |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 744 | * over-ride. |
| 745 | */ |
| 746 | txcw = (E1000_TXCW_ANE | E1000_TXCW_FD | E1000_TXCW_PAUSE_MASK); |
| 747 | break; |
| 748 | default: |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 749 | e_dbg("Flow control param set incorrectly\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 750 | return -E1000_ERR_CONFIG; |
| 751 | break; |
| 752 | } |
| 753 | |
| 754 | ew32(TXCW, txcw); |
| 755 | mac->txcw = txcw; |
| 756 | |
| 757 | return 0; |
| 758 | } |
| 759 | |
| 760 | /** |
| 761 | * e1000_poll_fiber_serdes_link_generic - Poll for link up |
| 762 | * @hw: pointer to the HW structure |
| 763 | * |
| 764 | * Polls for link up by reading the status register, if link fails to come |
| 765 | * up with auto-negotiation, then the link is forced if a signal is detected. |
| 766 | **/ |
| 767 | static s32 e1000_poll_fiber_serdes_link_generic(struct e1000_hw *hw) |
| 768 | { |
| 769 | struct e1000_mac_info *mac = &hw->mac; |
| 770 | u32 i, status; |
| 771 | s32 ret_val; |
| 772 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 773 | /* |
| 774 | * If we have a signal (the cable is plugged in, or assumed true for |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 775 | * serdes media) then poll for a "Link-Up" indication in the Device |
| 776 | * Status Register. Time-out if a link isn't seen in 500 milliseconds |
| 777 | * seconds (Auto-negotiation should complete in less than 500 |
| 778 | * milliseconds even if the other end is doing it in SW). |
| 779 | */ |
| 780 | for (i = 0; i < FIBER_LINK_UP_LIMIT; i++) { |
| 781 | msleep(10); |
| 782 | status = er32(STATUS); |
| 783 | if (status & E1000_STATUS_LU) |
| 784 | break; |
| 785 | } |
| 786 | if (i == FIBER_LINK_UP_LIMIT) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 787 | e_dbg("Never got a valid link from auto-neg!!!\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 788 | mac->autoneg_failed = 1; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 789 | /* |
| 790 | * AutoNeg failed to achieve a link, so we'll call |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 791 | * mac->check_for_link. This routine will force the |
| 792 | * link up if we detect a signal. This will allow us to |
| 793 | * communicate with non-autonegotiating link partners. |
| 794 | */ |
| 795 | ret_val = mac->ops.check_for_link(hw); |
| 796 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 797 | e_dbg("Error while checking for link\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 798 | return ret_val; |
| 799 | } |
| 800 | mac->autoneg_failed = 0; |
| 801 | } else { |
| 802 | mac->autoneg_failed = 0; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 803 | e_dbg("Valid Link Found\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | return 0; |
| 807 | } |
| 808 | |
| 809 | /** |
| 810 | * e1000e_setup_fiber_serdes_link - Setup link for fiber/serdes |
| 811 | * @hw: pointer to the HW structure |
| 812 | * |
| 813 | * Configures collision distance and flow control for fiber and serdes |
| 814 | * links. Upon successful setup, poll for link. |
| 815 | **/ |
| 816 | s32 e1000e_setup_fiber_serdes_link(struct e1000_hw *hw) |
| 817 | { |
| 818 | u32 ctrl; |
| 819 | s32 ret_val; |
| 820 | |
| 821 | ctrl = er32(CTRL); |
| 822 | |
| 823 | /* Take the link out of reset */ |
| 824 | ctrl &= ~E1000_CTRL_LRST; |
| 825 | |
| 826 | e1000e_config_collision_dist(hw); |
| 827 | |
| 828 | ret_val = e1000_commit_fc_settings_generic(hw); |
| 829 | if (ret_val) |
| 830 | return ret_val; |
| 831 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 832 | /* |
| 833 | * Since auto-negotiation is enabled, take the link out of reset (the |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 834 | * link will be in reset, because we previously reset the chip). This |
| 835 | * will restart auto-negotiation. If auto-negotiation is successful |
| 836 | * then the link-up status bit will be set and the flow control enable |
| 837 | * bits (RFCE and TFCE) will be set according to their negotiated value. |
| 838 | */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 839 | e_dbg("Auto-negotiation enabled\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 840 | |
| 841 | ew32(CTRL, ctrl); |
| 842 | e1e_flush(); |
| 843 | msleep(1); |
| 844 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 845 | /* |
| 846 | * For these adapters, the SW definable pin 1 is set when the optics |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 847 | * detect a signal. If we have a signal, then poll for a "Link-Up" |
| 848 | * indication. |
| 849 | */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 850 | if (hw->phy.media_type == e1000_media_type_internal_serdes || |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 851 | (er32(CTRL) & E1000_CTRL_SWDPIN1)) { |
| 852 | ret_val = e1000_poll_fiber_serdes_link_generic(hw); |
| 853 | } else { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 854 | e_dbg("No signal detected\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 855 | } |
| 856 | |
| 857 | return 0; |
| 858 | } |
| 859 | |
| 860 | /** |
| 861 | * e1000e_config_collision_dist - Configure collision distance |
| 862 | * @hw: pointer to the HW structure |
| 863 | * |
| 864 | * Configures the collision distance to the default value and is used |
| 865 | * during link setup. Currently no func pointer exists and all |
| 866 | * implementations are handled in the generic version of this function. |
| 867 | **/ |
| 868 | void e1000e_config_collision_dist(struct e1000_hw *hw) |
| 869 | { |
| 870 | u32 tctl; |
| 871 | |
| 872 | tctl = er32(TCTL); |
| 873 | |
| 874 | tctl &= ~E1000_TCTL_COLD; |
| 875 | tctl |= E1000_COLLISION_DISTANCE << E1000_COLD_SHIFT; |
| 876 | |
| 877 | ew32(TCTL, tctl); |
| 878 | e1e_flush(); |
| 879 | } |
| 880 | |
| 881 | /** |
| 882 | * e1000e_set_fc_watermarks - Set flow control high/low watermarks |
| 883 | * @hw: pointer to the HW structure |
| 884 | * |
| 885 | * Sets the flow control high/low threshold (watermark) registers. If |
| 886 | * flow control XON frame transmission is enabled, then set XON frame |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 887 | * transmission as well. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 888 | **/ |
| 889 | s32 e1000e_set_fc_watermarks(struct e1000_hw *hw) |
| 890 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 891 | u32 fcrtl = 0, fcrth = 0; |
| 892 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 893 | /* |
| 894 | * Set the flow control receive threshold registers. Normally, |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 895 | * these registers will be set to a default threshold that may be |
| 896 | * adjusted later by the driver's runtime code. However, if the |
| 897 | * ability to transmit pause frames is not enabled, then these |
| 898 | * registers will be set to 0. |
| 899 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 900 | if (hw->fc.current_mode & e1000_fc_tx_pause) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 901 | /* |
| 902 | * We need to set up the Receive Threshold high and low water |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 903 | * marks as well as (optionally) enabling the transmission of |
| 904 | * XON frames. |
| 905 | */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 906 | fcrtl = hw->fc.low_water; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 907 | fcrtl |= E1000_FCRTL_XONE; |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 908 | fcrth = hw->fc.high_water; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 909 | } |
| 910 | ew32(FCRTL, fcrtl); |
| 911 | ew32(FCRTH, fcrth); |
| 912 | |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | /** |
| 917 | * e1000e_force_mac_fc - Force the MAC's flow control settings |
| 918 | * @hw: pointer to the HW structure |
| 919 | * |
| 920 | * Force the MAC's flow control settings. Sets the TFCE and RFCE bits in the |
| 921 | * device control register to reflect the adapter settings. TFCE and RFCE |
| 922 | * need to be explicitly set by software when a copper PHY is used because |
| 923 | * autonegotiation is managed by the PHY rather than the MAC. Software must |
| 924 | * also configure these bits when link is forced on a fiber connection. |
| 925 | **/ |
| 926 | s32 e1000e_force_mac_fc(struct e1000_hw *hw) |
| 927 | { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 928 | u32 ctrl; |
| 929 | |
| 930 | ctrl = er32(CTRL); |
| 931 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 932 | /* |
| 933 | * Because we didn't get link via the internal auto-negotiation |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 934 | * mechanism (we either forced link or we got link via PHY |
| 935 | * auto-neg), we have to manually enable/disable transmit an |
| 936 | * receive flow control. |
| 937 | * |
| 938 | * The "Case" statement below enables/disable flow control |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 939 | * according to the "hw->fc.current_mode" parameter. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 940 | * |
| 941 | * The possible values of the "fc" parameter are: |
| 942 | * 0: Flow control is completely disabled |
| 943 | * 1: Rx flow control is enabled (we can receive pause |
| 944 | * frames but not send pause frames). |
| 945 | * 2: Tx flow control is enabled (we can send pause frames |
| 946 | * frames but we do not receive pause frames). |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 947 | * 3: Both Rx and Tx flow control (symmetric) is enabled. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 948 | * other: No other values should be possible at this point. |
| 949 | */ |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 950 | e_dbg("hw->fc.current_mode = %u\n", hw->fc.current_mode); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 951 | |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 952 | switch (hw->fc.current_mode) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 953 | case e1000_fc_none: |
| 954 | ctrl &= (~(E1000_CTRL_TFCE | E1000_CTRL_RFCE)); |
| 955 | break; |
| 956 | case e1000_fc_rx_pause: |
| 957 | ctrl &= (~E1000_CTRL_TFCE); |
| 958 | ctrl |= E1000_CTRL_RFCE; |
| 959 | break; |
| 960 | case e1000_fc_tx_pause: |
| 961 | ctrl &= (~E1000_CTRL_RFCE); |
| 962 | ctrl |= E1000_CTRL_TFCE; |
| 963 | break; |
| 964 | case e1000_fc_full: |
| 965 | ctrl |= (E1000_CTRL_TFCE | E1000_CTRL_RFCE); |
| 966 | break; |
| 967 | default: |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 968 | e_dbg("Flow control param set incorrectly\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 969 | return -E1000_ERR_CONFIG; |
| 970 | } |
| 971 | |
| 972 | ew32(CTRL, ctrl); |
| 973 | |
| 974 | return 0; |
| 975 | } |
| 976 | |
| 977 | /** |
| 978 | * e1000e_config_fc_after_link_up - Configures flow control after link |
| 979 | * @hw: pointer to the HW structure |
| 980 | * |
| 981 | * Checks the status of auto-negotiation after link up to ensure that the |
| 982 | * speed and duplex were not forced. If the link needed to be forced, then |
| 983 | * flow control needs to be forced also. If auto-negotiation is enabled |
| 984 | * and did not fail, then we configure flow control based on our link |
| 985 | * partner. |
| 986 | **/ |
| 987 | s32 e1000e_config_fc_after_link_up(struct e1000_hw *hw) |
| 988 | { |
| 989 | struct e1000_mac_info *mac = &hw->mac; |
| 990 | s32 ret_val = 0; |
| 991 | u16 mii_status_reg, mii_nway_adv_reg, mii_nway_lp_ability_reg; |
| 992 | u16 speed, duplex; |
| 993 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 994 | /* |
| 995 | * Check for the case where we have fiber media and auto-neg failed |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 996 | * so we had to force link. In this case, we need to force the |
| 997 | * configuration of the MAC to match the "fc" parameter. |
| 998 | */ |
| 999 | if (mac->autoneg_failed) { |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1000 | if (hw->phy.media_type == e1000_media_type_fiber || |
| 1001 | hw->phy.media_type == e1000_media_type_internal_serdes) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1002 | ret_val = e1000e_force_mac_fc(hw); |
| 1003 | } else { |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1004 | if (hw->phy.media_type == e1000_media_type_copper) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1005 | ret_val = e1000e_force_mac_fc(hw); |
| 1006 | } |
| 1007 | |
| 1008 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1009 | e_dbg("Error forcing flow control settings\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1010 | return ret_val; |
| 1011 | } |
| 1012 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1013 | /* |
| 1014 | * Check for the case where we have copper media and auto-neg is |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1015 | * enabled. In this case, we need to check and see if Auto-Neg |
| 1016 | * has completed, and if so, how the PHY and link partner has |
| 1017 | * flow control configured. |
| 1018 | */ |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1019 | if ((hw->phy.media_type == e1000_media_type_copper) && mac->autoneg) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1020 | /* |
| 1021 | * Read the MII Status Register and check to see if AutoNeg |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1022 | * has completed. We read this twice because this reg has |
| 1023 | * some "sticky" (latched) bits. |
| 1024 | */ |
| 1025 | ret_val = e1e_rphy(hw, PHY_STATUS, &mii_status_reg); |
| 1026 | if (ret_val) |
| 1027 | return ret_val; |
| 1028 | ret_val = e1e_rphy(hw, PHY_STATUS, &mii_status_reg); |
| 1029 | if (ret_val) |
| 1030 | return ret_val; |
| 1031 | |
| 1032 | if (!(mii_status_reg & MII_SR_AUTONEG_COMPLETE)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1033 | e_dbg("Copper PHY and Auto Neg " |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1034 | "has not completed.\n"); |
| 1035 | return ret_val; |
| 1036 | } |
| 1037 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1038 | /* |
| 1039 | * The AutoNeg process has completed, so we now need to |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1040 | * read both the Auto Negotiation Advertisement |
| 1041 | * Register (Address 4) and the Auto_Negotiation Base |
| 1042 | * Page Ability Register (Address 5) to determine how |
| 1043 | * flow control was negotiated. |
| 1044 | */ |
| 1045 | ret_val = e1e_rphy(hw, PHY_AUTONEG_ADV, &mii_nway_adv_reg); |
| 1046 | if (ret_val) |
| 1047 | return ret_val; |
| 1048 | ret_val = e1e_rphy(hw, PHY_LP_ABILITY, &mii_nway_lp_ability_reg); |
| 1049 | if (ret_val) |
| 1050 | return ret_val; |
| 1051 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1052 | /* |
| 1053 | * Two bits in the Auto Negotiation Advertisement Register |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1054 | * (Address 4) and two bits in the Auto Negotiation Base |
| 1055 | * Page Ability Register (Address 5) determine flow control |
| 1056 | * for both the PHY and the link partner. The following |
| 1057 | * table, taken out of the IEEE 802.3ab/D6.0 dated March 25, |
| 1058 | * 1999, describes these PAUSE resolution bits and how flow |
| 1059 | * control is determined based upon these settings. |
| 1060 | * NOTE: DC = Don't Care |
| 1061 | * |
| 1062 | * LOCAL DEVICE | LINK PARTNER |
| 1063 | * PAUSE | ASM_DIR | PAUSE | ASM_DIR | NIC Resolution |
| 1064 | *-------|---------|-------|---------|-------------------- |
| 1065 | * 0 | 0 | DC | DC | e1000_fc_none |
| 1066 | * 0 | 1 | 0 | DC | e1000_fc_none |
| 1067 | * 0 | 1 | 1 | 0 | e1000_fc_none |
| 1068 | * 0 | 1 | 1 | 1 | e1000_fc_tx_pause |
| 1069 | * 1 | 0 | 0 | DC | e1000_fc_none |
| 1070 | * 1 | DC | 1 | DC | e1000_fc_full |
| 1071 | * 1 | 1 | 0 | 0 | e1000_fc_none |
| 1072 | * 1 | 1 | 0 | 1 | e1000_fc_rx_pause |
| 1073 | * |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1074 | * |
| 1075 | * Are both PAUSE bits set to 1? If so, this implies |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1076 | * Symmetric Flow Control is enabled at both ends. The |
| 1077 | * ASM_DIR bits are irrelevant per the spec. |
| 1078 | * |
| 1079 | * For Symmetric Flow Control: |
| 1080 | * |
| 1081 | * LOCAL DEVICE | LINK PARTNER |
| 1082 | * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result |
| 1083 | *-------|---------|-------|---------|-------------------- |
| 1084 | * 1 | DC | 1 | DC | E1000_fc_full |
| 1085 | * |
| 1086 | */ |
| 1087 | if ((mii_nway_adv_reg & NWAY_AR_PAUSE) && |
| 1088 | (mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE)) { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1089 | /* |
| 1090 | * Now we need to check if the user selected Rx ONLY |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1091 | * of pause frames. In this case, we had to advertise |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1092 | * FULL flow control because we could not advertise Rx |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1093 | * ONLY. Hence, we must now check to see if we need to |
| 1094 | * turn OFF the TRANSMISSION of PAUSE frames. |
| 1095 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1096 | if (hw->fc.requested_mode == e1000_fc_full) { |
| 1097 | hw->fc.current_mode = e1000_fc_full; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1098 | e_dbg("Flow Control = FULL.\r\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1099 | } else { |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1100 | hw->fc.current_mode = e1000_fc_rx_pause; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1101 | e_dbg("Flow Control = " |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1102 | "RX PAUSE frames only.\r\n"); |
| 1103 | } |
| 1104 | } |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1105 | /* |
| 1106 | * For receiving PAUSE frames ONLY. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1107 | * |
| 1108 | * LOCAL DEVICE | LINK PARTNER |
| 1109 | * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result |
| 1110 | *-------|---------|-------|---------|-------------------- |
| 1111 | * 0 | 1 | 1 | 1 | e1000_fc_tx_pause |
| 1112 | * |
| 1113 | */ |
| 1114 | else if (!(mii_nway_adv_reg & NWAY_AR_PAUSE) && |
| 1115 | (mii_nway_adv_reg & NWAY_AR_ASM_DIR) && |
| 1116 | (mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE) && |
| 1117 | (mii_nway_lp_ability_reg & NWAY_LPAR_ASM_DIR)) { |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1118 | hw->fc.current_mode = e1000_fc_tx_pause; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1119 | e_dbg("Flow Control = Tx PAUSE frames only.\r\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1120 | } |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1121 | /* |
| 1122 | * For transmitting PAUSE frames ONLY. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1123 | * |
| 1124 | * LOCAL DEVICE | LINK PARTNER |
| 1125 | * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result |
| 1126 | *-------|---------|-------|---------|-------------------- |
| 1127 | * 1 | 1 | 0 | 1 | e1000_fc_rx_pause |
| 1128 | * |
| 1129 | */ |
| 1130 | else if ((mii_nway_adv_reg & NWAY_AR_PAUSE) && |
| 1131 | (mii_nway_adv_reg & NWAY_AR_ASM_DIR) && |
| 1132 | !(mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE) && |
| 1133 | (mii_nway_lp_ability_reg & NWAY_LPAR_ASM_DIR)) { |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1134 | hw->fc.current_mode = e1000_fc_rx_pause; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1135 | e_dbg("Flow Control = Rx PAUSE frames only.\r\n"); |
Jesse Brandeburg | de92d84 | 2008-02-21 15:11:02 -0800 | [diff] [blame] | 1136 | } else { |
| 1137 | /* |
| 1138 | * Per the IEEE spec, at this point flow control |
| 1139 | * should be disabled. |
| 1140 | */ |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1141 | hw->fc.current_mode = e1000_fc_none; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1142 | e_dbg("Flow Control = NONE.\r\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1145 | /* |
| 1146 | * Now we need to do one last check... If we auto- |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1147 | * negotiated to HALF DUPLEX, flow control should not be |
| 1148 | * enabled per IEEE 802.3 spec. |
| 1149 | */ |
| 1150 | ret_val = mac->ops.get_link_up_info(hw, &speed, &duplex); |
| 1151 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1152 | e_dbg("Error getting link speed and duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1153 | return ret_val; |
| 1154 | } |
| 1155 | |
| 1156 | if (duplex == HALF_DUPLEX) |
Bruce Allan | 5c48ef3e2 | 2008-11-21 16:57:36 -0800 | [diff] [blame] | 1157 | hw->fc.current_mode = e1000_fc_none; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1158 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1159 | /* |
| 1160 | * Now we call a subroutine to actually force the MAC |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1161 | * controller to use the correct flow control settings. |
| 1162 | */ |
| 1163 | ret_val = e1000e_force_mac_fc(hw); |
| 1164 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1165 | e_dbg("Error forcing flow control settings\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1166 | return ret_val; |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | return 0; |
| 1171 | } |
| 1172 | |
| 1173 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1174 | * e1000e_get_speed_and_duplex_copper - Retrieve current speed/duplex |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1175 | * @hw: pointer to the HW structure |
| 1176 | * @speed: stores the current speed |
| 1177 | * @duplex: stores the current duplex |
| 1178 | * |
| 1179 | * Read the status register for the current speed/duplex and store the current |
| 1180 | * speed and duplex for copper connections. |
| 1181 | **/ |
| 1182 | s32 e1000e_get_speed_and_duplex_copper(struct e1000_hw *hw, u16 *speed, u16 *duplex) |
| 1183 | { |
| 1184 | u32 status; |
| 1185 | |
| 1186 | status = er32(STATUS); |
| 1187 | if (status & E1000_STATUS_SPEED_1000) { |
| 1188 | *speed = SPEED_1000; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1189 | e_dbg("1000 Mbs, "); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1190 | } else if (status & E1000_STATUS_SPEED_100) { |
| 1191 | *speed = SPEED_100; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1192 | e_dbg("100 Mbs, "); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1193 | } else { |
| 1194 | *speed = SPEED_10; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1195 | e_dbg("10 Mbs, "); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1196 | } |
| 1197 | |
| 1198 | if (status & E1000_STATUS_FD) { |
| 1199 | *duplex = FULL_DUPLEX; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1200 | e_dbg("Full Duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1201 | } else { |
| 1202 | *duplex = HALF_DUPLEX; |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1203 | e_dbg("Half Duplex\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
| 1206 | return 0; |
| 1207 | } |
| 1208 | |
| 1209 | /** |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1210 | * e1000e_get_speed_and_duplex_fiber_serdes - Retrieve current speed/duplex |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1211 | * @hw: pointer to the HW structure |
| 1212 | * @speed: stores the current speed |
| 1213 | * @duplex: stores the current duplex |
| 1214 | * |
| 1215 | * Sets the speed and duplex to gigabit full duplex (the only possible option) |
| 1216 | * for fiber/serdes links. |
| 1217 | **/ |
| 1218 | s32 e1000e_get_speed_and_duplex_fiber_serdes(struct e1000_hw *hw, u16 *speed, u16 *duplex) |
| 1219 | { |
| 1220 | *speed = SPEED_1000; |
| 1221 | *duplex = FULL_DUPLEX; |
| 1222 | |
| 1223 | return 0; |
| 1224 | } |
| 1225 | |
| 1226 | /** |
| 1227 | * e1000e_get_hw_semaphore - Acquire hardware semaphore |
| 1228 | * @hw: pointer to the HW structure |
| 1229 | * |
| 1230 | * Acquire the HW semaphore to access the PHY or NVM |
| 1231 | **/ |
| 1232 | s32 e1000e_get_hw_semaphore(struct e1000_hw *hw) |
| 1233 | { |
| 1234 | u32 swsm; |
| 1235 | s32 timeout = hw->nvm.word_size + 1; |
| 1236 | s32 i = 0; |
| 1237 | |
| 1238 | /* Get the SW semaphore */ |
| 1239 | while (i < timeout) { |
| 1240 | swsm = er32(SWSM); |
| 1241 | if (!(swsm & E1000_SWSM_SMBI)) |
| 1242 | break; |
| 1243 | |
| 1244 | udelay(50); |
| 1245 | i++; |
| 1246 | } |
| 1247 | |
| 1248 | if (i == timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1249 | e_dbg("Driver can't access device - SMBI bit is set.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1250 | return -E1000_ERR_NVM; |
| 1251 | } |
| 1252 | |
| 1253 | /* Get the FW semaphore. */ |
| 1254 | for (i = 0; i < timeout; i++) { |
| 1255 | swsm = er32(SWSM); |
| 1256 | ew32(SWSM, swsm | E1000_SWSM_SWESMBI); |
| 1257 | |
| 1258 | /* Semaphore acquired if bit latched */ |
| 1259 | if (er32(SWSM) & E1000_SWSM_SWESMBI) |
| 1260 | break; |
| 1261 | |
| 1262 | udelay(50); |
| 1263 | } |
| 1264 | |
| 1265 | if (i == timeout) { |
| 1266 | /* Release semaphores */ |
| 1267 | e1000e_put_hw_semaphore(hw); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1268 | e_dbg("Driver can't access the NVM\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1269 | return -E1000_ERR_NVM; |
| 1270 | } |
| 1271 | |
| 1272 | return 0; |
| 1273 | } |
| 1274 | |
| 1275 | /** |
| 1276 | * e1000e_put_hw_semaphore - Release hardware semaphore |
| 1277 | * @hw: pointer to the HW structure |
| 1278 | * |
| 1279 | * Release hardware semaphore used to access the PHY or NVM |
| 1280 | **/ |
| 1281 | void e1000e_put_hw_semaphore(struct e1000_hw *hw) |
| 1282 | { |
| 1283 | u32 swsm; |
| 1284 | |
| 1285 | swsm = er32(SWSM); |
| 1286 | swsm &= ~(E1000_SWSM_SMBI | E1000_SWSM_SWESMBI); |
| 1287 | ew32(SWSM, swsm); |
| 1288 | } |
| 1289 | |
| 1290 | /** |
| 1291 | * e1000e_get_auto_rd_done - Check for auto read completion |
| 1292 | * @hw: pointer to the HW structure |
| 1293 | * |
| 1294 | * Check EEPROM for Auto Read done bit. |
| 1295 | **/ |
| 1296 | s32 e1000e_get_auto_rd_done(struct e1000_hw *hw) |
| 1297 | { |
| 1298 | s32 i = 0; |
| 1299 | |
| 1300 | while (i < AUTO_READ_DONE_TIMEOUT) { |
| 1301 | if (er32(EECD) & E1000_EECD_AUTO_RD) |
| 1302 | break; |
| 1303 | msleep(1); |
| 1304 | i++; |
| 1305 | } |
| 1306 | |
| 1307 | if (i == AUTO_READ_DONE_TIMEOUT) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1308 | e_dbg("Auto read by HW from NVM has not completed.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1309 | return -E1000_ERR_RESET; |
| 1310 | } |
| 1311 | |
| 1312 | return 0; |
| 1313 | } |
| 1314 | |
| 1315 | /** |
| 1316 | * e1000e_valid_led_default - Verify a valid default LED config |
| 1317 | * @hw: pointer to the HW structure |
| 1318 | * @data: pointer to the NVM (EEPROM) |
| 1319 | * |
| 1320 | * Read the EEPROM for the current default LED configuration. If the |
| 1321 | * LED configuration is not valid, set to a valid LED configuration. |
| 1322 | **/ |
| 1323 | s32 e1000e_valid_led_default(struct e1000_hw *hw, u16 *data) |
| 1324 | { |
| 1325 | s32 ret_val; |
| 1326 | |
| 1327 | ret_val = e1000_read_nvm(hw, NVM_ID_LED_SETTINGS, 1, data); |
| 1328 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1329 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1330 | return ret_val; |
| 1331 | } |
| 1332 | |
| 1333 | if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF) |
| 1334 | *data = ID_LED_DEFAULT; |
| 1335 | |
| 1336 | return 0; |
| 1337 | } |
| 1338 | |
| 1339 | /** |
| 1340 | * e1000e_id_led_init - |
| 1341 | * @hw: pointer to the HW structure |
| 1342 | * |
| 1343 | **/ |
| 1344 | s32 e1000e_id_led_init(struct e1000_hw *hw) |
| 1345 | { |
| 1346 | struct e1000_mac_info *mac = &hw->mac; |
| 1347 | s32 ret_val; |
| 1348 | const u32 ledctl_mask = 0x000000FF; |
| 1349 | const u32 ledctl_on = E1000_LEDCTL_MODE_LED_ON; |
| 1350 | const u32 ledctl_off = E1000_LEDCTL_MODE_LED_OFF; |
| 1351 | u16 data, i, temp; |
| 1352 | const u16 led_mask = 0x0F; |
| 1353 | |
| 1354 | ret_val = hw->nvm.ops.valid_led_default(hw, &data); |
| 1355 | if (ret_val) |
| 1356 | return ret_val; |
| 1357 | |
| 1358 | mac->ledctl_default = er32(LEDCTL); |
| 1359 | mac->ledctl_mode1 = mac->ledctl_default; |
| 1360 | mac->ledctl_mode2 = mac->ledctl_default; |
| 1361 | |
| 1362 | for (i = 0; i < 4; i++) { |
| 1363 | temp = (data >> (i << 2)) & led_mask; |
| 1364 | switch (temp) { |
| 1365 | case ID_LED_ON1_DEF2: |
| 1366 | case ID_LED_ON1_ON2: |
| 1367 | case ID_LED_ON1_OFF2: |
| 1368 | mac->ledctl_mode1 &= ~(ledctl_mask << (i << 3)); |
| 1369 | mac->ledctl_mode1 |= ledctl_on << (i << 3); |
| 1370 | break; |
| 1371 | case ID_LED_OFF1_DEF2: |
| 1372 | case ID_LED_OFF1_ON2: |
| 1373 | case ID_LED_OFF1_OFF2: |
| 1374 | mac->ledctl_mode1 &= ~(ledctl_mask << (i << 3)); |
| 1375 | mac->ledctl_mode1 |= ledctl_off << (i << 3); |
| 1376 | break; |
| 1377 | default: |
| 1378 | /* Do nothing */ |
| 1379 | break; |
| 1380 | } |
| 1381 | switch (temp) { |
| 1382 | case ID_LED_DEF1_ON2: |
| 1383 | case ID_LED_ON1_ON2: |
| 1384 | case ID_LED_OFF1_ON2: |
| 1385 | mac->ledctl_mode2 &= ~(ledctl_mask << (i << 3)); |
| 1386 | mac->ledctl_mode2 |= ledctl_on << (i << 3); |
| 1387 | break; |
| 1388 | case ID_LED_DEF1_OFF2: |
| 1389 | case ID_LED_ON1_OFF2: |
| 1390 | case ID_LED_OFF1_OFF2: |
| 1391 | mac->ledctl_mode2 &= ~(ledctl_mask << (i << 3)); |
| 1392 | mac->ledctl_mode2 |= ledctl_off << (i << 3); |
| 1393 | break; |
| 1394 | default: |
| 1395 | /* Do nothing */ |
| 1396 | break; |
| 1397 | } |
| 1398 | } |
| 1399 | |
| 1400 | return 0; |
| 1401 | } |
| 1402 | |
| 1403 | /** |
Bruce Allan | a4f58f5 | 2009-06-02 11:29:18 +0000 | [diff] [blame] | 1404 | * e1000e_setup_led_generic - Configures SW controllable LED |
| 1405 | * @hw: pointer to the HW structure |
| 1406 | * |
| 1407 | * This prepares the SW controllable LED for use and saves the current state |
| 1408 | * of the LED so it can be later restored. |
| 1409 | **/ |
| 1410 | s32 e1000e_setup_led_generic(struct e1000_hw *hw) |
| 1411 | { |
| 1412 | u32 ledctl; |
| 1413 | |
| 1414 | if (hw->mac.ops.setup_led != e1000e_setup_led_generic) { |
| 1415 | return -E1000_ERR_CONFIG; |
| 1416 | } |
| 1417 | |
| 1418 | if (hw->phy.media_type == e1000_media_type_fiber) { |
| 1419 | ledctl = er32(LEDCTL); |
| 1420 | hw->mac.ledctl_default = ledctl; |
| 1421 | /* Turn off LED0 */ |
| 1422 | ledctl &= ~(E1000_LEDCTL_LED0_IVRT | |
| 1423 | E1000_LEDCTL_LED0_BLINK | |
| 1424 | E1000_LEDCTL_LED0_MODE_MASK); |
| 1425 | ledctl |= (E1000_LEDCTL_MODE_LED_OFF << |
| 1426 | E1000_LEDCTL_LED0_MODE_SHIFT); |
| 1427 | ew32(LEDCTL, ledctl); |
| 1428 | } else if (hw->phy.media_type == e1000_media_type_copper) { |
| 1429 | ew32(LEDCTL, hw->mac.ledctl_mode1); |
| 1430 | } |
| 1431 | |
| 1432 | return 0; |
| 1433 | } |
| 1434 | |
| 1435 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1436 | * e1000e_cleanup_led_generic - Set LED config to default operation |
| 1437 | * @hw: pointer to the HW structure |
| 1438 | * |
| 1439 | * Remove the current LED configuration and set the LED configuration |
| 1440 | * to the default value, saved from the EEPROM. |
| 1441 | **/ |
| 1442 | s32 e1000e_cleanup_led_generic(struct e1000_hw *hw) |
| 1443 | { |
| 1444 | ew32(LEDCTL, hw->mac.ledctl_default); |
| 1445 | return 0; |
| 1446 | } |
| 1447 | |
| 1448 | /** |
| 1449 | * e1000e_blink_led - Blink LED |
| 1450 | * @hw: pointer to the HW structure |
| 1451 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1452 | * Blink the LEDs which are set to be on. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1453 | **/ |
| 1454 | s32 e1000e_blink_led(struct e1000_hw *hw) |
| 1455 | { |
| 1456 | u32 ledctl_blink = 0; |
| 1457 | u32 i; |
| 1458 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1459 | if (hw->phy.media_type == e1000_media_type_fiber) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1460 | /* always blink LED0 for PCI-E fiber */ |
| 1461 | ledctl_blink = E1000_LEDCTL_LED0_BLINK | |
| 1462 | (E1000_LEDCTL_MODE_LED_ON << E1000_LEDCTL_LED0_MODE_SHIFT); |
| 1463 | } else { |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1464 | /* |
| 1465 | * set the blink bit for each LED that's "on" (0x0E) |
| 1466 | * in ledctl_mode2 |
| 1467 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1468 | ledctl_blink = hw->mac.ledctl_mode2; |
| 1469 | for (i = 0; i < 4; i++) |
| 1470 | if (((hw->mac.ledctl_mode2 >> (i * 8)) & 0xFF) == |
| 1471 | E1000_LEDCTL_MODE_LED_ON) |
| 1472 | ledctl_blink |= (E1000_LEDCTL_LED0_BLINK << |
| 1473 | (i * 8)); |
| 1474 | } |
| 1475 | |
| 1476 | ew32(LEDCTL, ledctl_blink); |
| 1477 | |
| 1478 | return 0; |
| 1479 | } |
| 1480 | |
| 1481 | /** |
| 1482 | * e1000e_led_on_generic - Turn LED on |
| 1483 | * @hw: pointer to the HW structure |
| 1484 | * |
| 1485 | * Turn LED on. |
| 1486 | **/ |
| 1487 | s32 e1000e_led_on_generic(struct e1000_hw *hw) |
| 1488 | { |
| 1489 | u32 ctrl; |
| 1490 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1491 | switch (hw->phy.media_type) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1492 | case e1000_media_type_fiber: |
| 1493 | ctrl = er32(CTRL); |
| 1494 | ctrl &= ~E1000_CTRL_SWDPIN0; |
| 1495 | ctrl |= E1000_CTRL_SWDPIO0; |
| 1496 | ew32(CTRL, ctrl); |
| 1497 | break; |
| 1498 | case e1000_media_type_copper: |
| 1499 | ew32(LEDCTL, hw->mac.ledctl_mode2); |
| 1500 | break; |
| 1501 | default: |
| 1502 | break; |
| 1503 | } |
| 1504 | |
| 1505 | return 0; |
| 1506 | } |
| 1507 | |
| 1508 | /** |
| 1509 | * e1000e_led_off_generic - Turn LED off |
| 1510 | * @hw: pointer to the HW structure |
| 1511 | * |
| 1512 | * Turn LED off. |
| 1513 | **/ |
| 1514 | s32 e1000e_led_off_generic(struct e1000_hw *hw) |
| 1515 | { |
| 1516 | u32 ctrl; |
| 1517 | |
Jeff Kirsher | 318a94d | 2008-03-28 09:15:16 -0700 | [diff] [blame] | 1518 | switch (hw->phy.media_type) { |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1519 | case e1000_media_type_fiber: |
| 1520 | ctrl = er32(CTRL); |
| 1521 | ctrl |= E1000_CTRL_SWDPIN0; |
| 1522 | ctrl |= E1000_CTRL_SWDPIO0; |
| 1523 | ew32(CTRL, ctrl); |
| 1524 | break; |
| 1525 | case e1000_media_type_copper: |
| 1526 | ew32(LEDCTL, hw->mac.ledctl_mode1); |
| 1527 | break; |
| 1528 | default: |
| 1529 | break; |
| 1530 | } |
| 1531 | |
| 1532 | return 0; |
| 1533 | } |
| 1534 | |
| 1535 | /** |
| 1536 | * e1000e_set_pcie_no_snoop - Set PCI-express capabilities |
| 1537 | * @hw: pointer to the HW structure |
| 1538 | * @no_snoop: bitmap of snoop events |
| 1539 | * |
| 1540 | * Set the PCI-express register to snoop for events enabled in 'no_snoop'. |
| 1541 | **/ |
| 1542 | void e1000e_set_pcie_no_snoop(struct e1000_hw *hw, u32 no_snoop) |
| 1543 | { |
| 1544 | u32 gcr; |
| 1545 | |
| 1546 | if (no_snoop) { |
| 1547 | gcr = er32(GCR); |
| 1548 | gcr &= ~(PCIE_NO_SNOOP_ALL); |
| 1549 | gcr |= no_snoop; |
| 1550 | ew32(GCR, gcr); |
| 1551 | } |
| 1552 | } |
| 1553 | |
| 1554 | /** |
| 1555 | * e1000e_disable_pcie_master - Disables PCI-express master access |
| 1556 | * @hw: pointer to the HW structure |
| 1557 | * |
| 1558 | * Returns 0 if successful, else returns -10 |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1559 | * (-E1000_ERR_MASTER_REQUESTS_PENDING) if master disable bit has not caused |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1560 | * the master requests to be disabled. |
| 1561 | * |
| 1562 | * Disables PCI-Express master access and verifies there are no pending |
| 1563 | * requests. |
| 1564 | **/ |
| 1565 | s32 e1000e_disable_pcie_master(struct e1000_hw *hw) |
| 1566 | { |
| 1567 | u32 ctrl; |
| 1568 | s32 timeout = MASTER_DISABLE_TIMEOUT; |
| 1569 | |
| 1570 | ctrl = er32(CTRL); |
| 1571 | ctrl |= E1000_CTRL_GIO_MASTER_DISABLE; |
| 1572 | ew32(CTRL, ctrl); |
| 1573 | |
| 1574 | while (timeout) { |
| 1575 | if (!(er32(STATUS) & |
| 1576 | E1000_STATUS_GIO_MASTER_ENABLE)) |
| 1577 | break; |
| 1578 | udelay(100); |
| 1579 | timeout--; |
| 1580 | } |
| 1581 | |
| 1582 | if (!timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1583 | e_dbg("Master requests are pending.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1584 | return -E1000_ERR_MASTER_REQUESTS_PENDING; |
| 1585 | } |
| 1586 | |
| 1587 | return 0; |
| 1588 | } |
| 1589 | |
| 1590 | /** |
| 1591 | * e1000e_reset_adaptive - Reset Adaptive Interframe Spacing |
| 1592 | * @hw: pointer to the HW structure |
| 1593 | * |
| 1594 | * Reset the Adaptive Interframe Spacing throttle to default values. |
| 1595 | **/ |
| 1596 | void e1000e_reset_adaptive(struct e1000_hw *hw) |
| 1597 | { |
| 1598 | struct e1000_mac_info *mac = &hw->mac; |
| 1599 | |
| 1600 | mac->current_ifs_val = 0; |
| 1601 | mac->ifs_min_val = IFS_MIN; |
| 1602 | mac->ifs_max_val = IFS_MAX; |
| 1603 | mac->ifs_step_size = IFS_STEP; |
| 1604 | mac->ifs_ratio = IFS_RATIO; |
| 1605 | |
| 1606 | mac->in_ifs_mode = 0; |
| 1607 | ew32(AIT, 0); |
| 1608 | } |
| 1609 | |
| 1610 | /** |
| 1611 | * e1000e_update_adaptive - Update Adaptive Interframe Spacing |
| 1612 | * @hw: pointer to the HW structure |
| 1613 | * |
| 1614 | * Update the Adaptive Interframe Spacing Throttle value based on the |
| 1615 | * time between transmitted packets and time between collisions. |
| 1616 | **/ |
| 1617 | void e1000e_update_adaptive(struct e1000_hw *hw) |
| 1618 | { |
| 1619 | struct e1000_mac_info *mac = &hw->mac; |
| 1620 | |
| 1621 | if ((mac->collision_delta * mac->ifs_ratio) > mac->tx_packet_delta) { |
| 1622 | if (mac->tx_packet_delta > MIN_NUM_XMITS) { |
| 1623 | mac->in_ifs_mode = 1; |
| 1624 | if (mac->current_ifs_val < mac->ifs_max_val) { |
| 1625 | if (!mac->current_ifs_val) |
| 1626 | mac->current_ifs_val = mac->ifs_min_val; |
| 1627 | else |
| 1628 | mac->current_ifs_val += |
| 1629 | mac->ifs_step_size; |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1630 | ew32(AIT, mac->current_ifs_val); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1631 | } |
| 1632 | } |
| 1633 | } else { |
| 1634 | if (mac->in_ifs_mode && |
| 1635 | (mac->tx_packet_delta <= MIN_NUM_XMITS)) { |
| 1636 | mac->current_ifs_val = 0; |
| 1637 | mac->in_ifs_mode = 0; |
| 1638 | ew32(AIT, 0); |
| 1639 | } |
| 1640 | } |
| 1641 | } |
| 1642 | |
| 1643 | /** |
| 1644 | * e1000_raise_eec_clk - Raise EEPROM clock |
| 1645 | * @hw: pointer to the HW structure |
| 1646 | * @eecd: pointer to the EEPROM |
| 1647 | * |
| 1648 | * Enable/Raise the EEPROM clock bit. |
| 1649 | **/ |
| 1650 | static void e1000_raise_eec_clk(struct e1000_hw *hw, u32 *eecd) |
| 1651 | { |
| 1652 | *eecd = *eecd | E1000_EECD_SK; |
| 1653 | ew32(EECD, *eecd); |
| 1654 | e1e_flush(); |
| 1655 | udelay(hw->nvm.delay_usec); |
| 1656 | } |
| 1657 | |
| 1658 | /** |
| 1659 | * e1000_lower_eec_clk - Lower EEPROM clock |
| 1660 | * @hw: pointer to the HW structure |
| 1661 | * @eecd: pointer to the EEPROM |
| 1662 | * |
| 1663 | * Clear/Lower the EEPROM clock bit. |
| 1664 | **/ |
| 1665 | static void e1000_lower_eec_clk(struct e1000_hw *hw, u32 *eecd) |
| 1666 | { |
| 1667 | *eecd = *eecd & ~E1000_EECD_SK; |
| 1668 | ew32(EECD, *eecd); |
| 1669 | e1e_flush(); |
| 1670 | udelay(hw->nvm.delay_usec); |
| 1671 | } |
| 1672 | |
| 1673 | /** |
| 1674 | * e1000_shift_out_eec_bits - Shift data bits our to the EEPROM |
| 1675 | * @hw: pointer to the HW structure |
| 1676 | * @data: data to send to the EEPROM |
| 1677 | * @count: number of bits to shift out |
| 1678 | * |
| 1679 | * We need to shift 'count' bits out to the EEPROM. So, the value in the |
| 1680 | * "data" parameter will be shifted out to the EEPROM one bit at a time. |
| 1681 | * In order to do this, "data" must be broken down into bits. |
| 1682 | **/ |
| 1683 | static void e1000_shift_out_eec_bits(struct e1000_hw *hw, u16 data, u16 count) |
| 1684 | { |
| 1685 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 1686 | u32 eecd = er32(EECD); |
| 1687 | u32 mask; |
| 1688 | |
| 1689 | mask = 0x01 << (count - 1); |
| 1690 | if (nvm->type == e1000_nvm_eeprom_spi) |
| 1691 | eecd |= E1000_EECD_DO; |
| 1692 | |
| 1693 | do { |
| 1694 | eecd &= ~E1000_EECD_DI; |
| 1695 | |
| 1696 | if (data & mask) |
| 1697 | eecd |= E1000_EECD_DI; |
| 1698 | |
| 1699 | ew32(EECD, eecd); |
| 1700 | e1e_flush(); |
| 1701 | |
| 1702 | udelay(nvm->delay_usec); |
| 1703 | |
| 1704 | e1000_raise_eec_clk(hw, &eecd); |
| 1705 | e1000_lower_eec_clk(hw, &eecd); |
| 1706 | |
| 1707 | mask >>= 1; |
| 1708 | } while (mask); |
| 1709 | |
| 1710 | eecd &= ~E1000_EECD_DI; |
| 1711 | ew32(EECD, eecd); |
| 1712 | } |
| 1713 | |
| 1714 | /** |
| 1715 | * e1000_shift_in_eec_bits - Shift data bits in from the EEPROM |
| 1716 | * @hw: pointer to the HW structure |
| 1717 | * @count: number of bits to shift in |
| 1718 | * |
| 1719 | * In order to read a register from the EEPROM, we need to shift 'count' bits |
| 1720 | * in from the EEPROM. Bits are "shifted in" by raising the clock input to |
| 1721 | * the EEPROM (setting the SK bit), and then reading the value of the data out |
| 1722 | * "DO" bit. During this "shifting in" process the data in "DI" bit should |
| 1723 | * always be clear. |
| 1724 | **/ |
| 1725 | static u16 e1000_shift_in_eec_bits(struct e1000_hw *hw, u16 count) |
| 1726 | { |
| 1727 | u32 eecd; |
| 1728 | u32 i; |
| 1729 | u16 data; |
| 1730 | |
| 1731 | eecd = er32(EECD); |
| 1732 | |
| 1733 | eecd &= ~(E1000_EECD_DO | E1000_EECD_DI); |
| 1734 | data = 0; |
| 1735 | |
| 1736 | for (i = 0; i < count; i++) { |
| 1737 | data <<= 1; |
| 1738 | e1000_raise_eec_clk(hw, &eecd); |
| 1739 | |
| 1740 | eecd = er32(EECD); |
| 1741 | |
| 1742 | eecd &= ~E1000_EECD_DI; |
| 1743 | if (eecd & E1000_EECD_DO) |
| 1744 | data |= 1; |
| 1745 | |
| 1746 | e1000_lower_eec_clk(hw, &eecd); |
| 1747 | } |
| 1748 | |
| 1749 | return data; |
| 1750 | } |
| 1751 | |
| 1752 | /** |
| 1753 | * e1000e_poll_eerd_eewr_done - Poll for EEPROM read/write completion |
| 1754 | * @hw: pointer to the HW structure |
| 1755 | * @ee_reg: EEPROM flag for polling |
| 1756 | * |
| 1757 | * Polls the EEPROM status bit for either read or write completion based |
| 1758 | * upon the value of 'ee_reg'. |
| 1759 | **/ |
| 1760 | s32 e1000e_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg) |
| 1761 | { |
| 1762 | u32 attempts = 100000; |
| 1763 | u32 i, reg = 0; |
| 1764 | |
| 1765 | for (i = 0; i < attempts; i++) { |
| 1766 | if (ee_reg == E1000_NVM_POLL_READ) |
| 1767 | reg = er32(EERD); |
| 1768 | else |
| 1769 | reg = er32(EEWR); |
| 1770 | |
| 1771 | if (reg & E1000_NVM_RW_REG_DONE) |
| 1772 | return 0; |
| 1773 | |
| 1774 | udelay(5); |
| 1775 | } |
| 1776 | |
| 1777 | return -E1000_ERR_NVM; |
| 1778 | } |
| 1779 | |
| 1780 | /** |
| 1781 | * e1000e_acquire_nvm - Generic request for access to EEPROM |
| 1782 | * @hw: pointer to the HW structure |
| 1783 | * |
| 1784 | * Set the EEPROM access request bit and wait for EEPROM access grant bit. |
| 1785 | * Return successful if access grant bit set, else clear the request for |
| 1786 | * EEPROM access and return -E1000_ERR_NVM (-1). |
| 1787 | **/ |
| 1788 | s32 e1000e_acquire_nvm(struct e1000_hw *hw) |
| 1789 | { |
| 1790 | u32 eecd = er32(EECD); |
| 1791 | s32 timeout = E1000_NVM_GRANT_ATTEMPTS; |
| 1792 | |
| 1793 | ew32(EECD, eecd | E1000_EECD_REQ); |
| 1794 | eecd = er32(EECD); |
| 1795 | |
| 1796 | while (timeout) { |
| 1797 | if (eecd & E1000_EECD_GNT) |
| 1798 | break; |
| 1799 | udelay(5); |
| 1800 | eecd = er32(EECD); |
| 1801 | timeout--; |
| 1802 | } |
| 1803 | |
| 1804 | if (!timeout) { |
| 1805 | eecd &= ~E1000_EECD_REQ; |
| 1806 | ew32(EECD, eecd); |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1807 | e_dbg("Could not acquire NVM grant\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1808 | return -E1000_ERR_NVM; |
| 1809 | } |
| 1810 | |
| 1811 | return 0; |
| 1812 | } |
| 1813 | |
| 1814 | /** |
| 1815 | * e1000_standby_nvm - Return EEPROM to standby state |
| 1816 | * @hw: pointer to the HW structure |
| 1817 | * |
| 1818 | * Return the EEPROM to a standby state. |
| 1819 | **/ |
| 1820 | static void e1000_standby_nvm(struct e1000_hw *hw) |
| 1821 | { |
| 1822 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 1823 | u32 eecd = er32(EECD); |
| 1824 | |
| 1825 | if (nvm->type == e1000_nvm_eeprom_spi) { |
| 1826 | /* Toggle CS to flush commands */ |
| 1827 | eecd |= E1000_EECD_CS; |
| 1828 | ew32(EECD, eecd); |
| 1829 | e1e_flush(); |
| 1830 | udelay(nvm->delay_usec); |
| 1831 | eecd &= ~E1000_EECD_CS; |
| 1832 | ew32(EECD, eecd); |
| 1833 | e1e_flush(); |
| 1834 | udelay(nvm->delay_usec); |
| 1835 | } |
| 1836 | } |
| 1837 | |
| 1838 | /** |
| 1839 | * e1000_stop_nvm - Terminate EEPROM command |
| 1840 | * @hw: pointer to the HW structure |
| 1841 | * |
| 1842 | * Terminates the current command by inverting the EEPROM's chip select pin. |
| 1843 | **/ |
| 1844 | static void e1000_stop_nvm(struct e1000_hw *hw) |
| 1845 | { |
| 1846 | u32 eecd; |
| 1847 | |
| 1848 | eecd = er32(EECD); |
| 1849 | if (hw->nvm.type == e1000_nvm_eeprom_spi) { |
| 1850 | /* Pull CS high */ |
| 1851 | eecd |= E1000_EECD_CS; |
| 1852 | e1000_lower_eec_clk(hw, &eecd); |
| 1853 | } |
| 1854 | } |
| 1855 | |
| 1856 | /** |
| 1857 | * e1000e_release_nvm - Release exclusive access to EEPROM |
| 1858 | * @hw: pointer to the HW structure |
| 1859 | * |
| 1860 | * Stop any current commands to the EEPROM and clear the EEPROM request bit. |
| 1861 | **/ |
| 1862 | void e1000e_release_nvm(struct e1000_hw *hw) |
| 1863 | { |
| 1864 | u32 eecd; |
| 1865 | |
| 1866 | e1000_stop_nvm(hw); |
| 1867 | |
| 1868 | eecd = er32(EECD); |
| 1869 | eecd &= ~E1000_EECD_REQ; |
| 1870 | ew32(EECD, eecd); |
| 1871 | } |
| 1872 | |
| 1873 | /** |
| 1874 | * e1000_ready_nvm_eeprom - Prepares EEPROM for read/write |
| 1875 | * @hw: pointer to the HW structure |
| 1876 | * |
| 1877 | * Setups the EEPROM for reading and writing. |
| 1878 | **/ |
| 1879 | static s32 e1000_ready_nvm_eeprom(struct e1000_hw *hw) |
| 1880 | { |
| 1881 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 1882 | u32 eecd = er32(EECD); |
| 1883 | u16 timeout = 0; |
| 1884 | u8 spi_stat_reg; |
| 1885 | |
| 1886 | if (nvm->type == e1000_nvm_eeprom_spi) { |
| 1887 | /* Clear SK and CS */ |
| 1888 | eecd &= ~(E1000_EECD_CS | E1000_EECD_SK); |
| 1889 | ew32(EECD, eecd); |
| 1890 | udelay(1); |
| 1891 | timeout = NVM_MAX_RETRY_SPI; |
| 1892 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1893 | /* |
| 1894 | * Read "Status Register" repeatedly until the LSB is cleared. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1895 | * The EEPROM will signal that the command has been completed |
| 1896 | * by clearing bit 0 of the internal status register. If it's |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1897 | * not cleared within 'timeout', then error out. |
| 1898 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1899 | while (timeout) { |
| 1900 | e1000_shift_out_eec_bits(hw, NVM_RDSR_OPCODE_SPI, |
| 1901 | hw->nvm.opcode_bits); |
| 1902 | spi_stat_reg = (u8)e1000_shift_in_eec_bits(hw, 8); |
| 1903 | if (!(spi_stat_reg & NVM_STATUS_RDY_SPI)) |
| 1904 | break; |
| 1905 | |
| 1906 | udelay(5); |
| 1907 | e1000_standby_nvm(hw); |
| 1908 | timeout--; |
| 1909 | } |
| 1910 | |
| 1911 | if (!timeout) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1912 | e_dbg("SPI NVM Status error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1913 | return -E1000_ERR_NVM; |
| 1914 | } |
| 1915 | } |
| 1916 | |
| 1917 | return 0; |
| 1918 | } |
| 1919 | |
| 1920 | /** |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1921 | * e1000e_read_nvm_eerd - Reads EEPROM using EERD register |
| 1922 | * @hw: pointer to the HW structure |
| 1923 | * @offset: offset of word in the EEPROM to read |
| 1924 | * @words: number of words to read |
| 1925 | * @data: word read from the EEPROM |
| 1926 | * |
| 1927 | * Reads a 16 bit word from the EEPROM using the EERD register. |
| 1928 | **/ |
| 1929 | s32 e1000e_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) |
| 1930 | { |
| 1931 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 1932 | u32 i, eerd = 0; |
| 1933 | s32 ret_val = 0; |
| 1934 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1935 | /* |
| 1936 | * A check for invalid values: offset too large, too many words, |
| 1937 | * too many words for the offset, and not enough words. |
| 1938 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1939 | if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || |
| 1940 | (words == 0)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1941 | e_dbg("nvm parameter(s) out of bounds\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1942 | return -E1000_ERR_NVM; |
| 1943 | } |
| 1944 | |
| 1945 | for (i = 0; i < words; i++) { |
| 1946 | eerd = ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) + |
| 1947 | E1000_NVM_RW_REG_START; |
| 1948 | |
| 1949 | ew32(EERD, eerd); |
| 1950 | ret_val = e1000e_poll_eerd_eewr_done(hw, E1000_NVM_POLL_READ); |
| 1951 | if (ret_val) |
| 1952 | break; |
| 1953 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1954 | data[i] = (er32(EERD) >> E1000_NVM_RW_REG_DATA); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1955 | } |
| 1956 | |
| 1957 | return ret_val; |
| 1958 | } |
| 1959 | |
| 1960 | /** |
| 1961 | * e1000e_write_nvm_spi - Write to EEPROM using SPI |
| 1962 | * @hw: pointer to the HW structure |
| 1963 | * @offset: offset within the EEPROM to be written to |
| 1964 | * @words: number of words to write |
| 1965 | * @data: 16 bit word(s) to be written to the EEPROM |
| 1966 | * |
| 1967 | * Writes data to EEPROM at offset using SPI interface. |
| 1968 | * |
| 1969 | * If e1000e_update_nvm_checksum is not called after this function , the |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 1970 | * EEPROM will most likely contain an invalid checksum. |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1971 | **/ |
| 1972 | s32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) |
| 1973 | { |
| 1974 | struct e1000_nvm_info *nvm = &hw->nvm; |
| 1975 | s32 ret_val; |
| 1976 | u16 widx = 0; |
| 1977 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 1978 | /* |
| 1979 | * A check for invalid values: offset too large, too many words, |
| 1980 | * and not enough words. |
| 1981 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1982 | if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || |
| 1983 | (words == 0)) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 1984 | e_dbg("nvm parameter(s) out of bounds\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1985 | return -E1000_ERR_NVM; |
| 1986 | } |
| 1987 | |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1988 | ret_val = nvm->ops.acquire(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 1989 | if (ret_val) |
| 1990 | return ret_val; |
| 1991 | |
| 1992 | msleep(10); |
| 1993 | |
| 1994 | while (widx < words) { |
| 1995 | u8 write_opcode = NVM_WRITE_OPCODE_SPI; |
| 1996 | |
| 1997 | ret_val = e1000_ready_nvm_eeprom(hw); |
| 1998 | if (ret_val) { |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 1999 | nvm->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2000 | return ret_val; |
| 2001 | } |
| 2002 | |
| 2003 | e1000_standby_nvm(hw); |
| 2004 | |
| 2005 | /* Send the WRITE ENABLE command (8 bit opcode) */ |
| 2006 | e1000_shift_out_eec_bits(hw, NVM_WREN_OPCODE_SPI, |
| 2007 | nvm->opcode_bits); |
| 2008 | |
| 2009 | e1000_standby_nvm(hw); |
| 2010 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2011 | /* |
| 2012 | * Some SPI eeproms use the 8th address bit embedded in the |
| 2013 | * opcode |
| 2014 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2015 | if ((nvm->address_bits == 8) && (offset >= 128)) |
| 2016 | write_opcode |= NVM_A8_OPCODE_SPI; |
| 2017 | |
| 2018 | /* Send the Write command (8-bit opcode + addr) */ |
| 2019 | e1000_shift_out_eec_bits(hw, write_opcode, nvm->opcode_bits); |
| 2020 | e1000_shift_out_eec_bits(hw, (u16)((offset + widx) * 2), |
| 2021 | nvm->address_bits); |
| 2022 | |
| 2023 | /* Loop to allow for up to whole page write of eeprom */ |
| 2024 | while (widx < words) { |
| 2025 | u16 word_out = data[widx]; |
| 2026 | word_out = (word_out >> 8) | (word_out << 8); |
| 2027 | e1000_shift_out_eec_bits(hw, word_out, 16); |
| 2028 | widx++; |
| 2029 | |
| 2030 | if ((((offset + widx) * 2) % nvm->page_size) == 0) { |
| 2031 | e1000_standby_nvm(hw); |
| 2032 | break; |
| 2033 | } |
| 2034 | } |
| 2035 | } |
| 2036 | |
| 2037 | msleep(10); |
Bruce Allan | 94d8186 | 2009-11-20 23:25:26 +0000 | [diff] [blame] | 2038 | nvm->ops.release(hw); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2039 | return 0; |
| 2040 | } |
| 2041 | |
| 2042 | /** |
| 2043 | * e1000e_read_mac_addr - Read device MAC address |
| 2044 | * @hw: pointer to the HW structure |
| 2045 | * |
| 2046 | * Reads the device MAC address from the EEPROM and stores the value. |
| 2047 | * Since devices with two ports use the same EEPROM, we increment the |
| 2048 | * last bit in the MAC address for the second port. |
| 2049 | **/ |
| 2050 | s32 e1000e_read_mac_addr(struct e1000_hw *hw) |
| 2051 | { |
| 2052 | s32 ret_val; |
| 2053 | u16 offset, nvm_data, i; |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2054 | u16 mac_addr_offset = 0; |
| 2055 | |
| 2056 | if (hw->mac.type == e1000_82571) { |
| 2057 | /* Check for an alternate MAC address. An alternate MAC |
| 2058 | * address can be setup by pre-boot software and must be |
| 2059 | * treated like a permanent address and must override the |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2060 | * actual permanent MAC address.*/ |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2061 | ret_val = e1000_read_nvm(hw, NVM_ALT_MAC_ADDR_PTR, 1, |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2062 | &mac_addr_offset); |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2063 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2064 | e_dbg("NVM Read Error\n"); |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2065 | return ret_val; |
| 2066 | } |
| 2067 | if (mac_addr_offset == 0xFFFF) |
| 2068 | mac_addr_offset = 0; |
| 2069 | |
| 2070 | if (mac_addr_offset) { |
| 2071 | if (hw->bus.func == E1000_FUNC_1) |
| 2072 | mac_addr_offset += ETH_ALEN/sizeof(u16); |
| 2073 | |
| 2074 | /* make sure we have a valid mac address here |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2075 | * before using it */ |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2076 | ret_val = e1000_read_nvm(hw, mac_addr_offset, 1, |
| 2077 | &nvm_data); |
| 2078 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2079 | e_dbg("NVM Read Error\n"); |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2080 | return ret_val; |
| 2081 | } |
| 2082 | if (nvm_data & 0x0001) |
| 2083 | mac_addr_offset = 0; |
| 2084 | } |
| 2085 | |
| 2086 | if (mac_addr_offset) |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2087 | hw->dev_spec.e82571.alt_mac_addr_is_present = 1; |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2088 | } |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2089 | |
| 2090 | for (i = 0; i < ETH_ALEN; i += 2) { |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2091 | offset = mac_addr_offset + (i >> 1); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2092 | ret_val = e1000_read_nvm(hw, offset, 1, &nvm_data); |
| 2093 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2094 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2095 | return ret_val; |
| 2096 | } |
| 2097 | hw->mac.perm_addr[i] = (u8)(nvm_data & 0xFF); |
| 2098 | hw->mac.perm_addr[i+1] = (u8)(nvm_data >> 8); |
| 2099 | } |
| 2100 | |
| 2101 | /* Flip last bit of mac address if we're on second port */ |
Bill Hayes | 93ca161 | 2007-10-31 15:21:52 -0700 | [diff] [blame] | 2102 | if (!mac_addr_offset && hw->bus.func == E1000_FUNC_1) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2103 | hw->mac.perm_addr[5] ^= 1; |
| 2104 | |
| 2105 | for (i = 0; i < ETH_ALEN; i++) |
| 2106 | hw->mac.addr[i] = hw->mac.perm_addr[i]; |
| 2107 | |
| 2108 | return 0; |
| 2109 | } |
| 2110 | |
| 2111 | /** |
| 2112 | * e1000e_validate_nvm_checksum_generic - Validate EEPROM checksum |
| 2113 | * @hw: pointer to the HW structure |
| 2114 | * |
| 2115 | * Calculates the EEPROM checksum by reading/adding each word of the EEPROM |
| 2116 | * and then verifies that the sum of the EEPROM is equal to 0xBABA. |
| 2117 | **/ |
| 2118 | s32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw) |
| 2119 | { |
| 2120 | s32 ret_val; |
| 2121 | u16 checksum = 0; |
| 2122 | u16 i, nvm_data; |
| 2123 | |
| 2124 | for (i = 0; i < (NVM_CHECKSUM_REG + 1); i++) { |
| 2125 | ret_val = e1000_read_nvm(hw, i, 1, &nvm_data); |
| 2126 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2127 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2128 | return ret_val; |
| 2129 | } |
| 2130 | checksum += nvm_data; |
| 2131 | } |
| 2132 | |
| 2133 | if (checksum != (u16) NVM_SUM) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2134 | e_dbg("NVM Checksum Invalid\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2135 | return -E1000_ERR_NVM; |
| 2136 | } |
| 2137 | |
| 2138 | return 0; |
| 2139 | } |
| 2140 | |
| 2141 | /** |
| 2142 | * e1000e_update_nvm_checksum_generic - Update EEPROM checksum |
| 2143 | * @hw: pointer to the HW structure |
| 2144 | * |
| 2145 | * Updates the EEPROM checksum by reading/adding each word of the EEPROM |
| 2146 | * up to the checksum. Then calculates the EEPROM checksum and writes the |
| 2147 | * value to the EEPROM. |
| 2148 | **/ |
| 2149 | s32 e1000e_update_nvm_checksum_generic(struct e1000_hw *hw) |
| 2150 | { |
| 2151 | s32 ret_val; |
| 2152 | u16 checksum = 0; |
| 2153 | u16 i, nvm_data; |
| 2154 | |
| 2155 | for (i = 0; i < NVM_CHECKSUM_REG; i++) { |
| 2156 | ret_val = e1000_read_nvm(hw, i, 1, &nvm_data); |
| 2157 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2158 | e_dbg("NVM Read Error while updating checksum.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2159 | return ret_val; |
| 2160 | } |
| 2161 | checksum += nvm_data; |
| 2162 | } |
| 2163 | checksum = (u16) NVM_SUM - checksum; |
| 2164 | ret_val = e1000_write_nvm(hw, NVM_CHECKSUM_REG, 1, &checksum); |
| 2165 | if (ret_val) |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2166 | e_dbg("NVM Write Error while updating checksum.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2167 | |
| 2168 | return ret_val; |
| 2169 | } |
| 2170 | |
| 2171 | /** |
| 2172 | * e1000e_reload_nvm - Reloads EEPROM |
| 2173 | * @hw: pointer to the HW structure |
| 2174 | * |
| 2175 | * Reloads the EEPROM by setting the "Reinitialize from EEPROM" bit in the |
| 2176 | * extended control register. |
| 2177 | **/ |
| 2178 | void e1000e_reload_nvm(struct e1000_hw *hw) |
| 2179 | { |
| 2180 | u32 ctrl_ext; |
| 2181 | |
| 2182 | udelay(10); |
| 2183 | ctrl_ext = er32(CTRL_EXT); |
| 2184 | ctrl_ext |= E1000_CTRL_EXT_EE_RST; |
| 2185 | ew32(CTRL_EXT, ctrl_ext); |
| 2186 | e1e_flush(); |
| 2187 | } |
| 2188 | |
| 2189 | /** |
| 2190 | * e1000_calculate_checksum - Calculate checksum for buffer |
| 2191 | * @buffer: pointer to EEPROM |
| 2192 | * @length: size of EEPROM to calculate a checksum for |
| 2193 | * |
| 2194 | * Calculates the checksum for some buffer on a specified length. The |
| 2195 | * checksum calculated is returned. |
| 2196 | **/ |
| 2197 | static u8 e1000_calculate_checksum(u8 *buffer, u32 length) |
| 2198 | { |
| 2199 | u32 i; |
| 2200 | u8 sum = 0; |
| 2201 | |
| 2202 | if (!buffer) |
| 2203 | return 0; |
| 2204 | |
| 2205 | for (i = 0; i < length; i++) |
| 2206 | sum += buffer[i]; |
| 2207 | |
| 2208 | return (u8) (0 - sum); |
| 2209 | } |
| 2210 | |
| 2211 | /** |
| 2212 | * e1000_mng_enable_host_if - Checks host interface is enabled |
| 2213 | * @hw: pointer to the HW structure |
| 2214 | * |
| 2215 | * Returns E1000_success upon success, else E1000_ERR_HOST_INTERFACE_COMMAND |
| 2216 | * |
Auke Kok | 489815c | 2008-02-21 15:11:07 -0800 | [diff] [blame] | 2217 | * This function checks whether the HOST IF is enabled for command operation |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2218 | * and also checks whether the previous command is completed. It busy waits |
| 2219 | * in case of previous command is not completed. |
| 2220 | **/ |
| 2221 | static s32 e1000_mng_enable_host_if(struct e1000_hw *hw) |
| 2222 | { |
| 2223 | u32 hicr; |
| 2224 | u8 i; |
| 2225 | |
| 2226 | /* Check that the host interface is enabled. */ |
| 2227 | hicr = er32(HICR); |
| 2228 | if ((hicr & E1000_HICR_EN) == 0) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2229 | e_dbg("E1000_HOST_EN bit disabled.\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2230 | return -E1000_ERR_HOST_INTERFACE_COMMAND; |
| 2231 | } |
| 2232 | /* check the previous command is completed */ |
| 2233 | for (i = 0; i < E1000_MNG_DHCP_COMMAND_TIMEOUT; i++) { |
| 2234 | hicr = er32(HICR); |
| 2235 | if (!(hicr & E1000_HICR_C)) |
| 2236 | break; |
| 2237 | mdelay(1); |
| 2238 | } |
| 2239 | |
| 2240 | if (i == E1000_MNG_DHCP_COMMAND_TIMEOUT) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2241 | e_dbg("Previous command timeout failed .\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2242 | return -E1000_ERR_HOST_INTERFACE_COMMAND; |
| 2243 | } |
| 2244 | |
| 2245 | return 0; |
| 2246 | } |
| 2247 | |
| 2248 | /** |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2249 | * e1000e_check_mng_mode_generic - check management mode |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2250 | * @hw: pointer to the HW structure |
| 2251 | * |
| 2252 | * Reads the firmware semaphore register and returns true (>0) if |
| 2253 | * manageability is enabled, else false (0). |
| 2254 | **/ |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2255 | bool e1000e_check_mng_mode_generic(struct e1000_hw *hw) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2256 | { |
| 2257 | u32 fwsm = er32(FWSM); |
| 2258 | |
Bruce Allan | 4662e82 | 2008-08-26 18:37:06 -0700 | [diff] [blame] | 2259 | return (fwsm & E1000_FWSM_MODE_MASK) == |
| 2260 | (E1000_MNG_IAMT_MODE << E1000_FWSM_MODE_SHIFT); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | /** |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2264 | * e1000e_enable_tx_pkt_filtering - Enable packet filtering on Tx |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2265 | * @hw: pointer to the HW structure |
| 2266 | * |
| 2267 | * Enables packet filtering on transmit packets if manageability is enabled |
| 2268 | * and host interface is enabled. |
| 2269 | **/ |
| 2270 | bool e1000e_enable_tx_pkt_filtering(struct e1000_hw *hw) |
| 2271 | { |
| 2272 | struct e1000_host_mng_dhcp_cookie *hdr = &hw->mng_cookie; |
| 2273 | u32 *buffer = (u32 *)&hw->mng_cookie; |
| 2274 | u32 offset; |
| 2275 | s32 ret_val, hdr_csum, csum; |
| 2276 | u8 i, len; |
| 2277 | |
| 2278 | /* No manageability, no filtering */ |
| 2279 | if (!e1000e_check_mng_mode(hw)) { |
| 2280 | hw->mac.tx_pkt_filtering = 0; |
| 2281 | return 0; |
| 2282 | } |
| 2283 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2284 | /* |
| 2285 | * If we can't read from the host interface for whatever |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2286 | * reason, disable filtering. |
| 2287 | */ |
| 2288 | ret_val = e1000_mng_enable_host_if(hw); |
| 2289 | if (ret_val != 0) { |
| 2290 | hw->mac.tx_pkt_filtering = 0; |
| 2291 | return ret_val; |
| 2292 | } |
| 2293 | |
| 2294 | /* Read in the header. Length and offset are in dwords. */ |
| 2295 | len = E1000_MNG_DHCP_COOKIE_LENGTH >> 2; |
| 2296 | offset = E1000_MNG_DHCP_COOKIE_OFFSET >> 2; |
| 2297 | for (i = 0; i < len; i++) |
| 2298 | *(buffer + i) = E1000_READ_REG_ARRAY(hw, E1000_HOST_IF, offset + i); |
| 2299 | hdr_csum = hdr->checksum; |
| 2300 | hdr->checksum = 0; |
| 2301 | csum = e1000_calculate_checksum((u8 *)hdr, |
| 2302 | E1000_MNG_DHCP_COOKIE_LENGTH); |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2303 | /* |
| 2304 | * If either the checksums or signature don't match, then |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2305 | * the cookie area isn't considered valid, in which case we |
| 2306 | * take the safe route of assuming Tx filtering is enabled. |
| 2307 | */ |
| 2308 | if ((hdr_csum != csum) || (hdr->signature != E1000_IAMT_SIGNATURE)) { |
| 2309 | hw->mac.tx_pkt_filtering = 1; |
| 2310 | return 1; |
| 2311 | } |
| 2312 | |
| 2313 | /* Cookie area is valid, make the final check for filtering. */ |
| 2314 | if (!(hdr->status & E1000_MNG_DHCP_COOKIE_STATUS_PARSING)) { |
| 2315 | hw->mac.tx_pkt_filtering = 0; |
| 2316 | return 0; |
| 2317 | } |
| 2318 | |
| 2319 | hw->mac.tx_pkt_filtering = 1; |
| 2320 | return 1; |
| 2321 | } |
| 2322 | |
| 2323 | /** |
| 2324 | * e1000_mng_write_cmd_header - Writes manageability command header |
| 2325 | * @hw: pointer to the HW structure |
| 2326 | * @hdr: pointer to the host interface command header |
| 2327 | * |
| 2328 | * Writes the command header after does the checksum calculation. |
| 2329 | **/ |
| 2330 | static s32 e1000_mng_write_cmd_header(struct e1000_hw *hw, |
| 2331 | struct e1000_host_mng_command_header *hdr) |
| 2332 | { |
| 2333 | u16 i, length = sizeof(struct e1000_host_mng_command_header); |
| 2334 | |
| 2335 | /* Write the whole command header structure with new checksum. */ |
| 2336 | |
| 2337 | hdr->checksum = e1000_calculate_checksum((u8 *)hdr, length); |
| 2338 | |
| 2339 | length >>= 2; |
| 2340 | /* Write the relevant command block into the ram area. */ |
| 2341 | for (i = 0; i < length; i++) { |
| 2342 | E1000_WRITE_REG_ARRAY(hw, E1000_HOST_IF, i, |
| 2343 | *((u32 *) hdr + i)); |
| 2344 | e1e_flush(); |
| 2345 | } |
| 2346 | |
| 2347 | return 0; |
| 2348 | } |
| 2349 | |
| 2350 | /** |
| 2351 | * e1000_mng_host_if_write - Writes to the manageability host interface |
| 2352 | * @hw: pointer to the HW structure |
| 2353 | * @buffer: pointer to the host interface buffer |
| 2354 | * @length: size of the buffer |
| 2355 | * @offset: location in the buffer to write to |
| 2356 | * @sum: sum of the data (not checksum) |
| 2357 | * |
| 2358 | * This function writes the buffer content at the offset given on the host if. |
| 2359 | * It also does alignment considerations to do the writes in most efficient |
| 2360 | * way. Also fills up the sum of the buffer in *buffer parameter. |
| 2361 | **/ |
| 2362 | static s32 e1000_mng_host_if_write(struct e1000_hw *hw, u8 *buffer, |
| 2363 | u16 length, u16 offset, u8 *sum) |
| 2364 | { |
| 2365 | u8 *tmp; |
| 2366 | u8 *bufptr = buffer; |
| 2367 | u32 data = 0; |
| 2368 | u16 remaining, i, j, prev_bytes; |
| 2369 | |
| 2370 | /* sum = only sum of the data and it is not checksum */ |
| 2371 | |
| 2372 | if (length == 0 || offset + length > E1000_HI_MAX_MNG_DATA_LENGTH) |
| 2373 | return -E1000_ERR_PARAM; |
| 2374 | |
| 2375 | tmp = (u8 *)&data; |
| 2376 | prev_bytes = offset & 0x3; |
| 2377 | offset >>= 2; |
| 2378 | |
| 2379 | if (prev_bytes) { |
| 2380 | data = E1000_READ_REG_ARRAY(hw, E1000_HOST_IF, offset); |
| 2381 | for (j = prev_bytes; j < sizeof(u32); j++) { |
| 2382 | *(tmp + j) = *bufptr++; |
| 2383 | *sum += *(tmp + j); |
| 2384 | } |
| 2385 | E1000_WRITE_REG_ARRAY(hw, E1000_HOST_IF, offset, data); |
| 2386 | length -= j - prev_bytes; |
| 2387 | offset++; |
| 2388 | } |
| 2389 | |
| 2390 | remaining = length & 0x3; |
| 2391 | length -= remaining; |
| 2392 | |
| 2393 | /* Calculate length in DWORDs */ |
| 2394 | length >>= 2; |
| 2395 | |
Bruce Allan | ad68076 | 2008-03-28 09:15:03 -0700 | [diff] [blame] | 2396 | /* |
| 2397 | * The device driver writes the relevant command block into the |
| 2398 | * ram area. |
| 2399 | */ |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2400 | for (i = 0; i < length; i++) { |
| 2401 | for (j = 0; j < sizeof(u32); j++) { |
| 2402 | *(tmp + j) = *bufptr++; |
| 2403 | *sum += *(tmp + j); |
| 2404 | } |
| 2405 | |
| 2406 | E1000_WRITE_REG_ARRAY(hw, E1000_HOST_IF, offset + i, data); |
| 2407 | } |
| 2408 | if (remaining) { |
| 2409 | for (j = 0; j < sizeof(u32); j++) { |
| 2410 | if (j < remaining) |
| 2411 | *(tmp + j) = *bufptr++; |
| 2412 | else |
| 2413 | *(tmp + j) = 0; |
| 2414 | |
| 2415 | *sum += *(tmp + j); |
| 2416 | } |
| 2417 | E1000_WRITE_REG_ARRAY(hw, E1000_HOST_IF, offset + i, data); |
| 2418 | } |
| 2419 | |
| 2420 | return 0; |
| 2421 | } |
| 2422 | |
| 2423 | /** |
| 2424 | * e1000e_mng_write_dhcp_info - Writes DHCP info to host interface |
| 2425 | * @hw: pointer to the HW structure |
| 2426 | * @buffer: pointer to the host interface |
| 2427 | * @length: size of the buffer |
| 2428 | * |
| 2429 | * Writes the DHCP information to the host interface. |
| 2430 | **/ |
| 2431 | s32 e1000e_mng_write_dhcp_info(struct e1000_hw *hw, u8 *buffer, u16 length) |
| 2432 | { |
| 2433 | struct e1000_host_mng_command_header hdr; |
| 2434 | s32 ret_val; |
| 2435 | u32 hicr; |
| 2436 | |
| 2437 | hdr.command_id = E1000_MNG_DHCP_TX_PAYLOAD_CMD; |
| 2438 | hdr.command_length = length; |
| 2439 | hdr.reserved1 = 0; |
| 2440 | hdr.reserved2 = 0; |
| 2441 | hdr.checksum = 0; |
| 2442 | |
| 2443 | /* Enable the host interface */ |
| 2444 | ret_val = e1000_mng_enable_host_if(hw); |
| 2445 | if (ret_val) |
| 2446 | return ret_val; |
| 2447 | |
| 2448 | /* Populate the host interface with the contents of "buffer". */ |
| 2449 | ret_val = e1000_mng_host_if_write(hw, buffer, length, |
| 2450 | sizeof(hdr), &(hdr.checksum)); |
| 2451 | if (ret_val) |
| 2452 | return ret_val; |
| 2453 | |
| 2454 | /* Write the manageability command header */ |
| 2455 | ret_val = e1000_mng_write_cmd_header(hw, &hdr); |
| 2456 | if (ret_val) |
| 2457 | return ret_val; |
| 2458 | |
| 2459 | /* Tell the ARC a new command is pending. */ |
| 2460 | hicr = er32(HICR); |
| 2461 | ew32(HICR, hicr | E1000_HICR_C); |
| 2462 | |
| 2463 | return 0; |
| 2464 | } |
| 2465 | |
| 2466 | /** |
| 2467 | * e1000e_enable_mng_pass_thru - Enable processing of ARP's |
| 2468 | * @hw: pointer to the HW structure |
| 2469 | * |
| 2470 | * Verifies the hardware needs to allow ARPs to be processed by the host. |
| 2471 | **/ |
| 2472 | bool e1000e_enable_mng_pass_thru(struct e1000_hw *hw) |
| 2473 | { |
| 2474 | u32 manc; |
| 2475 | u32 fwsm, factps; |
| 2476 | bool ret_val = 0; |
| 2477 | |
| 2478 | manc = er32(MANC); |
| 2479 | |
| 2480 | if (!(manc & E1000_MANC_RCV_TCO_EN) || |
| 2481 | !(manc & E1000_MANC_EN_MAC_ADDR_FILTER)) |
| 2482 | return ret_val; |
| 2483 | |
| 2484 | if (hw->mac.arc_subsystem_valid) { |
| 2485 | fwsm = er32(FWSM); |
| 2486 | factps = er32(FACTPS); |
| 2487 | |
| 2488 | if (!(factps & E1000_FACTPS_MNGCG) && |
| 2489 | ((fwsm & E1000_FWSM_MODE_MASK) == |
| 2490 | (e1000_mng_mode_pt << E1000_FWSM_MODE_SHIFT))) { |
| 2491 | ret_val = 1; |
| 2492 | return ret_val; |
| 2493 | } |
| 2494 | } else { |
| 2495 | if ((manc & E1000_MANC_SMBUS_EN) && |
| 2496 | !(manc & E1000_MANC_ASF_EN)) { |
| 2497 | ret_val = 1; |
| 2498 | return ret_val; |
| 2499 | } |
| 2500 | } |
| 2501 | |
| 2502 | return ret_val; |
| 2503 | } |
| 2504 | |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 2505 | s32 e1000e_read_pba_num(struct e1000_hw *hw, u32 *pba_num) |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2506 | { |
| 2507 | s32 ret_val; |
| 2508 | u16 nvm_data; |
| 2509 | |
| 2510 | ret_val = e1000_read_nvm(hw, NVM_PBA_OFFSET_0, 1, &nvm_data); |
| 2511 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2512 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2513 | return ret_val; |
| 2514 | } |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 2515 | *pba_num = (u32)(nvm_data << 16); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2516 | |
| 2517 | ret_val = e1000_read_nvm(hw, NVM_PBA_OFFSET_1, 1, &nvm_data); |
| 2518 | if (ret_val) { |
Bruce Allan | 3bb99fe | 2009-11-20 23:25:07 +0000 | [diff] [blame] | 2519 | e_dbg("NVM Read Error\n"); |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2520 | return ret_val; |
| 2521 | } |
Jeff Kirsher | 69e3fd8 | 2008-04-02 13:48:18 -0700 | [diff] [blame] | 2522 | *pba_num |= nvm_data; |
Auke Kok | bc7f75f | 2007-09-17 12:30:59 -0700 | [diff] [blame] | 2523 | |
| 2524 | return 0; |
| 2525 | } |