Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Peter P Waskiewicz Jr | 3efac5a | 2009-02-01 01:19:20 -0800 | [diff] [blame] | 4 | Copyright(c) 1999 - 2009 Intel Corporation. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 25 | |
| 26 | *******************************************************************************/ |
| 27 | |
| 28 | #include <linux/pci.h> |
| 29 | #include <linux/delay.h> |
| 30 | #include <linux/sched.h> |
| 31 | |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 32 | #include "ixgbe.h" |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 33 | #include "ixgbe_common.h" |
| 34 | #include "ixgbe_phy.h" |
| 35 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 36 | static s32 ixgbe_poll_eeprom_eerd_done(struct ixgbe_hw *hw); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 37 | static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 38 | static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw); |
| 39 | static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 40 | static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw); |
| 41 | static void ixgbe_standby_eeprom(struct ixgbe_hw *hw); |
| 42 | static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data, |
| 43 | u16 count); |
| 44 | static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count); |
| 45 | static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec); |
| 46 | static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec); |
| 47 | static void ixgbe_release_eeprom(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 48 | static u16 ixgbe_calc_eeprom_checksum(struct ixgbe_hw *hw); |
| 49 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 50 | static void ixgbe_enable_rar(struct ixgbe_hw *hw, u32 index); |
| 51 | static void ixgbe_disable_rar(struct ixgbe_hw *hw, u32 index); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 52 | static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 53 | static void ixgbe_add_uc_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 54 | |
| 55 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 56 | * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 57 | * @hw: pointer to hardware structure |
| 58 | * |
| 59 | * Starts the hardware by filling the bus info structure and media type, clears |
| 60 | * all on chip counters, initializes receive address registers, multicast |
| 61 | * table, VLAN filter table, calls routine to set up link and flow control |
| 62 | * settings, and leaves transmit and receive units disabled and uninitialized |
| 63 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 64 | s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 65 | { |
| 66 | u32 ctrl_ext; |
| 67 | |
| 68 | /* Set the media type */ |
| 69 | hw->phy.media_type = hw->mac.ops.get_media_type(hw); |
| 70 | |
| 71 | /* Identify the PHY */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 72 | hw->phy.ops.identify(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 73 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 74 | /* Clear the VLAN filter table */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 75 | hw->mac.ops.clear_vfta(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 76 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 77 | /* Clear statistics registers */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 78 | hw->mac.ops.clear_hw_cntrs(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 79 | |
| 80 | /* Set No Snoop Disable */ |
| 81 | ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); |
| 82 | ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS; |
| 83 | IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 84 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 85 | |
| 86 | /* Clear adapter stopped flag */ |
| 87 | hw->adapter_stopped = false; |
| 88 | |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 93 | * ixgbe_init_hw_generic - Generic hardware initialization |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 94 | * @hw: pointer to hardware structure |
| 95 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 96 | * Initialize the hardware by resetting the hardware, filling the bus info |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 97 | * structure and media type, clears all on chip counters, initializes receive |
| 98 | * address registers, multicast table, VLAN filter table, calls routine to set |
| 99 | * up link and flow control settings, and leaves transmit and receive units |
| 100 | * disabled and uninitialized |
| 101 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 102 | s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 103 | { |
| 104 | /* Reset the hardware */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 105 | hw->mac.ops.reset_hw(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 106 | |
| 107 | /* Start the HW */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 108 | hw->mac.ops.start_hw(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 114 | * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 115 | * @hw: pointer to hardware structure |
| 116 | * |
| 117 | * Clears all hardware statistics counters by reading them from the hardware |
| 118 | * Statistics counters are clear on read. |
| 119 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 120 | s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 121 | { |
| 122 | u16 i = 0; |
| 123 | |
| 124 | IXGBE_READ_REG(hw, IXGBE_CRCERRS); |
| 125 | IXGBE_READ_REG(hw, IXGBE_ILLERRC); |
| 126 | IXGBE_READ_REG(hw, IXGBE_ERRBC); |
| 127 | IXGBE_READ_REG(hw, IXGBE_MSPDC); |
| 128 | for (i = 0; i < 8; i++) |
| 129 | IXGBE_READ_REG(hw, IXGBE_MPC(i)); |
| 130 | |
| 131 | IXGBE_READ_REG(hw, IXGBE_MLFC); |
| 132 | IXGBE_READ_REG(hw, IXGBE_MRFC); |
| 133 | IXGBE_READ_REG(hw, IXGBE_RLEC); |
| 134 | IXGBE_READ_REG(hw, IXGBE_LXONTXC); |
| 135 | IXGBE_READ_REG(hw, IXGBE_LXONRXC); |
| 136 | IXGBE_READ_REG(hw, IXGBE_LXOFFTXC); |
| 137 | IXGBE_READ_REG(hw, IXGBE_LXOFFRXC); |
| 138 | |
| 139 | for (i = 0; i < 8; i++) { |
| 140 | IXGBE_READ_REG(hw, IXGBE_PXONTXC(i)); |
| 141 | IXGBE_READ_REG(hw, IXGBE_PXONRXC(i)); |
| 142 | IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i)); |
| 143 | IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i)); |
| 144 | } |
| 145 | |
| 146 | IXGBE_READ_REG(hw, IXGBE_PRC64); |
| 147 | IXGBE_READ_REG(hw, IXGBE_PRC127); |
| 148 | IXGBE_READ_REG(hw, IXGBE_PRC255); |
| 149 | IXGBE_READ_REG(hw, IXGBE_PRC511); |
| 150 | IXGBE_READ_REG(hw, IXGBE_PRC1023); |
| 151 | IXGBE_READ_REG(hw, IXGBE_PRC1522); |
| 152 | IXGBE_READ_REG(hw, IXGBE_GPRC); |
| 153 | IXGBE_READ_REG(hw, IXGBE_BPRC); |
| 154 | IXGBE_READ_REG(hw, IXGBE_MPRC); |
| 155 | IXGBE_READ_REG(hw, IXGBE_GPTC); |
| 156 | IXGBE_READ_REG(hw, IXGBE_GORCL); |
| 157 | IXGBE_READ_REG(hw, IXGBE_GORCH); |
| 158 | IXGBE_READ_REG(hw, IXGBE_GOTCL); |
| 159 | IXGBE_READ_REG(hw, IXGBE_GOTCH); |
| 160 | for (i = 0; i < 8; i++) |
| 161 | IXGBE_READ_REG(hw, IXGBE_RNBC(i)); |
| 162 | IXGBE_READ_REG(hw, IXGBE_RUC); |
| 163 | IXGBE_READ_REG(hw, IXGBE_RFC); |
| 164 | IXGBE_READ_REG(hw, IXGBE_ROC); |
| 165 | IXGBE_READ_REG(hw, IXGBE_RJC); |
| 166 | IXGBE_READ_REG(hw, IXGBE_MNGPRC); |
| 167 | IXGBE_READ_REG(hw, IXGBE_MNGPDC); |
| 168 | IXGBE_READ_REG(hw, IXGBE_MNGPTC); |
| 169 | IXGBE_READ_REG(hw, IXGBE_TORL); |
| 170 | IXGBE_READ_REG(hw, IXGBE_TORH); |
| 171 | IXGBE_READ_REG(hw, IXGBE_TPR); |
| 172 | IXGBE_READ_REG(hw, IXGBE_TPT); |
| 173 | IXGBE_READ_REG(hw, IXGBE_PTC64); |
| 174 | IXGBE_READ_REG(hw, IXGBE_PTC127); |
| 175 | IXGBE_READ_REG(hw, IXGBE_PTC255); |
| 176 | IXGBE_READ_REG(hw, IXGBE_PTC511); |
| 177 | IXGBE_READ_REG(hw, IXGBE_PTC1023); |
| 178 | IXGBE_READ_REG(hw, IXGBE_PTC1522); |
| 179 | IXGBE_READ_REG(hw, IXGBE_MPTC); |
| 180 | IXGBE_READ_REG(hw, IXGBE_BPTC); |
| 181 | for (i = 0; i < 16; i++) { |
| 182 | IXGBE_READ_REG(hw, IXGBE_QPRC(i)); |
| 183 | IXGBE_READ_REG(hw, IXGBE_QBRC(i)); |
| 184 | IXGBE_READ_REG(hw, IXGBE_QPTC(i)); |
| 185 | IXGBE_READ_REG(hw, IXGBE_QBTC(i)); |
| 186 | } |
| 187 | |
| 188 | return 0; |
| 189 | } |
| 190 | |
| 191 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 192 | * ixgbe_read_pba_num_generic - Reads part number from EEPROM |
| 193 | * @hw: pointer to hardware structure |
| 194 | * @pba_num: stores the part number from the EEPROM |
| 195 | * |
| 196 | * Reads the part number from the EEPROM. |
| 197 | **/ |
| 198 | s32 ixgbe_read_pba_num_generic(struct ixgbe_hw *hw, u32 *pba_num) |
| 199 | { |
| 200 | s32 ret_val; |
| 201 | u16 data; |
| 202 | |
| 203 | ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data); |
| 204 | if (ret_val) { |
| 205 | hw_dbg(hw, "NVM Read Error\n"); |
| 206 | return ret_val; |
| 207 | } |
| 208 | *pba_num = (u32)(data << 16); |
| 209 | |
| 210 | ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &data); |
| 211 | if (ret_val) { |
| 212 | hw_dbg(hw, "NVM Read Error\n"); |
| 213 | return ret_val; |
| 214 | } |
| 215 | *pba_num |= data; |
| 216 | |
| 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * ixgbe_get_mac_addr_generic - Generic get MAC address |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 222 | * @hw: pointer to hardware structure |
| 223 | * @mac_addr: Adapter MAC address |
| 224 | * |
| 225 | * Reads the adapter's MAC address from first Receive Address Register (RAR0) |
| 226 | * A reset of the adapter must be performed prior to calling this function |
| 227 | * in order for the MAC address to have been loaded from the EEPROM into RAR0 |
| 228 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 229 | s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 230 | { |
| 231 | u32 rar_high; |
| 232 | u32 rar_low; |
| 233 | u16 i; |
| 234 | |
| 235 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0)); |
| 236 | rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0)); |
| 237 | |
| 238 | for (i = 0; i < 4; i++) |
| 239 | mac_addr[i] = (u8)(rar_low >> (i*8)); |
| 240 | |
| 241 | for (i = 0; i < 2; i++) |
| 242 | mac_addr[i+4] = (u8)(rar_high >> (i*8)); |
| 243 | |
| 244 | return 0; |
| 245 | } |
| 246 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 247 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 248 | * ixgbe_get_bus_info_generic - Generic set PCI bus info |
| 249 | * @hw: pointer to hardware structure |
| 250 | * |
| 251 | * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure |
| 252 | **/ |
| 253 | s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw) |
| 254 | { |
| 255 | struct ixgbe_adapter *adapter = hw->back; |
| 256 | struct ixgbe_mac_info *mac = &hw->mac; |
| 257 | u16 link_status; |
| 258 | |
| 259 | hw->bus.type = ixgbe_bus_type_pci_express; |
| 260 | |
| 261 | /* Get the negotiated link width and speed from PCI config space */ |
| 262 | pci_read_config_word(adapter->pdev, IXGBE_PCI_LINK_STATUS, |
| 263 | &link_status); |
| 264 | |
| 265 | switch (link_status & IXGBE_PCI_LINK_WIDTH) { |
| 266 | case IXGBE_PCI_LINK_WIDTH_1: |
| 267 | hw->bus.width = ixgbe_bus_width_pcie_x1; |
| 268 | break; |
| 269 | case IXGBE_PCI_LINK_WIDTH_2: |
| 270 | hw->bus.width = ixgbe_bus_width_pcie_x2; |
| 271 | break; |
| 272 | case IXGBE_PCI_LINK_WIDTH_4: |
| 273 | hw->bus.width = ixgbe_bus_width_pcie_x4; |
| 274 | break; |
| 275 | case IXGBE_PCI_LINK_WIDTH_8: |
| 276 | hw->bus.width = ixgbe_bus_width_pcie_x8; |
| 277 | break; |
| 278 | default: |
| 279 | hw->bus.width = ixgbe_bus_width_unknown; |
| 280 | break; |
| 281 | } |
| 282 | |
| 283 | switch (link_status & IXGBE_PCI_LINK_SPEED) { |
| 284 | case IXGBE_PCI_LINK_SPEED_2500: |
| 285 | hw->bus.speed = ixgbe_bus_speed_2500; |
| 286 | break; |
| 287 | case IXGBE_PCI_LINK_SPEED_5000: |
| 288 | hw->bus.speed = ixgbe_bus_speed_5000; |
| 289 | break; |
| 290 | default: |
| 291 | hw->bus.speed = ixgbe_bus_speed_unknown; |
| 292 | break; |
| 293 | } |
| 294 | |
| 295 | mac->ops.set_lan_id(hw); |
| 296 | |
| 297 | return 0; |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices |
| 302 | * @hw: pointer to the HW structure |
| 303 | * |
| 304 | * Determines the LAN function id by reading memory-mapped registers |
| 305 | * and swaps the port value if requested. |
| 306 | **/ |
| 307 | void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw) |
| 308 | { |
| 309 | struct ixgbe_bus_info *bus = &hw->bus; |
| 310 | u32 reg; |
| 311 | |
| 312 | reg = IXGBE_READ_REG(hw, IXGBE_STATUS); |
| 313 | bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT; |
| 314 | bus->lan_id = bus->func; |
| 315 | |
| 316 | /* check for a port swap */ |
| 317 | reg = IXGBE_READ_REG(hw, IXGBE_FACTPS); |
| 318 | if (reg & IXGBE_FACTPS_LFS) |
| 319 | bus->func ^= 0x1; |
| 320 | } |
| 321 | |
| 322 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 323 | * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 324 | * @hw: pointer to hardware structure |
| 325 | * |
| 326 | * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts, |
| 327 | * disables transmit and receive units. The adapter_stopped flag is used by |
| 328 | * the shared code and drivers to determine if the adapter is in a stopped |
| 329 | * state and should not touch the hardware. |
| 330 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 331 | s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 332 | { |
| 333 | u32 number_of_queues; |
| 334 | u32 reg_val; |
| 335 | u16 i; |
| 336 | |
| 337 | /* |
| 338 | * Set the adapter_stopped flag so other driver functions stop touching |
| 339 | * the hardware |
| 340 | */ |
| 341 | hw->adapter_stopped = true; |
| 342 | |
| 343 | /* Disable the receive unit */ |
| 344 | reg_val = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 345 | reg_val &= ~(IXGBE_RXCTRL_RXEN); |
| 346 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, reg_val); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 347 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 348 | msleep(2); |
| 349 | |
| 350 | /* Clear interrupt mask to stop from interrupts being generated */ |
| 351 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK); |
| 352 | |
| 353 | /* Clear any pending interrupts */ |
| 354 | IXGBE_READ_REG(hw, IXGBE_EICR); |
| 355 | |
| 356 | /* Disable the transmit unit. Each queue must be disabled. */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 357 | number_of_queues = hw->mac.max_tx_queues; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 358 | for (i = 0; i < number_of_queues; i++) { |
| 359 | reg_val = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i)); |
| 360 | if (reg_val & IXGBE_TXDCTL_ENABLE) { |
| 361 | reg_val &= ~IXGBE_TXDCTL_ENABLE; |
| 362 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), reg_val); |
| 363 | } |
| 364 | } |
| 365 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 366 | /* |
| 367 | * Prevent the PCI-E bus from from hanging by disabling PCI-E master |
| 368 | * access and verify no pending requests |
| 369 | */ |
| 370 | if (ixgbe_disable_pcie_master(hw) != 0) |
| 371 | hw_dbg(hw, "PCI-E Master disable polling has failed.\n"); |
| 372 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 373 | return 0; |
| 374 | } |
| 375 | |
| 376 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 377 | * ixgbe_led_on_generic - Turns on the software controllable LEDs. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 378 | * @hw: pointer to hardware structure |
| 379 | * @index: led number to turn on |
| 380 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 381 | s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 382 | { |
| 383 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 384 | |
| 385 | /* To turn on the LED, set mode to ON. */ |
| 386 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 387 | led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index); |
| 388 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 389 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 390 | |
| 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 395 | * ixgbe_led_off_generic - Turns off the software controllable LEDs. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 396 | * @hw: pointer to hardware structure |
| 397 | * @index: led number to turn off |
| 398 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 399 | s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 400 | { |
| 401 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 402 | |
| 403 | /* To turn off the LED, set mode to OFF. */ |
| 404 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 405 | led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index); |
| 406 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 407 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 412 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 413 | * ixgbe_init_eeprom_params_generic - Initialize EEPROM params |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 414 | * @hw: pointer to hardware structure |
| 415 | * |
| 416 | * Initializes the EEPROM parameters ixgbe_eeprom_info within the |
| 417 | * ixgbe_hw struct in order to set up EEPROM access. |
| 418 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 419 | s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 420 | { |
| 421 | struct ixgbe_eeprom_info *eeprom = &hw->eeprom; |
| 422 | u32 eec; |
| 423 | u16 eeprom_size; |
| 424 | |
| 425 | if (eeprom->type == ixgbe_eeprom_uninitialized) { |
| 426 | eeprom->type = ixgbe_eeprom_none; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 427 | /* Set default semaphore delay to 10ms which is a well |
| 428 | * tested value */ |
| 429 | eeprom->semaphore_delay = 10; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 430 | |
| 431 | /* |
| 432 | * Check for EEPROM present first. |
| 433 | * If not present leave as none |
| 434 | */ |
| 435 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 436 | if (eec & IXGBE_EEC_PRES) { |
| 437 | eeprom->type = ixgbe_eeprom_spi; |
| 438 | |
| 439 | /* |
| 440 | * SPI EEPROM is assumed here. This code would need to |
| 441 | * change if a future EEPROM is not SPI. |
| 442 | */ |
| 443 | eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >> |
| 444 | IXGBE_EEC_SIZE_SHIFT); |
| 445 | eeprom->word_size = 1 << (eeprom_size + |
| 446 | IXGBE_EEPROM_WORD_SIZE_SHIFT); |
| 447 | } |
| 448 | |
| 449 | if (eec & IXGBE_EEC_ADDR_SIZE) |
| 450 | eeprom->address_bits = 16; |
| 451 | else |
| 452 | eeprom->address_bits = 8; |
| 453 | hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: " |
| 454 | "%d\n", eeprom->type, eeprom->word_size, |
| 455 | eeprom->address_bits); |
| 456 | } |
| 457 | |
| 458 | return 0; |
| 459 | } |
| 460 | |
| 461 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 462 | * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM |
| 463 | * @hw: pointer to hardware structure |
| 464 | * @offset: offset within the EEPROM to be written to |
| 465 | * @data: 16 bit word to be written to the EEPROM |
| 466 | * |
| 467 | * If ixgbe_eeprom_update_checksum is not called after this function, the |
| 468 | * EEPROM will most likely contain an invalid checksum. |
| 469 | **/ |
| 470 | s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data) |
| 471 | { |
| 472 | s32 status; |
| 473 | u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI; |
| 474 | |
| 475 | hw->eeprom.ops.init_params(hw); |
| 476 | |
| 477 | if (offset >= hw->eeprom.word_size) { |
| 478 | status = IXGBE_ERR_EEPROM; |
| 479 | goto out; |
| 480 | } |
| 481 | |
| 482 | /* Prepare the EEPROM for writing */ |
| 483 | status = ixgbe_acquire_eeprom(hw); |
| 484 | |
| 485 | if (status == 0) { |
| 486 | if (ixgbe_ready_eeprom(hw) != 0) { |
| 487 | ixgbe_release_eeprom(hw); |
| 488 | status = IXGBE_ERR_EEPROM; |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | if (status == 0) { |
| 493 | ixgbe_standby_eeprom(hw); |
| 494 | |
| 495 | /* Send the WRITE ENABLE command (8 bit opcode ) */ |
| 496 | ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_WREN_OPCODE_SPI, |
| 497 | IXGBE_EEPROM_OPCODE_BITS); |
| 498 | |
| 499 | ixgbe_standby_eeprom(hw); |
| 500 | |
| 501 | /* |
| 502 | * Some SPI eeproms use the 8th address bit embedded in the |
| 503 | * opcode |
| 504 | */ |
| 505 | if ((hw->eeprom.address_bits == 8) && (offset >= 128)) |
| 506 | write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI; |
| 507 | |
| 508 | /* Send the Write command (8-bit opcode + addr) */ |
| 509 | ixgbe_shift_out_eeprom_bits(hw, write_opcode, |
| 510 | IXGBE_EEPROM_OPCODE_BITS); |
| 511 | ixgbe_shift_out_eeprom_bits(hw, (u16)(offset*2), |
| 512 | hw->eeprom.address_bits); |
| 513 | |
| 514 | /* Send the data */ |
| 515 | data = (data >> 8) | (data << 8); |
| 516 | ixgbe_shift_out_eeprom_bits(hw, data, 16); |
| 517 | ixgbe_standby_eeprom(hw); |
| 518 | |
| 519 | msleep(hw->eeprom.semaphore_delay); |
| 520 | /* Done with writing - release the EEPROM */ |
| 521 | ixgbe_release_eeprom(hw); |
| 522 | } |
| 523 | |
| 524 | out: |
| 525 | return status; |
| 526 | } |
| 527 | |
| 528 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 529 | * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang |
| 530 | * @hw: pointer to hardware structure |
| 531 | * @offset: offset within the EEPROM to be read |
| 532 | * @data: read 16 bit value from EEPROM |
| 533 | * |
| 534 | * Reads 16 bit value from EEPROM through bit-bang method |
| 535 | **/ |
| 536 | s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset, |
| 537 | u16 *data) |
| 538 | { |
| 539 | s32 status; |
| 540 | u16 word_in; |
| 541 | u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI; |
| 542 | |
| 543 | hw->eeprom.ops.init_params(hw); |
| 544 | |
| 545 | if (offset >= hw->eeprom.word_size) { |
| 546 | status = IXGBE_ERR_EEPROM; |
| 547 | goto out; |
| 548 | } |
| 549 | |
| 550 | /* Prepare the EEPROM for reading */ |
| 551 | status = ixgbe_acquire_eeprom(hw); |
| 552 | |
| 553 | if (status == 0) { |
| 554 | if (ixgbe_ready_eeprom(hw) != 0) { |
| 555 | ixgbe_release_eeprom(hw); |
| 556 | status = IXGBE_ERR_EEPROM; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | if (status == 0) { |
| 561 | ixgbe_standby_eeprom(hw); |
| 562 | |
| 563 | /* |
| 564 | * Some SPI eeproms use the 8th address bit embedded in the |
| 565 | * opcode |
| 566 | */ |
| 567 | if ((hw->eeprom.address_bits == 8) && (offset >= 128)) |
| 568 | read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI; |
| 569 | |
| 570 | /* Send the READ command (opcode + addr) */ |
| 571 | ixgbe_shift_out_eeprom_bits(hw, read_opcode, |
| 572 | IXGBE_EEPROM_OPCODE_BITS); |
| 573 | ixgbe_shift_out_eeprom_bits(hw, (u16)(offset*2), |
| 574 | hw->eeprom.address_bits); |
| 575 | |
| 576 | /* Read the data. */ |
| 577 | word_in = ixgbe_shift_in_eeprom_bits(hw, 16); |
| 578 | *data = (word_in >> 8) | (word_in << 8); |
| 579 | |
| 580 | /* End this read operation */ |
| 581 | ixgbe_release_eeprom(hw); |
| 582 | } |
| 583 | |
| 584 | out: |
| 585 | return status; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * ixgbe_read_eeprom_generic - Read EEPROM word using EERD |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 590 | * @hw: pointer to hardware structure |
| 591 | * @offset: offset of word in the EEPROM to read |
| 592 | * @data: word read from the EEPROM |
| 593 | * |
| 594 | * Reads a 16 bit word from the EEPROM using the EERD register. |
| 595 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 596 | s32 ixgbe_read_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 597 | { |
| 598 | u32 eerd; |
| 599 | s32 status; |
| 600 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 601 | hw->eeprom.ops.init_params(hw); |
| 602 | |
| 603 | if (offset >= hw->eeprom.word_size) { |
| 604 | status = IXGBE_ERR_EEPROM; |
| 605 | goto out; |
| 606 | } |
| 607 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 608 | eerd = (offset << IXGBE_EEPROM_READ_ADDR_SHIFT) + |
| 609 | IXGBE_EEPROM_READ_REG_START; |
| 610 | |
| 611 | IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd); |
| 612 | status = ixgbe_poll_eeprom_eerd_done(hw); |
| 613 | |
| 614 | if (status == 0) |
| 615 | *data = (IXGBE_READ_REG(hw, IXGBE_EERD) >> |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 616 | IXGBE_EEPROM_READ_REG_DATA); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 617 | else |
| 618 | hw_dbg(hw, "Eeprom read timed out\n"); |
| 619 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 620 | out: |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 621 | return status; |
| 622 | } |
| 623 | |
| 624 | /** |
| 625 | * ixgbe_poll_eeprom_eerd_done - Poll EERD status |
| 626 | * @hw: pointer to hardware structure |
| 627 | * |
| 628 | * Polls the status bit (bit 1) of the EERD to determine when the read is done. |
| 629 | **/ |
| 630 | static s32 ixgbe_poll_eeprom_eerd_done(struct ixgbe_hw *hw) |
| 631 | { |
| 632 | u32 i; |
| 633 | u32 reg; |
| 634 | s32 status = IXGBE_ERR_EEPROM; |
| 635 | |
| 636 | for (i = 0; i < IXGBE_EERD_ATTEMPTS; i++) { |
| 637 | reg = IXGBE_READ_REG(hw, IXGBE_EERD); |
| 638 | if (reg & IXGBE_EEPROM_READ_REG_DONE) { |
| 639 | status = 0; |
| 640 | break; |
| 641 | } |
| 642 | udelay(5); |
| 643 | } |
| 644 | return status; |
| 645 | } |
| 646 | |
| 647 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 648 | * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang |
| 649 | * @hw: pointer to hardware structure |
| 650 | * |
| 651 | * Prepares EEPROM for access using bit-bang method. This function should |
| 652 | * be called before issuing a command to the EEPROM. |
| 653 | **/ |
| 654 | static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw) |
| 655 | { |
| 656 | s32 status = 0; |
David S. Miller | fc1f209 | 2009-03-01 20:32:39 -0800 | [diff] [blame] | 657 | u32 eec = 0; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 658 | u32 i; |
| 659 | |
| 660 | if (ixgbe_acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0) |
| 661 | status = IXGBE_ERR_SWFW_SYNC; |
| 662 | |
| 663 | if (status == 0) { |
| 664 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 665 | |
| 666 | /* Request EEPROM Access */ |
| 667 | eec |= IXGBE_EEC_REQ; |
| 668 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 669 | |
| 670 | for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) { |
| 671 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 672 | if (eec & IXGBE_EEC_GNT) |
| 673 | break; |
| 674 | udelay(5); |
| 675 | } |
| 676 | |
| 677 | /* Release if grant not acquired */ |
| 678 | if (!(eec & IXGBE_EEC_GNT)) { |
| 679 | eec &= ~IXGBE_EEC_REQ; |
| 680 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 681 | hw_dbg(hw, "Could not acquire EEPROM grant\n"); |
| 682 | |
| 683 | ixgbe_release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); |
| 684 | status = IXGBE_ERR_EEPROM; |
| 685 | } |
| 686 | } |
| 687 | |
| 688 | /* Setup EEPROM for Read/Write */ |
| 689 | if (status == 0) { |
| 690 | /* Clear CS and SK */ |
| 691 | eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK); |
| 692 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 693 | IXGBE_WRITE_FLUSH(hw); |
| 694 | udelay(1); |
| 695 | } |
| 696 | return status; |
| 697 | } |
| 698 | |
| 699 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 700 | * ixgbe_get_eeprom_semaphore - Get hardware semaphore |
| 701 | * @hw: pointer to hardware structure |
| 702 | * |
| 703 | * Sets the hardware semaphores so EEPROM access can occur for bit-bang method |
| 704 | **/ |
| 705 | static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw) |
| 706 | { |
| 707 | s32 status = IXGBE_ERR_EEPROM; |
| 708 | u32 timeout; |
| 709 | u32 i; |
| 710 | u32 swsm; |
| 711 | |
| 712 | /* Set timeout value based on size of EEPROM */ |
| 713 | timeout = hw->eeprom.word_size + 1; |
| 714 | |
| 715 | /* Get SMBI software semaphore between device drivers first */ |
| 716 | for (i = 0; i < timeout; i++) { |
| 717 | /* |
| 718 | * If the SMBI bit is 0 when we read it, then the bit will be |
| 719 | * set and we have the semaphore |
| 720 | */ |
| 721 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM); |
| 722 | if (!(swsm & IXGBE_SWSM_SMBI)) { |
| 723 | status = 0; |
| 724 | break; |
| 725 | } |
| 726 | msleep(1); |
| 727 | } |
| 728 | |
| 729 | /* Now get the semaphore between SW/FW through the SWESMBI bit */ |
| 730 | if (status == 0) { |
| 731 | for (i = 0; i < timeout; i++) { |
| 732 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM); |
| 733 | |
| 734 | /* Set the SW EEPROM semaphore bit to request access */ |
| 735 | swsm |= IXGBE_SWSM_SWESMBI; |
| 736 | IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm); |
| 737 | |
| 738 | /* |
| 739 | * If we set the bit successfully then we got the |
| 740 | * semaphore. |
| 741 | */ |
| 742 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM); |
| 743 | if (swsm & IXGBE_SWSM_SWESMBI) |
| 744 | break; |
| 745 | |
| 746 | udelay(50); |
| 747 | } |
| 748 | |
| 749 | /* |
| 750 | * Release semaphores and return error if SW EEPROM semaphore |
| 751 | * was not granted because we don't have access to the EEPROM |
| 752 | */ |
| 753 | if (i >= timeout) { |
| 754 | hw_dbg(hw, "Driver can't access the Eeprom - Semaphore " |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 755 | "not granted.\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 756 | ixgbe_release_eeprom_semaphore(hw); |
| 757 | status = IXGBE_ERR_EEPROM; |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | return status; |
| 762 | } |
| 763 | |
| 764 | /** |
| 765 | * ixgbe_release_eeprom_semaphore - Release hardware semaphore |
| 766 | * @hw: pointer to hardware structure |
| 767 | * |
| 768 | * This function clears hardware semaphore bits. |
| 769 | **/ |
| 770 | static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw) |
| 771 | { |
| 772 | u32 swsm; |
| 773 | |
| 774 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM); |
| 775 | |
| 776 | /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */ |
| 777 | swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI); |
| 778 | IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 779 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 783 | * ixgbe_ready_eeprom - Polls for EEPROM ready |
| 784 | * @hw: pointer to hardware structure |
| 785 | **/ |
| 786 | static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw) |
| 787 | { |
| 788 | s32 status = 0; |
| 789 | u16 i; |
| 790 | u8 spi_stat_reg; |
| 791 | |
| 792 | /* |
| 793 | * Read "Status Register" repeatedly until the LSB is cleared. The |
| 794 | * EEPROM will signal that the command has been completed by clearing |
| 795 | * bit 0 of the internal status register. If it's not cleared within |
| 796 | * 5 milliseconds, then error out. |
| 797 | */ |
| 798 | for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) { |
| 799 | ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI, |
| 800 | IXGBE_EEPROM_OPCODE_BITS); |
| 801 | spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8); |
| 802 | if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI)) |
| 803 | break; |
| 804 | |
| 805 | udelay(5); |
| 806 | ixgbe_standby_eeprom(hw); |
| 807 | }; |
| 808 | |
| 809 | /* |
| 810 | * On some parts, SPI write time could vary from 0-20mSec on 3.3V |
| 811 | * devices (and only 0-5mSec on 5V devices) |
| 812 | */ |
| 813 | if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) { |
| 814 | hw_dbg(hw, "SPI EEPROM Status error\n"); |
| 815 | status = IXGBE_ERR_EEPROM; |
| 816 | } |
| 817 | |
| 818 | return status; |
| 819 | } |
| 820 | |
| 821 | /** |
| 822 | * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state |
| 823 | * @hw: pointer to hardware structure |
| 824 | **/ |
| 825 | static void ixgbe_standby_eeprom(struct ixgbe_hw *hw) |
| 826 | { |
| 827 | u32 eec; |
| 828 | |
| 829 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 830 | |
| 831 | /* Toggle CS to flush commands */ |
| 832 | eec |= IXGBE_EEC_CS; |
| 833 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 834 | IXGBE_WRITE_FLUSH(hw); |
| 835 | udelay(1); |
| 836 | eec &= ~IXGBE_EEC_CS; |
| 837 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 838 | IXGBE_WRITE_FLUSH(hw); |
| 839 | udelay(1); |
| 840 | } |
| 841 | |
| 842 | /** |
| 843 | * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM. |
| 844 | * @hw: pointer to hardware structure |
| 845 | * @data: data to send to the EEPROM |
| 846 | * @count: number of bits to shift out |
| 847 | **/ |
| 848 | static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data, |
| 849 | u16 count) |
| 850 | { |
| 851 | u32 eec; |
| 852 | u32 mask; |
| 853 | u32 i; |
| 854 | |
| 855 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 856 | |
| 857 | /* |
| 858 | * Mask is used to shift "count" bits of "data" out to the EEPROM |
| 859 | * one bit at a time. Determine the starting bit based on count |
| 860 | */ |
| 861 | mask = 0x01 << (count - 1); |
| 862 | |
| 863 | for (i = 0; i < count; i++) { |
| 864 | /* |
| 865 | * A "1" is shifted out to the EEPROM by setting bit "DI" to a |
| 866 | * "1", and then raising and then lowering the clock (the SK |
| 867 | * bit controls the clock input to the EEPROM). A "0" is |
| 868 | * shifted out to the EEPROM by setting "DI" to "0" and then |
| 869 | * raising and then lowering the clock. |
| 870 | */ |
| 871 | if (data & mask) |
| 872 | eec |= IXGBE_EEC_DI; |
| 873 | else |
| 874 | eec &= ~IXGBE_EEC_DI; |
| 875 | |
| 876 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 877 | IXGBE_WRITE_FLUSH(hw); |
| 878 | |
| 879 | udelay(1); |
| 880 | |
| 881 | ixgbe_raise_eeprom_clk(hw, &eec); |
| 882 | ixgbe_lower_eeprom_clk(hw, &eec); |
| 883 | |
| 884 | /* |
| 885 | * Shift mask to signify next bit of data to shift in to the |
| 886 | * EEPROM |
| 887 | */ |
| 888 | mask = mask >> 1; |
| 889 | }; |
| 890 | |
| 891 | /* We leave the "DI" bit set to "0" when we leave this routine. */ |
| 892 | eec &= ~IXGBE_EEC_DI; |
| 893 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 894 | IXGBE_WRITE_FLUSH(hw); |
| 895 | } |
| 896 | |
| 897 | /** |
| 898 | * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM |
| 899 | * @hw: pointer to hardware structure |
| 900 | **/ |
| 901 | static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count) |
| 902 | { |
| 903 | u32 eec; |
| 904 | u32 i; |
| 905 | u16 data = 0; |
| 906 | |
| 907 | /* |
| 908 | * In order to read a register from the EEPROM, we need to shift |
| 909 | * 'count' bits in from the EEPROM. Bits are "shifted in" by raising |
| 910 | * the clock input to the EEPROM (setting the SK bit), and then reading |
| 911 | * the value of the "DO" bit. During this "shifting in" process the |
| 912 | * "DI" bit should always be clear. |
| 913 | */ |
| 914 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 915 | |
| 916 | eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI); |
| 917 | |
| 918 | for (i = 0; i < count; i++) { |
| 919 | data = data << 1; |
| 920 | ixgbe_raise_eeprom_clk(hw, &eec); |
| 921 | |
| 922 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 923 | |
| 924 | eec &= ~(IXGBE_EEC_DI); |
| 925 | if (eec & IXGBE_EEC_DO) |
| 926 | data |= 1; |
| 927 | |
| 928 | ixgbe_lower_eeprom_clk(hw, &eec); |
| 929 | } |
| 930 | |
| 931 | return data; |
| 932 | } |
| 933 | |
| 934 | /** |
| 935 | * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input. |
| 936 | * @hw: pointer to hardware structure |
| 937 | * @eec: EEC register's current value |
| 938 | **/ |
| 939 | static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec) |
| 940 | { |
| 941 | /* |
| 942 | * Raise the clock input to the EEPROM |
| 943 | * (setting the SK bit), then delay |
| 944 | */ |
| 945 | *eec = *eec | IXGBE_EEC_SK; |
| 946 | IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec); |
| 947 | IXGBE_WRITE_FLUSH(hw); |
| 948 | udelay(1); |
| 949 | } |
| 950 | |
| 951 | /** |
| 952 | * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input. |
| 953 | * @hw: pointer to hardware structure |
| 954 | * @eecd: EECD's current value |
| 955 | **/ |
| 956 | static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec) |
| 957 | { |
| 958 | /* |
| 959 | * Lower the clock input to the EEPROM (clearing the SK bit), then |
| 960 | * delay |
| 961 | */ |
| 962 | *eec = *eec & ~IXGBE_EEC_SK; |
| 963 | IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec); |
| 964 | IXGBE_WRITE_FLUSH(hw); |
| 965 | udelay(1); |
| 966 | } |
| 967 | |
| 968 | /** |
| 969 | * ixgbe_release_eeprom - Release EEPROM, release semaphores |
| 970 | * @hw: pointer to hardware structure |
| 971 | **/ |
| 972 | static void ixgbe_release_eeprom(struct ixgbe_hw *hw) |
| 973 | { |
| 974 | u32 eec; |
| 975 | |
| 976 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 977 | |
| 978 | eec |= IXGBE_EEC_CS; /* Pull CS high */ |
| 979 | eec &= ~IXGBE_EEC_SK; /* Lower SCK */ |
| 980 | |
| 981 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 982 | IXGBE_WRITE_FLUSH(hw); |
| 983 | |
| 984 | udelay(1); |
| 985 | |
| 986 | /* Stop requesting EEPROM access */ |
| 987 | eec &= ~IXGBE_EEC_REQ; |
| 988 | IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); |
| 989 | |
| 990 | ixgbe_release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); |
| 991 | } |
| 992 | |
| 993 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 994 | * ixgbe_calc_eeprom_checksum - Calculates and returns the checksum |
| 995 | * @hw: pointer to hardware structure |
| 996 | **/ |
| 997 | static u16 ixgbe_calc_eeprom_checksum(struct ixgbe_hw *hw) |
| 998 | { |
| 999 | u16 i; |
| 1000 | u16 j; |
| 1001 | u16 checksum = 0; |
| 1002 | u16 length = 0; |
| 1003 | u16 pointer = 0; |
| 1004 | u16 word = 0; |
| 1005 | |
| 1006 | /* Include 0x0-0x3F in the checksum */ |
| 1007 | for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1008 | if (hw->eeprom.ops.read(hw, i, &word) != 0) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1009 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1010 | break; |
| 1011 | } |
| 1012 | checksum += word; |
| 1013 | } |
| 1014 | |
| 1015 | /* Include all data from pointers except for the fw pointer */ |
| 1016 | for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1017 | hw->eeprom.ops.read(hw, i, &pointer); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1018 | |
| 1019 | /* Make sure the pointer seems valid */ |
| 1020 | if (pointer != 0xFFFF && pointer != 0) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1021 | hw->eeprom.ops.read(hw, pointer, &length); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1022 | |
| 1023 | if (length != 0xFFFF && length != 0) { |
| 1024 | for (j = pointer+1; j <= pointer+length; j++) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1025 | hw->eeprom.ops.read(hw, j, &word); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1026 | checksum += word; |
| 1027 | } |
| 1028 | } |
| 1029 | } |
| 1030 | } |
| 1031 | |
| 1032 | checksum = (u16)IXGBE_EEPROM_SUM - checksum; |
| 1033 | |
| 1034 | return checksum; |
| 1035 | } |
| 1036 | |
| 1037 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1038 | * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1039 | * @hw: pointer to hardware structure |
| 1040 | * @checksum_val: calculated checksum |
| 1041 | * |
| 1042 | * Performs checksum calculation and validates the EEPROM checksum. If the |
| 1043 | * caller does not need checksum_val, the value can be NULL. |
| 1044 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1045 | s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw, |
| 1046 | u16 *checksum_val) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1047 | { |
| 1048 | s32 status; |
| 1049 | u16 checksum; |
| 1050 | u16 read_checksum = 0; |
| 1051 | |
| 1052 | /* |
| 1053 | * Read the first word from the EEPROM. If this times out or fails, do |
| 1054 | * not continue or we could be in for a very long wait while every |
| 1055 | * EEPROM read fails |
| 1056 | */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1057 | status = hw->eeprom.ops.read(hw, 0, &checksum); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1058 | |
| 1059 | if (status == 0) { |
| 1060 | checksum = ixgbe_calc_eeprom_checksum(hw); |
| 1061 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1062 | hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1063 | |
| 1064 | /* |
| 1065 | * Verify read checksum from EEPROM is the same as |
| 1066 | * calculated checksum |
| 1067 | */ |
| 1068 | if (read_checksum != checksum) |
| 1069 | status = IXGBE_ERR_EEPROM_CHECKSUM; |
| 1070 | |
| 1071 | /* If the user cares, return the calculated checksum */ |
| 1072 | if (checksum_val) |
| 1073 | *checksum_val = checksum; |
| 1074 | } else { |
| 1075 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1076 | } |
| 1077 | |
| 1078 | return status; |
| 1079 | } |
| 1080 | |
| 1081 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1082 | * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum |
| 1083 | * @hw: pointer to hardware structure |
| 1084 | **/ |
| 1085 | s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw) |
| 1086 | { |
| 1087 | s32 status; |
| 1088 | u16 checksum; |
| 1089 | |
| 1090 | /* |
| 1091 | * Read the first word from the EEPROM. If this times out or fails, do |
| 1092 | * not continue or we could be in for a very long wait while every |
| 1093 | * EEPROM read fails |
| 1094 | */ |
| 1095 | status = hw->eeprom.ops.read(hw, 0, &checksum); |
| 1096 | |
| 1097 | if (status == 0) { |
| 1098 | checksum = ixgbe_calc_eeprom_checksum(hw); |
| 1099 | status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM, |
| 1100 | checksum); |
| 1101 | } else { |
| 1102 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1103 | } |
| 1104 | |
| 1105 | return status; |
| 1106 | } |
| 1107 | |
| 1108 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1109 | * ixgbe_validate_mac_addr - Validate MAC address |
| 1110 | * @mac_addr: pointer to MAC address. |
| 1111 | * |
| 1112 | * Tests a MAC address to ensure it is a valid Individual Address |
| 1113 | **/ |
| 1114 | s32 ixgbe_validate_mac_addr(u8 *mac_addr) |
| 1115 | { |
| 1116 | s32 status = 0; |
| 1117 | |
| 1118 | /* Make sure it is not a multicast address */ |
| 1119 | if (IXGBE_IS_MULTICAST(mac_addr)) |
| 1120 | status = IXGBE_ERR_INVALID_MAC_ADDR; |
| 1121 | /* Not a broadcast address */ |
| 1122 | else if (IXGBE_IS_BROADCAST(mac_addr)) |
| 1123 | status = IXGBE_ERR_INVALID_MAC_ADDR; |
| 1124 | /* Reject the zero address */ |
| 1125 | else if (mac_addr[0] == 0 && mac_addr[1] == 0 && mac_addr[2] == 0 && |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1126 | mac_addr[3] == 0 && mac_addr[4] == 0 && mac_addr[5] == 0) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1127 | status = IXGBE_ERR_INVALID_MAC_ADDR; |
| 1128 | |
| 1129 | return status; |
| 1130 | } |
| 1131 | |
| 1132 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1133 | * ixgbe_set_rar_generic - Set Rx address register |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1134 | * @hw: pointer to hardware structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1135 | * @index: Receive address register to write |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1136 | * @addr: Address to put into receive address register |
| 1137 | * @vmdq: VMDq "set" or "pool" index |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1138 | * @enable_addr: set flag that address is active |
| 1139 | * |
| 1140 | * Puts an ethernet address into a receive address register. |
| 1141 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1142 | s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq, |
| 1143 | u32 enable_addr) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1144 | { |
| 1145 | u32 rar_low, rar_high; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1146 | u32 rar_entries = hw->mac.num_rar_entries; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1147 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1148 | /* setup VMDq pool selection before this RAR gets enabled */ |
| 1149 | hw->mac.ops.set_vmdq(hw, index, vmdq); |
| 1150 | |
| 1151 | /* Make sure we are using a valid rar index range */ |
| 1152 | if (index < rar_entries) { |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1153 | /* |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1154 | * HW expects these in little endian so we reverse the byte |
| 1155 | * order from network order (big endian) to little endian |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1156 | */ |
| 1157 | rar_low = ((u32)addr[0] | |
| 1158 | ((u32)addr[1] << 8) | |
| 1159 | ((u32)addr[2] << 16) | |
| 1160 | ((u32)addr[3] << 24)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1161 | /* |
| 1162 | * Some parts put the VMDq setting in the extra RAH bits, |
| 1163 | * so save everything except the lower 16 bits that hold part |
| 1164 | * of the address and the address valid bit. |
| 1165 | */ |
| 1166 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index)); |
| 1167 | rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV); |
| 1168 | rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1169 | |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1170 | if (enable_addr != 0) |
| 1171 | rar_high |= IXGBE_RAH_AV; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1172 | |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1173 | IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low); |
| 1174 | IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1175 | } else { |
| 1176 | hw_dbg(hw, "RAR index %d is out of range.\n", index); |
| 1177 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1178 | |
| 1179 | return 0; |
| 1180 | } |
| 1181 | |
| 1182 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1183 | * ixgbe_clear_rar_generic - Remove Rx address register |
| 1184 | * @hw: pointer to hardware structure |
| 1185 | * @index: Receive address register to write |
| 1186 | * |
| 1187 | * Clears an ethernet address from a receive address register. |
| 1188 | **/ |
| 1189 | s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index) |
| 1190 | { |
| 1191 | u32 rar_high; |
| 1192 | u32 rar_entries = hw->mac.num_rar_entries; |
| 1193 | |
| 1194 | /* Make sure we are using a valid rar index range */ |
| 1195 | if (index < rar_entries) { |
| 1196 | /* |
| 1197 | * Some parts put the VMDq setting in the extra RAH bits, |
| 1198 | * so save everything except the lower 16 bits that hold part |
| 1199 | * of the address and the address valid bit. |
| 1200 | */ |
| 1201 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index)); |
| 1202 | rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV); |
| 1203 | |
| 1204 | IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0); |
| 1205 | IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high); |
| 1206 | } else { |
| 1207 | hw_dbg(hw, "RAR index %d is out of range.\n", index); |
| 1208 | } |
| 1209 | |
| 1210 | /* clear VMDq pool/queue selection for this RAR */ |
| 1211 | hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL); |
| 1212 | |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | /** |
| 1217 | * ixgbe_enable_rar - Enable Rx address register |
| 1218 | * @hw: pointer to hardware structure |
| 1219 | * @index: index into the RAR table |
| 1220 | * |
| 1221 | * Enables the select receive address register. |
| 1222 | **/ |
| 1223 | static void ixgbe_enable_rar(struct ixgbe_hw *hw, u32 index) |
| 1224 | { |
| 1225 | u32 rar_high; |
| 1226 | |
| 1227 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index)); |
| 1228 | rar_high |= IXGBE_RAH_AV; |
| 1229 | IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high); |
| 1230 | } |
| 1231 | |
| 1232 | /** |
| 1233 | * ixgbe_disable_rar - Disable Rx address register |
| 1234 | * @hw: pointer to hardware structure |
| 1235 | * @index: index into the RAR table |
| 1236 | * |
| 1237 | * Disables the select receive address register. |
| 1238 | **/ |
| 1239 | static void ixgbe_disable_rar(struct ixgbe_hw *hw, u32 index) |
| 1240 | { |
| 1241 | u32 rar_high; |
| 1242 | |
| 1243 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index)); |
| 1244 | rar_high &= (~IXGBE_RAH_AV); |
| 1245 | IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high); |
| 1246 | } |
| 1247 | |
| 1248 | /** |
| 1249 | * ixgbe_init_rx_addrs_generic - Initializes receive address filters. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1250 | * @hw: pointer to hardware structure |
| 1251 | * |
| 1252 | * Places the MAC address in receive address register 0 and clears the rest |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1253 | * of the receive address registers. Clears the multicast table. Assumes |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1254 | * the receiver is in reset when the routine is called. |
| 1255 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1256 | s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1257 | { |
| 1258 | u32 i; |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1259 | u32 rar_entries = hw->mac.num_rar_entries; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1260 | |
| 1261 | /* |
| 1262 | * If the current mac address is valid, assume it is a software override |
| 1263 | * to the permanent address. |
| 1264 | * Otherwise, use the permanent address from the eeprom. |
| 1265 | */ |
| 1266 | if (ixgbe_validate_mac_addr(hw->mac.addr) == |
| 1267 | IXGBE_ERR_INVALID_MAC_ADDR) { |
| 1268 | /* Get the MAC address from the RAR0 for later reference */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1269 | hw->mac.ops.get_mac_addr(hw, hw->mac.addr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1270 | |
| 1271 | hw_dbg(hw, " Keeping Current RAR0 Addr =%.2X %.2X %.2X ", |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1272 | hw->mac.addr[0], hw->mac.addr[1], |
| 1273 | hw->mac.addr[2]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1274 | hw_dbg(hw, "%.2X %.2X %.2X\n", hw->mac.addr[3], |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1275 | hw->mac.addr[4], hw->mac.addr[5]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1276 | } else { |
| 1277 | /* Setup the receive address. */ |
| 1278 | hw_dbg(hw, "Overriding MAC Address in RAR[0]\n"); |
| 1279 | hw_dbg(hw, " New MAC Addr =%.2X %.2X %.2X ", |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1280 | hw->mac.addr[0], hw->mac.addr[1], |
| 1281 | hw->mac.addr[2]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1282 | hw_dbg(hw, "%.2X %.2X %.2X\n", hw->mac.addr[3], |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1283 | hw->mac.addr[4], hw->mac.addr[5]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1284 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1285 | hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1286 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1287 | hw->addr_ctrl.overflow_promisc = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1288 | |
| 1289 | hw->addr_ctrl.rar_used_count = 1; |
| 1290 | |
| 1291 | /* Zero out the other receive addresses. */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1292 | hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1293 | for (i = 1; i < rar_entries; i++) { |
| 1294 | IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0); |
| 1295 | IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0); |
| 1296 | } |
| 1297 | |
| 1298 | /* Clear the MTA */ |
| 1299 | hw->addr_ctrl.mc_addr_in_rar_count = 0; |
| 1300 | hw->addr_ctrl.mta_in_use = 0; |
| 1301 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type); |
| 1302 | |
| 1303 | hw_dbg(hw, " Clearing MTA\n"); |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1304 | for (i = 0; i < hw->mac.mcft_size; i++) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1305 | IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0); |
| 1306 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1307 | if (hw->mac.ops.init_uta_tables) |
| 1308 | hw->mac.ops.init_uta_tables(hw); |
| 1309 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1310 | return 0; |
| 1311 | } |
| 1312 | |
| 1313 | /** |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1314 | * ixgbe_add_uc_addr - Adds a secondary unicast address. |
| 1315 | * @hw: pointer to hardware structure |
| 1316 | * @addr: new address |
| 1317 | * |
| 1318 | * Adds it to unused receive address register or goes into promiscuous mode. |
| 1319 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1320 | static void ixgbe_add_uc_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq) |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1321 | { |
| 1322 | u32 rar_entries = hw->mac.num_rar_entries; |
| 1323 | u32 rar; |
| 1324 | |
| 1325 | hw_dbg(hw, " UC Addr = %.2X %.2X %.2X %.2X %.2X %.2X\n", |
| 1326 | addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]); |
| 1327 | |
| 1328 | /* |
| 1329 | * Place this address in the RAR if there is room, |
| 1330 | * else put the controller into promiscuous mode |
| 1331 | */ |
| 1332 | if (hw->addr_ctrl.rar_used_count < rar_entries) { |
| 1333 | rar = hw->addr_ctrl.rar_used_count - |
| 1334 | hw->addr_ctrl.mc_addr_in_rar_count; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1335 | hw->mac.ops.set_rar(hw, rar, addr, vmdq, IXGBE_RAH_AV); |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1336 | hw_dbg(hw, "Added a secondary address to RAR[%d]\n", rar); |
| 1337 | hw->addr_ctrl.rar_used_count++; |
| 1338 | } else { |
| 1339 | hw->addr_ctrl.overflow_promisc++; |
| 1340 | } |
| 1341 | |
| 1342 | hw_dbg(hw, "ixgbe_add_uc_addr Complete\n"); |
| 1343 | } |
| 1344 | |
| 1345 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1346 | * ixgbe_update_uc_addr_list_generic - Updates MAC list of secondary addresses |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1347 | * @hw: pointer to hardware structure |
| 1348 | * @addr_list: the list of new addresses |
| 1349 | * @addr_count: number of addresses |
| 1350 | * @next: iterator function to walk the address list |
| 1351 | * |
| 1352 | * The given list replaces any existing list. Clears the secondary addrs from |
| 1353 | * receive address registers. Uses unused receive address registers for the |
| 1354 | * first secondary addresses, and falls back to promiscuous mode as needed. |
| 1355 | * |
| 1356 | * Drivers using secondary unicast addresses must set user_set_promisc when |
| 1357 | * manually putting the device into promiscuous mode. |
| 1358 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1359 | s32 ixgbe_update_uc_addr_list_generic(struct ixgbe_hw *hw, u8 *addr_list, |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1360 | u32 addr_count, ixgbe_mc_addr_itr next) |
| 1361 | { |
| 1362 | u8 *addr; |
| 1363 | u32 i; |
| 1364 | u32 old_promisc_setting = hw->addr_ctrl.overflow_promisc; |
| 1365 | u32 uc_addr_in_use; |
| 1366 | u32 fctrl; |
| 1367 | u32 vmdq; |
| 1368 | |
| 1369 | /* |
| 1370 | * Clear accounting of old secondary address list, |
| 1371 | * don't count RAR[0] |
| 1372 | */ |
Waskiewicz Jr, Peter P | 495dce1 | 2009-04-23 11:15:18 +0000 | [diff] [blame] | 1373 | uc_addr_in_use = hw->addr_ctrl.rar_used_count - 1; |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1374 | hw->addr_ctrl.rar_used_count -= uc_addr_in_use; |
| 1375 | hw->addr_ctrl.overflow_promisc = 0; |
| 1376 | |
| 1377 | /* Zero out the other receive addresses */ |
| 1378 | hw_dbg(hw, "Clearing RAR[1-%d]\n", uc_addr_in_use); |
| 1379 | for (i = 1; i <= uc_addr_in_use; i++) { |
| 1380 | IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0); |
| 1381 | IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0); |
| 1382 | } |
| 1383 | |
| 1384 | /* Add the new addresses */ |
| 1385 | for (i = 0; i < addr_count; i++) { |
| 1386 | hw_dbg(hw, " Adding the secondary addresses:\n"); |
| 1387 | addr = next(hw, &addr_list, &vmdq); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1388 | ixgbe_add_uc_addr(hw, addr, vmdq); |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
| 1391 | if (hw->addr_ctrl.overflow_promisc) { |
| 1392 | /* enable promisc if not already in overflow or set by user */ |
| 1393 | if (!old_promisc_setting && !hw->addr_ctrl.user_set_promisc) { |
| 1394 | hw_dbg(hw, " Entering address overflow promisc mode\n"); |
| 1395 | fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 1396 | fctrl |= IXGBE_FCTRL_UPE; |
| 1397 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl); |
| 1398 | } |
| 1399 | } else { |
| 1400 | /* only disable if set by overflow, not by user */ |
| 1401 | if (old_promisc_setting && !hw->addr_ctrl.user_set_promisc) { |
| 1402 | hw_dbg(hw, " Leaving address overflow promisc mode\n"); |
| 1403 | fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 1404 | fctrl &= ~IXGBE_FCTRL_UPE; |
| 1405 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl); |
| 1406 | } |
| 1407 | } |
| 1408 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1409 | hw_dbg(hw, "ixgbe_update_uc_addr_list_generic Complete\n"); |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1410 | return 0; |
| 1411 | } |
| 1412 | |
| 1413 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1414 | * ixgbe_mta_vector - Determines bit-vector in multicast table to set |
| 1415 | * @hw: pointer to hardware structure |
| 1416 | * @mc_addr: the multicast address |
| 1417 | * |
| 1418 | * Extracts the 12 bits, from a multicast address, to determine which |
| 1419 | * bit-vector to set in the multicast table. The hardware uses 12 bits, from |
| 1420 | * incoming rx multicast addresses, to determine the bit-vector to check in |
| 1421 | * the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1422 | * by the MO field of the MCSTCTRL. The MO field is set during initialization |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1423 | * to mc_filter_type. |
| 1424 | **/ |
| 1425 | static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr) |
| 1426 | { |
| 1427 | u32 vector = 0; |
| 1428 | |
| 1429 | switch (hw->mac.mc_filter_type) { |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1430 | case 0: /* use bits [47:36] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1431 | vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4)); |
| 1432 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1433 | case 1: /* use bits [46:35] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1434 | vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5)); |
| 1435 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1436 | case 2: /* use bits [45:34] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1437 | vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6)); |
| 1438 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1439 | case 3: /* use bits [43:32] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1440 | vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8)); |
| 1441 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1442 | default: /* Invalid mc_filter_type */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1443 | hw_dbg(hw, "MC filter type param set incorrectly\n"); |
| 1444 | break; |
| 1445 | } |
| 1446 | |
| 1447 | /* vector can only be 12-bits or boundary will be exceeded */ |
| 1448 | vector &= 0xFFF; |
| 1449 | return vector; |
| 1450 | } |
| 1451 | |
| 1452 | /** |
| 1453 | * ixgbe_set_mta - Set bit-vector in multicast table |
| 1454 | * @hw: pointer to hardware structure |
| 1455 | * @hash_value: Multicast address hash value |
| 1456 | * |
| 1457 | * Sets the bit-vector in the multicast table. |
| 1458 | **/ |
| 1459 | static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr) |
| 1460 | { |
| 1461 | u32 vector; |
| 1462 | u32 vector_bit; |
| 1463 | u32 vector_reg; |
| 1464 | u32 mta_reg; |
| 1465 | |
| 1466 | hw->addr_ctrl.mta_in_use++; |
| 1467 | |
| 1468 | vector = ixgbe_mta_vector(hw, mc_addr); |
| 1469 | hw_dbg(hw, " bit-vector = 0x%03X\n", vector); |
| 1470 | |
| 1471 | /* |
| 1472 | * The MTA is a register array of 128 32-bit registers. It is treated |
| 1473 | * like an array of 4096 bits. We want to set bit |
| 1474 | * BitArray[vector_value]. So we figure out what register the bit is |
| 1475 | * in, read it, OR in the new bit, then write back the new value. The |
| 1476 | * register is determined by the upper 7 bits of the vector value and |
| 1477 | * the bit within that register are determined by the lower 5 bits of |
| 1478 | * the value. |
| 1479 | */ |
| 1480 | vector_reg = (vector >> 5) & 0x7F; |
| 1481 | vector_bit = vector & 0x1F; |
| 1482 | mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg)); |
| 1483 | mta_reg |= (1 << vector_bit); |
| 1484 | IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg); |
| 1485 | } |
| 1486 | |
| 1487 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1488 | * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1489 | * @hw: pointer to hardware structure |
| 1490 | * @mc_addr_list: the list of new multicast addresses |
| 1491 | * @mc_addr_count: number of addresses |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1492 | * @next: iterator function to walk the multicast address list |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1493 | * |
| 1494 | * The given list replaces any existing list. Clears the MC addrs from receive |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1495 | * address registers and the multicast table. Uses unused receive address |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1496 | * registers for the first multicast addresses, and hashes the rest into the |
| 1497 | * multicast table. |
| 1498 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1499 | s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw, u8 *mc_addr_list, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1500 | u32 mc_addr_count, ixgbe_mc_addr_itr next) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1501 | { |
| 1502 | u32 i; |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1503 | u32 vmdq; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1504 | |
| 1505 | /* |
| 1506 | * Set the new number of MC addresses that we are being requested to |
| 1507 | * use. |
| 1508 | */ |
| 1509 | hw->addr_ctrl.num_mc_addrs = mc_addr_count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1510 | hw->addr_ctrl.mta_in_use = 0; |
| 1511 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1512 | /* Clear the MTA */ |
| 1513 | hw_dbg(hw, " Clearing MTA\n"); |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1514 | for (i = 0; i < hw->mac.mcft_size; i++) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1515 | IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0); |
| 1516 | |
| 1517 | /* Add the new addresses */ |
| 1518 | for (i = 0; i < mc_addr_count; i++) { |
| 1519 | hw_dbg(hw, " Adding the multicast addresses:\n"); |
Waskiewicz Jr, Peter P | 495dce1 | 2009-04-23 11:15:18 +0000 | [diff] [blame] | 1520 | ixgbe_set_mta(hw, next(hw, &mc_addr_list, &vmdq)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | /* Enable mta */ |
| 1524 | if (hw->addr_ctrl.mta_in_use > 0) |
| 1525 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1526 | IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1527 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1528 | hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1529 | return 0; |
| 1530 | } |
| 1531 | |
| 1532 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1533 | * ixgbe_enable_mc_generic - Enable multicast address in RAR |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1534 | * @hw: pointer to hardware structure |
| 1535 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1536 | * Enables multicast address in RAR and the use of the multicast hash table. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1537 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1538 | s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1539 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1540 | u32 i; |
| 1541 | u32 rar_entries = hw->mac.num_rar_entries; |
| 1542 | struct ixgbe_addr_filter_info *a = &hw->addr_ctrl; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1543 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1544 | if (a->mc_addr_in_rar_count > 0) |
| 1545 | for (i = (rar_entries - a->mc_addr_in_rar_count); |
| 1546 | i < rar_entries; i++) |
| 1547 | ixgbe_enable_rar(hw, i); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1548 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1549 | if (a->mta_in_use > 0) |
| 1550 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE | |
| 1551 | hw->mac.mc_filter_type); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1552 | |
| 1553 | return 0; |
| 1554 | } |
| 1555 | |
| 1556 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1557 | * ixgbe_disable_mc_generic - Disable multicast address in RAR |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1558 | * @hw: pointer to hardware structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1559 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1560 | * Disables multicast address in RAR and the use of the multicast hash table. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1561 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1562 | s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1563 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1564 | u32 i; |
| 1565 | u32 rar_entries = hw->mac.num_rar_entries; |
| 1566 | struct ixgbe_addr_filter_info *a = &hw->addr_ctrl; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1567 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1568 | if (a->mc_addr_in_rar_count > 0) |
| 1569 | for (i = (rar_entries - a->mc_addr_in_rar_count); |
| 1570 | i < rar_entries; i++) |
| 1571 | ixgbe_disable_rar(hw, i); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1572 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1573 | if (a->mta_in_use > 0) |
| 1574 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1575 | |
| 1576 | return 0; |
| 1577 | } |
| 1578 | |
| 1579 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1580 | * ixgbe_fc_enable - Enable flow control |
| 1581 | * @hw: pointer to hardware structure |
| 1582 | * @packetbuf_num: packet buffer number (0-7) |
| 1583 | * |
| 1584 | * Enable flow control according to the current settings. |
| 1585 | **/ |
| 1586 | s32 ixgbe_fc_enable(struct ixgbe_hw *hw, s32 packetbuf_num) |
| 1587 | { |
| 1588 | s32 ret_val = 0; |
| 1589 | u32 mflcn_reg; |
| 1590 | u32 fccfg_reg; |
| 1591 | u32 reg; |
Peter P Waskiewicz Jr | 70b7762 | 2009-05-17 12:34:55 +0000 | [diff] [blame^] | 1592 | u32 rx_pba_size; |
| 1593 | |
| 1594 | #ifdef CONFIG_DCB |
| 1595 | if (hw->fc.requested_mode == ixgbe_fc_pfc) |
| 1596 | goto out; |
| 1597 | |
| 1598 | #endif /* CONFIG_DCB */ |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1599 | |
| 1600 | mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN); |
| 1601 | mflcn_reg &= ~(IXGBE_MFLCN_RFCE | IXGBE_MFLCN_RPFCE); |
| 1602 | |
| 1603 | fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG); |
| 1604 | fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY); |
| 1605 | |
| 1606 | /* |
| 1607 | * The possible values of fc.current_mode are: |
| 1608 | * 0: Flow control is completely disabled |
| 1609 | * 1: Rx flow control is enabled (we can receive pause frames, |
| 1610 | * but not send pause frames). |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 1611 | * 2: Tx flow control is enabled (we can send pause frames but |
| 1612 | * we do not support receiving pause frames). |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1613 | * 3: Both Rx and Tx flow control (symmetric) are enabled. |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 1614 | * 4: Priority Flow Control is enabled. |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1615 | * other: Invalid. |
| 1616 | */ |
| 1617 | switch (hw->fc.current_mode) { |
| 1618 | case ixgbe_fc_none: |
| 1619 | /* Flow control completely disabled by software override. */ |
| 1620 | break; |
| 1621 | case ixgbe_fc_rx_pause: |
| 1622 | /* |
| 1623 | * Rx Flow control is enabled and Tx Flow control is |
| 1624 | * disabled by software override. Since there really |
| 1625 | * isn't a way to advertise that we are capable of RX |
| 1626 | * Pause ONLY, we will advertise that we support both |
| 1627 | * symmetric and asymmetric Rx PAUSE. Later, we will |
| 1628 | * disable the adapter's ability to send PAUSE frames. |
| 1629 | */ |
| 1630 | mflcn_reg |= IXGBE_MFLCN_RFCE; |
| 1631 | break; |
| 1632 | case ixgbe_fc_tx_pause: |
| 1633 | /* |
| 1634 | * Tx Flow control is enabled, and Rx Flow control is |
| 1635 | * disabled by software override. |
| 1636 | */ |
| 1637 | fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X; |
| 1638 | break; |
| 1639 | case ixgbe_fc_full: |
| 1640 | /* Flow control (both Rx and Tx) is enabled by SW override. */ |
| 1641 | mflcn_reg |= IXGBE_MFLCN_RFCE; |
| 1642 | fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X; |
| 1643 | break; |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 1644 | #ifdef CONFIG_DCB |
| 1645 | case ixgbe_fc_pfc: |
| 1646 | goto out; |
| 1647 | break; |
| 1648 | #endif |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1649 | default: |
| 1650 | hw_dbg(hw, "Flow control param set incorrectly\n"); |
| 1651 | ret_val = -IXGBE_ERR_CONFIG; |
| 1652 | goto out; |
| 1653 | break; |
| 1654 | } |
| 1655 | |
| 1656 | /* Enable 802.3x based flow control settings. */ |
PJ Waskiewicz | 2132d38 | 2009-04-09 22:26:21 +0000 | [diff] [blame] | 1657 | mflcn_reg |= IXGBE_MFLCN_DPF; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1658 | IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg); |
| 1659 | IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg); |
| 1660 | |
Peter P Waskiewicz Jr | 70b7762 | 2009-05-17 12:34:55 +0000 | [diff] [blame^] | 1661 | reg = IXGBE_READ_REG(hw, IXGBE_MTQC); |
| 1662 | /* Thresholds are different for link flow control when in DCB mode */ |
| 1663 | if (reg & IXGBE_MTQC_RT_ENA) { |
| 1664 | rx_pba_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(packetbuf_num)); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1665 | |
Peter P Waskiewicz Jr | 70b7762 | 2009-05-17 12:34:55 +0000 | [diff] [blame^] | 1666 | /* Always disable XON for LFC when in DCB mode */ |
| 1667 | reg = (rx_pba_size >> 2) & 0xFFE0; |
| 1668 | if (hw->fc.current_mode & ixgbe_fc_tx_pause) |
| 1669 | reg |= IXGBE_FCRTH_FCEN; |
| 1670 | IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(packetbuf_num), reg); |
| 1671 | } else { |
| 1672 | /* |
| 1673 | * Set up and enable Rx high/low water mark thresholds, |
| 1674 | * enable XON. |
| 1675 | */ |
| 1676 | if (hw->fc.current_mode & ixgbe_fc_tx_pause) { |
| 1677 | if (hw->fc.send_xon) { |
| 1678 | IXGBE_WRITE_REG(hw, |
| 1679 | IXGBE_FCRTL_82599(packetbuf_num), |
| 1680 | (hw->fc.low_water | |
| 1681 | IXGBE_FCRTL_XONE)); |
| 1682 | } else { |
| 1683 | IXGBE_WRITE_REG(hw, |
| 1684 | IXGBE_FCRTL_82599(packetbuf_num), |
| 1685 | hw->fc.low_water); |
| 1686 | } |
| 1687 | |
| 1688 | IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(packetbuf_num), |
| 1689 | (hw->fc.high_water | IXGBE_FCRTH_FCEN)); |
| 1690 | } |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1691 | } |
| 1692 | |
| 1693 | /* Configure pause time (2 TCs per register) */ |
Peter P Waskiewicz Jr | 70b7762 | 2009-05-17 12:34:55 +0000 | [diff] [blame^] | 1694 | reg = IXGBE_READ_REG(hw, IXGBE_FCTTV(packetbuf_num / 2)); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1695 | if ((packetbuf_num & 1) == 0) |
| 1696 | reg = (reg & 0xFFFF0000) | hw->fc.pause_time; |
| 1697 | else |
| 1698 | reg = (reg & 0x0000FFFF) | (hw->fc.pause_time << 16); |
| 1699 | IXGBE_WRITE_REG(hw, IXGBE_FCTTV(packetbuf_num / 2), reg); |
| 1700 | |
| 1701 | IXGBE_WRITE_REG(hw, IXGBE_FCRTV, (hw->fc.pause_time >> 1)); |
| 1702 | |
| 1703 | out: |
| 1704 | return ret_val; |
| 1705 | } |
| 1706 | |
| 1707 | /** |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 1708 | * ixgbe_fc_autoneg - Configure flow control |
| 1709 | * @hw: pointer to hardware structure |
| 1710 | * |
| 1711 | * Negotiates flow control capabilities with link partner using autoneg and |
| 1712 | * applies the results. |
| 1713 | **/ |
| 1714 | s32 ixgbe_fc_autoneg(struct ixgbe_hw *hw) |
| 1715 | { |
| 1716 | s32 ret_val = 0; |
| 1717 | u32 i, reg, pcs_anadv_reg, pcs_lpab_reg; |
| 1718 | |
| 1719 | reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); |
| 1720 | |
| 1721 | /* |
| 1722 | * The possible values of fc.current_mode are: |
| 1723 | * 0: Flow control is completely disabled |
| 1724 | * 1: Rx flow control is enabled (we can receive pause frames, |
| 1725 | * but not send pause frames). |
| 1726 | * 2: Tx flow control is enabled (we can send pause frames but |
| 1727 | * we do not support receiving pause frames). |
| 1728 | * 3: Both Rx and Tx flow control (symmetric) are enabled. |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 1729 | * 4: Priority Flow Control is enabled. |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 1730 | * other: Invalid. |
| 1731 | */ |
| 1732 | switch (hw->fc.current_mode) { |
| 1733 | case ixgbe_fc_none: |
| 1734 | /* Flow control completely disabled by software override. */ |
| 1735 | reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE); |
| 1736 | break; |
| 1737 | case ixgbe_fc_rx_pause: |
| 1738 | /* |
| 1739 | * Rx Flow control is enabled and Tx Flow control is |
| 1740 | * disabled by software override. Since there really |
| 1741 | * isn't a way to advertise that we are capable of RX |
| 1742 | * Pause ONLY, we will advertise that we support both |
| 1743 | * symmetric and asymmetric Rx PAUSE. Later, we will |
| 1744 | * disable the adapter's ability to send PAUSE frames. |
| 1745 | */ |
| 1746 | reg |= (IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE); |
| 1747 | break; |
| 1748 | case ixgbe_fc_tx_pause: |
| 1749 | /* |
| 1750 | * Tx Flow control is enabled, and Rx Flow control is |
| 1751 | * disabled by software override. |
| 1752 | */ |
| 1753 | reg |= (IXGBE_PCS1GANA_ASM_PAUSE); |
| 1754 | reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE); |
| 1755 | break; |
| 1756 | case ixgbe_fc_full: |
| 1757 | /* Flow control (both Rx and Tx) is enabled by SW override. */ |
| 1758 | reg |= (IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE); |
| 1759 | break; |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 1760 | #ifdef CONFIG_DCB |
| 1761 | case ixgbe_fc_pfc: |
| 1762 | goto out; |
| 1763 | break; |
| 1764 | #endif |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 1765 | default: |
| 1766 | hw_dbg(hw, "Flow control param set incorrectly\n"); |
| 1767 | ret_val = -IXGBE_ERR_CONFIG; |
| 1768 | goto out; |
| 1769 | break; |
| 1770 | } |
| 1771 | |
| 1772 | IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg); |
| 1773 | reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL); |
| 1774 | |
| 1775 | /* Set PCS register for autoneg */ |
| 1776 | /* Enable and restart autoneg */ |
| 1777 | reg |= IXGBE_PCS1GLCTL_AN_ENABLE | IXGBE_PCS1GLCTL_AN_RESTART; |
| 1778 | |
| 1779 | /* Disable AN timeout */ |
| 1780 | if (hw->fc.strict_ieee) |
| 1781 | reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN; |
| 1782 | |
| 1783 | hw_dbg(hw, "Configuring Autoneg; PCS_LCTL = 0x%08X\n", reg); |
| 1784 | IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg); |
| 1785 | |
| 1786 | /* See if autonegotiation has succeeded */ |
| 1787 | hw->mac.autoneg_succeeded = 0; |
| 1788 | for (i = 0; i < FIBER_LINK_UP_LIMIT; i++) { |
| 1789 | msleep(10); |
| 1790 | reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA); |
| 1791 | if ((reg & (IXGBE_PCS1GLSTA_LINK_OK | |
| 1792 | IXGBE_PCS1GLSTA_AN_COMPLETE)) == |
| 1793 | (IXGBE_PCS1GLSTA_LINK_OK | |
| 1794 | IXGBE_PCS1GLSTA_AN_COMPLETE)) { |
| 1795 | if (!(reg & IXGBE_PCS1GLSTA_AN_TIMED_OUT)) |
| 1796 | hw->mac.autoneg_succeeded = 1; |
| 1797 | break; |
| 1798 | } |
| 1799 | } |
| 1800 | |
| 1801 | if (!hw->mac.autoneg_succeeded) { |
| 1802 | /* Autoneg failed to achieve a link, so we turn fc off */ |
| 1803 | hw->fc.current_mode = ixgbe_fc_none; |
| 1804 | hw_dbg(hw, "Flow Control = NONE.\n"); |
| 1805 | goto out; |
| 1806 | } |
| 1807 | |
| 1808 | /* |
| 1809 | * Read the AN advertisement and LP ability registers and resolve |
| 1810 | * local flow control settings accordingly |
| 1811 | */ |
| 1812 | pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); |
| 1813 | pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP); |
| 1814 | if ((pcs_anadv_reg & IXGBE_PCS1GANA_SYM_PAUSE) && |
| 1815 | (pcs_lpab_reg & IXGBE_PCS1GANA_SYM_PAUSE)) { |
| 1816 | /* |
| 1817 | * Now we need to check if the user selected Rx ONLY |
| 1818 | * of pause frames. In this case, we had to advertise |
| 1819 | * FULL flow control because we could not advertise RX |
| 1820 | * ONLY. Hence, we must now check to see if we need to |
| 1821 | * turn OFF the TRANSMISSION of PAUSE frames. |
| 1822 | */ |
| 1823 | if (hw->fc.requested_mode == ixgbe_fc_full) { |
| 1824 | hw->fc.current_mode = ixgbe_fc_full; |
| 1825 | hw_dbg(hw, "Flow Control = FULL.\n"); |
| 1826 | } else { |
| 1827 | hw->fc.current_mode = ixgbe_fc_rx_pause; |
| 1828 | hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n"); |
| 1829 | } |
| 1830 | } else if (!(pcs_anadv_reg & IXGBE_PCS1GANA_SYM_PAUSE) && |
| 1831 | (pcs_anadv_reg & IXGBE_PCS1GANA_ASM_PAUSE) && |
| 1832 | (pcs_lpab_reg & IXGBE_PCS1GANA_SYM_PAUSE) && |
| 1833 | (pcs_lpab_reg & IXGBE_PCS1GANA_ASM_PAUSE)) { |
| 1834 | hw->fc.current_mode = ixgbe_fc_tx_pause; |
| 1835 | hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n"); |
| 1836 | } else if ((pcs_anadv_reg & IXGBE_PCS1GANA_SYM_PAUSE) && |
| 1837 | (pcs_anadv_reg & IXGBE_PCS1GANA_ASM_PAUSE) && |
| 1838 | !(pcs_lpab_reg & IXGBE_PCS1GANA_SYM_PAUSE) && |
| 1839 | (pcs_lpab_reg & IXGBE_PCS1GANA_ASM_PAUSE)) { |
| 1840 | hw->fc.current_mode = ixgbe_fc_rx_pause; |
| 1841 | hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n"); |
| 1842 | } else { |
| 1843 | hw->fc.current_mode = ixgbe_fc_none; |
| 1844 | hw_dbg(hw, "Flow Control = NONE.\n"); |
| 1845 | } |
| 1846 | |
| 1847 | out: |
| 1848 | return ret_val; |
| 1849 | } |
| 1850 | |
| 1851 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1852 | * ixgbe_setup_fc_generic - Set up flow control |
| 1853 | * @hw: pointer to hardware structure |
| 1854 | * |
| 1855 | * Sets up flow control. |
| 1856 | **/ |
| 1857 | s32 ixgbe_setup_fc_generic(struct ixgbe_hw *hw, s32 packetbuf_num) |
| 1858 | { |
| 1859 | s32 ret_val = 0; |
| 1860 | ixgbe_link_speed speed; |
| 1861 | bool link_up; |
| 1862 | |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 1863 | #ifdef CONFIG_DCB |
| 1864 | if (hw->fc.requested_mode == ixgbe_fc_pfc) { |
| 1865 | hw->fc.current_mode = hw->fc.requested_mode; |
| 1866 | goto out; |
| 1867 | } |
| 1868 | |
| 1869 | #endif |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1870 | /* Validate the packetbuf configuration */ |
| 1871 | if (packetbuf_num < 0 || packetbuf_num > 7) { |
| 1872 | hw_dbg(hw, "Invalid packet buffer number [%d], expected range " |
| 1873 | "is 0-7\n", packetbuf_num); |
| 1874 | ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS; |
| 1875 | goto out; |
| 1876 | } |
| 1877 | |
| 1878 | /* |
| 1879 | * Validate the water mark configuration. Zero water marks are invalid |
| 1880 | * because it causes the controller to just blast out fc packets. |
| 1881 | */ |
| 1882 | if (!hw->fc.low_water || !hw->fc.high_water || !hw->fc.pause_time) { |
PJ Waskiewicz | d3e9c56 | 2009-04-09 22:27:39 +0000 | [diff] [blame] | 1883 | if (hw->fc.requested_mode != ixgbe_fc_none) { |
| 1884 | hw_dbg(hw, "Invalid water mark configuration\n"); |
| 1885 | ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS; |
| 1886 | goto out; |
| 1887 | } |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1888 | } |
| 1889 | |
| 1890 | /* |
| 1891 | * Validate the requested mode. Strict IEEE mode does not allow |
| 1892 | * ixgbe_fc_rx_pause because it will cause testing anomalies. |
| 1893 | */ |
| 1894 | if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) { |
| 1895 | hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict " |
| 1896 | "IEEE mode\n"); |
| 1897 | ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS; |
| 1898 | goto out; |
| 1899 | } |
| 1900 | |
| 1901 | /* |
| 1902 | * 10gig parts do not have a word in the EEPROM to determine the |
| 1903 | * default flow control setting, so we explicitly set it to full. |
| 1904 | */ |
| 1905 | if (hw->fc.requested_mode == ixgbe_fc_default) |
| 1906 | hw->fc.requested_mode = ixgbe_fc_full; |
| 1907 | |
| 1908 | /* |
| 1909 | * Save off the requested flow control mode for use later. Depending |
| 1910 | * on the link partner's capabilities, we may or may not use this mode. |
| 1911 | */ |
| 1912 | hw->fc.current_mode = hw->fc.requested_mode; |
| 1913 | |
| 1914 | /* Decide whether to use autoneg or not. */ |
| 1915 | hw->mac.ops.check_link(hw, &speed, &link_up, false); |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 1916 | if (!hw->fc.disable_fc_autoneg && hw->phy.multispeed_fiber && |
| 1917 | (speed == IXGBE_LINK_SPEED_1GB_FULL)) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 1918 | ret_val = ixgbe_fc_autoneg(hw); |
| 1919 | |
| 1920 | if (ret_val) |
| 1921 | goto out; |
| 1922 | |
| 1923 | ret_val = ixgbe_fc_enable(hw, packetbuf_num); |
| 1924 | |
| 1925 | out: |
| 1926 | return ret_val; |
| 1927 | } |
| 1928 | |
| 1929 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1930 | * ixgbe_disable_pcie_master - Disable PCI-express master access |
| 1931 | * @hw: pointer to hardware structure |
| 1932 | * |
| 1933 | * Disables PCI-Express master access and verifies there are no pending |
| 1934 | * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable |
| 1935 | * bit hasn't caused the master requests to be disabled, else 0 |
| 1936 | * is returned signifying master requests disabled. |
| 1937 | **/ |
| 1938 | s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw) |
| 1939 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1940 | u32 i; |
| 1941 | u32 reg_val; |
| 1942 | u32 number_of_queues; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1943 | s32 status = IXGBE_ERR_MASTER_REQUESTS_PENDING; |
| 1944 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1945 | /* Disable the receive unit by stopping each queue */ |
| 1946 | number_of_queues = hw->mac.max_rx_queues; |
| 1947 | for (i = 0; i < number_of_queues; i++) { |
| 1948 | reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); |
| 1949 | if (reg_val & IXGBE_RXDCTL_ENABLE) { |
| 1950 | reg_val &= ~IXGBE_RXDCTL_ENABLE; |
| 1951 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val); |
| 1952 | } |
| 1953 | } |
| 1954 | |
| 1955 | reg_val = IXGBE_READ_REG(hw, IXGBE_CTRL); |
| 1956 | reg_val |= IXGBE_CTRL_GIO_DIS; |
| 1957 | IXGBE_WRITE_REG(hw, IXGBE_CTRL, reg_val); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1958 | |
| 1959 | for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) { |
| 1960 | if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO)) { |
| 1961 | status = 0; |
| 1962 | break; |
| 1963 | } |
| 1964 | udelay(100); |
| 1965 | } |
| 1966 | |
| 1967 | return status; |
| 1968 | } |
| 1969 | |
| 1970 | |
| 1971 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1972 | * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1973 | * @hw: pointer to hardware structure |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1974 | * @mask: Mask to specify which semaphore to acquire |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1975 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1976 | * Acquires the SWFW semaphore thought the GSSR register for the specified |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1977 | * function (CSR, PHY0, PHY1, EEPROM, Flash) |
| 1978 | **/ |
| 1979 | s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u16 mask) |
| 1980 | { |
| 1981 | u32 gssr; |
| 1982 | u32 swmask = mask; |
| 1983 | u32 fwmask = mask << 5; |
| 1984 | s32 timeout = 200; |
| 1985 | |
| 1986 | while (timeout) { |
| 1987 | if (ixgbe_get_eeprom_semaphore(hw)) |
| 1988 | return -IXGBE_ERR_SWFW_SYNC; |
| 1989 | |
| 1990 | gssr = IXGBE_READ_REG(hw, IXGBE_GSSR); |
| 1991 | if (!(gssr & (fwmask | swmask))) |
| 1992 | break; |
| 1993 | |
| 1994 | /* |
| 1995 | * Firmware currently using resource (fwmask) or other software |
| 1996 | * thread currently using resource (swmask) |
| 1997 | */ |
| 1998 | ixgbe_release_eeprom_semaphore(hw); |
| 1999 | msleep(5); |
| 2000 | timeout--; |
| 2001 | } |
| 2002 | |
| 2003 | if (!timeout) { |
| 2004 | hw_dbg(hw, "Driver can't access resource, GSSR timeout.\n"); |
| 2005 | return -IXGBE_ERR_SWFW_SYNC; |
| 2006 | } |
| 2007 | |
| 2008 | gssr |= swmask; |
| 2009 | IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr); |
| 2010 | |
| 2011 | ixgbe_release_eeprom_semaphore(hw); |
| 2012 | return 0; |
| 2013 | } |
| 2014 | |
| 2015 | /** |
| 2016 | * ixgbe_release_swfw_sync - Release SWFW semaphore |
| 2017 | * @hw: pointer to hardware structure |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2018 | * @mask: Mask to specify which semaphore to release |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2019 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2020 | * Releases the SWFW semaphore thought the GSSR register for the specified |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2021 | * function (CSR, PHY0, PHY1, EEPROM, Flash) |
| 2022 | **/ |
| 2023 | void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u16 mask) |
| 2024 | { |
| 2025 | u32 gssr; |
| 2026 | u32 swmask = mask; |
| 2027 | |
| 2028 | ixgbe_get_eeprom_semaphore(hw); |
| 2029 | |
| 2030 | gssr = IXGBE_READ_REG(hw, IXGBE_GSSR); |
| 2031 | gssr &= ~swmask; |
| 2032 | IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr); |
| 2033 | |
| 2034 | ixgbe_release_eeprom_semaphore(hw); |
| 2035 | } |
| 2036 | |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2037 | /** |
| 2038 | * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit |
| 2039 | * @hw: pointer to hardware structure |
| 2040 | * @regval: register value to write to RXCTRL |
| 2041 | * |
| 2042 | * Enables the Rx DMA unit |
| 2043 | **/ |
| 2044 | s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval) |
| 2045 | { |
| 2046 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, regval); |
| 2047 | |
| 2048 | return 0; |
| 2049 | } |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2050 | |
| 2051 | /** |
| 2052 | * ixgbe_blink_led_start_generic - Blink LED based on index. |
| 2053 | * @hw: pointer to hardware structure |
| 2054 | * @index: led number to blink |
| 2055 | **/ |
| 2056 | s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index) |
| 2057 | { |
| 2058 | ixgbe_link_speed speed = 0; |
| 2059 | bool link_up = 0; |
| 2060 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 2061 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 2062 | |
| 2063 | /* |
| 2064 | * Link must be up to auto-blink the LEDs; |
| 2065 | * Force it if link is down. |
| 2066 | */ |
| 2067 | hw->mac.ops.check_link(hw, &speed, &link_up, false); |
| 2068 | |
| 2069 | if (!link_up) { |
| 2070 | autoc_reg |= IXGBE_AUTOC_FLU; |
| 2071 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); |
| 2072 | msleep(10); |
| 2073 | } |
| 2074 | |
| 2075 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 2076 | led_reg |= IXGBE_LED_BLINK(index); |
| 2077 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
| 2078 | IXGBE_WRITE_FLUSH(hw); |
| 2079 | |
| 2080 | return 0; |
| 2081 | } |
| 2082 | |
| 2083 | /** |
| 2084 | * ixgbe_blink_led_stop_generic - Stop blinking LED based on index. |
| 2085 | * @hw: pointer to hardware structure |
| 2086 | * @index: led number to stop blinking |
| 2087 | **/ |
| 2088 | s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index) |
| 2089 | { |
| 2090 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 2091 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 2092 | |
| 2093 | autoc_reg &= ~IXGBE_AUTOC_FLU; |
| 2094 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; |
| 2095 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); |
| 2096 | |
| 2097 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 2098 | led_reg &= ~IXGBE_LED_BLINK(index); |
| 2099 | led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index); |
| 2100 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
| 2101 | IXGBE_WRITE_FLUSH(hw); |
| 2102 | |
| 2103 | return 0; |
| 2104 | } |