blob: 902d2061ce73a32e44e7a48a1547f0c8205ba9a4 [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 Skidmore73d80953d2013-07-31 02:19:24 +0000102 supported = true;
103 break;
104 default:
105 break;
106 }
Alexander Duyck67a79df2012-04-19 17:49:56 +0000107 default:
Don Skidmore73d80953d2013-07-31 02:19:24 +0000108 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000109 }
Don Skidmore73d80953d2013-07-31 02:19:24 +0000110
111 return supported;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000112}
113
114/**
Mark Rustadafdc71e2016-01-25 16:32:10 -0800115 * ixgbe_setup_fc_generic - Set up flow control
Alexander Duyck67a79df2012-04-19 17:49:56 +0000116 * @hw: pointer to hardware structure
117 *
118 * Called at init time to set up flow control.
119 **/
Mark Rustadafdc71e2016-01-25 16:32:10 -0800120s32 ixgbe_setup_fc_generic(struct ixgbe_hw *hw)
Alexander Duyck67a79df2012-04-19 17:49:56 +0000121{
122 s32 ret_val = 0;
123 u32 reg = 0, reg_bp = 0;
124 u16 reg_cu = 0;
Don Skidmore429d6a32014-02-27 20:32:41 -0800125 bool locked = false;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000126
Alexander Duyck67a79df2012-04-19 17:49:56 +0000127 /*
128 * Validate the requested mode. Strict IEEE mode does not allow
129 * ixgbe_fc_rx_pause because it will cause us to fail at UNH.
130 */
131 if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
132 hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000133 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000134 }
135
136 /*
137 * 10gig parts do not have a word in the EEPROM to determine the
138 * default flow control setting, so we explicitly set it to full.
139 */
140 if (hw->fc.requested_mode == ixgbe_fc_default)
141 hw->fc.requested_mode = ixgbe_fc_full;
142
143 /*
144 * Set up the 1G and 10G flow control advertisement registers so the
145 * HW will be able to do fc autoneg once the cable is plugged in. If
146 * we link at 10G, the 1G advertisement is harmless and vice versa.
147 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000148 switch (hw->phy.media_type) {
Don Skidmore429d6a32014-02-27 20:32:41 -0800149 case ixgbe_media_type_backplane:
150 /* some MAC's need RMW protection on AUTOC */
151 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &reg_bp);
Don Skidmoref8cf7a02014-03-19 09:16:26 +0000152 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +0000153 return ret_val;
Don Skidmore429d6a32014-02-27 20:32:41 -0800154
155 /* only backplane uses autoc so fall though */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000156 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +0000157 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
Don Skidmore429d6a32014-02-27 20:32:41 -0800158
Alexander Duyck67a79df2012-04-19 17:49:56 +0000159 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000160 case ixgbe_media_type_copper:
161 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
162 MDIO_MMD_AN, &reg_cu);
163 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000164 default:
Alexander Duyck041441d2012-04-19 17:48:48 +0000165 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000166 }
167
168 /*
169 * The possible values of fc.requested_mode are:
170 * 0: Flow control is completely disabled
171 * 1: Rx flow control is enabled (we can receive pause frames,
172 * but not send pause frames).
173 * 2: Tx flow control is enabled (we can send pause frames but
174 * we do not support receiving pause frames).
175 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Alexander Duyck67a79df2012-04-19 17:49:56 +0000176 * other: Invalid.
177 */
178 switch (hw->fc.requested_mode) {
179 case ixgbe_fc_none:
180 /* Flow control completely disabled by software override. */
181 reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
182 if (hw->phy.media_type == ixgbe_media_type_backplane)
183 reg_bp &= ~(IXGBE_AUTOC_SYM_PAUSE |
184 IXGBE_AUTOC_ASM_PAUSE);
185 else if (hw->phy.media_type == ixgbe_media_type_copper)
186 reg_cu &= ~(IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE);
187 break;
Alexander Duyck041441d2012-04-19 17:48:48 +0000188 case ixgbe_fc_tx_pause:
189 /*
190 * Tx Flow control is enabled, and Rx Flow control is
191 * disabled by software override.
192 */
193 reg |= IXGBE_PCS1GANA_ASM_PAUSE;
194 reg &= ~IXGBE_PCS1GANA_SYM_PAUSE;
195 if (hw->phy.media_type == ixgbe_media_type_backplane) {
196 reg_bp |= IXGBE_AUTOC_ASM_PAUSE;
197 reg_bp &= ~IXGBE_AUTOC_SYM_PAUSE;
198 } else if (hw->phy.media_type == ixgbe_media_type_copper) {
199 reg_cu |= IXGBE_TAF_ASM_PAUSE;
200 reg_cu &= ~IXGBE_TAF_SYM_PAUSE;
201 }
202 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000203 case ixgbe_fc_rx_pause:
204 /*
205 * Rx Flow control is enabled and Tx Flow control is
206 * disabled by software override. Since there really
207 * isn't a way to advertise that we are capable of RX
208 * Pause ONLY, we will advertise that we support both
Alexander Duyck041441d2012-04-19 17:48:48 +0000209 * symmetric and asymmetric Rx PAUSE, as such we fall
210 * through to the fc_full statement. Later, we will
Alexander Duyck67a79df2012-04-19 17:49:56 +0000211 * disable the adapter's ability to send PAUSE frames.
212 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000213 case ixgbe_fc_full:
214 /* Flow control (both Rx and Tx) is enabled by SW override. */
Alexander Duyck041441d2012-04-19 17:48:48 +0000215 reg |= IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000216 if (hw->phy.media_type == ixgbe_media_type_backplane)
Alexander Duyck041441d2012-04-19 17:48:48 +0000217 reg_bp |= IXGBE_AUTOC_SYM_PAUSE |
218 IXGBE_AUTOC_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000219 else if (hw->phy.media_type == ixgbe_media_type_copper)
Alexander Duyck041441d2012-04-19 17:48:48 +0000220 reg_cu |= IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000221 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000222 default:
223 hw_dbg(hw, "Flow control param set incorrectly\n");
Mark Rustade90dd262014-07-22 06:51:08 +0000224 return IXGBE_ERR_CONFIG;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000225 }
226
227 if (hw->mac.type != ixgbe_mac_X540) {
228 /*
229 * Enable auto-negotiation between the MAC & PHY;
230 * the MAC will advertise clause 37 flow control.
231 */
232 IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg);
233 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
234
235 /* Disable AN timeout */
236 if (hw->fc.strict_ieee)
237 reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN;
238
239 IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg);
240 hw_dbg(hw, "Set up FC; PCS1GLCTL = 0x%08X\n", reg);
241 }
242
243 /*
244 * AUTOC restart handles negotiation of 1G and 10G on backplane
245 * and copper. There is no need to set the PCS1GCTL register.
246 *
247 */
248 if (hw->phy.media_type == ixgbe_media_type_backplane) {
Don Skidmored7bbcd32012-10-24 06:19:01 +0000249 /* Need the SW/FW semaphore around AUTOC writes if 82599 and
250 * LESM is on, likewise reset_pipeline requries the lock as
251 * it also writes AUTOC.
252 */
Don Skidmore429d6a32014-02-27 20:32:41 -0800253 ret_val = hw->mac.ops.prot_autoc_write(hw, reg_bp, locked);
254 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +0000255 return ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +0000256
Alexander Duyck67a79df2012-04-19 17:49:56 +0000257 } else if ((hw->phy.media_type == ixgbe_media_type_copper) &&
Don Skidmore429d6a32014-02-27 20:32:41 -0800258 ixgbe_device_supports_autoneg_fc(hw)) {
Alexander Duyck67a79df2012-04-19 17:49:56 +0000259 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
260 MDIO_MMD_AN, reg_cu);
261 }
262
263 hw_dbg(hw, "Set up FC; IXGBE_AUTOC = 0x%08X\n", reg);
Alexander Duyck67a79df2012-04-19 17:49:56 +0000264 return ret_val;
265}
266
267/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700268 * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx
Auke Kok9a799d72007-09-15 14:07:45 -0700269 * @hw: pointer to hardware structure
270 *
271 * Starts the hardware by filling the bus info structure and media type, clears
272 * all on chip counters, initializes receive address registers, multicast
273 * table, VLAN filter table, calls routine to set up link and flow control
274 * settings, and leaves transmit and receive units disabled and uninitialized
275 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700276s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700277{
Jacob Kellere5776622014-04-05 02:35:52 +0000278 s32 ret_val;
Auke Kok9a799d72007-09-15 14:07:45 -0700279 u32 ctrl_ext;
280
281 /* Set the media type */
282 hw->phy.media_type = hw->mac.ops.get_media_type(hw);
283
284 /* Identify the PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700285 hw->phy.ops.identify(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700286
Auke Kok9a799d72007-09-15 14:07:45 -0700287 /* Clear the VLAN filter table */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700288 hw->mac.ops.clear_vfta(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700289
Auke Kok9a799d72007-09-15 14:07:45 -0700290 /* Clear statistics registers */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700291 hw->mac.ops.clear_hw_cntrs(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700292
293 /* Set No Snoop Disable */
294 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
295 ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS;
296 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok3957d632007-10-31 15:22:10 -0700297 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700298
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000299 /* Setup flow control */
Mark Rustadafdc71e2016-01-25 16:32:10 -0800300 ret_val = hw->mac.ops.setup_fc(hw);
Mark Rustad3507a9b2015-08-08 16:27:46 -0700301 if (ret_val)
302 return ret_val;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000303
Auke Kok9a799d72007-09-15 14:07:45 -0700304 /* Clear adapter stopped flag */
305 hw->adapter_stopped = false;
306
Mark Rustad3507a9b2015-08-08 16:27:46 -0700307 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700308}
309
310/**
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000311 * ixgbe_start_hw_gen2 - Init sequence for common device family
312 * @hw: pointer to hw structure
313 *
314 * Performs the init sequence common to the second generation
315 * of 10 GbE devices.
316 * Devices in the second generation:
317 * 82599
318 * X540
319 **/
320s32 ixgbe_start_hw_gen2(struct ixgbe_hw *hw)
321{
322 u32 i;
323
324 /* Clear the rate limiters */
325 for (i = 0; i < hw->mac.max_tx_queues; i++) {
326 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, i);
327 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, 0);
328 }
329 IXGBE_WRITE_FLUSH(hw);
330
Jeff Kirsher887012e2015-03-13 14:04:35 -0700331#ifndef CONFIG_SPARC
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000332 /* Disable relaxed ordering */
333 for (i = 0; i < hw->mac.max_tx_queues; i++) {
Jeff Kirsher887012e2015-03-13 14:04:35 -0700334 u32 regval;
335
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000336 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000337 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000338 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(i), regval);
339 }
340
341 for (i = 0; i < hw->mac.max_rx_queues; i++) {
Jeff Kirsher887012e2015-03-13 14:04:35 -0700342 u32 regval;
343
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000344 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000345 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
346 IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000347 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
348 }
Jeff Kirsher887012e2015-03-13 14:04:35 -0700349#endif
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000350 return 0;
351}
352
353/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700354 * ixgbe_init_hw_generic - Generic hardware initialization
Auke Kok9a799d72007-09-15 14:07:45 -0700355 * @hw: pointer to hardware structure
356 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700357 * Initialize the hardware by resetting the hardware, filling the bus info
Auke Kok9a799d72007-09-15 14:07:45 -0700358 * structure and media type, clears all on chip counters, initializes receive
359 * address registers, multicast table, VLAN filter table, calls routine to set
360 * up link and flow control settings, and leaves transmit and receive units
361 * disabled and uninitialized
362 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700363s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700364{
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000365 s32 status;
366
Auke Kok9a799d72007-09-15 14:07:45 -0700367 /* Reset the hardware */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000368 status = hw->mac.ops.reset_hw(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700369
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000370 if (status == 0) {
371 /* Start the HW */
372 status = hw->mac.ops.start_hw(hw);
373 }
Auke Kok9a799d72007-09-15 14:07:45 -0700374
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000375 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700376}
377
378/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700379 * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters
Auke Kok9a799d72007-09-15 14:07:45 -0700380 * @hw: pointer to hardware structure
381 *
382 * Clears all hardware statistics counters by reading them from the hardware
383 * Statistics counters are clear on read.
384 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700385s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700386{
387 u16 i = 0;
388
389 IXGBE_READ_REG(hw, IXGBE_CRCERRS);
390 IXGBE_READ_REG(hw, IXGBE_ILLERRC);
391 IXGBE_READ_REG(hw, IXGBE_ERRBC);
392 IXGBE_READ_REG(hw, IXGBE_MSPDC);
393 for (i = 0; i < 8; i++)
394 IXGBE_READ_REG(hw, IXGBE_MPC(i));
395
396 IXGBE_READ_REG(hw, IXGBE_MLFC);
397 IXGBE_READ_REG(hw, IXGBE_MRFC);
398 IXGBE_READ_REG(hw, IXGBE_RLEC);
399 IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Auke Kok9a799d72007-09-15 14:07:45 -0700400 IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Emil Tantilov667c7562011-02-26 06:40:05 +0000401 if (hw->mac.type >= ixgbe_mac_82599EB) {
402 IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
403 IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
404 } else {
405 IXGBE_READ_REG(hw, IXGBE_LXONRXC);
406 IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
407 }
Auke Kok9a799d72007-09-15 14:07:45 -0700408
409 for (i = 0; i < 8; i++) {
410 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700411 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000412 if (hw->mac.type >= ixgbe_mac_82599EB) {
413 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
414 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
415 } else {
416 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
417 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
418 }
Auke Kok9a799d72007-09-15 14:07:45 -0700419 }
Emil Tantilov667c7562011-02-26 06:40:05 +0000420 if (hw->mac.type >= ixgbe_mac_82599EB)
421 for (i = 0; i < 8; i++)
422 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700423 IXGBE_READ_REG(hw, IXGBE_PRC64);
424 IXGBE_READ_REG(hw, IXGBE_PRC127);
425 IXGBE_READ_REG(hw, IXGBE_PRC255);
426 IXGBE_READ_REG(hw, IXGBE_PRC511);
427 IXGBE_READ_REG(hw, IXGBE_PRC1023);
428 IXGBE_READ_REG(hw, IXGBE_PRC1522);
429 IXGBE_READ_REG(hw, IXGBE_GPRC);
430 IXGBE_READ_REG(hw, IXGBE_BPRC);
431 IXGBE_READ_REG(hw, IXGBE_MPRC);
432 IXGBE_READ_REG(hw, IXGBE_GPTC);
433 IXGBE_READ_REG(hw, IXGBE_GORCL);
434 IXGBE_READ_REG(hw, IXGBE_GORCH);
435 IXGBE_READ_REG(hw, IXGBE_GOTCL);
436 IXGBE_READ_REG(hw, IXGBE_GOTCH);
Emil Tantilovf3116f62011-07-29 06:46:15 +0000437 if (hw->mac.type == ixgbe_mac_82598EB)
438 for (i = 0; i < 8; i++)
439 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700440 IXGBE_READ_REG(hw, IXGBE_RUC);
441 IXGBE_READ_REG(hw, IXGBE_RFC);
442 IXGBE_READ_REG(hw, IXGBE_ROC);
443 IXGBE_READ_REG(hw, IXGBE_RJC);
444 IXGBE_READ_REG(hw, IXGBE_MNGPRC);
445 IXGBE_READ_REG(hw, IXGBE_MNGPDC);
446 IXGBE_READ_REG(hw, IXGBE_MNGPTC);
447 IXGBE_READ_REG(hw, IXGBE_TORL);
448 IXGBE_READ_REG(hw, IXGBE_TORH);
449 IXGBE_READ_REG(hw, IXGBE_TPR);
450 IXGBE_READ_REG(hw, IXGBE_TPT);
451 IXGBE_READ_REG(hw, IXGBE_PTC64);
452 IXGBE_READ_REG(hw, IXGBE_PTC127);
453 IXGBE_READ_REG(hw, IXGBE_PTC255);
454 IXGBE_READ_REG(hw, IXGBE_PTC511);
455 IXGBE_READ_REG(hw, IXGBE_PTC1023);
456 IXGBE_READ_REG(hw, IXGBE_PTC1522);
457 IXGBE_READ_REG(hw, IXGBE_MPTC);
458 IXGBE_READ_REG(hw, IXGBE_BPTC);
459 for (i = 0; i < 16; i++) {
460 IXGBE_READ_REG(hw, IXGBE_QPRC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700461 IXGBE_READ_REG(hw, IXGBE_QPTC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000462 if (hw->mac.type >= ixgbe_mac_82599EB) {
463 IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
464 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i));
465 IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
466 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i));
467 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
468 } else {
469 IXGBE_READ_REG(hw, IXGBE_QBRC(i));
470 IXGBE_READ_REG(hw, IXGBE_QBTC(i));
471 }
Auke Kok9a799d72007-09-15 14:07:45 -0700472 }
473
Don Skidmoree87ce1c2015-06-09 17:00:05 -0700474 if (hw->mac.type == ixgbe_mac_X550 || hw->mac.type == ixgbe_mac_X540) {
Emil Tantilova3aeea02011-02-26 06:40:11 +0000475 if (hw->phy.id == 0)
476 hw->phy.ops.identify(hw);
Emil Tantilovc1085b12011-12-10 08:21:47 +0000477 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECL, MDIO_MMD_PCS, &i);
478 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECH, MDIO_MMD_PCS, &i);
479 hw->phy.ops.read_reg(hw, IXGBE_LDPCECL, MDIO_MMD_PCS, &i);
480 hw->phy.ops.read_reg(hw, IXGBE_LDPCECH, MDIO_MMD_PCS, &i);
Emil Tantilova3aeea02011-02-26 06:40:11 +0000481 }
482
Auke Kok9a799d72007-09-15 14:07:45 -0700483 return 0;
484}
485
486/**
Don Skidmore289700db2010-12-03 03:32:58 +0000487 * ixgbe_read_pba_string_generic - Reads part number string from EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700488 * @hw: pointer to hardware structure
Don Skidmore289700db2010-12-03 03:32:58 +0000489 * @pba_num: stores the part number string from the EEPROM
490 * @pba_num_size: part number string buffer length
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700491 *
Don Skidmore289700db2010-12-03 03:32:58 +0000492 * Reads the part number string from the EEPROM.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700493 **/
Don Skidmore289700db2010-12-03 03:32:58 +0000494s32 ixgbe_read_pba_string_generic(struct ixgbe_hw *hw, u8 *pba_num,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000495 u32 pba_num_size)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700496{
497 s32 ret_val;
498 u16 data;
Don Skidmore289700db2010-12-03 03:32:58 +0000499 u16 pba_ptr;
500 u16 offset;
501 u16 length;
502
503 if (pba_num == NULL) {
504 hw_dbg(hw, "PBA string buffer was null\n");
505 return IXGBE_ERR_INVALID_ARGUMENT;
506 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700507
508 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data);
509 if (ret_val) {
510 hw_dbg(hw, "NVM Read Error\n");
511 return ret_val;
512 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700513
Don Skidmore289700db2010-12-03 03:32:58 +0000514 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &pba_ptr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700515 if (ret_val) {
516 hw_dbg(hw, "NVM Read Error\n");
517 return ret_val;
518 }
Don Skidmore289700db2010-12-03 03:32:58 +0000519
520 /*
521 * if data is not ptr guard the PBA must be in legacy format which
522 * means pba_ptr is actually our second data word for the PBA number
523 * and we can decode it into an ascii string
524 */
525 if (data != IXGBE_PBANUM_PTR_GUARD) {
526 hw_dbg(hw, "NVM PBA number is not stored as string\n");
527
528 /* we will need 11 characters to store the PBA */
529 if (pba_num_size < 11) {
530 hw_dbg(hw, "PBA string buffer too small\n");
531 return IXGBE_ERR_NO_SPACE;
532 }
533
534 /* extract hex string from data and pba_ptr */
535 pba_num[0] = (data >> 12) & 0xF;
536 pba_num[1] = (data >> 8) & 0xF;
537 pba_num[2] = (data >> 4) & 0xF;
538 pba_num[3] = data & 0xF;
539 pba_num[4] = (pba_ptr >> 12) & 0xF;
540 pba_num[5] = (pba_ptr >> 8) & 0xF;
541 pba_num[6] = '-';
542 pba_num[7] = 0;
543 pba_num[8] = (pba_ptr >> 4) & 0xF;
544 pba_num[9] = pba_ptr & 0xF;
545
546 /* put a null character on the end of our string */
547 pba_num[10] = '\0';
548
549 /* switch all the data but the '-' to hex char */
550 for (offset = 0; offset < 10; offset++) {
551 if (pba_num[offset] < 0xA)
552 pba_num[offset] += '0';
553 else if (pba_num[offset] < 0x10)
554 pba_num[offset] += 'A' - 0xA;
555 }
556
557 return 0;
558 }
559
560 ret_val = hw->eeprom.ops.read(hw, pba_ptr, &length);
561 if (ret_val) {
562 hw_dbg(hw, "NVM Read Error\n");
563 return ret_val;
564 }
565
566 if (length == 0xFFFF || length == 0) {
567 hw_dbg(hw, "NVM PBA number section invalid length\n");
568 return IXGBE_ERR_PBA_SECTION;
569 }
570
571 /* check if pba_num buffer is big enough */
572 if (pba_num_size < (((u32)length * 2) - 1)) {
573 hw_dbg(hw, "PBA string buffer too small\n");
574 return IXGBE_ERR_NO_SPACE;
575 }
576
577 /* trim pba length from start of string */
578 pba_ptr++;
579 length--;
580
581 for (offset = 0; offset < length; offset++) {
582 ret_val = hw->eeprom.ops.read(hw, pba_ptr + offset, &data);
583 if (ret_val) {
584 hw_dbg(hw, "NVM Read Error\n");
585 return ret_val;
586 }
587 pba_num[offset * 2] = (u8)(data >> 8);
588 pba_num[(offset * 2) + 1] = (u8)(data & 0xFF);
589 }
590 pba_num[offset * 2] = '\0';
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700591
592 return 0;
593}
594
595/**
596 * ixgbe_get_mac_addr_generic - Generic get MAC address
Auke Kok9a799d72007-09-15 14:07:45 -0700597 * @hw: pointer to hardware structure
598 * @mac_addr: Adapter MAC address
599 *
600 * Reads the adapter's MAC address from first Receive Address Register (RAR0)
601 * A reset of the adapter must be performed prior to calling this function
602 * in order for the MAC address to have been loaded from the EEPROM into RAR0
603 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700604s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr)
Auke Kok9a799d72007-09-15 14:07:45 -0700605{
606 u32 rar_high;
607 u32 rar_low;
608 u16 i;
609
610 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0));
611 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0));
612
613 for (i = 0; i < 4; i++)
614 mac_addr[i] = (u8)(rar_low >> (i*8));
615
616 for (i = 0; i < 2; i++)
617 mac_addr[i+4] = (u8)(rar_high >> (i*8));
618
619 return 0;
620}
621
Jacob Kelleref1889d2013-02-15 09:18:15 +0000622enum ixgbe_bus_width ixgbe_convert_bus_width(u16 link_status)
623{
624 switch (link_status & IXGBE_PCI_LINK_WIDTH) {
625 case IXGBE_PCI_LINK_WIDTH_1:
626 return ixgbe_bus_width_pcie_x1;
627 case IXGBE_PCI_LINK_WIDTH_2:
628 return ixgbe_bus_width_pcie_x2;
629 case IXGBE_PCI_LINK_WIDTH_4:
630 return ixgbe_bus_width_pcie_x4;
631 case IXGBE_PCI_LINK_WIDTH_8:
632 return ixgbe_bus_width_pcie_x8;
633 default:
634 return ixgbe_bus_width_unknown;
635 }
636}
637
638enum ixgbe_bus_speed ixgbe_convert_bus_speed(u16 link_status)
639{
640 switch (link_status & IXGBE_PCI_LINK_SPEED) {
641 case IXGBE_PCI_LINK_SPEED_2500:
642 return ixgbe_bus_speed_2500;
643 case IXGBE_PCI_LINK_SPEED_5000:
644 return ixgbe_bus_speed_5000;
645 case IXGBE_PCI_LINK_SPEED_8000:
646 return ixgbe_bus_speed_8000;
647 default:
648 return ixgbe_bus_speed_unknown;
649 }
650}
651
Auke Kok9a799d72007-09-15 14:07:45 -0700652/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000653 * ixgbe_get_bus_info_generic - Generic set PCI bus info
654 * @hw: pointer to hardware structure
655 *
656 * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
657 **/
658s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw)
659{
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000660 u16 link_status;
661
662 hw->bus.type = ixgbe_bus_type_pci_express;
663
664 /* Get the negotiated link width and speed from PCI config space */
Jacob Keller0d7c6e02014-02-22 01:23:58 +0000665 link_status = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_LINK_STATUS);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000666
Jacob Kelleref1889d2013-02-15 09:18:15 +0000667 hw->bus.width = ixgbe_convert_bus_width(link_status);
668 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000669
Jacob Keller0d7c6e02014-02-22 01:23:58 +0000670 hw->mac.ops.set_lan_id(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000671
672 return 0;
673}
674
675/**
676 * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices
677 * @hw: pointer to the HW structure
678 *
679 * Determines the LAN function id by reading memory-mapped registers
680 * and swaps the port value if requested.
681 **/
682void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw)
683{
684 struct ixgbe_bus_info *bus = &hw->bus;
Mark Rustadc898fe22016-04-01 12:18:20 -0700685 u16 ee_ctrl_4;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000686 u32 reg;
687
688 reg = IXGBE_READ_REG(hw, IXGBE_STATUS);
689 bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT;
690 bus->lan_id = bus->func;
691
692 /* check for a port swap */
Don Skidmore9a900ec2015-06-09 17:15:01 -0700693 reg = IXGBE_READ_REG(hw, IXGBE_FACTPS(hw));
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000694 if (reg & IXGBE_FACTPS_LFS)
695 bus->func ^= 0x1;
Mark Rustadc898fe22016-04-01 12:18:20 -0700696
697 /* Get MAC instance from EEPROM for configuring CS4227 */
698 if (hw->device_id == IXGBE_DEV_ID_X550EM_A_SFP) {
699 hw->eeprom.ops.read(hw, IXGBE_EEPROM_CTRL_4, &ee_ctrl_4);
700 bus->instance_id = (ee_ctrl_4 & IXGBE_EE_CTRL_4_INST_ID) >>
701 IXGBE_EE_CTRL_4_INST_ID_SHIFT;
702 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000703}
704
705/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700706 * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units
Auke Kok9a799d72007-09-15 14:07:45 -0700707 * @hw: pointer to hardware structure
708 *
709 * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
710 * disables transmit and receive units. The adapter_stopped flag is used by
711 * the shared code and drivers to determine if the adapter is in a stopped
712 * state and should not touch the hardware.
713 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700714s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700715{
Auke Kok9a799d72007-09-15 14:07:45 -0700716 u32 reg_val;
717 u16 i;
718
719 /*
720 * Set the adapter_stopped flag so other driver functions stop touching
721 * the hardware
722 */
723 hw->adapter_stopped = true;
724
725 /* Disable the receive unit */
Don Skidmore1f9ac572015-03-13 13:54:30 -0700726 hw->mac.ops.disable_rx(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700727
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000728 /* Clear interrupt mask to stop interrupts from being generated */
Auke Kok9a799d72007-09-15 14:07:45 -0700729 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
730
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000731 /* Clear any pending interrupts, flush previous writes */
Auke Kok9a799d72007-09-15 14:07:45 -0700732 IXGBE_READ_REG(hw, IXGBE_EICR);
733
734 /* Disable the transmit unit. Each queue must be disabled. */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000735 for (i = 0; i < hw->mac.max_tx_queues; i++)
736 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), IXGBE_TXDCTL_SWFLSH);
737
738 /* Disable the receive unit by stopping each queue */
739 for (i = 0; i < hw->mac.max_rx_queues; i++) {
740 reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
741 reg_val &= ~IXGBE_RXDCTL_ENABLE;
742 reg_val |= IXGBE_RXDCTL_SWFLSH;
743 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700744 }
745
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000746 /* flush all queues disables */
747 IXGBE_WRITE_FLUSH(hw);
748 usleep_range(1000, 2000);
749
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700750 /*
751 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
752 * access and verify no pending requests
753 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000754 return ixgbe_disable_pcie_master(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700755}
756
757/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700758 * ixgbe_led_on_generic - Turns on the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700759 * @hw: pointer to hardware structure
760 * @index: led number to turn on
761 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700762s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700763{
764 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
765
766 /* To turn on the LED, set mode to ON. */
767 led_reg &= ~IXGBE_LED_MODE_MASK(index);
768 led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index);
769 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700770 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700771
772 return 0;
773}
774
775/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700776 * ixgbe_led_off_generic - Turns off the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700777 * @hw: pointer to hardware structure
778 * @index: led number to turn off
779 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700780s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700781{
782 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
783
784 /* To turn off the LED, set mode to OFF. */
785 led_reg &= ~IXGBE_LED_MODE_MASK(index);
786 led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index);
787 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700788 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700789
790 return 0;
791}
792
Auke Kok9a799d72007-09-15 14:07:45 -0700793/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700794 * ixgbe_init_eeprom_params_generic - Initialize EEPROM params
Auke Kok9a799d72007-09-15 14:07:45 -0700795 * @hw: pointer to hardware structure
796 *
797 * Initializes the EEPROM parameters ixgbe_eeprom_info within the
798 * ixgbe_hw struct in order to set up EEPROM access.
799 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700800s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700801{
802 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
803 u32 eec;
804 u16 eeprom_size;
805
806 if (eeprom->type == ixgbe_eeprom_uninitialized) {
807 eeprom->type = ixgbe_eeprom_none;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700808 /* Set default semaphore delay to 10ms which is a well
809 * tested value */
810 eeprom->semaphore_delay = 10;
Emil Tantilov68c70052011-04-20 08:49:06 +0000811 /* Clear EEPROM page size, it will be initialized as needed */
812 eeprom->word_page_size = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700813
814 /*
815 * Check for EEPROM present first.
816 * If not present leave as none
817 */
Don Skidmore9a900ec2015-06-09 17:15:01 -0700818 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Auke Kok9a799d72007-09-15 14:07:45 -0700819 if (eec & IXGBE_EEC_PRES) {
820 eeprom->type = ixgbe_eeprom_spi;
821
822 /*
823 * SPI EEPROM is assumed here. This code would need to
824 * change if a future EEPROM is not SPI.
825 */
826 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
827 IXGBE_EEC_SIZE_SHIFT);
Jacob Kellerb4f47a42016-04-13 16:08:22 -0700828 eeprom->word_size = BIT(eeprom_size +
829 IXGBE_EEPROM_WORD_SIZE_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -0700830 }
831
832 if (eec & IXGBE_EEC_ADDR_SIZE)
833 eeprom->address_bits = 16;
834 else
835 eeprom->address_bits = 8;
Jacob Keller6ec1b712014-04-09 06:03:13 +0000836 hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: %d\n",
837 eeprom->type, eeprom->word_size, eeprom->address_bits);
Auke Kok9a799d72007-09-15 14:07:45 -0700838 }
839
840 return 0;
841}
842
843/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000844 * ixgbe_write_eeprom_buffer_bit_bang_generic - Write EEPROM using bit-bang
845 * @hw: pointer to hardware structure
846 * @offset: offset within the EEPROM to write
847 * @words: number of words
848 * @data: 16 bit word(s) to write to EEPROM
849 *
850 * Reads 16 bit word(s) from EEPROM through bit-bang method
851 **/
852s32 ixgbe_write_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
853 u16 words, u16 *data)
854{
Mark Rustade90dd262014-07-22 06:51:08 +0000855 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +0000856 u16 i, count;
857
858 hw->eeprom.ops.init_params(hw);
859
Mark Rustade90dd262014-07-22 06:51:08 +0000860 if (words == 0)
861 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +0000862
Mark Rustade90dd262014-07-22 06:51:08 +0000863 if (offset + words > hw->eeprom.word_size)
864 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +0000865
866 /*
867 * The EEPROM page size cannot be queried from the chip. We do lazy
868 * initialization. It is worth to do that when we write large buffer.
869 */
870 if ((hw->eeprom.word_page_size == 0) &&
871 (words > IXGBE_EEPROM_PAGE_SIZE_MAX))
872 ixgbe_detect_eeprom_page_size_generic(hw, offset);
873
874 /*
875 * We cannot hold synchronization semaphores for too long
876 * to avoid other entity starvation. However it is more efficient
877 * to read in bursts than synchronizing access for each word.
878 */
879 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
880 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
881 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
882 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset + i,
883 count, &data[i]);
884
885 if (status != 0)
886 break;
887 }
888
Emil Tantilov68c70052011-04-20 08:49:06 +0000889 return status;
890}
891
892/**
893 * ixgbe_write_eeprom_buffer_bit_bang - Writes 16 bit word(s) to EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000894 * @hw: pointer to hardware structure
895 * @offset: offset within the EEPROM to be written to
Emil Tantilov68c70052011-04-20 08:49:06 +0000896 * @words: number of word(s)
897 * @data: 16 bit word(s) to be written to the EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000898 *
899 * If ixgbe_eeprom_update_checksum is not called after this function, the
900 * EEPROM will most likely contain an invalid checksum.
901 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000902static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
903 u16 words, u16 *data)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000904{
905 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +0000906 u16 word;
907 u16 page_size;
908 u16 i;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000909 u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI;
910
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000911 /* Prepare the EEPROM for writing */
912 status = ixgbe_acquire_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +0000913 if (status)
914 return status;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000915
Mark Rustade90dd262014-07-22 06:51:08 +0000916 if (ixgbe_ready_eeprom(hw) != 0) {
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000917 ixgbe_release_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +0000918 return IXGBE_ERR_EEPROM;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000919 }
920
Mark Rustade90dd262014-07-22 06:51:08 +0000921 for (i = 0; i < words; i++) {
922 ixgbe_standby_eeprom(hw);
923
924 /* Send the WRITE ENABLE command (8 bit opcode) */
925 ixgbe_shift_out_eeprom_bits(hw,
926 IXGBE_EEPROM_WREN_OPCODE_SPI,
927 IXGBE_EEPROM_OPCODE_BITS);
928
929 ixgbe_standby_eeprom(hw);
930
931 /* Some SPI eeproms use the 8th address bit embedded
932 * in the opcode
933 */
934 if ((hw->eeprom.address_bits == 8) &&
935 ((offset + i) >= 128))
936 write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
937
938 /* Send the Write command (8-bit opcode + addr) */
939 ixgbe_shift_out_eeprom_bits(hw, write_opcode,
940 IXGBE_EEPROM_OPCODE_BITS);
941 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
942 hw->eeprom.address_bits);
943
944 page_size = hw->eeprom.word_page_size;
945
946 /* Send the data in burst via SPI */
947 do {
948 word = data[i];
949 word = (word >> 8) | (word << 8);
950 ixgbe_shift_out_eeprom_bits(hw, word, 16);
951
952 if (page_size == 0)
953 break;
954
955 /* do not wrap around page */
956 if (((offset + i) & (page_size - 1)) ==
957 (page_size - 1))
958 break;
959 } while (++i < words);
960
961 ixgbe_standby_eeprom(hw);
962 usleep_range(10000, 20000);
963 }
964 /* Done with writing - release the EEPROM */
965 ixgbe_release_eeprom(hw);
966
967 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000968}
969
970/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000971 * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700972 * @hw: pointer to hardware structure
Emil Tantilov68c70052011-04-20 08:49:06 +0000973 * @offset: offset within the EEPROM to be written to
974 * @data: 16 bit word to be written to the EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700975 *
Emil Tantilov68c70052011-04-20 08:49:06 +0000976 * If ixgbe_eeprom_update_checksum is not called after this function, the
977 * EEPROM will most likely contain an invalid checksum.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700978 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000979s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700980{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700981 hw->eeprom.ops.init_params(hw);
982
Mark Rustade90dd262014-07-22 06:51:08 +0000983 if (offset >= hw->eeprom.word_size)
984 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700985
Mark Rustade90dd262014-07-22 06:51:08 +0000986 return ixgbe_write_eeprom_buffer_bit_bang(hw, offset, 1, &data);
Emil Tantilov68c70052011-04-20 08:49:06 +0000987}
988
989/**
990 * ixgbe_read_eeprom_buffer_bit_bang_generic - Read EEPROM using bit-bang
991 * @hw: pointer to hardware structure
992 * @offset: offset within the EEPROM to be read
993 * @words: number of word(s)
994 * @data: read 16 bit words(s) from EEPROM
995 *
996 * Reads 16 bit word(s) from EEPROM through bit-bang method
997 **/
998s32 ixgbe_read_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
999 u16 words, u16 *data)
1000{
Mark Rustade90dd262014-07-22 06:51:08 +00001001 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001002 u16 i, count;
1003
1004 hw->eeprom.ops.init_params(hw);
1005
Mark Rustade90dd262014-07-22 06:51:08 +00001006 if (words == 0)
1007 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +00001008
Mark Rustade90dd262014-07-22 06:51:08 +00001009 if (offset + words > hw->eeprom.word_size)
1010 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +00001011
1012 /*
1013 * We cannot hold synchronization semaphores for too long
1014 * to avoid other entity starvation. However it is more efficient
1015 * to read in bursts than synchronizing access for each word.
1016 */
1017 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
1018 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
1019 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
1020
1021 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset + i,
1022 count, &data[i]);
1023
Mark Rustade90dd262014-07-22 06:51:08 +00001024 if (status)
1025 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001026 }
1027
Mark Rustade90dd262014-07-22 06:51:08 +00001028 return 0;
Emil Tantilov68c70052011-04-20 08:49:06 +00001029}
1030
1031/**
1032 * ixgbe_read_eeprom_buffer_bit_bang - Read EEPROM using bit-bang
1033 * @hw: pointer to hardware structure
1034 * @offset: offset within the EEPROM to be read
1035 * @words: number of word(s)
1036 * @data: read 16 bit word(s) from EEPROM
1037 *
1038 * Reads 16 bit word(s) from EEPROM through bit-bang method
1039 **/
1040static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
1041 u16 words, u16 *data)
1042{
1043 s32 status;
1044 u16 word_in;
1045 u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI;
1046 u16 i;
1047
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001048 /* Prepare the EEPROM for reading */
1049 status = ixgbe_acquire_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +00001050 if (status)
1051 return status;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001052
Mark Rustade90dd262014-07-22 06:51:08 +00001053 if (ixgbe_ready_eeprom(hw) != 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001054 ixgbe_release_eeprom(hw);
Mark Rustade90dd262014-07-22 06:51:08 +00001055 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001056 }
1057
Mark Rustade90dd262014-07-22 06:51:08 +00001058 for (i = 0; i < words; i++) {
1059 ixgbe_standby_eeprom(hw);
1060 /* Some SPI eeproms use the 8th address bit embedded
1061 * in the opcode
1062 */
1063 if ((hw->eeprom.address_bits == 8) &&
1064 ((offset + i) >= 128))
1065 read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
1066
1067 /* Send the READ command (opcode + addr) */
1068 ixgbe_shift_out_eeprom_bits(hw, read_opcode,
1069 IXGBE_EEPROM_OPCODE_BITS);
1070 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
1071 hw->eeprom.address_bits);
1072
1073 /* Read the data. */
1074 word_in = ixgbe_shift_in_eeprom_bits(hw, 16);
1075 data[i] = (word_in >> 8) | (word_in << 8);
1076 }
1077
1078 /* End this read operation */
1079 ixgbe_release_eeprom(hw);
1080
1081 return 0;
Emil Tantilov68c70052011-04-20 08:49:06 +00001082}
1083
1084/**
1085 * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang
1086 * @hw: pointer to hardware structure
1087 * @offset: offset within the EEPROM to be read
1088 * @data: read 16 bit value from EEPROM
1089 *
1090 * Reads 16 bit value from EEPROM through bit-bang method
1091 **/
1092s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1093 u16 *data)
1094{
Emil Tantilov68c70052011-04-20 08:49:06 +00001095 hw->eeprom.ops.init_params(hw);
1096
Mark Rustade90dd262014-07-22 06:51:08 +00001097 if (offset >= hw->eeprom.word_size)
1098 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +00001099
Mark Rustade90dd262014-07-22 06:51:08 +00001100 return ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
Emil Tantilov68c70052011-04-20 08:49:06 +00001101}
1102
1103/**
1104 * ixgbe_read_eerd_buffer_generic - Read EEPROM word(s) using EERD
1105 * @hw: pointer to hardware structure
1106 * @offset: offset of word in the EEPROM to read
1107 * @words: number of word(s)
1108 * @data: 16 bit word(s) from the EEPROM
1109 *
1110 * Reads a 16 bit word(s) from the EEPROM using the EERD register.
1111 **/
1112s32 ixgbe_read_eerd_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1113 u16 words, u16 *data)
1114{
1115 u32 eerd;
Mark Rustade90dd262014-07-22 06:51:08 +00001116 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001117 u32 i;
1118
1119 hw->eeprom.ops.init_params(hw);
1120
Mark Rustade90dd262014-07-22 06:51:08 +00001121 if (words == 0)
1122 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +00001123
Mark Rustade90dd262014-07-22 06:51:08 +00001124 if (offset >= hw->eeprom.word_size)
1125 return IXGBE_ERR_EEPROM;
Emil Tantilov68c70052011-04-20 08:49:06 +00001126
1127 for (i = 0; i < words; i++) {
Emil Tantilovd0111572013-02-05 09:43:26 +00001128 eerd = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
Emil Tantilov68c70052011-04-20 08:49:06 +00001129 IXGBE_EEPROM_RW_REG_START;
1130
1131 IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd);
1132 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_READ);
1133
1134 if (status == 0) {
1135 data[i] = (IXGBE_READ_REG(hw, IXGBE_EERD) >>
1136 IXGBE_EEPROM_RW_REG_DATA);
1137 } else {
1138 hw_dbg(hw, "Eeprom read timed out\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001139 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001140 }
1141 }
Mark Rustade90dd262014-07-22 06:51:08 +00001142
1143 return 0;
Emil Tantilov68c70052011-04-20 08:49:06 +00001144}
1145
1146/**
1147 * ixgbe_detect_eeprom_page_size_generic - Detect EEPROM page size
1148 * @hw: pointer to hardware structure
1149 * @offset: offset within the EEPROM to be used as a scratch pad
1150 *
1151 * Discover EEPROM page size by writing marching data at given offset.
1152 * This function is called only when we are writing a new large buffer
1153 * at given offset so the data would be overwritten anyway.
1154 **/
1155static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
1156 u16 offset)
1157{
1158 u16 data[IXGBE_EEPROM_PAGE_SIZE_MAX];
Mark Rustade90dd262014-07-22 06:51:08 +00001159 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001160 u16 i;
1161
1162 for (i = 0; i < IXGBE_EEPROM_PAGE_SIZE_MAX; i++)
1163 data[i] = i;
1164
1165 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX;
1166 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset,
1167 IXGBE_EEPROM_PAGE_SIZE_MAX, data);
1168 hw->eeprom.word_page_size = 0;
Mark Rustade90dd262014-07-22 06:51:08 +00001169 if (status)
1170 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001171
1172 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
Mark Rustade90dd262014-07-22 06:51:08 +00001173 if (status)
1174 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001175
1176 /*
1177 * When writing in burst more than the actual page size
1178 * EEPROM address wraps around current page.
1179 */
1180 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX - data[0];
1181
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +00001182 hw_dbg(hw, "Detected EEPROM page size = %d words.\n",
Emil Tantilov68c70052011-04-20 08:49:06 +00001183 hw->eeprom.word_page_size);
Mark Rustade90dd262014-07-22 06:51:08 +00001184 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001185}
1186
1187/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001188 * ixgbe_read_eerd_generic - Read EEPROM word using EERD
Auke Kok9a799d72007-09-15 14:07:45 -07001189 * @hw: pointer to hardware structure
1190 * @offset: offset of word in the EEPROM to read
1191 * @data: word read from the EEPROM
1192 *
1193 * Reads a 16 bit word from the EEPROM using the EERD register.
1194 **/
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001195s32 ixgbe_read_eerd_generic(struct ixgbe_hw *hw, u16 offset, u16 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001196{
Emil Tantilov68c70052011-04-20 08:49:06 +00001197 return ixgbe_read_eerd_buffer_generic(hw, offset, 1, data);
1198}
1199
1200/**
1201 * ixgbe_write_eewr_buffer_generic - Write EEPROM word(s) using EEWR
1202 * @hw: pointer to hardware structure
1203 * @offset: offset of word in the EEPROM to write
1204 * @words: number of words
1205 * @data: word(s) write to the EEPROM
1206 *
1207 * Write a 16 bit word(s) to the EEPROM using the EEWR register.
1208 **/
1209s32 ixgbe_write_eewr_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1210 u16 words, u16 *data)
1211{
1212 u32 eewr;
Mark Rustade90dd262014-07-22 06:51:08 +00001213 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001214 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07001215
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001216 hw->eeprom.ops.init_params(hw);
1217
Mark Rustade90dd262014-07-22 06:51:08 +00001218 if (words == 0)
1219 return IXGBE_ERR_INVALID_ARGUMENT;
Emil Tantilov68c70052011-04-20 08:49:06 +00001220
Mark Rustade90dd262014-07-22 06:51:08 +00001221 if (offset >= hw->eeprom.word_size)
1222 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001223
Emil Tantilov68c70052011-04-20 08:49:06 +00001224 for (i = 0; i < words; i++) {
1225 eewr = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
1226 (data[i] << IXGBE_EEPROM_RW_REG_DATA) |
1227 IXGBE_EEPROM_RW_REG_START;
Auke Kok9a799d72007-09-15 14:07:45 -07001228
Emil Tantilov68c70052011-04-20 08:49:06 +00001229 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
Mark Rustade90dd262014-07-22 06:51:08 +00001230 if (status) {
Emil Tantilov68c70052011-04-20 08:49:06 +00001231 hw_dbg(hw, "Eeprom write EEWR timed out\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001232 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001233 }
Auke Kok9a799d72007-09-15 14:07:45 -07001234
Emil Tantilov68c70052011-04-20 08:49:06 +00001235 IXGBE_WRITE_REG(hw, IXGBE_EEWR, eewr);
1236
1237 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
Mark Rustade90dd262014-07-22 06:51:08 +00001238 if (status) {
Emil Tantilov68c70052011-04-20 08:49:06 +00001239 hw_dbg(hw, "Eeprom write EEWR timed out\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001240 return status;
Emil Tantilov68c70052011-04-20 08:49:06 +00001241 }
1242 }
Auke Kok9a799d72007-09-15 14:07:45 -07001243
Mark Rustade90dd262014-07-22 06:51:08 +00001244 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001245}
1246
1247/**
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001248 * ixgbe_write_eewr_generic - Write EEPROM word using EEWR
1249 * @hw: pointer to hardware structure
1250 * @offset: offset of word in the EEPROM to write
1251 * @data: word write to the EEPROM
1252 *
1253 * Write a 16 bit word to the EEPROM using the EEWR register.
1254 **/
1255s32 ixgbe_write_eewr_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
1256{
Emil Tantilov68c70052011-04-20 08:49:06 +00001257 return ixgbe_write_eewr_buffer_generic(hw, offset, 1, &data);
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001258}
1259
1260/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001261 * ixgbe_poll_eerd_eewr_done - Poll EERD read or EEWR write status
Auke Kok9a799d72007-09-15 14:07:45 -07001262 * @hw: pointer to hardware structure
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001263 * @ee_reg: EEPROM flag for polling
Auke Kok9a799d72007-09-15 14:07:45 -07001264 *
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001265 * Polls the status bit (bit 1) of the EERD or EEWR to determine when the
1266 * read or write is done respectively.
Auke Kok9a799d72007-09-15 14:07:45 -07001267 **/
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001268static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg)
Auke Kok9a799d72007-09-15 14:07:45 -07001269{
1270 u32 i;
1271 u32 reg;
Auke Kok9a799d72007-09-15 14:07:45 -07001272
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001273 for (i = 0; i < IXGBE_EERD_EEWR_ATTEMPTS; i++) {
1274 if (ee_reg == IXGBE_NVM_POLL_READ)
1275 reg = IXGBE_READ_REG(hw, IXGBE_EERD);
1276 else
1277 reg = IXGBE_READ_REG(hw, IXGBE_EEWR);
1278
1279 if (reg & IXGBE_EEPROM_RW_REG_DONE) {
Mark Rustade90dd262014-07-22 06:51:08 +00001280 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001281 }
1282 udelay(5);
1283 }
Mark Rustade90dd262014-07-22 06:51:08 +00001284 return IXGBE_ERR_EEPROM;
Auke Kok9a799d72007-09-15 14:07:45 -07001285}
1286
1287/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001288 * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang
1289 * @hw: pointer to hardware structure
1290 *
1291 * Prepares EEPROM for access using bit-bang method. This function should
1292 * be called before issuing a command to the EEPROM.
1293 **/
1294static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw)
1295{
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001296 u32 eec;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001297 u32 i;
1298
Don Skidmore5e655102011-02-25 01:58:04 +00001299 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0)
Mark Rustade90dd262014-07-22 06:51:08 +00001300 return IXGBE_ERR_SWFW_SYNC;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001301
Don Skidmore9a900ec2015-06-09 17:15:01 -07001302 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001303
1304 /* Request EEPROM Access */
1305 eec |= IXGBE_EEC_REQ;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001306 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Mark Rustade90dd262014-07-22 06:51:08 +00001307
1308 for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) {
Don Skidmore9a900ec2015-06-09 17:15:01 -07001309 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001310 if (eec & IXGBE_EEC_GNT)
1311 break;
1312 udelay(5);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001313 }
Mark Rustade90dd262014-07-22 06:51:08 +00001314
1315 /* Release if grant not acquired */
1316 if (!(eec & IXGBE_EEC_GNT)) {
1317 eec &= ~IXGBE_EEC_REQ;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001318 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Mark Rustade90dd262014-07-22 06:51:08 +00001319 hw_dbg(hw, "Could not acquire EEPROM grant\n");
1320
1321 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1322 return IXGBE_ERR_EEPROM;
1323 }
1324
1325 /* Setup EEPROM for Read/Write */
1326 /* Clear CS and SK */
1327 eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK);
Don Skidmore9a900ec2015-06-09 17:15:01 -07001328 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Mark Rustade90dd262014-07-22 06:51:08 +00001329 IXGBE_WRITE_FLUSH(hw);
1330 udelay(1);
1331 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001332}
1333
1334/**
Auke Kok9a799d72007-09-15 14:07:45 -07001335 * ixgbe_get_eeprom_semaphore - Get hardware semaphore
1336 * @hw: pointer to hardware structure
1337 *
1338 * Sets the hardware semaphores so EEPROM access can occur for bit-bang method
1339 **/
1340static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw)
1341{
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001342 u32 timeout = 2000;
Auke Kok9a799d72007-09-15 14:07:45 -07001343 u32 i;
1344 u32 swsm;
1345
Auke Kok9a799d72007-09-15 14:07:45 -07001346 /* Get SMBI software semaphore between device drivers first */
1347 for (i = 0; i < timeout; i++) {
1348 /*
1349 * If the SMBI bit is 0 when we read it, then the bit will be
1350 * set and we have the semaphore
1351 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001352 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001353 if (!(swsm & IXGBE_SWSM_SMBI))
Auke Kok9a799d72007-09-15 14:07:45 -07001354 break;
Mark Rustadd819fc52014-07-22 06:50:36 +00001355 usleep_range(50, 100);
Auke Kok9a799d72007-09-15 14:07:45 -07001356 }
1357
Emil Tantilov51275d32011-04-08 01:23:59 +00001358 if (i == timeout) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001359 hw_dbg(hw, "Driver can't access the Eeprom - SMBI Semaphore not granted.\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001360 /* this release is particularly important because our attempts
Emil Tantilov51275d32011-04-08 01:23:59 +00001361 * above to get the semaphore may have succeeded, and if there
1362 * was a timeout, we should unconditionally clear the semaphore
1363 * bits to free the driver to make progress
1364 */
1365 ixgbe_release_eeprom_semaphore(hw);
1366
Mark Rustadd819fc52014-07-22 06:50:36 +00001367 usleep_range(50, 100);
Mark Rustade90dd262014-07-22 06:51:08 +00001368 /* one last try
Emil Tantilov51275d32011-04-08 01:23:59 +00001369 * If the SMBI bit is 0 when we read it, then the bit will be
1370 * set and we have the semaphore
1371 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001372 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001373 if (swsm & IXGBE_SWSM_SMBI) {
1374 hw_dbg(hw, "Software semaphore SMBI between device drivers not granted.\n");
1375 return IXGBE_ERR_EEPROM;
1376 }
Emil Tantilov51275d32011-04-08 01:23:59 +00001377 }
1378
Auke Kok9a799d72007-09-15 14:07:45 -07001379 /* Now get the semaphore between SW/FW through the SWESMBI bit */
Mark Rustade90dd262014-07-22 06:51:08 +00001380 for (i = 0; i < timeout; i++) {
Don Skidmore9a900ec2015-06-09 17:15:01 -07001381 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Auke Kok9a799d72007-09-15 14:07:45 -07001382
Mark Rustade90dd262014-07-22 06:51:08 +00001383 /* Set the SW EEPROM semaphore bit to request access */
1384 swsm |= IXGBE_SWSM_SWESMBI;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001385 IXGBE_WRITE_REG(hw, IXGBE_SWSM(hw), swsm);
Auke Kok9a799d72007-09-15 14:07:45 -07001386
Mark Rustade90dd262014-07-22 06:51:08 +00001387 /* If we set the bit successfully then we got the
1388 * semaphore.
Auke Kok9a799d72007-09-15 14:07:45 -07001389 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001390 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Mark Rustade90dd262014-07-22 06:51:08 +00001391 if (swsm & IXGBE_SWSM_SWESMBI)
1392 break;
1393
1394 usleep_range(50, 100);
Auke Kok9a799d72007-09-15 14:07:45 -07001395 }
1396
Mark Rustade90dd262014-07-22 06:51:08 +00001397 /* Release semaphores and return error if SW EEPROM semaphore
1398 * was not granted because we don't have access to the EEPROM
1399 */
1400 if (i >= timeout) {
1401 hw_dbg(hw, "SWESMBI Software EEPROM semaphore not granted.\n");
1402 ixgbe_release_eeprom_semaphore(hw);
1403 return IXGBE_ERR_EEPROM;
1404 }
1405
1406 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001407}
1408
1409/**
1410 * ixgbe_release_eeprom_semaphore - Release hardware semaphore
1411 * @hw: pointer to hardware structure
1412 *
1413 * This function clears hardware semaphore bits.
1414 **/
1415static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw)
1416{
1417 u32 swsm;
1418
Don Skidmore9a900ec2015-06-09 17:15:01 -07001419 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw));
Auke Kok9a799d72007-09-15 14:07:45 -07001420
1421 /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */
1422 swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI);
Don Skidmore9a900ec2015-06-09 17:15:01 -07001423 IXGBE_WRITE_REG(hw, IXGBE_SWSM(hw), swsm);
Auke Kok3957d632007-10-31 15:22:10 -07001424 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001425}
1426
1427/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001428 * ixgbe_ready_eeprom - Polls for EEPROM ready
1429 * @hw: pointer to hardware structure
1430 **/
1431static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw)
1432{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001433 u16 i;
1434 u8 spi_stat_reg;
1435
1436 /*
1437 * Read "Status Register" repeatedly until the LSB is cleared. The
1438 * EEPROM will signal that the command has been completed by clearing
1439 * bit 0 of the internal status register. If it's not cleared within
1440 * 5 milliseconds, then error out.
1441 */
1442 for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) {
1443 ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001444 IXGBE_EEPROM_OPCODE_BITS);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001445 spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8);
1446 if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI))
1447 break;
1448
1449 udelay(5);
1450 ixgbe_standby_eeprom(hw);
Joe Perches6403eab2011-06-03 11:51:20 +00001451 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001452
1453 /*
1454 * On some parts, SPI write time could vary from 0-20mSec on 3.3V
1455 * devices (and only 0-5mSec on 5V devices)
1456 */
1457 if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) {
1458 hw_dbg(hw, "SPI EEPROM Status error\n");
Mark Rustade90dd262014-07-22 06:51:08 +00001459 return IXGBE_ERR_EEPROM;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001460 }
1461
Mark Rustade90dd262014-07-22 06:51:08 +00001462 return 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001463}
1464
1465/**
1466 * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state
1467 * @hw: pointer to hardware structure
1468 **/
1469static void ixgbe_standby_eeprom(struct ixgbe_hw *hw)
1470{
1471 u32 eec;
1472
Don Skidmore9a900ec2015-06-09 17:15:01 -07001473 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001474
1475 /* Toggle CS to flush commands */
1476 eec |= IXGBE_EEC_CS;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001477 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001478 IXGBE_WRITE_FLUSH(hw);
1479 udelay(1);
1480 eec &= ~IXGBE_EEC_CS;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001481 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001482 IXGBE_WRITE_FLUSH(hw);
1483 udelay(1);
1484}
1485
1486/**
1487 * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM.
1488 * @hw: pointer to hardware structure
1489 * @data: data to send to the EEPROM
1490 * @count: number of bits to shift out
1491 **/
1492static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001493 u16 count)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001494{
1495 u32 eec;
1496 u32 mask;
1497 u32 i;
1498
Don Skidmore9a900ec2015-06-09 17:15:01 -07001499 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001500
1501 /*
1502 * Mask is used to shift "count" bits of "data" out to the EEPROM
1503 * one bit at a time. Determine the starting bit based on count
1504 */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07001505 mask = BIT(count - 1);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001506
1507 for (i = 0; i < count; i++) {
1508 /*
1509 * A "1" is shifted out to the EEPROM by setting bit "DI" to a
1510 * "1", and then raising and then lowering the clock (the SK
1511 * bit controls the clock input to the EEPROM). A "0" is
1512 * shifted out to the EEPROM by setting "DI" to "0" and then
1513 * raising and then lowering the clock.
1514 */
1515 if (data & mask)
1516 eec |= IXGBE_EEC_DI;
1517 else
1518 eec &= ~IXGBE_EEC_DI;
1519
Don Skidmore9a900ec2015-06-09 17:15:01 -07001520 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001521 IXGBE_WRITE_FLUSH(hw);
1522
1523 udelay(1);
1524
1525 ixgbe_raise_eeprom_clk(hw, &eec);
1526 ixgbe_lower_eeprom_clk(hw, &eec);
1527
1528 /*
1529 * Shift mask to signify next bit of data to shift in to the
1530 * EEPROM
1531 */
1532 mask = mask >> 1;
Joe Perches6403eab2011-06-03 11:51:20 +00001533 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001534
1535 /* We leave the "DI" bit set to "0" when we leave this routine. */
1536 eec &= ~IXGBE_EEC_DI;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001537 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001538 IXGBE_WRITE_FLUSH(hw);
1539}
1540
1541/**
1542 * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM
1543 * @hw: pointer to hardware structure
1544 **/
1545static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count)
1546{
1547 u32 eec;
1548 u32 i;
1549 u16 data = 0;
1550
1551 /*
1552 * In order to read a register from the EEPROM, we need to shift
1553 * 'count' bits in from the EEPROM. Bits are "shifted in" by raising
1554 * the clock input to the EEPROM (setting the SK bit), and then reading
1555 * the value of the "DO" bit. During this "shifting in" process the
1556 * "DI" bit should always be clear.
1557 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07001558 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001559
1560 eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI);
1561
1562 for (i = 0; i < count; i++) {
1563 data = data << 1;
1564 ixgbe_raise_eeprom_clk(hw, &eec);
1565
Don Skidmore9a900ec2015-06-09 17:15:01 -07001566 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001567
1568 eec &= ~(IXGBE_EEC_DI);
1569 if (eec & IXGBE_EEC_DO)
1570 data |= 1;
1571
1572 ixgbe_lower_eeprom_clk(hw, &eec);
1573 }
1574
1575 return data;
1576}
1577
1578/**
1579 * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input.
1580 * @hw: pointer to hardware structure
1581 * @eec: EEC register's current value
1582 **/
1583static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1584{
1585 /*
1586 * Raise the clock input to the EEPROM
1587 * (setting the SK bit), then delay
1588 */
1589 *eec = *eec | IXGBE_EEC_SK;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001590 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), *eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001591 IXGBE_WRITE_FLUSH(hw);
1592 udelay(1);
1593}
1594
1595/**
1596 * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input.
1597 * @hw: pointer to hardware structure
1598 * @eecd: EECD's current value
1599 **/
1600static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1601{
1602 /*
1603 * Lower the clock input to the EEPROM (clearing the SK bit), then
1604 * delay
1605 */
1606 *eec = *eec & ~IXGBE_EEC_SK;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001607 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), *eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001608 IXGBE_WRITE_FLUSH(hw);
1609 udelay(1);
1610}
1611
1612/**
1613 * ixgbe_release_eeprom - Release EEPROM, release semaphores
1614 * @hw: pointer to hardware structure
1615 **/
1616static void ixgbe_release_eeprom(struct ixgbe_hw *hw)
1617{
1618 u32 eec;
1619
Don Skidmore9a900ec2015-06-09 17:15:01 -07001620 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001621
1622 eec |= IXGBE_EEC_CS; /* Pull CS high */
1623 eec &= ~IXGBE_EEC_SK; /* Lower SCK */
1624
Don Skidmore9a900ec2015-06-09 17:15:01 -07001625 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001626 IXGBE_WRITE_FLUSH(hw);
1627
1628 udelay(1);
1629
1630 /* Stop requesting EEPROM access */
1631 eec &= ~IXGBE_EEC_REQ;
Don Skidmore9a900ec2015-06-09 17:15:01 -07001632 IXGBE_WRITE_REG(hw, IXGBE_EEC(hw), eec);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001633
Don Skidmore90827992011-03-05 18:59:20 -08001634 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001635
Don Skidmore032b4322011-03-18 09:32:53 +00001636 /*
1637 * Delay before attempt to obtain semaphore again to allow FW
1638 * access. semaphore_delay is in ms we need us for usleep_range
1639 */
1640 usleep_range(hw->eeprom.semaphore_delay * 1000,
1641 hw->eeprom.semaphore_delay * 2000);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001642}
1643
1644/**
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001645 * ixgbe_calc_eeprom_checksum_generic - Calculates and returns the checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001646 * @hw: pointer to hardware structure
1647 **/
Don Skidmore735c35a2014-11-29 05:22:48 +00001648s32 ixgbe_calc_eeprom_checksum_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001649{
1650 u16 i;
1651 u16 j;
1652 u16 checksum = 0;
1653 u16 length = 0;
1654 u16 pointer = 0;
1655 u16 word = 0;
1656
1657 /* Include 0x0-0x3F in the checksum */
1658 for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) {
Don Skidmore735c35a2014-11-29 05:22:48 +00001659 if (hw->eeprom.ops.read(hw, i, &word)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001660 hw_dbg(hw, "EEPROM read failed\n");
1661 break;
1662 }
1663 checksum += word;
1664 }
1665
1666 /* Include all data from pointers except for the fw pointer */
1667 for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) {
Don Skidmore735c35a2014-11-29 05:22:48 +00001668 if (hw->eeprom.ops.read(hw, i, &pointer)) {
1669 hw_dbg(hw, "EEPROM read failed\n");
1670 return IXGBE_ERR_EEPROM;
1671 }
Auke Kok9a799d72007-09-15 14:07:45 -07001672
Don Skidmore735c35a2014-11-29 05:22:48 +00001673 /* If the pointer seems invalid */
1674 if (pointer == 0xFFFF || pointer == 0)
1675 continue;
Auke Kok9a799d72007-09-15 14:07:45 -07001676
Don Skidmore735c35a2014-11-29 05:22:48 +00001677 if (hw->eeprom.ops.read(hw, pointer, &length)) {
1678 hw_dbg(hw, "EEPROM read failed\n");
1679 return IXGBE_ERR_EEPROM;
1680 }
1681
1682 if (length == 0xFFFF || length == 0)
1683 continue;
1684
1685 for (j = pointer + 1; j <= pointer + length; j++) {
1686 if (hw->eeprom.ops.read(hw, j, &word)) {
1687 hw_dbg(hw, "EEPROM read failed\n");
1688 return IXGBE_ERR_EEPROM;
Auke Kok9a799d72007-09-15 14:07:45 -07001689 }
Don Skidmore735c35a2014-11-29 05:22:48 +00001690 checksum += word;
Auke Kok9a799d72007-09-15 14:07:45 -07001691 }
1692 }
1693
1694 checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1695
Don Skidmore735c35a2014-11-29 05:22:48 +00001696 return (s32)checksum;
Auke Kok9a799d72007-09-15 14:07:45 -07001697}
1698
1699/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001700 * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001701 * @hw: pointer to hardware structure
1702 * @checksum_val: calculated checksum
1703 *
1704 * Performs checksum calculation and validates the EEPROM checksum. If the
1705 * caller does not need checksum_val, the value can be NULL.
1706 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001707s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001708 u16 *checksum_val)
Auke Kok9a799d72007-09-15 14:07:45 -07001709{
1710 s32 status;
1711 u16 checksum;
1712 u16 read_checksum = 0;
1713
1714 /*
1715 * Read the first word from the EEPROM. If this times out or fails, do
1716 * not continue or we could be in for a very long wait while every
1717 * EEPROM read fails
1718 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001719 status = hw->eeprom.ops.read(hw, 0, &checksum);
Don Skidmore735c35a2014-11-29 05:22:48 +00001720 if (status) {
Auke Kok9a799d72007-09-15 14:07:45 -07001721 hw_dbg(hw, "EEPROM read failed\n");
Don Skidmore735c35a2014-11-29 05:22:48 +00001722 return status;
Auke Kok9a799d72007-09-15 14:07:45 -07001723 }
1724
Don Skidmore735c35a2014-11-29 05:22:48 +00001725 status = hw->eeprom.ops.calc_checksum(hw);
1726 if (status < 0)
1727 return status;
1728
1729 checksum = (u16)(status & 0xffff);
1730
1731 status = hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum);
1732 if (status) {
1733 hw_dbg(hw, "EEPROM read failed\n");
1734 return status;
1735 }
1736
1737 /* Verify read checksum from EEPROM is the same as
1738 * calculated checksum
1739 */
1740 if (read_checksum != checksum)
1741 status = IXGBE_ERR_EEPROM_CHECKSUM;
1742
1743 /* If the user cares, return the calculated checksum */
1744 if (checksum_val)
1745 *checksum_val = checksum;
1746
Auke Kok9a799d72007-09-15 14:07:45 -07001747 return status;
1748}
1749
1750/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001751 * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum
1752 * @hw: pointer to hardware structure
1753 **/
1754s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw)
1755{
1756 s32 status;
1757 u16 checksum;
1758
1759 /*
1760 * Read the first word from the EEPROM. If this times out or fails, do
1761 * not continue or we could be in for a very long wait while every
1762 * EEPROM read fails
1763 */
1764 status = hw->eeprom.ops.read(hw, 0, &checksum);
Don Skidmore735c35a2014-11-29 05:22:48 +00001765 if (status) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001766 hw_dbg(hw, "EEPROM read failed\n");
Don Skidmore735c35a2014-11-29 05:22:48 +00001767 return status;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001768 }
1769
Don Skidmore735c35a2014-11-29 05:22:48 +00001770 status = hw->eeprom.ops.calc_checksum(hw);
1771 if (status < 0)
1772 return status;
1773
1774 checksum = (u16)(status & 0xffff);
1775
1776 status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM, checksum);
1777
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001778 return status;
1779}
1780
1781/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001782 * ixgbe_set_rar_generic - Set Rx address register
Auke Kok9a799d72007-09-15 14:07:45 -07001783 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07001784 * @index: Receive address register to write
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001785 * @addr: Address to put into receive address register
1786 * @vmdq: VMDq "set" or "pool" index
Auke Kok9a799d72007-09-15 14:07:45 -07001787 * @enable_addr: set flag that address is active
1788 *
1789 * Puts an ethernet address into a receive address register.
1790 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001791s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001792 u32 enable_addr)
Auke Kok9a799d72007-09-15 14:07:45 -07001793{
1794 u32 rar_low, rar_high;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001795 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001796
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001797 /* Make sure we are using a valid rar index range */
1798 if (index >= rar_entries) {
1799 hw_dbg(hw, "RAR index %d is out of range.\n", index);
1800 return IXGBE_ERR_INVALID_ARGUMENT;
1801 }
1802
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001803 /* setup VMDq pool selection before this RAR gets enabled */
1804 hw->mac.ops.set_vmdq(hw, index, vmdq);
1805
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001806 /*
1807 * HW expects these in little endian so we reverse the byte
1808 * order from network order (big endian) to little endian
1809 */
1810 rar_low = ((u32)addr[0] |
1811 ((u32)addr[1] << 8) |
1812 ((u32)addr[2] << 16) |
1813 ((u32)addr[3] << 24));
1814 /*
1815 * Some parts put the VMDq setting in the extra RAH bits,
1816 * so save everything except the lower 16 bits that hold part
1817 * of the address and the address valid bit.
1818 */
1819 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1820 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1821 rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8));
Auke Kok9a799d72007-09-15 14:07:45 -07001822
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001823 if (enable_addr != 0)
1824 rar_high |= IXGBE_RAH_AV;
Auke Kok9a799d72007-09-15 14:07:45 -07001825
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001826 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low);
1827 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
Auke Kok9a799d72007-09-15 14:07:45 -07001828
1829 return 0;
1830}
1831
1832/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001833 * ixgbe_clear_rar_generic - Remove Rx address register
1834 * @hw: pointer to hardware structure
1835 * @index: Receive address register to write
1836 *
1837 * Clears an ethernet address from a receive address register.
1838 **/
1839s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index)
1840{
1841 u32 rar_high;
1842 u32 rar_entries = hw->mac.num_rar_entries;
1843
1844 /* Make sure we are using a valid rar index range */
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001845 if (index >= rar_entries) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001846 hw_dbg(hw, "RAR index %d is out of range.\n", index);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001847 return IXGBE_ERR_INVALID_ARGUMENT;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001848 }
1849
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001850 /*
1851 * Some parts put the VMDq setting in the extra RAH bits,
1852 * so save everything except the lower 16 bits that hold part
1853 * of the address and the address valid bit.
1854 */
1855 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1856 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1857
1858 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0);
1859 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1860
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001861 /* clear VMDq pool/queue selection for this RAR */
1862 hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL);
1863
1864 return 0;
1865}
1866
1867/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001868 * ixgbe_init_rx_addrs_generic - Initializes receive address filters.
Auke Kok9a799d72007-09-15 14:07:45 -07001869 * @hw: pointer to hardware structure
1870 *
1871 * Places the MAC address in receive address register 0 and clears the rest
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001872 * of the receive address registers. Clears the multicast table. Assumes
Auke Kok9a799d72007-09-15 14:07:45 -07001873 * the receiver is in reset when the routine is called.
1874 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001875s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001876{
1877 u32 i;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001878 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001879
1880 /*
1881 * If the current mac address is valid, assume it is a software override
1882 * to the permanent address.
1883 * Otherwise, use the permanent address from the eeprom.
1884 */
Joe Perchesf8ebc682012-10-24 17:19:02 +00001885 if (!is_valid_ether_addr(hw->mac.addr)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001886 /* Get the MAC address from the RAR0 for later reference */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001887 hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001888
hartleysce7194d2010-01-05 06:56:52 +00001889 hw_dbg(hw, " Keeping Current RAR0 Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001890 } else {
1891 /* Setup the receive address. */
1892 hw_dbg(hw, "Overriding MAC Address in RAR[0]\n");
hartleysce7194d2010-01-05 06:56:52 +00001893 hw_dbg(hw, " New MAC Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001894
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001895 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07001896 }
Alexander Duyck6e982ae2015-11-02 17:10:26 -08001897
1898 /* clear VMDq pool/queue selection for RAR 0 */
1899 hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL);
1900
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001901 hw->addr_ctrl.overflow_promisc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001902
1903 hw->addr_ctrl.rar_used_count = 1;
1904
1905 /* Zero out the other receive addresses. */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001906 hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07001907 for (i = 1; i < rar_entries; i++) {
1908 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
1909 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
1910 }
1911
1912 /* Clear the MTA */
Auke Kok9a799d72007-09-15 14:07:45 -07001913 hw->addr_ctrl.mta_in_use = 0;
1914 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
1915
1916 hw_dbg(hw, " Clearing MTA\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001917 for (i = 0; i < hw->mac.mcft_size; i++)
Auke Kok9a799d72007-09-15 14:07:45 -07001918 IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0);
1919
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001920 if (hw->mac.ops.init_uta_tables)
1921 hw->mac.ops.init_uta_tables(hw);
1922
Auke Kok9a799d72007-09-15 14:07:45 -07001923 return 0;
1924}
1925
1926/**
1927 * ixgbe_mta_vector - Determines bit-vector in multicast table to set
1928 * @hw: pointer to hardware structure
1929 * @mc_addr: the multicast address
1930 *
1931 * Extracts the 12 bits, from a multicast address, to determine which
1932 * bit-vector to set in the multicast table. The hardware uses 12 bits, from
1933 * incoming rx multicast addresses, to determine the bit-vector to check in
1934 * the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001935 * by the MO field of the MCSTCTRL. The MO field is set during initialization
Auke Kok9a799d72007-09-15 14:07:45 -07001936 * to mc_filter_type.
1937 **/
1938static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr)
1939{
1940 u32 vector = 0;
1941
1942 switch (hw->mac.mc_filter_type) {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001943 case 0: /* use bits [47:36] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001944 vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
1945 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001946 case 1: /* use bits [46:35] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001947 vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
1948 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001949 case 2: /* use bits [45:34] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001950 vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
1951 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001952 case 3: /* use bits [43:32] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001953 vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
1954 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001955 default: /* Invalid mc_filter_type */
Auke Kok9a799d72007-09-15 14:07:45 -07001956 hw_dbg(hw, "MC filter type param set incorrectly\n");
1957 break;
1958 }
1959
1960 /* vector can only be 12-bits or boundary will be exceeded */
1961 vector &= 0xFFF;
1962 return vector;
1963}
1964
1965/**
1966 * ixgbe_set_mta - Set bit-vector in multicast table
1967 * @hw: pointer to hardware structure
1968 * @hash_value: Multicast address hash value
1969 *
1970 * Sets the bit-vector in the multicast table.
1971 **/
1972static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr)
1973{
1974 u32 vector;
1975 u32 vector_bit;
1976 u32 vector_reg;
Auke Kok9a799d72007-09-15 14:07:45 -07001977
1978 hw->addr_ctrl.mta_in_use++;
1979
1980 vector = ixgbe_mta_vector(hw, mc_addr);
1981 hw_dbg(hw, " bit-vector = 0x%03X\n", vector);
1982
1983 /*
1984 * The MTA is a register array of 128 32-bit registers. It is treated
1985 * like an array of 4096 bits. We want to set bit
1986 * BitArray[vector_value]. So we figure out what register the bit is
1987 * in, read it, OR in the new bit, then write back the new value. The
1988 * register is determined by the upper 7 bits of the vector value and
1989 * the bit within that register are determined by the lower 5 bits of
1990 * the value.
1991 */
1992 vector_reg = (vector >> 5) & 0x7F;
1993 vector_bit = vector & 0x1F;
Jacob Kellerb4f47a42016-04-13 16:08:22 -07001994 hw->mac.mta_shadow[vector_reg] |= BIT(vector_bit);
Auke Kok9a799d72007-09-15 14:07:45 -07001995}
1996
1997/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001998 * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses
Auke Kok9a799d72007-09-15 14:07:45 -07001999 * @hw: pointer to hardware structure
Jiri Pirko2853eb82010-03-23 22:58:01 +00002000 * @netdev: pointer to net device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002001 *
2002 * The given list replaces any existing list. Clears the MC addrs from receive
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002003 * address registers and the multicast table. Uses unused receive address
Auke Kok9a799d72007-09-15 14:07:45 -07002004 * registers for the first multicast addresses, and hashes the rest into the
2005 * multicast table.
2006 **/
Jiri Pirko2853eb82010-03-23 22:58:01 +00002007s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw,
2008 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07002009{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002010 struct netdev_hw_addr *ha;
Auke Kok9a799d72007-09-15 14:07:45 -07002011 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002012
2013 /*
2014 * Set the new number of MC addresses that we are being requested to
2015 * use.
2016 */
Jiri Pirko2853eb82010-03-23 22:58:01 +00002017 hw->addr_ctrl.num_mc_addrs = netdev_mc_count(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002018 hw->addr_ctrl.mta_in_use = 0;
2019
Emil Tantilov80960ab2011-02-18 08:58:27 +00002020 /* Clear mta_shadow */
Auke Kok9a799d72007-09-15 14:07:45 -07002021 hw_dbg(hw, " Clearing MTA\n");
Emil Tantilov80960ab2011-02-18 08:58:27 +00002022 memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow));
Auke Kok9a799d72007-09-15 14:07:45 -07002023
Emil Tantilov80960ab2011-02-18 08:58:27 +00002024 /* Update mta shadow */
Jiri Pirko22bedad32010-04-01 21:22:57 +00002025 netdev_for_each_mc_addr(ha, netdev) {
Auke Kok9a799d72007-09-15 14:07:45 -07002026 hw_dbg(hw, " Adding the multicast addresses:\n");
Jiri Pirko22bedad32010-04-01 21:22:57 +00002027 ixgbe_set_mta(hw, ha->addr);
Auke Kok9a799d72007-09-15 14:07:45 -07002028 }
2029
2030 /* Enable mta */
Emil Tantilov80960ab2011-02-18 08:58:27 +00002031 for (i = 0; i < hw->mac.mcft_size; i++)
2032 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_MTA(0), i,
2033 hw->mac.mta_shadow[i]);
2034
Auke Kok9a799d72007-09-15 14:07:45 -07002035 if (hw->addr_ctrl.mta_in_use > 0)
2036 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002037 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002038
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002039 hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002040 return 0;
2041}
2042
2043/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002044 * ixgbe_enable_mc_generic - Enable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002045 * @hw: pointer to hardware structure
2046 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002047 * Enables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002048 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002049s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002050{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002051 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002052
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002053 if (a->mta_in_use > 0)
2054 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE |
Jacob Kellere7cf7452014-04-09 06:03:10 +00002055 hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002056
2057 return 0;
2058}
2059
2060/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002061 * ixgbe_disable_mc_generic - Disable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002062 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07002063 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002064 * Disables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002065 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002066s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002067{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002068 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002069
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002070 if (a->mta_in_use > 0)
2071 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002072
2073 return 0;
2074}
2075
2076/**
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002077 * ixgbe_fc_enable_generic - Enable flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002078 * @hw: pointer to hardware structure
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002079 *
2080 * Enable flow control according to the current settings.
2081 **/
Alexander Duyck041441d2012-04-19 17:48:48 +00002082s32 ixgbe_fc_enable_generic(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002083{
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002084 u32 mflcn_reg, fccfg_reg;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002085 u32 reg;
John Fastabend16b61be2010-11-16 19:26:44 -08002086 u32 fcrtl, fcrth;
Alexander Duyck041441d2012-04-19 17:48:48 +00002087 int i;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002088
Jacob Kellere5776622014-04-05 02:35:52 +00002089 /* Validate the water mark configuration. */
Mark Rustade90dd262014-07-22 06:51:08 +00002090 if (!hw->fc.pause_time)
2091 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002092
Jacob Kellere5776622014-04-05 02:35:52 +00002093 /* Low water mark of zero causes XOFF floods */
2094 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
2095 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
2096 hw->fc.high_water[i]) {
2097 if (!hw->fc.low_water[i] ||
2098 hw->fc.low_water[i] >= hw->fc.high_water[i]) {
2099 hw_dbg(hw, "Invalid water mark configuration\n");
Mark Rustade90dd262014-07-22 06:51:08 +00002100 return IXGBE_ERR_INVALID_LINK_SETTINGS;
Jacob Kellere5776622014-04-05 02:35:52 +00002101 }
2102 }
2103 }
2104
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002105 /* Negotiate the fc mode to use */
Alexander Duyck786e9a52012-03-28 08:03:48 +00002106 ixgbe_fc_autoneg(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002107
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002108 /* Disable any previous flow control settings */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002109 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Alexander Duyck041441d2012-04-19 17:48:48 +00002110 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_MASK | IXGBE_MFLCN_RFCE);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002111
2112 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
2113 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
2114
2115 /*
2116 * The possible values of fc.current_mode are:
2117 * 0: Flow control is completely disabled
2118 * 1: Rx flow control is enabled (we can receive pause frames,
2119 * but not send pause frames).
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00002120 * 2: Tx flow control is enabled (we can send pause frames but
2121 * we do not support receiving pause frames).
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002122 * 3: Both Rx and Tx flow control (symmetric) are enabled.
2123 * other: Invalid.
2124 */
2125 switch (hw->fc.current_mode) {
2126 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002127 /*
2128 * Flow control is disabled by software override or autoneg.
2129 * The code below will actually disable it in the HW.
2130 */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002131 break;
2132 case ixgbe_fc_rx_pause:
2133 /*
2134 * Rx Flow control is enabled and Tx Flow control is
2135 * disabled by software override. Since there really
2136 * isn't a way to advertise that we are capable of RX
2137 * Pause ONLY, we will advertise that we support both
2138 * symmetric and asymmetric Rx PAUSE. Later, we will
2139 * disable the adapter's ability to send PAUSE frames.
2140 */
2141 mflcn_reg |= IXGBE_MFLCN_RFCE;
2142 break;
2143 case ixgbe_fc_tx_pause:
2144 /*
2145 * Tx Flow control is enabled, and Rx Flow control is
2146 * disabled by software override.
2147 */
2148 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2149 break;
2150 case ixgbe_fc_full:
2151 /* Flow control (both Rx and Tx) is enabled by SW override. */
2152 mflcn_reg |= IXGBE_MFLCN_RFCE;
2153 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2154 break;
2155 default:
2156 hw_dbg(hw, "Flow control param set incorrectly\n");
Mark Rustade90dd262014-07-22 06:51:08 +00002157 return IXGBE_ERR_CONFIG;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002158 }
2159
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002160 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +00002161 mflcn_reg |= IXGBE_MFLCN_DPF;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002162 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
2163 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
2164
Alexander Duyck041441d2012-04-19 17:48:48 +00002165 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
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]) {
Jacob Kellere5776622014-04-05 02:35:52 +00002169 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
Alexander Duyck041441d2012-04-19 17:48:48 +00002170 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), fcrtl);
2171 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
2172 } else {
2173 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0);
2174 /*
2175 * In order to prevent Tx hangs when the internal Tx
2176 * switch is enabled we must set the high water mark
Mark Rustadbc1fc642015-08-08 16:27:51 -07002177 * to the Rx packet buffer size - 24KB. This allows
2178 * the Tx switch to function even under heavy Rx
2179 * workloads.
Alexander Duyck041441d2012-04-19 17:48:48 +00002180 */
Mark Rustadbc1fc642015-08-08 16:27:51 -07002181 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 24576;
Alexander Duyck041441d2012-04-19 17:48:48 +00002182 }
2183
2184 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002185 }
2186
2187 /* Configure pause time (2 TCs per register) */
Alexander Duyck041441d2012-04-19 17:48:48 +00002188 reg = hw->fc.pause_time * 0x00010001;
2189 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
2190 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002191
Alexander Duyck041441d2012-04-19 17:48:48 +00002192 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002193
Mark Rustade90dd262014-07-22 06:51:08 +00002194 return 0;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002195}
2196
2197/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002198 * ixgbe_negotiate_fc - Negotiate flow control
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002199 * @hw: pointer to hardware structure
Alexander Duyck67a79df2012-04-19 17:49:56 +00002200 * @adv_reg: flow control advertised settings
2201 * @lp_reg: link partner's flow control settings
2202 * @adv_sym: symmetric pause bit in advertisement
2203 * @adv_asm: asymmetric pause bit in advertisement
2204 * @lp_sym: symmetric pause bit in link partner advertisement
2205 * @lp_asm: asymmetric pause bit in link partner advertisement
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002206 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002207 * Find the intersection between advertised settings and link partner's
2208 * advertised settings
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002209 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002210static s32 ixgbe_negotiate_fc(struct ixgbe_hw *hw, u32 adv_reg, u32 lp_reg,
2211 u32 adv_sym, u32 adv_asm, u32 lp_sym, u32 lp_asm)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002212{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002213 if ((!(adv_reg)) || (!(lp_reg)))
2214 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002215
Alexander Duyck67a79df2012-04-19 17:49:56 +00002216 if ((adv_reg & adv_sym) && (lp_reg & lp_sym)) {
2217 /*
2218 * Now we need to check if the user selected Rx ONLY
2219 * of pause frames. In this case, we had to advertise
2220 * FULL flow control because we could not advertise RX
2221 * ONLY. Hence, we must now check to see if we need to
2222 * turn OFF the TRANSMISSION of PAUSE frames.
2223 */
2224 if (hw->fc.requested_mode == ixgbe_fc_full) {
2225 hw->fc.current_mode = ixgbe_fc_full;
2226 hw_dbg(hw, "Flow Control = FULL.\n");
2227 } else {
2228 hw->fc.current_mode = ixgbe_fc_rx_pause;
2229 hw_dbg(hw, "Flow Control=RX PAUSE frames only\n");
2230 }
2231 } else if (!(adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2232 (lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2233 hw->fc.current_mode = ixgbe_fc_tx_pause;
2234 hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n");
2235 } else if ((adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2236 !(lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2237 hw->fc.current_mode = ixgbe_fc_rx_pause;
2238 hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002239 } else {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002240 hw->fc.current_mode = ixgbe_fc_none;
2241 hw_dbg(hw, "Flow Control = NONE.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002242 }
Alexander Duyck67a79df2012-04-19 17:49:56 +00002243 return 0;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002244}
2245
2246/**
2247 * ixgbe_fc_autoneg_fiber - Enable flow control on 1 gig fiber
2248 * @hw: pointer to hardware structure
2249 *
2250 * Enable flow control according on 1 gig fiber.
2251 **/
2252static s32 ixgbe_fc_autoneg_fiber(struct ixgbe_hw *hw)
2253{
2254 u32 pcs_anadv_reg, pcs_lpab_reg, linkstat;
Mark Rustade90dd262014-07-22 06:51:08 +00002255 s32 ret_val;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002256
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002257 /*
2258 * On multispeed fiber at 1g, bail out if
2259 * - link is up but AN did not complete, or if
2260 * - link is up and AN completed but timed out
2261 */
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002262
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002263 linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
Don Skidmore53f096d2011-07-28 01:00:58 +00002264 if ((!!(linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) ||
Alexander Duyck786e9a52012-03-28 08:03:48 +00002265 (!!(linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1))
Mark Rustade90dd262014-07-22 06:51:08 +00002266 return IXGBE_ERR_FC_NOT_NEGOTIATED;
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00002267
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002268 pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
2269 pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002270
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002271 ret_val = ixgbe_negotiate_fc(hw, pcs_anadv_reg,
2272 pcs_lpab_reg, IXGBE_PCS1GANA_SYM_PAUSE,
2273 IXGBE_PCS1GANA_ASM_PAUSE,
2274 IXGBE_PCS1GANA_SYM_PAUSE,
2275 IXGBE_PCS1GANA_ASM_PAUSE);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002276
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002277 return ret_val;
2278}
2279
2280/**
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002281 * ixgbe_fc_autoneg_backplane - Enable flow control IEEE clause 37
2282 * @hw: pointer to hardware structure
2283 *
2284 * Enable flow control according to IEEE clause 37.
2285 **/
2286static s32 ixgbe_fc_autoneg_backplane(struct ixgbe_hw *hw)
2287{
2288 u32 links2, anlp1_reg, autoc_reg, links;
Mark Rustade90dd262014-07-22 06:51:08 +00002289 s32 ret_val;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002290
2291 /*
2292 * On backplane, bail out if
2293 * - backplane autoneg was not completed, or if
2294 * - we are 82599 and link partner is not AN enabled
2295 */
2296 links = IXGBE_READ_REG(hw, IXGBE_LINKS);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002297 if ((links & IXGBE_LINKS_KX_AN_COMP) == 0)
Mark Rustade90dd262014-07-22 06:51:08 +00002298 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002299
2300 if (hw->mac.type == ixgbe_mac_82599EB) {
2301 links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002302 if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0)
Mark Rustade90dd262014-07-22 06:51:08 +00002303 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002304 }
2305 /*
2306 * Read the 10g AN autoc and LP ability registers and resolve
2307 * local flow control settings accordingly
2308 */
2309 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2310 anlp1_reg = IXGBE_READ_REG(hw, IXGBE_ANLP1);
2311
2312 ret_val = ixgbe_negotiate_fc(hw, autoc_reg,
2313 anlp1_reg, IXGBE_AUTOC_SYM_PAUSE, IXGBE_AUTOC_ASM_PAUSE,
2314 IXGBE_ANLP1_SYM_PAUSE, IXGBE_ANLP1_ASM_PAUSE);
2315
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002316 return ret_val;
2317}
2318
2319/**
2320 * ixgbe_fc_autoneg_copper - Enable flow control IEEE clause 37
2321 * @hw: pointer to hardware structure
2322 *
2323 * Enable flow control according to IEEE clause 37.
2324 **/
2325static s32 ixgbe_fc_autoneg_copper(struct ixgbe_hw *hw)
2326{
2327 u16 technology_ability_reg = 0;
2328 u16 lp_technology_ability_reg = 0;
2329
2330 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
2331 MDIO_MMD_AN,
2332 &technology_ability_reg);
2333 hw->phy.ops.read_reg(hw, MDIO_AN_LPA,
2334 MDIO_MMD_AN,
2335 &lp_technology_ability_reg);
2336
2337 return ixgbe_negotiate_fc(hw, (u32)technology_ability_reg,
2338 (u32)lp_technology_ability_reg,
2339 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE,
2340 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE);
2341}
2342
2343/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002344 * ixgbe_fc_autoneg - Configure flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002345 * @hw: pointer to hardware structure
2346 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002347 * Compares our advertised flow control capabilities to those advertised by
2348 * our link partner, and determines the proper flow control mode to use.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002349 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002350void ixgbe_fc_autoneg(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002351{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002352 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
2353 ixgbe_link_speed speed;
2354 bool link_up;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002355
2356 /*
Alexander Duyck67a79df2012-04-19 17:49:56 +00002357 * AN should have completed when the cable was plugged in.
2358 * Look for reasons to bail out. Bail out if:
2359 * - FC autoneg is disabled, or if
2360 * - link is not up.
2361 *
2362 * Since we're being called from an LSC, link is already known to be up.
2363 * So use link_up_wait_to_complete=false.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002364 */
Alexander Duyck67a79df2012-04-19 17:49:56 +00002365 if (hw->fc.disable_fc_autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002366 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002367
Alexander Duyck67a79df2012-04-19 17:49:56 +00002368 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2369 if (!link_up)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002370 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002371
2372 switch (hw->phy.media_type) {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002373 /* Autoneg flow control on fiber adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002374 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002375 if (speed == IXGBE_LINK_SPEED_1GB_FULL)
2376 ret_val = ixgbe_fc_autoneg_fiber(hw);
2377 break;
2378
2379 /* Autoneg flow control on backplane adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002380 case ixgbe_media_type_backplane:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002381 ret_val = ixgbe_fc_autoneg_backplane(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002382 break;
2383
Alexander Duyck67a79df2012-04-19 17:49:56 +00002384 /* Autoneg flow control on copper adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002385 case ixgbe_media_type_copper:
Don Skidmore73d80953d2013-07-31 02:19:24 +00002386 if (ixgbe_device_supports_autoneg_fc(hw))
Alexander Duyck67a79df2012-04-19 17:49:56 +00002387 ret_val = ixgbe_fc_autoneg_copper(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002388 break;
2389
2390 default:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002391 break;
2392 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002393
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002394out:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002395 if (ret_val == 0) {
2396 hw->fc.fc_was_autonegged = true;
2397 } else {
2398 hw->fc.fc_was_autonegged = false;
2399 hw->fc.current_mode = hw->fc.requested_mode;
2400 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002401}
2402
2403/**
Don Skidmore1f86c982014-02-27 20:32:40 -08002404 * ixgbe_pcie_timeout_poll - Return number of times to poll for completion
2405 * @hw: pointer to hardware structure
2406 *
2407 * System-wide timeout range is encoded in PCIe Device Control2 register.
2408 *
2409 * Add 10% to specified maximum and return the number of times to poll for
2410 * completion timeout, in units of 100 microsec. Never return less than
2411 * 800 = 80 millisec.
2412 **/
2413static u32 ixgbe_pcie_timeout_poll(struct ixgbe_hw *hw)
2414{
Don Skidmore1f86c982014-02-27 20:32:40 -08002415 s16 devctl2;
2416 u32 pollcnt;
2417
Jacob Keller0d7c6e02014-02-22 01:23:58 +00002418 devctl2 = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2);
Don Skidmore1f86c982014-02-27 20:32:40 -08002419 devctl2 &= IXGBE_PCIDEVCTRL2_TIMEO_MASK;
2420
2421 switch (devctl2) {
2422 case IXGBE_PCIDEVCTRL2_65_130ms:
2423 pollcnt = 1300; /* 130 millisec */
2424 break;
2425 case IXGBE_PCIDEVCTRL2_260_520ms:
2426 pollcnt = 5200; /* 520 millisec */
2427 break;
2428 case IXGBE_PCIDEVCTRL2_1_2s:
2429 pollcnt = 20000; /* 2 sec */
2430 break;
2431 case IXGBE_PCIDEVCTRL2_4_8s:
2432 pollcnt = 80000; /* 8 sec */
2433 break;
2434 case IXGBE_PCIDEVCTRL2_17_34s:
2435 pollcnt = 34000; /* 34 sec */
2436 break;
2437 case IXGBE_PCIDEVCTRL2_50_100us: /* 100 microsecs */
2438 case IXGBE_PCIDEVCTRL2_1_2ms: /* 2 millisecs */
2439 case IXGBE_PCIDEVCTRL2_16_32ms: /* 32 millisec */
2440 case IXGBE_PCIDEVCTRL2_16_32ms_def: /* 32 millisec default */
2441 default:
2442 pollcnt = 800; /* 80 millisec minimum */
2443 break;
2444 }
2445
2446 /* add 10% to spec maximum */
2447 return (pollcnt * 11) / 10;
2448}
2449
2450/**
Auke Kok9a799d72007-09-15 14:07:45 -07002451 * ixgbe_disable_pcie_master - Disable PCI-express master access
2452 * @hw: pointer to hardware structure
2453 *
2454 * Disables PCI-Express master access and verifies there are no pending
2455 * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable
2456 * bit hasn't caused the master requests to be disabled, else 0
2457 * is returned signifying master requests disabled.
2458 **/
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002459static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002460{
Don Skidmore1f86c982014-02-27 20:32:40 -08002461 u32 i, poll;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002462 u16 value;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002463
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002464 /* Always set this bit to ensure any future transactions are blocked */
2465 IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS);
2466
Mark Rustad48b44612015-10-27 13:23:23 -07002467 /* Poll for bit to read as set */
2468 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
2469 if (IXGBE_READ_REG(hw, IXGBE_CTRL) & IXGBE_CTRL_GIO_DIS)
2470 break;
2471 usleep_range(100, 120);
2472 }
2473 if (i >= IXGBE_PCI_MASTER_DISABLE_TIMEOUT) {
2474 hw_dbg(hw, "GIO disable did not set - requesting resets\n");
2475 goto gio_disable_fail;
2476 }
2477
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002478 /* Exit if master requests are blocked */
Mark Rustad14438462014-02-28 15:48:57 -08002479 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO) ||
2480 ixgbe_removed(hw->hw_addr))
Mark Rustade90dd262014-07-22 06:51:08 +00002481 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002482
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002483 /* Poll for master request bit to clear */
Auke Kok9a799d72007-09-15 14:07:45 -07002484 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002485 udelay(100);
Emil Tantilova4297dc2011-02-14 08:45:13 +00002486 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO))
Mark Rustade90dd262014-07-22 06:51:08 +00002487 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002488 }
2489
Emil Tantilova4297dc2011-02-14 08:45:13 +00002490 /*
2491 * Two consecutive resets are required via CTRL.RST per datasheet
2492 * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine
2493 * of this need. The first reset prevents new master requests from
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002494 * being issued by our device. We then must wait 1usec or more for any
Emil Tantilova4297dc2011-02-14 08:45:13 +00002495 * remaining completions from the PCIe bus to trickle in, and then reset
2496 * again to clear out any effects they may have had on our device.
2497 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002498 hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n");
Mark Rustad48b44612015-10-27 13:23:23 -07002499gio_disable_fail:
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002500 hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
2501
Mark Rustad7fc15102015-08-08 16:19:14 -07002502 if (hw->mac.type >= ixgbe_mac_X550)
2503 return 0;
2504
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002505 /*
2506 * Before proceeding, make sure that the PCIe block does not have
2507 * transactions pending.
2508 */
Don Skidmore1f86c982014-02-27 20:32:40 -08002509 poll = ixgbe_pcie_timeout_poll(hw);
2510 for (i = 0; i < poll; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002511 udelay(100);
Mark Rustad14438462014-02-28 15:48:57 -08002512 value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS);
2513 if (ixgbe_removed(hw->hw_addr))
Mark Rustade90dd262014-07-22 06:51:08 +00002514 return 0;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002515 if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING))
Mark Rustade90dd262014-07-22 06:51:08 +00002516 return 0;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002517 }
2518
2519 hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n");
Mark Rustade90dd262014-07-22 06:51:08 +00002520 return IXGBE_ERR_MASTER_REQUESTS_PENDING;
Auke Kok9a799d72007-09-15 14:07:45 -07002521}
2522
Auke Kok9a799d72007-09-15 14:07:45 -07002523/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002524 * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore
Auke Kok9a799d72007-09-15 14:07:45 -07002525 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002526 * @mask: Mask to specify which semaphore to acquire
Auke Kok9a799d72007-09-15 14:07:45 -07002527 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002528 * Acquires the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002529 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2530 **/
Don Skidmore030eaec2014-11-29 05:22:37 +00002531s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u32 mask)
Auke Kok9a799d72007-09-15 14:07:45 -07002532{
Emil Tantilov674c18b2013-07-23 01:57:03 +00002533 u32 gssr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002534 u32 swmask = mask;
2535 u32 fwmask = mask << 5;
Emil Tantilov674c18b2013-07-23 01:57:03 +00002536 u32 timeout = 200;
2537 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002538
Emil Tantilov674c18b2013-07-23 01:57:03 +00002539 for (i = 0; i < timeout; i++) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002540 /*
Emil Tantilov674c18b2013-07-23 01:57:03 +00002541 * SW NVM semaphore bit is used for access to all
2542 * SW_FW_SYNC bits (not just NVM)
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002543 */
Auke Kok9a799d72007-09-15 14:07:45 -07002544 if (ixgbe_get_eeprom_semaphore(hw))
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002545 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002546
2547 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
Emil Tantilov674c18b2013-07-23 01:57:03 +00002548 if (!(gssr & (fwmask | swmask))) {
2549 gssr |= swmask;
2550 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2551 ixgbe_release_eeprom_semaphore(hw);
2552 return 0;
2553 } else {
2554 /* Resource is currently in use by FW or SW */
2555 ixgbe_release_eeprom_semaphore(hw);
2556 usleep_range(5000, 10000);
2557 }
Auke Kok9a799d72007-09-15 14:07:45 -07002558 }
2559
Emil Tantilov674c18b2013-07-23 01:57:03 +00002560 /* If time expired clear the bits holding the lock and retry */
2561 if (gssr & (fwmask | swmask))
2562 ixgbe_release_swfw_sync(hw, gssr & (fwmask | swmask));
Auke Kok9a799d72007-09-15 14:07:45 -07002563
Emil Tantilov674c18b2013-07-23 01:57:03 +00002564 usleep_range(5000, 10000);
2565 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002566}
2567
2568/**
2569 * ixgbe_release_swfw_sync - Release SWFW semaphore
2570 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002571 * @mask: Mask to specify which semaphore to release
Auke Kok9a799d72007-09-15 14:07:45 -07002572 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002573 * Releases the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002574 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2575 **/
Don Skidmore030eaec2014-11-29 05:22:37 +00002576void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u32 mask)
Auke Kok9a799d72007-09-15 14:07:45 -07002577{
2578 u32 gssr;
2579 u32 swmask = mask;
2580
2581 ixgbe_get_eeprom_semaphore(hw);
2582
2583 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2584 gssr &= ~swmask;
2585 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2586
2587 ixgbe_release_eeprom_semaphore(hw);
2588}
2589
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002590/**
Don Skidmore429d6a32014-02-27 20:32:41 -08002591 * prot_autoc_read_generic - Hides MAC differences needed for AUTOC read
2592 * @hw: pointer to hardware structure
2593 * @reg_val: Value we read from AUTOC
2594 * @locked: bool to indicate whether the SW/FW lock should be taken. Never
2595 * true in this the generic case.
2596 *
2597 * The default case requires no protection so just to the register read.
2598 **/
2599s32 prot_autoc_read_generic(struct ixgbe_hw *hw, bool *locked, u32 *reg_val)
2600{
2601 *locked = false;
2602 *reg_val = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2603 return 0;
2604}
2605
2606/**
2607 * prot_autoc_write_generic - Hides MAC differences needed for AUTOC write
2608 * @hw: pointer to hardware structure
2609 * @reg_val: value to write to AUTOC
2610 * @locked: bool to indicate whether the SW/FW lock was already taken by
2611 * previous read.
2612 **/
2613s32 prot_autoc_write_generic(struct ixgbe_hw *hw, u32 reg_val, bool locked)
2614{
2615 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_val);
2616 return 0;
2617}
2618
2619/**
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002620 * ixgbe_disable_rx_buff_generic - Stops the receive data path
2621 * @hw: pointer to hardware structure
2622 *
2623 * Stops the receive data path and waits for the HW to internally
2624 * empty the Rx security block.
2625 **/
2626s32 ixgbe_disable_rx_buff_generic(struct ixgbe_hw *hw)
2627{
2628#define IXGBE_MAX_SECRX_POLL 40
2629 int i;
2630 int secrxreg;
2631
2632 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2633 secrxreg |= IXGBE_SECRXCTRL_RX_DIS;
2634 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2635 for (i = 0; i < IXGBE_MAX_SECRX_POLL; i++) {
2636 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXSTAT);
2637 if (secrxreg & IXGBE_SECRXSTAT_SECRX_RDY)
2638 break;
2639 else
2640 /* Use interrupt-safe sleep just in case */
Jacob Kellerdb76ad42012-05-03 01:44:12 +00002641 udelay(1000);
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002642 }
2643
2644 /* For informational purposes only */
2645 if (i >= IXGBE_MAX_SECRX_POLL)
Jacob Keller6ec1b712014-04-09 06:03:13 +00002646 hw_dbg(hw, "Rx unit being enabled before security path fully disabled. Continuing with init.\n");
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002647
2648 return 0;
2649
2650}
2651
2652/**
2653 * ixgbe_enable_rx_buff - Enables the receive data path
2654 * @hw: pointer to hardware structure
2655 *
2656 * Enables the receive data path
2657 **/
2658s32 ixgbe_enable_rx_buff_generic(struct ixgbe_hw *hw)
2659{
2660 int secrxreg;
2661
2662 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2663 secrxreg &= ~IXGBE_SECRXCTRL_RX_DIS;
2664 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2665 IXGBE_WRITE_FLUSH(hw);
2666
2667 return 0;
2668}
2669
2670/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002671 * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit
2672 * @hw: pointer to hardware structure
2673 * @regval: register value to write to RXCTRL
2674 *
2675 * Enables the Rx DMA unit
2676 **/
2677s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval)
2678{
Don Skidmore1f9ac572015-03-13 13:54:30 -07002679 if (regval & IXGBE_RXCTRL_RXEN)
2680 hw->mac.ops.enable_rx(hw);
2681 else
2682 hw->mac.ops.disable_rx(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002683
2684 return 0;
2685}
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002686
2687/**
2688 * ixgbe_blink_led_start_generic - Blink LED based on index.
2689 * @hw: pointer to hardware structure
2690 * @index: led number to blink
2691 **/
2692s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index)
2693{
2694 ixgbe_link_speed speed = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002695 bool link_up = false;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002696 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2697 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmore429d6a32014-02-27 20:32:41 -08002698 bool locked = false;
Mark Rustade90dd262014-07-22 06:51:08 +00002699 s32 ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002700
2701 /*
2702 * Link must be up to auto-blink the LEDs;
2703 * Force it if link is down.
2704 */
2705 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2706
2707 if (!link_up) {
Don Skidmore429d6a32014-02-27 20:32:41 -08002708 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002709 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002710 return ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002711
Peter P Waskiewicz Jr50ac58b2009-06-04 11:10:53 +00002712 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002713 autoc_reg |= IXGBE_AUTOC_FLU;
Don Skidmore429d6a32014-02-27 20:32:41 -08002714
2715 ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002716 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002717 return ret_val;
Don Skidmore429d6a32014-02-27 20:32:41 -08002718
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002719 IXGBE_WRITE_FLUSH(hw);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002720
Don Skidmore032b4322011-03-18 09:32:53 +00002721 usleep_range(10000, 20000);
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002722 }
2723
2724 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2725 led_reg |= IXGBE_LED_BLINK(index);
2726 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2727 IXGBE_WRITE_FLUSH(hw);
2728
Mark Rustade90dd262014-07-22 06:51:08 +00002729 return 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002730}
2731
2732/**
2733 * ixgbe_blink_led_stop_generic - Stop blinking LED based on index.
2734 * @hw: pointer to hardware structure
2735 * @index: led number to stop blinking
2736 **/
2737s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index)
2738{
Don Skidmore429d6a32014-02-27 20:32:41 -08002739 u32 autoc_reg = 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002740 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmore429d6a32014-02-27 20:32:41 -08002741 bool locked = false;
Mark Rustade90dd262014-07-22 06:51:08 +00002742 s32 ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002743
Don Skidmore429d6a32014-02-27 20:32:41 -08002744 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002745 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002746 return ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002747
2748 autoc_reg &= ~IXGBE_AUTOC_FLU;
2749 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002750
Don Skidmore429d6a32014-02-27 20:32:41 -08002751 ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked);
Don Skidmoref8cf7a02014-03-19 09:16:26 +00002752 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +00002753 return ret_val;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002754
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002755 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2756 led_reg &= ~IXGBE_LED_BLINK(index);
2757 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
2758 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2759 IXGBE_WRITE_FLUSH(hw);
2760
Mark Rustade90dd262014-07-22 06:51:08 +00002761 return 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002762}
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002763
2764/**
2765 * ixgbe_get_san_mac_addr_offset - Get SAN MAC address offset from the EEPROM
2766 * @hw: pointer to hardware structure
2767 * @san_mac_offset: SAN MAC address offset
2768 *
2769 * This function will read the EEPROM location for the SAN MAC address
2770 * pointer, and returns the value at that location. This is used in both
2771 * get and set mac_addr routines.
2772 **/
2773static s32 ixgbe_get_san_mac_addr_offset(struct ixgbe_hw *hw,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002774 u16 *san_mac_offset)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002775{
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002776 s32 ret_val;
2777
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002778 /*
2779 * First read the EEPROM pointer to see if the MAC addresses are
2780 * available.
2781 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002782 ret_val = hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR,
2783 san_mac_offset);
2784 if (ret_val)
2785 hw_err(hw, "eeprom read at offset %d failed\n",
2786 IXGBE_SAN_MAC_ADDR_PTR);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002787
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002788 return ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002789}
2790
2791/**
2792 * ixgbe_get_san_mac_addr_generic - SAN MAC address retrieval from the EEPROM
2793 * @hw: pointer to hardware structure
2794 * @san_mac_addr: SAN MAC address
2795 *
2796 * Reads the SAN MAC address from the EEPROM, if it's available. This is
2797 * per-port, so set_lan_id() must be called before reading the addresses.
2798 * set_lan_id() is called by identify_sfp(), but this cannot be relied
2799 * upon for non-SFP connections, so we must call it here.
2800 **/
2801s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr)
2802{
2803 u16 san_mac_data, san_mac_offset;
2804 u8 i;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002805 s32 ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002806
2807 /*
2808 * First read the EEPROM pointer to see if the MAC addresses are
2809 * available. If they're not, no point in calling set_lan_id() here.
2810 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002811 ret_val = ixgbe_get_san_mac_addr_offset(hw, &san_mac_offset);
2812 if (ret_val || san_mac_offset == 0 || san_mac_offset == 0xFFFF)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002813
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002814 goto san_mac_addr_clr;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002815
2816 /* make sure we know which port we need to program */
2817 hw->mac.ops.set_lan_id(hw);
2818 /* apply the port offset to the address offset */
2819 (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) :
Jacob Kellere7cf7452014-04-09 06:03:10 +00002820 (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002821 for (i = 0; i < 3; i++) {
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002822 ret_val = hw->eeprom.ops.read(hw, san_mac_offset,
2823 &san_mac_data);
2824 if (ret_val) {
2825 hw_err(hw, "eeprom read at offset %d failed\n",
2826 san_mac_offset);
2827 goto san_mac_addr_clr;
2828 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002829 san_mac_addr[i * 2] = (u8)(san_mac_data);
2830 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
2831 san_mac_offset++;
2832 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002833 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002834
2835san_mac_addr_clr:
2836 /* No addresses available in this EEPROM. It's not necessarily an
2837 * error though, so just wipe the local address and return.
2838 */
2839 for (i = 0; i < 6; i++)
2840 san_mac_addr[i] = 0xFF;
2841 return ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002842}
2843
2844/**
2845 * ixgbe_get_pcie_msix_count_generic - Gets MSI-X vector count
2846 * @hw: pointer to hardware structure
2847 *
2848 * Read PCIe configuration space, and get the MSI-X vector count from
2849 * the capabilities table.
2850 **/
Emil Tantilov71161302012-03-22 03:00:29 +00002851u16 ixgbe_get_pcie_msix_count_generic(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002852{
Mark Rustade90dd262014-07-22 06:51:08 +00002853 u16 msix_count;
Emil Tantilov71161302012-03-22 03:00:29 +00002854 u16 max_msix_count;
2855 u16 pcie_offset;
2856
2857 switch (hw->mac.type) {
2858 case ixgbe_mac_82598EB:
2859 pcie_offset = IXGBE_PCIE_MSIX_82598_CAPS;
2860 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82598;
2861 break;
2862 case ixgbe_mac_82599EB:
2863 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002864 case ixgbe_mac_X550:
2865 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002866 case ixgbe_mac_x550em_a:
Emil Tantilov71161302012-03-22 03:00:29 +00002867 pcie_offset = IXGBE_PCIE_MSIX_82599_CAPS;
2868 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82599;
2869 break;
2870 default:
Mark Rustade90dd262014-07-22 06:51:08 +00002871 return 1;
Emil Tantilov71161302012-03-22 03:00:29 +00002872 }
2873
Mark Rustad14438462014-02-28 15:48:57 -08002874 msix_count = ixgbe_read_pci_cfg_word(hw, pcie_offset);
2875 if (ixgbe_removed(hw->hw_addr))
2876 msix_count = 0;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002877 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
2878
Emil Tantilov71161302012-03-22 03:00:29 +00002879 /* MSI-X count is zero-based in HW */
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002880 msix_count++;
2881
Emil Tantilov71161302012-03-22 03:00:29 +00002882 if (msix_count > max_msix_count)
2883 msix_count = max_msix_count;
2884
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002885 return msix_count;
2886}
2887
2888/**
2889 * ixgbe_clear_vmdq_generic - Disassociate a VMDq pool index from a rx address
2890 * @hw: pointer to hardware struct
2891 * @rar: receive address register index to disassociate
2892 * @vmdq: VMDq pool index to remove from the rar
2893 **/
2894s32 ixgbe_clear_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2895{
2896 u32 mpsar_lo, mpsar_hi;
2897 u32 rar_entries = hw->mac.num_rar_entries;
2898
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002899 /* Make sure we are using a valid rar index range */
2900 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002901 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002902 return IXGBE_ERR_INVALID_ARGUMENT;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002903 }
2904
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002905 mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2906 mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2907
Mark Rustad19458bd2014-03-01 05:21:00 +00002908 if (ixgbe_removed(hw->hw_addr))
Mark Rustade90dd262014-07-22 06:51:08 +00002909 return 0;
Mark Rustad19458bd2014-03-01 05:21:00 +00002910
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002911 if (!mpsar_lo && !mpsar_hi)
Mark Rustade90dd262014-07-22 06:51:08 +00002912 return 0;
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002913
2914 if (vmdq == IXGBE_CLEAR_VMDQ_ALL) {
2915 if (mpsar_lo) {
2916 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2917 mpsar_lo = 0;
2918 }
2919 if (mpsar_hi) {
2920 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2921 mpsar_hi = 0;
2922 }
2923 } else if (vmdq < 32) {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002924 mpsar_lo &= ~BIT(vmdq);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002925 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo);
2926 } else {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002927 mpsar_hi &= ~BIT(vmdq - 32);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002928 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi);
2929 }
2930
2931 /* was that the last pool using this rar? */
2932 if (mpsar_lo == 0 && mpsar_hi == 0 && rar != 0)
2933 hw->mac.ops.clear_rar(hw, rar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002934 return 0;
2935}
2936
2937/**
2938 * ixgbe_set_vmdq_generic - Associate a VMDq pool index with a rx address
2939 * @hw: pointer to hardware struct
2940 * @rar: receive address register index to associate with a VMDq index
2941 * @vmdq: VMDq pool index
2942 **/
2943s32 ixgbe_set_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2944{
2945 u32 mpsar;
2946 u32 rar_entries = hw->mac.num_rar_entries;
2947
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002948 /* Make sure we are using a valid rar index range */
2949 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002950 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002951 return IXGBE_ERR_INVALID_ARGUMENT;
2952 }
2953
2954 if (vmdq < 32) {
2955 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002956 mpsar |= BIT(vmdq);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002957 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar);
2958 } else {
2959 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002960 mpsar |= BIT(vmdq - 32);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002961 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002962 }
2963 return 0;
2964}
2965
2966/**
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00002967 * This function should only be involved in the IOV mode.
2968 * In IOV mode, Default pool is next pool after the number of
2969 * VFs advertized and not 0.
2970 * MPSAR table needs to be updated for SAN_MAC RAR [hw->mac.san_mac_rar_index]
2971 *
2972 * ixgbe_set_vmdq_san_mac - Associate default VMDq pool index with a rx address
2973 * @hw: pointer to hardware struct
2974 * @vmdq: VMDq pool index
2975 **/
2976s32 ixgbe_set_vmdq_san_mac_generic(struct ixgbe_hw *hw, u32 vmdq)
2977{
2978 u32 rar = hw->mac.san_mac_rar_index;
2979
2980 if (vmdq < 32) {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002981 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), BIT(vmdq));
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00002982 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2983 } else {
2984 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002985 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), BIT(vmdq - 32));
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00002986 }
2987
2988 return 0;
2989}
2990
2991/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002992 * ixgbe_init_uta_tables_generic - Initialize the Unicast Table Array
2993 * @hw: pointer to hardware structure
2994 **/
2995s32 ixgbe_init_uta_tables_generic(struct ixgbe_hw *hw)
2996{
2997 int i;
2998
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002999 for (i = 0; i < 128; i++)
3000 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
3001
3002 return 0;
3003}
3004
3005/**
3006 * ixgbe_find_vlvf_slot - find the vlanid or the first empty slot
3007 * @hw: pointer to hardware structure
3008 * @vlan: VLAN id to write to VLAN filter
3009 *
3010 * return the VLVF index where this VLAN id should be placed
3011 *
3012 **/
Alexander Duyckb6488b62015-11-02 17:10:01 -08003013static s32 ixgbe_find_vlvf_slot(struct ixgbe_hw *hw, u32 vlan, bool vlvf_bypass)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003014{
Alexander Duyckb6488b62015-11-02 17:10:01 -08003015 s32 regindex, first_empty_slot;
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003016 u32 bits;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003017
3018 /* short cut the special case */
3019 if (vlan == 0)
3020 return 0;
3021
Alexander Duyckb6488b62015-11-02 17:10:01 -08003022 /* if vlvf_bypass is set we don't want to use an empty slot, we
3023 * will simply bypass the VLVF if there are no entries present in the
3024 * VLVF that contain our VLAN
3025 */
3026 first_empty_slot = vlvf_bypass ? IXGBE_ERR_NO_SPACE : 0;
3027
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003028 /* add VLAN enable bit for comparison */
3029 vlan |= IXGBE_VLVF_VIEN;
3030
3031 /* Search for the vlan id in the VLVF entries. Save off the first empty
3032 * slot found along the way.
3033 *
3034 * pre-decrement loop covering (IXGBE_VLVF_ENTRIES - 1) .. 1
3035 */
3036 for (regindex = IXGBE_VLVF_ENTRIES; --regindex;) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003037 bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003038 if (bits == vlan)
3039 return regindex;
3040 if (!first_empty_slot && !bits)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003041 first_empty_slot = regindex;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003042 }
3043
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003044 /* If we are here then we didn't find the VLAN. Return first empty
3045 * slot we found during our search, else error.
3046 */
3047 if (!first_empty_slot)
3048 hw_dbg(hw, "No space in VLVF.\n");
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003049
Alexander Duyckc2bc9ce2015-11-02 17:10:07 -08003050 return first_empty_slot ? : IXGBE_ERR_NO_SPACE;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003051}
3052
3053/**
3054 * ixgbe_set_vfta_generic - Set VLAN filter table
3055 * @hw: pointer to hardware structure
3056 * @vlan: VLAN id to write to VLAN filter
3057 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
3058 * @vlan_on: boolean flag to turn on/off VLAN in VFVF
Alexander Duyckb6488b62015-11-02 17:10:01 -08003059 * @vlvf_bypass: boolean flag indicating updating default pool is okay
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003060 *
3061 * Turn on/off specified VLAN in the VLAN filter table.
3062 **/
3063s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
Alexander Duyckb6488b62015-11-02 17:10:01 -08003064 bool vlan_on, bool vlvf_bypass)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003065{
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003066 u32 regidx, vfta_delta, vfta, bits;
Alexander Duyck63d93792015-11-02 17:09:48 -08003067 s32 vlvf_index;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003068
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003069 if ((vlan > 4095) || (vind > 63))
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003070 return IXGBE_ERR_PARAM;
3071
3072 /*
3073 * this is a 2 part operation - first the VFTA, then the
3074 * VLVF and VLVFB if VT Mode is set
3075 * We don't write the VFTA until we know the VLVF part succeeded.
3076 */
3077
3078 /* Part 1
3079 * The VFTA is a bitstring made up of 128 32-bit registers
3080 * that enable the particular VLAN id, much like the MTA:
3081 * bits[11-5]: which register
3082 * bits[4-0]: which bit in the register
3083 */
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003084 regidx = vlan / 32;
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003085 vfta_delta = BIT(vlan % 32);
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003086 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(regidx));
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003087
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003088 /* vfta_delta represents the difference between the current value
3089 * of vfta and the value we want in the register. Since the diff
3090 * is an XOR mask we can just update vfta using an XOR.
3091 */
3092 vfta_delta &= vlan_on ? ~vfta : vfta;
3093 vfta ^= vfta_delta;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003094
3095 /* Part 2
3096 * If VT Mode is set
3097 * Either vlan_on
3098 * make sure the vlan is in VLVF
3099 * set the vind bit in the matching VLVFB
3100 * Or !vlan_on
3101 * clear the pool bit and possibly the vind
3102 */
Alexander Duyck63d93792015-11-02 17:09:48 -08003103 if (!(IXGBE_READ_REG(hw, IXGBE_VT_CTL) & IXGBE_VT_CTL_VT_ENABLE))
3104 goto vfta_update;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003105
Alexander Duyckb6488b62015-11-02 17:10:01 -08003106 vlvf_index = ixgbe_find_vlvf_slot(hw, vlan, vlvf_bypass);
3107 if (vlvf_index < 0) {
3108 if (vlvf_bypass)
3109 goto vfta_update;
Alexander Duyck63d93792015-11-02 17:09:48 -08003110 return vlvf_index;
Alexander Duyckb6488b62015-11-02 17:10:01 -08003111 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003112
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003113 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32));
3114
3115 /* set the pool bit */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003116 bits |= BIT(vind % 32);
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003117 if (vlan_on)
3118 goto vlvf_update;
3119
3120 /* clear the pool bit */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003121 bits ^= BIT(vind % 32);
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003122
3123 if (!bits &&
3124 !IXGBE_READ_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + 1 - vind / 32))) {
3125 /* Clear VFTA first, then disable VLVF. Otherwise
3126 * we run the risk of stray packets leaking into
3127 * the PF via the default pool
3128 */
3129 if (vfta_delta)
3130 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regidx), vfta);
3131
3132 /* disable VLVF and clear remaining bit from pool */
3133 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), 0);
3134 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), 0);
3135
3136 return 0;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003137 }
3138
Alexander Duyck63d93792015-11-02 17:09:48 -08003139 /* If there are still bits set in the VLVFB registers
3140 * for the VLAN ID indicated we need to see if the
3141 * caller is requesting that we clear the VFTA entry bit.
3142 * If the caller has requested that we clear the VFTA
3143 * entry bit but there are still pools/VFs using this VLAN
3144 * ID entry then ignore the request. We're not worried
3145 * about the case where we're turning the VFTA VLAN ID
3146 * entry bit on, only when requested to turn it off as
3147 * there may be multiple pools and/or VFs using the
3148 * VLAN ID entry. In that case we cannot clear the
3149 * VFTA bit until all pools/VFs using that VLAN ID have also
3150 * been cleared. This will be indicated by "bits" being
3151 * zero.
3152 */
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003153 vfta_delta = 0;
Alexander Duyck63d93792015-11-02 17:09:48 -08003154
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003155vlvf_update:
3156 /* record pool change and enable VLAN ID if not already enabled */
3157 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(vlvf_index * 2 + vind / 32), bits);
3158 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), IXGBE_VLVF_VIEN | vlan);
Alexander Duyck63d93792015-11-02 17:09:48 -08003159
3160vfta_update:
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003161 /* Update VFTA now that we are ready for traffic */
Alexander Duyckc18fbd52015-11-02 17:09:42 -08003162 if (vfta_delta)
3163 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regidx), vfta);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003164
3165 return 0;
3166}
3167
3168/**
3169 * ixgbe_clear_vfta_generic - Clear VLAN filter table
3170 * @hw: pointer to hardware structure
3171 *
3172 * Clears the VLAN filer table, and the VMDq index associated with the filter
3173 **/
3174s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw)
3175{
3176 u32 offset;
3177
3178 for (offset = 0; offset < hw->mac.vft_size; offset++)
3179 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
3180
3181 for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) {
3182 IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0);
Alexander Duyck5ac736a2015-11-02 17:09:54 -08003183 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2), 0);
3184 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset * 2 + 1), 0);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003185 }
3186
3187 return 0;
3188}
3189
3190/**
3191 * ixgbe_check_mac_link_generic - Determine link and speed status
3192 * @hw: pointer to hardware structure
3193 * @speed: pointer to link speed
3194 * @link_up: true when link is up
3195 * @link_up_wait_to_complete: bool used to wait for link up or not
3196 *
3197 * Reads the links register to determine if link is up and the current speed
3198 **/
3199s32 ixgbe_check_mac_link_generic(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
Emil Tantilov8c7bea32011-02-19 08:43:44 +00003200 bool *link_up, bool link_up_wait_to_complete)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003201{
Emil Tantilov48de36c2011-02-16 01:38:08 +00003202 u32 links_reg, links_orig;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003203 u32 i;
3204
Emil Tantilov48de36c2011-02-16 01:38:08 +00003205 /* clear the old state */
3206 links_orig = IXGBE_READ_REG(hw, IXGBE_LINKS);
3207
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003208 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Emil Tantilov48de36c2011-02-16 01:38:08 +00003209
3210 if (links_orig != links_reg) {
3211 hw_dbg(hw, "LINKS changed from %08X to %08X\n",
3212 links_orig, links_reg);
3213 }
3214
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003215 if (link_up_wait_to_complete) {
3216 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
3217 if (links_reg & IXGBE_LINKS_UP) {
3218 *link_up = true;
3219 break;
3220 } else {
3221 *link_up = false;
3222 }
3223 msleep(100);
3224 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
3225 }
3226 } else {
3227 if (links_reg & IXGBE_LINKS_UP)
3228 *link_up = true;
3229 else
3230 *link_up = false;
3231 }
3232
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003233 switch (links_reg & IXGBE_LINKS_SPEED_82599) {
3234 case IXGBE_LINKS_SPEED_10G_82599:
3235 if ((hw->mac.type >= ixgbe_mac_X550) &&
3236 (links_reg & IXGBE_LINKS_SPEED_NON_STD))
3237 *speed = IXGBE_LINK_SPEED_2_5GB_FULL;
3238 else
3239 *speed = IXGBE_LINK_SPEED_10GB_FULL;
3240 break;
3241 case IXGBE_LINKS_SPEED_1G_82599:
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003242 *speed = IXGBE_LINK_SPEED_1GB_FULL;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003243 break;
3244 case IXGBE_LINKS_SPEED_100_82599:
3245 if ((hw->mac.type >= ixgbe_mac_X550) &&
3246 (links_reg & IXGBE_LINKS_SPEED_NON_STD))
3247 *speed = IXGBE_LINK_SPEED_5GB_FULL;
3248 else
3249 *speed = IXGBE_LINK_SPEED_100_FULL;
3250 break;
3251 default:
Emil Tantilov63d778d2011-02-19 08:43:39 +00003252 *speed = IXGBE_LINK_SPEED_UNKNOWN;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003253 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003254
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003255 return 0;
3256}
Don Skidmorea391f1d2010-11-16 19:27:15 -08003257
3258/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003259 * ixgbe_get_wwn_prefix_generic - Get alternative WWNN/WWPN prefix from
Don Skidmorea391f1d2010-11-16 19:27:15 -08003260 * the EEPROM
3261 * @hw: pointer to hardware structure
3262 * @wwnn_prefix: the alternative WWNN prefix
3263 * @wwpn_prefix: the alternative WWPN prefix
3264 *
3265 * This function will read the EEPROM from the alternative SAN MAC address
3266 * block to check the support for the alternative WWNN/WWPN prefix support.
3267 **/
3268s32 ixgbe_get_wwn_prefix_generic(struct ixgbe_hw *hw, u16 *wwnn_prefix,
Jacob Kellere7cf7452014-04-09 06:03:10 +00003269 u16 *wwpn_prefix)
Don Skidmorea391f1d2010-11-16 19:27:15 -08003270{
3271 u16 offset, caps;
3272 u16 alt_san_mac_blk_offset;
3273
3274 /* clear output first */
3275 *wwnn_prefix = 0xFFFF;
3276 *wwpn_prefix = 0xFFFF;
3277
3278 /* check if alternative SAN MAC is supported */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003279 offset = IXGBE_ALT_SAN_MAC_ADDR_BLK_PTR;
3280 if (hw->eeprom.ops.read(hw, offset, &alt_san_mac_blk_offset))
3281 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003282
3283 if ((alt_san_mac_blk_offset == 0) ||
3284 (alt_san_mac_blk_offset == 0xFFFF))
Mark Rustade90dd262014-07-22 06:51:08 +00003285 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003286
3287 /* check capability in alternative san mac address block */
3288 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_CAPS_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003289 if (hw->eeprom.ops.read(hw, offset, &caps))
3290 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003291 if (!(caps & IXGBE_ALT_SAN_MAC_ADDR_CAPS_ALTWWN))
Mark Rustade90dd262014-07-22 06:51:08 +00003292 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003293
3294 /* get the corresponding prefix for WWNN/WWPN */
3295 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWNN_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003296 if (hw->eeprom.ops.read(hw, offset, wwnn_prefix))
3297 hw_err(hw, "eeprom read at offset %d failed\n", offset);
Don Skidmorea391f1d2010-11-16 19:27:15 -08003298
3299 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWPN_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003300 if (hw->eeprom.ops.read(hw, offset, wwpn_prefix))
3301 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003302
Don Skidmorea391f1d2010-11-16 19:27:15 -08003303 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003304
3305wwn_prefix_err:
3306 hw_err(hw, "eeprom read at offset %d failed\n", offset);
3307 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003308}
Greg Rosea985b6c32010-11-18 03:02:52 +00003309
3310/**
3311 * ixgbe_set_mac_anti_spoofing - Enable/Disable MAC anti-spoofing
3312 * @hw: pointer to hardware structure
Emil Tantilov77f192a2016-03-18 16:11:14 -07003313 * @enable: enable or disable switch for MAC anti-spoofing
3314 * @vf: Virtual Function pool - VF Pool to set for MAC anti-spoofing
Greg Rosea985b6c32010-11-18 03:02:52 +00003315 *
3316 **/
Emil Tantilov77f192a2016-03-18 16:11:14 -07003317void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
Greg Rosea985b6c32010-11-18 03:02:52 +00003318{
Emil Tantilov77f192a2016-03-18 16:11:14 -07003319 int vf_target_reg = vf >> 3;
3320 int vf_target_shift = vf % 8;
3321 u32 pfvfspoof;
Greg Rosea985b6c32010-11-18 03:02:52 +00003322
3323 if (hw->mac.type == ixgbe_mac_82598EB)
3324 return;
3325
Emil Tantilov77f192a2016-03-18 16:11:14 -07003326 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
Greg Rosea985b6c32010-11-18 03:02:52 +00003327 if (enable)
Emil Tantilov77f192a2016-03-18 16:11:14 -07003328 pfvfspoof |= BIT(vf_target_shift);
3329 else
3330 pfvfspoof &= ~BIT(vf_target_shift);
3331 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
Greg Rosea985b6c32010-11-18 03:02:52 +00003332}
3333
3334/**
3335 * ixgbe_set_vlan_anti_spoofing - Enable/Disable VLAN anti-spoofing
3336 * @hw: pointer to hardware structure
3337 * @enable: enable or disable switch for VLAN anti-spoofing
3338 * @pf: Virtual Function pool - VF Pool to set for VLAN anti-spoofing
3339 *
3340 **/
3341void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
3342{
3343 int vf_target_reg = vf >> 3;
3344 int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT;
3345 u32 pfvfspoof;
3346
3347 if (hw->mac.type == ixgbe_mac_82598EB)
3348 return;
3349
3350 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
3351 if (enable)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003352 pfvfspoof |= BIT(vf_target_shift);
Greg Rosea985b6c32010-11-18 03:02:52 +00003353 else
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003354 pfvfspoof &= ~BIT(vf_target_shift);
Greg Rosea985b6c32010-11-18 03:02:52 +00003355 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
3356}
Emil Tantilovb776d102011-03-31 09:36:18 +00003357
3358/**
3359 * ixgbe_get_device_caps_generic - Get additional device capabilities
3360 * @hw: pointer to hardware structure
3361 * @device_caps: the EEPROM word with the extra device capabilities
3362 *
3363 * This function will read the EEPROM location for the device capabilities,
3364 * and return the word through device_caps.
3365 **/
3366s32 ixgbe_get_device_caps_generic(struct ixgbe_hw *hw, u16 *device_caps)
3367{
3368 hw->eeprom.ops.read(hw, IXGBE_DEVICE_CAPS, device_caps);
3369
3370 return 0;
3371}
John Fastabend80605c652011-05-02 12:34:10 +00003372
3373/**
3374 * ixgbe_set_rxpba_generic - Initialize RX packet buffer
3375 * @hw: pointer to hardware structure
3376 * @num_pb: number of packet buffers to allocate
3377 * @headroom: reserve n KB of headroom
3378 * @strategy: packet buffer allocation strategy
3379 **/
3380void ixgbe_set_rxpba_generic(struct ixgbe_hw *hw,
3381 int num_pb,
3382 u32 headroom,
3383 int strategy)
3384{
3385 u32 pbsize = hw->mac.rx_pb_size;
3386 int i = 0;
3387 u32 rxpktsize, txpktsize, txpbthresh;
3388
3389 /* Reserve headroom */
3390 pbsize -= headroom;
3391
3392 if (!num_pb)
3393 num_pb = 1;
3394
3395 /* Divide remaining packet buffer space amongst the number
3396 * of packet buffers requested using supplied strategy.
3397 */
3398 switch (strategy) {
3399 case (PBA_STRATEGY_WEIGHTED):
3400 /* pba_80_48 strategy weight first half of packet buffer with
3401 * 5/8 of the packet buffer space.
3402 */
3403 rxpktsize = ((pbsize * 5 * 2) / (num_pb * 8));
3404 pbsize -= rxpktsize * (num_pb / 2);
3405 rxpktsize <<= IXGBE_RXPBSIZE_SHIFT;
3406 for (; i < (num_pb / 2); i++)
3407 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3408 /* Fall through to configure remaining packet buffers */
3409 case (PBA_STRATEGY_EQUAL):
3410 /* Divide the remaining Rx packet buffer evenly among the TCs */
3411 rxpktsize = (pbsize / (num_pb - i)) << IXGBE_RXPBSIZE_SHIFT;
3412 for (; i < num_pb; i++)
3413 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3414 break;
3415 default:
3416 break;
3417 }
3418
3419 /*
3420 * Setup Tx packet buffer and threshold equally for all TCs
3421 * TXPBTHRESH register is set in K so divide by 1024 and subtract
3422 * 10 since the largest packet we support is just over 9K.
3423 */
3424 txpktsize = IXGBE_TXPBSIZE_MAX / num_pb;
3425 txpbthresh = (txpktsize / 1024) - IXGBE_TXPKT_SIZE_MAX;
3426 for (i = 0; i < num_pb; i++) {
3427 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
3428 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
3429 }
3430
3431 /* Clear unused TCs, if any, to zero buffer size*/
3432 for (; i < IXGBE_MAX_PB; i++) {
3433 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
3434 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
3435 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
3436 }
3437}
Emil Tantilov9612de92011-05-07 07:40:20 +00003438
3439/**
3440 * ixgbe_calculate_checksum - Calculate checksum for buffer
3441 * @buffer: pointer to EEPROM
3442 * @length: size of EEPROM to calculate a checksum for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003443 *
Emil Tantilov9612de92011-05-07 07:40:20 +00003444 * Calculates the checksum for some buffer on a specified length. The
3445 * checksum calculated is returned.
3446 **/
3447static u8 ixgbe_calculate_checksum(u8 *buffer, u32 length)
3448{
3449 u32 i;
3450 u8 sum = 0;
3451
3452 if (!buffer)
3453 return 0;
3454
3455 for (i = 0; i < length; i++)
3456 sum += buffer[i];
3457
3458 return (u8) (0 - sum);
3459}
3460
3461/**
3462 * ixgbe_host_interface_command - Issue command to manageability block
3463 * @hw: pointer to the HW structure
3464 * @buffer: contains the command to write and where the return status will
3465 * be placed
Don Skidmorec466d7a2012-02-28 06:35:54 +00003466 * @length: length of buffer, must be multiple of 4 bytes
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003467 * @timeout: time in ms to wait for command completion
3468 * @return_data: read and return data from the buffer (true) or not (false)
3469 * Needed because FW structures are big endian and decoding of
3470 * these fields can be 8 bit or 16 bit based on command. Decoding
3471 * is not easily understood without making a table of commands.
3472 * So we will leave this up to the caller to read back the data
3473 * in these cases.
Emil Tantilov9612de92011-05-07 07:40:20 +00003474 *
3475 * Communicates with the manageability block. On success return 0
3476 * else return IXGBE_ERR_HOST_INTERFACE_COMMAND.
3477 **/
Mark Rustad5cffde32016-03-14 11:05:57 -07003478s32 ixgbe_host_interface_command(struct ixgbe_hw *hw, void *buffer,
Don Skidmore6a14ee02014-12-05 03:59:50 +00003479 u32 length, u32 timeout,
3480 bool return_data)
Emil Tantilov9612de92011-05-07 07:40:20 +00003481{
Emil Tantilov9612de92011-05-07 07:40:20 +00003482 u32 hdr_size = sizeof(struct ixgbe_hic_hdr);
Mark Rustad5cffde32016-03-14 11:05:57 -07003483 u32 hicr, i, bi, fwsts;
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003484 u16 buf_len, dword_len;
Mark Rustad5cffde32016-03-14 11:05:57 -07003485 union {
3486 struct ixgbe_hic_hdr hdr;
3487 u32 u32arr[1];
3488 } *bp = buffer;
Mark Rustadaf741902016-03-14 11:06:02 -07003489 s32 status;
Emil Tantilov9612de92011-05-07 07:40:20 +00003490
Mark Rustad5cffde32016-03-14 11:05:57 -07003491 if (!length || length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) {
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003492 hw_dbg(hw, "Buffer length failure buffersize-%d.\n", length);
Mark Rustade90dd262014-07-22 06:51:08 +00003493 return IXGBE_ERR_HOST_INTERFACE_COMMAND;
Emil Tantilov9612de92011-05-07 07:40:20 +00003494 }
Mark Rustadaf741902016-03-14 11:06:02 -07003495 /* Take management host interface semaphore */
3496 status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM);
3497 if (status)
3498 return status;
Emil Tantilov9612de92011-05-07 07:40:20 +00003499
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003500 /* Set bit 9 of FWSTS clearing FW reset indication */
3501 fwsts = IXGBE_READ_REG(hw, IXGBE_FWSTS);
3502 IXGBE_WRITE_REG(hw, IXGBE_FWSTS, fwsts | IXGBE_FWSTS_FWRI);
3503
Emil Tantilov9612de92011-05-07 07:40:20 +00003504 /* Check that the host interface is enabled. */
3505 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
Mark Rustad5cffde32016-03-14 11:05:57 -07003506 if (!(hicr & IXGBE_HICR_EN)) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003507 hw_dbg(hw, "IXGBE_HOST_EN bit disabled.\n");
Mark Rustadaf741902016-03-14 11:06:02 -07003508 status = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3509 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003510 }
3511
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003512 /* Calculate length in DWORDs. We must be DWORD aligned */
Mark Rustad5cffde32016-03-14 11:05:57 -07003513 if (length % sizeof(u32)) {
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003514 hw_dbg(hw, "Buffer length failure, not aligned to dword");
Mark Rustadaf741902016-03-14 11:06:02 -07003515 status = IXGBE_ERR_INVALID_ARGUMENT;
3516 goto rel_out;
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003517 }
3518
Emil Tantilov9612de92011-05-07 07:40:20 +00003519 dword_len = length >> 2;
3520
Mark Rustad5cffde32016-03-14 11:05:57 -07003521 /* The device driver writes the relevant command block
Emil Tantilov9612de92011-05-07 07:40:20 +00003522 * into the ram area.
3523 */
3524 for (i = 0; i < dword_len; i++)
3525 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_FLEX_MNG,
Mark Rustad5cffde32016-03-14 11:05:57 -07003526 i, cpu_to_le32(bp->u32arr[i]));
Emil Tantilov9612de92011-05-07 07:40:20 +00003527
3528 /* Setting this bit tells the ARC that a new command is pending. */
3529 IXGBE_WRITE_REG(hw, IXGBE_HICR, hicr | IXGBE_HICR_C);
3530
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003531 for (i = 0; i < timeout; i++) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003532 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
3533 if (!(hicr & IXGBE_HICR_C))
3534 break;
3535 usleep_range(1000, 2000);
3536 }
3537
3538 /* Check command successful completion. */
Mark Rustad5cffde32016-03-14 11:05:57 -07003539 if ((timeout && i == timeout) ||
3540 !(IXGBE_READ_REG(hw, IXGBE_HICR) & IXGBE_HICR_SV)) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003541 hw_dbg(hw, "Command has failed with no status valid.\n");
Mark Rustadaf741902016-03-14 11:06:02 -07003542 status = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3543 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003544 }
3545
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003546 if (!return_data)
Mark Rustadaf741902016-03-14 11:06:02 -07003547 goto rel_out;
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003548
Emil Tantilov9612de92011-05-07 07:40:20 +00003549 /* Calculate length in DWORDs */
3550 dword_len = hdr_size >> 2;
3551
3552 /* first pull in the header so we know the buffer length */
Emil Tantilov331bcf42011-10-22 05:21:32 +00003553 for (bi = 0; bi < dword_len; bi++) {
Mark Rustad5cffde32016-03-14 11:05:57 -07003554 bp->u32arr[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3555 le32_to_cpus(&bp->u32arr[bi]);
Emil Tantilov79488c52011-10-11 08:24:57 +00003556 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003557
3558 /* If there is any thing in data position pull it in */
Mark Rustad5cffde32016-03-14 11:05:57 -07003559 buf_len = bp->hdr.buf_len;
3560 if (!buf_len)
Mark Rustadaf741902016-03-14 11:06:02 -07003561 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003562
Mark Rustad73457162016-03-14 11:05:51 -07003563 if (length < round_up(buf_len, 4) + hdr_size) {
Emil Tantilov9612de92011-05-07 07:40:20 +00003564 hw_dbg(hw, "Buffer not large enough for reply message.\n");
Mark Rustadaf741902016-03-14 11:06:02 -07003565 status = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3566 goto rel_out;
Emil Tantilov9612de92011-05-07 07:40:20 +00003567 }
3568
Emil Tantilov331bcf42011-10-22 05:21:32 +00003569 /* Calculate length in DWORDs, add 3 for odd lengths */
3570 dword_len = (buf_len + 3) >> 2;
Emil Tantilov9612de92011-05-07 07:40:20 +00003571
Mark Rustad5cffde32016-03-14 11:05:57 -07003572 /* Pull in the rest of the buffer (bi is where we left off) */
Emil Tantilov331bcf42011-10-22 05:21:32 +00003573 for (; bi <= dword_len; bi++) {
Mark Rustad5cffde32016-03-14 11:05:57 -07003574 bp->u32arr[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3575 le32_to_cpus(&bp->u32arr[bi]);
Emil Tantilov331bcf42011-10-22 05:21:32 +00003576 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003577
Mark Rustadaf741902016-03-14 11:06:02 -07003578rel_out:
3579 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM);
3580
3581 return status;
Emil Tantilov9612de92011-05-07 07:40:20 +00003582}
3583
3584/**
3585 * ixgbe_set_fw_drv_ver_generic - Sends driver version to firmware
3586 * @hw: pointer to the HW structure
3587 * @maj: driver version major number
3588 * @min: driver version minor number
3589 * @build: driver version build number
3590 * @sub: driver version sub build number
3591 *
3592 * Sends driver version number to firmware through the manageability
3593 * block. On success return 0
3594 * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring
3595 * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails.
3596 **/
3597s32 ixgbe_set_fw_drv_ver_generic(struct ixgbe_hw *hw, u8 maj, u8 min,
3598 u8 build, u8 sub)
3599{
3600 struct ixgbe_hic_drv_info fw_cmd;
3601 int i;
Mark Rustade90dd262014-07-22 06:51:08 +00003602 s32 ret_val;
Emil Tantilov9612de92011-05-07 07:40:20 +00003603
Emil Tantilov9612de92011-05-07 07:40:20 +00003604 fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO;
3605 fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN;
3606 fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED;
Mark Rustad3775b812016-03-14 11:05:46 -07003607 fw_cmd.port_num = hw->bus.func;
Emil Tantilov9612de92011-05-07 07:40:20 +00003608 fw_cmd.ver_maj = maj;
3609 fw_cmd.ver_min = min;
3610 fw_cmd.ver_build = build;
3611 fw_cmd.ver_sub = sub;
3612 fw_cmd.hdr.checksum = 0;
3613 fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd,
3614 (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len));
3615 fw_cmd.pad = 0;
3616 fw_cmd.pad2 = 0;
3617
3618 for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) {
Mark Rustad5cffde32016-03-14 11:05:57 -07003619 ret_val = ixgbe_host_interface_command(hw, &fw_cmd,
Don Skidmoreb48e4aa2014-11-29 05:22:32 +00003620 sizeof(fw_cmd),
3621 IXGBE_HI_COMMAND_TIMEOUT,
3622 true);
Emil Tantilov9612de92011-05-07 07:40:20 +00003623 if (ret_val != 0)
3624 continue;
3625
3626 if (fw_cmd.hdr.cmd_or_resp.ret_status ==
3627 FW_CEM_RESP_STATUS_SUCCESS)
3628 ret_val = 0;
3629 else
3630 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3631
3632 break;
3633 }
3634
Emil Tantilov9612de92011-05-07 07:40:20 +00003635 return ret_val;
3636}
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003637
3638/**
3639 * ixgbe_clear_tx_pending - Clear pending TX work from the PCIe fifo
3640 * @hw: pointer to the hardware structure
3641 *
3642 * The 82599 and x540 MACs can experience issues if TX work is still pending
3643 * when a reset occurs. This function prevents this by flushing the PCIe
3644 * buffers on the system.
3645 **/
3646void ixgbe_clear_tx_pending(struct ixgbe_hw *hw)
3647{
Don Skidmore71bde602014-10-29 07:23:41 +00003648 u32 gcr_ext, hlreg0, i, poll;
3649 u16 value;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003650
3651 /*
3652 * If double reset is not requested then all transactions should
3653 * already be clear and as such there is no work to do
3654 */
3655 if (!(hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED))
3656 return;
3657
3658 /*
3659 * Set loopback enable to prevent any transmits from being sent
3660 * should the link come up. This assumes that the RXCTRL.RXEN bit
3661 * has already been cleared.
3662 */
3663 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3664 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0 | IXGBE_HLREG0_LPBK);
3665
Don Skidmore71bde602014-10-29 07:23:41 +00003666 /* wait for a last completion before clearing buffers */
3667 IXGBE_WRITE_FLUSH(hw);
3668 usleep_range(3000, 6000);
3669
3670 /* Before proceeding, make sure that the PCIe block does not have
3671 * transactions pending.
3672 */
3673 poll = ixgbe_pcie_timeout_poll(hw);
3674 for (i = 0; i < poll; i++) {
3675 usleep_range(100, 200);
3676 value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS);
3677 if (ixgbe_removed(hw->hw_addr))
3678 break;
3679 if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING))
3680 break;
3681 }
3682
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003683 /* initiate cleaning flow for buffers in the PCIe transaction layer */
3684 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3685 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT,
3686 gcr_ext | IXGBE_GCR_EXT_BUFFERS_CLEAR);
3687
3688 /* Flush all writes and allow 20usec for all transactions to clear */
3689 IXGBE_WRITE_FLUSH(hw);
3690 udelay(20);
3691
3692 /* restore previous register values */
3693 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3694 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3695}
Don Skidmoree1ea9152012-02-17 02:38:58 +00003696
3697static const u8 ixgbe_emc_temp_data[4] = {
3698 IXGBE_EMC_INTERNAL_DATA,
3699 IXGBE_EMC_DIODE1_DATA,
3700 IXGBE_EMC_DIODE2_DATA,
3701 IXGBE_EMC_DIODE3_DATA
3702};
3703static const u8 ixgbe_emc_therm_limit[4] = {
3704 IXGBE_EMC_INTERNAL_THERM_LIMIT,
3705 IXGBE_EMC_DIODE1_THERM_LIMIT,
3706 IXGBE_EMC_DIODE2_THERM_LIMIT,
3707 IXGBE_EMC_DIODE3_THERM_LIMIT
3708};
3709
3710/**
3711 * ixgbe_get_ets_data - Extracts the ETS bit data
3712 * @hw: pointer to hardware structure
3713 * @ets_cfg: extected ETS data
3714 * @ets_offset: offset of ETS data
3715 *
3716 * Returns error code.
3717 **/
3718static s32 ixgbe_get_ets_data(struct ixgbe_hw *hw, u16 *ets_cfg,
3719 u16 *ets_offset)
3720{
Mark Rustade90dd262014-07-22 06:51:08 +00003721 s32 status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003722
3723 status = hw->eeprom.ops.read(hw, IXGBE_ETS_CFG, ets_offset);
3724 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003725 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003726
Mark Rustade90dd262014-07-22 06:51:08 +00003727 if ((*ets_offset == 0x0000) || (*ets_offset == 0xFFFF))
3728 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003729
3730 status = hw->eeprom.ops.read(hw, *ets_offset, ets_cfg);
3731 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003732 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003733
Mark Rustade90dd262014-07-22 06:51:08 +00003734 if ((*ets_cfg & IXGBE_ETS_TYPE_MASK) != IXGBE_ETS_TYPE_EMC_SHIFTED)
3735 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003736
Mark Rustade90dd262014-07-22 06:51:08 +00003737 return 0;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003738}
3739
3740/**
3741 * ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
3742 * @hw: pointer to hardware structure
3743 *
3744 * Returns the thermal sensor data structure
3745 **/
3746s32 ixgbe_get_thermal_sensor_data_generic(struct ixgbe_hw *hw)
3747{
Mark Rustade90dd262014-07-22 06:51:08 +00003748 s32 status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003749 u16 ets_offset;
3750 u16 ets_cfg;
3751 u16 ets_sensor;
3752 u8 num_sensors;
3753 u8 i;
3754 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3755
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003756 /* Only support thermal sensors attached to physical port 0 */
Mark Rustade90dd262014-07-22 06:51:08 +00003757 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1))
3758 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003759
3760 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3761 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003762 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003763
3764 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3765 if (num_sensors > IXGBE_MAX_SENSORS)
3766 num_sensors = IXGBE_MAX_SENSORS;
3767
3768 for (i = 0; i < num_sensors; i++) {
3769 u8 sensor_index;
3770 u8 sensor_location;
3771
3772 status = hw->eeprom.ops.read(hw, (ets_offset + 1 + i),
3773 &ets_sensor);
3774 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003775 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003776
3777 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3778 IXGBE_ETS_DATA_INDEX_SHIFT);
3779 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3780 IXGBE_ETS_DATA_LOC_SHIFT);
3781
3782 if (sensor_location != 0) {
3783 status = hw->phy.ops.read_i2c_byte(hw,
3784 ixgbe_emc_temp_data[sensor_index],
3785 IXGBE_I2C_THERMAL_SENSOR_ADDR,
3786 &data->sensor[i].temp);
3787 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003788 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003789 }
3790 }
Mark Rustade90dd262014-07-22 06:51:08 +00003791
3792 return 0;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003793}
3794
3795/**
3796 * ixgbe_init_thermal_sensor_thresh_generic - Inits thermal sensor thresholds
3797 * @hw: pointer to hardware structure
3798 *
3799 * Inits the thermal sensor thresholds according to the NVM map
3800 * and save off the threshold and location values into mac.thermal_sensor_data
3801 **/
3802s32 ixgbe_init_thermal_sensor_thresh_generic(struct ixgbe_hw *hw)
3803{
Mark Rustade90dd262014-07-22 06:51:08 +00003804 s32 status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003805 u16 ets_offset;
3806 u16 ets_cfg;
3807 u16 ets_sensor;
3808 u8 low_thresh_delta;
3809 u8 num_sensors;
3810 u8 therm_limit;
3811 u8 i;
3812 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3813
3814 memset(data, 0, sizeof(struct ixgbe_thermal_sensor_data));
3815
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003816 /* Only support thermal sensors attached to physical port 0 */
Mark Rustade90dd262014-07-22 06:51:08 +00003817 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1))
3818 return IXGBE_NOT_IMPLEMENTED;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003819
3820 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3821 if (status)
Mark Rustade90dd262014-07-22 06:51:08 +00003822 return status;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003823
3824 low_thresh_delta = ((ets_cfg & IXGBE_ETS_LTHRES_DELTA_MASK) >>
3825 IXGBE_ETS_LTHRES_DELTA_SHIFT);
3826 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3827 if (num_sensors > IXGBE_MAX_SENSORS)
3828 num_sensors = IXGBE_MAX_SENSORS;
3829
3830 for (i = 0; i < num_sensors; i++) {
3831 u8 sensor_index;
3832 u8 sensor_location;
3833
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003834 if (hw->eeprom.ops.read(hw, ets_offset + 1 + i, &ets_sensor)) {
3835 hw_err(hw, "eeprom read at offset %d failed\n",
3836 ets_offset + 1 + i);
3837 continue;
3838 }
Don Skidmoree1ea9152012-02-17 02:38:58 +00003839 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3840 IXGBE_ETS_DATA_INDEX_SHIFT);
3841 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3842 IXGBE_ETS_DATA_LOC_SHIFT);
3843 therm_limit = ets_sensor & IXGBE_ETS_DATA_HTHRESH_MASK;
3844
3845 hw->phy.ops.write_i2c_byte(hw,
3846 ixgbe_emc_therm_limit[sensor_index],
3847 IXGBE_I2C_THERMAL_SENSOR_ADDR, therm_limit);
3848
3849 if (sensor_location == 0)
3850 continue;
3851
3852 data->sensor[i].location = sensor_location;
3853 data->sensor[i].caution_thresh = therm_limit;
3854 data->sensor[i].max_op_thresh = therm_limit - low_thresh_delta;
3855 }
Mark Rustade90dd262014-07-22 06:51:08 +00003856
3857 return 0;
Don Skidmoree1ea9152012-02-17 02:38:58 +00003858}
3859
Don Skidmore1f9ac572015-03-13 13:54:30 -07003860void ixgbe_disable_rx_generic(struct ixgbe_hw *hw)
3861{
3862 u32 rxctrl;
3863
3864 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3865 if (rxctrl & IXGBE_RXCTRL_RXEN) {
3866 if (hw->mac.type != ixgbe_mac_82598EB) {
3867 u32 pfdtxgswc;
3868
3869 pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
3870 if (pfdtxgswc & IXGBE_PFDTXGSWC_VT_LBEN) {
3871 pfdtxgswc &= ~IXGBE_PFDTXGSWC_VT_LBEN;
3872 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
3873 hw->mac.set_lben = true;
3874 } else {
3875 hw->mac.set_lben = false;
3876 }
3877 }
3878 rxctrl &= ~IXGBE_RXCTRL_RXEN;
3879 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl);
3880 }
3881}
3882
3883void ixgbe_enable_rx_generic(struct ixgbe_hw *hw)
3884{
3885 u32 rxctrl;
3886
3887 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3888 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, (rxctrl | IXGBE_RXCTRL_RXEN));
3889
3890 if (hw->mac.type != ixgbe_mac_82598EB) {
3891 if (hw->mac.set_lben) {
3892 u32 pfdtxgswc;
3893
3894 pfdtxgswc = IXGBE_READ_REG(hw, IXGBE_PFDTXGSWC);
3895 pfdtxgswc |= IXGBE_PFDTXGSWC_VT_LBEN;
3896 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, pfdtxgswc);
3897 hw->mac.set_lben = false;
3898 }
3899 }
3900}
Don Skidmorebd8069a2015-06-10 20:05:02 -04003901
3902/** ixgbe_mng_present - returns true when management capability is present
3903 * @hw: pointer to hardware structure
3904 **/
3905bool ixgbe_mng_present(struct ixgbe_hw *hw)
3906{
3907 u32 fwsm;
3908
3909 if (hw->mac.type < ixgbe_mac_82599EB)
3910 return false;
3911
3912 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
3913 fwsm &= IXGBE_FWSM_MODE_MASK;
3914 return fwsm == IXGBE_FWSM_FW_MODE_PT;
3915}
Mark Rustad6d373a12015-08-08 16:18:28 -07003916
3917/**
3918 * ixgbe_setup_mac_link_multispeed_fiber - Set MAC link speed
3919 * @hw: pointer to hardware structure
3920 * @speed: new link speed
3921 * @autoneg_wait_to_complete: true when waiting for completion is needed
3922 *
3923 * Set the link speed in the MAC and/or PHY register and restarts link.
3924 */
3925s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw,
3926 ixgbe_link_speed speed,
3927 bool autoneg_wait_to_complete)
3928{
3929 ixgbe_link_speed link_speed = IXGBE_LINK_SPEED_UNKNOWN;
3930 ixgbe_link_speed highest_link_speed = IXGBE_LINK_SPEED_UNKNOWN;
3931 s32 status = 0;
3932 u32 speedcnt = 0;
3933 u32 i = 0;
3934 bool autoneg, link_up = false;
3935
3936 /* Mask off requested but non-supported speeds */
3937 status = hw->mac.ops.get_link_capabilities(hw, &link_speed, &autoneg);
3938 if (status)
3939 return status;
3940
3941 speed &= link_speed;
3942
3943 /* Try each speed one by one, highest priority first. We do this in
3944 * software because 10Gb fiber doesn't support speed autonegotiation.
3945 */
3946 if (speed & IXGBE_LINK_SPEED_10GB_FULL) {
3947 speedcnt++;
3948 highest_link_speed = IXGBE_LINK_SPEED_10GB_FULL;
3949
3950 /* If we already have link at this speed, just jump out */
3951 status = hw->mac.ops.check_link(hw, &link_speed, &link_up,
3952 false);
3953 if (status)
3954 return status;
3955
3956 if (link_speed == IXGBE_LINK_SPEED_10GB_FULL && link_up)
3957 goto out;
3958
3959 /* Set the module link speed */
3960 switch (hw->phy.media_type) {
3961 case ixgbe_media_type_fiber:
3962 hw->mac.ops.set_rate_select_speed(hw,
3963 IXGBE_LINK_SPEED_10GB_FULL);
3964 break;
3965 case ixgbe_media_type_fiber_qsfp:
3966 /* QSFP module automatically detects MAC link speed */
3967 break;
3968 default:
3969 hw_dbg(hw, "Unexpected media type\n");
3970 break;
3971 }
3972
3973 /* Allow module to change analog characteristics (1G->10G) */
3974 msleep(40);
3975
3976 status = hw->mac.ops.setup_mac_link(hw,
3977 IXGBE_LINK_SPEED_10GB_FULL,
3978 autoneg_wait_to_complete);
3979 if (status)
3980 return status;
3981
3982 /* Flap the Tx laser if it has not already been done */
3983 if (hw->mac.ops.flap_tx_laser)
3984 hw->mac.ops.flap_tx_laser(hw);
3985
3986 /* Wait for the controller to acquire link. Per IEEE 802.3ap,
3987 * Section 73.10.2, we may have to wait up to 500ms if KR is
3988 * attempted. 82599 uses the same timing for 10g SFI.
3989 */
3990 for (i = 0; i < 5; i++) {
3991 /* Wait for the link partner to also set speed */
3992 msleep(100);
3993
3994 /* If we have link, just jump out */
3995 status = hw->mac.ops.check_link(hw, &link_speed,
3996 &link_up, false);
3997 if (status)
3998 return status;
3999
4000 if (link_up)
4001 goto out;
4002 }
4003 }
4004
4005 if (speed & IXGBE_LINK_SPEED_1GB_FULL) {
4006 speedcnt++;
4007 if (highest_link_speed == IXGBE_LINK_SPEED_UNKNOWN)
4008 highest_link_speed = IXGBE_LINK_SPEED_1GB_FULL;
4009
4010 /* If we already have link at this speed, just jump out */
4011 status = hw->mac.ops.check_link(hw, &link_speed, &link_up,
4012 false);
4013 if (status)
4014 return status;
4015
4016 if (link_speed == IXGBE_LINK_SPEED_1GB_FULL && link_up)
4017 goto out;
4018
4019 /* Set the module link speed */
4020 switch (hw->phy.media_type) {
4021 case ixgbe_media_type_fiber:
4022 hw->mac.ops.set_rate_select_speed(hw,
4023 IXGBE_LINK_SPEED_1GB_FULL);
4024 break;
4025 case ixgbe_media_type_fiber_qsfp:
4026 /* QSFP module automatically detects link speed */
4027 break;
4028 default:
4029 hw_dbg(hw, "Unexpected media type\n");
4030 break;
4031 }
4032
4033 /* Allow module to change analog characteristics (10G->1G) */
4034 msleep(40);
4035
4036 status = hw->mac.ops.setup_mac_link(hw,
4037 IXGBE_LINK_SPEED_1GB_FULL,
4038 autoneg_wait_to_complete);
4039 if (status)
4040 return status;
4041
4042 /* Flap the Tx laser if it has not already been done */
4043 if (hw->mac.ops.flap_tx_laser)
4044 hw->mac.ops.flap_tx_laser(hw);
4045
4046 /* Wait for the link partner to also set speed */
4047 msleep(100);
4048
4049 /* If we have link, just jump out */
4050 status = hw->mac.ops.check_link(hw, &link_speed, &link_up,
4051 false);
4052 if (status)
4053 return status;
4054
4055 if (link_up)
4056 goto out;
4057 }
4058
4059 /* We didn't get link. Configure back to the highest speed we tried,
4060 * (if there was more than one). We call ourselves back with just the
4061 * single highest speed that the user requested.
4062 */
4063 if (speedcnt > 1)
4064 status = ixgbe_setup_mac_link_multispeed_fiber(hw,
4065 highest_link_speed,
4066 autoneg_wait_to_complete);
4067
4068out:
4069 /* Set autoneg_advertised value based on input link speed */
4070 hw->phy.autoneg_advertised = 0;
4071
4072 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
4073 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL;
4074
4075 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
4076 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL;
4077
4078 return status;
4079}
4080
4081/**
4082 * ixgbe_set_soft_rate_select_speed - Set module link speed
4083 * @hw: pointer to hardware structure
4084 * @speed: link speed to set
4085 *
4086 * Set module link speed via the soft rate select.
4087 */
4088void ixgbe_set_soft_rate_select_speed(struct ixgbe_hw *hw,
4089 ixgbe_link_speed speed)
4090{
4091 s32 status;
4092 u8 rs, eeprom_data;
4093
4094 switch (speed) {
4095 case IXGBE_LINK_SPEED_10GB_FULL:
4096 /* one bit mask same as setting on */
4097 rs = IXGBE_SFF_SOFT_RS_SELECT_10G;
4098 break;
4099 case IXGBE_LINK_SPEED_1GB_FULL:
4100 rs = IXGBE_SFF_SOFT_RS_SELECT_1G;
4101 break;
4102 default:
4103 hw_dbg(hw, "Invalid fixed module speed\n");
4104 return;
4105 }
4106
4107 /* Set RS0 */
4108 status = hw->phy.ops.read_i2c_byte(hw, IXGBE_SFF_SFF_8472_OSCB,
4109 IXGBE_I2C_EEPROM_DEV_ADDR2,
4110 &eeprom_data);
4111 if (status) {
4112 hw_dbg(hw, "Failed to read Rx Rate Select RS0\n");
4113 return;
4114 }
4115
4116 eeprom_data = (eeprom_data & ~IXGBE_SFF_SOFT_RS_SELECT_MASK) | rs;
4117
4118 status = hw->phy.ops.write_i2c_byte(hw, IXGBE_SFF_SFF_8472_OSCB,
4119 IXGBE_I2C_EEPROM_DEV_ADDR2,
4120 eeprom_data);
4121 if (status) {
4122 hw_dbg(hw, "Failed to write Rx Rate Select RS0\n");
4123 return;
4124 }
4125}