blob: 5d8f1ae125a5a9bcfd312c0af4fa2e8094ee2bf3 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustadafdc71e2016-01-25 16:32:10 -08004 Copyright(c) 1999 - 2016 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
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 Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Auke Kok9a799d72007-09-15 14:07:45 -070024 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 Pirkoccffad252009-05-22 23:22:17 +000032#include <linux/netdevice.h>
Auke Kok9a799d72007-09-15 14:07:45 -070033
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000034#include "ixgbe.h"
Auke Kok9a799d72007-09-15 14:07:45 -070035#include "ixgbe_common.h"
36#include "ixgbe_phy.h"
37
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070038static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070039static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw);
40static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070041static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw);
42static void ixgbe_standby_eeprom(struct ixgbe_hw *hw);
43static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
Jacob Kellere7cf7452014-04-09 06:03:10 +000044 u16 count);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070045static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count);
46static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec);
47static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec);
48static void ixgbe_release_eeprom(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070049
Auke Kok9a799d72007-09-15 14:07:45 -070050static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr);
Emil Tantiloveb9c3e32011-03-24 00:57:50 +000051static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg);
Emil Tantilov68c70052011-04-20 08:49:06 +000052static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
53 u16 words, u16 *data);
54static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
55 u16 words, u16 *data);
56static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
57 u16 offset);
Emil Tantilovff9d1a52011-08-16 04:35:11 +000058static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070059
Don Skidmore9a900ec2015-06-09 17:15:01 -070060/* Base table for registers values that change by MAC */
61const u32 ixgbe_mvals_8259X[IXGBE_MVALS_IDX_LIMIT] = {
62 IXGBE_MVALS_INIT(8259X)
63};
64
Auke Kok9a799d72007-09-15 14:07:45 -070065/**
Alexander Duyck67a79df2012-04-19 17:49:56 +000066 * 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 Skidmore73d80953d2013-07-31 02:19:24 +000074bool ixgbe_device_supports_autoneg_fc(struct ixgbe_hw *hw)
Alexander Duyck67a79df2012-04-19 17:49:56 +000075{
Don Skidmore73d80953d2013-07-31 02:19:24 +000076 bool supported = false;
77 ixgbe_link_speed speed;
78 bool link_up;
Alexander Duyck67a79df2012-04-19 17:49:56 +000079
Don Skidmore73d80953d2013-07-31 02:19:24 +000080 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 Skidmoredf8c26f2015-06-09 16:00:17 -070099 case IXGBE_DEV_ID_X550T:
Mark Rustada711ad82016-03-21 11:21:31 -0700100 case IXGBE_DEV_ID_X550T1:
Don Skidmoredf8c26f2015-06-09 16:00:17 -0700101 case IXGBE_DEV_ID_X550EM_X_10G_T:
Don Skidmore92ed8432016-08-17 20:34:40 -0400102 case IXGBE_DEV_ID_X550EM_A_10G_T:
Don Skidmore73d80953d2013-07-31 02:19:24 +0000103 supported = true;
104 break;
105 default:
106 break;
107 }
Alexander Duyck67a79df2012-04-19 17:49:56 +0000108 default:
Don Skidmore73d80953d2013-07-31 02:19:24 +0000109 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000110 }
Don Skidmore73d80953d2013-07-31 02:19:24 +0000111
112 return supported;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000113}
114
115/**
Mark Rustadafdc71e2016-01-25 16:32:10 -0800116 * ixgbe_setup_fc_generic - Set up flow control
Alexander Duyck67a79df2012-04-19 17:49:56 +0000117 * @hw: pointer to hardware structure
118 *
119 * Called at init time to set up flow control.
120 **/
Mark Rustadafdc71e2016-01-25 16:32:10 -0800121s32 ixgbe_setup_fc_generic(struct ixgbe_hw *hw)
Alexander Duyck67a79df2012-04-19 17:49:56 +0000122{
123 s32 ret_val = 0;
124 u32 reg = 0, reg_bp = 0;
125 u16 reg_cu = 0;
Don Skidmore429d6a32014-02-27 20:32:41 -0800126 bool locked = false;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000127
Alexander Duyck67a79df2012-04-19 17:49:56 +0000128 /*
129 * Validate the requested mode. Strict IEEE mode does not allow
130 * ixgbe_fc_rx_pause because it will cause us to fail at UNH.
131 */
132 if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
133 hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000134 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000135 }
136
137 /*
138 * 10gig parts do not have a word in the EEPROM to determine the
139 * default flow control setting, so we explicitly set it to full.
140 */
141 if (hw->fc.requested_mode == ixgbe_fc_default)
142 hw->fc.requested_mode = ixgbe_fc_full;
143
144 /*
145 * Set up the 1G and 10G flow control advertisement registers so the
146 * HW will be able to do fc autoneg once the cable is plugged in. If
147 * we link at 10G, the 1G advertisement is harmless and vice versa.
148 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000149 switch (hw->phy.media_type) {
Don Skidmore429d6a32014-02-27 20:32:41 -0800150 case ixgbe_media_type_backplane:
151 /* some MAC's need RMW protection on AUTOC */
152 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &reg_bp);
Don Skidmoref8cf7a02014-03-19 09:16:26 +0000153 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +0000154 return ret_val;
Don Skidmore429d6a32014-02-27 20:32:41 -0800155
156 /* only backplane uses autoc so fall though */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000157 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +0000158 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
Don Skidmore429d6a32014-02-27 20:32:41 -0800159
Alexander Duyck67a79df2012-04-19 17:49:56 +0000160 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000161 case ixgbe_media_type_copper:
162 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
163 MDIO_MMD_AN, &reg_cu);
164 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000165 default:
Alexander Duyck041441d2012-04-19 17:48:48 +0000166 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000167 }
168
169 /*
170 * The possible values of fc.requested_mode are:
171 * 0: Flow control is completely disabled
172 * 1: Rx flow control is enabled (we can receive pause frames,
173 * but not send pause frames).
174 * 2: Tx flow control is enabled (we can send pause frames but
175 * we do not support receiving pause frames).
176 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Alexander Duyck67a79df2012-04-19 17:49:56 +0000177 * other: Invalid.
178 */
179 switch (hw->fc.requested_mode) {
180 case ixgbe_fc_none:
181 /* Flow control completely disabled by software override. */
182 reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
183 if (hw->phy.media_type == ixgbe_media_type_backplane)
184 reg_bp &= ~(IXGBE_AUTOC_SYM_PAUSE |
185 IXGBE_AUTOC_ASM_PAUSE);
186 else if (hw->phy.media_type == ixgbe_media_type_copper)
187 reg_cu &= ~(IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE);
188 break;
Alexander Duyck041441d2012-04-19 17:48:48 +0000189 case ixgbe_fc_tx_pause:
190 /*
191 * Tx Flow control is enabled, and Rx Flow control is
192 * disabled by software override.
193 */
194 reg |= IXGBE_PCS1GANA_ASM_PAUSE;
195 reg &= ~IXGBE_PCS1GANA_SYM_PAUSE;
196 if (hw->phy.media_type == ixgbe_media_type_backplane) {
197 reg_bp |= IXGBE_AUTOC_ASM_PAUSE;
198 reg_bp &= ~IXGBE_AUTOC_SYM_PAUSE;
199 } else if (hw->phy.media_type == ixgbe_media_type_copper) {
200 reg_cu |= IXGBE_TAF_ASM_PAUSE;
201 reg_cu &= ~IXGBE_TAF_SYM_PAUSE;
202 }
203 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000204 case ixgbe_fc_rx_pause:
205 /*
206 * Rx Flow control is enabled and Tx Flow control is
207 * disabled by software override. Since there really
208 * isn't a way to advertise that we are capable of RX
209 * Pause ONLY, we will advertise that we support both
Alexander Duyck041441d2012-04-19 17:48:48 +0000210 * symmetric and asymmetric Rx PAUSE, as such we fall
211 * through to the fc_full statement. Later, we will
Alexander Duyck67a79df2012-04-19 17:49:56 +0000212 * disable the adapter's ability to send PAUSE frames.
213 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000214 case ixgbe_fc_full:
215 /* Flow control (both Rx and Tx) is enabled by SW override. */
Alexander Duyck041441d2012-04-19 17:48:48 +0000216 reg |= IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000217 if (hw->phy.media_type == ixgbe_media_type_backplane)
Alexander Duyck041441d2012-04-19 17:48:48 +0000218 reg_bp |= IXGBE_AUTOC_SYM_PAUSE |
219 IXGBE_AUTOC_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000220 else if (hw->phy.media_type == ixgbe_media_type_copper)
Alexander Duyck041441d2012-04-19 17:48:48 +0000221 reg_cu |= IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000222 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000223 default:
224 hw_dbg(hw, "Flow control param set incorrectly\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000225 return IXGBE_ERR_CONFIG;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000226 }
227
228 if (hw->mac.type != ixgbe_mac_X540) {
229 /*
230 * Enable auto-negotiation between the MAC & PHY;
231 * the MAC will advertise clause 37 flow control.
232 */
233 IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg);
234 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
235
236 /* Disable AN timeout */
237 if (hw->fc.strict_ieee)
238 reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN;
239
240 IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg);
241 hw_dbg(hw, "Set up FC; PCS1GLCTL = 0x%08X\n", reg);
242 }
243
244 /*
245 * AUTOC restart handles negotiation of 1G and 10G on backplane
246 * and copper. There is no need to set the PCS1GCTL register.
247 *
248 */
249 if (hw->phy.media_type == ixgbe_media_type_backplane) {
Don Skidmored7bbcd32012-10-24 06:19:01 +0000250 /* Need the SW/FW semaphore around AUTOC writes if 82599 and
251 * LESM is on, likewise reset_pipeline requries the lock as
252 * it also writes AUTOC.
253 */
Don Skidmore429d6a32014-02-27 20:32:41 -0800254 ret_val = hw->mac.ops.prot_autoc_write(hw, reg_bp, locked);
255 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +0000256 return ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +0000257
Alexander Duyck67a79df2012-04-19 17:49:56 +0000258 } else if ((hw->phy.media_type == ixgbe_media_type_copper) &&
Don Skidmore429d6a32014-02-27 20:32:41 -0800259 ixgbe_device_supports_autoneg_fc(hw)) {
Alexander Duyck67a79df2012-04-19 17:49:56 +0000260 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
261 MDIO_MMD_AN, reg_cu);
262 }
263
264 hw_dbg(hw, "Set up FC; IXGBE_AUTOC = 0x%08X\n", reg);
Alexander Duyck67a79df2012-04-19 17:49:56 +0000265 return ret_val;
266}
267
268/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700269 * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx
Auke Kok9a799d72007-09-15 14:07:45 -0700270 * @hw: pointer to hardware structure
271 *
272 * Starts the hardware by filling the bus info structure and media type, clears
273 * all on chip counters, initializes receive address registers, multicast
274 * table, VLAN filter table, calls routine to set up link and flow control
275 * settings, and leaves transmit and receive units disabled and uninitialized
276 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700277s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700278{
Jacob Kellere5776622014-04-05 02:35:52 +0000279 s32 ret_val;
Auke Kok9a799d72007-09-15 14:07:45 -0700280 u32 ctrl_ext;
Don Skidmoreaac9e052016-07-19 19:43:28 -0400281 u16 device_caps;
Auke Kok9a799d72007-09-15 14:07:45 -0700282
283 /* Set the media type */
284 hw->phy.media_type = hw->mac.ops.get_media_type(hw);
285
286 /* Identify the PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700287 hw->phy.ops.identify(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700288
Auke Kok9a799d72007-09-15 14:07:45 -0700289 /* Clear the VLAN filter table */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700290 hw->mac.ops.clear_vfta(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700291
Auke Kok9a799d72007-09-15 14:07:45 -0700292 /* Clear statistics registers */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700293 hw->mac.ops.clear_hw_cntrs(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700294
295 /* Set No Snoop Disable */
296 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
297 ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS;
298 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok3957d632007-10-31 15:22:10 -0700299 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700300
Don Skidmore29165002016-09-27 14:31:12 -0400301 /* Setup flow control if method for doing so */
302 if (hw->mac.ops.setup_fc) {
303 ret_val = hw->mac.ops.setup_fc(hw);
304 if (ret_val)
305 return ret_val;
306 }
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000307
Don Skidmoreaac9e052016-07-19 19:43:28 -0400308 /* Cashe bit indicating need for crosstalk fix */
309 switch (hw->mac.type) {
310 case ixgbe_mac_82599EB:
311 case ixgbe_mac_X550EM_x:
312 case ixgbe_mac_x550em_a:
313 hw->mac.ops.get_device_caps(hw, &device_caps);
314 if (device_caps & IXGBE_DEVICE_CAPS_NO_CROSSTALK_WR)
315 hw->need_crosstalk_fix = false;
316 else
317 hw->need_crosstalk_fix = true;
318 break;
319 default:
320 hw->need_crosstalk_fix = false;
321 break;
322 }
323
Auke Kok9a799d72007-09-15 14:07:45 -0700324 /* Clear adapter stopped flag */
325 hw->adapter_stopped = false;
326
Mark Rustad3507a9b2015-08-08 16:27:46 -0700327 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700328}
329
330/**
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000331 * ixgbe_start_hw_gen2 - Init sequence for common device family
332 * @hw: pointer to hw structure
333 *
334 * Performs the init sequence common to the second generation
335 * of 10 GbE devices.
336 * Devices in the second generation:
337 * 82599
338 * X540
339 **/
340s32 ixgbe_start_hw_gen2(struct ixgbe_hw *hw)
341{
342 u32 i;
343
344 /* Clear the rate limiters */
345 for (i = 0; i < hw->mac.max_tx_queues; i++) {
346 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, i);
347 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, 0);
348 }
349 IXGBE_WRITE_FLUSH(hw);
350
Jeff Kirsher887012e2015-03-13 14:04:35 -0700351#ifndef CONFIG_SPARC
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000352 /* Disable relaxed ordering */
353 for (i = 0; i < hw->mac.max_tx_queues; i++) {
Jeff Kirsher887012e2015-03-13 14:04:35 -0700354 u32 regval;
355
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000356 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000357 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000358 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(i), regval);
359 }
360
361 for (i = 0; i < hw->mac.max_rx_queues; i++) {
Jeff Kirsher887012e2015-03-13 14:04:35 -0700362 u32 regval;
363
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000364 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000365 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
366 IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000367 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
368 }
Jeff Kirsher887012e2015-03-13 14:04:35 -0700369#endif
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000370 return 0;
371}
372
373/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700374 * ixgbe_init_hw_generic - Generic hardware initialization
Auke Kok9a799d72007-09-15 14:07:45 -0700375 * @hw: pointer to hardware structure
376 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700377 * Initialize the hardware by resetting the hardware, filling the bus info
Auke Kok9a799d72007-09-15 14:07:45 -0700378 * structure and media type, clears all on chip counters, initializes receive
379 * address registers, multicast table, VLAN filter table, calls routine to set
380 * up link and flow control settings, and leaves transmit and receive units
381 * disabled and uninitialized
382 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700383s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700384{
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000385 s32 status;
386
Auke Kok9a799d72007-09-15 14:07:45 -0700387 /* Reset the hardware */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000388 status = hw->mac.ops.reset_hw(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700389
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000390 if (status == 0) {
391 /* Start the HW */
392 status = hw->mac.ops.start_hw(hw);
393 }
Auke Kok9a799d72007-09-15 14:07:45 -0700394
Don Skidmore805cedd2016-10-20 21:42:00 -0400395 /* Initialize the LED link active for LED blink support */
396 hw->mac.ops.init_led_link_act(hw);
397
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000398 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700399}
400
401/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700402 * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters
Auke Kok9a799d72007-09-15 14:07:45 -0700403 * @hw: pointer to hardware structure
404 *
405 * Clears all hardware statistics counters by reading them from the hardware
406 * Statistics counters are clear on read.
407 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700408s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700409{
410 u16 i = 0;
411
412 IXGBE_READ_REG(hw, IXGBE_CRCERRS);
413 IXGBE_READ_REG(hw, IXGBE_ILLERRC);
414 IXGBE_READ_REG(hw, IXGBE_ERRBC);
415 IXGBE_READ_REG(hw, IXGBE_MSPDC);
416 for (i = 0; i < 8; i++)
417 IXGBE_READ_REG(hw, IXGBE_MPC(i));
418
419 IXGBE_READ_REG(hw, IXGBE_MLFC);
420 IXGBE_READ_REG(hw, IXGBE_MRFC);
421 IXGBE_READ_REG(hw, IXGBE_RLEC);
422 IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Auke Kok9a799d72007-09-15 14:07:45 -0700423 IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Emil Tantilov667c7562011-02-26 06:40:05 +0000424 if (hw->mac.type >= ixgbe_mac_82599EB) {
425 IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
426 IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
427 } else {
428 IXGBE_READ_REG(hw, IXGBE_LXONRXC);
429 IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
430 }
Auke Kok9a799d72007-09-15 14:07:45 -0700431
432 for (i = 0; i < 8; i++) {
433 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700434 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000435 if (hw->mac.type >= ixgbe_mac_82599EB) {
436 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
437 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
438 } else {
439 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
440 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
441 }
Auke Kok9a799d72007-09-15 14:07:45 -0700442 }
Emil Tantilov667c7562011-02-26 06:40:05 +0000443 if (hw->mac.type >= ixgbe_mac_82599EB)
444 for (i = 0; i < 8; i++)
445 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700446 IXGBE_READ_REG(hw, IXGBE_PRC64);
447 IXGBE_READ_REG(hw, IXGBE_PRC127);
448 IXGBE_READ_REG(hw, IXGBE_PRC255);
449 IXGBE_READ_REG(hw, IXGBE_PRC511);
450 IXGBE_READ_REG(hw, IXGBE_PRC1023);
451 IXGBE_READ_REG(hw, IXGBE_PRC1522);
452 IXGBE_READ_REG(hw, IXGBE_GPRC);
453 IXGBE_READ_REG(hw, IXGBE_BPRC);
454 IXGBE_READ_REG(hw, IXGBE_MPRC);
455 IXGBE_READ_REG(hw, IXGBE_GPTC);
456 IXGBE_READ_REG(hw, IXGBE_GORCL);
457 IXGBE_READ_REG(hw, IXGBE_GORCH);
458 IXGBE_READ_REG(hw, IXGBE_GOTCL);
459 IXGBE_READ_REG(hw, IXGBE_GOTCH);
Emil Tantilovf3116f62011-07-29 06:46:15 +0000460 if (hw->mac.type == ixgbe_mac_82598EB)
461 for (i = 0; i < 8; i++)
462 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700463 IXGBE_READ_REG(hw, IXGBE_RUC);
464 IXGBE_READ_REG(hw, IXGBE_RFC);
465 IXGBE_READ_REG(hw, IXGBE_ROC);
466 IXGBE_READ_REG(hw, IXGBE_RJC);
467 IXGBE_READ_REG(hw, IXGBE_MNGPRC);
468 IXGBE_READ_REG(hw, IXGBE_MNGPDC);
469 IXGBE_READ_REG(hw, IXGBE_MNGPTC);
470 IXGBE_READ_REG(hw, IXGBE_TORL);
471 IXGBE_READ_REG(hw, IXGBE_TORH);
472 IXGBE_READ_REG(hw, IXGBE_TPR);
473 IXGBE_READ_REG(hw, IXGBE_TPT);
474 IXGBE_READ_REG(hw, IXGBE_PTC64);
475 IXGBE_READ_REG(hw, IXGBE_PTC127);
476 IXGBE_READ_REG(hw, IXGBE_PTC255);
477 IXGBE_READ_REG(hw, IXGBE_PTC511);
478 IXGBE_READ_REG(hw, IXGBE_PTC1023);
479 IXGBE_READ_REG(hw, IXGBE_PTC1522);
480 IXGBE_READ_REG(hw, IXGBE_MPTC);
481 IXGBE_READ_REG(hw, IXGBE_BPTC);
482 for (i = 0; i < 16; i++) {
483 IXGBE_READ_REG(hw, IXGBE_QPRC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700484 IXGBE_READ_REG(hw, IXGBE_QPTC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000485 if (hw->mac.type >= ixgbe_mac_82599EB) {
486 IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
487 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i));
488 IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
489 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i));
490 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
491 } else {
492 IXGBE_READ_REG(hw, IXGBE_QBRC(i));
493 IXGBE_READ_REG(hw, IXGBE_QBTC(i));
494 }
Auke Kok9a799d72007-09-15 14:07:45 -0700495 }
496
Don Skidmoree87ce1c2015-06-09 17:00:05 -0700497 if (hw->mac.type == ixgbe_mac_X550 || hw->mac.type == ixgbe_mac_X540) {
Emil Tantilova3aeea02011-02-26 06:40:11 +0000498 if (hw->phy.id == 0)
499 hw->phy.ops.identify(hw);
Emil Tantilovc1085b12011-12-10 08:21:47 +0000500 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECL, MDIO_MMD_PCS, &i);
501 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECH, MDIO_MMD_PCS, &i);
502 hw->phy.ops.read_reg(hw, IXGBE_LDPCECL, MDIO_MMD_PCS, &i);
503 hw->phy.ops.read_reg(hw, IXGBE_LDPCECH, MDIO_MMD_PCS, &i);
Emil Tantilova3aeea02011-02-26 06:40:11 +0000504 }
505
Auke Kok9a799d72007-09-15 14:07:45 -0700506 return 0;
507}
508
509/**
Don Skidmore289700db2010-12-03 03:32:58 +0000510 * ixgbe_read_pba_string_generic - Reads part number string from EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700511 * @hw: pointer to hardware structure
Don Skidmore289700db2010-12-03 03:32:58 +0000512 * @pba_num: stores the part number string from the EEPROM
513 * @pba_num_size: part number string buffer length
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700514 *
Don Skidmore289700db2010-12-03 03:32:58 +0000515 * Reads the part number string from the EEPROM.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700516 **/
Don Skidmore289700db2010-12-03 03:32:58 +0000517s32 ixgbe_read_pba_string_generic(struct ixgbe_hw *hw, u8 *pba_num,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000518 u32 pba_num_size)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700519{
520 s32 ret_val;
521 u16 data;
Don Skidmore289700db2010-12-03 03:32:58 +0000522 u16 pba_ptr;
523 u16 offset;
524 u16 length;
525
526 if (pba_num == NULL) {
527 hw_dbg(hw, "PBA string buffer was null\n");
528 return IXGBE_ERR_INVALID_ARGUMENT;
529 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700530
531 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data);
532 if (ret_val) {
533 hw_dbg(hw, "NVM Read Error\n");
534 return ret_val;
535 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700536
Don Skidmore289700db2010-12-03 03:32:58 +0000537 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &pba_ptr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700538 if (ret_val) {
539 hw_dbg(hw, "NVM Read Error\n");
540 return ret_val;
541 }
Don Skidmore289700db2010-12-03 03:32:58 +0000542
543 /*
544 * if data is not ptr guard the PBA must be in legacy format which
545 * means pba_ptr is actually our second data word for the PBA number
546 * and we can decode it into an ascii string
547 */
548 if (data != IXGBE_PBANUM_PTR_GUARD) {
549 hw_dbg(hw, "NVM PBA number is not stored as string\n");
550
551 /* we will need 11 characters to store the PBA */
552 if (pba_num_size < 11) {
553 hw_dbg(hw, "PBA string buffer too small\n");
554 return IXGBE_ERR_NO_SPACE;
555 }
556
557 /* extract hex string from data and pba_ptr */
558 pba_num[0] = (data >> 12) & 0xF;
559 pba_num[1] = (data >> 8) & 0xF;
560 pba_num[2] = (data >> 4) & 0xF;
561 pba_num[3] = data & 0xF;
562 pba_num[4] = (pba_ptr >> 12) & 0xF;
563 pba_num[5] = (pba_ptr >> 8) & 0xF;
564 pba_num[6] = '-';
565 pba_num[7] = 0;
566 pba_num[8] = (pba_ptr >> 4) & 0xF;
567 pba_num[9] = pba_ptr & 0xF;
568
569 /* put a null character on the end of our string */
570 pba_num[10] = '\0';
571
572 /* switch all the data but the '-' to hex char */
573 for (offset = 0; offset < 10; offset++) {
574 if (pba_num[offset] < 0xA)
575 pba_num[offset] += '0';
576 else if (pba_num[offset] < 0x10)
577 pba_num[offset] += 'A' - 0xA;
578 }
579
580 return 0;
581 }
582
583 ret_val = hw->eeprom.ops.read(hw, pba_ptr, &length);
584 if (ret_val) {
585 hw_dbg(hw, "NVM Read Error\n");
586 return ret_val;
587 }
588
589 if (length == 0xFFFF || length == 0) {
590 hw_dbg(hw, "NVM PBA number section invalid length\n");
591 return IXGBE_ERR_PBA_SECTION;
592 }
593
594 /* check if pba_num buffer is big enough */
595 if (pba_num_size < (((u32)length * 2) - 1)) {
596 hw_dbg(hw, "PBA string buffer too small\n");
597 return IXGBE_ERR_NO_SPACE;
598 }
599
600 /* trim pba length from start of string */
601 pba_ptr++;
602 length--;
603
604 for (offset = 0; offset < length; offset++) {
605 ret_val = hw->eeprom.ops.read(hw, pba_ptr + offset, &data);
606 if (ret_val) {
607 hw_dbg(hw, "NVM Read Error\n");
608 return ret_val;
609 }
610 pba_num[offset * 2] = (u8)(data >> 8);
611 pba_num[(offset * 2) + 1] = (u8)(data & 0xFF);
612 }
613 pba_num[offset * 2] = '\0';
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700614
615 return 0;
616}
617
618/**
619 * ixgbe_get_mac_addr_generic - Generic get MAC address
Auke Kok9a799d72007-09-15 14:07:45 -0700620 * @hw: pointer to hardware structure
621 * @mac_addr: Adapter MAC address
622 *
623 * Reads the adapter's MAC address from first Receive Address Register (RAR0)
624 * A reset of the adapter must be performed prior to calling this function
625 * in order for the MAC address to have been loaded from the EEPROM into RAR0
626 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700627s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr)
Auke Kok9a799d72007-09-15 14:07:45 -0700628{
629 u32 rar_high;
630 u32 rar_low;
631 u16 i;
632
633 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0));
634 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0));
635
636 for (i = 0; i < 4; i++)
637 mac_addr[i] = (u8)(rar_low >> (i*8));
638
639 for (i = 0; i < 2; i++)
640 mac_addr[i+4] = (u8)(rar_high >> (i*8));
641
642 return 0;
643}
644
Jacob Kelleref1889d2013-02-15 09:18:15 +0000645enum ixgbe_bus_width ixgbe_convert_bus_width(u16 link_status)
646{
647 switch (link_status & IXGBE_PCI_LINK_WIDTH) {
648 case IXGBE_PCI_LINK_WIDTH_1:
649 return ixgbe_bus_width_pcie_x1;
650 case IXGBE_PCI_LINK_WIDTH_2:
651 return ixgbe_bus_width_pcie_x2;
652 case IXGBE_PCI_LINK_WIDTH_4:
653 return ixgbe_bus_width_pcie_x4;
654 case IXGBE_PCI_LINK_WIDTH_8:
655 return ixgbe_bus_width_pcie_x8;
656 default:
657 return ixgbe_bus_width_unknown;
658 }
659}
660
661enum ixgbe_bus_speed ixgbe_convert_bus_speed(u16 link_status)
662{
663 switch (link_status & IXGBE_PCI_LINK_SPEED) {
664 case IXGBE_PCI_LINK_SPEED_2500:
665 return ixgbe_bus_speed_2500;
666 case IXGBE_PCI_LINK_SPEED_5000:
667 return ixgbe_bus_speed_5000;
668 case IXGBE_PCI_LINK_SPEED_8000:
669 return ixgbe_bus_speed_8000;
670 default:
671 return ixgbe_bus_speed_unknown;
672 }
673}
674
Auke Kok9a799d72007-09-15 14:07:45 -0700675/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000676 * ixgbe_get_bus_info_generic - Generic set PCI bus info
677 * @hw: pointer to hardware structure
678 *
679 * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
680 **/
681s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw)
682{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000683 u16 link_status;
684
685 hw->bus.type = ixgbe_bus_type_pci_express;
686
687 /* Get the negotiated link width and speed from PCI config space */
Jacob Keller0d7c6e02014-02-22 01:23:58 +0000688 link_status = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_LINK_STATUS);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000689
Jacob Kelleref1889d2013-02-15 09:18:15 +0000690 hw->bus.width = ixgbe_convert_bus_width(link_status);
691 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000692
Jacob Keller0d7c6e02014-02-22 01:23:58 +0000693 hw->mac.ops.set_lan_id(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000694
695 return 0;
696}
697
698/**
699 * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices
700 * @hw: pointer to the HW structure
701 *
702 * Determines the LAN function id by reading memory-mapped registers
703 * and swaps the port value if requested.
704 **/
705void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw)
706{
707 struct ixgbe_bus_info *bus = &hw->bus;
Mark Rustadc898fe22016-04-01 12:18:20 -0700708 u16 ee_ctrl_4;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000709 u32 reg;
710
711 reg = IXGBE_READ_REG(hw, IXGBE_STATUS);
712 bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT;
713 bus->lan_id = bus->func;
714
715 /* check for a port swap */
Don Skidmore9a900ec2015-06-09 17:15:01 -0700716 reg = IXGBE_READ_REG(hw, IXGBE_FACTPS(hw));
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000717 if (reg & IXGBE_FACTPS_LFS)
718 bus->func ^= 0x1;
Mark Rustadc898fe22016-04-01 12:18:20 -0700719
720 /* Get MAC instance from EEPROM for configuring CS4227 */
721 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP) {
722 hw->eeprom.ops.read(hw, IXGBE_EEPROM_CTRL_4, &ee_ctrl_4);
723 bus->instance_id = (ee_ctrl_4 & IXGBE_EE_CTRL_4_INST_ID) >>
724 IXGBE_EE_CTRL_4_INST_ID_SHIFT;
725 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000726}
727
728/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700729 * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units
Auke Kok9a799d72007-09-15 14:07:45 -0700730 * @hw: pointer to hardware structure
731 *
732 * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
733 * disables transmit and receive units. The adapter_stopped flag is used by
734 * the shared code and drivers to determine if the adapter is in a stopped
735 * state and should not touch the hardware.
736 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700737s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700738{
Auke Kok9a799d72007-09-15 14:07:45 -0700739 u32 reg_val;
740 u16 i;
741
742 /*
743 * Set the adapter_stopped flag so other driver functions stop touching
744 * the hardware
745 */
746 hw->adapter_stopped = true;
747
748 /* Disable the receive unit */
Don Skidmore1f9ac572015-03-13 13:54:30 -0700749 hw->mac.ops.disable_rx(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700750
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000751 /* Clear interrupt mask to stop interrupts from being generated */
Auke Kok9a799d72007-09-15 14:07:45 -0700752 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
753
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000754 /* Clear any pending interrupts, flush previous writes */
Auke Kok9a799d72007-09-15 14:07:45 -0700755 IXGBE_READ_REG(hw, IXGBE_EICR);
756
757 /* Disable the transmit unit. Each queue must be disabled. */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000758 for (i = 0; i < hw->mac.max_tx_queues; i++)
759 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), IXGBE_TXDCTL_SWFLSH);
760
761 /* Disable the receive unit by stopping each queue */
762 for (i = 0; i < hw->mac.max_rx_queues; i++) {
763 reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
764 reg_val &= ~IXGBE_RXDCTL_ENABLE;
765 reg_val |= IXGBE_RXDCTL_SWFLSH;
766 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700767 }
768
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000769 /* flush all queues disables */
770 IXGBE_WRITE_FLUSH(hw);
771 usleep_range(1000, 2000);
772
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700773 /*
774 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
775 * access and verify no pending requests
776 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000777 return ixgbe_disable_pcie_master(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700778}
779
780/**
Don Skidmore805cedd2016-10-20 21:42:00 -0400781 * ixgbe_init_led_link_act_generic - Store the LED index link/activity.
782 * @hw: pointer to hardware structure
783 *
784 * Store the index for the link active LED. This will be used to support
785 * blinking the LED.
786 **/
787s32 ixgbe_init_led_link_act_generic(struct ixgbe_hw *hw)
788{
789 struct ixgbe_mac_info *mac = &hw->mac;
790 u32 led_reg, led_mode;
791 u16 i;
792
793 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
794
795 /* Get LED link active from the LEDCTL register */
796 for (i = 0; i < 4; i++) {
797 led_mode = led_reg >> IXGBE_LED_MODE_SHIFT(i);
798
799 if ((led_mode & IXGBE_LED_MODE_MASK_BASE) ==
800 IXGBE_LED_LINK_ACTIVE) {
801 mac->led_link_act = i;
802 return 0;
803 }
804 }
805
806 /* If LEDCTL register does not have the LED link active set, then use
807 * known MAC defaults.
808 */
809 switch (hw->mac.type) {
810 case ixgbe_mac_x550em_a:
811 mac->led_link_act = 0;
812 break;
813 case ixgbe_mac_X550EM_x:
814 mac->led_link_act = 1;
815 break;
816 default:
817 mac->led_link_act = 2;
818 }
819
820 return 0;
821}
822
823/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700824 * ixgbe_led_on_generic - Turns on the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700825 * @hw: pointer to hardware structure
826 * @index: led number to turn on
827 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700828s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700829{
830 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
831
Don Skidmore003287e2016-06-17 17:10:13 -0400832 if (index > 3)
833 return IXGBE_ERR_PARAM;
834
Auke Kok9a799d72007-09-15 14:07:45 -0700835 /* To turn on the LED, set mode to ON. */
836 led_reg &= ~IXGBE_LED_MODE_MASK(index);
837 led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index);
838 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700839 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700840
841 return 0;
842}
843
844/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700845 * ixgbe_led_off_generic - Turns off the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700846 * @hw: pointer to hardware structure
847 * @index: led number to turn off
848 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700849s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700850{
851 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
852
Don Skidmore003287e2016-06-17 17:10:13 -0400853 if (index > 3)
854 return IXGBE_ERR_PARAM;
855
Auke Kok9a799d72007-09-15 14:07:45 -0700856 /* To turn off the LED, set mode to OFF. */
857 led_reg &= ~IXGBE_LED_MODE_MASK(index);
858 led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index);
859 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700860 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700861
862 return 0;
863}
864
Auke Kok9a799d72007-09-15 14:07:45 -0700865/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700866 * ixgbe_init_eeprom_params_generic - Initialize EEPROM params
Auke Kok9a799d72007-09-15 14:07:45 -0700867 * @hw: pointer to hardware structure
868 *
869 * Initializes the EEPROM parameters ixgbe_eeprom_info within the
870 * ixgbe_hw struct in order to set up EEPROM access.
871 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700872s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700873{
874 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
875 u32 eec;
876 u16 eeprom_size;
877
878 if (eeprom->type == ixgbe_eeprom_uninitialized) {
879 eeprom->type = ixgbe_eeprom_none;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700880 /* Set default semaphore delay to 10ms which is a well
881 * tested value */
882 eeprom->semaphore_delay = 10;
Emil Tantilov68c70052011-04-20 08:49:06 +0000883 /* Clear EEPROM page size, it will be initialized as needed */
884 eeprom->word_page_size = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700885
886 /*
887 * Check for EEPROM present first.
888 * If not present leave as none
889 */
Don Skidmore9a900ec2015-06-09 17:15:01 -0700890 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Auke Kok9a799d72007-09-15 14:07:45 -0700891 if (eec & IXGBE_EEC_PRES) {
892 eeprom->type = ixgbe_eeprom_spi;
893
894 /*
895 * SPI EEPROM is assumed here. This code would need to
896 * change if a future EEPROM is not SPI.
897 */
898 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
899 IXGBE_EEC_SIZE_SHIFT);
Jacob Kellerb4f47a42016-04-13 16:08:22 -0700900 eeprom->word_size = BIT(eeprom_size +
901 IXGBE_EEPROM_WORD_SIZE_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -0700902 }
903
904 if (eec & IXGBE_EEC_ADDR_SIZE)
905 eeprom->address_bits = 16;
906 else
907 eeprom->address_bits = 8;
Jacob Keller6ec1b712014-04-09 06:03:13 +0000908 hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: %d\n",
909 eeprom->type, eeprom->word_size, eeprom->address_bits);
Auke Kok9a799d72007-09-15 14:07:45 -0700910 }
911
912 return 0;
913}
914
915/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000916 * ixgbe_write_eeprom_buffer_bit_bang_generic - Write EEPROM using bit-bang
917 * @hw: pointer to hardware structure
918 * @offset: offset within the EEPROM to write
919 * @words: number of words
920 * @data: 16 bit word(s) to write to EEPROM
921 *
922 * Reads 16 bit word(s) from EEPROM through bit-bang method
923 **/
924s32 ixgbe_write_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
925 u16 words, u16 *data)
926{
Mark Rustade90dd262014-07-22 06:51:08 +0000927 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +0000928 u16 i, count;
929
930 hw->eeprom.ops.init_params(hw);
931
Mark Rustade90dd262014-07-22 06:51:08 +0000932 if (words == 0)
933 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +0000934
Mark Rustade90dd262014-07-22 06:51:08 +0000935 if (offset + words > hw->eeprom.word_size)
936 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +0000937
938 /*
939 * The EEPROM page size cannot be queried from the chip. We do lazy
940 * initialization. It is worth to do that when we write large buffer.
941 */
942 if ((hw->eeprom.word_page_size == 0) &&
943 (words > IXGBE_EEPROM_PAGE_SIZE_MAX))
944 ixgbe_detect_eeprom_page_size_generic(hw, offset);
945
946 /*
947 * We cannot hold synchronization semaphores for too long
948 * to avoid other entity starvation. However it is more efficient
949 * to read in bursts than synchronizing access for each word.
950 */
951 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
952 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
953 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
954 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset + i,
955 count, &data[i]);
956
957 if (status != 0)
958 break;
959 }
960
Emil Tantilov68c70052011-04-20 08:49:06 +0000961 return status;
962}
963
964/**
965 * ixgbe_write_eeprom_buffer_bit_bang - Writes 16 bit word(s) to EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000966 * @hw: pointer to hardware structure
967 * @offset: offset within the EEPROM to be written to
Emil Tantilov68c70052011-04-20 08:49:06 +0000968 * @words: number of word(s)
969 * @data: 16 bit word(s) to be written to the EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000970 *
971 * If ixgbe_eeprom_update_checksum is not called after this function, the
972 * EEPROM will most likely contain an invalid checksum.
973 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000974static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
975 u16 words, u16 *data)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000976{
977 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +0000978 u16 word;
979 u16 page_size;
980 u16 i;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000981 u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI;
982
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000983 /* Prepare the EEPROM for writing */
984 status = ixgbe_acquire_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +0000985 if (status)
986 return status;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000987
Mark Rustade90dd262014-07-22 06:51:08 +0000988 if (ixgbe_ready_eeprom(hw) != 0) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000989 ixgbe_release_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +0000990 return IXGBE_ERR_EEPROM;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000991 }
992
Mark Rustade90dd262014-07-22 06:51:08 +0000993 for (i = 0; i < words; i++) {
994 ixgbe_standby_eeprom(hw);
995
996 /* Send the WRITE ENABLE command (8 bit opcode) */
997 ixgbe_shift_out_eeprom_bits(hw,
998 IXGBE_EEPROM_WREN_OPCODE_SPI,
999 IXGBE_EEPROM_OPCODE_BITS);
1000
1001 ixgbe_standby_eeprom(hw);
1002
1003 /* Some SPI eeproms use the 8th address bit embedded
1004 * in the opcode
1005 */
1006 if ((hw->eeprom.address_bits == 8) &&
1007 ((offset + i) >= 128))
1008 write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
1009
1010 /* Send the Write command (8-bit opcode + addr) */
1011 ixgbe_shift_out_eeprom_bits(hw, write_opcode,
1012 IXGBE_EEPROM_OPCODE_BITS);
1013 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
1014 hw->eeprom.address_bits);
1015
1016 page_size = hw->eeprom.word_page_size;
1017
1018 /* Send the data in burst via SPI */
1019 do {
1020 word = data[i];
1021 word = (word >> 8) | (word << 8);
1022 ixgbe_shift_out_eeprom_bits(hw, word, 16);
1023
1024 if (page_size == 0)
1025 break;
1026
1027 /* do not wrap around page */
1028 if (((offset + i) & (page_size - 1)) ==
1029 (page_size - 1))
1030 break;
1031 } while (++i < words);
1032
1033 ixgbe_standby_eeprom(hw);
1034 usleep_range(10000, 20000);
1035 }
1036 /* Done with writing - release the EEPROM */
1037 ixgbe_release_eeprom(hw);
1038
1039 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001040}
1041
1042/**
Emil Tantilov68c70052011-04-20 08:49:06 +00001043 * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001044 * @hw: pointer to hardware structure
Emil Tantilov68c70052011-04-20 08:49:06 +00001045 * @offset: offset within the EEPROM to be written to
1046 * @data: 16 bit word to be written to the EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001047 *
Emil Tantilov68c70052011-04-20 08:49:06 +00001048 * If ixgbe_eeprom_update_checksum is not called after this function, the
1049 * EEPROM will most likely contain an invalid checksum.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001050 **/
Emil Tantilov68c70052011-04-20 08:49:06 +00001051s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001052{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001053 hw->eeprom.ops.init_params(hw);
1054
Mark Rustade90dd262014-07-22 06:51:08 +00001055 if (offset >= hw->eeprom.word_size)
1056 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001057
Mark Rustade90dd262014-07-22 06:51:08 +00001058 return ixgbe_write_eeprom_buffer_bit_bang(hw, offset, 1, &data);
Emil Tantilov68c70052011-04-20 08:49:06 +00001059}
1060
1061/**
1062 * ixgbe_read_eeprom_buffer_bit_bang_generic - Read EEPROM using bit-bang
1063 * @hw: pointer to hardware structure
1064 * @offset: offset within the EEPROM to be read
1065 * @words: number of word(s)
1066 * @data: read 16 bit words(s) from EEPROM
1067 *
1068 * Reads 16 bit word(s) from EEPROM through bit-bang method
1069 **/
1070s32 ixgbe_read_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1071 u16 words, u16 *data)
1072{
Mark Rustade90dd262014-07-22 06:51:08 +00001073 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001074 u16 i, count;
1075
1076 hw->eeprom.ops.init_params(hw);
1077
Mark Rustade90dd262014-07-22 06:51:08 +00001078 if (words == 0)
1079 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +00001080
Mark Rustade90dd262014-07-22 06:51:08 +00001081 if (offset + words > hw->eeprom.word_size)
1082 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +00001083
1084 /*
1085 * We cannot hold synchronization semaphores for too long
1086 * to avoid other entity starvation. However it is more efficient
1087 * to read in bursts than synchronizing access for each word.
1088 */
1089 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
1090 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
1091 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
1092
1093 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset + i,
1094 count, &data[i]);
1095
Mark Rustade90dd262014-07-22 06:51:08 +00001096 if (status)
1097 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001098 }
1099
Mark Rustade90dd262014-07-22 06:51:08 +00001100 return 0;
Emil Tantilov68c70052011-04-20 08:49:06 +00001101}
1102
1103/**
1104 * ixgbe_read_eeprom_buffer_bit_bang - Read EEPROM using bit-bang
1105 * @hw: pointer to hardware structure
1106 * @offset: offset within the EEPROM to be read
1107 * @words: number of word(s)
1108 * @data: read 16 bit word(s) from EEPROM
1109 *
1110 * Reads 16 bit word(s) from EEPROM through bit-bang method
1111 **/
1112static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
1113 u16 words, u16 *data)
1114{
1115 s32 status;
1116 u16 word_in;
1117 u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI;
1118 u16 i;
1119
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001120 /* Prepare the EEPROM for reading */
1121 status = ixgbe_acquire_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +00001122 if (status)
1123 return status;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001124
Mark Rustade90dd262014-07-22 06:51:08 +00001125 if (ixgbe_ready_eeprom(hw) != 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001126 ixgbe_release_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +00001127 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001128 }
1129
Mark Rustade90dd262014-07-22 06:51:08 +00001130 for (i = 0; i < words; i++) {
1131 ixgbe_standby_eeprom(hw);
1132 /* Some SPI eeproms use the 8th address bit embedded
1133 * in the opcode
1134 */
1135 if ((hw->eeprom.address_bits == 8) &&
1136 ((offset + i) >= 128))
1137 read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
1138
1139 /* Send the READ command (opcode + addr) */
1140 ixgbe_shift_out_eeprom_bits(hw, read_opcode,
1141 IXGBE_EEPROM_OPCODE_BITS);
1142 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
1143 hw->eeprom.address_bits);
1144
1145 /* Read the data. */
1146 word_in = ixgbe_shift_in_eeprom_bits(hw, 16);
1147 data[i] = (word_in >> 8) | (word_in << 8);
1148 }
1149
1150 /* End this read operation */
1151 ixgbe_release_eeprom(hw);
1152
1153 return 0;
Emil Tantilov68c70052011-04-20 08:49:06 +00001154}
1155
1156/**
1157 * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang
1158 * @hw: pointer to hardware structure
1159 * @offset: offset within the EEPROM to be read
1160 * @data: read 16 bit value from EEPROM
1161 *
1162 * Reads 16 bit value from EEPROM through bit-bang method
1163 **/
1164s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1165 u16 *data)
1166{
Emil Tantilov68c70052011-04-20 08:49:06 +00001167 hw->eeprom.ops.init_params(hw);
1168
Mark Rustade90dd262014-07-22 06:51:08 +00001169 if (offset >= hw->eeprom.word_size)
1170 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +00001171
Mark Rustade90dd262014-07-22 06:51:08 +00001172 return ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
Emil Tantilov68c70052011-04-20 08:49:06 +00001173}
1174
1175/**
1176 * ixgbe_read_eerd_buffer_generic - Read EEPROM word(s) using EERD
1177 * @hw: pointer to hardware structure
1178 * @offset: offset of word in the EEPROM to read
1179 * @words: number of word(s)
1180 * @data: 16 bit word(s) from the EEPROM
1181 *
1182 * Reads a 16 bit word(s) from the EEPROM using the EERD register.
1183 **/
1184s32 ixgbe_read_eerd_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1185 u16 words, u16 *data)
1186{
1187 u32 eerd;
Mark Rustade90dd262014-07-22 06:51:08 +00001188 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001189 u32 i;
1190
1191 hw->eeprom.ops.init_params(hw);
1192
Mark Rustade90dd262014-07-22 06:51:08 +00001193 if (words == 0)
1194 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +00001195
Mark Rustade90dd262014-07-22 06:51:08 +00001196 if (offset >= hw->eeprom.word_size)
1197 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +00001198
1199 for (i = 0; i < words; i++) {
Emil Tantilovd0111572013-02-05 09:43:26 +00001200 eerd = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
Emil Tantilov68c70052011-04-20 08:49:06 +00001201 IXGBE_EEPROM_RW_REG_START;
1202
1203 IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd);
1204 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_READ);
1205
1206 if (status == 0) {
1207 data[i] = (IXGBE_READ_REG(hw, IXGBE_EERD) >>
1208 IXGBE_EEPROM_RW_REG_DATA);
1209 } else {
1210 hw_dbg(hw, "Eeprom read timed out\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001211 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001212 }
1213 }
Mark Rustade90dd262014-07-22 06:51:08 +00001214
1215 return 0;
Emil Tantilov68c70052011-04-20 08:49:06 +00001216}
1217
1218/**
1219 * ixgbe_detect_eeprom_page_size_generic - Detect EEPROM page size
1220 * @hw: pointer to hardware structure
1221 * @offset: offset within the EEPROM to be used as a scratch pad
1222 *
1223 * Discover EEPROM page size by writing marching data at given offset.
1224 * This function is called only when we are writing a new large buffer
1225 * at given offset so the data would be overwritten anyway.
1226 **/
1227static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
1228 u16 offset)
1229{
1230 u16 data[IXGBE_EEPROM_PAGE_SIZE_MAX];
Mark Rustade90dd262014-07-22 06:51:08 +00001231 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001232 u16 i;
1233
1234 for (i = 0; i < IXGBE_EEPROM_PAGE_SIZE_MAX; i++)
1235 data[i] = i;
1236
1237 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX;
1238 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset,
1239 IXGBE_EEPROM_PAGE_SIZE_MAX, data);
1240 hw->eeprom.word_page_size = 0;
Mark Rustade90dd262014-07-22 06:51:08 +00001241 if (status)
1242 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001243
1244 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
Mark Rustade90dd262014-07-22 06:51:08 +00001245 if (status)
1246 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001247
1248 /*
1249 * When writing in burst more than the actual page size
1250 * EEPROM address wraps around current page.
1251 */
1252 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX - data[0];
1253
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +00001254 hw_dbg(hw, "Detected EEPROM page size = %d words.\n",
Emil Tantilov68c70052011-04-20 08:49:06 +00001255 hw->eeprom.word_page_size);
Mark Rustade90dd262014-07-22 06:51:08 +00001256 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001257}
1258
1259/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001260 * ixgbe_read_eerd_generic - Read EEPROM word using EERD
Auke Kok9a799d72007-09-15 14:07:45 -07001261 * @hw: pointer to hardware structure
1262 * @offset: offset of word in the EEPROM to read
1263 * @data: word read from the EEPROM
1264 *
1265 * Reads a 16 bit word from the EEPROM using the EERD register.
1266 **/
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001267s32 ixgbe_read_eerd_generic(struct ixgbe_hw *hw, u16 offset, u16 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001268{
Emil Tantilov68c70052011-04-20 08:49:06 +00001269 return ixgbe_read_eerd_buffer_generic(hw, offset, 1, data);
1270}
1271
1272/**
1273 * ixgbe_write_eewr_buffer_generic - Write EEPROM word(s) using EEWR
1274 * @hw: pointer to hardware structure
1275 * @offset: offset of word in the EEPROM to write
1276 * @words: number of words
1277 * @data: word(s) write to the EEPROM
1278 *
1279 * Write a 16 bit word(s) to the EEPROM using the EEWR register.
1280 **/
1281s32 ixgbe_write_eewr_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1282 u16 words, u16 *data)
1283{
1284 u32 eewr;
Mark Rustade90dd262014-07-22 06:51:08 +00001285 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001286 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07001287
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001288 hw->eeprom.ops.init_params(hw);
1289
Mark Rustade90dd262014-07-22 06:51:08 +00001290 if (words == 0)
1291 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +00001292
Mark Rustade90dd262014-07-22 06:51:08 +00001293 if (offset >= hw->eeprom.word_size)
1294 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001295
Emil Tantilov68c70052011-04-20 08:49:06 +00001296 for (i = 0; i < words; i++) {
1297 eewr = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
1298 (data[i] << IXGBE_EEPROM_RW_REG_DATA) |
1299 IXGBE_EEPROM_RW_REG_START;
Auke Kok9a799d72007-09-15 14:07:45 -07001300
Emil Tantilov68c70052011-04-20 08:49:06 +00001301 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
Mark Rustade90dd262014-07-22 06:51:08 +00001302 if (status) {
Emil Tantilov68c70052011-04-20 08:49:06 +00001303 hw_dbg(hw, "Eeprom write EEWR timed out\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001304 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001305 }
Auke Kok9a799d72007-09-15 14:07:45 -07001306
Emil Tantilov68c70052011-04-20 08:49:06 +00001307 IXGBE_WRITE_REG(hw, IXGBE_EEWR, eewr);
1308
1309 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
Mark Rustade90dd262014-07-22 06:51:08 +00001310 if (status) {
Emil Tantilov68c70052011-04-20 08:49:06 +00001311 hw_dbg(hw, "Eeprom write EEWR timed out\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001312 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001313 }
1314 }
Auke Kok9a799d72007-09-15 14:07:45 -07001315
Mark Rustade90dd262014-07-22 06:51:08 +00001316 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001317}
1318
1319/**
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001320 * ixgbe_write_eewr_generic - Write EEPROM word using EEWR
1321 * @hw: pointer to hardware structure
1322 * @offset: offset of word in the EEPROM to write
1323 * @data: word write to the EEPROM
1324 *
1325 * Write a 16 bit word to the EEPROM using the EEWR register.
1326 **/
1327s32 ixgbe_write_eewr_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
1328{
Emil Tantilov68c70052011-04-20 08:49:06 +00001329 return ixgbe_write_eewr_buffer_generic(hw, offset, 1, &data);
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001330}
1331
1332/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001333 * ixgbe_poll_eerd_eewr_done - Poll EERD read or EEWR write status
Auke Kok9a799d72007-09-15 14:07:45 -07001334 * @hw: pointer to hardware structure
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001335 * @ee_reg: EEPROM flag for polling
Auke Kok9a799d72007-09-15 14:07:45 -07001336 *
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001337 * Polls the status bit (bit 1) of the EERD or EEWR to determine when the
1338 * read or write is done respectively.
Auke Kok9a799d72007-09-15 14:07:45 -07001339 **/
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001340static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg)
Auke Kok9a799d72007-09-15 14:07:45 -07001341{
1342 u32 i;
1343 u32 reg;
Auke Kok9a799d72007-09-15 14:07:45 -07001344
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001345 for (i = 0; i < IXGBE_EERD_EEWR_ATTEMPTS; i++) {
1346 if (ee_reg == IXGBE_NVM_POLL_READ)
1347 reg = IXGBE_READ_REG(hw, IXGBE_EERD);
1348 else
1349 reg = IXGBE_READ_REG(hw, IXGBE_EEWR);
1350
1351 if (reg & IXGBE_EEPROM_RW_REG_DONE) {
Mark Rustade90dd262014-07-22 06:51:08 +00001352 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001353 }
1354 udelay(5);
1355 }
Mark Rustade90dd262014-07-22 06:51:08 +00001356 return IXGBE_ERR_EEPROM;
Auke Kok9a799d72007-09-15 14:07:45 -07001357}
1358
1359/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001360 * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang
1361 * @hw: pointer to hardware structure
1362 *
1363 * Prepares EEPROM for access using bit-bang method. This function should
1364 * be called before issuing a command to the EEPROM.
1365 **/
1366static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw)
1367{
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001368 u32 eec;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001369 u32 i;
1370
Don Skidmore5e655102011-02-25 01:58:04 +00001371 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0)
Mark Rustade90dd262014-07-22 06:51:08 +00001372 return IXGBE_ERR_SWFW_SYNC;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001373
Don Skidmore9a900ec2015-06-09 17:15:01 -07001374 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001375
1376 /* Request EEPROM Access */
1377 eec |= IXGBE_EEC_REQ;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001378 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Mark Rustade90dd262014-07-22 06:51:08 +00001379
1380 for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) {
Don Skidmore9a900ec2015-06-09 17:15:01 -07001381 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001382 if (eec & IXGBE_EEC_GNT)
1383 break;
1384 udelay(5);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001385 }
Mark Rustade90dd262014-07-22 06:51:08 +00001386
1387 /* Release if grant not acquired */
1388 if (!(eec & IXGBE_EEC_GNT)) {
1389 eec &= ~IXGBE_EEC_REQ;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001390 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Mark Rustade90dd262014-07-22 06:51:08 +00001391 hw_dbg(hw, "Could not acquire EEPROM grant\n");
1392
1393 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1394 return IXGBE_ERR_EEPROM;
1395 }
1396
1397 /* Setup EEPROM for Read/Write */
1398 /* Clear CS and SK */
1399 eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK);
Don Skidmore9a900ec2015-06-09 17:15:01 -07001400 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Mark Rustade90dd262014-07-22 06:51:08 +00001401 IXGBE_WRITE_FLUSH(hw);
1402 udelay(1);
1403 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001404}
1405
1406/**
Auke Kok9a799d72007-09-15 14:07:45 -07001407 * ixgbe_get_eeprom_semaphore - Get hardware semaphore
1408 * @hw: pointer to hardware structure
1409 *
1410 * Sets the hardware semaphores so EEPROM access can occur for bit-bang method
1411 **/
1412static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw)
1413{
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001414 u32 timeout = 2000;
Auke Kok9a799d72007-09-15 14:07:45 -07001415 u32 i;
1416 u32 swsm;
1417
Auke Kok9a799d72007-09-15 14:07:45 -07001418 /* Get SMBI software semaphore between device drivers first */
1419 for (i = 0; i < timeout; i++) {
1420 /*
1421 * If the SMBI bit is 0 when we read it, then the bit will be
1422 * set and we have the semaphore
1423 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001424 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001425 if (!(swsm & IXGBE_SWSM_SMBI))
Auke Kok9a799d72007-09-15 14:07:45 -07001426 break;
Mark Rustadd819fc52014-07-22 06:50:36 +00001427 usleep_range(50, 100);
Auke Kok9a799d72007-09-15 14:07:45 -07001428 }
1429
Emil Tantilov51275d32011-04-08 01:23:59 +00001430 if (i == timeout) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001431 hw_dbg(hw, "Driver can't access the Eeprom - SMBI Semaphore not granted.\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001432 /* this release is particularly important because our attempts
Emil Tantilov51275d32011-04-08 01:23:59 +00001433 * above to get the semaphore may have succeeded, and if there
1434 * was a timeout, we should unconditionally clear the semaphore
1435 * bits to free the driver to make progress
1436 */
1437 ixgbe_release_eeprom_semaphore(hw);
1438
Mark Rustadd819fc52014-07-22 06:50:36 +00001439 usleep_range(50, 100);
Mark Rustade90dd262014-07-22 06:51:08 +00001440 /* one last try
Emil Tantilov51275d32011-04-08 01:23:59 +00001441 * If the SMBI bit is 0 when we read it, then the bit will be
1442 * set and we have the semaphore
1443 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001444 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001445 if (swsm & IXGBE_SWSM_SMBI) {
1446 hw_dbg(hw, "Software semaphore SMBI between device drivers not granted.\n");
1447 return IXGBE_ERR_EEPROM;
1448 }
Emil Tantilov51275d32011-04-08 01:23:59 +00001449 }
1450
Auke Kok9a799d72007-09-15 14:07:45 -07001451 /* Now get the semaphore between SW/FW through the SWESMBI bit */
Mark Rustade90dd262014-07-22 06:51:08 +00001452 for (i = 0; i < timeout; i++) {
Don Skidmore9a900ec2015-06-09 17:15:01 -07001453 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Auke Kok9a799d72007-09-15 14:07:45 -07001454
Mark Rustade90dd262014-07-22 06:51:08 +00001455 /* Set the SW EEPROM semaphore bit to request access */
1456 swsm |= IXGBE_SWSM_SWESMBI;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001457 IXGBE_WRITE_REG(hw, IXGBE_SWSM(hw), swsm);
Auke Kok9a799d72007-09-15 14:07:45 -07001458
Mark Rustade90dd262014-07-22 06:51:08 +00001459 /* If we set the bit successfully then we got the
1460 * semaphore.
Auke Kok9a799d72007-09-15 14:07:45 -07001461 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001462 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001463 if (swsm & IXGBE_SWSM_SWESMBI)
1464 break;
1465
1466 usleep_range(50, 100);
Auke Kok9a799d72007-09-15 14:07:45 -07001467 }
1468
Mark Rustade90dd262014-07-22 06:51:08 +00001469 /* Release semaphores and return error if SW EEPROM semaphore
1470 * was not granted because we don't have access to the EEPROM
1471 */
1472 if (i >= timeout) {
1473 hw_dbg(hw, "SWESMBI Software EEPROM semaphore not granted.\n");
1474 ixgbe_release_eeprom_semaphore(hw);
1475 return IXGBE_ERR_EEPROM;
1476 }
1477
1478 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001479}
1480
1481/**
1482 * ixgbe_release_eeprom_semaphore - Release hardware semaphore
1483 * @hw: pointer to hardware structure
1484 *
1485 * This function clears hardware semaphore bits.
1486 **/
1487static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw)
1488{
1489 u32 swsm;
1490
Don Skidmore9a900ec2015-06-09 17:15:01 -07001491 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Auke Kok9a799d72007-09-15 14:07:45 -07001492
1493 /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */
1494 swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI);
Don Skidmore9a900ec2015-06-09 17:15:01 -07001495 IXGBE_WRITE_REG(hw, IXGBE_SWSM(hw), swsm);
Auke Kok3957d632007-10-31 15:22:10 -07001496 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001497}
1498
1499/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001500 * ixgbe_ready_eeprom - Polls for EEPROM ready
1501 * @hw: pointer to hardware structure
1502 **/
1503static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw)
1504{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001505 u16 i;
1506 u8 spi_stat_reg;
1507
1508 /*
1509 * Read "Status Register" repeatedly until the LSB is cleared. The
1510 * EEPROM will signal that the command has been completed by clearing
1511 * bit 0 of the internal status register. If it's not cleared within
1512 * 5 milliseconds, then error out.
1513 */
1514 for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) {
1515 ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001516 IXGBE_EEPROM_OPCODE_BITS);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001517 spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8);
1518 if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI))
1519 break;
1520
1521 udelay(5);
1522 ixgbe_standby_eeprom(hw);
Joe Perches6403eab2011-06-03 11:51:20 +00001523 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001524
1525 /*
1526 * On some parts, SPI write time could vary from 0-20mSec on 3.3V
1527 * devices (and only 0-5mSec on 5V devices)
1528 */
1529 if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) {
1530 hw_dbg(hw, "SPI EEPROM Status error\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001531 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001532 }
1533
Mark Rustade90dd262014-07-22 06:51:08 +00001534 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001535}
1536
1537/**
1538 * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state
1539 * @hw: pointer to hardware structure
1540 **/
1541static void ixgbe_standby_eeprom(struct ixgbe_hw *hw)
1542{
1543 u32 eec;
1544
Don Skidmore9a900ec2015-06-09 17:15:01 -07001545 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001546
1547 /* Toggle CS to flush commands */
1548 eec |= IXGBE_EEC_CS;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001549 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001550 IXGBE_WRITE_FLUSH(hw);
1551 udelay(1);
1552 eec &= ~IXGBE_EEC_CS;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001553 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001554 IXGBE_WRITE_FLUSH(hw);
1555 udelay(1);
1556}
1557
1558/**
1559 * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM.
1560 * @hw: pointer to hardware structure
1561 * @data: data to send to the EEPROM
1562 * @count: number of bits to shift out
1563 **/
1564static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001565 u16 count)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001566{
1567 u32 eec;
1568 u32 mask;
1569 u32 i;
1570
Don Skidmore9a900ec2015-06-09 17:15:01 -07001571 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001572
1573 /*
1574 * Mask is used to shift "count" bits of "data" out to the EEPROM
1575 * one bit at a time. Determine the starting bit based on count
1576 */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07001577 mask = BIT(count - 1);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001578
1579 for (i = 0; i < count; i++) {
1580 /*
1581 * A "1" is shifted out to the EEPROM by setting bit "DI" to a
1582 * "1", and then raising and then lowering the clock (the SK
1583 * bit controls the clock input to the EEPROM). A "0" is
1584 * shifted out to the EEPROM by setting "DI" to "0" and then
1585 * raising and then lowering the clock.
1586 */
1587 if (data & mask)
1588 eec |= IXGBE_EEC_DI;
1589 else
1590 eec &= ~IXGBE_EEC_DI;
1591
Don Skidmore9a900ec2015-06-09 17:15:01 -07001592 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001593 IXGBE_WRITE_FLUSH(hw);
1594
1595 udelay(1);
1596
1597 ixgbe_raise_eeprom_clk(hw, &eec);
1598 ixgbe_lower_eeprom_clk(hw, &eec);
1599
1600 /*
1601 * Shift mask to signify next bit of data to shift in to the
1602 * EEPROM
1603 */
1604 mask = mask >> 1;
Joe Perches6403eab2011-06-03 11:51:20 +00001605 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001606
1607 /* We leave the "DI" bit set to "0" when we leave this routine. */
1608 eec &= ~IXGBE_EEC_DI;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001609 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001610 IXGBE_WRITE_FLUSH(hw);
1611}
1612
1613/**
1614 * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM
1615 * @hw: pointer to hardware structure
1616 **/
1617static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count)
1618{
1619 u32 eec;
1620 u32 i;
1621 u16 data = 0;
1622
1623 /*
1624 * In order to read a register from the EEPROM, we need to shift
1625 * 'count' bits in from the EEPROM. Bits are "shifted in" by raising
1626 * the clock input to the EEPROM (setting the SK bit), and then reading
1627 * the value of the "DO" bit. During this "shifting in" process the
1628 * "DI" bit should always be clear.
1629 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001630 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001631
1632 eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI);
1633
1634 for (i = 0; i < count; i++) {
1635 data = data << 1;
1636 ixgbe_raise_eeprom_clk(hw, &eec);
1637
Don Skidmore9a900ec2015-06-09 17:15:01 -07001638 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001639
1640 eec &= ~(IXGBE_EEC_DI);
1641 if (eec & IXGBE_EEC_DO)
1642 data |= 1;
1643
1644 ixgbe_lower_eeprom_clk(hw, &eec);
1645 }
1646
1647 return data;
1648}
1649
1650/**
1651 * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input.
1652 * @hw: pointer to hardware structure
1653 * @eec: EEC register's current value
1654 **/
1655static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1656{
1657 /*
1658 * Raise the clock input to the EEPROM
1659 * (setting the SK bit), then delay
1660 */
1661 *eec = *eec | IXGBE_EEC_SK;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001662 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), *eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001663 IXGBE_WRITE_FLUSH(hw);
1664 udelay(1);
1665}
1666
1667/**
1668 * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input.
1669 * @hw: pointer to hardware structure
1670 * @eecd: EECD's current value
1671 **/
1672static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1673{
1674 /*
1675 * Lower the clock input to the EEPROM (clearing the SK bit), then
1676 * delay
1677 */
1678 *eec = *eec & ~IXGBE_EEC_SK;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001679 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), *eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001680 IXGBE_WRITE_FLUSH(hw);
1681 udelay(1);
1682}
1683
1684/**
1685 * ixgbe_release_eeprom - Release EEPROM, release semaphores
1686 * @hw: pointer to hardware structure
1687 **/
1688static void ixgbe_release_eeprom(struct ixgbe_hw *hw)
1689{
1690 u32 eec;
1691
Don Skidmore9a900ec2015-06-09 17:15:01 -07001692 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001693
1694 eec |= IXGBE_EEC_CS; /* Pull CS high */
1695 eec &= ~IXGBE_EEC_SK; /* Lower SCK */
1696
Don Skidmore9a900ec2015-06-09 17:15:01 -07001697 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001698 IXGBE_WRITE_FLUSH(hw);
1699
1700 udelay(1);
1701
1702 /* Stop requesting EEPROM access */
1703 eec &= ~IXGBE_EEC_REQ;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001704 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001705
Don Skidmore90827992011-03-05 18:59:20 -08001706 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001707
Don Skidmore032b4322011-03-18 09:32:53 +00001708 /*
1709 * Delay before attempt to obtain semaphore again to allow FW
1710 * access. semaphore_delay is in ms we need us for usleep_range
1711 */
1712 usleep_range(hw->eeprom.semaphore_delay * 1000,
1713 hw->eeprom.semaphore_delay * 2000);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001714}
1715
1716/**
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001717 * ixgbe_calc_eeprom_checksum_generic - Calculates and returns the checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001718 * @hw: pointer to hardware structure
1719 **/
Don Skidmore735c35a2014-11-29 05:22:48 +00001720s32 ixgbe_calc_eeprom_checksum_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001721{
1722 u16 i;
1723 u16 j;
1724 u16 checksum = 0;
1725 u16 length = 0;
1726 u16 pointer = 0;
1727 u16 word = 0;
1728
1729 /* Include 0x0-0x3F in the checksum */
1730 for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) {
Don Skidmore735c35a2014-11-29 05:22:48 +00001731 if (hw->eeprom.ops.read(hw, i, &word)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001732 hw_dbg(hw, "EEPROM read failed\n");
1733 break;
1734 }
1735 checksum += word;
1736 }
1737
1738 /* Include all data from pointers except for the fw pointer */
1739 for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) {
Don Skidmore735c35a2014-11-29 05:22:48 +00001740 if (hw->eeprom.ops.read(hw, i, &pointer)) {
1741 hw_dbg(hw, "EEPROM read failed\n");
1742 return IXGBE_ERR_EEPROM;
1743 }
Auke Kok9a799d72007-09-15 14:07:45 -07001744
Don Skidmore735c35a2014-11-29 05:22:48 +00001745 /* If the pointer seems invalid */
1746 if (pointer == 0xFFFF || pointer == 0)
1747 continue;
Auke Kok9a799d72007-09-15 14:07:45 -07001748
Don Skidmore735c35a2014-11-29 05:22:48 +00001749 if (hw->eeprom.ops.read(hw, pointer, &length)) {
1750 hw_dbg(hw, "EEPROM read failed\n");
1751 return IXGBE_ERR_EEPROM;
1752 }
1753
1754 if (length == 0xFFFF || length == 0)
1755 continue;
1756
1757 for (j = pointer + 1; j <= pointer + length; j++) {
1758 if (hw->eeprom.ops.read(hw, j, &word)) {
1759 hw_dbg(hw, "EEPROM read failed\n");
1760 return IXGBE_ERR_EEPROM;
Auke Kok9a799d72007-09-15 14:07:45 -07001761 }
Don Skidmore735c35a2014-11-29 05:22:48 +00001762 checksum += word;
Auke Kok9a799d72007-09-15 14:07:45 -07001763 }
1764 }
1765
1766 checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1767
Don Skidmore735c35a2014-11-29 05:22:48 +00001768 return (s32)checksum;
Auke Kok9a799d72007-09-15 14:07:45 -07001769}
1770
1771/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001772 * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001773 * @hw: pointer to hardware structure
1774 * @checksum_val: calculated checksum
1775 *
1776 * Performs checksum calculation and validates the EEPROM checksum. If the
1777 * caller does not need checksum_val, the value can be NULL.
1778 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001779s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001780 u16 *checksum_val)
Auke Kok9a799d72007-09-15 14:07:45 -07001781{
1782 s32 status;
1783 u16 checksum;
1784 u16 read_checksum = 0;
1785
1786 /*
1787 * Read the first word from the EEPROM. If this times out or fails, do
1788 * not continue or we could be in for a very long wait while every
1789 * EEPROM read fails
1790 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001791 status = hw->eeprom.ops.read(hw, 0, &checksum);
Don Skidmore735c35a2014-11-29 05:22:48 +00001792 if (status) {
Auke Kok9a799d72007-09-15 14:07:45 -07001793 hw_dbg(hw, "EEPROM read failed\n");
Don Skidmore735c35a2014-11-29 05:22:48 +00001794 return status;
Auke Kok9a799d72007-09-15 14:07:45 -07001795 }
1796
Don Skidmore735c35a2014-11-29 05:22:48 +00001797 status = hw->eeprom.ops.calc_checksum(hw);
1798 if (status < 0)
1799 return status;
1800
1801 checksum = (u16)(status & 0xffff);
1802
1803 status = hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum);
1804 if (status) {
1805 hw_dbg(hw, "EEPROM read failed\n");
1806 return status;
1807 }
1808
1809 /* Verify read checksum from EEPROM is the same as
1810 * calculated checksum
1811 */
1812 if (read_checksum != checksum)
1813 status = IXGBE_ERR_EEPROM_CHECKSUM;
1814
1815 /* If the user cares, return the calculated checksum */
1816 if (checksum_val)
1817 *checksum_val = checksum;
1818
Auke Kok9a799d72007-09-15 14:07:45 -07001819 return status;
1820}
1821
1822/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001823 * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum
1824 * @hw: pointer to hardware structure
1825 **/
1826s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw)
1827{
1828 s32 status;
1829 u16 checksum;
1830
1831 /*
1832 * Read the first word from the EEPROM. If this times out or fails, do
1833 * not continue or we could be in for a very long wait while every
1834 * EEPROM read fails
1835 */
1836 status = hw->eeprom.ops.read(hw, 0, &checksum);
Don Skidmore735c35a2014-11-29 05:22:48 +00001837 if (status) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001838 hw_dbg(hw, "EEPROM read failed\n");
Don Skidmore735c35a2014-11-29 05:22:48 +00001839 return status;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001840 }
1841
Don Skidmore735c35a2014-11-29 05:22:48 +00001842 status = hw->eeprom.ops.calc_checksum(hw);
1843 if (status < 0)
1844 return status;
1845
1846 checksum = (u16)(status & 0xffff);
1847
1848 status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM, checksum);
1849
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001850 return status;
1851}
1852
1853/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001854 * ixgbe_set_rar_generic - Set Rx address register
Auke Kok9a799d72007-09-15 14:07:45 -07001855 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07001856 * @index: Receive address register to write
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001857 * @addr: Address to put into receive address register
1858 * @vmdq: VMDq "set" or "pool" index
Auke Kok9a799d72007-09-15 14:07:45 -07001859 * @enable_addr: set flag that address is active
1860 *
1861 * Puts an ethernet address into a receive address register.
1862 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001863s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001864 u32 enable_addr)
Auke Kok9a799d72007-09-15 14:07:45 -07001865{
1866 u32 rar_low, rar_high;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001867 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001868
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001869 /* Make sure we are using a valid rar index range */
1870 if (index >= rar_entries) {
1871 hw_dbg(hw, "RAR index %d is out of range.\n", index);
1872 return IXGBE_ERR_INVALID_ARGUMENT;
1873 }
1874
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001875 /* setup VMDq pool selection before this RAR gets enabled */
1876 hw->mac.ops.set_vmdq(hw, index, vmdq);
1877
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001878 /*
1879 * HW expects these in little endian so we reverse the byte
1880 * order from network order (big endian) to little endian
1881 */
1882 rar_low = ((u32)addr[0] |
1883 ((u32)addr[1] << 8) |
1884 ((u32)addr[2] << 16) |
1885 ((u32)addr[3] << 24));
1886 /*
1887 * Some parts put the VMDq setting in the extra RAH bits,
1888 * so save everything except the lower 16 bits that hold part
1889 * of the address and the address valid bit.
1890 */
1891 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1892 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1893 rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8));
Auke Kok9a799d72007-09-15 14:07:45 -07001894
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001895 if (enable_addr != 0)
1896 rar_high |= IXGBE_RAH_AV;
Auke Kok9a799d72007-09-15 14:07:45 -07001897
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001898 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low);
1899 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
Auke Kok9a799d72007-09-15 14:07:45 -07001900
1901 return 0;
1902}
1903
1904/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001905 * ixgbe_clear_rar_generic - Remove Rx address register
1906 * @hw: pointer to hardware structure
1907 * @index: Receive address register to write
1908 *
1909 * Clears an ethernet address from a receive address register.
1910 **/
1911s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index)
1912{
1913 u32 rar_high;
1914 u32 rar_entries = hw->mac.num_rar_entries;
1915
1916 /* Make sure we are using a valid rar index range */
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001917 if (index >= rar_entries) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001918 hw_dbg(hw, "RAR index %d is out of range.\n", index);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001919 return IXGBE_ERR_INVALID_ARGUMENT;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001920 }
1921
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001922 /*
1923 * Some parts put the VMDq setting in the extra RAH bits,
1924 * so save everything except the lower 16 bits that hold part
1925 * of the address and the address valid bit.
1926 */
1927 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1928 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1929
1930 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0);
1931 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1932
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001933 /* clear VMDq pool/queue selection for this RAR */
1934 hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL);
1935
1936 return 0;
1937}
1938
1939/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001940 * ixgbe_init_rx_addrs_generic - Initializes receive address filters.
Auke Kok9a799d72007-09-15 14:07:45 -07001941 * @hw: pointer to hardware structure
1942 *
1943 * Places the MAC address in receive address register 0 and clears the rest
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001944 * of the receive address registers. Clears the multicast table. Assumes
Auke Kok9a799d72007-09-15 14:07:45 -07001945 * the receiver is in reset when the routine is called.
1946 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001947s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001948{
1949 u32 i;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001950 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001951
1952 /*
1953 * If the current mac address is valid, assume it is a software override
1954 * to the permanent address.
1955 * Otherwise, use the permanent address from the eeprom.
1956 */
Joe Perchesf8ebc682012-10-24 17:19:02 +00001957 if (!is_valid_ether_addr(hw->mac.addr)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001958 /* Get the MAC address from the RAR0 for later reference */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001959 hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001960
hartleysce7194d2010-01-05 06:56:52 +00001961 hw_dbg(hw, " Keeping Current RAR0 Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001962 } else {
1963 /* Setup the receive address. */
1964 hw_dbg(hw, "Overriding MAC Address in RAR[0]\n");
hartleysce7194d2010-01-05 06:56:52 +00001965 hw_dbg(hw, " New MAC Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001966
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001967 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07001968 }
Alexander Duyck6e982ae2015-11-02 17:10:26 -08001969
1970 /* clear VMDq pool/queue selection for RAR 0 */
1971 hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL);
1972
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001973 hw->addr_ctrl.overflow_promisc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001974
1975 hw->addr_ctrl.rar_used_count = 1;
1976
1977 /* Zero out the other receive addresses. */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001978 hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07001979 for (i = 1; i < rar_entries; i++) {
1980 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
1981 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
1982 }
1983
1984 /* Clear the MTA */
Auke Kok9a799d72007-09-15 14:07:45 -07001985 hw->addr_ctrl.mta_in_use = 0;
1986 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
1987
1988 hw_dbg(hw, " Clearing MTA\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001989 for (i = 0; i < hw->mac.mcft_size; i++)
Auke Kok9a799d72007-09-15 14:07:45 -07001990 IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0);
1991
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001992 if (hw->mac.ops.init_uta_tables)
1993 hw->mac.ops.init_uta_tables(hw);
1994
Auke Kok9a799d72007-09-15 14:07:45 -07001995 return 0;
1996}
1997
1998/**
1999 * ixgbe_mta_vector - Determines bit-vector in multicast table to set
2000 * @hw: pointer to hardware structure
2001 * @mc_addr: the multicast address
2002 *
2003 * Extracts the 12 bits, from a multicast address, to determine which
2004 * bit-vector to set in the multicast table. The hardware uses 12 bits, from
2005 * incoming rx multicast addresses, to determine the bit-vector to check in
2006 * the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002007 * by the MO field of the MCSTCTRL. The MO field is set during initialization
Auke Kok9a799d72007-09-15 14:07:45 -07002008 * to mc_filter_type.
2009 **/
2010static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr)
2011{
2012 u32 vector = 0;
2013
2014 switch (hw->mac.mc_filter_type) {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002015 case 0: /* use bits [47:36] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07002016 vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
2017 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002018 case 1: /* use bits [46:35] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07002019 vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
2020 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002021 case 2: /* use bits [45:34] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07002022 vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
2023 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002024 case 3: /* use bits [43:32] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07002025 vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
2026 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002027 default: /* Invalid mc_filter_type */
Auke Kok9a799d72007-09-15 14:07:45 -07002028 hw_dbg(hw, "MC filter type param set incorrectly\n");
2029 break;
2030 }
2031
2032 /* vector can only be 12-bits or boundary will be exceeded */
2033 vector &= 0xFFF;
2034 return vector;
2035}
2036
2037/**
2038 * ixgbe_set_mta - Set bit-vector in multicast table
2039 * @hw: pointer to hardware structure
2040 * @hash_value: Multicast address hash value
2041 *
2042 * Sets the bit-vector in the multicast table.
2043 **/
2044static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr)
2045{
2046 u32 vector;
2047 u32 vector_bit;
2048 u32 vector_reg;
Auke Kok9a799d72007-09-15 14:07:45 -07002049
2050 hw->addr_ctrl.mta_in_use++;
2051
2052 vector = ixgbe_mta_vector(hw, mc_addr);
2053 hw_dbg(hw, " bit-vector = 0x%03X\n", vector);
2054
2055 /*
2056 * The MTA is a register array of 128 32-bit registers. It is treated
2057 * like an array of 4096 bits. We want to set bit
2058 * BitArray[vector_value]. So we figure out what register the bit is
2059 * in, read it, OR in the new bit, then write back the new value. The
2060 * register is determined by the upper 7 bits of the vector value and
2061 * the bit within that register are determined by the lower 5 bits of
2062 * the value.
2063 */
2064 vector_reg = (vector >> 5) & 0x7F;
2065 vector_bit = vector & 0x1F;
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002066 hw->mac.mta_shadow[vector_reg] |= BIT(vector_bit);
Auke Kok9a799d72007-09-15 14:07:45 -07002067}
2068
2069/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002070 * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses
Auke Kok9a799d72007-09-15 14:07:45 -07002071 * @hw: pointer to hardware structure
Jiri Pirko2853eb82010-03-23 22:58:01 +00002072 * @netdev: pointer to net device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002073 *
2074 * The given list replaces any existing list. Clears the MC addrs from receive
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002075 * address registers and the multicast table. Uses unused receive address
Auke Kok9a799d72007-09-15 14:07:45 -07002076 * registers for the first multicast addresses, and hashes the rest into the
2077 * multicast table.
2078 **/
Jiri Pirko2853eb82010-03-23 22:58:01 +00002079s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw,
2080 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07002081{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002082 struct netdev_hw_addr *ha;
Auke Kok9a799d72007-09-15 14:07:45 -07002083 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002084
2085 /*
2086 * Set the new number of MC addresses that we are being requested to
2087 * use.
2088 */
Jiri Pirko2853eb82010-03-23 22:58:01 +00002089 hw->addr_ctrl.num_mc_addrs = netdev_mc_count(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002090 hw->addr_ctrl.mta_in_use = 0;
2091
Emil Tantilov80960ab2011-02-18 08:58:27 +00002092 /* Clear mta_shadow */
Auke Kok9a799d72007-09-15 14:07:45 -07002093 hw_dbg(hw, " Clearing MTA\n");
Emil Tantilov80960ab2011-02-18 08:58:27 +00002094 memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow));
Auke Kok9a799d72007-09-15 14:07:45 -07002095
Emil Tantilov80960ab2011-02-18 08:58:27 +00002096 /* Update mta shadow */
Jiri Pirko22bedad32010-04-01 21:22:57 +00002097 netdev_for_each_mc_addr(ha, netdev) {
Auke Kok9a799d72007-09-15 14:07:45 -07002098 hw_dbg(hw, " Adding the multicast addresses:\n");
Jiri Pirko22bedad32010-04-01 21:22:57 +00002099 ixgbe_set_mta(hw, ha->addr);
Auke Kok9a799d72007-09-15 14:07:45 -07002100 }
2101
2102 /* Enable mta */
Emil Tantilov80960ab2011-02-18 08:58:27 +00002103 for (i = 0; i < hw->mac.mcft_size; i++)
2104 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_MTA(0), i,
2105 hw->mac.mta_shadow[i]);
2106
Auke Kok9a799d72007-09-15 14:07:45 -07002107 if (hw->addr_ctrl.mta_in_use > 0)
2108 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002109 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002110
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002111 hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002112 return 0;
2113}
2114
2115/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002116 * ixgbe_enable_mc_generic - Enable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002117 * @hw: pointer to hardware structure
2118 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002119 * Enables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002120 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002121s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002122{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002123 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002124
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002125 if (a->mta_in_use > 0)
2126 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE |
Jacob Kellere7cf7452014-04-09 06:03:10 +00002127 hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002128
2129 return 0;
2130}
2131
2132/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002133 * ixgbe_disable_mc_generic - Disable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002134 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07002135 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002136 * Disables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002137 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002138s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002139{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002140 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002141
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002142 if (a->mta_in_use > 0)
2143 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002144
2145 return 0;
2146}
2147
2148/**
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002149 * ixgbe_fc_enable_generic - Enable flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002150 * @hw: pointer to hardware structure
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002151 *
2152 * Enable flow control according to the current settings.
2153 **/
Alexander Duyck041441d2012-04-19 17:48:48 +00002154s32 ixgbe_fc_enable_generic(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002155{
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002156 u32 mflcn_reg, fccfg_reg;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002157 u32 reg;
John Fastabend16b61be2010-11-16 19:26:44 -08002158 u32 fcrtl, fcrth;
Alexander Duyck041441d2012-04-19 17:48:48 +00002159 int i;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002160
Jacob Kellere5776622014-04-05 02:35:52 +00002161 /* Validate the water mark configuration. */
Mark Rustade90dd262014-07-22 06:51:08 +00002162 if (!hw->fc.pause_time)
2163 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002164
Jacob Kellere5776622014-04-05 02:35:52 +00002165 /* Low water mark of zero causes XOFF floods */
2166 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
2167 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
2168 hw->fc.high_water[i]) {
2169 if (!hw->fc.low_water[i] ||
2170 hw->fc.low_water[i] >= hw->fc.high_water[i]) {
2171 hw_dbg(hw, "Invalid water mark configuration\n");
Mark Rustade90dd262014-07-22 06:51:08 +00002172 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Jacob Kellere5776622014-04-05 02:35:52 +00002173 }
2174 }
2175 }
2176
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002177 /* Negotiate the fc mode to use */
Don Skidmore29165002016-09-27 14:31:12 -04002178 hw->mac.ops.fc_autoneg(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002179
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002180 /* Disable any previous flow control settings */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002181 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Alexander Duyck041441d2012-04-19 17:48:48 +00002182 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_MASK | IXGBE_MFLCN_RFCE);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002183
2184 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
2185 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
2186
2187 /*
2188 * The possible values of fc.current_mode are:
2189 * 0: Flow control is completely disabled
2190 * 1: Rx flow control is enabled (we can receive pause frames,
2191 * but not send pause frames).
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00002192 * 2: Tx flow control is enabled (we can send pause frames but
2193 * we do not support receiving pause frames).
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002194 * 3: Both Rx and Tx flow control (symmetric) are enabled.
2195 * other: Invalid.
2196 */
2197 switch (hw->fc.current_mode) {
2198 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002199 /*
2200 * Flow control is disabled by software override or autoneg.
2201 * The code below will actually disable it in the HW.
2202 */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002203 break;
2204 case ixgbe_fc_rx_pause:
2205 /*
2206 * Rx Flow control is enabled and Tx Flow control is
2207 * disabled by software override. Since there really
2208 * isn't a way to advertise that we are capable of RX
2209 * Pause ONLY, we will advertise that we support both
2210 * symmetric and asymmetric Rx PAUSE. Later, we will
2211 * disable the adapter's ability to send PAUSE frames.
2212 */
2213 mflcn_reg |= IXGBE_MFLCN_RFCE;
2214 break;
2215 case ixgbe_fc_tx_pause:
2216 /*
2217 * Tx Flow control is enabled, and Rx Flow control is
2218 * disabled by software override.
2219 */
2220 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2221 break;
2222 case ixgbe_fc_full:
2223 /* Flow control (both Rx and Tx) is enabled by SW override. */
2224 mflcn_reg |= IXGBE_MFLCN_RFCE;
2225 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2226 break;
2227 default:
2228 hw_dbg(hw, "Flow control param set incorrectly\n");
Mark Rustade90dd262014-07-22 06:51:08 +00002229 return IXGBE_ERR_CONFIG;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002230 }
2231
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002232 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +00002233 mflcn_reg |= IXGBE_MFLCN_DPF;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002234 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
2235 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
2236
Alexander Duyck041441d2012-04-19 17:48:48 +00002237 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
2238 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
2239 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
2240 hw->fc.high_water[i]) {
Jacob Kellere5776622014-04-05 02:35:52 +00002241 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
Alexander Duyck041441d2012-04-19 17:48:48 +00002242 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), fcrtl);
2243 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
2244 } else {
2245 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0);
2246 /*
2247 * In order to prevent Tx hangs when the internal Tx
2248 * switch is enabled we must set the high water mark
Mark Rustadbc1fc642015-08-08 16:27:51 -07002249 * to the Rx packet buffer size - 24KB. This allows
2250 * the Tx switch to function even under heavy Rx
2251 * workloads.
Alexander Duyck041441d2012-04-19 17:48:48 +00002252 */
Mark Rustadbc1fc642015-08-08 16:27:51 -07002253 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 24576;
Alexander Duyck041441d2012-04-19 17:48:48 +00002254 }
2255
2256 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002257 }
2258
2259 /* Configure pause time (2 TCs per register) */
Alexander Duyck041441d2012-04-19 17:48:48 +00002260 reg = hw->fc.pause_time * 0x00010001;
2261 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
2262 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002263
Alexander Duyck041441d2012-04-19 17:48:48 +00002264 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002265
Mark Rustade90dd262014-07-22 06:51:08 +00002266 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002267}
2268
2269/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002270 * ixgbe_negotiate_fc - Negotiate flow control
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002271 * @hw: pointer to hardware structure
Alexander Duyck67a79df2012-04-19 17:49:56 +00002272 * @adv_reg: flow control advertised settings
2273 * @lp_reg: link partner's flow control settings
2274 * @adv_sym: symmetric pause bit in advertisement
2275 * @adv_asm: asymmetric pause bit in advertisement
2276 * @lp_sym: symmetric pause bit in link partner advertisement
2277 * @lp_asm: asymmetric pause bit in link partner advertisement
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002278 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002279 * Find the intersection between advertised settings and link partner's
2280 * advertised settings
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002281 **/
Don Skidmore29165002016-09-27 14:31:12 -04002282s32 ixgbe_negotiate_fc(struct ixgbe_hw *hw, u32 adv_reg, u32 lp_reg,
2283 u32 adv_sym, u32 adv_asm, u32 lp_sym, u32 lp_asm)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002284{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002285 if ((!(adv_reg)) || (!(lp_reg)))
2286 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002287
Alexander Duyck67a79df2012-04-19 17:49:56 +00002288 if ((adv_reg & adv_sym) && (lp_reg & lp_sym)) {
2289 /*
2290 * Now we need to check if the user selected Rx ONLY
2291 * of pause frames. In this case, we had to advertise
2292 * FULL flow control because we could not advertise RX
2293 * ONLY. Hence, we must now check to see if we need to
2294 * turn OFF the TRANSMISSION of PAUSE frames.
2295 */
2296 if (hw->fc.requested_mode == ixgbe_fc_full) {
2297 hw->fc.current_mode = ixgbe_fc_full;
2298 hw_dbg(hw, "Flow Control = FULL.\n");
2299 } else {
2300 hw->fc.current_mode = ixgbe_fc_rx_pause;
2301 hw_dbg(hw, "Flow Control=RX PAUSE frames only\n");
2302 }
2303 } else if (!(adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2304 (lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2305 hw->fc.current_mode = ixgbe_fc_tx_pause;
2306 hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n");
2307 } else if ((adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2308 !(lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2309 hw->fc.current_mode = ixgbe_fc_rx_pause;
2310 hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002311 } else {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002312 hw->fc.current_mode = ixgbe_fc_none;
2313 hw_dbg(hw, "Flow Control = NONE.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002314 }
Alexander Duyck67a79df2012-04-19 17:49:56 +00002315 return 0;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002316}
2317
2318/**
2319 * ixgbe_fc_autoneg_fiber - Enable flow control on 1 gig fiber
2320 * @hw: pointer to hardware structure
2321 *
2322 * Enable flow control according on 1 gig fiber.
2323 **/
2324static s32 ixgbe_fc_autoneg_fiber(struct ixgbe_hw *hw)
2325{
2326 u32 pcs_anadv_reg, pcs_lpab_reg, linkstat;
Mark Rustade90dd262014-07-22 06:51:08 +00002327 s32 ret_val;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002328
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002329 /*
2330 * On multispeed fiber at 1g, bail out if
2331 * - link is up but AN did not complete, or if
2332 * - link is up and AN completed but timed out
2333 */
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002334
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002335 linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
Don Skidmore53f096d2011-07-28 01:00:58 +00002336 if ((!!(linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) ||
Alexander Duyck786e9a52012-03-28 08:03:48 +00002337 (!!(linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1))
Mark Rustade90dd262014-07-22 06:51:08 +00002338 return IXGBE_ERR_FC_NOT_NEGOTIATED;
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00002339
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002340 pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
2341 pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002342
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002343 ret_val = ixgbe_negotiate_fc(hw, pcs_anadv_reg,
2344 pcs_lpab_reg, IXGBE_PCS1GANA_SYM_PAUSE,
2345 IXGBE_PCS1GANA_ASM_PAUSE,
2346 IXGBE_PCS1GANA_SYM_PAUSE,
2347 IXGBE_PCS1GANA_ASM_PAUSE);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002348
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002349 return ret_val;
2350}
2351
2352/**
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002353 * ixgbe_fc_autoneg_backplane - Enable flow control IEEE clause 37
2354 * @hw: pointer to hardware structure
2355 *
2356 * Enable flow control according to IEEE clause 37.
2357 **/
2358static s32 ixgbe_fc_autoneg_backplane(struct ixgbe_hw *hw)
2359{
2360 u32 links2, anlp1_reg, autoc_reg, links;
Mark Rustade90dd262014-07-22 06:51:08 +00002361 s32 ret_val;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002362
2363 /*
2364 * On backplane, bail out if
2365 * - backplane autoneg was not completed, or if
2366 * - we are 82599 and link partner is not AN enabled
2367 */
2368 links = IXGBE_READ_REG(hw, IXGBE_LINKS);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002369 if ((links & IXGBE_LINKS_KX_AN_COMP) == 0)
Mark Rustade90dd262014-07-22 06:51:08 +00002370 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002371
2372 if (hw->mac.type == ixgbe_mac_82599EB) {
2373 links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002374 if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0)
Mark Rustade90dd262014-07-22 06:51:08 +00002375 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002376 }
2377 /*
2378 * Read the 10g AN autoc and LP ability registers and resolve
2379 * local flow control settings accordingly
2380 */
2381 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2382 anlp1_reg = IXGBE_READ_REG(hw, IXGBE_ANLP1);
2383
2384 ret_val = ixgbe_negotiate_fc(hw, autoc_reg,
2385 anlp1_reg, IXGBE_AUTOC_SYM_PAUSE, IXGBE_AUTOC_ASM_PAUSE,
2386 IXGBE_ANLP1_SYM_PAUSE, IXGBE_ANLP1_ASM_PAUSE);
2387
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002388 return ret_val;
2389}
2390
2391/**
2392 * ixgbe_fc_autoneg_copper - Enable flow control IEEE clause 37
2393 * @hw: pointer to hardware structure
2394 *
2395 * Enable flow control according to IEEE clause 37.
2396 **/
2397static s32 ixgbe_fc_autoneg_copper(struct ixgbe_hw *hw)
2398{
2399 u16 technology_ability_reg = 0;
2400 u16 lp_technology_ability_reg = 0;
2401
2402 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
2403 MDIO_MMD_AN,
2404 &technology_ability_reg);
2405 hw->phy.ops.read_reg(hw, MDIO_AN_LPA,
2406 MDIO_MMD_AN,
2407 &lp_technology_ability_reg);
2408
2409 return ixgbe_negotiate_fc(hw, (u32)technology_ability_reg,
2410 (u32)lp_technology_ability_reg,
2411 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE,
2412 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE);
2413}
2414
2415/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002416 * ixgbe_fc_autoneg - Configure flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002417 * @hw: pointer to hardware structure
2418 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002419 * Compares our advertised flow control capabilities to those advertised by
2420 * our link partner, and determines the proper flow control mode to use.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002421 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002422void ixgbe_fc_autoneg(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002423{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002424 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
2425 ixgbe_link_speed speed;
2426 bool link_up;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002427
2428 /*
Alexander Duyck67a79df2012-04-19 17:49:56 +00002429 * AN should have completed when the cable was plugged in.
2430 * Look for reasons to bail out. Bail out if:
2431 * - FC autoneg is disabled, or if
2432 * - link is not up.
2433 *
2434 * Since we're being called from an LSC, link is already known to be up.
2435 * So use link_up_wait_to_complete=false.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002436 */
Alexander Duyck67a79df2012-04-19 17:49:56 +00002437 if (hw->fc.disable_fc_autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002438 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002439
Alexander Duyck67a79df2012-04-19 17:49:56 +00002440 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2441 if (!link_up)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002442 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002443
2444 switch (hw->phy.media_type) {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002445 /* Autoneg flow control on fiber adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002446 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002447 if (speed == IXGBE_LINK_SPEED_1GB_FULL)
2448 ret_val = ixgbe_fc_autoneg_fiber(hw);
2449 break;
2450
2451 /* Autoneg flow control on backplane adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002452 case ixgbe_media_type_backplane:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002453 ret_val = ixgbe_fc_autoneg_backplane(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002454 break;
2455
Alexander Duyck67a79df2012-04-19 17:49:56 +00002456 /* Autoneg flow control on copper adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002457 case ixgbe_media_type_copper:
Don Skidmore73d80953d2013-07-31 02:19:24 +00002458 if (ixgbe_device_supports_autoneg_fc(hw))
Alexander Duyck67a79df2012-04-19 17:49:56 +00002459 ret_val = ixgbe_fc_autoneg_copper(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002460 break;
2461
2462 default:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002463 break;
2464 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002465
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002466out:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002467 if (ret_val == 0) {
2468 hw->fc.fc_was_autonegged = true;
2469 } else {
2470 hw->fc.fc_was_autonegged = false;
2471 hw->fc.current_mode = hw->fc.requested_mode;
2472 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002473}
2474
2475/**
Don Skidmore1f86c982014-02-27 20:32:40 -08002476 * ixgbe_pcie_timeout_poll - Return number of times to poll for completion
2477 * @hw: pointer to hardware structure
2478 *
2479 * System-wide timeout range is encoded in PCIe Device Control2 register.
2480 *
2481 * Add 10% to specified maximum and return the number of times to poll for
2482 * completion timeout, in units of 100 microsec. Never return less than
2483 * 800 = 80 millisec.
2484 **/
2485static u32 ixgbe_pcie_timeout_poll(struct ixgbe_hw *hw)
2486{
Don Skidmore1f86c982014-02-27 20:32:40 -08002487 s16 devctl2;
2488 u32 pollcnt;
2489
Jacob Keller0d7c6e02014-02-22 01:23:58 +00002490 devctl2 = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2);
Don Skidmore1f86c982014-02-27 20:32:40 -08002491 devctl2 &= IXGBE_PCIDEVCTRL2_TIMEO_MASK;
2492
2493 switch (devctl2) {
2494 case IXGBE_PCIDEVCTRL2_65_130ms:
2495 pollcnt = 1300; /* 130 millisec */
2496 break;
2497 case IXGBE_PCIDEVCTRL2_260_520ms:
2498 pollcnt = 5200; /* 520 millisec */
2499 break;
2500 case IXGBE_PCIDEVCTRL2_1_2s:
2501 pollcnt = 20000; /* 2 sec */
2502 break;
2503 case IXGBE_PCIDEVCTRL2_4_8s:
2504 pollcnt = 80000; /* 8 sec */
2505 break;
2506 case IXGBE_PCIDEVCTRL2_17_34s:
2507 pollcnt = 34000; /* 34 sec */
2508 break;
2509 case IXGBE_PCIDEVCTRL2_50_100us: /* 100 microsecs */
2510 case IXGBE_PCIDEVCTRL2_1_2ms: /* 2 millisecs */
2511 case IXGBE_PCIDEVCTRL2_16_32ms: /* 32 millisec */
2512 case IXGBE_PCIDEVCTRL2_16_32ms_def: /* 32 millisec default */
2513 default:
2514 pollcnt = 800; /* 80 millisec minimum */
2515 break;
2516 }
2517
2518 /* add 10% to spec maximum */
2519 return (pollcnt * 11) / 10;
2520}
2521
2522/**
Auke Kok9a799d72007-09-15 14:07:45 -07002523 * ixgbe_disable_pcie_master - Disable PCI-express master access
2524 * @hw: pointer to hardware structure
2525 *
2526 * Disables PCI-Express master access and verifies there are no pending
2527 * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable
2528 * bit hasn't caused the master requests to be disabled, else 0
2529 * is returned signifying master requests disabled.
2530 **/
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002531static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002532{
Don Skidmore1f86c982014-02-27 20:32:40 -08002533 u32 i, poll;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002534 u16 value;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002535
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002536 /* Always set this bit to ensure any future transactions are blocked */
2537 IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS);
2538
Mark Rustad48b44612015-10-27 13:23:23 -07002539 /* Poll for bit to read as set */
2540 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
2541 if (IXGBE_READ_REG(hw, IXGBE_CTRL) & IXGBE_CTRL_GIO_DIS)
2542 break;
2543 usleep_range(100, 120);
2544 }
2545 if (i >= IXGBE_PCI_MASTER_DISABLE_TIMEOUT) {
2546 hw_dbg(hw, "GIO disable did not set - requesting resets\n");
2547 goto gio_disable_fail;
2548 }
2549
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002550 /* Exit if master requests are blocked */
Mark Rustad14438462014-02-28 15:48:57 -08002551 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO) ||
2552 ixgbe_removed(hw->hw_addr))
Mark Rustade90dd262014-07-22 06:51:08 +00002553 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002554
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002555 /* Poll for master request bit to clear */
Auke Kok9a799d72007-09-15 14:07:45 -07002556 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002557 udelay(100);
Emil Tantilova4297dc2011-02-14 08:45:13 +00002558 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO))
Mark Rustade90dd262014-07-22 06:51:08 +00002559 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002560 }
2561
Emil Tantilova4297dc2011-02-14 08:45:13 +00002562 /*
2563 * Two consecutive resets are required via CTRL.RST per datasheet
2564 * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine
2565 * of this need. The first reset prevents new master requests from
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002566 * being issued by our device. We then must wait 1usec or more for any
Emil Tantilova4297dc2011-02-14 08:45:13 +00002567 * remaining completions from the PCIe bus to trickle in, and then reset
2568 * again to clear out any effects they may have had on our device.
2569 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002570 hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n");
Mark Rustad48b44612015-10-27 13:23:23 -07002571gio_disable_fail:
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002572 hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
2573
Mark Rustad7fc15102015-08-08 16:19:14 -07002574 if (hw->mac.type >= ixgbe_mac_X550)
2575 return 0;
2576
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002577 /*
2578 * Before proceeding, make sure that the PCIe block does not have
2579 * transactions pending.
2580 */
Don Skidmore1f86c982014-02-27 20:32:40 -08002581 poll = ixgbe_pcie_timeout_poll(hw);
2582 for (i = 0; i < poll; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002583 udelay(100);
Mark Rustad14438462014-02-28 15:48:57 -08002584 value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS);
2585 if (ixgbe_removed(hw->hw_addr))
Mark Rustade90dd262014-07-22 06:51:08 +00002586 return 0;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002587 if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING))
Mark Rustade90dd262014-07-22 06:51:08 +00002588 return 0;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002589 }
2590
2591 hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n");
Mark Rustade90dd262014-07-22 06:51:08 +00002592 return IXGBE_ERR_MASTER_REQUESTS_PENDING;
Auke Kok9a799d72007-09-15 14:07:45 -07002593}
2594
Auke Kok9a799d72007-09-15 14:07:45 -07002595/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002596 * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore
Auke Kok9a799d72007-09-15 14:07:45 -07002597 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002598 * @mask: Mask to specify which semaphore to acquire
Auke Kok9a799d72007-09-15 14:07:45 -07002599 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002600 * Acquires the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002601 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2602 **/
Don Skidmore030eaec2014-11-29 05:22:37 +00002603s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u32 mask)
Auke Kok9a799d72007-09-15 14:07:45 -07002604{
Emil Tantilov674c18b2013-07-23 01:57:03 +00002605 u32 gssr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002606 u32 swmask = mask;
2607 u32 fwmask = mask << 5;
Emil Tantilov674c18b2013-07-23 01:57:03 +00002608 u32 timeout = 200;
2609 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002610
Emil Tantilov674c18b2013-07-23 01:57:03 +00002611 for (i = 0; i < timeout; i++) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002612 /*
Emil Tantilov674c18b2013-07-23 01:57:03 +00002613 * SW NVM semaphore bit is used for access to all
2614 * SW_FW_SYNC bits (not just NVM)
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002615 */
Auke Kok9a799d72007-09-15 14:07:45 -07002616 if (ixgbe_get_eeprom_semaphore(hw))
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002617 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002618
2619 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
Emil Tantilov674c18b2013-07-23 01:57:03 +00002620 if (!(gssr & (fwmask | swmask))) {
2621 gssr |= swmask;
2622 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2623 ixgbe_release_eeprom_semaphore(hw);
2624 return 0;
2625 } else {
2626 /* Resource is currently in use by FW or SW */
2627 ixgbe_release_eeprom_semaphore(hw);
2628 usleep_range(5000, 10000);
2629 }
Auke Kok9a799d72007-09-15 14:07:45 -07002630 }
2631
Emil Tantilov674c18b2013-07-23 01:57:03 +00002632 /* If time expired clear the bits holding the lock and retry */
2633 if (gssr & (fwmask | swmask))
2634 ixgbe_release_swfw_sync(hw, gssr & (fwmask | swmask));
Auke Kok9a799d72007-09-15 14:07:45 -07002635
Emil Tantilov674c18b2013-07-23 01:57:03 +00002636 usleep_range(5000, 10000);
2637 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002638}
2639
2640/**
2641 * ixgbe_release_swfw_sync - Release SWFW semaphore
2642 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002643 * @mask: Mask to specify which semaphore to release
Auke Kok9a799d72007-09-15 14:07:45 -07002644 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002645 * Releases the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002646 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2647 **/
Don Skidmore030eaec2014-11-29 05:22:37 +00002648void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u32 mask)
Auke Kok9a799d72007-09-15 14:07:45 -07002649{
2650 u32 gssr;
2651 u32 swmask = mask;
2652
2653 ixgbe_get_eeprom_semaphore(hw);
2654
2655 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2656 gssr &= ~swmask;
2657 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2658
2659 ixgbe_release_eeprom_semaphore(hw);
2660}
2661
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002662/**
Don Skidmore429d6a32014-02-27 20:32:41 -08002663 * prot_autoc_read_generic - Hides MAC differences needed for AUTOC read
2664 * @hw: pointer to hardware structure
2665 * @reg_val: Value we read from AUTOC
2666 * @locked: bool to indicate whether the SW/FW lock should be taken. Never
2667 * true in this the generic case.
2668 *
2669 * The default case requires no protection so just to the register read.
2670 **/
2671s32 prot_autoc_read_generic(struct ixgbe_hw *hw, bool *locked, u32 *reg_val)
2672{
2673 *locked = false;
2674 *reg_val = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2675 return 0;
2676}
2677
2678/**
2679 * prot_autoc_write_generic - Hides MAC differences needed for AUTOC write
2680 * @hw: pointer to hardware structure
2681 * @reg_val: value to write to AUTOC
2682 * @locked: bool to indicate whether the SW/FW lock was already taken by
2683 * previous read.
2684 **/
2685s32 prot_autoc_write_generic(struct ixgbe_hw *hw, u32 reg_val, bool locked)
2686{
2687 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_val);
2688 return 0;
2689}
2690
2691/**
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002692 * ixgbe_disable_rx_buff_generic - Stops the receive data path
2693 * @hw: pointer to hardware structure
2694 *
2695 * Stops the receive data path and waits for the HW to internally
2696 * empty the Rx security block.
2697 **/
2698s32 ixgbe_disable_rx_buff_generic(struct ixgbe_hw *hw)
2699{
2700#define IXGBE_MAX_SECRX_POLL 40
2701 int i;
2702 int secrxreg;
2703
2704 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2705 secrxreg |= IXGBE_SECRXCTRL_RX_DIS;
2706 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2707 for (i = 0; i < IXGBE_MAX_SECRX_POLL; i++) {
2708 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXSTAT);
2709 if (secrxreg & IXGBE_SECRXSTAT_SECRX_RDY)
2710 break;
2711 else
2712 /* Use interrupt-safe sleep just in case */
Jacob Kellerdb76ad42012-05-03 01:44:12 +00002713 udelay(1000);
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002714 }
2715
2716 /* For informational purposes only */
2717 if (i >= IXGBE_MAX_SECRX_POLL)
Jacob Keller6ec1b712014-04-09 06:03:13 +00002718 hw_dbg(hw, "Rx unit being enabled before security path fully disabled. Continuing with init.\n");
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002719
2720 return 0;
2721
2722}
2723
2724/**
2725 * ixgbe_enable_rx_buff - Enables the receive data path
2726 * @hw: pointer to hardware structure
2727 *
2728 * Enables the receive data path
2729 **/
2730s32 ixgbe_enable_rx_buff_generic(struct ixgbe_hw *hw)
2731{
Don Skidmore310ea122016-06-14 14:26:28 -04002732 u32 secrxreg;
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002733
2734 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2735 secrxreg &= ~IXGBE_SECRXCTRL_RX_DIS;
2736 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2737 IXGBE_WRITE_FLUSH(hw);
2738
2739 return 0;
2740}
2741
2742/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002743 * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit
2744 * @hw: pointer to hardware structure
2745 * @regval: register value to write to RXCTRL
2746 *
2747 * Enables the Rx DMA unit
2748 **/
2749s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval)
2750{
Don Skidmore1f9ac572015-03-13 13:54:30 -07002751 if (regval & IXGBE_RXCTRL_RXEN)
2752 hw->mac.ops.enable_rx(hw);
2753 else
2754 hw->mac.ops.disable_rx(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002755
2756 return 0;
2757}
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002758
2759/**
2760 * ixgbe_blink_led_start_generic - Blink LED based on index.
2761 * @hw: pointer to hardware structure
2762 * @index: led number to blink
2763 **/
2764s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index)
2765{
2766 ixgbe_link_speed speed = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002767 bool link_up = false;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002768 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2769 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmore429d6a32014-02-27 20:32:41 -08002770 bool locked = false;
Mark Rustade90dd262014-07-22 06:51:08 +00002771 s32 ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002772
Don Skidmore003287e2016-06-17 17:10:13 -04002773 if (index > 3)
2774 return IXGBE_ERR_PARAM;
2775
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002776 /*
2777 * Link must be up to auto-blink the LEDs;
2778 * Force it if link is down.
2779 */
2780 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2781
2782 if (!link_up) {
Don Skidmore429d6a32014-02-27 20:32:41 -08002783 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002784 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002785 return ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002786
Peter P Waskiewicz Jr50ac58b2009-06-04 11:10:53 +00002787 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002788 autoc_reg |= IXGBE_AUTOC_FLU;
Don Skidmore429d6a32014-02-27 20:32:41 -08002789
2790 ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002791 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002792 return ret_val;
Don Skidmore429d6a32014-02-27 20:32:41 -08002793
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002794 IXGBE_WRITE_FLUSH(hw);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002795
Don Skidmore032b4322011-03-18 09:32:53 +00002796 usleep_range(10000, 20000);
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002797 }
2798
2799 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2800 led_reg |= IXGBE_LED_BLINK(index);
2801 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2802 IXGBE_WRITE_FLUSH(hw);
2803
Mark Rustade90dd262014-07-22 06:51:08 +00002804 return 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002805}
2806
2807/**
2808 * ixgbe_blink_led_stop_generic - Stop blinking LED based on index.
2809 * @hw: pointer to hardware structure
2810 * @index: led number to stop blinking
2811 **/
2812s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index)
2813{
Don Skidmore429d6a32014-02-27 20:32:41 -08002814 u32 autoc_reg = 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002815 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmore429d6a32014-02-27 20:32:41 -08002816 bool locked = false;
Mark Rustade90dd262014-07-22 06:51:08 +00002817 s32 ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002818
Don Skidmore003287e2016-06-17 17:10:13 -04002819 if (index > 3)
2820 return IXGBE_ERR_PARAM;
2821
Don Skidmore429d6a32014-02-27 20:32:41 -08002822 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002823 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002824 return ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002825
2826 autoc_reg &= ~IXGBE_AUTOC_FLU;
2827 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002828
Don Skidmore429d6a32014-02-27 20:32:41 -08002829 ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002830 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002831 return ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002832
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002833 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2834 led_reg &= ~IXGBE_LED_BLINK(index);
2835 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
2836 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2837 IXGBE_WRITE_FLUSH(hw);
2838
Mark Rustade90dd262014-07-22 06:51:08 +00002839 return 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002840}
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002841
2842/**
2843 * ixgbe_get_san_mac_addr_offset - Get SAN MAC address offset from the EEPROM
2844 * @hw: pointer to hardware structure
2845 * @san_mac_offset: SAN MAC address offset
2846 *
2847 * This function will read the EEPROM location for the SAN MAC address
2848 * pointer, and returns the value at that location. This is used in both
2849 * get and set mac_addr routines.
2850 **/
2851static s32 ixgbe_get_san_mac_addr_offset(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002852 u16 *san_mac_offset)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002853{
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002854 s32 ret_val;
2855
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002856 /*
2857 * First read the EEPROM pointer to see if the MAC addresses are
2858 * available.
2859 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002860 ret_val = hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR,
2861 san_mac_offset);
2862 if (ret_val)
2863 hw_err(hw, "eeprom read at offset %d failed\n",
2864 IXGBE_SAN_MAC_ADDR_PTR);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002865
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002866 return ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002867}
2868
2869/**
2870 * ixgbe_get_san_mac_addr_generic - SAN MAC address retrieval from the EEPROM
2871 * @hw: pointer to hardware structure
2872 * @san_mac_addr: SAN MAC address
2873 *
2874 * Reads the SAN MAC address from the EEPROM, if it's available. This is
2875 * per-port, so set_lan_id() must be called before reading the addresses.
2876 * set_lan_id() is called by identify_sfp(), but this cannot be relied
2877 * upon for non-SFP connections, so we must call it here.
2878 **/
2879s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr)
2880{
2881 u16 san_mac_data, san_mac_offset;
2882 u8 i;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002883 s32 ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002884
2885 /*
2886 * First read the EEPROM pointer to see if the MAC addresses are
2887 * available. If they're not, no point in calling set_lan_id() here.
2888 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002889 ret_val = ixgbe_get_san_mac_addr_offset(hw, &san_mac_offset);
2890 if (ret_val || san_mac_offset == 0 || san_mac_offset == 0xFFFF)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002891
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002892 goto san_mac_addr_clr;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002893
2894 /* make sure we know which port we need to program */
2895 hw->mac.ops.set_lan_id(hw);
2896 /* apply the port offset to the address offset */
2897 (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) :
Jacob Kellere7cf7452014-04-09 06:03:10 +00002898 (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002899 for (i = 0; i < 3; i++) {
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002900 ret_val = hw->eeprom.ops.read(hw, san_mac_offset,
2901 &san_mac_data);
2902 if (ret_val) {
2903 hw_err(hw, "eeprom read at offset %d failed\n",
2904 san_mac_offset);
2905 goto san_mac_addr_clr;
2906 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002907 san_mac_addr[i * 2] = (u8)(san_mac_data);
2908 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
2909 san_mac_offset++;
2910 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002911 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002912
2913san_mac_addr_clr:
2914 /* No addresses available in this EEPROM. It's not necessarily an
2915 * error though, so just wipe the local address and return.
2916 */
2917 for (i = 0; i < 6; i++)
2918 san_mac_addr[i] = 0xFF;
2919 return ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002920}
2921
2922/**
2923 * ixgbe_get_pcie_msix_count_generic - Gets MSI-X vector count
2924 * @hw: pointer to hardware structure
2925 *
2926 * Read PCIe configuration space, and get the MSI-X vector count from
2927 * the capabilities table.
2928 **/
Emil Tantilov71161302012-03-22 03:00:29 +00002929u16 ixgbe_get_pcie_msix_count_generic(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002930{
Mark Rustade90dd262014-07-22 06:51:08 +00002931 u16 msix_count;
Emil Tantilov71161302012-03-22 03:00:29 +00002932 u16 max_msix_count;
2933 u16 pcie_offset;
2934
2935 switch (hw->mac.type) {
2936 case ixgbe_mac_82598EB:
2937 pcie_offset = IXGBE_PCIE_MSIX_82598_CAPS;
2938 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82598;
2939 break;
2940 case ixgbe_mac_82599EB:
2941 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002942 case ixgbe_mac_X550:
2943 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002944 case ixgbe_mac_x550em_a:
Emil Tantilov71161302012-03-22 03:00:29 +00002945 pcie_offset = IXGBE_PCIE_MSIX_82599_CAPS;
2946 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82599;
2947 break;
2948 default:
Mark Rustade90dd262014-07-22 06:51:08 +00002949 return 1;
Emil Tantilov71161302012-03-22 03:00:29 +00002950 }
2951
Mark Rustad14438462014-02-28 15:48:57 -08002952 msix_count = ixgbe_read_pci_cfg_word(hw, pcie_offset);
2953 if (ixgbe_removed(hw->hw_addr))
2954 msix_count = 0;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002955 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
2956
Emil Tantilov71161302012-03-22 03:00:29 +00002957 /* MSI-X count is zero-based in HW */
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002958 msix_count++;
2959
Emil Tantilov71161302012-03-22 03:00:29 +00002960 if (msix_count > max_msix_count)
2961 msix_count = max_msix_count;
2962
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002963 return msix_count;
2964}
2965
2966/**
2967 * ixgbe_clear_vmdq_generic - Disassociate a VMDq pool index from a rx address
2968 * @hw: pointer to hardware struct
2969 * @rar: receive address register index to disassociate
2970 * @vmdq: VMDq pool index to remove from the rar
2971 **/
2972s32 ixgbe_clear_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2973{
2974 u32 mpsar_lo, mpsar_hi;
2975 u32 rar_entries = hw->mac.num_rar_entries;
2976
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002977 /* Make sure we are using a valid rar index range */
2978 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002979 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002980 return IXGBE_ERR_INVALID_ARGUMENT;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002981 }
2982
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002983 mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2984 mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2985
Mark Rustad19458bd2014-03-01 05:21:00 +00002986 if (ixgbe_removed(hw->hw_addr))
Mark Rustade90dd262014-07-22 06:51:08 +00002987 return 0;
Mark Rustad19458bd2014-03-01 05:21:00 +00002988
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002989 if (!mpsar_lo && !mpsar_hi)
Mark Rustade90dd262014-07-22 06:51:08 +00002990 return 0;
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002991
2992 if (vmdq == IXGBE_CLEAR_VMDQ_ALL) {
2993 if (mpsar_lo) {
2994 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2995 mpsar_lo = 0;
2996 }
2997 if (mpsar_hi) {
2998 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2999 mpsar_hi = 0;
3000 }
3001 } else if (vmdq < 32) {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003002 mpsar_lo &= ~BIT(vmdq);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003003 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo);
3004 } else {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003005 mpsar_hi &= ~BIT(vmdq - 32);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003006 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi);
3007 }
3008
3009 /* was that the last pool using this rar? */
Alexander Duyckc10ac752016-08-19 20:58:26 -07003010 if (mpsar_lo == 0 && mpsar_hi == 0 &&
3011 rar != 0 && rar != hw->mac.san_mac_rar_index)
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003012 hw->mac.ops.clear_rar(hw, rar);
Alexander Duyckc10ac752016-08-19 20:58:26 -07003013
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003014 return 0;
3015}
3016
3017/**
3018 * ixgbe_set_vmdq_generic - Associate a VMDq pool index with a rx address
3019 * @hw: pointer to hardware struct
3020 * @rar: receive address register index to associate with a VMDq index
3021 * @vmdq: VMDq pool index
3022 **/
3023s32 ixgbe_set_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
3024{
3025 u32 mpsar;
3026 u32 rar_entries = hw->mac.num_rar_entries;
3027
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003028 /* Make sure we are using a valid rar index range */
3029 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003030 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003031 return IXGBE_ERR_INVALID_ARGUMENT;
3032 }
3033
3034 if (vmdq < 32) {
3035 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003036 mpsar |= BIT(vmdq);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003037 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar);
3038 } else {
3039 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003040 mpsar |= BIT(vmdq - 32);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00003041 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003042 }
3043 return 0;
3044}
3045
3046/**
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00003047 * This function should only be involved in the IOV mode.
3048 * In IOV mode, Default pool is next pool after the number of
3049 * VFs advertized and not 0.
3050 * MPSAR table needs to be updated for SAN_MAC RAR [hw->mac.san_mac_rar_index]
3051 *
3052 * ixgbe_set_vmdq_san_mac - Associate default VMDq pool index with a rx address
3053 * @hw: pointer to hardware struct
3054 * @vmdq: VMDq pool index
3055 **/
3056s32 ixgbe_set_vmdq_san_mac_generic(struct ixgbe_hw *hw, u32 vmdq)
3057{
3058 u32 rar = hw->mac.san_mac_rar_index;
3059
3060 if (vmdq < 32) {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003061 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), BIT(vmdq));
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00003062 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
3063 } else {
3064 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003065 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), BIT(vmdq - 32));
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00003066 }
3067
3068 return 0;
3069}
3070
3071/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003072 * ixgbe_init_uta_tables_generic - Initialize the Unicast Table Array
3073 * @hw: pointer to hardware structure
3074 **/
3075s32 ixgbe_init_uta_tables_generic(struct ixgbe_hw *hw)
3076{
3077 int i;
3078
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003079 for (i = 0; i < 128; i++)
3080 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
3081
3082 return 0;
3083}
3084
3085/**
3086 * ixgbe_find_vlvf_slot - find the vlanid or the first empty slot
3087 * @hw: pointer to hardware structure
3088 * @vlan: VLAN id to write to VLAN filter
3089 *
3090 * return the VLVF index where this VLAN id should be placed
3091 *
3092 **/
Alexander Duyckb6488b62015-11-02 17:10:01 -08003093static s32 ixgbe_find_vlvf_slot(struct ixgbe_hw *hw, u32 vlan, bool vlvf_bypass)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003094{
Alexander Duyckb6488b62015-11-02 17:10:01 -08003095 s32 regindex, first_empty_slot;
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003096 u32 bits;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003097
3098 /* short cut the special case */
3099 if (vlan == 0)
3100 return 0;
3101
Alexander Duyckb6488b62015-11-02 17:10:01 -08003102 /* if vlvf_bypass is set we don't want to use an empty slot, we
3103 * will simply bypass the VLVF if there are no entries present in the
3104 * VLVF that contain our VLAN
3105 */
3106 first_empty_slot = vlvf_bypass ? IXGBE_ERR_NO_SPACE : 0;
3107
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003108 /* add VLAN enable bit for comparison */
3109 vlan |= IXGBE_VLVF_VIEN;
3110
3111 /* Search for the vlan id in the VLVF entries. Save off the first empty
3112 * slot found along the way.
3113 *
3114 * pre-decrement loop covering (IXGBE_VLVF_ENTRIES - 1) .. 1
3115 */
3116 for (regindex = IXGBE_VLVF_ENTRIES; --regindex;) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003117 bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003118 if (bits == vlan)
3119 return regindex;
3120 if (!first_empty_slot && !bits)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003121 first_empty_slot = regindex;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003122 }
3123
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003124 /* If we are here then we didn't find the VLAN. Return first empty
3125 * slot we found during our search, else error.
3126 */
3127 if (!first_empty_slot)
3128 hw_dbg(hw, "No space in VLVF.\n");
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003129
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003130 return first_empty_slot ? : IXGBE_ERR_NO_SPACE;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003131}
3132
3133/**
3134 * ixgbe_set_vfta_generic - Set VLAN filter table
3135 * @hw: pointer to hardware structure
3136 * @vlan: VLAN id to write to VLAN filter
3137 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
3138 * @vlan_on: boolean flag to turn on/off VLAN in VFVF
Alexander Duyckb6488b62015-11-02 17:10:01 -08003139 * @vlvf_bypass: boolean flag indicating updating default pool is okay
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003140 *
3141 * Turn on/off specified VLAN in the VLAN filter table.
3142 **/
3143s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
Alexander Duyckb6488b62015-11-02 17:10:01 -08003144 bool vlan_on, bool vlvf_bypass)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003145{
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003146 u32 regidx, vfta_delta, vfta, bits;
Alexander Duyck63d93792015-11-02 17:09:48 -08003147 s32 vlvf_index;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003148
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003149 if ((vlan > 4095) || (vind > 63))
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003150 return IXGBE_ERR_PARAM;
3151
3152 /*
3153 * this is a 2 part operation - first the VFTA, then the
3154 * VLVF and VLVFB if VT Mode is set
3155 * We don't write the VFTA until we know the VLVF part succeeded.
3156 */
3157
3158 /* Part 1
3159 * The VFTA is a bitstring made up of 128 32-bit registers
3160 * that enable the particular VLAN id, much like the MTA:
3161 * bits[11-5]: which register
3162 * bits[4-0]: which bit in the register
3163 */
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003164 regidx = vlan / 32;
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003165 vfta_delta = BIT(vlan % 32);
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003166 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(regidx));
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003167
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003168 /* vfta_delta represents the difference between the current value
3169 * of vfta and the value we want in the register. Since the diff
3170 * is an XOR mask we can just update vfta using an XOR.
3171 */
3172 vfta_delta &= vlan_on ? ~vfta : vfta;
3173 vfta ^= vfta_delta;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003174
3175 /* Part 2
3176 * If VT Mode is set
3177 * Either vlan_on
3178 * make sure the vlan is in VLVF
3179 * set the vind bit in the matching VLVFB
3180 * Or !vlan_on
3181 * clear the pool bit and possibly the vind
3182 */
Alexander Duyck63d93792015-11-02 17:09:48 -08003183 if (!(IXGBE_READ_REG(hw, IXGBE_VT_CTL) & IXGBE_VT_CTL_VT_ENABLE))
3184 goto vfta_update;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003185
Alexander Duyckb6488b62015-11-02 17:10:01 -08003186 vlvf_index = ixgbe_find_vlvf_slot(hw, vlan, vlvf_bypass);
3187 if (vlvf_index < 0) {
3188 if (vlvf_bypass)
3189 goto vfta_update;
Alexander Duyck63d93792015-11-02 17:09:48 -08003190 return vlvf_index;
Alexander Duyckb6488b62015-11-02 17:10:01 -08003191 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003192
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003193 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32));
3194
3195 /* set the pool bit */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003196 bits |= BIT(vind % 32);
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003197 if (vlan_on)
3198 goto vlvf_update;
3199
3200 /* clear the pool bit */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003201 bits ^= BIT(vind % 32);
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003202
3203 if (!bits &&
3204 !IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + 1 - vind / 32))) {
3205 /* Clear VFTA first, then disable VLVF. Otherwise
3206 * we run the risk of stray packets leaking into
3207 * the PF via the default pool
3208 */
3209 if (vfta_delta)
3210 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regidx), vfta);
3211
3212 /* disable VLVF and clear remaining bit from pool */
3213 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), 0);
3214 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), 0);
3215
3216 return 0;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003217 }
3218
Alexander Duyck63d93792015-11-02 17:09:48 -08003219 /* If there are still bits set in the VLVFB registers
3220 * for the VLAN ID indicated we need to see if the
3221 * caller is requesting that we clear the VFTA entry bit.
3222 * If the caller has requested that we clear the VFTA
3223 * entry bit but there are still pools/VFs using this VLAN
3224 * ID entry then ignore the request. We're not worried
3225 * about the case where we're turning the VFTA VLAN ID
3226 * entry bit on, only when requested to turn it off as
3227 * there may be multiple pools and/or VFs using the
3228 * VLAN ID entry. In that case we cannot clear the
3229 * VFTA bit until all pools/VFs using that VLAN ID have also
3230 * been cleared. This will be indicated by "bits" being
3231 * zero.
3232 */
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003233 vfta_delta = 0;
Alexander Duyck63d93792015-11-02 17:09:48 -08003234
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003235vlvf_update:
3236 /* record pool change and enable VLAN ID if not already enabled */
3237 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), bits);
3238 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), IXGBE_VLVF_VIEN | vlan);
Alexander Duyck63d93792015-11-02 17:09:48 -08003239
3240vfta_update:
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003241 /* Update VFTA now that we are ready for traffic */
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003242 if (vfta_delta)
3243 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regidx), vfta);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003244
3245 return 0;
3246}
3247
3248/**
3249 * ixgbe_clear_vfta_generic - Clear VLAN filter table
3250 * @hw: pointer to hardware structure
3251 *
3252 * Clears the VLAN filer table, and the VMDq index associated with the filter
3253 **/
3254s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw)
3255{
3256 u32 offset;
3257
3258 for (offset = 0; offset < hw->mac.vft_size; offset++)
3259 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
3260
3261 for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) {
3262 IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0);
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003263 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2), 0);
3264 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2 + 1), 0);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003265 }
3266
3267 return 0;
3268}
3269
3270/**
Don Skidmoreaac9e052016-07-19 19:43:28 -04003271 * ixgbe_need_crosstalk_fix - Determine if we need to do cross talk fix
3272 * @hw: pointer to hardware structure
3273 *
3274 * Contains the logic to identify if we need to verify link for the
3275 * crosstalk fix
3276 **/
3277static bool ixgbe_need_crosstalk_fix(struct ixgbe_hw *hw)
3278{
3279 /* Does FW say we need the fix */
3280 if (!hw->need_crosstalk_fix)
3281 return false;
3282
3283 /* Only consider SFP+ PHYs i.e. media type fiber */
3284 switch (hw->mac.ops.get_media_type(hw)) {
3285 case ixgbe_media_type_fiber:
3286 case ixgbe_media_type_fiber_qsfp:
3287 break;
3288 default:
3289 return false;
3290 }
3291
3292 return true;
3293}
3294
3295/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003296 * ixgbe_check_mac_link_generic - Determine link and speed status
3297 * @hw: pointer to hardware structure
3298 * @speed: pointer to link speed
3299 * @link_up: true when link is up
3300 * @link_up_wait_to_complete: bool used to wait for link up or not
3301 *
3302 * Reads the links register to determine if link is up and the current speed
3303 **/
3304s32 ixgbe_check_mac_link_generic(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
Emil Tantilov8c7bea32011-02-19 08:43:44 +00003305 bool *link_up, bool link_up_wait_to_complete)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003306{
Emil Tantilov48de36c2011-02-16 01:38:08 +00003307 u32 links_reg, links_orig;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003308 u32 i;
3309
Don Skidmoreaac9e052016-07-19 19:43:28 -04003310 /* If Crosstalk fix enabled do the sanity check of making sure
3311 * the SFP+ cage is full.
3312 */
3313 if (ixgbe_need_crosstalk_fix(hw)) {
3314 u32 sfp_cage_full;
3315
3316 switch (hw->mac.type) {
3317 case ixgbe_mac_82599EB:
3318 sfp_cage_full = IXGBE_READ_REG(hw, IXGBE_ESDP) &
3319 IXGBE_ESDP_SDP2;
3320 break;
3321 case ixgbe_mac_X550EM_x:
3322 case ixgbe_mac_x550em_a:
3323 sfp_cage_full = IXGBE_READ_REG(hw, IXGBE_ESDP) &
3324 IXGBE_ESDP_SDP0;
3325 break;
3326 default:
3327 /* sanity check - No SFP+ devices here */
3328 sfp_cage_full = false;
3329 break;
3330 }
3331
3332 if (!sfp_cage_full) {
3333 *link_up = false;
3334 *speed = IXGBE_LINK_SPEED_UNKNOWN;
3335 return 0;
3336 }
3337 }
3338
Emil Tantilov48de36c2011-02-16 01:38:08 +00003339 /* clear the old state */
3340 links_orig = IXGBE_READ_REG(hw, IXGBE_LINKS);
3341
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003342 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Emil Tantilov48de36c2011-02-16 01:38:08 +00003343
3344 if (links_orig != links_reg) {
3345 hw_dbg(hw, "LINKS changed from %08X to %08X\n",
3346 links_orig, links_reg);
3347 }
3348
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003349 if (link_up_wait_to_complete) {
3350 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
3351 if (links_reg & IXGBE_LINKS_UP) {
3352 *link_up = true;
3353 break;
3354 } else {
3355 *link_up = false;
3356 }
3357 msleep(100);
3358 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
3359 }
3360 } else {
3361 if (links_reg & IXGBE_LINKS_UP)
3362 *link_up = true;
3363 else
3364 *link_up = false;
3365 }
3366
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003367 switch (links_reg & IXGBE_LINKS_SPEED_82599) {
3368 case IXGBE_LINKS_SPEED_10G_82599:
3369 if ((hw->mac.type >= ixgbe_mac_X550) &&
3370 (links_reg & IXGBE_LINKS_SPEED_NON_STD))
3371 *speed = IXGBE_LINK_SPEED_2_5GB_FULL;
3372 else
3373 *speed = IXGBE_LINK_SPEED_10GB_FULL;
3374 break;
3375 case IXGBE_LINKS_SPEED_1G_82599:
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003376 *speed = IXGBE_LINK_SPEED_1GB_FULL;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003377 break;
3378 case IXGBE_LINKS_SPEED_100_82599:
3379 if ((hw->mac.type >= ixgbe_mac_X550) &&
3380 (links_reg & IXGBE_LINKS_SPEED_NON_STD))
3381 *speed = IXGBE_LINK_SPEED_5GB_FULL;
3382 else
3383 *speed = IXGBE_LINK_SPEED_100_FULL;
3384 break;
3385 default:
Emil Tantilov63d778d2011-02-19 08:43:39 +00003386 *speed = IXGBE_LINK_SPEED_UNKNOWN;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003387 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003388
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003389 return 0;
3390}
Don Skidmorea391f1d2010-11-16 19:27:15 -08003391
3392/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003393 * ixgbe_get_wwn_prefix_generic - Get alternative WWNN/WWPN prefix from
Don Skidmorea391f1d2010-11-16 19:27:15 -08003394 * the EEPROM
3395 * @hw: pointer to hardware structure
3396 * @wwnn_prefix: the alternative WWNN prefix
3397 * @wwpn_prefix: the alternative WWPN prefix
3398 *
3399 * This function will read the EEPROM from the alternative SAN MAC address
3400 * block to check the support for the alternative WWNN/WWPN prefix support.
3401 **/
3402s32 ixgbe_get_wwn_prefix_generic(struct ixgbe_hw *hw, u16 *wwnn_prefix,
Jacob Kellere7cf7452014-04-09 06:03:10 +00003403 u16 *wwpn_prefix)
Don Skidmorea391f1d2010-11-16 19:27:15 -08003404{
3405 u16 offset, caps;
3406 u16 alt_san_mac_blk_offset;
3407
3408 /* clear output first */
3409 *wwnn_prefix = 0xFFFF;
3410 *wwpn_prefix = 0xFFFF;
3411
3412 /* check if alternative SAN MAC is supported */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003413 offset = IXGBE_ALT_SAN_MAC_ADDR_BLK_PTR;
3414 if (hw->eeprom.ops.read(hw, offset, &alt_san_mac_blk_offset))
3415 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003416
3417 if ((alt_san_mac_blk_offset == 0) ||
3418 (alt_san_mac_blk_offset == 0xFFFF))
Mark Rustade90dd262014-07-22 06:51:08 +00003419 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003420
3421 /* check capability in alternative san mac address block */
3422 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_CAPS_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003423 if (hw->eeprom.ops.read(hw, offset, &caps))
3424 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003425 if (!(caps & IXGBE_ALT_SAN_MAC_ADDR_CAPS_ALTWWN))
Mark Rustade90dd262014-07-22 06:51:08 +00003426 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003427
3428 /* get the corresponding prefix for WWNN/WWPN */
3429 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWNN_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003430 if (hw->eeprom.ops.read(hw, offset, wwnn_prefix))
3431 hw_err(hw, "eeprom read at offset %d failed\n", offset);
Don Skidmorea391f1d2010-11-16 19:27:15 -08003432
3433 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWPN_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003434 if (hw->eeprom.ops.read(hw, offset, wwpn_prefix))
3435 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003436
Don Skidmorea391f1d2010-11-16 19:27:15 -08003437 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003438
3439wwn_prefix_err:
3440 hw_err(hw, "eeprom read at offset %d failed\n", offset);
3441 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003442}
Greg Rosea985b6c32010-11-18 03:02:52 +00003443
3444/**
3445 * ixgbe_set_mac_anti_spoofing - Enable/Disable MAC anti-spoofing
3446 * @hw: pointer to hardware structure
Emil Tantilov77f192a2016-03-18 16:11:14 -07003447 * @enable: enable or disable switch for MAC anti-spoofing
3448 * @vf: Virtual Function pool - VF Pool to set for MAC anti-spoofing
Greg Rosea985b6c32010-11-18 03:02:52 +00003449 *
3450 **/
Emil Tantilov77f192a2016-03-18 16:11:14 -07003451void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
Greg Rosea985b6c32010-11-18 03:02:52 +00003452{
Emil Tantilov77f192a2016-03-18 16:11:14 -07003453 int vf_target_reg = vf >> 3;
3454 int vf_target_shift = vf % 8;
3455 u32 pfvfspoof;
Greg Rosea985b6c32010-11-18 03:02:52 +00003456
3457 if (hw->mac.type == ixgbe_mac_82598EB)
3458 return;
3459
Emil Tantilov77f192a2016-03-18 16:11:14 -07003460 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
Greg Rosea985b6c32010-11-18 03:02:52 +00003461 if (enable)
Emil Tantilov77f192a2016-03-18 16:11:14 -07003462 pfvfspoof |= BIT(vf_target_shift);
3463 else
3464 pfvfspoof &= ~BIT(vf_target_shift);
3465 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
Greg Rosea985b6c32010-11-18 03:02:52 +00003466}
3467
3468/**
3469 * ixgbe_set_vlan_anti_spoofing - Enable/Disable VLAN anti-spoofing
3470 * @hw: pointer to hardware structure
3471 * @enable: enable or disable switch for VLAN anti-spoofing
3472 * @pf: Virtual Function pool - VF Pool to set for VLAN anti-spoofing
3473 *
3474 **/
3475void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
3476{
3477 int vf_target_reg = vf >> 3;
3478 int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT;
3479 u32 pfvfspoof;
3480
3481 if (hw->mac.type == ixgbe_mac_82598EB)
3482 return;
3483
3484 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
3485 if (enable)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003486 pfvfspoof |= BIT(vf_target_shift);
Greg Rosea985b6c32010-11-18 03:02:52 +00003487 else
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003488 pfvfspoof &= ~BIT(vf_target_shift);
Greg Rosea985b6c32010-11-18 03:02:52 +00003489 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
3490}
Emil Tantilovb776d102011-03-31 09:36:18 +00003491
3492/**
3493 * ixgbe_get_device_caps_generic - Get additional device capabilities
3494 * @hw: pointer to hardware structure
3495 * @device_caps: the EEPROM word with the extra device capabilities
3496 *
3497 * This function will read the EEPROM location for the device capabilities,
3498 * and return the word through device_caps.
3499 **/
3500s32 ixgbe_get_device_caps_generic(struct ixgbe_hw *hw, u16 *device_caps)
3501{
3502 hw->eeprom.ops.read(hw, IXGBE_DEVICE_CAPS, device_caps);
3503
3504 return 0;
3505}
John Fastabend80605c652011-05-02 12:34:10 +00003506
3507/**
3508 * ixgbe_set_rxpba_generic - Initialize RX packet buffer
3509 * @hw: pointer to hardware structure
3510 * @num_pb: number of packet buffers to allocate
3511 * @headroom: reserve n KB of headroom
3512 * @strategy: packet buffer allocation strategy
3513 **/
3514void ixgbe_set_rxpba_generic(struct ixgbe_hw *hw,
3515 int num_pb,
3516 u32 headroom,
3517 int strategy)
3518{
3519 u32 pbsize = hw->mac.rx_pb_size;
3520 int i = 0;
3521 u32 rxpktsize, txpktsize, txpbthresh;
3522
3523 /* Reserve headroom */
3524 pbsize -= headroom;
3525
3526 if (!num_pb)
3527 num_pb = 1;
3528
3529 /* Divide remaining packet buffer space amongst the number
3530 * of packet buffers requested using supplied strategy.
3531 */
3532 switch (strategy) {
3533 case (PBA_STRATEGY_WEIGHTED):
3534 /* pba_80_48 strategy weight first half of packet buffer with
3535 * 5/8 of the packet buffer space.
3536 */
3537 rxpktsize = ((pbsize * 5 * 2) / (num_pb * 8));
3538 pbsize -= rxpktsize * (num_pb / 2);
3539 rxpktsize <<= IXGBE_RXPBSIZE_SHIFT;
3540 for (; i < (num_pb / 2); i++)
3541 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3542 /* Fall through to configure remaining packet buffers */
3543 case (PBA_STRATEGY_EQUAL):
3544 /* Divide the remaining Rx packet buffer evenly among the TCs */
3545 rxpktsize = (pbsize / (num_pb - i)) << IXGBE_RXPBSIZE_SHIFT;
3546 for (; i < num_pb; i++)
3547 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3548 break;
3549 default:
3550 break;
3551 }
3552
3553 /*
3554 * Setup Tx packet buffer and threshold equally for all TCs
3555 * TXPBTHRESH register is set in K so divide by 1024 and subtract
3556 * 10 since the largest packet we support is just over 9K.
3557 */
3558 txpktsize = IXGBE_TXPBSIZE_MAX / num_pb;
3559 txpbthresh = (txpktsize / 1024) - IXGBE_TXPKT_SIZE_MAX;
3560 for (i = 0; i < num_pb; i++) {
3561 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
3562 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
3563 }
3564
3565 /* Clear unused TCs, if any, to zero buffer size*/
3566 for (; i < IXGBE_MAX_PB; i++) {
3567 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
3568 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
3569 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
3570 }
3571}
Emil Tantilov9612de92011-05-07 07:40:20 +00003572
3573/**
3574 * ixgbe_calculate_checksum - Calculate checksum for buffer
3575 * @buffer: pointer to EEPROM
3576 * @length: size of EEPROM to calculate a checksum for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003577 *
Emil Tantilov9612de92011-05-07 07:40:20 +00003578 * Calculates the checksum for some buffer on a specified length. The
3579 * checksum calculated is returned.
3580 **/
Tony Nguyencb8e0512016-10-26 16:25:18 -07003581u8 ixgbe_calculate_checksum(u8 *buffer, u32 length)
Emil Tantilov9612de92011-05-07 07:40:20 +00003582{
3583 u32 i;
3584 u8 sum = 0;
3585
3586 if (!buffer)
3587 return 0;
3588
3589 for (i = 0; i < length; i++)
3590 sum += buffer[i];
3591
3592 return (u8) (0 - sum);
3593}
3594
3595/**
3596 * ixgbe_host_interface_command - Issue command to manageability block
3597 * @hw: pointer to the HW structure
3598 * @buffer: contains the command to write and where the return status will
3599 * be placed
Don Skidmorec466d7a2012-02-28 06:35:54 +00003600 * @length: length of buffer, must be multiple of 4 bytes
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003601 * @timeout: time in ms to wait for command completion
3602 * @return_data: read and return data from the buffer (true) or not (false)
3603 * Needed because FW structures are big endian and decoding of
3604 * these fields can be 8 bit or 16 bit based on command. Decoding
3605 * is not easily understood without making a table of commands.
3606 * So we will leave this up to the caller to read back the data
3607 * in these cases.
Emil Tantilov9612de92011-05-07 07:40:20 +00003608 *
3609 * Communicates with the manageability block. On success return 0
3610 * else return IXGBE_ERR_HOST_INTERFACE_COMMAND.
3611 **/
Mark Rustad5cffde32016-03-14 11:05:57 -07003612s32 ixgbe_host_interface_command(struct ixgbe_hw *hw, void *buffer,
Don Skidmore6a14ee02014-12-05 03:59:50 +00003613 u32 length, u32 timeout,
3614 bool return_data)
Emil Tantilov9612de92011-05-07 07:40:20 +00003615{
Emil Tantilov9612de92011-05-07 07:40:20 +00003616 u32 hdr_size = sizeof(struct ixgbe_hic_hdr);
Mark Rustad5cffde32016-03-14 11:05:57 -07003617 u32 hicr, i, bi, fwsts;
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003618 u16 buf_len, dword_len;
Mark Rustad5cffde32016-03-14 11:05:57 -07003619 union {
3620 struct ixgbe_hic_hdr hdr;
3621 u32 u32arr[1];
3622 } *bp = buffer;
Mark Rustadaf741902016-03-14 11:06:02 -07003623 s32 status;
Emil Tantilov9612de92011-05-07 07:40:20 +00003624
Mark Rustad5cffde32016-03-14 11:05:57 -07003625 if (!length || length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) {
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003626 hw_dbg(hw, "Buffer length failure buffersize-%d.\n", length);
Mark Rustade90dd262014-07-22 06:51:08 +00003627 return IXGBE_ERR_HOST_INTERFACE_COMMAND;
Emil Tantilov9612de92011-05-07 07:40:20 +00003628 }
Mark Rustadaf741902016-03-14 11:06:02 -07003629 /* Take management host interface semaphore */
3630 status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM);
3631 if (status)
3632 return status;
Emil Tantilov9612de92011-05-07 07:40:20 +00003633
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003634 /* Set bit 9 of FWSTS clearing FW reset indication */
3635 fwsts = IXGBE_READ_REG(hw, IXGBE_FWSTS);
3636 IXGBE_WRITE_REG(hw, IXGBE_FWSTS, fwsts | IXGBE_FWSTS_FWRI);
3637
Emil Tantilov9612de92011-05-07 07:40:20 +00003638 /* Check that the host interface is enabled. */
3639 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
Mark Rustad5cffde32016-03-14 11:05:57 -07003640 if (!(hicr & IXGBE_HICR_EN)) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003641 hw_dbg(hw, "IXGBE_HOST_EN bit disabled.\n");
Mark Rustadaf741902016-03-14 11:06:02 -07003642 status = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3643 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003644 }
3645
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003646 /* Calculate length in DWORDs. We must be DWORD aligned */
Mark Rustad5cffde32016-03-14 11:05:57 -07003647 if (length % sizeof(u32)) {
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003648 hw_dbg(hw, "Buffer length failure, not aligned to dword");
Mark Rustadaf741902016-03-14 11:06:02 -07003649 status = IXGBE_ERR_INVALID_ARGUMENT;
3650 goto rel_out;
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003651 }
3652
Emil Tantilov9612de92011-05-07 07:40:20 +00003653 dword_len = length >> 2;
3654
Mark Rustad5cffde32016-03-14 11:05:57 -07003655 /* The device driver writes the relevant command block
Emil Tantilov9612de92011-05-07 07:40:20 +00003656 * into the ram area.
3657 */
3658 for (i = 0; i < dword_len; i++)
3659 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_FLEX_MNG,
Mark Rustad5cffde32016-03-14 11:05:57 -07003660 i, cpu_to_le32(bp->u32arr[i]));
Emil Tantilov9612de92011-05-07 07:40:20 +00003661
3662 /* Setting this bit tells the ARC that a new command is pending. */
3663 IXGBE_WRITE_REG(hw, IXGBE_HICR, hicr | IXGBE_HICR_C);
3664
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003665 for (i = 0; i < timeout; i++) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003666 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
3667 if (!(hicr & IXGBE_HICR_C))
3668 break;
3669 usleep_range(1000, 2000);
3670 }
3671
3672 /* Check command successful completion. */
Mark Rustad5cffde32016-03-14 11:05:57 -07003673 if ((timeout && i == timeout) ||
3674 !(IXGBE_READ_REG(hw, IXGBE_HICR) & IXGBE_HICR_SV)) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003675 hw_dbg(hw, "Command has failed with no status valid.\n");
Mark Rustadaf741902016-03-14 11:06:02 -07003676 status = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3677 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003678 }
3679
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003680 if (!return_data)
Mark Rustadaf741902016-03-14 11:06:02 -07003681 goto rel_out;
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003682
Emil Tantilov9612de92011-05-07 07:40:20 +00003683 /* Calculate length in DWORDs */
3684 dword_len = hdr_size >> 2;
3685
3686 /* first pull in the header so we know the buffer length */
Emil Tantilov331bcf42011-10-22 05:21:32 +00003687 for (bi = 0; bi < dword_len; bi++) {
Mark Rustad5cffde32016-03-14 11:05:57 -07003688 bp->u32arr[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3689 le32_to_cpus(&bp->u32arr[bi]);
Emil Tantilov79488c52011-10-11 08:24:57 +00003690 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003691
3692 /* If there is any thing in data position pull it in */
Mark Rustad5cffde32016-03-14 11:05:57 -07003693 buf_len = bp->hdr.buf_len;
3694 if (!buf_len)
Mark Rustadaf741902016-03-14 11:06:02 -07003695 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003696
Mark Rustad73457162016-03-14 11:05:51 -07003697 if (length < round_up(buf_len, 4) + hdr_size) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003698 hw_dbg(hw, "Buffer not large enough for reply message.\n");
Mark Rustadaf741902016-03-14 11:06:02 -07003699 status = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3700 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003701 }
3702
Emil Tantilov331bcf42011-10-22 05:21:32 +00003703 /* Calculate length in DWORDs, add 3 for odd lengths */
3704 dword_len = (buf_len + 3) >> 2;
Emil Tantilov9612de92011-05-07 07:40:20 +00003705
Mark Rustad5cffde32016-03-14 11:05:57 -07003706 /* Pull in the rest of the buffer (bi is where we left off) */
Emil Tantilov331bcf42011-10-22 05:21:32 +00003707 for (; bi <= dword_len; bi++) {
Mark Rustad5cffde32016-03-14 11:05:57 -07003708 bp->u32arr[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3709 le32_to_cpus(&bp->u32arr[bi]);
Emil Tantilov331bcf42011-10-22 05:21:32 +00003710 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003711
Mark Rustadaf741902016-03-14 11:06:02 -07003712rel_out:
3713 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM);
3714
3715 return status;
Emil Tantilov9612de92011-05-07 07:40:20 +00003716}
3717
3718/**
3719 * ixgbe_set_fw_drv_ver_generic - Sends driver version to firmware
3720 * @hw: pointer to the HW structure
3721 * @maj: driver version major number
3722 * @min: driver version minor number
3723 * @build: driver version build number
3724 * @sub: driver version sub build number
Tony Nguyencb8e0512016-10-26 16:25:18 -07003725 * @len: length of driver_ver string
3726 * @driver_ver: driver string
Emil Tantilov9612de92011-05-07 07:40:20 +00003727 *
3728 * Sends driver version number to firmware through the manageability
3729 * block. On success return 0
3730 * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring
3731 * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails.
3732 **/
3733s32 ixgbe_set_fw_drv_ver_generic(struct ixgbe_hw *hw, u8 maj, u8 min,
Tony Nguyencb8e0512016-10-26 16:25:18 -07003734 u8 build, u8 sub, __always_unused u16 len,
3735 __always_unused const char *driver_ver)
Emil Tantilov9612de92011-05-07 07:40:20 +00003736{
3737 struct ixgbe_hic_drv_info fw_cmd;
3738 int i;
Mark Rustade90dd262014-07-22 06:51:08 +00003739 s32 ret_val;
Emil Tantilov9612de92011-05-07 07:40:20 +00003740
Emil Tantilov9612de92011-05-07 07:40:20 +00003741 fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO;
3742 fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN;
3743 fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED;
Mark Rustad3775b812016-03-14 11:05:46 -07003744 fw_cmd.port_num = hw->bus.func;
Emil Tantilov9612de92011-05-07 07:40:20 +00003745 fw_cmd.ver_maj = maj;
3746 fw_cmd.ver_min = min;
3747 fw_cmd.ver_build = build;
3748 fw_cmd.ver_sub = sub;
3749 fw_cmd.hdr.checksum = 0;
3750 fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd,
3751 (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len));
3752 fw_cmd.pad = 0;
3753 fw_cmd.pad2 = 0;
3754
3755 for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) {
Mark Rustad5cffde32016-03-14 11:05:57 -07003756 ret_val = ixgbe_host_interface_command(hw, &fw_cmd,
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003757 sizeof(fw_cmd),
3758 IXGBE_HI_COMMAND_TIMEOUT,
3759 true);
Emil Tantilov9612de92011-05-07 07:40:20 +00003760 if (ret_val != 0)
3761 continue;
3762
3763 if (fw_cmd.hdr.cmd_or_resp.ret_status ==
3764 FW_CEM_RESP_STATUS_SUCCESS)
3765 ret_val = 0;
3766 else
3767 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3768
3769 break;
3770 }
3771
Emil Tantilov9612de92011-05-07 07:40:20 +00003772 return ret_val;
3773}
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003774
3775/**
3776 * ixgbe_clear_tx_pending - Clear pending TX work from the PCIe fifo
3777 * @hw: pointer to the hardware structure
3778 *
3779 * The 82599 and x540 MACs can experience issues if TX work is still pending
3780 * when a reset occurs. This function prevents this by flushing the PCIe
3781 * buffers on the system.
3782 **/
3783void ixgbe_clear_tx_pending(struct ixgbe_hw *hw)
3784{
Don Skidmore71bde602014-10-29 07:23:41 +00003785 u32 gcr_ext, hlreg0, i, poll;
3786 u16 value;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003787
3788 /*
3789 * If double reset is not requested then all transactions should
3790 * already be clear and as such there is no work to do
3791 */
3792 if (!(hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED))
3793 return;
3794
3795 /*
3796 * Set loopback enable to prevent any transmits from being sent
3797 * should the link come up. This assumes that the RXCTRL.RXEN bit
3798 * has already been cleared.
3799 */
3800 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3801 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0 | IXGBE_HLREG0_LPBK);
3802
Don Skidmore71bde602014-10-29 07:23:41 +00003803 /* wait for a last completion before clearing buffers */
3804 IXGBE_WRITE_FLUSH(hw);
3805 usleep_range(3000, 6000);
3806
3807 /* Before proceeding, make sure that the PCIe block does not have
3808 * transactions pending.
3809 */
3810 poll = ixgbe_pcie_timeout_poll(hw);
3811 for (i = 0; i < poll; i++) {
3812 usleep_range(100, 200);
3813 value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS);
3814 if (ixgbe_removed(hw->hw_addr))
3815 break;
3816 if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING))
3817 break;
3818 }
3819
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003820 /* initiate cleaning flow for buffers in the PCIe transaction layer */
3821 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3822 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT,
3823 gcr_ext | IXGBE_GCR_EXT_BUFFERS_CLEAR);
3824
3825 /* Flush all writes and allow 20usec for all transactions to clear */
3826 IXGBE_WRITE_FLUSH(hw);
3827 udelay(20);
3828
3829 /* restore previous register values */
3830 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3831 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3832}
Don Skidmoree1ea9152012-02-17 02:38:58 +00003833
3834static const u8 ixgbe_emc_temp_data[4] = {
3835 IXGBE_EMC_INTERNAL_DATA,
3836 IXGBE_EMC_DIODE1_DATA,
3837 IXGBE_EMC_DIODE2_DATA,
3838 IXGBE_EMC_DIODE3_DATA
3839};
3840static const u8 ixgbe_emc_therm_limit[4] = {
3841 IXGBE_EMC_INTERNAL_THERM_LIMIT,
3842 IXGBE_EMC_DIODE1_THERM_LIMIT,
3843 IXGBE_EMC_DIODE2_THERM_LIMIT,
3844 IXGBE_EMC_DIODE3_THERM_LIMIT
3845};
3846
3847/**
3848 * ixgbe_get_ets_data - Extracts the ETS bit data
3849 * @hw: pointer to hardware structure
3850 * @ets_cfg: extected ETS data
3851 * @ets_offset: offset of ETS data
3852 *
3853 * Returns error code.
3854 **/
3855static s32 ixgbe_get_ets_data(struct ixgbe_hw *hw, u16 *ets_cfg,
3856 u16 *ets_offset)
3857{
Mark Rustade90dd262014-07-22 06:51:08 +00003858 s32 status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003859
3860 status = hw->eeprom.ops.read(hw, IXGBE_ETS_CFG, ets_offset);
3861 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003862 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003863
Mark Rustade90dd262014-07-22 06:51:08 +00003864 if ((*ets_offset == 0x0000) || (*ets_offset == 0xFFFF))
3865 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003866
3867 status = hw->eeprom.ops.read(hw, *ets_offset, ets_cfg);
3868 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003869 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003870
Mark Rustade90dd262014-07-22 06:51:08 +00003871 if ((*ets_cfg & IXGBE_ETS_TYPE_MASK) != IXGBE_ETS_TYPE_EMC_SHIFTED)
3872 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003873
Mark Rustade90dd262014-07-22 06:51:08 +00003874 return 0;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003875}
3876
3877/**
3878 * ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
3879 * @hw: pointer to hardware structure
3880 *
3881 * Returns the thermal sensor data structure
3882 **/
3883s32 ixgbe_get_thermal_sensor_data_generic(struct ixgbe_hw *hw)
3884{
Mark Rustade90dd262014-07-22 06:51:08 +00003885 s32 status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003886 u16 ets_offset;
3887 u16 ets_cfg;
3888 u16 ets_sensor;
3889 u8 num_sensors;
3890 u8 i;
3891 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3892
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003893 /* Only support thermal sensors attached to physical port 0 */
Mark Rustade90dd262014-07-22 06:51:08 +00003894 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1))
3895 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003896
3897 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3898 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003899 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003900
3901 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3902 if (num_sensors > IXGBE_MAX_SENSORS)
3903 num_sensors = IXGBE_MAX_SENSORS;
3904
3905 for (i = 0; i < num_sensors; i++) {
3906 u8 sensor_index;
3907 u8 sensor_location;
3908
3909 status = hw->eeprom.ops.read(hw, (ets_offset + 1 + i),
3910 &ets_sensor);
3911 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003912 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003913
3914 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3915 IXGBE_ETS_DATA_INDEX_SHIFT);
3916 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3917 IXGBE_ETS_DATA_LOC_SHIFT);
3918
3919 if (sensor_location != 0) {
3920 status = hw->phy.ops.read_i2c_byte(hw,
3921 ixgbe_emc_temp_data[sensor_index],
3922 IXGBE_I2C_THERMAL_SENSOR_ADDR,
3923 &data->sensor[i].temp);
3924 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003925 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003926 }
3927 }
Mark Rustade90dd262014-07-22 06:51:08 +00003928
3929 return 0;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003930}
3931
3932/**
3933 * ixgbe_init_thermal_sensor_thresh_generic - Inits thermal sensor thresholds
3934 * @hw: pointer to hardware structure
3935 *
3936 * Inits the thermal sensor thresholds according to the NVM map
3937 * and save off the threshold and location values into mac.thermal_sensor_data
3938 **/
3939s32 ixgbe_init_thermal_sensor_thresh_generic(struct ixgbe_hw *hw)
3940{
Mark Rustade90dd262014-07-22 06:51:08 +00003941 s32 status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003942 u16 ets_offset;
3943 u16 ets_cfg;
3944 u16 ets_sensor;
3945 u8 low_thresh_delta;
3946 u8 num_sensors;
3947 u8 therm_limit;
3948 u8 i;
3949 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3950
3951 memset(data, 0, sizeof(struct ixgbe_thermal_sensor_data));
3952
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003953 /* Only support thermal sensors attached to physical port 0 */
Mark Rustade90dd262014-07-22 06:51:08 +00003954 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1))
3955 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003956
3957 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3958 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003959 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003960
3961 low_thresh_delta = ((ets_cfg & IXGBE_ETS_LTHRES_DELTA_MASK) >>
3962 IXGBE_ETS_LTHRES_DELTA_SHIFT);
3963 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3964 if (num_sensors > IXGBE_MAX_SENSORS)
3965 num_sensors = IXGBE_MAX_SENSORS;
3966
3967 for (i = 0; i < num_sensors; i++) {
3968 u8 sensor_index;
3969 u8 sensor_location;
3970
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003971 if (hw->eeprom.ops.read(hw, ets_offset + 1 + i, &ets_sensor)) {
3972 hw_err(hw, "eeprom read at offset %d failed\n",
3973 ets_offset + 1 + i);
3974 continue;
3975 }
Don Skidmoree1ea9152012-02-17 02:38:58 +00003976 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3977 IXGBE_ETS_DATA_INDEX_SHIFT);
3978 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3979 IXGBE_ETS_DATA_LOC_SHIFT);
3980 therm_limit = ets_sensor & IXGBE_ETS_DATA_HTHRESH_MASK;
3981
3982 hw->phy.ops.write_i2c_byte(hw,
3983 ixgbe_emc_therm_limit[sensor_index],
3984 IXGBE_I2C_THERMAL_SENSOR_ADDR, therm_limit);
3985
3986 if (sensor_location == 0)
3987 continue;
3988
3989 data->sensor[i].location = sensor_location;
3990 data->sensor[i].caution_thresh = therm_limit;
3991 data->sensor[i].max_op_thresh = therm_limit - low_thresh_delta;
3992 }
Mark Rustade90dd262014-07-22 06:51:08 +00003993
3994 return 0;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003995}
3996
Don Skidmore1f9ac572015-03-13 13:54:30 -07003997void ixgbe_disable_rx_generic(struct ixgbe_hw *hw)
3998{
3999 u32 rxctrl;
4000
4001 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4002 if (rxctrl & IXGBE_RXCTRL_RXEN) {
4003 if (hw->mac.type != ixgbe_mac_82598EB) {
4004 u32 pfdtxgswc;
4005
4006 pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
4007 if (pfdtxgswc & IXGBE_PFDTXGSWC_VT_LBEN) {
4008 pfdtxgswc &= ~IXGBE_PFDTXGSWC_VT_LBEN;
4009 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
4010 hw->mac.set_lben = true;
4011 } else {
4012 hw->mac.set_lben = false;
4013 }
4014 }
4015 rxctrl &= ~IXGBE_RXCTRL_RXEN;
4016 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl);
4017 }
4018}
4019
4020void ixgbe_enable_rx_generic(struct ixgbe_hw *hw)
4021{
4022 u32 rxctrl;
4023
4024 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4025 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, (rxctrl | IXGBE_RXCTRL_RXEN));
4026
4027 if (hw->mac.type != ixgbe_mac_82598EB) {
4028 if (hw->mac.set_lben) {
4029 u32 pfdtxgswc;
4030
4031 pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
4032 pfdtxgswc |= IXGBE_PFDTXGSWC_VT_LBEN;
4033 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
4034 hw->mac.set_lben = false;
4035 }
4036 }
4037}
Don Skidmorebd8069a2015-06-10 20:05:02 -04004038
4039/** ixgbe_mng_present - returns true when management capability is present
4040 * @hw: pointer to hardware structure
4041 **/
4042bool ixgbe_mng_present(struct ixgbe_hw *hw)
4043{
4044 u32 fwsm;
4045
4046 if (hw->mac.type < ixgbe_mac_82599EB)
4047 return false;
4048
4049 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
4050 fwsm &= IXGBE_FWSM_MODE_MASK;
4051 return fwsm == IXGBE_FWSM_FW_MODE_PT;
4052}
Mark Rustad6d373a12015-08-08 16:18:28 -07004053
4054/**
4055 * ixgbe_setup_mac_link_multispeed_fiber - Set MAC link speed
4056 * @hw: pointer to hardware structure
4057 * @speed: new link speed
4058 * @autoneg_wait_to_complete: true when waiting for completion is needed
4059 *
4060 * Set the link speed in the MAC and/or PHY register and restarts link.
4061 */
4062s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw,
4063 ixgbe_link_speed speed,
4064 bool autoneg_wait_to_complete)
4065{
4066 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
4067 ixgbe_link_speed highest_link_speed = IXGBE_LINK_SPEED_UNKNOWN;
4068 s32 status = 0;
4069 u32 speedcnt = 0;
4070 u32 i = 0;
4071 bool autoneg, link_up = false;
4072
4073 /* Mask off requested but non-supported speeds */
4074 status = hw->mac.ops.get_link_capabilities(hw, &link_speed, &autoneg);
4075 if (status)
4076 return status;
4077
4078 speed &= link_speed;
4079
4080 /* Try each speed one by one, highest priority first. We do this in
4081 * software because 10Gb fiber doesn't support speed autonegotiation.
4082 */
4083 if (speed & IXGBE_LINK_SPEED_10GB_FULL) {
4084 speedcnt++;
4085 highest_link_speed = IXGBE_LINK_SPEED_10GB_FULL;
4086
4087 /* If we already have link at this speed, just jump out */
4088 status = hw->mac.ops.check_link(hw, &link_speed, &link_up,
4089 false);
4090 if (status)
4091 return status;
4092
4093 if (link_speed == IXGBE_LINK_SPEED_10GB_FULL && link_up)
4094 goto out;
4095
4096 /* Set the module link speed */
4097 switch (hw->phy.media_type) {
4098 case ixgbe_media_type_fiber:
4099 hw->mac.ops.set_rate_select_speed(hw,
4100 IXGBE_LINK_SPEED_10GB_FULL);
4101 break;
4102 case ixgbe_media_type_fiber_qsfp:
4103 /* QSFP module automatically detects MAC link speed */
4104 break;
4105 default:
4106 hw_dbg(hw, "Unexpected media type\n");
4107 break;
4108 }
4109
4110 /* Allow module to change analog characteristics (1G->10G) */
4111 msleep(40);
4112
4113 status = hw->mac.ops.setup_mac_link(hw,
4114 IXGBE_LINK_SPEED_10GB_FULL,
4115 autoneg_wait_to_complete);
4116 if (status)
4117 return status;
4118
4119 /* Flap the Tx laser if it has not already been done */
4120 if (hw->mac.ops.flap_tx_laser)
4121 hw->mac.ops.flap_tx_laser(hw);
4122
4123 /* Wait for the controller to acquire link. Per IEEE 802.3ap,
4124 * Section 73.10.2, we may have to wait up to 500ms if KR is
4125 * attempted. 82599 uses the same timing for 10g SFI.
4126 */
4127 for (i = 0; i < 5; i++) {
4128 /* Wait for the link partner to also set speed */
4129 msleep(100);
4130
4131 /* If we have link, just jump out */
4132 status = hw->mac.ops.check_link(hw, &link_speed,
4133 &link_up, false);
4134 if (status)
4135 return status;
4136
4137 if (link_up)
4138 goto out;
4139 }
4140 }
4141
4142 if (speed & IXGBE_LINK_SPEED_1GB_FULL) {
4143 speedcnt++;
4144 if (highest_link_speed == IXGBE_LINK_SPEED_UNKNOWN)
4145 highest_link_speed = IXGBE_LINK_SPEED_1GB_FULL;
4146
4147 /* If we already have link at this speed, just jump out */
4148 status = hw->mac.ops.check_link(hw, &link_speed, &link_up,
4149 false);
4150 if (status)
4151 return status;
4152
4153 if (link_speed == IXGBE_LINK_SPEED_1GB_FULL && link_up)
4154 goto out;
4155
4156 /* Set the module link speed */
4157 switch (hw->phy.media_type) {
4158 case ixgbe_media_type_fiber:
4159 hw->mac.ops.set_rate_select_speed(hw,
4160 IXGBE_LINK_SPEED_1GB_FULL);
4161 break;
4162 case ixgbe_media_type_fiber_qsfp:
4163 /* QSFP module automatically detects link speed */
4164 break;
4165 default:
4166 hw_dbg(hw, "Unexpected media type\n");
4167 break;
4168 }
4169
4170 /* Allow module to change analog characteristics (10G->1G) */
4171 msleep(40);
4172
4173 status = hw->mac.ops.setup_mac_link(hw,
4174 IXGBE_LINK_SPEED_1GB_FULL,
4175 autoneg_wait_to_complete);
4176 if (status)
4177 return status;
4178
4179 /* Flap the Tx laser if it has not already been done */
4180 if (hw->mac.ops.flap_tx_laser)
4181 hw->mac.ops.flap_tx_laser(hw);
4182
4183 /* Wait for the link partner to also set speed */
4184 msleep(100);
4185
4186 /* If we have link, just jump out */
4187 status = hw->mac.ops.check_link(hw, &link_speed, &link_up,
4188 false);
4189 if (status)
4190 return status;
4191
4192 if (link_up)
4193 goto out;
4194 }
4195
4196 /* We didn't get link. Configure back to the highest speed we tried,
4197 * (if there was more than one). We call ourselves back with just the
4198 * single highest speed that the user requested.
4199 */
4200 if (speedcnt > 1)
4201 status = ixgbe_setup_mac_link_multispeed_fiber(hw,
4202 highest_link_speed,
4203 autoneg_wait_to_complete);
4204
4205out:
4206 /* Set autoneg_advertised value based on input link speed */
4207 hw->phy.autoneg_advertised = 0;
4208
4209 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
4210 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL;
4211
4212 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
4213 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL;
4214
4215 return status;
4216}
4217
4218/**
4219 * ixgbe_set_soft_rate_select_speed - Set module link speed
4220 * @hw: pointer to hardware structure
4221 * @speed: link speed to set
4222 *
4223 * Set module link speed via the soft rate select.
4224 */
4225void ixgbe_set_soft_rate_select_speed(struct ixgbe_hw *hw,
4226 ixgbe_link_speed speed)
4227{
4228 s32 status;
4229 u8 rs, eeprom_data;
4230
4231 switch (speed) {
4232 case IXGBE_LINK_SPEED_10GB_FULL:
4233 /* one bit mask same as setting on */
4234 rs = IXGBE_SFF_SOFT_RS_SELECT_10G;
4235 break;
4236 case IXGBE_LINK_SPEED_1GB_FULL:
4237 rs = IXGBE_SFF_SOFT_RS_SELECT_1G;
4238 break;
4239 default:
4240 hw_dbg(hw, "Invalid fixed module speed\n");
4241 return;
4242 }
4243
4244 /* Set RS0 */
4245 status = hw->phy.ops.read_i2c_byte(hw, IXGBE_SFF_SFF_8472_OSCB,
4246 IXGBE_I2C_EEPROM_DEV_ADDR2,
4247 &eeprom_data);
4248 if (status) {
4249 hw_dbg(hw, "Failed to read Rx Rate Select RS0\n");
4250 return;
4251 }
4252
4253 eeprom_data = (eeprom_data & ~IXGBE_SFF_SOFT_RS_SELECT_MASK) | rs;
4254
4255 status = hw->phy.ops.write_i2c_byte(hw, IXGBE_SFF_SFF_8472_OSCB,
4256 IXGBE_I2C_EEPROM_DEV_ADDR2,
4257 eeprom_data);
4258 if (status) {
4259 hw_dbg(hw, "Failed to write Rx Rate Select RS0\n");
4260 return;
4261 }
4262}