Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Mark Rustad | afdc71e | 2016-01-25 16:32:10 -0800 | [diff] [blame] | 4 | Copyright(c) 1999 - 2016 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: |
Jacob Keller | b89aae7 | 2014-02-22 01:23:50 +0000 | [diff] [blame] | 23 | Linux NICS <linux.nics@intel.com> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 26 | |
| 27 | *******************************************************************************/ |
| 28 | |
| 29 | #include <linux/pci.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/sched.h> |
Jiri Pirko | ccffad25 | 2009-05-22 23:22:17 +0000 | [diff] [blame] | 32 | #include <linux/netdevice.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 33 | |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 34 | #include "ixgbe.h" |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 35 | #include "ixgbe_common.h" |
| 36 | #include "ixgbe_phy.h" |
| 37 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 38 | static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 39 | static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw); |
| 40 | static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 41 | static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw); |
| 42 | static void ixgbe_standby_eeprom(struct ixgbe_hw *hw); |
| 43 | static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 44 | u16 count); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 45 | static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count); |
| 46 | static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec); |
| 47 | static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec); |
| 48 | static void ixgbe_release_eeprom(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 49 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 50 | static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr); |
Emil Tantilov | eb9c3e3 | 2011-03-24 00:57:50 +0000 | [diff] [blame] | 51 | static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg); |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 52 | static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset, |
| 53 | u16 words, u16 *data); |
| 54 | static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset, |
| 55 | u16 words, u16 *data); |
| 56 | static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw, |
| 57 | u16 offset); |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 58 | static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 59 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 60 | /* Base table for registers values that change by MAC */ |
| 61 | const u32 ixgbe_mvals_8259X[IXGBE_MVALS_IDX_LIMIT] = { |
| 62 | IXGBE_MVALS_INIT(8259X) |
| 63 | }; |
| 64 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 65 | /** |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 66 | * ixgbe_device_supports_autoneg_fc - Check if phy supports autoneg flow |
| 67 | * control |
| 68 | * @hw: pointer to hardware structure |
| 69 | * |
| 70 | * There are several phys that do not support autoneg flow control. This |
| 71 | * function check the device id to see if the associated phy supports |
| 72 | * autoneg flow control. |
| 73 | **/ |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 74 | bool ixgbe_device_supports_autoneg_fc(struct ixgbe_hw *hw) |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 75 | { |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 76 | bool supported = false; |
| 77 | ixgbe_link_speed speed; |
| 78 | bool link_up; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 79 | |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 80 | switch (hw->phy.media_type) { |
| 81 | case ixgbe_media_type_fiber: |
| 82 | hw->mac.ops.check_link(hw, &speed, &link_up, false); |
| 83 | /* if link is down, assume supported */ |
| 84 | if (link_up) |
| 85 | supported = speed == IXGBE_LINK_SPEED_1GB_FULL ? |
| 86 | true : false; |
| 87 | else |
| 88 | supported = true; |
| 89 | break; |
| 90 | case ixgbe_media_type_backplane: |
| 91 | supported = true; |
| 92 | break; |
| 93 | case ixgbe_media_type_copper: |
| 94 | /* only some copper devices support flow control autoneg */ |
| 95 | switch (hw->device_id) { |
| 96 | case IXGBE_DEV_ID_82599_T3_LOM: |
| 97 | case IXGBE_DEV_ID_X540T: |
| 98 | case IXGBE_DEV_ID_X540T1: |
Don Skidmore | df8c26f | 2015-06-09 16:00:17 -0700 | [diff] [blame] | 99 | case IXGBE_DEV_ID_X550T: |
Mark Rustad | a711ad8 | 2016-03-21 11:21:31 -0700 | [diff] [blame] | 100 | case IXGBE_DEV_ID_X550T1: |
Don Skidmore | df8c26f | 2015-06-09 16:00:17 -0700 | [diff] [blame] | 101 | case IXGBE_DEV_ID_X550EM_X_10G_T: |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 102 | supported = true; |
| 103 | break; |
| 104 | default: |
| 105 | break; |
| 106 | } |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 107 | default: |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 108 | break; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 109 | } |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 110 | |
| 111 | return supported; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /** |
Mark Rustad | afdc71e | 2016-01-25 16:32:10 -0800 | [diff] [blame] | 115 | * ixgbe_setup_fc_generic - Set up flow control |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 116 | * @hw: pointer to hardware structure |
| 117 | * |
| 118 | * Called at init time to set up flow control. |
| 119 | **/ |
Mark Rustad | afdc71e | 2016-01-25 16:32:10 -0800 | [diff] [blame] | 120 | s32 ixgbe_setup_fc_generic(struct ixgbe_hw *hw) |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 121 | { |
| 122 | s32 ret_val = 0; |
| 123 | u32 reg = 0, reg_bp = 0; |
| 124 | u16 reg_cu = 0; |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 125 | bool locked = false; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 126 | |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 127 | /* |
| 128 | * Validate the requested mode. Strict IEEE mode does not allow |
| 129 | * ixgbe_fc_rx_pause because it will cause us to fail at UNH. |
| 130 | */ |
| 131 | if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) { |
| 132 | hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 133 | return IXGBE_ERR_INVALID_LINK_SETTINGS; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | /* |
| 137 | * 10gig parts do not have a word in the EEPROM to determine the |
| 138 | * default flow control setting, so we explicitly set it to full. |
| 139 | */ |
| 140 | if (hw->fc.requested_mode == ixgbe_fc_default) |
| 141 | hw->fc.requested_mode = ixgbe_fc_full; |
| 142 | |
| 143 | /* |
| 144 | * Set up the 1G and 10G flow control advertisement registers so the |
| 145 | * HW will be able to do fc autoneg once the cable is plugged in. If |
| 146 | * we link at 10G, the 1G advertisement is harmless and vice versa. |
| 147 | */ |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 148 | switch (hw->phy.media_type) { |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 149 | case ixgbe_media_type_backplane: |
| 150 | /* some MAC's need RMW protection on AUTOC */ |
| 151 | ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, ®_bp); |
Don Skidmore | f8cf7a0 | 2014-03-19 09:16:26 +0000 | [diff] [blame] | 152 | if (ret_val) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 153 | return ret_val; |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 154 | |
| 155 | /* only backplane uses autoc so fall though */ |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 156 | case ixgbe_media_type_fiber: |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 157 | reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 158 | |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 159 | break; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 160 | case ixgbe_media_type_copper: |
| 161 | hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE, |
| 162 | MDIO_MMD_AN, ®_cu); |
| 163 | break; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 164 | default: |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 165 | break; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /* |
| 169 | * The possible values of fc.requested_mode are: |
| 170 | * 0: Flow control is completely disabled |
| 171 | * 1: Rx flow control is enabled (we can receive pause frames, |
| 172 | * but not send pause frames). |
| 173 | * 2: Tx flow control is enabled (we can send pause frames but |
| 174 | * we do not support receiving pause frames). |
| 175 | * 3: Both Rx and Tx flow control (symmetric) are enabled. |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 176 | * other: Invalid. |
| 177 | */ |
| 178 | switch (hw->fc.requested_mode) { |
| 179 | case ixgbe_fc_none: |
| 180 | /* Flow control completely disabled by software override. */ |
| 181 | reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE); |
| 182 | if (hw->phy.media_type == ixgbe_media_type_backplane) |
| 183 | reg_bp &= ~(IXGBE_AUTOC_SYM_PAUSE | |
| 184 | IXGBE_AUTOC_ASM_PAUSE); |
| 185 | else if (hw->phy.media_type == ixgbe_media_type_copper) |
| 186 | reg_cu &= ~(IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE); |
| 187 | break; |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 188 | case ixgbe_fc_tx_pause: |
| 189 | /* |
| 190 | * Tx Flow control is enabled, and Rx Flow control is |
| 191 | * disabled by software override. |
| 192 | */ |
| 193 | reg |= IXGBE_PCS1GANA_ASM_PAUSE; |
| 194 | reg &= ~IXGBE_PCS1GANA_SYM_PAUSE; |
| 195 | if (hw->phy.media_type == ixgbe_media_type_backplane) { |
| 196 | reg_bp |= IXGBE_AUTOC_ASM_PAUSE; |
| 197 | reg_bp &= ~IXGBE_AUTOC_SYM_PAUSE; |
| 198 | } else if (hw->phy.media_type == ixgbe_media_type_copper) { |
| 199 | reg_cu |= IXGBE_TAF_ASM_PAUSE; |
| 200 | reg_cu &= ~IXGBE_TAF_SYM_PAUSE; |
| 201 | } |
| 202 | break; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 203 | case ixgbe_fc_rx_pause: |
| 204 | /* |
| 205 | * Rx Flow control is enabled and Tx Flow control is |
| 206 | * disabled by software override. Since there really |
| 207 | * isn't a way to advertise that we are capable of RX |
| 208 | * Pause ONLY, we will advertise that we support both |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 209 | * symmetric and asymmetric Rx PAUSE, as such we fall |
| 210 | * through to the fc_full statement. Later, we will |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 211 | * disable the adapter's ability to send PAUSE frames. |
| 212 | */ |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 213 | case ixgbe_fc_full: |
| 214 | /* Flow control (both Rx and Tx) is enabled by SW override. */ |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 215 | reg |= IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 216 | if (hw->phy.media_type == ixgbe_media_type_backplane) |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 217 | reg_bp |= IXGBE_AUTOC_SYM_PAUSE | |
| 218 | IXGBE_AUTOC_ASM_PAUSE; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 219 | else if (hw->phy.media_type == ixgbe_media_type_copper) |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 220 | reg_cu |= IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 221 | break; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 222 | default: |
| 223 | hw_dbg(hw, "Flow control param set incorrectly\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 224 | return IXGBE_ERR_CONFIG; |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | if (hw->mac.type != ixgbe_mac_X540) { |
| 228 | /* |
| 229 | * Enable auto-negotiation between the MAC & PHY; |
| 230 | * the MAC will advertise clause 37 flow control. |
| 231 | */ |
| 232 | IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg); |
| 233 | reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL); |
| 234 | |
| 235 | /* Disable AN timeout */ |
| 236 | if (hw->fc.strict_ieee) |
| 237 | reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN; |
| 238 | |
| 239 | IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg); |
| 240 | hw_dbg(hw, "Set up FC; PCS1GLCTL = 0x%08X\n", reg); |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * AUTOC restart handles negotiation of 1G and 10G on backplane |
| 245 | * and copper. There is no need to set the PCS1GCTL register. |
| 246 | * |
| 247 | */ |
| 248 | if (hw->phy.media_type == ixgbe_media_type_backplane) { |
Don Skidmore | d7bbcd3 | 2012-10-24 06:19:01 +0000 | [diff] [blame] | 249 | /* Need the SW/FW semaphore around AUTOC writes if 82599 and |
| 250 | * LESM is on, likewise reset_pipeline requries the lock as |
| 251 | * it also writes AUTOC. |
| 252 | */ |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 253 | ret_val = hw->mac.ops.prot_autoc_write(hw, reg_bp, locked); |
| 254 | if (ret_val) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 255 | return ret_val; |
Don Skidmore | d7bbcd3 | 2012-10-24 06:19:01 +0000 | [diff] [blame] | 256 | |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 257 | } else if ((hw->phy.media_type == ixgbe_media_type_copper) && |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 258 | ixgbe_device_supports_autoneg_fc(hw)) { |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 259 | hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE, |
| 260 | MDIO_MMD_AN, reg_cu); |
| 261 | } |
| 262 | |
| 263 | hw_dbg(hw, "Set up FC; IXGBE_AUTOC = 0x%08X\n", reg); |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 264 | return ret_val; |
| 265 | } |
| 266 | |
| 267 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 268 | * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 269 | * @hw: pointer to hardware structure |
| 270 | * |
| 271 | * Starts the hardware by filling the bus info structure and media type, clears |
| 272 | * all on chip counters, initializes receive address registers, multicast |
| 273 | * table, VLAN filter table, calls routine to set up link and flow control |
| 274 | * settings, and leaves transmit and receive units disabled and uninitialized |
| 275 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 276 | s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 277 | { |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 278 | s32 ret_val; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 279 | u32 ctrl_ext; |
| 280 | |
| 281 | /* Set the media type */ |
| 282 | hw->phy.media_type = hw->mac.ops.get_media_type(hw); |
| 283 | |
| 284 | /* Identify the PHY */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 285 | hw->phy.ops.identify(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 286 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 287 | /* Clear the VLAN filter table */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 288 | hw->mac.ops.clear_vfta(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 289 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 290 | /* Clear statistics registers */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 291 | hw->mac.ops.clear_hw_cntrs(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 292 | |
| 293 | /* Set No Snoop Disable */ |
| 294 | ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); |
| 295 | ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS; |
| 296 | IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 297 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 298 | |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 299 | /* Setup flow control */ |
Mark Rustad | afdc71e | 2016-01-25 16:32:10 -0800 | [diff] [blame] | 300 | ret_val = hw->mac.ops.setup_fc(hw); |
Mark Rustad | 3507a9b | 2015-08-08 16:27:46 -0700 | [diff] [blame] | 301 | if (ret_val) |
| 302 | return ret_val; |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 303 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 304 | /* Clear adapter stopped flag */ |
| 305 | hw->adapter_stopped = false; |
| 306 | |
Mark Rustad | 3507a9b | 2015-08-08 16:27:46 -0700 | [diff] [blame] | 307 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | /** |
Emil Tantilov | 7184b7c | 2011-03-18 08:18:22 +0000 | [diff] [blame] | 311 | * ixgbe_start_hw_gen2 - Init sequence for common device family |
| 312 | * @hw: pointer to hw structure |
| 313 | * |
| 314 | * Performs the init sequence common to the second generation |
| 315 | * of 10 GbE devices. |
| 316 | * Devices in the second generation: |
| 317 | * 82599 |
| 318 | * X540 |
| 319 | **/ |
| 320 | s32 ixgbe_start_hw_gen2(struct ixgbe_hw *hw) |
| 321 | { |
| 322 | u32 i; |
| 323 | |
| 324 | /* Clear the rate limiters */ |
| 325 | for (i = 0; i < hw->mac.max_tx_queues; i++) { |
| 326 | IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, i); |
| 327 | IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, 0); |
| 328 | } |
| 329 | IXGBE_WRITE_FLUSH(hw); |
| 330 | |
Jeff Kirsher | 887012e | 2015-03-13 14:04:35 -0700 | [diff] [blame] | 331 | #ifndef CONFIG_SPARC |
Emil Tantilov | 3d5c520 | 2011-03-19 01:32:46 +0000 | [diff] [blame] | 332 | /* Disable relaxed ordering */ |
| 333 | for (i = 0; i < hw->mac.max_tx_queues; i++) { |
Jeff Kirsher | 887012e | 2015-03-13 14:04:35 -0700 | [diff] [blame] | 334 | u32 regval; |
| 335 | |
Emil Tantilov | 3d5c520 | 2011-03-19 01:32:46 +0000 | [diff] [blame] | 336 | regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(i)); |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 337 | regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN; |
Emil Tantilov | 3d5c520 | 2011-03-19 01:32:46 +0000 | [diff] [blame] | 338 | IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(i), regval); |
| 339 | } |
| 340 | |
| 341 | for (i = 0; i < hw->mac.max_rx_queues; i++) { |
Jeff Kirsher | 887012e | 2015-03-13 14:04:35 -0700 | [diff] [blame] | 342 | u32 regval; |
| 343 | |
Emil Tantilov | 3d5c520 | 2011-03-19 01:32:46 +0000 | [diff] [blame] | 344 | regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i)); |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 345 | regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN | |
| 346 | IXGBE_DCA_RXCTRL_HEAD_WRO_EN); |
Emil Tantilov | 3d5c520 | 2011-03-19 01:32:46 +0000 | [diff] [blame] | 347 | IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval); |
| 348 | } |
Jeff Kirsher | 887012e | 2015-03-13 14:04:35 -0700 | [diff] [blame] | 349 | #endif |
Emil Tantilov | 7184b7c | 2011-03-18 08:18:22 +0000 | [diff] [blame] | 350 | return 0; |
| 351 | } |
| 352 | |
| 353 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 354 | * ixgbe_init_hw_generic - Generic hardware initialization |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 355 | * @hw: pointer to hardware structure |
| 356 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 357 | * Initialize the hardware by resetting the hardware, filling the bus info |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 358 | * structure and media type, clears all on chip counters, initializes receive |
| 359 | * address registers, multicast table, VLAN filter table, calls routine to set |
| 360 | * up link and flow control settings, and leaves transmit and receive units |
| 361 | * disabled and uninitialized |
| 362 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 363 | s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 364 | { |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 365 | s32 status; |
| 366 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 367 | /* Reset the hardware */ |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 368 | status = hw->mac.ops.reset_hw(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 369 | |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 370 | if (status == 0) { |
| 371 | /* Start the HW */ |
| 372 | status = hw->mac.ops.start_hw(hw); |
| 373 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 374 | |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 375 | return status; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 379 | * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 380 | * @hw: pointer to hardware structure |
| 381 | * |
| 382 | * Clears all hardware statistics counters by reading them from the hardware |
| 383 | * Statistics counters are clear on read. |
| 384 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 385 | s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 386 | { |
| 387 | u16 i = 0; |
| 388 | |
| 389 | IXGBE_READ_REG(hw, IXGBE_CRCERRS); |
| 390 | IXGBE_READ_REG(hw, IXGBE_ILLERRC); |
| 391 | IXGBE_READ_REG(hw, IXGBE_ERRBC); |
| 392 | IXGBE_READ_REG(hw, IXGBE_MSPDC); |
| 393 | for (i = 0; i < 8; i++) |
| 394 | IXGBE_READ_REG(hw, IXGBE_MPC(i)); |
| 395 | |
| 396 | IXGBE_READ_REG(hw, IXGBE_MLFC); |
| 397 | IXGBE_READ_REG(hw, IXGBE_MRFC); |
| 398 | IXGBE_READ_REG(hw, IXGBE_RLEC); |
| 399 | IXGBE_READ_REG(hw, IXGBE_LXONTXC); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 400 | IXGBE_READ_REG(hw, IXGBE_LXOFFTXC); |
Emil Tantilov | 667c756 | 2011-02-26 06:40:05 +0000 | [diff] [blame] | 401 | if (hw->mac.type >= ixgbe_mac_82599EB) { |
| 402 | IXGBE_READ_REG(hw, IXGBE_LXONRXCNT); |
| 403 | IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT); |
| 404 | } else { |
| 405 | IXGBE_READ_REG(hw, IXGBE_LXONRXC); |
| 406 | IXGBE_READ_REG(hw, IXGBE_LXOFFRXC); |
| 407 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 408 | |
| 409 | for (i = 0; i < 8; i++) { |
| 410 | IXGBE_READ_REG(hw, IXGBE_PXONTXC(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 411 | IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i)); |
Emil Tantilov | 667c756 | 2011-02-26 06:40:05 +0000 | [diff] [blame] | 412 | if (hw->mac.type >= ixgbe_mac_82599EB) { |
| 413 | IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i)); |
| 414 | IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i)); |
| 415 | } else { |
| 416 | IXGBE_READ_REG(hw, IXGBE_PXONRXC(i)); |
| 417 | IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i)); |
| 418 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 419 | } |
Emil Tantilov | 667c756 | 2011-02-26 06:40:05 +0000 | [diff] [blame] | 420 | if (hw->mac.type >= ixgbe_mac_82599EB) |
| 421 | for (i = 0; i < 8; i++) |
| 422 | IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 423 | IXGBE_READ_REG(hw, IXGBE_PRC64); |
| 424 | IXGBE_READ_REG(hw, IXGBE_PRC127); |
| 425 | IXGBE_READ_REG(hw, IXGBE_PRC255); |
| 426 | IXGBE_READ_REG(hw, IXGBE_PRC511); |
| 427 | IXGBE_READ_REG(hw, IXGBE_PRC1023); |
| 428 | IXGBE_READ_REG(hw, IXGBE_PRC1522); |
| 429 | IXGBE_READ_REG(hw, IXGBE_GPRC); |
| 430 | IXGBE_READ_REG(hw, IXGBE_BPRC); |
| 431 | IXGBE_READ_REG(hw, IXGBE_MPRC); |
| 432 | IXGBE_READ_REG(hw, IXGBE_GPTC); |
| 433 | IXGBE_READ_REG(hw, IXGBE_GORCL); |
| 434 | IXGBE_READ_REG(hw, IXGBE_GORCH); |
| 435 | IXGBE_READ_REG(hw, IXGBE_GOTCL); |
| 436 | IXGBE_READ_REG(hw, IXGBE_GOTCH); |
Emil Tantilov | f3116f6 | 2011-07-29 06:46:15 +0000 | [diff] [blame] | 437 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 438 | for (i = 0; i < 8; i++) |
| 439 | IXGBE_READ_REG(hw, IXGBE_RNBC(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 440 | IXGBE_READ_REG(hw, IXGBE_RUC); |
| 441 | IXGBE_READ_REG(hw, IXGBE_RFC); |
| 442 | IXGBE_READ_REG(hw, IXGBE_ROC); |
| 443 | IXGBE_READ_REG(hw, IXGBE_RJC); |
| 444 | IXGBE_READ_REG(hw, IXGBE_MNGPRC); |
| 445 | IXGBE_READ_REG(hw, IXGBE_MNGPDC); |
| 446 | IXGBE_READ_REG(hw, IXGBE_MNGPTC); |
| 447 | IXGBE_READ_REG(hw, IXGBE_TORL); |
| 448 | IXGBE_READ_REG(hw, IXGBE_TORH); |
| 449 | IXGBE_READ_REG(hw, IXGBE_TPR); |
| 450 | IXGBE_READ_REG(hw, IXGBE_TPT); |
| 451 | IXGBE_READ_REG(hw, IXGBE_PTC64); |
| 452 | IXGBE_READ_REG(hw, IXGBE_PTC127); |
| 453 | IXGBE_READ_REG(hw, IXGBE_PTC255); |
| 454 | IXGBE_READ_REG(hw, IXGBE_PTC511); |
| 455 | IXGBE_READ_REG(hw, IXGBE_PTC1023); |
| 456 | IXGBE_READ_REG(hw, IXGBE_PTC1522); |
| 457 | IXGBE_READ_REG(hw, IXGBE_MPTC); |
| 458 | IXGBE_READ_REG(hw, IXGBE_BPTC); |
| 459 | for (i = 0; i < 16; i++) { |
| 460 | IXGBE_READ_REG(hw, IXGBE_QPRC(i)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 461 | IXGBE_READ_REG(hw, IXGBE_QPTC(i)); |
Emil Tantilov | 667c756 | 2011-02-26 06:40:05 +0000 | [diff] [blame] | 462 | if (hw->mac.type >= ixgbe_mac_82599EB) { |
| 463 | IXGBE_READ_REG(hw, IXGBE_QBRC_L(i)); |
| 464 | IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); |
| 465 | IXGBE_READ_REG(hw, IXGBE_QBTC_L(i)); |
| 466 | IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); |
| 467 | IXGBE_READ_REG(hw, IXGBE_QPRDC(i)); |
| 468 | } else { |
| 469 | IXGBE_READ_REG(hw, IXGBE_QBRC(i)); |
| 470 | IXGBE_READ_REG(hw, IXGBE_QBTC(i)); |
| 471 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Don Skidmore | e87ce1c | 2015-06-09 17:00:05 -0700 | [diff] [blame] | 474 | if (hw->mac.type == ixgbe_mac_X550 || hw->mac.type == ixgbe_mac_X540) { |
Emil Tantilov | a3aeea0 | 2011-02-26 06:40:11 +0000 | [diff] [blame] | 475 | if (hw->phy.id == 0) |
| 476 | hw->phy.ops.identify(hw); |
Emil Tantilov | c1085b1 | 2011-12-10 08:21:47 +0000 | [diff] [blame] | 477 | hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECL, MDIO_MMD_PCS, &i); |
| 478 | hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECH, MDIO_MMD_PCS, &i); |
| 479 | hw->phy.ops.read_reg(hw, IXGBE_LDPCECL, MDIO_MMD_PCS, &i); |
| 480 | hw->phy.ops.read_reg(hw, IXGBE_LDPCECH, MDIO_MMD_PCS, &i); |
Emil Tantilov | a3aeea0 | 2011-02-26 06:40:11 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | /** |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 487 | * ixgbe_read_pba_string_generic - Reads part number string from EEPROM |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 488 | * @hw: pointer to hardware structure |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 489 | * @pba_num: stores the part number string from the EEPROM |
| 490 | * @pba_num_size: part number string buffer length |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 491 | * |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 492 | * Reads the part number string from the EEPROM. |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 493 | **/ |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 494 | s32 ixgbe_read_pba_string_generic(struct ixgbe_hw *hw, u8 *pba_num, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 495 | u32 pba_num_size) |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 496 | { |
| 497 | s32 ret_val; |
| 498 | u16 data; |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 499 | u16 pba_ptr; |
| 500 | u16 offset; |
| 501 | u16 length; |
| 502 | |
| 503 | if (pba_num == NULL) { |
| 504 | hw_dbg(hw, "PBA string buffer was null\n"); |
| 505 | return IXGBE_ERR_INVALID_ARGUMENT; |
| 506 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 507 | |
| 508 | ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data); |
| 509 | if (ret_val) { |
| 510 | hw_dbg(hw, "NVM Read Error\n"); |
| 511 | return ret_val; |
| 512 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 513 | |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 514 | ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &pba_ptr); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 515 | if (ret_val) { |
| 516 | hw_dbg(hw, "NVM Read Error\n"); |
| 517 | return ret_val; |
| 518 | } |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 519 | |
| 520 | /* |
| 521 | * if data is not ptr guard the PBA must be in legacy format which |
| 522 | * means pba_ptr is actually our second data word for the PBA number |
| 523 | * and we can decode it into an ascii string |
| 524 | */ |
| 525 | if (data != IXGBE_PBANUM_PTR_GUARD) { |
| 526 | hw_dbg(hw, "NVM PBA number is not stored as string\n"); |
| 527 | |
| 528 | /* we will need 11 characters to store the PBA */ |
| 529 | if (pba_num_size < 11) { |
| 530 | hw_dbg(hw, "PBA string buffer too small\n"); |
| 531 | return IXGBE_ERR_NO_SPACE; |
| 532 | } |
| 533 | |
| 534 | /* extract hex string from data and pba_ptr */ |
| 535 | pba_num[0] = (data >> 12) & 0xF; |
| 536 | pba_num[1] = (data >> 8) & 0xF; |
| 537 | pba_num[2] = (data >> 4) & 0xF; |
| 538 | pba_num[3] = data & 0xF; |
| 539 | pba_num[4] = (pba_ptr >> 12) & 0xF; |
| 540 | pba_num[5] = (pba_ptr >> 8) & 0xF; |
| 541 | pba_num[6] = '-'; |
| 542 | pba_num[7] = 0; |
| 543 | pba_num[8] = (pba_ptr >> 4) & 0xF; |
| 544 | pba_num[9] = pba_ptr & 0xF; |
| 545 | |
| 546 | /* put a null character on the end of our string */ |
| 547 | pba_num[10] = '\0'; |
| 548 | |
| 549 | /* switch all the data but the '-' to hex char */ |
| 550 | for (offset = 0; offset < 10; offset++) { |
| 551 | if (pba_num[offset] < 0xA) |
| 552 | pba_num[offset] += '0'; |
| 553 | else if (pba_num[offset] < 0x10) |
| 554 | pba_num[offset] += 'A' - 0xA; |
| 555 | } |
| 556 | |
| 557 | return 0; |
| 558 | } |
| 559 | |
| 560 | ret_val = hw->eeprom.ops.read(hw, pba_ptr, &length); |
| 561 | if (ret_val) { |
| 562 | hw_dbg(hw, "NVM Read Error\n"); |
| 563 | return ret_val; |
| 564 | } |
| 565 | |
| 566 | if (length == 0xFFFF || length == 0) { |
| 567 | hw_dbg(hw, "NVM PBA number section invalid length\n"); |
| 568 | return IXGBE_ERR_PBA_SECTION; |
| 569 | } |
| 570 | |
| 571 | /* check if pba_num buffer is big enough */ |
| 572 | if (pba_num_size < (((u32)length * 2) - 1)) { |
| 573 | hw_dbg(hw, "PBA string buffer too small\n"); |
| 574 | return IXGBE_ERR_NO_SPACE; |
| 575 | } |
| 576 | |
| 577 | /* trim pba length from start of string */ |
| 578 | pba_ptr++; |
| 579 | length--; |
| 580 | |
| 581 | for (offset = 0; offset < length; offset++) { |
| 582 | ret_val = hw->eeprom.ops.read(hw, pba_ptr + offset, &data); |
| 583 | if (ret_val) { |
| 584 | hw_dbg(hw, "NVM Read Error\n"); |
| 585 | return ret_val; |
| 586 | } |
| 587 | pba_num[offset * 2] = (u8)(data >> 8); |
| 588 | pba_num[(offset * 2) + 1] = (u8)(data & 0xFF); |
| 589 | } |
| 590 | pba_num[offset * 2] = '\0'; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 591 | |
| 592 | return 0; |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * ixgbe_get_mac_addr_generic - Generic get MAC address |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 597 | * @hw: pointer to hardware structure |
| 598 | * @mac_addr: Adapter MAC address |
| 599 | * |
| 600 | * Reads the adapter's MAC address from first Receive Address Register (RAR0) |
| 601 | * A reset of the adapter must be performed prior to calling this function |
| 602 | * in order for the MAC address to have been loaded from the EEPROM into RAR0 |
| 603 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 604 | 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] | 605 | { |
| 606 | u32 rar_high; |
| 607 | u32 rar_low; |
| 608 | u16 i; |
| 609 | |
| 610 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0)); |
| 611 | rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0)); |
| 612 | |
| 613 | for (i = 0; i < 4; i++) |
| 614 | mac_addr[i] = (u8)(rar_low >> (i*8)); |
| 615 | |
| 616 | for (i = 0; i < 2; i++) |
| 617 | mac_addr[i+4] = (u8)(rar_high >> (i*8)); |
| 618 | |
| 619 | return 0; |
| 620 | } |
| 621 | |
Jacob Keller | ef1889d | 2013-02-15 09:18:15 +0000 | [diff] [blame] | 622 | enum ixgbe_bus_width ixgbe_convert_bus_width(u16 link_status) |
| 623 | { |
| 624 | switch (link_status & IXGBE_PCI_LINK_WIDTH) { |
| 625 | case IXGBE_PCI_LINK_WIDTH_1: |
| 626 | return ixgbe_bus_width_pcie_x1; |
| 627 | case IXGBE_PCI_LINK_WIDTH_2: |
| 628 | return ixgbe_bus_width_pcie_x2; |
| 629 | case IXGBE_PCI_LINK_WIDTH_4: |
| 630 | return ixgbe_bus_width_pcie_x4; |
| 631 | case IXGBE_PCI_LINK_WIDTH_8: |
| 632 | return ixgbe_bus_width_pcie_x8; |
| 633 | default: |
| 634 | return ixgbe_bus_width_unknown; |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | enum ixgbe_bus_speed ixgbe_convert_bus_speed(u16 link_status) |
| 639 | { |
| 640 | switch (link_status & IXGBE_PCI_LINK_SPEED) { |
| 641 | case IXGBE_PCI_LINK_SPEED_2500: |
| 642 | return ixgbe_bus_speed_2500; |
| 643 | case IXGBE_PCI_LINK_SPEED_5000: |
| 644 | return ixgbe_bus_speed_5000; |
| 645 | case IXGBE_PCI_LINK_SPEED_8000: |
| 646 | return ixgbe_bus_speed_8000; |
| 647 | default: |
| 648 | return ixgbe_bus_speed_unknown; |
| 649 | } |
| 650 | } |
| 651 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 652 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 653 | * ixgbe_get_bus_info_generic - Generic set PCI bus info |
| 654 | * @hw: pointer to hardware structure |
| 655 | * |
| 656 | * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure |
| 657 | **/ |
| 658 | s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw) |
| 659 | { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 660 | u16 link_status; |
| 661 | |
| 662 | hw->bus.type = ixgbe_bus_type_pci_express; |
| 663 | |
| 664 | /* Get the negotiated link width and speed from PCI config space */ |
Jacob Keller | 0d7c6e0 | 2014-02-22 01:23:58 +0000 | [diff] [blame] | 665 | link_status = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_LINK_STATUS); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 666 | |
Jacob Keller | ef1889d | 2013-02-15 09:18:15 +0000 | [diff] [blame] | 667 | hw->bus.width = ixgbe_convert_bus_width(link_status); |
| 668 | hw->bus.speed = ixgbe_convert_bus_speed(link_status); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 669 | |
Jacob Keller | 0d7c6e0 | 2014-02-22 01:23:58 +0000 | [diff] [blame] | 670 | hw->mac.ops.set_lan_id(hw); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 671 | |
| 672 | return 0; |
| 673 | } |
| 674 | |
| 675 | /** |
| 676 | * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices |
| 677 | * @hw: pointer to the HW structure |
| 678 | * |
| 679 | * Determines the LAN function id by reading memory-mapped registers |
| 680 | * and swaps the port value if requested. |
| 681 | **/ |
| 682 | void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw) |
| 683 | { |
| 684 | struct ixgbe_bus_info *bus = &hw->bus; |
| 685 | u32 reg; |
| 686 | |
| 687 | reg = IXGBE_READ_REG(hw, IXGBE_STATUS); |
| 688 | bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT; |
| 689 | bus->lan_id = bus->func; |
| 690 | |
| 691 | /* check for a port swap */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 692 | reg = IXGBE_READ_REG(hw, IXGBE_FACTPS(hw)); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 693 | if (reg & IXGBE_FACTPS_LFS) |
| 694 | bus->func ^= 0x1; |
| 695 | } |
| 696 | |
| 697 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 698 | * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 699 | * @hw: pointer to hardware structure |
| 700 | * |
| 701 | * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts, |
| 702 | * disables transmit and receive units. The adapter_stopped flag is used by |
| 703 | * the shared code and drivers to determine if the adapter is in a stopped |
| 704 | * state and should not touch the hardware. |
| 705 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 706 | s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 707 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 708 | u32 reg_val; |
| 709 | u16 i; |
| 710 | |
| 711 | /* |
| 712 | * Set the adapter_stopped flag so other driver functions stop touching |
| 713 | * the hardware |
| 714 | */ |
| 715 | hw->adapter_stopped = true; |
| 716 | |
| 717 | /* Disable the receive unit */ |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 718 | hw->mac.ops.disable_rx(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 719 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 720 | /* Clear interrupt mask to stop interrupts from being generated */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 721 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK); |
| 722 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 723 | /* Clear any pending interrupts, flush previous writes */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 724 | IXGBE_READ_REG(hw, IXGBE_EICR); |
| 725 | |
| 726 | /* Disable the transmit unit. Each queue must be disabled. */ |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 727 | for (i = 0; i < hw->mac.max_tx_queues; i++) |
| 728 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), IXGBE_TXDCTL_SWFLSH); |
| 729 | |
| 730 | /* Disable the receive unit by stopping each queue */ |
| 731 | for (i = 0; i < hw->mac.max_rx_queues; i++) { |
| 732 | reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); |
| 733 | reg_val &= ~IXGBE_RXDCTL_ENABLE; |
| 734 | reg_val |= IXGBE_RXDCTL_SWFLSH; |
| 735 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 736 | } |
| 737 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 738 | /* flush all queues disables */ |
| 739 | IXGBE_WRITE_FLUSH(hw); |
| 740 | usleep_range(1000, 2000); |
| 741 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 742 | /* |
| 743 | * Prevent the PCI-E bus from from hanging by disabling PCI-E master |
| 744 | * access and verify no pending requests |
| 745 | */ |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 746 | return ixgbe_disable_pcie_master(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 747 | } |
| 748 | |
| 749 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 750 | * ixgbe_led_on_generic - Turns on the software controllable LEDs. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 751 | * @hw: pointer to hardware structure |
| 752 | * @index: led number to turn on |
| 753 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 754 | s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 755 | { |
| 756 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 757 | |
| 758 | /* To turn on the LED, set mode to ON. */ |
| 759 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 760 | led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index); |
| 761 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 762 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 763 | |
| 764 | return 0; |
| 765 | } |
| 766 | |
| 767 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 768 | * ixgbe_led_off_generic - Turns off the software controllable LEDs. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 769 | * @hw: pointer to hardware structure |
| 770 | * @index: led number to turn off |
| 771 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 772 | s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 773 | { |
| 774 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
| 775 | |
| 776 | /* To turn off the LED, set mode to OFF. */ |
| 777 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 778 | led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index); |
| 779 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 780 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 781 | |
| 782 | return 0; |
| 783 | } |
| 784 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 785 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 786 | * ixgbe_init_eeprom_params_generic - Initialize EEPROM params |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 787 | * @hw: pointer to hardware structure |
| 788 | * |
| 789 | * Initializes the EEPROM parameters ixgbe_eeprom_info within the |
| 790 | * ixgbe_hw struct in order to set up EEPROM access. |
| 791 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 792 | s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 793 | { |
| 794 | struct ixgbe_eeprom_info *eeprom = &hw->eeprom; |
| 795 | u32 eec; |
| 796 | u16 eeprom_size; |
| 797 | |
| 798 | if (eeprom->type == ixgbe_eeprom_uninitialized) { |
| 799 | eeprom->type = ixgbe_eeprom_none; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 800 | /* Set default semaphore delay to 10ms which is a well |
| 801 | * tested value */ |
| 802 | eeprom->semaphore_delay = 10; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 803 | /* Clear EEPROM page size, it will be initialized as needed */ |
| 804 | eeprom->word_page_size = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 805 | |
| 806 | /* |
| 807 | * Check for EEPROM present first. |
| 808 | * If not present leave as none |
| 809 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 810 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 811 | if (eec & IXGBE_EEC_PRES) { |
| 812 | eeprom->type = ixgbe_eeprom_spi; |
| 813 | |
| 814 | /* |
| 815 | * SPI EEPROM is assumed here. This code would need to |
| 816 | * change if a future EEPROM is not SPI. |
| 817 | */ |
| 818 | eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >> |
| 819 | IXGBE_EEC_SIZE_SHIFT); |
| 820 | eeprom->word_size = 1 << (eeprom_size + |
| 821 | IXGBE_EEPROM_WORD_SIZE_SHIFT); |
| 822 | } |
| 823 | |
| 824 | if (eec & IXGBE_EEC_ADDR_SIZE) |
| 825 | eeprom->address_bits = 16; |
| 826 | else |
| 827 | eeprom->address_bits = 8; |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 828 | hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: %d\n", |
| 829 | eeprom->type, eeprom->word_size, eeprom->address_bits); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | return 0; |
| 833 | } |
| 834 | |
| 835 | /** |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 836 | * ixgbe_write_eeprom_buffer_bit_bang_generic - Write EEPROM using bit-bang |
| 837 | * @hw: pointer to hardware structure |
| 838 | * @offset: offset within the EEPROM to write |
| 839 | * @words: number of words |
| 840 | * @data: 16 bit word(s) to write to EEPROM |
| 841 | * |
| 842 | * Reads 16 bit word(s) from EEPROM through bit-bang method |
| 843 | **/ |
| 844 | s32 ixgbe_write_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset, |
| 845 | u16 words, u16 *data) |
| 846 | { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 847 | s32 status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 848 | u16 i, count; |
| 849 | |
| 850 | hw->eeprom.ops.init_params(hw); |
| 851 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 852 | if (words == 0) |
| 853 | return IXGBE_ERR_INVALID_ARGUMENT; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 854 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 855 | if (offset + words > hw->eeprom.word_size) |
| 856 | return IXGBE_ERR_EEPROM; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 857 | |
| 858 | /* |
| 859 | * The EEPROM page size cannot be queried from the chip. We do lazy |
| 860 | * initialization. It is worth to do that when we write large buffer. |
| 861 | */ |
| 862 | if ((hw->eeprom.word_page_size == 0) && |
| 863 | (words > IXGBE_EEPROM_PAGE_SIZE_MAX)) |
| 864 | ixgbe_detect_eeprom_page_size_generic(hw, offset); |
| 865 | |
| 866 | /* |
| 867 | * We cannot hold synchronization semaphores for too long |
| 868 | * to avoid other entity starvation. However it is more efficient |
| 869 | * to read in bursts than synchronizing access for each word. |
| 870 | */ |
| 871 | for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) { |
| 872 | count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ? |
| 873 | IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i); |
| 874 | status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset + i, |
| 875 | count, &data[i]); |
| 876 | |
| 877 | if (status != 0) |
| 878 | break; |
| 879 | } |
| 880 | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 881 | return status; |
| 882 | } |
| 883 | |
| 884 | /** |
| 885 | * ixgbe_write_eeprom_buffer_bit_bang - Writes 16 bit word(s) to EEPROM |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 886 | * @hw: pointer to hardware structure |
| 887 | * @offset: offset within the EEPROM to be written to |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 888 | * @words: number of word(s) |
| 889 | * @data: 16 bit word(s) to be written to the EEPROM |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 890 | * |
| 891 | * If ixgbe_eeprom_update_checksum is not called after this function, the |
| 892 | * EEPROM will most likely contain an invalid checksum. |
| 893 | **/ |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 894 | static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset, |
| 895 | u16 words, u16 *data) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 896 | { |
| 897 | s32 status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 898 | u16 word; |
| 899 | u16 page_size; |
| 900 | u16 i; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 901 | u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI; |
| 902 | |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 903 | /* Prepare the EEPROM for writing */ |
| 904 | status = ixgbe_acquire_eeprom(hw); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 905 | if (status) |
| 906 | return status; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 907 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 908 | if (ixgbe_ready_eeprom(hw) != 0) { |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 909 | ixgbe_release_eeprom(hw); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 910 | return IXGBE_ERR_EEPROM; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 911 | } |
| 912 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 913 | for (i = 0; i < words; i++) { |
| 914 | ixgbe_standby_eeprom(hw); |
| 915 | |
| 916 | /* Send the WRITE ENABLE command (8 bit opcode) */ |
| 917 | ixgbe_shift_out_eeprom_bits(hw, |
| 918 | IXGBE_EEPROM_WREN_OPCODE_SPI, |
| 919 | IXGBE_EEPROM_OPCODE_BITS); |
| 920 | |
| 921 | ixgbe_standby_eeprom(hw); |
| 922 | |
| 923 | /* Some SPI eeproms use the 8th address bit embedded |
| 924 | * in the opcode |
| 925 | */ |
| 926 | if ((hw->eeprom.address_bits == 8) && |
| 927 | ((offset + i) >= 128)) |
| 928 | write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI; |
| 929 | |
| 930 | /* Send the Write command (8-bit opcode + addr) */ |
| 931 | ixgbe_shift_out_eeprom_bits(hw, write_opcode, |
| 932 | IXGBE_EEPROM_OPCODE_BITS); |
| 933 | ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2), |
| 934 | hw->eeprom.address_bits); |
| 935 | |
| 936 | page_size = hw->eeprom.word_page_size; |
| 937 | |
| 938 | /* Send the data in burst via SPI */ |
| 939 | do { |
| 940 | word = data[i]; |
| 941 | word = (word >> 8) | (word << 8); |
| 942 | ixgbe_shift_out_eeprom_bits(hw, word, 16); |
| 943 | |
| 944 | if (page_size == 0) |
| 945 | break; |
| 946 | |
| 947 | /* do not wrap around page */ |
| 948 | if (((offset + i) & (page_size - 1)) == |
| 949 | (page_size - 1)) |
| 950 | break; |
| 951 | } while (++i < words); |
| 952 | |
| 953 | ixgbe_standby_eeprom(hw); |
| 954 | usleep_range(10000, 20000); |
| 955 | } |
| 956 | /* Done with writing - release the EEPROM */ |
| 957 | ixgbe_release_eeprom(hw); |
| 958 | |
| 959 | return 0; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | /** |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 963 | * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 964 | * @hw: pointer to hardware structure |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 965 | * @offset: offset within the EEPROM to be written to |
| 966 | * @data: 16 bit word to be written to the EEPROM |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 967 | * |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 968 | * If ixgbe_eeprom_update_checksum is not called after this function, the |
| 969 | * EEPROM will most likely contain an invalid checksum. |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 970 | **/ |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 971 | s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data) |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 972 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 973 | hw->eeprom.ops.init_params(hw); |
| 974 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 975 | if (offset >= hw->eeprom.word_size) |
| 976 | return IXGBE_ERR_EEPROM; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 977 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 978 | return ixgbe_write_eeprom_buffer_bit_bang(hw, offset, 1, &data); |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 979 | } |
| 980 | |
| 981 | /** |
| 982 | * ixgbe_read_eeprom_buffer_bit_bang_generic - Read EEPROM using bit-bang |
| 983 | * @hw: pointer to hardware structure |
| 984 | * @offset: offset within the EEPROM to be read |
| 985 | * @words: number of word(s) |
| 986 | * @data: read 16 bit words(s) from EEPROM |
| 987 | * |
| 988 | * Reads 16 bit word(s) from EEPROM through bit-bang method |
| 989 | **/ |
| 990 | s32 ixgbe_read_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset, |
| 991 | u16 words, u16 *data) |
| 992 | { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 993 | s32 status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 994 | u16 i, count; |
| 995 | |
| 996 | hw->eeprom.ops.init_params(hw); |
| 997 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 998 | if (words == 0) |
| 999 | return IXGBE_ERR_INVALID_ARGUMENT; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1000 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1001 | if (offset + words > hw->eeprom.word_size) |
| 1002 | return IXGBE_ERR_EEPROM; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1003 | |
| 1004 | /* |
| 1005 | * We cannot hold synchronization semaphores for too long |
| 1006 | * to avoid other entity starvation. However it is more efficient |
| 1007 | * to read in bursts than synchronizing access for each word. |
| 1008 | */ |
| 1009 | for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) { |
| 1010 | count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ? |
| 1011 | IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i); |
| 1012 | |
| 1013 | status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset + i, |
| 1014 | count, &data[i]); |
| 1015 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1016 | if (status) |
| 1017 | return status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1018 | } |
| 1019 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1020 | return 0; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
| 1023 | /** |
| 1024 | * ixgbe_read_eeprom_buffer_bit_bang - Read EEPROM using bit-bang |
| 1025 | * @hw: pointer to hardware structure |
| 1026 | * @offset: offset within the EEPROM to be read |
| 1027 | * @words: number of word(s) |
| 1028 | * @data: read 16 bit word(s) from EEPROM |
| 1029 | * |
| 1030 | * Reads 16 bit word(s) from EEPROM through bit-bang method |
| 1031 | **/ |
| 1032 | static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset, |
| 1033 | u16 words, u16 *data) |
| 1034 | { |
| 1035 | s32 status; |
| 1036 | u16 word_in; |
| 1037 | u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI; |
| 1038 | u16 i; |
| 1039 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1040 | /* Prepare the EEPROM for reading */ |
| 1041 | status = ixgbe_acquire_eeprom(hw); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1042 | if (status) |
| 1043 | return status; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1044 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1045 | if (ixgbe_ready_eeprom(hw) != 0) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1046 | ixgbe_release_eeprom(hw); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1047 | return IXGBE_ERR_EEPROM; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1050 | for (i = 0; i < words; i++) { |
| 1051 | ixgbe_standby_eeprom(hw); |
| 1052 | /* Some SPI eeproms use the 8th address bit embedded |
| 1053 | * in the opcode |
| 1054 | */ |
| 1055 | if ((hw->eeprom.address_bits == 8) && |
| 1056 | ((offset + i) >= 128)) |
| 1057 | read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI; |
| 1058 | |
| 1059 | /* Send the READ command (opcode + addr) */ |
| 1060 | ixgbe_shift_out_eeprom_bits(hw, read_opcode, |
| 1061 | IXGBE_EEPROM_OPCODE_BITS); |
| 1062 | ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2), |
| 1063 | hw->eeprom.address_bits); |
| 1064 | |
| 1065 | /* Read the data. */ |
| 1066 | word_in = ixgbe_shift_in_eeprom_bits(hw, 16); |
| 1067 | data[i] = (word_in >> 8) | (word_in << 8); |
| 1068 | } |
| 1069 | |
| 1070 | /* End this read operation */ |
| 1071 | ixgbe_release_eeprom(hw); |
| 1072 | |
| 1073 | return 0; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | /** |
| 1077 | * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang |
| 1078 | * @hw: pointer to hardware structure |
| 1079 | * @offset: offset within the EEPROM to be read |
| 1080 | * @data: read 16 bit value from EEPROM |
| 1081 | * |
| 1082 | * Reads 16 bit value from EEPROM through bit-bang method |
| 1083 | **/ |
| 1084 | s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset, |
| 1085 | u16 *data) |
| 1086 | { |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1087 | hw->eeprom.ops.init_params(hw); |
| 1088 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1089 | if (offset >= hw->eeprom.word_size) |
| 1090 | return IXGBE_ERR_EEPROM; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1091 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1092 | return ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data); |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | /** |
| 1096 | * ixgbe_read_eerd_buffer_generic - Read EEPROM word(s) using EERD |
| 1097 | * @hw: pointer to hardware structure |
| 1098 | * @offset: offset of word in the EEPROM to read |
| 1099 | * @words: number of word(s) |
| 1100 | * @data: 16 bit word(s) from the EEPROM |
| 1101 | * |
| 1102 | * Reads a 16 bit word(s) from the EEPROM using the EERD register. |
| 1103 | **/ |
| 1104 | s32 ixgbe_read_eerd_buffer_generic(struct ixgbe_hw *hw, u16 offset, |
| 1105 | u16 words, u16 *data) |
| 1106 | { |
| 1107 | u32 eerd; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1108 | s32 status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1109 | u32 i; |
| 1110 | |
| 1111 | hw->eeprom.ops.init_params(hw); |
| 1112 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1113 | if (words == 0) |
| 1114 | return IXGBE_ERR_INVALID_ARGUMENT; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1115 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1116 | if (offset >= hw->eeprom.word_size) |
| 1117 | return IXGBE_ERR_EEPROM; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1118 | |
| 1119 | for (i = 0; i < words; i++) { |
Emil Tantilov | d011157 | 2013-02-05 09:43:26 +0000 | [diff] [blame] | 1120 | eerd = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1121 | IXGBE_EEPROM_RW_REG_START; |
| 1122 | |
| 1123 | IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd); |
| 1124 | status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_READ); |
| 1125 | |
| 1126 | if (status == 0) { |
| 1127 | data[i] = (IXGBE_READ_REG(hw, IXGBE_EERD) >> |
| 1128 | IXGBE_EEPROM_RW_REG_DATA); |
| 1129 | } else { |
| 1130 | hw_dbg(hw, "Eeprom read timed out\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1131 | return status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1132 | } |
| 1133 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1134 | |
| 1135 | return 0; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | /** |
| 1139 | * ixgbe_detect_eeprom_page_size_generic - Detect EEPROM page size |
| 1140 | * @hw: pointer to hardware structure |
| 1141 | * @offset: offset within the EEPROM to be used as a scratch pad |
| 1142 | * |
| 1143 | * Discover EEPROM page size by writing marching data at given offset. |
| 1144 | * This function is called only when we are writing a new large buffer |
| 1145 | * at given offset so the data would be overwritten anyway. |
| 1146 | **/ |
| 1147 | static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw, |
| 1148 | u16 offset) |
| 1149 | { |
| 1150 | u16 data[IXGBE_EEPROM_PAGE_SIZE_MAX]; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1151 | s32 status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1152 | u16 i; |
| 1153 | |
| 1154 | for (i = 0; i < IXGBE_EEPROM_PAGE_SIZE_MAX; i++) |
| 1155 | data[i] = i; |
| 1156 | |
| 1157 | hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX; |
| 1158 | status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset, |
| 1159 | IXGBE_EEPROM_PAGE_SIZE_MAX, data); |
| 1160 | hw->eeprom.word_page_size = 0; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1161 | if (status) |
| 1162 | return status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1163 | |
| 1164 | status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1165 | if (status) |
| 1166 | return status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1167 | |
| 1168 | /* |
| 1169 | * When writing in burst more than the actual page size |
| 1170 | * EEPROM address wraps around current page. |
| 1171 | */ |
| 1172 | hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX - data[0]; |
| 1173 | |
Jakub Kicinski | c5ffe7e | 2014-04-02 10:33:22 +0000 | [diff] [blame] | 1174 | hw_dbg(hw, "Detected EEPROM page size = %d words.\n", |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1175 | hw->eeprom.word_page_size); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1176 | return 0; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | /** |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 1180 | * ixgbe_read_eerd_generic - Read EEPROM word using EERD |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1181 | * @hw: pointer to hardware structure |
| 1182 | * @offset: offset of word in the EEPROM to read |
| 1183 | * @data: word read from the EEPROM |
| 1184 | * |
| 1185 | * Reads a 16 bit word from the EEPROM using the EERD register. |
| 1186 | **/ |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 1187 | s32 ixgbe_read_eerd_generic(struct ixgbe_hw *hw, u16 offset, u16 *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1188 | { |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1189 | return ixgbe_read_eerd_buffer_generic(hw, offset, 1, data); |
| 1190 | } |
| 1191 | |
| 1192 | /** |
| 1193 | * ixgbe_write_eewr_buffer_generic - Write EEPROM word(s) using EEWR |
| 1194 | * @hw: pointer to hardware structure |
| 1195 | * @offset: offset of word in the EEPROM to write |
| 1196 | * @words: number of words |
| 1197 | * @data: word(s) write to the EEPROM |
| 1198 | * |
| 1199 | * Write a 16 bit word(s) to the EEPROM using the EEWR register. |
| 1200 | **/ |
| 1201 | s32 ixgbe_write_eewr_buffer_generic(struct ixgbe_hw *hw, u16 offset, |
| 1202 | u16 words, u16 *data) |
| 1203 | { |
| 1204 | u32 eewr; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1205 | s32 status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1206 | u16 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1207 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1208 | hw->eeprom.ops.init_params(hw); |
| 1209 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1210 | if (words == 0) |
| 1211 | return IXGBE_ERR_INVALID_ARGUMENT; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1212 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1213 | if (offset >= hw->eeprom.word_size) |
| 1214 | return IXGBE_ERR_EEPROM; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1215 | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1216 | for (i = 0; i < words; i++) { |
| 1217 | eewr = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) | |
| 1218 | (data[i] << IXGBE_EEPROM_RW_REG_DATA) | |
| 1219 | IXGBE_EEPROM_RW_REG_START; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1220 | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1221 | status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1222 | if (status) { |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1223 | hw_dbg(hw, "Eeprom write EEWR timed out\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1224 | return status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1225 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1226 | |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1227 | IXGBE_WRITE_REG(hw, IXGBE_EEWR, eewr); |
| 1228 | |
| 1229 | status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1230 | if (status) { |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1231 | hw_dbg(hw, "Eeprom write EEWR timed out\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1232 | return status; |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1233 | } |
| 1234 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1235 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1236 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1237 | } |
| 1238 | |
| 1239 | /** |
Emil Tantilov | eb9c3e3 | 2011-03-24 00:57:50 +0000 | [diff] [blame] | 1240 | * ixgbe_write_eewr_generic - Write EEPROM word using EEWR |
| 1241 | * @hw: pointer to hardware structure |
| 1242 | * @offset: offset of word in the EEPROM to write |
| 1243 | * @data: word write to the EEPROM |
| 1244 | * |
| 1245 | * Write a 16 bit word to the EEPROM using the EEWR register. |
| 1246 | **/ |
| 1247 | s32 ixgbe_write_eewr_generic(struct ixgbe_hw *hw, u16 offset, u16 data) |
| 1248 | { |
Emil Tantilov | 68c7005 | 2011-04-20 08:49:06 +0000 | [diff] [blame] | 1249 | return ixgbe_write_eewr_buffer_generic(hw, offset, 1, &data); |
Emil Tantilov | eb9c3e3 | 2011-03-24 00:57:50 +0000 | [diff] [blame] | 1250 | } |
| 1251 | |
| 1252 | /** |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 1253 | * ixgbe_poll_eerd_eewr_done - Poll EERD read or EEWR write status |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1254 | * @hw: pointer to hardware structure |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 1255 | * @ee_reg: EEPROM flag for polling |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1256 | * |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 1257 | * Polls the status bit (bit 1) of the EERD or EEWR to determine when the |
| 1258 | * read or write is done respectively. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1259 | **/ |
Emil Tantilov | eb9c3e3 | 2011-03-24 00:57:50 +0000 | [diff] [blame] | 1260 | static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1261 | { |
| 1262 | u32 i; |
| 1263 | u32 reg; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1264 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 1265 | for (i = 0; i < IXGBE_EERD_EEWR_ATTEMPTS; i++) { |
| 1266 | if (ee_reg == IXGBE_NVM_POLL_READ) |
| 1267 | reg = IXGBE_READ_REG(hw, IXGBE_EERD); |
| 1268 | else |
| 1269 | reg = IXGBE_READ_REG(hw, IXGBE_EEWR); |
| 1270 | |
| 1271 | if (reg & IXGBE_EEPROM_RW_REG_DONE) { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1272 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1273 | } |
| 1274 | udelay(5); |
| 1275 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1276 | return IXGBE_ERR_EEPROM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1277 | } |
| 1278 | |
| 1279 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1280 | * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang |
| 1281 | * @hw: pointer to hardware structure |
| 1282 | * |
| 1283 | * Prepares EEPROM for access using bit-bang method. This function should |
| 1284 | * be called before issuing a command to the EEPROM. |
| 1285 | **/ |
| 1286 | static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw) |
| 1287 | { |
Emil Tantilov | dbf893e | 2011-02-08 09:42:41 +0000 | [diff] [blame] | 1288 | u32 eec; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1289 | u32 i; |
| 1290 | |
Don Skidmore | 5e65510 | 2011-02-25 01:58:04 +0000 | [diff] [blame] | 1291 | if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1292 | return IXGBE_ERR_SWFW_SYNC; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1293 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1294 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1295 | |
| 1296 | /* Request EEPROM Access */ |
| 1297 | eec |= IXGBE_EEC_REQ; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1298 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1299 | |
| 1300 | for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) { |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1301 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1302 | if (eec & IXGBE_EEC_GNT) |
| 1303 | break; |
| 1304 | udelay(5); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1305 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1306 | |
| 1307 | /* Release if grant not acquired */ |
| 1308 | if (!(eec & IXGBE_EEC_GNT)) { |
| 1309 | eec &= ~IXGBE_EEC_REQ; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1310 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1311 | hw_dbg(hw, "Could not acquire EEPROM grant\n"); |
| 1312 | |
| 1313 | hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); |
| 1314 | return IXGBE_ERR_EEPROM; |
| 1315 | } |
| 1316 | |
| 1317 | /* Setup EEPROM for Read/Write */ |
| 1318 | /* Clear CS and SK */ |
| 1319 | eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK); |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1320 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1321 | IXGBE_WRITE_FLUSH(hw); |
| 1322 | udelay(1); |
| 1323 | return 0; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1324 | } |
| 1325 | |
| 1326 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1327 | * ixgbe_get_eeprom_semaphore - Get hardware semaphore |
| 1328 | * @hw: pointer to hardware structure |
| 1329 | * |
| 1330 | * Sets the hardware semaphores so EEPROM access can occur for bit-bang method |
| 1331 | **/ |
| 1332 | static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw) |
| 1333 | { |
Emil Tantilov | dbf893e | 2011-02-08 09:42:41 +0000 | [diff] [blame] | 1334 | u32 timeout = 2000; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1335 | u32 i; |
| 1336 | u32 swsm; |
| 1337 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1338 | /* Get SMBI software semaphore between device drivers first */ |
| 1339 | for (i = 0; i < timeout; i++) { |
| 1340 | /* |
| 1341 | * If the SMBI bit is 0 when we read it, then the bit will be |
| 1342 | * set and we have the semaphore |
| 1343 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1344 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw)); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1345 | if (!(swsm & IXGBE_SWSM_SMBI)) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1346 | break; |
Mark Rustad | d819fc5 | 2014-07-22 06:50:36 +0000 | [diff] [blame] | 1347 | usleep_range(50, 100); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1348 | } |
| 1349 | |
Emil Tantilov | 51275d3 | 2011-04-08 01:23:59 +0000 | [diff] [blame] | 1350 | if (i == timeout) { |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 1351 | hw_dbg(hw, "Driver can't access the Eeprom - SMBI Semaphore not granted.\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1352 | /* this release is particularly important because our attempts |
Emil Tantilov | 51275d3 | 2011-04-08 01:23:59 +0000 | [diff] [blame] | 1353 | * above to get the semaphore may have succeeded, and if there |
| 1354 | * was a timeout, we should unconditionally clear the semaphore |
| 1355 | * bits to free the driver to make progress |
| 1356 | */ |
| 1357 | ixgbe_release_eeprom_semaphore(hw); |
| 1358 | |
Mark Rustad | d819fc5 | 2014-07-22 06:50:36 +0000 | [diff] [blame] | 1359 | usleep_range(50, 100); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1360 | /* one last try |
Emil Tantilov | 51275d3 | 2011-04-08 01:23:59 +0000 | [diff] [blame] | 1361 | * If the SMBI bit is 0 when we read it, then the bit will be |
| 1362 | * set and we have the semaphore |
| 1363 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1364 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw)); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1365 | if (swsm & IXGBE_SWSM_SMBI) { |
| 1366 | hw_dbg(hw, "Software semaphore SMBI between device drivers not granted.\n"); |
| 1367 | return IXGBE_ERR_EEPROM; |
| 1368 | } |
Emil Tantilov | 51275d3 | 2011-04-08 01:23:59 +0000 | [diff] [blame] | 1369 | } |
| 1370 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1371 | /* Now get the semaphore between SW/FW through the SWESMBI bit */ |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1372 | for (i = 0; i < timeout; i++) { |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1373 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1374 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1375 | /* Set the SW EEPROM semaphore bit to request access */ |
| 1376 | swsm |= IXGBE_SWSM_SWESMBI; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1377 | IXGBE_WRITE_REG(hw, IXGBE_SWSM(hw), swsm); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1378 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1379 | /* If we set the bit successfully then we got the |
| 1380 | * semaphore. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1381 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1382 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw)); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1383 | if (swsm & IXGBE_SWSM_SWESMBI) |
| 1384 | break; |
| 1385 | |
| 1386 | usleep_range(50, 100); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1389 | /* Release semaphores and return error if SW EEPROM semaphore |
| 1390 | * was not granted because we don't have access to the EEPROM |
| 1391 | */ |
| 1392 | if (i >= timeout) { |
| 1393 | hw_dbg(hw, "SWESMBI Software EEPROM semaphore not granted.\n"); |
| 1394 | ixgbe_release_eeprom_semaphore(hw); |
| 1395 | return IXGBE_ERR_EEPROM; |
| 1396 | } |
| 1397 | |
| 1398 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
| 1401 | /** |
| 1402 | * ixgbe_release_eeprom_semaphore - Release hardware semaphore |
| 1403 | * @hw: pointer to hardware structure |
| 1404 | * |
| 1405 | * This function clears hardware semaphore bits. |
| 1406 | **/ |
| 1407 | static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw) |
| 1408 | { |
| 1409 | u32 swsm; |
| 1410 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1411 | swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1412 | |
| 1413 | /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */ |
| 1414 | swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI); |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1415 | IXGBE_WRITE_REG(hw, IXGBE_SWSM(hw), swsm); |
Auke Kok | 3957d63 | 2007-10-31 15:22:10 -0700 | [diff] [blame] | 1416 | IXGBE_WRITE_FLUSH(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1420 | * ixgbe_ready_eeprom - Polls for EEPROM ready |
| 1421 | * @hw: pointer to hardware structure |
| 1422 | **/ |
| 1423 | static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw) |
| 1424 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1425 | u16 i; |
| 1426 | u8 spi_stat_reg; |
| 1427 | |
| 1428 | /* |
| 1429 | * Read "Status Register" repeatedly until the LSB is cleared. The |
| 1430 | * EEPROM will signal that the command has been completed by clearing |
| 1431 | * bit 0 of the internal status register. If it's not cleared within |
| 1432 | * 5 milliseconds, then error out. |
| 1433 | */ |
| 1434 | for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) { |
| 1435 | ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1436 | IXGBE_EEPROM_OPCODE_BITS); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1437 | spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8); |
| 1438 | if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI)) |
| 1439 | break; |
| 1440 | |
| 1441 | udelay(5); |
| 1442 | ixgbe_standby_eeprom(hw); |
Joe Perches | 6403eab | 2011-06-03 11:51:20 +0000 | [diff] [blame] | 1443 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1444 | |
| 1445 | /* |
| 1446 | * On some parts, SPI write time could vary from 0-20mSec on 3.3V |
| 1447 | * devices (and only 0-5mSec on 5V devices) |
| 1448 | */ |
| 1449 | if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) { |
| 1450 | hw_dbg(hw, "SPI EEPROM Status error\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1451 | return IXGBE_ERR_EEPROM; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1452 | } |
| 1453 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1454 | return 0; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | /** |
| 1458 | * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state |
| 1459 | * @hw: pointer to hardware structure |
| 1460 | **/ |
| 1461 | static void ixgbe_standby_eeprom(struct ixgbe_hw *hw) |
| 1462 | { |
| 1463 | u32 eec; |
| 1464 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1465 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1466 | |
| 1467 | /* Toggle CS to flush commands */ |
| 1468 | eec |= IXGBE_EEC_CS; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1469 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1470 | IXGBE_WRITE_FLUSH(hw); |
| 1471 | udelay(1); |
| 1472 | eec &= ~IXGBE_EEC_CS; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1473 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1474 | IXGBE_WRITE_FLUSH(hw); |
| 1475 | udelay(1); |
| 1476 | } |
| 1477 | |
| 1478 | /** |
| 1479 | * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM. |
| 1480 | * @hw: pointer to hardware structure |
| 1481 | * @data: data to send to the EEPROM |
| 1482 | * @count: number of bits to shift out |
| 1483 | **/ |
| 1484 | static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1485 | u16 count) |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1486 | { |
| 1487 | u32 eec; |
| 1488 | u32 mask; |
| 1489 | u32 i; |
| 1490 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1491 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1492 | |
| 1493 | /* |
| 1494 | * Mask is used to shift "count" bits of "data" out to the EEPROM |
| 1495 | * one bit at a time. Determine the starting bit based on count |
| 1496 | */ |
| 1497 | mask = 0x01 << (count - 1); |
| 1498 | |
| 1499 | for (i = 0; i < count; i++) { |
| 1500 | /* |
| 1501 | * A "1" is shifted out to the EEPROM by setting bit "DI" to a |
| 1502 | * "1", and then raising and then lowering the clock (the SK |
| 1503 | * bit controls the clock input to the EEPROM). A "0" is |
| 1504 | * shifted out to the EEPROM by setting "DI" to "0" and then |
| 1505 | * raising and then lowering the clock. |
| 1506 | */ |
| 1507 | if (data & mask) |
| 1508 | eec |= IXGBE_EEC_DI; |
| 1509 | else |
| 1510 | eec &= ~IXGBE_EEC_DI; |
| 1511 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1512 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1513 | IXGBE_WRITE_FLUSH(hw); |
| 1514 | |
| 1515 | udelay(1); |
| 1516 | |
| 1517 | ixgbe_raise_eeprom_clk(hw, &eec); |
| 1518 | ixgbe_lower_eeprom_clk(hw, &eec); |
| 1519 | |
| 1520 | /* |
| 1521 | * Shift mask to signify next bit of data to shift in to the |
| 1522 | * EEPROM |
| 1523 | */ |
| 1524 | mask = mask >> 1; |
Joe Perches | 6403eab | 2011-06-03 11:51:20 +0000 | [diff] [blame] | 1525 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1526 | |
| 1527 | /* We leave the "DI" bit set to "0" when we leave this routine. */ |
| 1528 | eec &= ~IXGBE_EEC_DI; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1529 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1530 | IXGBE_WRITE_FLUSH(hw); |
| 1531 | } |
| 1532 | |
| 1533 | /** |
| 1534 | * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM |
| 1535 | * @hw: pointer to hardware structure |
| 1536 | **/ |
| 1537 | static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count) |
| 1538 | { |
| 1539 | u32 eec; |
| 1540 | u32 i; |
| 1541 | u16 data = 0; |
| 1542 | |
| 1543 | /* |
| 1544 | * In order to read a register from the EEPROM, we need to shift |
| 1545 | * 'count' bits in from the EEPROM. Bits are "shifted in" by raising |
| 1546 | * the clock input to the EEPROM (setting the SK bit), and then reading |
| 1547 | * the value of the "DO" bit. During this "shifting in" process the |
| 1548 | * "DI" bit should always be clear. |
| 1549 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1550 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1551 | |
| 1552 | eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI); |
| 1553 | |
| 1554 | for (i = 0; i < count; i++) { |
| 1555 | data = data << 1; |
| 1556 | ixgbe_raise_eeprom_clk(hw, &eec); |
| 1557 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1558 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1559 | |
| 1560 | eec &= ~(IXGBE_EEC_DI); |
| 1561 | if (eec & IXGBE_EEC_DO) |
| 1562 | data |= 1; |
| 1563 | |
| 1564 | ixgbe_lower_eeprom_clk(hw, &eec); |
| 1565 | } |
| 1566 | |
| 1567 | return data; |
| 1568 | } |
| 1569 | |
| 1570 | /** |
| 1571 | * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input. |
| 1572 | * @hw: pointer to hardware structure |
| 1573 | * @eec: EEC register's current value |
| 1574 | **/ |
| 1575 | static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec) |
| 1576 | { |
| 1577 | /* |
| 1578 | * Raise the clock input to the EEPROM |
| 1579 | * (setting the SK bit), then delay |
| 1580 | */ |
| 1581 | *eec = *eec | IXGBE_EEC_SK; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1582 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), *eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1583 | IXGBE_WRITE_FLUSH(hw); |
| 1584 | udelay(1); |
| 1585 | } |
| 1586 | |
| 1587 | /** |
| 1588 | * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input. |
| 1589 | * @hw: pointer to hardware structure |
| 1590 | * @eecd: EECD's current value |
| 1591 | **/ |
| 1592 | static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec) |
| 1593 | { |
| 1594 | /* |
| 1595 | * Lower the clock input to the EEPROM (clearing the SK bit), then |
| 1596 | * delay |
| 1597 | */ |
| 1598 | *eec = *eec & ~IXGBE_EEC_SK; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1599 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), *eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1600 | IXGBE_WRITE_FLUSH(hw); |
| 1601 | udelay(1); |
| 1602 | } |
| 1603 | |
| 1604 | /** |
| 1605 | * ixgbe_release_eeprom - Release EEPROM, release semaphores |
| 1606 | * @hw: pointer to hardware structure |
| 1607 | **/ |
| 1608 | static void ixgbe_release_eeprom(struct ixgbe_hw *hw) |
| 1609 | { |
| 1610 | u32 eec; |
| 1611 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1612 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1613 | |
| 1614 | eec |= IXGBE_EEC_CS; /* Pull CS high */ |
| 1615 | eec &= ~IXGBE_EEC_SK; /* Lower SCK */ |
| 1616 | |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1617 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1618 | IXGBE_WRITE_FLUSH(hw); |
| 1619 | |
| 1620 | udelay(1); |
| 1621 | |
| 1622 | /* Stop requesting EEPROM access */ |
| 1623 | eec &= ~IXGBE_EEC_REQ; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 1624 | IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1625 | |
Don Skidmore | 9082799 | 2011-03-05 18:59:20 -0800 | [diff] [blame] | 1626 | hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); |
Emil Tantilov | dbf893e | 2011-02-08 09:42:41 +0000 | [diff] [blame] | 1627 | |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 1628 | /* |
| 1629 | * Delay before attempt to obtain semaphore again to allow FW |
| 1630 | * access. semaphore_delay is in ms we need us for usleep_range |
| 1631 | */ |
| 1632 | usleep_range(hw->eeprom.semaphore_delay * 1000, |
| 1633 | hw->eeprom.semaphore_delay * 2000); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1634 | } |
| 1635 | |
| 1636 | /** |
Emil Tantilov | dbf893e | 2011-02-08 09:42:41 +0000 | [diff] [blame] | 1637 | * ixgbe_calc_eeprom_checksum_generic - Calculates and returns the checksum |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1638 | * @hw: pointer to hardware structure |
| 1639 | **/ |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1640 | s32 ixgbe_calc_eeprom_checksum_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1641 | { |
| 1642 | u16 i; |
| 1643 | u16 j; |
| 1644 | u16 checksum = 0; |
| 1645 | u16 length = 0; |
| 1646 | u16 pointer = 0; |
| 1647 | u16 word = 0; |
| 1648 | |
| 1649 | /* Include 0x0-0x3F in the checksum */ |
| 1650 | for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) { |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1651 | if (hw->eeprom.ops.read(hw, i, &word)) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1652 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1653 | break; |
| 1654 | } |
| 1655 | checksum += word; |
| 1656 | } |
| 1657 | |
| 1658 | /* Include all data from pointers except for the fw pointer */ |
| 1659 | for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) { |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1660 | if (hw->eeprom.ops.read(hw, i, &pointer)) { |
| 1661 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1662 | return IXGBE_ERR_EEPROM; |
| 1663 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1664 | |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1665 | /* If the pointer seems invalid */ |
| 1666 | if (pointer == 0xFFFF || pointer == 0) |
| 1667 | continue; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1668 | |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1669 | if (hw->eeprom.ops.read(hw, pointer, &length)) { |
| 1670 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1671 | return IXGBE_ERR_EEPROM; |
| 1672 | } |
| 1673 | |
| 1674 | if (length == 0xFFFF || length == 0) |
| 1675 | continue; |
| 1676 | |
| 1677 | for (j = pointer + 1; j <= pointer + length; j++) { |
| 1678 | if (hw->eeprom.ops.read(hw, j, &word)) { |
| 1679 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1680 | return IXGBE_ERR_EEPROM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1681 | } |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1682 | checksum += word; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1683 | } |
| 1684 | } |
| 1685 | |
| 1686 | checksum = (u16)IXGBE_EEPROM_SUM - checksum; |
| 1687 | |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1688 | return (s32)checksum; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1692 | * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1693 | * @hw: pointer to hardware structure |
| 1694 | * @checksum_val: calculated checksum |
| 1695 | * |
| 1696 | * Performs checksum calculation and validates the EEPROM checksum. If the |
| 1697 | * caller does not need checksum_val, the value can be NULL. |
| 1698 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1699 | s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1700 | u16 *checksum_val) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1701 | { |
| 1702 | s32 status; |
| 1703 | u16 checksum; |
| 1704 | u16 read_checksum = 0; |
| 1705 | |
| 1706 | /* |
| 1707 | * Read the first word from the EEPROM. If this times out or fails, do |
| 1708 | * not continue or we could be in for a very long wait while every |
| 1709 | * EEPROM read fails |
| 1710 | */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1711 | status = hw->eeprom.ops.read(hw, 0, &checksum); |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1712 | if (status) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1713 | hw_dbg(hw, "EEPROM read failed\n"); |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1714 | return status; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1715 | } |
| 1716 | |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1717 | status = hw->eeprom.ops.calc_checksum(hw); |
| 1718 | if (status < 0) |
| 1719 | return status; |
| 1720 | |
| 1721 | checksum = (u16)(status & 0xffff); |
| 1722 | |
| 1723 | status = hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum); |
| 1724 | if (status) { |
| 1725 | hw_dbg(hw, "EEPROM read failed\n"); |
| 1726 | return status; |
| 1727 | } |
| 1728 | |
| 1729 | /* Verify read checksum from EEPROM is the same as |
| 1730 | * calculated checksum |
| 1731 | */ |
| 1732 | if (read_checksum != checksum) |
| 1733 | status = IXGBE_ERR_EEPROM_CHECKSUM; |
| 1734 | |
| 1735 | /* If the user cares, return the calculated checksum */ |
| 1736 | if (checksum_val) |
| 1737 | *checksum_val = checksum; |
| 1738 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1739 | return status; |
| 1740 | } |
| 1741 | |
| 1742 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1743 | * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum |
| 1744 | * @hw: pointer to hardware structure |
| 1745 | **/ |
| 1746 | s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw) |
| 1747 | { |
| 1748 | s32 status; |
| 1749 | u16 checksum; |
| 1750 | |
| 1751 | /* |
| 1752 | * Read the first word from the EEPROM. If this times out or fails, do |
| 1753 | * not continue or we could be in for a very long wait while every |
| 1754 | * EEPROM read fails |
| 1755 | */ |
| 1756 | status = hw->eeprom.ops.read(hw, 0, &checksum); |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1757 | if (status) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1758 | hw_dbg(hw, "EEPROM read failed\n"); |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1759 | return status; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1760 | } |
| 1761 | |
Don Skidmore | 735c35a | 2014-11-29 05:22:48 +0000 | [diff] [blame] | 1762 | status = hw->eeprom.ops.calc_checksum(hw); |
| 1763 | if (status < 0) |
| 1764 | return status; |
| 1765 | |
| 1766 | checksum = (u16)(status & 0xffff); |
| 1767 | |
| 1768 | status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM, checksum); |
| 1769 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1770 | return status; |
| 1771 | } |
| 1772 | |
| 1773 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1774 | * ixgbe_set_rar_generic - Set Rx address register |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1775 | * @hw: pointer to hardware structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1776 | * @index: Receive address register to write |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1777 | * @addr: Address to put into receive address register |
| 1778 | * @vmdq: VMDq "set" or "pool" index |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1779 | * @enable_addr: set flag that address is active |
| 1780 | * |
| 1781 | * Puts an ethernet address into a receive address register. |
| 1782 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1783 | s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 1784 | u32 enable_addr) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1785 | { |
| 1786 | u32 rar_low, rar_high; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1787 | u32 rar_entries = hw->mac.num_rar_entries; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1788 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1789 | /* Make sure we are using a valid rar index range */ |
| 1790 | if (index >= rar_entries) { |
| 1791 | hw_dbg(hw, "RAR index %d is out of range.\n", index); |
| 1792 | return IXGBE_ERR_INVALID_ARGUMENT; |
| 1793 | } |
| 1794 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1795 | /* setup VMDq pool selection before this RAR gets enabled */ |
| 1796 | hw->mac.ops.set_vmdq(hw, index, vmdq); |
| 1797 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1798 | /* |
| 1799 | * HW expects these in little endian so we reverse the byte |
| 1800 | * order from network order (big endian) to little endian |
| 1801 | */ |
| 1802 | rar_low = ((u32)addr[0] | |
| 1803 | ((u32)addr[1] << 8) | |
| 1804 | ((u32)addr[2] << 16) | |
| 1805 | ((u32)addr[3] << 24)); |
| 1806 | /* |
| 1807 | * Some parts put the VMDq setting in the extra RAH bits, |
| 1808 | * so save everything except the lower 16 bits that hold part |
| 1809 | * of the address and the address valid bit. |
| 1810 | */ |
| 1811 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index)); |
| 1812 | rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV); |
| 1813 | rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1814 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1815 | if (enable_addr != 0) |
| 1816 | rar_high |= IXGBE_RAH_AV; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1817 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1818 | IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low); |
| 1819 | IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1820 | |
| 1821 | return 0; |
| 1822 | } |
| 1823 | |
| 1824 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1825 | * ixgbe_clear_rar_generic - Remove Rx address register |
| 1826 | * @hw: pointer to hardware structure |
| 1827 | * @index: Receive address register to write |
| 1828 | * |
| 1829 | * Clears an ethernet address from a receive address register. |
| 1830 | **/ |
| 1831 | s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index) |
| 1832 | { |
| 1833 | u32 rar_high; |
| 1834 | u32 rar_entries = hw->mac.num_rar_entries; |
| 1835 | |
| 1836 | /* Make sure we are using a valid rar index range */ |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1837 | if (index >= rar_entries) { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1838 | hw_dbg(hw, "RAR index %d is out of range.\n", index); |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1839 | return IXGBE_ERR_INVALID_ARGUMENT; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1840 | } |
| 1841 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 1842 | /* |
| 1843 | * Some parts put the VMDq setting in the extra RAH bits, |
| 1844 | * so save everything except the lower 16 bits that hold part |
| 1845 | * of the address and the address valid bit. |
| 1846 | */ |
| 1847 | rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index)); |
| 1848 | rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV); |
| 1849 | |
| 1850 | IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0); |
| 1851 | IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high); |
| 1852 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1853 | /* clear VMDq pool/queue selection for this RAR */ |
| 1854 | hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL); |
| 1855 | |
| 1856 | return 0; |
| 1857 | } |
| 1858 | |
| 1859 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1860 | * ixgbe_init_rx_addrs_generic - Initializes receive address filters. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1861 | * @hw: pointer to hardware structure |
| 1862 | * |
| 1863 | * 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] | 1864 | * of the receive address registers. Clears the multicast table. Assumes |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1865 | * the receiver is in reset when the routine is called. |
| 1866 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1867 | s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1868 | { |
| 1869 | u32 i; |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1870 | u32 rar_entries = hw->mac.num_rar_entries; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1871 | |
| 1872 | /* |
| 1873 | * If the current mac address is valid, assume it is a software override |
| 1874 | * to the permanent address. |
| 1875 | * Otherwise, use the permanent address from the eeprom. |
| 1876 | */ |
Joe Perches | f8ebc68 | 2012-10-24 17:19:02 +0000 | [diff] [blame] | 1877 | if (!is_valid_ether_addr(hw->mac.addr)) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1878 | /* Get the MAC address from the RAR0 for later reference */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1879 | hw->mac.ops.get_mac_addr(hw, hw->mac.addr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1880 | |
hartleys | ce7194d | 2010-01-05 06:56:52 +0000 | [diff] [blame] | 1881 | hw_dbg(hw, " Keeping Current RAR0 Addr =%pM\n", hw->mac.addr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1882 | } else { |
| 1883 | /* Setup the receive address. */ |
| 1884 | hw_dbg(hw, "Overriding MAC Address in RAR[0]\n"); |
hartleys | ce7194d | 2010-01-05 06:56:52 +0000 | [diff] [blame] | 1885 | hw_dbg(hw, " New MAC Addr =%pM\n", hw->mac.addr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1886 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1887 | 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] | 1888 | } |
Alexander Duyck | 6e982ae | 2015-11-02 17:10:26 -0800 | [diff] [blame] | 1889 | |
| 1890 | /* clear VMDq pool/queue selection for RAR 0 */ |
| 1891 | hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL); |
| 1892 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1893 | hw->addr_ctrl.overflow_promisc = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1894 | |
| 1895 | hw->addr_ctrl.rar_used_count = 1; |
| 1896 | |
| 1897 | /* Zero out the other receive addresses. */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1898 | hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1899 | for (i = 1; i < rar_entries; i++) { |
| 1900 | IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0); |
| 1901 | IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0); |
| 1902 | } |
| 1903 | |
| 1904 | /* Clear the MTA */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1905 | hw->addr_ctrl.mta_in_use = 0; |
| 1906 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type); |
| 1907 | |
| 1908 | hw_dbg(hw, " Clearing MTA\n"); |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 1909 | for (i = 0; i < hw->mac.mcft_size; i++) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1910 | IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0); |
| 1911 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1912 | if (hw->mac.ops.init_uta_tables) |
| 1913 | hw->mac.ops.init_uta_tables(hw); |
| 1914 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1915 | return 0; |
| 1916 | } |
| 1917 | |
| 1918 | /** |
| 1919 | * ixgbe_mta_vector - Determines bit-vector in multicast table to set |
| 1920 | * @hw: pointer to hardware structure |
| 1921 | * @mc_addr: the multicast address |
| 1922 | * |
| 1923 | * Extracts the 12 bits, from a multicast address, to determine which |
| 1924 | * bit-vector to set in the multicast table. The hardware uses 12 bits, from |
| 1925 | * incoming rx multicast addresses, to determine the bit-vector to check in |
| 1926 | * 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] | 1927 | * 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] | 1928 | * to mc_filter_type. |
| 1929 | **/ |
| 1930 | static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr) |
| 1931 | { |
| 1932 | u32 vector = 0; |
| 1933 | |
| 1934 | switch (hw->mac.mc_filter_type) { |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1935 | case 0: /* use bits [47:36] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1936 | vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4)); |
| 1937 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1938 | case 1: /* use bits [46:35] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1939 | vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5)); |
| 1940 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1941 | case 2: /* use bits [45:34] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1942 | vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6)); |
| 1943 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1944 | case 3: /* use bits [43:32] of the address */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1945 | vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8)); |
| 1946 | break; |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 1947 | default: /* Invalid mc_filter_type */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1948 | hw_dbg(hw, "MC filter type param set incorrectly\n"); |
| 1949 | break; |
| 1950 | } |
| 1951 | |
| 1952 | /* vector can only be 12-bits or boundary will be exceeded */ |
| 1953 | vector &= 0xFFF; |
| 1954 | return vector; |
| 1955 | } |
| 1956 | |
| 1957 | /** |
| 1958 | * ixgbe_set_mta - Set bit-vector in multicast table |
| 1959 | * @hw: pointer to hardware structure |
| 1960 | * @hash_value: Multicast address hash value |
| 1961 | * |
| 1962 | * Sets the bit-vector in the multicast table. |
| 1963 | **/ |
| 1964 | static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr) |
| 1965 | { |
| 1966 | u32 vector; |
| 1967 | u32 vector_bit; |
| 1968 | u32 vector_reg; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1969 | |
| 1970 | hw->addr_ctrl.mta_in_use++; |
| 1971 | |
| 1972 | vector = ixgbe_mta_vector(hw, mc_addr); |
| 1973 | hw_dbg(hw, " bit-vector = 0x%03X\n", vector); |
| 1974 | |
| 1975 | /* |
| 1976 | * The MTA is a register array of 128 32-bit registers. It is treated |
| 1977 | * like an array of 4096 bits. We want to set bit |
| 1978 | * BitArray[vector_value]. So we figure out what register the bit is |
| 1979 | * in, read it, OR in the new bit, then write back the new value. The |
| 1980 | * register is determined by the upper 7 bits of the vector value and |
| 1981 | * the bit within that register are determined by the lower 5 bits of |
| 1982 | * the value. |
| 1983 | */ |
| 1984 | vector_reg = (vector >> 5) & 0x7F; |
| 1985 | vector_bit = vector & 0x1F; |
Emil Tantilov | 80960ab | 2011-02-18 08:58:27 +0000 | [diff] [blame] | 1986 | hw->mac.mta_shadow[vector_reg] |= (1 << vector_bit); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1987 | } |
| 1988 | |
| 1989 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 1990 | * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1991 | * @hw: pointer to hardware structure |
Jiri Pirko | 2853eb8 | 2010-03-23 22:58:01 +0000 | [diff] [blame] | 1992 | * @netdev: pointer to net device structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1993 | * |
| 1994 | * 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] | 1995 | * address registers and the multicast table. Uses unused receive address |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1996 | * registers for the first multicast addresses, and hashes the rest into the |
| 1997 | * multicast table. |
| 1998 | **/ |
Jiri Pirko | 2853eb8 | 2010-03-23 22:58:01 +0000 | [diff] [blame] | 1999 | s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw, |
| 2000 | struct net_device *netdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2001 | { |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2002 | struct netdev_hw_addr *ha; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2003 | u32 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2004 | |
| 2005 | /* |
| 2006 | * Set the new number of MC addresses that we are being requested to |
| 2007 | * use. |
| 2008 | */ |
Jiri Pirko | 2853eb8 | 2010-03-23 22:58:01 +0000 | [diff] [blame] | 2009 | hw->addr_ctrl.num_mc_addrs = netdev_mc_count(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2010 | hw->addr_ctrl.mta_in_use = 0; |
| 2011 | |
Emil Tantilov | 80960ab | 2011-02-18 08:58:27 +0000 | [diff] [blame] | 2012 | /* Clear mta_shadow */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2013 | hw_dbg(hw, " Clearing MTA\n"); |
Emil Tantilov | 80960ab | 2011-02-18 08:58:27 +0000 | [diff] [blame] | 2014 | memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2015 | |
Emil Tantilov | 80960ab | 2011-02-18 08:58:27 +0000 | [diff] [blame] | 2016 | /* Update mta shadow */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2017 | netdev_for_each_mc_addr(ha, netdev) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2018 | hw_dbg(hw, " Adding the multicast addresses:\n"); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2019 | ixgbe_set_mta(hw, ha->addr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2020 | } |
| 2021 | |
| 2022 | /* Enable mta */ |
Emil Tantilov | 80960ab | 2011-02-18 08:58:27 +0000 | [diff] [blame] | 2023 | for (i = 0; i < hw->mac.mcft_size; i++) |
| 2024 | IXGBE_WRITE_REG_ARRAY(hw, IXGBE_MTA(0), i, |
| 2025 | hw->mac.mta_shadow[i]); |
| 2026 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2027 | if (hw->addr_ctrl.mta_in_use > 0) |
| 2028 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2029 | IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2030 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2031 | hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2032 | return 0; |
| 2033 | } |
| 2034 | |
| 2035 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2036 | * ixgbe_enable_mc_generic - Enable multicast address in RAR |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2037 | * @hw: pointer to hardware structure |
| 2038 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2039 | * 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] | 2040 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2041 | s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2042 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2043 | struct ixgbe_addr_filter_info *a = &hw->addr_ctrl; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2044 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2045 | if (a->mta_in_use > 0) |
| 2046 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE | |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2047 | hw->mac.mc_filter_type); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2048 | |
| 2049 | return 0; |
| 2050 | } |
| 2051 | |
| 2052 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2053 | * ixgbe_disable_mc_generic - Disable multicast address in RAR |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2054 | * @hw: pointer to hardware structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2055 | * |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2056 | * 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] | 2057 | **/ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2058 | s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2059 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2060 | struct ixgbe_addr_filter_info *a = &hw->addr_ctrl; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2061 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2062 | if (a->mta_in_use > 0) |
| 2063 | IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2064 | |
| 2065 | return 0; |
| 2066 | } |
| 2067 | |
| 2068 | /** |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2069 | * ixgbe_fc_enable_generic - Enable flow control |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2070 | * @hw: pointer to hardware structure |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2071 | * |
| 2072 | * Enable flow control according to the current settings. |
| 2073 | **/ |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2074 | s32 ixgbe_fc_enable_generic(struct ixgbe_hw *hw) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2075 | { |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2076 | u32 mflcn_reg, fccfg_reg; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2077 | u32 reg; |
John Fastabend | 16b61be | 2010-11-16 19:26:44 -0800 | [diff] [blame] | 2078 | u32 fcrtl, fcrth; |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2079 | int i; |
Peter P Waskiewicz Jr | 70b7762 | 2009-05-17 12:34:55 +0000 | [diff] [blame] | 2080 | |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 2081 | /* Validate the water mark configuration. */ |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2082 | if (!hw->fc.pause_time) |
| 2083 | return IXGBE_ERR_INVALID_LINK_SETTINGS; |
Peter P Waskiewicz Jr | 70b7762 | 2009-05-17 12:34:55 +0000 | [diff] [blame] | 2084 | |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 2085 | /* Low water mark of zero causes XOFF floods */ |
| 2086 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 2087 | if ((hw->fc.current_mode & ixgbe_fc_tx_pause) && |
| 2088 | hw->fc.high_water[i]) { |
| 2089 | if (!hw->fc.low_water[i] || |
| 2090 | hw->fc.low_water[i] >= hw->fc.high_water[i]) { |
| 2091 | hw_dbg(hw, "Invalid water mark configuration\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2092 | return IXGBE_ERR_INVALID_LINK_SETTINGS; |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 2093 | } |
| 2094 | } |
| 2095 | } |
| 2096 | |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2097 | /* Negotiate the fc mode to use */ |
Alexander Duyck | 786e9a5 | 2012-03-28 08:03:48 +0000 | [diff] [blame] | 2098 | ixgbe_fc_autoneg(hw); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2099 | |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2100 | /* Disable any previous flow control settings */ |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2101 | mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN); |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2102 | mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_MASK | IXGBE_MFLCN_RFCE); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2103 | |
| 2104 | fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG); |
| 2105 | fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY); |
| 2106 | |
| 2107 | /* |
| 2108 | * The possible values of fc.current_mode are: |
| 2109 | * 0: Flow control is completely disabled |
| 2110 | * 1: Rx flow control is enabled (we can receive pause frames, |
| 2111 | * but not send pause frames). |
PJ Waskiewicz | bb3daa4 | 2009-03-25 22:10:42 +0000 | [diff] [blame] | 2112 | * 2: Tx flow control is enabled (we can send pause frames but |
| 2113 | * we do not support receiving pause frames). |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2114 | * 3: Both Rx and Tx flow control (symmetric) are enabled. |
| 2115 | * other: Invalid. |
| 2116 | */ |
| 2117 | switch (hw->fc.current_mode) { |
| 2118 | case ixgbe_fc_none: |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2119 | /* |
| 2120 | * Flow control is disabled by software override or autoneg. |
| 2121 | * The code below will actually disable it in the HW. |
| 2122 | */ |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2123 | break; |
| 2124 | case ixgbe_fc_rx_pause: |
| 2125 | /* |
| 2126 | * Rx Flow control is enabled and Tx Flow control is |
| 2127 | * disabled by software override. Since there really |
| 2128 | * isn't a way to advertise that we are capable of RX |
| 2129 | * Pause ONLY, we will advertise that we support both |
| 2130 | * symmetric and asymmetric Rx PAUSE. Later, we will |
| 2131 | * disable the adapter's ability to send PAUSE frames. |
| 2132 | */ |
| 2133 | mflcn_reg |= IXGBE_MFLCN_RFCE; |
| 2134 | break; |
| 2135 | case ixgbe_fc_tx_pause: |
| 2136 | /* |
| 2137 | * Tx Flow control is enabled, and Rx Flow control is |
| 2138 | * disabled by software override. |
| 2139 | */ |
| 2140 | fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X; |
| 2141 | break; |
| 2142 | case ixgbe_fc_full: |
| 2143 | /* Flow control (both Rx and Tx) is enabled by SW override. */ |
| 2144 | mflcn_reg |= IXGBE_MFLCN_RFCE; |
| 2145 | fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X; |
| 2146 | break; |
| 2147 | default: |
| 2148 | hw_dbg(hw, "Flow control param set incorrectly\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2149 | return IXGBE_ERR_CONFIG; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2150 | } |
| 2151 | |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2152 | /* Set 802.3x based flow control settings. */ |
PJ Waskiewicz | 2132d38 | 2009-04-09 22:26:21 +0000 | [diff] [blame] | 2153 | mflcn_reg |= IXGBE_MFLCN_DPF; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2154 | IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg); |
| 2155 | IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg); |
| 2156 | |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2157 | /* Set up and enable Rx high/low water mark thresholds, enable XON. */ |
| 2158 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 2159 | if ((hw->fc.current_mode & ixgbe_fc_tx_pause) && |
| 2160 | hw->fc.high_water[i]) { |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 2161 | fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE; |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2162 | IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), fcrtl); |
| 2163 | fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN; |
| 2164 | } else { |
| 2165 | IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0); |
| 2166 | /* |
| 2167 | * In order to prevent Tx hangs when the internal Tx |
| 2168 | * switch is enabled we must set the high water mark |
Mark Rustad | bc1fc64 | 2015-08-08 16:27:51 -0700 | [diff] [blame] | 2169 | * to the Rx packet buffer size - 24KB. This allows |
| 2170 | * the Tx switch to function even under heavy Rx |
| 2171 | * workloads. |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2172 | */ |
Mark Rustad | bc1fc64 | 2015-08-08 16:27:51 -0700 | [diff] [blame] | 2173 | fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 24576; |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2177 | } |
| 2178 | |
| 2179 | /* Configure pause time (2 TCs per register) */ |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2180 | reg = hw->fc.pause_time * 0x00010001; |
| 2181 | for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++) |
| 2182 | IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2183 | |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 2184 | IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2185 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2186 | return 0; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2187 | } |
| 2188 | |
| 2189 | /** |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2190 | * ixgbe_negotiate_fc - Negotiate flow control |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2191 | * @hw: pointer to hardware structure |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2192 | * @adv_reg: flow control advertised settings |
| 2193 | * @lp_reg: link partner's flow control settings |
| 2194 | * @adv_sym: symmetric pause bit in advertisement |
| 2195 | * @adv_asm: asymmetric pause bit in advertisement |
| 2196 | * @lp_sym: symmetric pause bit in link partner advertisement |
| 2197 | * @lp_asm: asymmetric pause bit in link partner advertisement |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2198 | * |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2199 | * Find the intersection between advertised settings and link partner's |
| 2200 | * advertised settings |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2201 | **/ |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2202 | static s32 ixgbe_negotiate_fc(struct ixgbe_hw *hw, u32 adv_reg, u32 lp_reg, |
| 2203 | u32 adv_sym, u32 adv_asm, u32 lp_sym, u32 lp_asm) |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2204 | { |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2205 | if ((!(adv_reg)) || (!(lp_reg))) |
| 2206 | return IXGBE_ERR_FC_NOT_NEGOTIATED; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2207 | |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2208 | if ((adv_reg & adv_sym) && (lp_reg & lp_sym)) { |
| 2209 | /* |
| 2210 | * Now we need to check if the user selected Rx ONLY |
| 2211 | * of pause frames. In this case, we had to advertise |
| 2212 | * FULL flow control because we could not advertise RX |
| 2213 | * ONLY. Hence, we must now check to see if we need to |
| 2214 | * turn OFF the TRANSMISSION of PAUSE frames. |
| 2215 | */ |
| 2216 | if (hw->fc.requested_mode == ixgbe_fc_full) { |
| 2217 | hw->fc.current_mode = ixgbe_fc_full; |
| 2218 | hw_dbg(hw, "Flow Control = FULL.\n"); |
| 2219 | } else { |
| 2220 | hw->fc.current_mode = ixgbe_fc_rx_pause; |
| 2221 | hw_dbg(hw, "Flow Control=RX PAUSE frames only\n"); |
| 2222 | } |
| 2223 | } else if (!(adv_reg & adv_sym) && (adv_reg & adv_asm) && |
| 2224 | (lp_reg & lp_sym) && (lp_reg & lp_asm)) { |
| 2225 | hw->fc.current_mode = ixgbe_fc_tx_pause; |
| 2226 | hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n"); |
| 2227 | } else if ((adv_reg & adv_sym) && (adv_reg & adv_asm) && |
| 2228 | !(lp_reg & lp_sym) && (lp_reg & lp_asm)) { |
| 2229 | hw->fc.current_mode = ixgbe_fc_rx_pause; |
| 2230 | hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n"); |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2231 | } else { |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2232 | hw->fc.current_mode = ixgbe_fc_none; |
| 2233 | hw_dbg(hw, "Flow Control = NONE.\n"); |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2234 | } |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2235 | return 0; |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2236 | } |
| 2237 | |
| 2238 | /** |
| 2239 | * ixgbe_fc_autoneg_fiber - Enable flow control on 1 gig fiber |
| 2240 | * @hw: pointer to hardware structure |
| 2241 | * |
| 2242 | * Enable flow control according on 1 gig fiber. |
| 2243 | **/ |
| 2244 | static s32 ixgbe_fc_autoneg_fiber(struct ixgbe_hw *hw) |
| 2245 | { |
| 2246 | u32 pcs_anadv_reg, pcs_lpab_reg, linkstat; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2247 | s32 ret_val; |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2248 | |
Peter P Waskiewicz Jr | 539e5f0 | 2009-09-30 12:07:38 +0000 | [diff] [blame] | 2249 | /* |
| 2250 | * On multispeed fiber at 1g, bail out if |
| 2251 | * - link is up but AN did not complete, or if |
| 2252 | * - link is up and AN completed but timed out |
| 2253 | */ |
Peter P Waskiewicz Jr | 539e5f0 | 2009-09-30 12:07:38 +0000 | [diff] [blame] | 2254 | |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2255 | linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA); |
Don Skidmore | 53f096d | 2011-07-28 01:00:58 +0000 | [diff] [blame] | 2256 | if ((!!(linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) || |
Alexander Duyck | 786e9a5 | 2012-03-28 08:03:48 +0000 | [diff] [blame] | 2257 | (!!(linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2258 | return IXGBE_ERR_FC_NOT_NEGOTIATED; |
PJ Waskiewicz | 9bbe3a5 | 2009-11-24 18:51:28 +0000 | [diff] [blame] | 2259 | |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2260 | pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); |
| 2261 | pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP); |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2262 | |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2263 | ret_val = ixgbe_negotiate_fc(hw, pcs_anadv_reg, |
| 2264 | pcs_lpab_reg, IXGBE_PCS1GANA_SYM_PAUSE, |
| 2265 | IXGBE_PCS1GANA_ASM_PAUSE, |
| 2266 | IXGBE_PCS1GANA_SYM_PAUSE, |
| 2267 | IXGBE_PCS1GANA_ASM_PAUSE); |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2268 | |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 2269 | return ret_val; |
| 2270 | } |
| 2271 | |
| 2272 | /** |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2273 | * ixgbe_fc_autoneg_backplane - Enable flow control IEEE clause 37 |
| 2274 | * @hw: pointer to hardware structure |
| 2275 | * |
| 2276 | * Enable flow control according to IEEE clause 37. |
| 2277 | **/ |
| 2278 | static s32 ixgbe_fc_autoneg_backplane(struct ixgbe_hw *hw) |
| 2279 | { |
| 2280 | u32 links2, anlp1_reg, autoc_reg, links; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2281 | s32 ret_val; |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2282 | |
| 2283 | /* |
| 2284 | * On backplane, bail out if |
| 2285 | * - backplane autoneg was not completed, or if |
| 2286 | * - we are 82599 and link partner is not AN enabled |
| 2287 | */ |
| 2288 | links = IXGBE_READ_REG(hw, IXGBE_LINKS); |
Alexander Duyck | 786e9a5 | 2012-03-28 08:03:48 +0000 | [diff] [blame] | 2289 | if ((links & IXGBE_LINKS_KX_AN_COMP) == 0) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2290 | return IXGBE_ERR_FC_NOT_NEGOTIATED; |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2291 | |
| 2292 | if (hw->mac.type == ixgbe_mac_82599EB) { |
| 2293 | links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2); |
Alexander Duyck | 786e9a5 | 2012-03-28 08:03:48 +0000 | [diff] [blame] | 2294 | if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2295 | return IXGBE_ERR_FC_NOT_NEGOTIATED; |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2296 | } |
| 2297 | /* |
| 2298 | * Read the 10g AN autoc and LP ability registers and resolve |
| 2299 | * local flow control settings accordingly |
| 2300 | */ |
| 2301 | autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 2302 | anlp1_reg = IXGBE_READ_REG(hw, IXGBE_ANLP1); |
| 2303 | |
| 2304 | ret_val = ixgbe_negotiate_fc(hw, autoc_reg, |
| 2305 | anlp1_reg, IXGBE_AUTOC_SYM_PAUSE, IXGBE_AUTOC_ASM_PAUSE, |
| 2306 | IXGBE_ANLP1_SYM_PAUSE, IXGBE_ANLP1_ASM_PAUSE); |
| 2307 | |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2308 | return ret_val; |
| 2309 | } |
| 2310 | |
| 2311 | /** |
| 2312 | * ixgbe_fc_autoneg_copper - Enable flow control IEEE clause 37 |
| 2313 | * @hw: pointer to hardware structure |
| 2314 | * |
| 2315 | * Enable flow control according to IEEE clause 37. |
| 2316 | **/ |
| 2317 | static s32 ixgbe_fc_autoneg_copper(struct ixgbe_hw *hw) |
| 2318 | { |
| 2319 | u16 technology_ability_reg = 0; |
| 2320 | u16 lp_technology_ability_reg = 0; |
| 2321 | |
| 2322 | hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE, |
| 2323 | MDIO_MMD_AN, |
| 2324 | &technology_ability_reg); |
| 2325 | hw->phy.ops.read_reg(hw, MDIO_AN_LPA, |
| 2326 | MDIO_MMD_AN, |
| 2327 | &lp_technology_ability_reg); |
| 2328 | |
| 2329 | return ixgbe_negotiate_fc(hw, (u32)technology_ability_reg, |
| 2330 | (u32)lp_technology_ability_reg, |
| 2331 | IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE, |
| 2332 | IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE); |
| 2333 | } |
| 2334 | |
| 2335 | /** |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2336 | * ixgbe_fc_autoneg - Configure flow control |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2337 | * @hw: pointer to hardware structure |
| 2338 | * |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2339 | * Compares our advertised flow control capabilities to those advertised by |
| 2340 | * our link partner, and determines the proper flow control mode to use. |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2341 | **/ |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2342 | void ixgbe_fc_autoneg(struct ixgbe_hw *hw) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2343 | { |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2344 | s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED; |
| 2345 | ixgbe_link_speed speed; |
| 2346 | bool link_up; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2347 | |
| 2348 | /* |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2349 | * AN should have completed when the cable was plugged in. |
| 2350 | * Look for reasons to bail out. Bail out if: |
| 2351 | * - FC autoneg is disabled, or if |
| 2352 | * - link is not up. |
| 2353 | * |
| 2354 | * Since we're being called from an LSC, link is already known to be up. |
| 2355 | * So use link_up_wait_to_complete=false. |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2356 | */ |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2357 | if (hw->fc.disable_fc_autoneg) |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2358 | goto out; |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2359 | |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2360 | hw->mac.ops.check_link(hw, &speed, &link_up, false); |
| 2361 | if (!link_up) |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2362 | goto out; |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2363 | |
| 2364 | switch (hw->phy.media_type) { |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2365 | /* Autoneg flow control on fiber adapters */ |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2366 | case ixgbe_media_type_fiber: |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2367 | if (speed == IXGBE_LINK_SPEED_1GB_FULL) |
| 2368 | ret_val = ixgbe_fc_autoneg_fiber(hw); |
| 2369 | break; |
| 2370 | |
| 2371 | /* Autoneg flow control on backplane adapters */ |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2372 | case ixgbe_media_type_backplane: |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2373 | ret_val = ixgbe_fc_autoneg_backplane(hw); |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2374 | break; |
| 2375 | |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2376 | /* Autoneg flow control on copper adapters */ |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2377 | case ixgbe_media_type_copper: |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 2378 | if (ixgbe_device_supports_autoneg_fc(hw)) |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2379 | ret_val = ixgbe_fc_autoneg_copper(hw); |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 2380 | break; |
| 2381 | |
| 2382 | default: |
Mallikarjuna R Chilakala | 620fa03 | 2009-06-04 11:11:13 +0000 | [diff] [blame] | 2383 | break; |
| 2384 | } |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2385 | |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2386 | out: |
Alexander Duyck | 67a79df | 2012-04-19 17:49:56 +0000 | [diff] [blame] | 2387 | if (ret_val == 0) { |
| 2388 | hw->fc.fc_was_autonegged = true; |
| 2389 | } else { |
| 2390 | hw->fc.fc_was_autonegged = false; |
| 2391 | hw->fc.current_mode = hw->fc.requested_mode; |
| 2392 | } |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2393 | } |
| 2394 | |
| 2395 | /** |
Don Skidmore | 1f86c98 | 2014-02-27 20:32:40 -0800 | [diff] [blame] | 2396 | * ixgbe_pcie_timeout_poll - Return number of times to poll for completion |
| 2397 | * @hw: pointer to hardware structure |
| 2398 | * |
| 2399 | * System-wide timeout range is encoded in PCIe Device Control2 register. |
| 2400 | * |
| 2401 | * Add 10% to specified maximum and return the number of times to poll for |
| 2402 | * completion timeout, in units of 100 microsec. Never return less than |
| 2403 | * 800 = 80 millisec. |
| 2404 | **/ |
| 2405 | static u32 ixgbe_pcie_timeout_poll(struct ixgbe_hw *hw) |
| 2406 | { |
Don Skidmore | 1f86c98 | 2014-02-27 20:32:40 -0800 | [diff] [blame] | 2407 | s16 devctl2; |
| 2408 | u32 pollcnt; |
| 2409 | |
Jacob Keller | 0d7c6e0 | 2014-02-22 01:23:58 +0000 | [diff] [blame] | 2410 | devctl2 = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2); |
Don Skidmore | 1f86c98 | 2014-02-27 20:32:40 -0800 | [diff] [blame] | 2411 | devctl2 &= IXGBE_PCIDEVCTRL2_TIMEO_MASK; |
| 2412 | |
| 2413 | switch (devctl2) { |
| 2414 | case IXGBE_PCIDEVCTRL2_65_130ms: |
| 2415 | pollcnt = 1300; /* 130 millisec */ |
| 2416 | break; |
| 2417 | case IXGBE_PCIDEVCTRL2_260_520ms: |
| 2418 | pollcnt = 5200; /* 520 millisec */ |
| 2419 | break; |
| 2420 | case IXGBE_PCIDEVCTRL2_1_2s: |
| 2421 | pollcnt = 20000; /* 2 sec */ |
| 2422 | break; |
| 2423 | case IXGBE_PCIDEVCTRL2_4_8s: |
| 2424 | pollcnt = 80000; /* 8 sec */ |
| 2425 | break; |
| 2426 | case IXGBE_PCIDEVCTRL2_17_34s: |
| 2427 | pollcnt = 34000; /* 34 sec */ |
| 2428 | break; |
| 2429 | case IXGBE_PCIDEVCTRL2_50_100us: /* 100 microsecs */ |
| 2430 | case IXGBE_PCIDEVCTRL2_1_2ms: /* 2 millisecs */ |
| 2431 | case IXGBE_PCIDEVCTRL2_16_32ms: /* 32 millisec */ |
| 2432 | case IXGBE_PCIDEVCTRL2_16_32ms_def: /* 32 millisec default */ |
| 2433 | default: |
| 2434 | pollcnt = 800; /* 80 millisec minimum */ |
| 2435 | break; |
| 2436 | } |
| 2437 | |
| 2438 | /* add 10% to spec maximum */ |
| 2439 | return (pollcnt * 11) / 10; |
| 2440 | } |
| 2441 | |
| 2442 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2443 | * ixgbe_disable_pcie_master - Disable PCI-express master access |
| 2444 | * @hw: pointer to hardware structure |
| 2445 | * |
| 2446 | * Disables PCI-Express master access and verifies there are no pending |
| 2447 | * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable |
| 2448 | * bit hasn't caused the master requests to be disabled, else 0 |
| 2449 | * is returned signifying master requests disabled. |
| 2450 | **/ |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2451 | static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2452 | { |
Don Skidmore | 1f86c98 | 2014-02-27 20:32:40 -0800 | [diff] [blame] | 2453 | u32 i, poll; |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2454 | u16 value; |
Emil Tantilov | a4297dc | 2011-02-14 08:45:13 +0000 | [diff] [blame] | 2455 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2456 | /* Always set this bit to ensure any future transactions are blocked */ |
| 2457 | IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS); |
| 2458 | |
Mark Rustad | 48b4461 | 2015-10-27 13:23:23 -0700 | [diff] [blame] | 2459 | /* Poll for bit to read as set */ |
| 2460 | for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) { |
| 2461 | if (IXGBE_READ_REG(hw, IXGBE_CTRL) & IXGBE_CTRL_GIO_DIS) |
| 2462 | break; |
| 2463 | usleep_range(100, 120); |
| 2464 | } |
| 2465 | if (i >= IXGBE_PCI_MASTER_DISABLE_TIMEOUT) { |
| 2466 | hw_dbg(hw, "GIO disable did not set - requesting resets\n"); |
| 2467 | goto gio_disable_fail; |
| 2468 | } |
| 2469 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2470 | /* Exit if master requests are blocked */ |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 2471 | if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO) || |
| 2472 | ixgbe_removed(hw->hw_addr)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2473 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2474 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2475 | /* Poll for master request bit to clear */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2476 | for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) { |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2477 | udelay(100); |
Emil Tantilov | a4297dc | 2011-02-14 08:45:13 +0000 | [diff] [blame] | 2478 | if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2479 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2480 | } |
| 2481 | |
Emil Tantilov | a4297dc | 2011-02-14 08:45:13 +0000 | [diff] [blame] | 2482 | /* |
| 2483 | * Two consecutive resets are required via CTRL.RST per datasheet |
| 2484 | * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine |
| 2485 | * of this need. The first reset prevents new master requests from |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2486 | * being issued by our device. We then must wait 1usec or more for any |
Emil Tantilov | a4297dc | 2011-02-14 08:45:13 +0000 | [diff] [blame] | 2487 | * remaining completions from the PCIe bus to trickle in, and then reset |
| 2488 | * again to clear out any effects they may have had on our device. |
| 2489 | */ |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2490 | hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n"); |
Mark Rustad | 48b4461 | 2015-10-27 13:23:23 -0700 | [diff] [blame] | 2491 | gio_disable_fail: |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2492 | hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED; |
| 2493 | |
Mark Rustad | 7fc1510 | 2015-08-08 16:19:14 -0700 | [diff] [blame] | 2494 | if (hw->mac.type >= ixgbe_mac_X550) |
| 2495 | return 0; |
| 2496 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2497 | /* |
| 2498 | * Before proceeding, make sure that the PCIe block does not have |
| 2499 | * transactions pending. |
| 2500 | */ |
Don Skidmore | 1f86c98 | 2014-02-27 20:32:40 -0800 | [diff] [blame] | 2501 | poll = ixgbe_pcie_timeout_poll(hw); |
| 2502 | for (i = 0; i < poll; i++) { |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2503 | udelay(100); |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 2504 | value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS); |
| 2505 | if (ixgbe_removed(hw->hw_addr)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2506 | return 0; |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2507 | if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2508 | return 0; |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 2509 | } |
| 2510 | |
| 2511 | hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n"); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2512 | return IXGBE_ERR_MASTER_REQUESTS_PENDING; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2513 | } |
| 2514 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2515 | /** |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2516 | * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2517 | * @hw: pointer to hardware structure |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2518 | * @mask: Mask to specify which semaphore to acquire |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2519 | * |
Emil Tantilov | da74cd4 | 2011-03-03 09:25:07 +0000 | [diff] [blame] | 2520 | * Acquires the SWFW semaphore through the GSSR register for the specified |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2521 | * function (CSR, PHY0, PHY1, EEPROM, Flash) |
| 2522 | **/ |
Don Skidmore | 030eaec | 2014-11-29 05:22:37 +0000 | [diff] [blame] | 2523 | s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u32 mask) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2524 | { |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2525 | u32 gssr = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2526 | u32 swmask = mask; |
| 2527 | u32 fwmask = mask << 5; |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2528 | u32 timeout = 200; |
| 2529 | u32 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2530 | |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2531 | for (i = 0; i < timeout; i++) { |
Emil Tantilov | dbf893e | 2011-02-08 09:42:41 +0000 | [diff] [blame] | 2532 | /* |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2533 | * SW NVM semaphore bit is used for access to all |
| 2534 | * SW_FW_SYNC bits (not just NVM) |
Emil Tantilov | dbf893e | 2011-02-08 09:42:41 +0000 | [diff] [blame] | 2535 | */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2536 | if (ixgbe_get_eeprom_semaphore(hw)) |
Peter P Waskiewicz Jr | 539e5f0 | 2009-09-30 12:07:38 +0000 | [diff] [blame] | 2537 | return IXGBE_ERR_SWFW_SYNC; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2538 | |
| 2539 | gssr = IXGBE_READ_REG(hw, IXGBE_GSSR); |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2540 | if (!(gssr & (fwmask | swmask))) { |
| 2541 | gssr |= swmask; |
| 2542 | IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr); |
| 2543 | ixgbe_release_eeprom_semaphore(hw); |
| 2544 | return 0; |
| 2545 | } else { |
| 2546 | /* Resource is currently in use by FW or SW */ |
| 2547 | ixgbe_release_eeprom_semaphore(hw); |
| 2548 | usleep_range(5000, 10000); |
| 2549 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2550 | } |
| 2551 | |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2552 | /* If time expired clear the bits holding the lock and retry */ |
| 2553 | if (gssr & (fwmask | swmask)) |
| 2554 | ixgbe_release_swfw_sync(hw, gssr & (fwmask | swmask)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2555 | |
Emil Tantilov | 674c18b | 2013-07-23 01:57:03 +0000 | [diff] [blame] | 2556 | usleep_range(5000, 10000); |
| 2557 | return IXGBE_ERR_SWFW_SYNC; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2558 | } |
| 2559 | |
| 2560 | /** |
| 2561 | * ixgbe_release_swfw_sync - Release SWFW semaphore |
| 2562 | * @hw: pointer to hardware structure |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 2563 | * @mask: Mask to specify which semaphore to release |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2564 | * |
Emil Tantilov | da74cd4 | 2011-03-03 09:25:07 +0000 | [diff] [blame] | 2565 | * Releases the SWFW semaphore through the GSSR register for the specified |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2566 | * function (CSR, PHY0, PHY1, EEPROM, Flash) |
| 2567 | **/ |
Don Skidmore | 030eaec | 2014-11-29 05:22:37 +0000 | [diff] [blame] | 2568 | void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u32 mask) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2569 | { |
| 2570 | u32 gssr; |
| 2571 | u32 swmask = mask; |
| 2572 | |
| 2573 | ixgbe_get_eeprom_semaphore(hw); |
| 2574 | |
| 2575 | gssr = IXGBE_READ_REG(hw, IXGBE_GSSR); |
| 2576 | gssr &= ~swmask; |
| 2577 | IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr); |
| 2578 | |
| 2579 | ixgbe_release_eeprom_semaphore(hw); |
| 2580 | } |
| 2581 | |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2582 | /** |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2583 | * prot_autoc_read_generic - Hides MAC differences needed for AUTOC read |
| 2584 | * @hw: pointer to hardware structure |
| 2585 | * @reg_val: Value we read from AUTOC |
| 2586 | * @locked: bool to indicate whether the SW/FW lock should be taken. Never |
| 2587 | * true in this the generic case. |
| 2588 | * |
| 2589 | * The default case requires no protection so just to the register read. |
| 2590 | **/ |
| 2591 | s32 prot_autoc_read_generic(struct ixgbe_hw *hw, bool *locked, u32 *reg_val) |
| 2592 | { |
| 2593 | *locked = false; |
| 2594 | *reg_val = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 2595 | return 0; |
| 2596 | } |
| 2597 | |
| 2598 | /** |
| 2599 | * prot_autoc_write_generic - Hides MAC differences needed for AUTOC write |
| 2600 | * @hw: pointer to hardware structure |
| 2601 | * @reg_val: value to write to AUTOC |
| 2602 | * @locked: bool to indicate whether the SW/FW lock was already taken by |
| 2603 | * previous read. |
| 2604 | **/ |
| 2605 | s32 prot_autoc_write_generic(struct ixgbe_hw *hw, u32 reg_val, bool locked) |
| 2606 | { |
| 2607 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_val); |
| 2608 | return 0; |
| 2609 | } |
| 2610 | |
| 2611 | /** |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 2612 | * ixgbe_disable_rx_buff_generic - Stops the receive data path |
| 2613 | * @hw: pointer to hardware structure |
| 2614 | * |
| 2615 | * Stops the receive data path and waits for the HW to internally |
| 2616 | * empty the Rx security block. |
| 2617 | **/ |
| 2618 | s32 ixgbe_disable_rx_buff_generic(struct ixgbe_hw *hw) |
| 2619 | { |
| 2620 | #define IXGBE_MAX_SECRX_POLL 40 |
| 2621 | int i; |
| 2622 | int secrxreg; |
| 2623 | |
| 2624 | secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL); |
| 2625 | secrxreg |= IXGBE_SECRXCTRL_RX_DIS; |
| 2626 | IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg); |
| 2627 | for (i = 0; i < IXGBE_MAX_SECRX_POLL; i++) { |
| 2628 | secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXSTAT); |
| 2629 | if (secrxreg & IXGBE_SECRXSTAT_SECRX_RDY) |
| 2630 | break; |
| 2631 | else |
| 2632 | /* Use interrupt-safe sleep just in case */ |
Jacob Keller | db76ad4 | 2012-05-03 01:44:12 +0000 | [diff] [blame] | 2633 | udelay(1000); |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 2634 | } |
| 2635 | |
| 2636 | /* For informational purposes only */ |
| 2637 | if (i >= IXGBE_MAX_SECRX_POLL) |
Jacob Keller | 6ec1b71 | 2014-04-09 06:03:13 +0000 | [diff] [blame] | 2638 | hw_dbg(hw, "Rx unit being enabled before security path fully disabled. Continuing with init.\n"); |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 2639 | |
| 2640 | return 0; |
| 2641 | |
| 2642 | } |
| 2643 | |
| 2644 | /** |
| 2645 | * ixgbe_enable_rx_buff - Enables the receive data path |
| 2646 | * @hw: pointer to hardware structure |
| 2647 | * |
| 2648 | * Enables the receive data path |
| 2649 | **/ |
| 2650 | s32 ixgbe_enable_rx_buff_generic(struct ixgbe_hw *hw) |
| 2651 | { |
| 2652 | int secrxreg; |
| 2653 | |
| 2654 | secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL); |
| 2655 | secrxreg &= ~IXGBE_SECRXCTRL_RX_DIS; |
| 2656 | IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg); |
| 2657 | IXGBE_WRITE_FLUSH(hw); |
| 2658 | |
| 2659 | return 0; |
| 2660 | } |
| 2661 | |
| 2662 | /** |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2663 | * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit |
| 2664 | * @hw: pointer to hardware structure |
| 2665 | * @regval: register value to write to RXCTRL |
| 2666 | * |
| 2667 | * Enables the Rx DMA unit |
| 2668 | **/ |
| 2669 | s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval) |
| 2670 | { |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 2671 | if (regval & IXGBE_RXCTRL_RXEN) |
| 2672 | hw->mac.ops.enable_rx(hw); |
| 2673 | else |
| 2674 | hw->mac.ops.disable_rx(hw); |
PJ Waskiewicz | 11afc1b | 2009-02-27 15:44:30 +0000 | [diff] [blame] | 2675 | |
| 2676 | return 0; |
| 2677 | } |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2678 | |
| 2679 | /** |
| 2680 | * ixgbe_blink_led_start_generic - Blink LED based on index. |
| 2681 | * @hw: pointer to hardware structure |
| 2682 | * @index: led number to blink |
| 2683 | **/ |
| 2684 | s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index) |
| 2685 | { |
| 2686 | ixgbe_link_speed speed = 0; |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 2687 | bool link_up = false; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2688 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); |
| 2689 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2690 | bool locked = false; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2691 | s32 ret_val; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2692 | |
| 2693 | /* |
| 2694 | * Link must be up to auto-blink the LEDs; |
| 2695 | * Force it if link is down. |
| 2696 | */ |
| 2697 | hw->mac.ops.check_link(hw, &speed, &link_up, false); |
| 2698 | |
| 2699 | if (!link_up) { |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2700 | ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg); |
Don Skidmore | f8cf7a0 | 2014-03-19 09:16:26 +0000 | [diff] [blame] | 2701 | if (ret_val) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2702 | return ret_val; |
Don Skidmore | d7bbcd3 | 2012-10-24 06:19:01 +0000 | [diff] [blame] | 2703 | |
Peter P Waskiewicz Jr | 50ac58b | 2009-06-04 11:10:53 +0000 | [diff] [blame] | 2704 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2705 | autoc_reg |= IXGBE_AUTOC_FLU; |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2706 | |
| 2707 | ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked); |
Don Skidmore | f8cf7a0 | 2014-03-19 09:16:26 +0000 | [diff] [blame] | 2708 | if (ret_val) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2709 | return ret_val; |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2710 | |
Jesse Brandeburg | 945a515 | 2011-07-20 00:56:21 +0000 | [diff] [blame] | 2711 | IXGBE_WRITE_FLUSH(hw); |
Don Skidmore | d7bbcd3 | 2012-10-24 06:19:01 +0000 | [diff] [blame] | 2712 | |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 2713 | usleep_range(10000, 20000); |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2714 | } |
| 2715 | |
| 2716 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 2717 | led_reg |= IXGBE_LED_BLINK(index); |
| 2718 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
| 2719 | IXGBE_WRITE_FLUSH(hw); |
| 2720 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2721 | return 0; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2722 | } |
| 2723 | |
| 2724 | /** |
| 2725 | * ixgbe_blink_led_stop_generic - Stop blinking LED based on index. |
| 2726 | * @hw: pointer to hardware structure |
| 2727 | * @index: led number to stop blinking |
| 2728 | **/ |
| 2729 | s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index) |
| 2730 | { |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2731 | u32 autoc_reg = 0; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2732 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2733 | bool locked = false; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2734 | s32 ret_val; |
Don Skidmore | d7bbcd3 | 2012-10-24 06:19:01 +0000 | [diff] [blame] | 2735 | |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2736 | ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg); |
Don Skidmore | f8cf7a0 | 2014-03-19 09:16:26 +0000 | [diff] [blame] | 2737 | if (ret_val) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2738 | return ret_val; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2739 | |
| 2740 | autoc_reg &= ~IXGBE_AUTOC_FLU; |
| 2741 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2742 | |
Don Skidmore | 429d6a3 | 2014-02-27 20:32:41 -0800 | [diff] [blame] | 2743 | ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked); |
Don Skidmore | f8cf7a0 | 2014-03-19 09:16:26 +0000 | [diff] [blame] | 2744 | if (ret_val) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2745 | return ret_val; |
Don Skidmore | d7bbcd3 | 2012-10-24 06:19:01 +0000 | [diff] [blame] | 2746 | |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2747 | led_reg &= ~IXGBE_LED_MODE_MASK(index); |
| 2748 | led_reg &= ~IXGBE_LED_BLINK(index); |
| 2749 | led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index); |
| 2750 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); |
| 2751 | IXGBE_WRITE_FLUSH(hw); |
| 2752 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2753 | return 0; |
PJ Waskiewicz | 87c1201 | 2009-04-08 13:20:31 +0000 | [diff] [blame] | 2754 | } |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2755 | |
| 2756 | /** |
| 2757 | * ixgbe_get_san_mac_addr_offset - Get SAN MAC address offset from the EEPROM |
| 2758 | * @hw: pointer to hardware structure |
| 2759 | * @san_mac_offset: SAN MAC address offset |
| 2760 | * |
| 2761 | * This function will read the EEPROM location for the SAN MAC address |
| 2762 | * pointer, and returns the value at that location. This is used in both |
| 2763 | * get and set mac_addr routines. |
| 2764 | **/ |
| 2765 | static s32 ixgbe_get_san_mac_addr_offset(struct ixgbe_hw *hw, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2766 | u16 *san_mac_offset) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2767 | { |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2768 | s32 ret_val; |
| 2769 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2770 | /* |
| 2771 | * First read the EEPROM pointer to see if the MAC addresses are |
| 2772 | * available. |
| 2773 | */ |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2774 | ret_val = hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR, |
| 2775 | san_mac_offset); |
| 2776 | if (ret_val) |
| 2777 | hw_err(hw, "eeprom read at offset %d failed\n", |
| 2778 | IXGBE_SAN_MAC_ADDR_PTR); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2779 | |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2780 | return ret_val; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2781 | } |
| 2782 | |
| 2783 | /** |
| 2784 | * ixgbe_get_san_mac_addr_generic - SAN MAC address retrieval from the EEPROM |
| 2785 | * @hw: pointer to hardware structure |
| 2786 | * @san_mac_addr: SAN MAC address |
| 2787 | * |
| 2788 | * Reads the SAN MAC address from the EEPROM, if it's available. This is |
| 2789 | * per-port, so set_lan_id() must be called before reading the addresses. |
| 2790 | * set_lan_id() is called by identify_sfp(), but this cannot be relied |
| 2791 | * upon for non-SFP connections, so we must call it here. |
| 2792 | **/ |
| 2793 | s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) |
| 2794 | { |
| 2795 | u16 san_mac_data, san_mac_offset; |
| 2796 | u8 i; |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2797 | s32 ret_val; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2798 | |
| 2799 | /* |
| 2800 | * First read the EEPROM pointer to see if the MAC addresses are |
| 2801 | * available. If they're not, no point in calling set_lan_id() here. |
| 2802 | */ |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2803 | ret_val = ixgbe_get_san_mac_addr_offset(hw, &san_mac_offset); |
| 2804 | if (ret_val || san_mac_offset == 0 || san_mac_offset == 0xFFFF) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2805 | |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2806 | goto san_mac_addr_clr; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2807 | |
| 2808 | /* make sure we know which port we need to program */ |
| 2809 | hw->mac.ops.set_lan_id(hw); |
| 2810 | /* apply the port offset to the address offset */ |
| 2811 | (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) : |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 2812 | (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2813 | for (i = 0; i < 3; i++) { |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2814 | ret_val = hw->eeprom.ops.read(hw, san_mac_offset, |
| 2815 | &san_mac_data); |
| 2816 | if (ret_val) { |
| 2817 | hw_err(hw, "eeprom read at offset %d failed\n", |
| 2818 | san_mac_offset); |
| 2819 | goto san_mac_addr_clr; |
| 2820 | } |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2821 | san_mac_addr[i * 2] = (u8)(san_mac_data); |
| 2822 | san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); |
| 2823 | san_mac_offset++; |
| 2824 | } |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2825 | return 0; |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 2826 | |
| 2827 | san_mac_addr_clr: |
| 2828 | /* No addresses available in this EEPROM. It's not necessarily an |
| 2829 | * error though, so just wipe the local address and return. |
| 2830 | */ |
| 2831 | for (i = 0; i < 6; i++) |
| 2832 | san_mac_addr[i] = 0xFF; |
| 2833 | return ret_val; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2834 | } |
| 2835 | |
| 2836 | /** |
| 2837 | * ixgbe_get_pcie_msix_count_generic - Gets MSI-X vector count |
| 2838 | * @hw: pointer to hardware structure |
| 2839 | * |
| 2840 | * Read PCIe configuration space, and get the MSI-X vector count from |
| 2841 | * the capabilities table. |
| 2842 | **/ |
Emil Tantilov | 7116130 | 2012-03-22 03:00:29 +0000 | [diff] [blame] | 2843 | u16 ixgbe_get_pcie_msix_count_generic(struct ixgbe_hw *hw) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2844 | { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2845 | u16 msix_count; |
Emil Tantilov | 7116130 | 2012-03-22 03:00:29 +0000 | [diff] [blame] | 2846 | u16 max_msix_count; |
| 2847 | u16 pcie_offset; |
| 2848 | |
| 2849 | switch (hw->mac.type) { |
| 2850 | case ixgbe_mac_82598EB: |
| 2851 | pcie_offset = IXGBE_PCIE_MSIX_82598_CAPS; |
| 2852 | max_msix_count = IXGBE_MAX_MSIX_VECTORS_82598; |
| 2853 | break; |
| 2854 | case ixgbe_mac_82599EB: |
| 2855 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2856 | case ixgbe_mac_X550: |
| 2857 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2858 | case ixgbe_mac_x550em_a: |
Emil Tantilov | 7116130 | 2012-03-22 03:00:29 +0000 | [diff] [blame] | 2859 | pcie_offset = IXGBE_PCIE_MSIX_82599_CAPS; |
| 2860 | max_msix_count = IXGBE_MAX_MSIX_VECTORS_82599; |
| 2861 | break; |
| 2862 | default: |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2863 | return 1; |
Emil Tantilov | 7116130 | 2012-03-22 03:00:29 +0000 | [diff] [blame] | 2864 | } |
| 2865 | |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 2866 | msix_count = ixgbe_read_pci_cfg_word(hw, pcie_offset); |
| 2867 | if (ixgbe_removed(hw->hw_addr)) |
| 2868 | msix_count = 0; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2869 | msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK; |
| 2870 | |
Emil Tantilov | 7116130 | 2012-03-22 03:00:29 +0000 | [diff] [blame] | 2871 | /* MSI-X count is zero-based in HW */ |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2872 | msix_count++; |
| 2873 | |
Emil Tantilov | 7116130 | 2012-03-22 03:00:29 +0000 | [diff] [blame] | 2874 | if (msix_count > max_msix_count) |
| 2875 | msix_count = max_msix_count; |
| 2876 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2877 | return msix_count; |
| 2878 | } |
| 2879 | |
| 2880 | /** |
| 2881 | * ixgbe_clear_vmdq_generic - Disassociate a VMDq pool index from a rx address |
| 2882 | * @hw: pointer to hardware struct |
| 2883 | * @rar: receive address register index to disassociate |
| 2884 | * @vmdq: VMDq pool index to remove from the rar |
| 2885 | **/ |
| 2886 | s32 ixgbe_clear_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq) |
| 2887 | { |
| 2888 | u32 mpsar_lo, mpsar_hi; |
| 2889 | u32 rar_entries = hw->mac.num_rar_entries; |
| 2890 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2891 | /* Make sure we are using a valid rar index range */ |
| 2892 | if (rar >= rar_entries) { |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2893 | hw_dbg(hw, "RAR index %d is out of range.\n", rar); |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2894 | return IXGBE_ERR_INVALID_ARGUMENT; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2895 | } |
| 2896 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2897 | mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar)); |
| 2898 | mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar)); |
| 2899 | |
Mark Rustad | 19458bd | 2014-03-01 05:21:00 +0000 | [diff] [blame] | 2900 | if (ixgbe_removed(hw->hw_addr)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2901 | return 0; |
Mark Rustad | 19458bd | 2014-03-01 05:21:00 +0000 | [diff] [blame] | 2902 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2903 | if (!mpsar_lo && !mpsar_hi) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 2904 | return 0; |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2905 | |
| 2906 | if (vmdq == IXGBE_CLEAR_VMDQ_ALL) { |
| 2907 | if (mpsar_lo) { |
| 2908 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0); |
| 2909 | mpsar_lo = 0; |
| 2910 | } |
| 2911 | if (mpsar_hi) { |
| 2912 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0); |
| 2913 | mpsar_hi = 0; |
| 2914 | } |
| 2915 | } else if (vmdq < 32) { |
| 2916 | mpsar_lo &= ~(1 << vmdq); |
| 2917 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo); |
| 2918 | } else { |
| 2919 | mpsar_hi &= ~(1 << (vmdq - 32)); |
| 2920 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi); |
| 2921 | } |
| 2922 | |
| 2923 | /* was that the last pool using this rar? */ |
| 2924 | if (mpsar_lo == 0 && mpsar_hi == 0 && rar != 0) |
| 2925 | hw->mac.ops.clear_rar(hw, rar); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2926 | return 0; |
| 2927 | } |
| 2928 | |
| 2929 | /** |
| 2930 | * ixgbe_set_vmdq_generic - Associate a VMDq pool index with a rx address |
| 2931 | * @hw: pointer to hardware struct |
| 2932 | * @rar: receive address register index to associate with a VMDq index |
| 2933 | * @vmdq: VMDq pool index |
| 2934 | **/ |
| 2935 | s32 ixgbe_set_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq) |
| 2936 | { |
| 2937 | u32 mpsar; |
| 2938 | u32 rar_entries = hw->mac.num_rar_entries; |
| 2939 | |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2940 | /* Make sure we are using a valid rar index range */ |
| 2941 | if (rar >= rar_entries) { |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2942 | hw_dbg(hw, "RAR index %d is out of range.\n", rar); |
Emil Tantilov | c700f4e | 2011-02-17 11:34:58 +0000 | [diff] [blame] | 2943 | return IXGBE_ERR_INVALID_ARGUMENT; |
| 2944 | } |
| 2945 | |
| 2946 | if (vmdq < 32) { |
| 2947 | mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar)); |
| 2948 | mpsar |= 1 << vmdq; |
| 2949 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar); |
| 2950 | } else { |
| 2951 | mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar)); |
| 2952 | mpsar |= 1 << (vmdq - 32); |
| 2953 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2954 | } |
| 2955 | return 0; |
| 2956 | } |
| 2957 | |
| 2958 | /** |
Alexander Duyck | 7fa7c9d | 2012-05-05 05:32:52 +0000 | [diff] [blame] | 2959 | * This function should only be involved in the IOV mode. |
| 2960 | * In IOV mode, Default pool is next pool after the number of |
| 2961 | * VFs advertized and not 0. |
| 2962 | * MPSAR table needs to be updated for SAN_MAC RAR [hw->mac.san_mac_rar_index] |
| 2963 | * |
| 2964 | * ixgbe_set_vmdq_san_mac - Associate default VMDq pool index with a rx address |
| 2965 | * @hw: pointer to hardware struct |
| 2966 | * @vmdq: VMDq pool index |
| 2967 | **/ |
| 2968 | s32 ixgbe_set_vmdq_san_mac_generic(struct ixgbe_hw *hw, u32 vmdq) |
| 2969 | { |
| 2970 | u32 rar = hw->mac.san_mac_rar_index; |
| 2971 | |
| 2972 | if (vmdq < 32) { |
| 2973 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 1 << vmdq); |
| 2974 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0); |
| 2975 | } else { |
| 2976 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0); |
| 2977 | IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 1 << (vmdq - 32)); |
| 2978 | } |
| 2979 | |
| 2980 | return 0; |
| 2981 | } |
| 2982 | |
| 2983 | /** |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2984 | * ixgbe_init_uta_tables_generic - Initialize the Unicast Table Array |
| 2985 | * @hw: pointer to hardware structure |
| 2986 | **/ |
| 2987 | s32 ixgbe_init_uta_tables_generic(struct ixgbe_hw *hw) |
| 2988 | { |
| 2989 | int i; |
| 2990 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 2991 | for (i = 0; i < 128; i++) |
| 2992 | IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0); |
| 2993 | |
| 2994 | return 0; |
| 2995 | } |
| 2996 | |
| 2997 | /** |
| 2998 | * ixgbe_find_vlvf_slot - find the vlanid or the first empty slot |
| 2999 | * @hw: pointer to hardware structure |
| 3000 | * @vlan: VLAN id to write to VLAN filter |
| 3001 | * |
| 3002 | * return the VLVF index where this VLAN id should be placed |
| 3003 | * |
| 3004 | **/ |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3005 | static s32 ixgbe_find_vlvf_slot(struct ixgbe_hw *hw, u32 vlan, bool vlvf_bypass) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3006 | { |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3007 | s32 regindex, first_empty_slot; |
Alexander Duyck | c2bc9ce | 2015-11-02 17:10:07 -0800 | [diff] [blame] | 3008 | u32 bits; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3009 | |
| 3010 | /* short cut the special case */ |
| 3011 | if (vlan == 0) |
| 3012 | return 0; |
| 3013 | |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3014 | /* if vlvf_bypass is set we don't want to use an empty slot, we |
| 3015 | * will simply bypass the VLVF if there are no entries present in the |
| 3016 | * VLVF that contain our VLAN |
| 3017 | */ |
| 3018 | first_empty_slot = vlvf_bypass ? IXGBE_ERR_NO_SPACE : 0; |
| 3019 | |
Alexander Duyck | c2bc9ce | 2015-11-02 17:10:07 -0800 | [diff] [blame] | 3020 | /* add VLAN enable bit for comparison */ |
| 3021 | vlan |= IXGBE_VLVF_VIEN; |
| 3022 | |
| 3023 | /* Search for the vlan id in the VLVF entries. Save off the first empty |
| 3024 | * slot found along the way. |
| 3025 | * |
| 3026 | * pre-decrement loop covering (IXGBE_VLVF_ENTRIES - 1) .. 1 |
| 3027 | */ |
| 3028 | for (regindex = IXGBE_VLVF_ENTRIES; --regindex;) { |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3029 | bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex)); |
Alexander Duyck | c2bc9ce | 2015-11-02 17:10:07 -0800 | [diff] [blame] | 3030 | if (bits == vlan) |
| 3031 | return regindex; |
| 3032 | if (!first_empty_slot && !bits) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3033 | first_empty_slot = regindex; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3034 | } |
| 3035 | |
Alexander Duyck | c2bc9ce | 2015-11-02 17:10:07 -0800 | [diff] [blame] | 3036 | /* If we are here then we didn't find the VLAN. Return first empty |
| 3037 | * slot we found during our search, else error. |
| 3038 | */ |
| 3039 | if (!first_empty_slot) |
| 3040 | hw_dbg(hw, "No space in VLVF.\n"); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3041 | |
Alexander Duyck | c2bc9ce | 2015-11-02 17:10:07 -0800 | [diff] [blame] | 3042 | return first_empty_slot ? : IXGBE_ERR_NO_SPACE; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3043 | } |
| 3044 | |
| 3045 | /** |
| 3046 | * ixgbe_set_vfta_generic - Set VLAN filter table |
| 3047 | * @hw: pointer to hardware structure |
| 3048 | * @vlan: VLAN id to write to VLAN filter |
| 3049 | * @vind: VMDq output index that maps queue to VLAN id in VFVFB |
| 3050 | * @vlan_on: boolean flag to turn on/off VLAN in VFVF |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3051 | * @vlvf_bypass: boolean flag indicating updating default pool is okay |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3052 | * |
| 3053 | * Turn on/off specified VLAN in the VLAN filter table. |
| 3054 | **/ |
| 3055 | s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind, |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3056 | bool vlan_on, bool vlvf_bypass) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3057 | { |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3058 | u32 regidx, vfta_delta, vfta, bits; |
Alexander Duyck | 63d9379 | 2015-11-02 17:09:48 -0800 | [diff] [blame] | 3059 | s32 vlvf_index; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3060 | |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3061 | if ((vlan > 4095) || (vind > 63)) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3062 | return IXGBE_ERR_PARAM; |
| 3063 | |
| 3064 | /* |
| 3065 | * this is a 2 part operation - first the VFTA, then the |
| 3066 | * VLVF and VLVFB if VT Mode is set |
| 3067 | * We don't write the VFTA until we know the VLVF part succeeded. |
| 3068 | */ |
| 3069 | |
| 3070 | /* Part 1 |
| 3071 | * The VFTA is a bitstring made up of 128 32-bit registers |
| 3072 | * that enable the particular VLAN id, much like the MTA: |
| 3073 | * bits[11-5]: which register |
| 3074 | * bits[4-0]: which bit in the register |
| 3075 | */ |
Alexander Duyck | c18fbd5 | 2015-11-02 17:09:42 -0800 | [diff] [blame] | 3076 | regidx = vlan / 32; |
| 3077 | vfta_delta = 1 << (vlan % 32); |
| 3078 | vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(regidx)); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3079 | |
Alexander Duyck | c18fbd5 | 2015-11-02 17:09:42 -0800 | [diff] [blame] | 3080 | /* vfta_delta represents the difference between the current value |
| 3081 | * of vfta and the value we want in the register. Since the diff |
| 3082 | * is an XOR mask we can just update vfta using an XOR. |
| 3083 | */ |
| 3084 | vfta_delta &= vlan_on ? ~vfta : vfta; |
| 3085 | vfta ^= vfta_delta; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3086 | |
| 3087 | /* Part 2 |
| 3088 | * If VT Mode is set |
| 3089 | * Either vlan_on |
| 3090 | * make sure the vlan is in VLVF |
| 3091 | * set the vind bit in the matching VLVFB |
| 3092 | * Or !vlan_on |
| 3093 | * clear the pool bit and possibly the vind |
| 3094 | */ |
Alexander Duyck | 63d9379 | 2015-11-02 17:09:48 -0800 | [diff] [blame] | 3095 | if (!(IXGBE_READ_REG(hw, IXGBE_VT_CTL) & IXGBE_VT_CTL_VT_ENABLE)) |
| 3096 | goto vfta_update; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3097 | |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3098 | vlvf_index = ixgbe_find_vlvf_slot(hw, vlan, vlvf_bypass); |
| 3099 | if (vlvf_index < 0) { |
| 3100 | if (vlvf_bypass) |
| 3101 | goto vfta_update; |
Alexander Duyck | 63d9379 | 2015-11-02 17:09:48 -0800 | [diff] [blame] | 3102 | return vlvf_index; |
Alexander Duyck | b6488b6 | 2015-11-02 17:10:01 -0800 | [diff] [blame] | 3103 | } |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3104 | |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3105 | bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32)); |
| 3106 | |
| 3107 | /* set the pool bit */ |
| 3108 | bits |= 1 << (vind % 32); |
| 3109 | if (vlan_on) |
| 3110 | goto vlvf_update; |
| 3111 | |
| 3112 | /* clear the pool bit */ |
| 3113 | bits ^= 1 << (vind % 32); |
| 3114 | |
| 3115 | if (!bits && |
| 3116 | !IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + 1 - vind / 32))) { |
| 3117 | /* Clear VFTA first, then disable VLVF. Otherwise |
| 3118 | * we run the risk of stray packets leaking into |
| 3119 | * the PF via the default pool |
| 3120 | */ |
| 3121 | if (vfta_delta) |
| 3122 | IXGBE_WRITE_REG(hw, IXGBE_VFTA(regidx), vfta); |
| 3123 | |
| 3124 | /* disable VLVF and clear remaining bit from pool */ |
| 3125 | IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), 0); |
| 3126 | IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), 0); |
| 3127 | |
| 3128 | return 0; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3129 | } |
| 3130 | |
Alexander Duyck | 63d9379 | 2015-11-02 17:09:48 -0800 | [diff] [blame] | 3131 | /* If there are still bits set in the VLVFB registers |
| 3132 | * for the VLAN ID indicated we need to see if the |
| 3133 | * caller is requesting that we clear the VFTA entry bit. |
| 3134 | * If the caller has requested that we clear the VFTA |
| 3135 | * entry bit but there are still pools/VFs using this VLAN |
| 3136 | * ID entry then ignore the request. We're not worried |
| 3137 | * about the case where we're turning the VFTA VLAN ID |
| 3138 | * entry bit on, only when requested to turn it off as |
| 3139 | * there may be multiple pools and/or VFs using the |
| 3140 | * VLAN ID entry. In that case we cannot clear the |
| 3141 | * VFTA bit until all pools/VFs using that VLAN ID have also |
| 3142 | * been cleared. This will be indicated by "bits" being |
| 3143 | * zero. |
| 3144 | */ |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3145 | vfta_delta = 0; |
Alexander Duyck | 63d9379 | 2015-11-02 17:09:48 -0800 | [diff] [blame] | 3146 | |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3147 | vlvf_update: |
| 3148 | /* record pool change and enable VLAN ID if not already enabled */ |
| 3149 | IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), bits); |
| 3150 | IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), IXGBE_VLVF_VIEN | vlan); |
Alexander Duyck | 63d9379 | 2015-11-02 17:09:48 -0800 | [diff] [blame] | 3151 | |
| 3152 | vfta_update: |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3153 | /* Update VFTA now that we are ready for traffic */ |
Alexander Duyck | c18fbd5 | 2015-11-02 17:09:42 -0800 | [diff] [blame] | 3154 | if (vfta_delta) |
| 3155 | IXGBE_WRITE_REG(hw, IXGBE_VFTA(regidx), vfta); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3156 | |
| 3157 | return 0; |
| 3158 | } |
| 3159 | |
| 3160 | /** |
| 3161 | * ixgbe_clear_vfta_generic - Clear VLAN filter table |
| 3162 | * @hw: pointer to hardware structure |
| 3163 | * |
| 3164 | * Clears the VLAN filer table, and the VMDq index associated with the filter |
| 3165 | **/ |
| 3166 | s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw) |
| 3167 | { |
| 3168 | u32 offset; |
| 3169 | |
| 3170 | for (offset = 0; offset < hw->mac.vft_size; offset++) |
| 3171 | IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0); |
| 3172 | |
| 3173 | for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) { |
| 3174 | IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0); |
Alexander Duyck | 5ac736a | 2015-11-02 17:09:54 -0800 | [diff] [blame] | 3175 | IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2), 0); |
| 3176 | IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2 + 1), 0); |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3177 | } |
| 3178 | |
| 3179 | return 0; |
| 3180 | } |
| 3181 | |
| 3182 | /** |
| 3183 | * ixgbe_check_mac_link_generic - Determine link and speed status |
| 3184 | * @hw: pointer to hardware structure |
| 3185 | * @speed: pointer to link speed |
| 3186 | * @link_up: true when link is up |
| 3187 | * @link_up_wait_to_complete: bool used to wait for link up or not |
| 3188 | * |
| 3189 | * Reads the links register to determine if link is up and the current speed |
| 3190 | **/ |
| 3191 | s32 ixgbe_check_mac_link_generic(struct ixgbe_hw *hw, ixgbe_link_speed *speed, |
Emil Tantilov | 8c7bea3 | 2011-02-19 08:43:44 +0000 | [diff] [blame] | 3192 | bool *link_up, bool link_up_wait_to_complete) |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3193 | { |
Emil Tantilov | 48de36c | 2011-02-16 01:38:08 +0000 | [diff] [blame] | 3194 | u32 links_reg, links_orig; |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3195 | u32 i; |
| 3196 | |
Emil Tantilov | 48de36c | 2011-02-16 01:38:08 +0000 | [diff] [blame] | 3197 | /* clear the old state */ |
| 3198 | links_orig = IXGBE_READ_REG(hw, IXGBE_LINKS); |
| 3199 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3200 | links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS); |
Emil Tantilov | 48de36c | 2011-02-16 01:38:08 +0000 | [diff] [blame] | 3201 | |
| 3202 | if (links_orig != links_reg) { |
| 3203 | hw_dbg(hw, "LINKS changed from %08X to %08X\n", |
| 3204 | links_orig, links_reg); |
| 3205 | } |
| 3206 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3207 | if (link_up_wait_to_complete) { |
| 3208 | for (i = 0; i < IXGBE_LINK_UP_TIME; i++) { |
| 3209 | if (links_reg & IXGBE_LINKS_UP) { |
| 3210 | *link_up = true; |
| 3211 | break; |
| 3212 | } else { |
| 3213 | *link_up = false; |
| 3214 | } |
| 3215 | msleep(100); |
| 3216 | links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS); |
| 3217 | } |
| 3218 | } else { |
| 3219 | if (links_reg & IXGBE_LINKS_UP) |
| 3220 | *link_up = true; |
| 3221 | else |
| 3222 | *link_up = false; |
| 3223 | } |
| 3224 | |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 3225 | switch (links_reg & IXGBE_LINKS_SPEED_82599) { |
| 3226 | case IXGBE_LINKS_SPEED_10G_82599: |
| 3227 | if ((hw->mac.type >= ixgbe_mac_X550) && |
| 3228 | (links_reg & IXGBE_LINKS_SPEED_NON_STD)) |
| 3229 | *speed = IXGBE_LINK_SPEED_2_5GB_FULL; |
| 3230 | else |
| 3231 | *speed = IXGBE_LINK_SPEED_10GB_FULL; |
| 3232 | break; |
| 3233 | case IXGBE_LINKS_SPEED_1G_82599: |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3234 | *speed = IXGBE_LINK_SPEED_1GB_FULL; |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 3235 | break; |
| 3236 | case IXGBE_LINKS_SPEED_100_82599: |
| 3237 | if ((hw->mac.type >= ixgbe_mac_X550) && |
| 3238 | (links_reg & IXGBE_LINKS_SPEED_NON_STD)) |
| 3239 | *speed = IXGBE_LINK_SPEED_5GB_FULL; |
| 3240 | else |
| 3241 | *speed = IXGBE_LINK_SPEED_100_FULL; |
| 3242 | break; |
| 3243 | default: |
Emil Tantilov | 63d778d | 2011-02-19 08:43:39 +0000 | [diff] [blame] | 3244 | *speed = IXGBE_LINK_SPEED_UNKNOWN; |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 3245 | } |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3246 | |
Mallikarjuna R Chilakala | 21ce849 | 2010-05-13 17:33:41 +0000 | [diff] [blame] | 3247 | return 0; |
| 3248 | } |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3249 | |
| 3250 | /** |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3251 | * ixgbe_get_wwn_prefix_generic - Get alternative WWNN/WWPN prefix from |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3252 | * the EEPROM |
| 3253 | * @hw: pointer to hardware structure |
| 3254 | * @wwnn_prefix: the alternative WWNN prefix |
| 3255 | * @wwpn_prefix: the alternative WWPN prefix |
| 3256 | * |
| 3257 | * This function will read the EEPROM from the alternative SAN MAC address |
| 3258 | * block to check the support for the alternative WWNN/WWPN prefix support. |
| 3259 | **/ |
| 3260 | s32 ixgbe_get_wwn_prefix_generic(struct ixgbe_hw *hw, u16 *wwnn_prefix, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 3261 | u16 *wwpn_prefix) |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3262 | { |
| 3263 | u16 offset, caps; |
| 3264 | u16 alt_san_mac_blk_offset; |
| 3265 | |
| 3266 | /* clear output first */ |
| 3267 | *wwnn_prefix = 0xFFFF; |
| 3268 | *wwpn_prefix = 0xFFFF; |
| 3269 | |
| 3270 | /* check if alternative SAN MAC is supported */ |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 3271 | offset = IXGBE_ALT_SAN_MAC_ADDR_BLK_PTR; |
| 3272 | if (hw->eeprom.ops.read(hw, offset, &alt_san_mac_blk_offset)) |
| 3273 | goto wwn_prefix_err; |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3274 | |
| 3275 | if ((alt_san_mac_blk_offset == 0) || |
| 3276 | (alt_san_mac_blk_offset == 0xFFFF)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3277 | return 0; |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3278 | |
| 3279 | /* check capability in alternative san mac address block */ |
| 3280 | offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_CAPS_OFFSET; |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 3281 | if (hw->eeprom.ops.read(hw, offset, &caps)) |
| 3282 | goto wwn_prefix_err; |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3283 | if (!(caps & IXGBE_ALT_SAN_MAC_ADDR_CAPS_ALTWWN)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3284 | return 0; |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3285 | |
| 3286 | /* get the corresponding prefix for WWNN/WWPN */ |
| 3287 | offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWNN_OFFSET; |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 3288 | if (hw->eeprom.ops.read(hw, offset, wwnn_prefix)) |
| 3289 | hw_err(hw, "eeprom read at offset %d failed\n", offset); |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3290 | |
| 3291 | offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWPN_OFFSET; |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 3292 | if (hw->eeprom.ops.read(hw, offset, wwpn_prefix)) |
| 3293 | goto wwn_prefix_err; |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3294 | |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3295 | return 0; |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 3296 | |
| 3297 | wwn_prefix_err: |
| 3298 | hw_err(hw, "eeprom read at offset %d failed\n", offset); |
| 3299 | return 0; |
Don Skidmore | a391f1d | 2010-11-16 19:27:15 -0800 | [diff] [blame] | 3300 | } |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3301 | |
| 3302 | /** |
| 3303 | * ixgbe_set_mac_anti_spoofing - Enable/Disable MAC anti-spoofing |
| 3304 | * @hw: pointer to hardware structure |
| 3305 | * @enable: enable or disable switch for anti-spoofing |
| 3306 | * @pf: Physical Function pool - do not enable anti-spoofing for the PF |
| 3307 | * |
| 3308 | **/ |
| 3309 | void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int pf) |
| 3310 | { |
| 3311 | int j; |
| 3312 | int pf_target_reg = pf >> 3; |
| 3313 | int pf_target_shift = pf % 8; |
| 3314 | u32 pfvfspoof = 0; |
| 3315 | |
| 3316 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3317 | return; |
| 3318 | |
| 3319 | if (enable) |
| 3320 | pfvfspoof = IXGBE_SPOOF_MACAS_MASK; |
| 3321 | |
| 3322 | /* |
| 3323 | * PFVFSPOOF register array is size 8 with 8 bits assigned to |
| 3324 | * MAC anti-spoof enables in each register array element. |
| 3325 | */ |
Alexander Duyck | ef89e0a | 2012-05-05 05:32:58 +0000 | [diff] [blame] | 3326 | for (j = 0; j < pf_target_reg; j++) |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3327 | IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof); |
| 3328 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3329 | /* |
| 3330 | * The PF should be allowed to spoof so that it can support |
Alexander Duyck | ef89e0a | 2012-05-05 05:32:58 +0000 | [diff] [blame] | 3331 | * emulation mode NICs. Do not set the bits assigned to the PF |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3332 | */ |
Alexander Duyck | ef89e0a | 2012-05-05 05:32:58 +0000 | [diff] [blame] | 3333 | pfvfspoof &= (1 << pf_target_shift) - 1; |
| 3334 | IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof); |
| 3335 | |
| 3336 | /* |
| 3337 | * Remaining pools belong to the PF so they do not need to have |
| 3338 | * anti-spoofing enabled. |
| 3339 | */ |
| 3340 | for (j++; j < IXGBE_PFVFSPOOF_REG_COUNT; j++) |
| 3341 | IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), 0); |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3342 | } |
| 3343 | |
| 3344 | /** |
| 3345 | * ixgbe_set_vlan_anti_spoofing - Enable/Disable VLAN anti-spoofing |
| 3346 | * @hw: pointer to hardware structure |
| 3347 | * @enable: enable or disable switch for VLAN anti-spoofing |
| 3348 | * @pf: Virtual Function pool - VF Pool to set for VLAN anti-spoofing |
| 3349 | * |
| 3350 | **/ |
| 3351 | void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf) |
| 3352 | { |
| 3353 | int vf_target_reg = vf >> 3; |
| 3354 | int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT; |
| 3355 | u32 pfvfspoof; |
| 3356 | |
| 3357 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3358 | return; |
| 3359 | |
| 3360 | pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg)); |
| 3361 | if (enable) |
| 3362 | pfvfspoof |= (1 << vf_target_shift); |
| 3363 | else |
| 3364 | pfvfspoof &= ~(1 << vf_target_shift); |
| 3365 | IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof); |
| 3366 | } |
Emil Tantilov | b776d10 | 2011-03-31 09:36:18 +0000 | [diff] [blame] | 3367 | |
| 3368 | /** |
| 3369 | * ixgbe_get_device_caps_generic - Get additional device capabilities |
| 3370 | * @hw: pointer to hardware structure |
| 3371 | * @device_caps: the EEPROM word with the extra device capabilities |
| 3372 | * |
| 3373 | * This function will read the EEPROM location for the device capabilities, |
| 3374 | * and return the word through device_caps. |
| 3375 | **/ |
| 3376 | s32 ixgbe_get_device_caps_generic(struct ixgbe_hw *hw, u16 *device_caps) |
| 3377 | { |
| 3378 | hw->eeprom.ops.read(hw, IXGBE_DEVICE_CAPS, device_caps); |
| 3379 | |
| 3380 | return 0; |
| 3381 | } |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3382 | |
| 3383 | /** |
| 3384 | * ixgbe_set_rxpba_generic - Initialize RX packet buffer |
| 3385 | * @hw: pointer to hardware structure |
| 3386 | * @num_pb: number of packet buffers to allocate |
| 3387 | * @headroom: reserve n KB of headroom |
| 3388 | * @strategy: packet buffer allocation strategy |
| 3389 | **/ |
| 3390 | void ixgbe_set_rxpba_generic(struct ixgbe_hw *hw, |
| 3391 | int num_pb, |
| 3392 | u32 headroom, |
| 3393 | int strategy) |
| 3394 | { |
| 3395 | u32 pbsize = hw->mac.rx_pb_size; |
| 3396 | int i = 0; |
| 3397 | u32 rxpktsize, txpktsize, txpbthresh; |
| 3398 | |
| 3399 | /* Reserve headroom */ |
| 3400 | pbsize -= headroom; |
| 3401 | |
| 3402 | if (!num_pb) |
| 3403 | num_pb = 1; |
| 3404 | |
| 3405 | /* Divide remaining packet buffer space amongst the number |
| 3406 | * of packet buffers requested using supplied strategy. |
| 3407 | */ |
| 3408 | switch (strategy) { |
| 3409 | case (PBA_STRATEGY_WEIGHTED): |
| 3410 | /* pba_80_48 strategy weight first half of packet buffer with |
| 3411 | * 5/8 of the packet buffer space. |
| 3412 | */ |
| 3413 | rxpktsize = ((pbsize * 5 * 2) / (num_pb * 8)); |
| 3414 | pbsize -= rxpktsize * (num_pb / 2); |
| 3415 | rxpktsize <<= IXGBE_RXPBSIZE_SHIFT; |
| 3416 | for (; i < (num_pb / 2); i++) |
| 3417 | IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize); |
| 3418 | /* Fall through to configure remaining packet buffers */ |
| 3419 | case (PBA_STRATEGY_EQUAL): |
| 3420 | /* Divide the remaining Rx packet buffer evenly among the TCs */ |
| 3421 | rxpktsize = (pbsize / (num_pb - i)) << IXGBE_RXPBSIZE_SHIFT; |
| 3422 | for (; i < num_pb; i++) |
| 3423 | IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize); |
| 3424 | break; |
| 3425 | default: |
| 3426 | break; |
| 3427 | } |
| 3428 | |
| 3429 | /* |
| 3430 | * Setup Tx packet buffer and threshold equally for all TCs |
| 3431 | * TXPBTHRESH register is set in K so divide by 1024 and subtract |
| 3432 | * 10 since the largest packet we support is just over 9K. |
| 3433 | */ |
| 3434 | txpktsize = IXGBE_TXPBSIZE_MAX / num_pb; |
| 3435 | txpbthresh = (txpktsize / 1024) - IXGBE_TXPKT_SIZE_MAX; |
| 3436 | for (i = 0; i < num_pb; i++) { |
| 3437 | IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize); |
| 3438 | IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh); |
| 3439 | } |
| 3440 | |
| 3441 | /* Clear unused TCs, if any, to zero buffer size*/ |
| 3442 | for (; i < IXGBE_MAX_PB; i++) { |
| 3443 | IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0); |
| 3444 | IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0); |
| 3445 | IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0); |
| 3446 | } |
| 3447 | } |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3448 | |
| 3449 | /** |
| 3450 | * ixgbe_calculate_checksum - Calculate checksum for buffer |
| 3451 | * @buffer: pointer to EEPROM |
| 3452 | * @length: size of EEPROM to calculate a checksum for |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3453 | * |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3454 | * Calculates the checksum for some buffer on a specified length. The |
| 3455 | * checksum calculated is returned. |
| 3456 | **/ |
| 3457 | static u8 ixgbe_calculate_checksum(u8 *buffer, u32 length) |
| 3458 | { |
| 3459 | u32 i; |
| 3460 | u8 sum = 0; |
| 3461 | |
| 3462 | if (!buffer) |
| 3463 | return 0; |
| 3464 | |
| 3465 | for (i = 0; i < length; i++) |
| 3466 | sum += buffer[i]; |
| 3467 | |
| 3468 | return (u8) (0 - sum); |
| 3469 | } |
| 3470 | |
| 3471 | /** |
| 3472 | * ixgbe_host_interface_command - Issue command to manageability block |
| 3473 | * @hw: pointer to the HW structure |
| 3474 | * @buffer: contains the command to write and where the return status will |
| 3475 | * be placed |
Don Skidmore | c466d7a | 2012-02-28 06:35:54 +0000 | [diff] [blame] | 3476 | * @length: length of buffer, must be multiple of 4 bytes |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3477 | * @timeout: time in ms to wait for command completion |
| 3478 | * @return_data: read and return data from the buffer (true) or not (false) |
| 3479 | * Needed because FW structures are big endian and decoding of |
| 3480 | * these fields can be 8 bit or 16 bit based on command. Decoding |
| 3481 | * is not easily understood without making a table of commands. |
| 3482 | * So we will leave this up to the caller to read back the data |
| 3483 | * in these cases. |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3484 | * |
| 3485 | * Communicates with the manageability block. On success return 0 |
| 3486 | * else return IXGBE_ERR_HOST_INTERFACE_COMMAND. |
| 3487 | **/ |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3488 | s32 ixgbe_host_interface_command(struct ixgbe_hw *hw, void *buffer, |
Don Skidmore | 6a14ee0 | 2014-12-05 03:59:50 +0000 | [diff] [blame] | 3489 | u32 length, u32 timeout, |
| 3490 | bool return_data) |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3491 | { |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3492 | u32 hdr_size = sizeof(struct ixgbe_hic_hdr); |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3493 | u32 hicr, i, bi, fwsts; |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3494 | u16 buf_len, dword_len; |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3495 | union { |
| 3496 | struct ixgbe_hic_hdr hdr; |
| 3497 | u32 u32arr[1]; |
| 3498 | } *bp = buffer; |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3499 | s32 status; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3500 | |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3501 | if (!length || length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) { |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3502 | hw_dbg(hw, "Buffer length failure buffersize-%d.\n", length); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3503 | return IXGBE_ERR_HOST_INTERFACE_COMMAND; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3504 | } |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3505 | /* Take management host interface semaphore */ |
| 3506 | status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM); |
| 3507 | if (status) |
| 3508 | return status; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3509 | |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3510 | /* Set bit 9 of FWSTS clearing FW reset indication */ |
| 3511 | fwsts = IXGBE_READ_REG(hw, IXGBE_FWSTS); |
| 3512 | IXGBE_WRITE_REG(hw, IXGBE_FWSTS, fwsts | IXGBE_FWSTS_FWRI); |
| 3513 | |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3514 | /* Check that the host interface is enabled. */ |
| 3515 | hicr = IXGBE_READ_REG(hw, IXGBE_HICR); |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3516 | if (!(hicr & IXGBE_HICR_EN)) { |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3517 | hw_dbg(hw, "IXGBE_HOST_EN bit disabled.\n"); |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3518 | status = IXGBE_ERR_HOST_INTERFACE_COMMAND; |
| 3519 | goto rel_out; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3520 | } |
| 3521 | |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3522 | /* Calculate length in DWORDs. We must be DWORD aligned */ |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3523 | if (length % sizeof(u32)) { |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3524 | hw_dbg(hw, "Buffer length failure, not aligned to dword"); |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3525 | status = IXGBE_ERR_INVALID_ARGUMENT; |
| 3526 | goto rel_out; |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3527 | } |
| 3528 | |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3529 | dword_len = length >> 2; |
| 3530 | |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3531 | /* The device driver writes the relevant command block |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3532 | * into the ram area. |
| 3533 | */ |
| 3534 | for (i = 0; i < dword_len; i++) |
| 3535 | IXGBE_WRITE_REG_ARRAY(hw, IXGBE_FLEX_MNG, |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3536 | i, cpu_to_le32(bp->u32arr[i])); |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3537 | |
| 3538 | /* Setting this bit tells the ARC that a new command is pending. */ |
| 3539 | IXGBE_WRITE_REG(hw, IXGBE_HICR, hicr | IXGBE_HICR_C); |
| 3540 | |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3541 | for (i = 0; i < timeout; i++) { |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3542 | hicr = IXGBE_READ_REG(hw, IXGBE_HICR); |
| 3543 | if (!(hicr & IXGBE_HICR_C)) |
| 3544 | break; |
| 3545 | usleep_range(1000, 2000); |
| 3546 | } |
| 3547 | |
| 3548 | /* Check command successful completion. */ |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3549 | if ((timeout && i == timeout) || |
| 3550 | !(IXGBE_READ_REG(hw, IXGBE_HICR) & IXGBE_HICR_SV)) { |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3551 | hw_dbg(hw, "Command has failed with no status valid.\n"); |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3552 | status = IXGBE_ERR_HOST_INTERFACE_COMMAND; |
| 3553 | goto rel_out; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3554 | } |
| 3555 | |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3556 | if (!return_data) |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3557 | goto rel_out; |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3558 | |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3559 | /* Calculate length in DWORDs */ |
| 3560 | dword_len = hdr_size >> 2; |
| 3561 | |
| 3562 | /* first pull in the header so we know the buffer length */ |
Emil Tantilov | 331bcf4 | 2011-10-22 05:21:32 +0000 | [diff] [blame] | 3563 | for (bi = 0; bi < dword_len; bi++) { |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3564 | bp->u32arr[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi); |
| 3565 | le32_to_cpus(&bp->u32arr[bi]); |
Emil Tantilov | 79488c5 | 2011-10-11 08:24:57 +0000 | [diff] [blame] | 3566 | } |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3567 | |
| 3568 | /* If there is any thing in data position pull it in */ |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3569 | buf_len = bp->hdr.buf_len; |
| 3570 | if (!buf_len) |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3571 | goto rel_out; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3572 | |
Mark Rustad | 7345716 | 2016-03-14 11:05:51 -0700 | [diff] [blame] | 3573 | if (length < round_up(buf_len, 4) + hdr_size) { |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3574 | hw_dbg(hw, "Buffer not large enough for reply message.\n"); |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3575 | status = IXGBE_ERR_HOST_INTERFACE_COMMAND; |
| 3576 | goto rel_out; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3577 | } |
| 3578 | |
Emil Tantilov | 331bcf4 | 2011-10-22 05:21:32 +0000 | [diff] [blame] | 3579 | /* Calculate length in DWORDs, add 3 for odd lengths */ |
| 3580 | dword_len = (buf_len + 3) >> 2; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3581 | |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3582 | /* Pull in the rest of the buffer (bi is where we left off) */ |
Emil Tantilov | 331bcf4 | 2011-10-22 05:21:32 +0000 | [diff] [blame] | 3583 | for (; bi <= dword_len; bi++) { |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3584 | bp->u32arr[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi); |
| 3585 | le32_to_cpus(&bp->u32arr[bi]); |
Emil Tantilov | 331bcf4 | 2011-10-22 05:21:32 +0000 | [diff] [blame] | 3586 | } |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3587 | |
Mark Rustad | af74190 | 2016-03-14 11:06:02 -0700 | [diff] [blame] | 3588 | rel_out: |
| 3589 | hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM); |
| 3590 | |
| 3591 | return status; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3592 | } |
| 3593 | |
| 3594 | /** |
| 3595 | * ixgbe_set_fw_drv_ver_generic - Sends driver version to firmware |
| 3596 | * @hw: pointer to the HW structure |
| 3597 | * @maj: driver version major number |
| 3598 | * @min: driver version minor number |
| 3599 | * @build: driver version build number |
| 3600 | * @sub: driver version sub build number |
| 3601 | * |
| 3602 | * Sends driver version number to firmware through the manageability |
| 3603 | * block. On success return 0 |
| 3604 | * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring |
| 3605 | * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails. |
| 3606 | **/ |
| 3607 | s32 ixgbe_set_fw_drv_ver_generic(struct ixgbe_hw *hw, u8 maj, u8 min, |
| 3608 | u8 build, u8 sub) |
| 3609 | { |
| 3610 | struct ixgbe_hic_drv_info fw_cmd; |
| 3611 | int i; |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3612 | s32 ret_val; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3613 | |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3614 | fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO; |
| 3615 | fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN; |
| 3616 | fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED; |
Mark Rustad | 3775b81 | 2016-03-14 11:05:46 -0700 | [diff] [blame] | 3617 | fw_cmd.port_num = hw->bus.func; |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3618 | fw_cmd.ver_maj = maj; |
| 3619 | fw_cmd.ver_min = min; |
| 3620 | fw_cmd.ver_build = build; |
| 3621 | fw_cmd.ver_sub = sub; |
| 3622 | fw_cmd.hdr.checksum = 0; |
| 3623 | fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd, |
| 3624 | (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len)); |
| 3625 | fw_cmd.pad = 0; |
| 3626 | fw_cmd.pad2 = 0; |
| 3627 | |
| 3628 | for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) { |
Mark Rustad | 5cffde3 | 2016-03-14 11:05:57 -0700 | [diff] [blame] | 3629 | ret_val = ixgbe_host_interface_command(hw, &fw_cmd, |
Don Skidmore | b48e4aa | 2014-11-29 05:22:32 +0000 | [diff] [blame] | 3630 | sizeof(fw_cmd), |
| 3631 | IXGBE_HI_COMMAND_TIMEOUT, |
| 3632 | true); |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3633 | if (ret_val != 0) |
| 3634 | continue; |
| 3635 | |
| 3636 | if (fw_cmd.hdr.cmd_or_resp.ret_status == |
| 3637 | FW_CEM_RESP_STATUS_SUCCESS) |
| 3638 | ret_val = 0; |
| 3639 | else |
| 3640 | ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND; |
| 3641 | |
| 3642 | break; |
| 3643 | } |
| 3644 | |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 3645 | return ret_val; |
| 3646 | } |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 3647 | |
| 3648 | /** |
| 3649 | * ixgbe_clear_tx_pending - Clear pending TX work from the PCIe fifo |
| 3650 | * @hw: pointer to the hardware structure |
| 3651 | * |
| 3652 | * The 82599 and x540 MACs can experience issues if TX work is still pending |
| 3653 | * when a reset occurs. This function prevents this by flushing the PCIe |
| 3654 | * buffers on the system. |
| 3655 | **/ |
| 3656 | void ixgbe_clear_tx_pending(struct ixgbe_hw *hw) |
| 3657 | { |
Don Skidmore | 71bde60 | 2014-10-29 07:23:41 +0000 | [diff] [blame] | 3658 | u32 gcr_ext, hlreg0, i, poll; |
| 3659 | u16 value; |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 3660 | |
| 3661 | /* |
| 3662 | * If double reset is not requested then all transactions should |
| 3663 | * already be clear and as such there is no work to do |
| 3664 | */ |
| 3665 | if (!(hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED)) |
| 3666 | return; |
| 3667 | |
| 3668 | /* |
| 3669 | * Set loopback enable to prevent any transmits from being sent |
| 3670 | * should the link come up. This assumes that the RXCTRL.RXEN bit |
| 3671 | * has already been cleared. |
| 3672 | */ |
| 3673 | hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
| 3674 | IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0 | IXGBE_HLREG0_LPBK); |
| 3675 | |
Don Skidmore | 71bde60 | 2014-10-29 07:23:41 +0000 | [diff] [blame] | 3676 | /* wait for a last completion before clearing buffers */ |
| 3677 | IXGBE_WRITE_FLUSH(hw); |
| 3678 | usleep_range(3000, 6000); |
| 3679 | |
| 3680 | /* Before proceeding, make sure that the PCIe block does not have |
| 3681 | * transactions pending. |
| 3682 | */ |
| 3683 | poll = ixgbe_pcie_timeout_poll(hw); |
| 3684 | for (i = 0; i < poll; i++) { |
| 3685 | usleep_range(100, 200); |
| 3686 | value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS); |
| 3687 | if (ixgbe_removed(hw->hw_addr)) |
| 3688 | break; |
| 3689 | if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING)) |
| 3690 | break; |
| 3691 | } |
| 3692 | |
Emil Tantilov | ff9d1a5 | 2011-08-16 04:35:11 +0000 | [diff] [blame] | 3693 | /* initiate cleaning flow for buffers in the PCIe transaction layer */ |
| 3694 | gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT); |
| 3695 | IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, |
| 3696 | gcr_ext | IXGBE_GCR_EXT_BUFFERS_CLEAR); |
| 3697 | |
| 3698 | /* Flush all writes and allow 20usec for all transactions to clear */ |
| 3699 | IXGBE_WRITE_FLUSH(hw); |
| 3700 | udelay(20); |
| 3701 | |
| 3702 | /* restore previous register values */ |
| 3703 | IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext); |
| 3704 | IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0); |
| 3705 | } |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3706 | |
| 3707 | static const u8 ixgbe_emc_temp_data[4] = { |
| 3708 | IXGBE_EMC_INTERNAL_DATA, |
| 3709 | IXGBE_EMC_DIODE1_DATA, |
| 3710 | IXGBE_EMC_DIODE2_DATA, |
| 3711 | IXGBE_EMC_DIODE3_DATA |
| 3712 | }; |
| 3713 | static const u8 ixgbe_emc_therm_limit[4] = { |
| 3714 | IXGBE_EMC_INTERNAL_THERM_LIMIT, |
| 3715 | IXGBE_EMC_DIODE1_THERM_LIMIT, |
| 3716 | IXGBE_EMC_DIODE2_THERM_LIMIT, |
| 3717 | IXGBE_EMC_DIODE3_THERM_LIMIT |
| 3718 | }; |
| 3719 | |
| 3720 | /** |
| 3721 | * ixgbe_get_ets_data - Extracts the ETS bit data |
| 3722 | * @hw: pointer to hardware structure |
| 3723 | * @ets_cfg: extected ETS data |
| 3724 | * @ets_offset: offset of ETS data |
| 3725 | * |
| 3726 | * Returns error code. |
| 3727 | **/ |
| 3728 | static s32 ixgbe_get_ets_data(struct ixgbe_hw *hw, u16 *ets_cfg, |
| 3729 | u16 *ets_offset) |
| 3730 | { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3731 | s32 status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3732 | |
| 3733 | status = hw->eeprom.ops.read(hw, IXGBE_ETS_CFG, ets_offset); |
| 3734 | if (status) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3735 | return status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3736 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3737 | if ((*ets_offset == 0x0000) || (*ets_offset == 0xFFFF)) |
| 3738 | return IXGBE_NOT_IMPLEMENTED; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3739 | |
| 3740 | status = hw->eeprom.ops.read(hw, *ets_offset, ets_cfg); |
| 3741 | if (status) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3742 | return status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3743 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3744 | if ((*ets_cfg & IXGBE_ETS_TYPE_MASK) != IXGBE_ETS_TYPE_EMC_SHIFTED) |
| 3745 | return IXGBE_NOT_IMPLEMENTED; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3746 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3747 | return 0; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3748 | } |
| 3749 | |
| 3750 | /** |
| 3751 | * ixgbe_get_thermal_sensor_data - Gathers thermal sensor data |
| 3752 | * @hw: pointer to hardware structure |
| 3753 | * |
| 3754 | * Returns the thermal sensor data structure |
| 3755 | **/ |
| 3756 | s32 ixgbe_get_thermal_sensor_data_generic(struct ixgbe_hw *hw) |
| 3757 | { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3758 | s32 status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3759 | u16 ets_offset; |
| 3760 | u16 ets_cfg; |
| 3761 | u16 ets_sensor; |
| 3762 | u8 num_sensors; |
| 3763 | u8 i; |
| 3764 | struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data; |
| 3765 | |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 3766 | /* Only support thermal sensors attached to physical port 0 */ |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3767 | if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) |
| 3768 | return IXGBE_NOT_IMPLEMENTED; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3769 | |
| 3770 | status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset); |
| 3771 | if (status) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3772 | return status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3773 | |
| 3774 | num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK); |
| 3775 | if (num_sensors > IXGBE_MAX_SENSORS) |
| 3776 | num_sensors = IXGBE_MAX_SENSORS; |
| 3777 | |
| 3778 | for (i = 0; i < num_sensors; i++) { |
| 3779 | u8 sensor_index; |
| 3780 | u8 sensor_location; |
| 3781 | |
| 3782 | status = hw->eeprom.ops.read(hw, (ets_offset + 1 + i), |
| 3783 | &ets_sensor); |
| 3784 | if (status) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3785 | return status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3786 | |
| 3787 | sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >> |
| 3788 | IXGBE_ETS_DATA_INDEX_SHIFT); |
| 3789 | sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >> |
| 3790 | IXGBE_ETS_DATA_LOC_SHIFT); |
| 3791 | |
| 3792 | if (sensor_location != 0) { |
| 3793 | status = hw->phy.ops.read_i2c_byte(hw, |
| 3794 | ixgbe_emc_temp_data[sensor_index], |
| 3795 | IXGBE_I2C_THERMAL_SENSOR_ADDR, |
| 3796 | &data->sensor[i].temp); |
| 3797 | if (status) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3798 | return status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3799 | } |
| 3800 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3801 | |
| 3802 | return 0; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3803 | } |
| 3804 | |
| 3805 | /** |
| 3806 | * ixgbe_init_thermal_sensor_thresh_generic - Inits thermal sensor thresholds |
| 3807 | * @hw: pointer to hardware structure |
| 3808 | * |
| 3809 | * Inits the thermal sensor thresholds according to the NVM map |
| 3810 | * and save off the threshold and location values into mac.thermal_sensor_data |
| 3811 | **/ |
| 3812 | s32 ixgbe_init_thermal_sensor_thresh_generic(struct ixgbe_hw *hw) |
| 3813 | { |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3814 | s32 status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3815 | u16 ets_offset; |
| 3816 | u16 ets_cfg; |
| 3817 | u16 ets_sensor; |
| 3818 | u8 low_thresh_delta; |
| 3819 | u8 num_sensors; |
| 3820 | u8 therm_limit; |
| 3821 | u8 i; |
| 3822 | struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data; |
| 3823 | |
| 3824 | memset(data, 0, sizeof(struct ixgbe_thermal_sensor_data)); |
| 3825 | |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 3826 | /* Only support thermal sensors attached to physical port 0 */ |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3827 | if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) |
| 3828 | return IXGBE_NOT_IMPLEMENTED; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3829 | |
| 3830 | status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset); |
| 3831 | if (status) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3832 | return status; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3833 | |
| 3834 | low_thresh_delta = ((ets_cfg & IXGBE_ETS_LTHRES_DELTA_MASK) >> |
| 3835 | IXGBE_ETS_LTHRES_DELTA_SHIFT); |
| 3836 | num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK); |
| 3837 | if (num_sensors > IXGBE_MAX_SENSORS) |
| 3838 | num_sensors = IXGBE_MAX_SENSORS; |
| 3839 | |
| 3840 | for (i = 0; i < num_sensors; i++) { |
| 3841 | u8 sensor_index; |
| 3842 | u8 sensor_location; |
| 3843 | |
Mark Rustad | be0c27b | 2013-05-24 07:31:09 +0000 | [diff] [blame] | 3844 | if (hw->eeprom.ops.read(hw, ets_offset + 1 + i, &ets_sensor)) { |
| 3845 | hw_err(hw, "eeprom read at offset %d failed\n", |
| 3846 | ets_offset + 1 + i); |
| 3847 | continue; |
| 3848 | } |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3849 | sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >> |
| 3850 | IXGBE_ETS_DATA_INDEX_SHIFT); |
| 3851 | sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >> |
| 3852 | IXGBE_ETS_DATA_LOC_SHIFT); |
| 3853 | therm_limit = ets_sensor & IXGBE_ETS_DATA_HTHRESH_MASK; |
| 3854 | |
| 3855 | hw->phy.ops.write_i2c_byte(hw, |
| 3856 | ixgbe_emc_therm_limit[sensor_index], |
| 3857 | IXGBE_I2C_THERMAL_SENSOR_ADDR, therm_limit); |
| 3858 | |
| 3859 | if (sensor_location == 0) |
| 3860 | continue; |
| 3861 | |
| 3862 | data->sensor[i].location = sensor_location; |
| 3863 | data->sensor[i].caution_thresh = therm_limit; |
| 3864 | data->sensor[i].max_op_thresh = therm_limit - low_thresh_delta; |
| 3865 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 3866 | |
| 3867 | return 0; |
Don Skidmore | e1ea915 | 2012-02-17 02:38:58 +0000 | [diff] [blame] | 3868 | } |
| 3869 | |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 3870 | void ixgbe_disable_rx_generic(struct ixgbe_hw *hw) |
| 3871 | { |
| 3872 | u32 rxctrl; |
| 3873 | |
| 3874 | rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 3875 | if (rxctrl & IXGBE_RXCTRL_RXEN) { |
| 3876 | if (hw->mac.type != ixgbe_mac_82598EB) { |
| 3877 | u32 pfdtxgswc; |
| 3878 | |
| 3879 | pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC); |
| 3880 | if (pfdtxgswc & IXGBE_PFDTXGSWC_VT_LBEN) { |
| 3881 | pfdtxgswc &= ~IXGBE_PFDTXGSWC_VT_LBEN; |
| 3882 | IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc); |
| 3883 | hw->mac.set_lben = true; |
| 3884 | } else { |
| 3885 | hw->mac.set_lben = false; |
| 3886 | } |
| 3887 | } |
| 3888 | rxctrl &= ~IXGBE_RXCTRL_RXEN; |
| 3889 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl); |
| 3890 | } |
| 3891 | } |
| 3892 | |
| 3893 | void ixgbe_enable_rx_generic(struct ixgbe_hw *hw) |
| 3894 | { |
| 3895 | u32 rxctrl; |
| 3896 | |
| 3897 | rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 3898 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, (rxctrl | IXGBE_RXCTRL_RXEN)); |
| 3899 | |
| 3900 | if (hw->mac.type != ixgbe_mac_82598EB) { |
| 3901 | if (hw->mac.set_lben) { |
| 3902 | u32 pfdtxgswc; |
| 3903 | |
| 3904 | pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC); |
| 3905 | pfdtxgswc |= IXGBE_PFDTXGSWC_VT_LBEN; |
| 3906 | IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc); |
| 3907 | hw->mac.set_lben = false; |
| 3908 | } |
| 3909 | } |
| 3910 | } |
Don Skidmore | bd8069a | 2015-06-10 20:05:02 -0400 | [diff] [blame] | 3911 | |
| 3912 | /** ixgbe_mng_present - returns true when management capability is present |
| 3913 | * @hw: pointer to hardware structure |
| 3914 | **/ |
| 3915 | bool ixgbe_mng_present(struct ixgbe_hw *hw) |
| 3916 | { |
| 3917 | u32 fwsm; |
| 3918 | |
| 3919 | if (hw->mac.type < ixgbe_mac_82599EB) |
| 3920 | return false; |
| 3921 | |
| 3922 | fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw)); |
| 3923 | fwsm &= IXGBE_FWSM_MODE_MASK; |
| 3924 | return fwsm == IXGBE_FWSM_FW_MODE_PT; |
| 3925 | } |
Mark Rustad | 6d373a1 | 2015-08-08 16:18:28 -0700 | [diff] [blame] | 3926 | |
| 3927 | /** |
| 3928 | * ixgbe_setup_mac_link_multispeed_fiber - Set MAC link speed |
| 3929 | * @hw: pointer to hardware structure |
| 3930 | * @speed: new link speed |
| 3931 | * @autoneg_wait_to_complete: true when waiting for completion is needed |
| 3932 | * |
| 3933 | * Set the link speed in the MAC and/or PHY register and restarts link. |
| 3934 | */ |
| 3935 | s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw, |
| 3936 | ixgbe_link_speed speed, |
| 3937 | bool autoneg_wait_to_complete) |
| 3938 | { |
| 3939 | ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN; |
| 3940 | ixgbe_link_speed highest_link_speed = IXGBE_LINK_SPEED_UNKNOWN; |
| 3941 | s32 status = 0; |
| 3942 | u32 speedcnt = 0; |
| 3943 | u32 i = 0; |
| 3944 | bool autoneg, link_up = false; |
| 3945 | |
| 3946 | /* Mask off requested but non-supported speeds */ |
| 3947 | status = hw->mac.ops.get_link_capabilities(hw, &link_speed, &autoneg); |
| 3948 | if (status) |
| 3949 | return status; |
| 3950 | |
| 3951 | speed &= link_speed; |
| 3952 | |
| 3953 | /* Try each speed one by one, highest priority first. We do this in |
| 3954 | * software because 10Gb fiber doesn't support speed autonegotiation. |
| 3955 | */ |
| 3956 | if (speed & IXGBE_LINK_SPEED_10GB_FULL) { |
| 3957 | speedcnt++; |
| 3958 | highest_link_speed = IXGBE_LINK_SPEED_10GB_FULL; |
| 3959 | |
| 3960 | /* If we already have link at this speed, just jump out */ |
| 3961 | status = hw->mac.ops.check_link(hw, &link_speed, &link_up, |
| 3962 | false); |
| 3963 | if (status) |
| 3964 | return status; |
| 3965 | |
| 3966 | if (link_speed == IXGBE_LINK_SPEED_10GB_FULL && link_up) |
| 3967 | goto out; |
| 3968 | |
| 3969 | /* Set the module link speed */ |
| 3970 | switch (hw->phy.media_type) { |
| 3971 | case ixgbe_media_type_fiber: |
| 3972 | hw->mac.ops.set_rate_select_speed(hw, |
| 3973 | IXGBE_LINK_SPEED_10GB_FULL); |
| 3974 | break; |
| 3975 | case ixgbe_media_type_fiber_qsfp: |
| 3976 | /* QSFP module automatically detects MAC link speed */ |
| 3977 | break; |
| 3978 | default: |
| 3979 | hw_dbg(hw, "Unexpected media type\n"); |
| 3980 | break; |
| 3981 | } |
| 3982 | |
| 3983 | /* Allow module to change analog characteristics (1G->10G) */ |
| 3984 | msleep(40); |
| 3985 | |
| 3986 | status = hw->mac.ops.setup_mac_link(hw, |
| 3987 | IXGBE_LINK_SPEED_10GB_FULL, |
| 3988 | autoneg_wait_to_complete); |
| 3989 | if (status) |
| 3990 | return status; |
| 3991 | |
| 3992 | /* Flap the Tx laser if it has not already been done */ |
| 3993 | if (hw->mac.ops.flap_tx_laser) |
| 3994 | hw->mac.ops.flap_tx_laser(hw); |
| 3995 | |
| 3996 | /* Wait for the controller to acquire link. Per IEEE 802.3ap, |
| 3997 | * Section 73.10.2, we may have to wait up to 500ms if KR is |
| 3998 | * attempted. 82599 uses the same timing for 10g SFI. |
| 3999 | */ |
| 4000 | for (i = 0; i < 5; i++) { |
| 4001 | /* Wait for the link partner to also set speed */ |
| 4002 | msleep(100); |
| 4003 | |
| 4004 | /* If we have link, just jump out */ |
| 4005 | status = hw->mac.ops.check_link(hw, &link_speed, |
| 4006 | &link_up, false); |
| 4007 | if (status) |
| 4008 | return status; |
| 4009 | |
| 4010 | if (link_up) |
| 4011 | goto out; |
| 4012 | } |
| 4013 | } |
| 4014 | |
| 4015 | if (speed & IXGBE_LINK_SPEED_1GB_FULL) { |
| 4016 | speedcnt++; |
| 4017 | if (highest_link_speed == IXGBE_LINK_SPEED_UNKNOWN) |
| 4018 | highest_link_speed = IXGBE_LINK_SPEED_1GB_FULL; |
| 4019 | |
| 4020 | /* If we already have link at this speed, just jump out */ |
| 4021 | status = hw->mac.ops.check_link(hw, &link_speed, &link_up, |
| 4022 | false); |
| 4023 | if (status) |
| 4024 | return status; |
| 4025 | |
| 4026 | if (link_speed == IXGBE_LINK_SPEED_1GB_FULL && link_up) |
| 4027 | goto out; |
| 4028 | |
| 4029 | /* Set the module link speed */ |
| 4030 | switch (hw->phy.media_type) { |
| 4031 | case ixgbe_media_type_fiber: |
| 4032 | hw->mac.ops.set_rate_select_speed(hw, |
| 4033 | IXGBE_LINK_SPEED_1GB_FULL); |
| 4034 | break; |
| 4035 | case ixgbe_media_type_fiber_qsfp: |
| 4036 | /* QSFP module automatically detects link speed */ |
| 4037 | break; |
| 4038 | default: |
| 4039 | hw_dbg(hw, "Unexpected media type\n"); |
| 4040 | break; |
| 4041 | } |
| 4042 | |
| 4043 | /* Allow module to change analog characteristics (10G->1G) */ |
| 4044 | msleep(40); |
| 4045 | |
| 4046 | status = hw->mac.ops.setup_mac_link(hw, |
| 4047 | IXGBE_LINK_SPEED_1GB_FULL, |
| 4048 | autoneg_wait_to_complete); |
| 4049 | if (status) |
| 4050 | return status; |
| 4051 | |
| 4052 | /* Flap the Tx laser if it has not already been done */ |
| 4053 | if (hw->mac.ops.flap_tx_laser) |
| 4054 | hw->mac.ops.flap_tx_laser(hw); |
| 4055 | |
| 4056 | /* Wait for the link partner to also set speed */ |
| 4057 | msleep(100); |
| 4058 | |
| 4059 | /* If we have link, just jump out */ |
| 4060 | status = hw->mac.ops.check_link(hw, &link_speed, &link_up, |
| 4061 | false); |
| 4062 | if (status) |
| 4063 | return status; |
| 4064 | |
| 4065 | if (link_up) |
| 4066 | goto out; |
| 4067 | } |
| 4068 | |
| 4069 | /* We didn't get link. Configure back to the highest speed we tried, |
| 4070 | * (if there was more than one). We call ourselves back with just the |
| 4071 | * single highest speed that the user requested. |
| 4072 | */ |
| 4073 | if (speedcnt > 1) |
| 4074 | status = ixgbe_setup_mac_link_multispeed_fiber(hw, |
| 4075 | highest_link_speed, |
| 4076 | autoneg_wait_to_complete); |
| 4077 | |
| 4078 | out: |
| 4079 | /* Set autoneg_advertised value based on input link speed */ |
| 4080 | hw->phy.autoneg_advertised = 0; |
| 4081 | |
| 4082 | if (speed & IXGBE_LINK_SPEED_10GB_FULL) |
| 4083 | hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL; |
| 4084 | |
| 4085 | if (speed & IXGBE_LINK_SPEED_1GB_FULL) |
| 4086 | hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL; |
| 4087 | |
| 4088 | return status; |
| 4089 | } |
| 4090 | |
| 4091 | /** |
| 4092 | * ixgbe_set_soft_rate_select_speed - Set module link speed |
| 4093 | * @hw: pointer to hardware structure |
| 4094 | * @speed: link speed to set |
| 4095 | * |
| 4096 | * Set module link speed via the soft rate select. |
| 4097 | */ |
| 4098 | void ixgbe_set_soft_rate_select_speed(struct ixgbe_hw *hw, |
| 4099 | ixgbe_link_speed speed) |
| 4100 | { |
| 4101 | s32 status; |
| 4102 | u8 rs, eeprom_data; |
| 4103 | |
| 4104 | switch (speed) { |
| 4105 | case IXGBE_LINK_SPEED_10GB_FULL: |
| 4106 | /* one bit mask same as setting on */ |
| 4107 | rs = IXGBE_SFF_SOFT_RS_SELECT_10G; |
| 4108 | break; |
| 4109 | case IXGBE_LINK_SPEED_1GB_FULL: |
| 4110 | rs = IXGBE_SFF_SOFT_RS_SELECT_1G; |
| 4111 | break; |
| 4112 | default: |
| 4113 | hw_dbg(hw, "Invalid fixed module speed\n"); |
| 4114 | return; |
| 4115 | } |
| 4116 | |
| 4117 | /* Set RS0 */ |
| 4118 | status = hw->phy.ops.read_i2c_byte(hw, IXGBE_SFF_SFF_8472_OSCB, |
| 4119 | IXGBE_I2C_EEPROM_DEV_ADDR2, |
| 4120 | &eeprom_data); |
| 4121 | if (status) { |
| 4122 | hw_dbg(hw, "Failed to read Rx Rate Select RS0\n"); |
| 4123 | return; |
| 4124 | } |
| 4125 | |
| 4126 | eeprom_data = (eeprom_data & ~IXGBE_SFF_SOFT_RS_SELECT_MASK) | rs; |
| 4127 | |
| 4128 | status = hw->phy.ops.write_i2c_byte(hw, IXGBE_SFF_SFF_8472_OSCB, |
| 4129 | IXGBE_I2C_EEPROM_DEV_ADDR2, |
| 4130 | eeprom_data); |
| 4131 | if (status) { |
| 4132 | hw_dbg(hw, "Failed to write Rx Rate Select RS0\n"); |
| 4133 | return; |
| 4134 | } |
| 4135 | } |