blob: 4456c235a44a8d579c0cf128d1f57ef9f900e42d [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad14438462014-02-28 15:48:57 -08004 Copyright(c) 1999 - 2014 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:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/pci.h>
29#include <linux/delay.h>
30#include <linux/sched.h>
Jiri Pirkoccffad252009-05-22 23:22:17 +000031#include <linux/netdevice.h>
Auke Kok9a799d72007-09-15 14:07:45 -070032
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +000033#include "ixgbe.h"
Auke Kok9a799d72007-09-15 14:07:45 -070034#include "ixgbe_common.h"
35#include "ixgbe_phy.h"
36
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070037static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070038static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw);
39static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070040static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw);
41static void ixgbe_standby_eeprom(struct ixgbe_hw *hw);
42static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
43 u16 count);
44static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count);
45static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec);
46static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec);
47static void ixgbe_release_eeprom(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070048
Auke Kok9a799d72007-09-15 14:07:45 -070049static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr);
Emil Tantiloveb9c3e32011-03-24 00:57:50 +000050static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg);
Emil Tantilov68c70052011-04-20 08:49:06 +000051static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
52 u16 words, u16 *data);
53static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
54 u16 words, u16 *data);
55static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
56 u16 offset);
Emil Tantilovff9d1a52011-08-16 04:35:11 +000057static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw);
Auke Kok9a799d72007-09-15 14:07:45 -070058
59/**
Alexander Duyck67a79df2012-04-19 17:49:56 +000060 * ixgbe_device_supports_autoneg_fc - Check if phy supports autoneg flow
61 * control
62 * @hw: pointer to hardware structure
63 *
64 * There are several phys that do not support autoneg flow control. This
65 * function check the device id to see if the associated phy supports
66 * autoneg flow control.
67 **/
Don Skidmore73d80953d2013-07-31 02:19:24 +000068bool ixgbe_device_supports_autoneg_fc(struct ixgbe_hw *hw)
Alexander Duyck67a79df2012-04-19 17:49:56 +000069{
Don Skidmore73d80953d2013-07-31 02:19:24 +000070 bool supported = false;
71 ixgbe_link_speed speed;
72 bool link_up;
Alexander Duyck67a79df2012-04-19 17:49:56 +000073
Don Skidmore73d80953d2013-07-31 02:19:24 +000074 switch (hw->phy.media_type) {
Don Skidmore4e8e1bc2013-07-31 02:17:40 +000075 case ixgbe_media_type_fiber_fixed:
Don Skidmore73d80953d2013-07-31 02:19:24 +000076 case ixgbe_media_type_fiber:
77 hw->mac.ops.check_link(hw, &speed, &link_up, false);
78 /* if link is down, assume supported */
79 if (link_up)
80 supported = speed == IXGBE_LINK_SPEED_1GB_FULL ?
81 true : false;
82 else
83 supported = true;
84 break;
85 case ixgbe_media_type_backplane:
86 supported = true;
87 break;
88 case ixgbe_media_type_copper:
89 /* only some copper devices support flow control autoneg */
90 switch (hw->device_id) {
91 case IXGBE_DEV_ID_82599_T3_LOM:
92 case IXGBE_DEV_ID_X540T:
93 case IXGBE_DEV_ID_X540T1:
94 supported = true;
95 break;
96 default:
97 break;
98 }
Alexander Duyck67a79df2012-04-19 17:49:56 +000099 default:
Don Skidmore73d80953d2013-07-31 02:19:24 +0000100 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000101 }
Don Skidmore73d80953d2013-07-31 02:19:24 +0000102
103 return supported;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000104}
105
106/**
107 * ixgbe_setup_fc - Set up flow control
108 * @hw: pointer to hardware structure
109 *
110 * Called at init time to set up flow control.
111 **/
Alexander Duyck041441d2012-04-19 17:48:48 +0000112static s32 ixgbe_setup_fc(struct ixgbe_hw *hw)
Alexander Duyck67a79df2012-04-19 17:49:56 +0000113{
114 s32 ret_val = 0;
115 u32 reg = 0, reg_bp = 0;
116 u16 reg_cu = 0;
Don Skidmore429d6a32014-02-27 20:32:41 -0800117 bool locked = false;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000118
Alexander Duyck67a79df2012-04-19 17:49:56 +0000119 /*
120 * Validate the requested mode. Strict IEEE mode does not allow
121 * ixgbe_fc_rx_pause because it will cause us to fail at UNH.
122 */
123 if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
124 hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n");
125 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
126 goto out;
127 }
128
129 /*
130 * 10gig parts do not have a word in the EEPROM to determine the
131 * default flow control setting, so we explicitly set it to full.
132 */
133 if (hw->fc.requested_mode == ixgbe_fc_default)
134 hw->fc.requested_mode = ixgbe_fc_full;
135
136 /*
137 * Set up the 1G and 10G flow control advertisement registers so the
138 * HW will be able to do fc autoneg once the cable is plugged in. If
139 * we link at 10G, the 1G advertisement is harmless and vice versa.
140 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000141 switch (hw->phy.media_type) {
Don Skidmore429d6a32014-02-27 20:32:41 -0800142 case ixgbe_media_type_backplane:
143 /* some MAC's need RMW protection on AUTOC */
144 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &reg_bp);
145 if (!ret_val)
146 goto out;
147
148 /* only backplane uses autoc so fall though */
Don Skidmore4e8e1bc2013-07-31 02:17:40 +0000149 case ixgbe_media_type_fiber_fixed:
Alexander Duyck67a79df2012-04-19 17:49:56 +0000150 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +0000151 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
Don Skidmore429d6a32014-02-27 20:32:41 -0800152
Alexander Duyck67a79df2012-04-19 17:49:56 +0000153 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000154 case ixgbe_media_type_copper:
155 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
156 MDIO_MMD_AN, &reg_cu);
157 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000158 default:
Alexander Duyck041441d2012-04-19 17:48:48 +0000159 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000160 }
161
162 /*
163 * The possible values of fc.requested_mode are:
164 * 0: Flow control is completely disabled
165 * 1: Rx flow control is enabled (we can receive pause frames,
166 * but not send pause frames).
167 * 2: Tx flow control is enabled (we can send pause frames but
168 * we do not support receiving pause frames).
169 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Alexander Duyck67a79df2012-04-19 17:49:56 +0000170 * other: Invalid.
171 */
172 switch (hw->fc.requested_mode) {
173 case ixgbe_fc_none:
174 /* Flow control completely disabled by software override. */
175 reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
176 if (hw->phy.media_type == ixgbe_media_type_backplane)
177 reg_bp &= ~(IXGBE_AUTOC_SYM_PAUSE |
178 IXGBE_AUTOC_ASM_PAUSE);
179 else if (hw->phy.media_type == ixgbe_media_type_copper)
180 reg_cu &= ~(IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE);
181 break;
Alexander Duyck041441d2012-04-19 17:48:48 +0000182 case ixgbe_fc_tx_pause:
183 /*
184 * Tx Flow control is enabled, and Rx Flow control is
185 * disabled by software override.
186 */
187 reg |= IXGBE_PCS1GANA_ASM_PAUSE;
188 reg &= ~IXGBE_PCS1GANA_SYM_PAUSE;
189 if (hw->phy.media_type == ixgbe_media_type_backplane) {
190 reg_bp |= IXGBE_AUTOC_ASM_PAUSE;
191 reg_bp &= ~IXGBE_AUTOC_SYM_PAUSE;
192 } else if (hw->phy.media_type == ixgbe_media_type_copper) {
193 reg_cu |= IXGBE_TAF_ASM_PAUSE;
194 reg_cu &= ~IXGBE_TAF_SYM_PAUSE;
195 }
196 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000197 case ixgbe_fc_rx_pause:
198 /*
199 * Rx Flow control is enabled and Tx Flow control is
200 * disabled by software override. Since there really
201 * isn't a way to advertise that we are capable of RX
202 * Pause ONLY, we will advertise that we support both
Alexander Duyck041441d2012-04-19 17:48:48 +0000203 * symmetric and asymmetric Rx PAUSE, as such we fall
204 * through to the fc_full statement. Later, we will
Alexander Duyck67a79df2012-04-19 17:49:56 +0000205 * disable the adapter's ability to send PAUSE frames.
206 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000207 case ixgbe_fc_full:
208 /* Flow control (both Rx and Tx) is enabled by SW override. */
Alexander Duyck041441d2012-04-19 17:48:48 +0000209 reg |= IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000210 if (hw->phy.media_type == ixgbe_media_type_backplane)
Alexander Duyck041441d2012-04-19 17:48:48 +0000211 reg_bp |= IXGBE_AUTOC_SYM_PAUSE |
212 IXGBE_AUTOC_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000213 else if (hw->phy.media_type == ixgbe_media_type_copper)
Alexander Duyck041441d2012-04-19 17:48:48 +0000214 reg_cu |= IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000215 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000216 default:
217 hw_dbg(hw, "Flow control param set incorrectly\n");
218 ret_val = IXGBE_ERR_CONFIG;
219 goto out;
220 break;
221 }
222
223 if (hw->mac.type != ixgbe_mac_X540) {
224 /*
225 * Enable auto-negotiation between the MAC & PHY;
226 * the MAC will advertise clause 37 flow control.
227 */
228 IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg);
229 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
230
231 /* Disable AN timeout */
232 if (hw->fc.strict_ieee)
233 reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN;
234
235 IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg);
236 hw_dbg(hw, "Set up FC; PCS1GLCTL = 0x%08X\n", reg);
237 }
238
239 /*
240 * AUTOC restart handles negotiation of 1G and 10G on backplane
241 * and copper. There is no need to set the PCS1GCTL register.
242 *
243 */
244 if (hw->phy.media_type == ixgbe_media_type_backplane) {
Don Skidmored7bbcd32012-10-24 06:19:01 +0000245 /* Need the SW/FW semaphore around AUTOC writes if 82599 and
246 * LESM is on, likewise reset_pipeline requries the lock as
247 * it also writes AUTOC.
248 */
Don Skidmore429d6a32014-02-27 20:32:41 -0800249 ret_val = hw->mac.ops.prot_autoc_write(hw, reg_bp, locked);
250 if (ret_val)
251 goto out;
Don Skidmored7bbcd32012-10-24 06:19:01 +0000252
Alexander Duyck67a79df2012-04-19 17:49:56 +0000253 } else if ((hw->phy.media_type == ixgbe_media_type_copper) &&
Don Skidmore429d6a32014-02-27 20:32:41 -0800254 ixgbe_device_supports_autoneg_fc(hw)) {
Alexander Duyck67a79df2012-04-19 17:49:56 +0000255 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
256 MDIO_MMD_AN, reg_cu);
257 }
258
259 hw_dbg(hw, "Set up FC; IXGBE_AUTOC = 0x%08X\n", reg);
260out:
261 return ret_val;
262}
263
264/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700265 * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx
Auke Kok9a799d72007-09-15 14:07:45 -0700266 * @hw: pointer to hardware structure
267 *
268 * Starts the hardware by filling the bus info structure and media type, clears
269 * all on chip counters, initializes receive address registers, multicast
270 * table, VLAN filter table, calls routine to set up link and flow control
271 * settings, and leaves transmit and receive units disabled and uninitialized
272 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700273s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700274{
275 u32 ctrl_ext;
276
277 /* Set the media type */
278 hw->phy.media_type = hw->mac.ops.get_media_type(hw);
279
280 /* Identify the PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700281 hw->phy.ops.identify(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700282
Auke Kok9a799d72007-09-15 14:07:45 -0700283 /* Clear the VLAN filter table */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700284 hw->mac.ops.clear_vfta(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700285
Auke Kok9a799d72007-09-15 14:07:45 -0700286 /* Clear statistics registers */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700287 hw->mac.ops.clear_hw_cntrs(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700288
289 /* Set No Snoop Disable */
290 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
291 ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS;
292 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok3957d632007-10-31 15:22:10 -0700293 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700294
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000295 /* Setup flow control */
Alexander Duyck041441d2012-04-19 17:48:48 +0000296 ixgbe_setup_fc(hw);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000297
Auke Kok9a799d72007-09-15 14:07:45 -0700298 /* Clear adapter stopped flag */
299 hw->adapter_stopped = false;
300
301 return 0;
302}
303
304/**
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000305 * ixgbe_start_hw_gen2 - Init sequence for common device family
306 * @hw: pointer to hw structure
307 *
308 * Performs the init sequence common to the second generation
309 * of 10 GbE devices.
310 * Devices in the second generation:
311 * 82599
312 * X540
313 **/
314s32 ixgbe_start_hw_gen2(struct ixgbe_hw *hw)
315{
316 u32 i;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000317 u32 regval;
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000318
319 /* Clear the rate limiters */
320 for (i = 0; i < hw->mac.max_tx_queues; i++) {
321 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, i);
322 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, 0);
323 }
324 IXGBE_WRITE_FLUSH(hw);
325
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000326 /* Disable relaxed ordering */
327 for (i = 0; i < hw->mac.max_tx_queues; i++) {
328 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000329 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000330 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(i), regval);
331 }
332
333 for (i = 0; i < hw->mac.max_rx_queues; i++) {
334 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000335 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
336 IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000337 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
338 }
339
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000340 return 0;
341}
342
343/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700344 * ixgbe_init_hw_generic - Generic hardware initialization
Auke Kok9a799d72007-09-15 14:07:45 -0700345 * @hw: pointer to hardware structure
346 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700347 * Initialize the hardware by resetting the hardware, filling the bus info
Auke Kok9a799d72007-09-15 14:07:45 -0700348 * structure and media type, clears all on chip counters, initializes receive
349 * address registers, multicast table, VLAN filter table, calls routine to set
350 * up link and flow control settings, and leaves transmit and receive units
351 * disabled and uninitialized
352 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700353s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700354{
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000355 s32 status;
356
Auke Kok9a799d72007-09-15 14:07:45 -0700357 /* Reset the hardware */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000358 status = hw->mac.ops.reset_hw(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700359
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000360 if (status == 0) {
361 /* Start the HW */
362 status = hw->mac.ops.start_hw(hw);
363 }
Auke Kok9a799d72007-09-15 14:07:45 -0700364
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000365 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700366}
367
368/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700369 * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters
Auke Kok9a799d72007-09-15 14:07:45 -0700370 * @hw: pointer to hardware structure
371 *
372 * Clears all hardware statistics counters by reading them from the hardware
373 * Statistics counters are clear on read.
374 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700375s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700376{
377 u16 i = 0;
378
379 IXGBE_READ_REG(hw, IXGBE_CRCERRS);
380 IXGBE_READ_REG(hw, IXGBE_ILLERRC);
381 IXGBE_READ_REG(hw, IXGBE_ERRBC);
382 IXGBE_READ_REG(hw, IXGBE_MSPDC);
383 for (i = 0; i < 8; i++)
384 IXGBE_READ_REG(hw, IXGBE_MPC(i));
385
386 IXGBE_READ_REG(hw, IXGBE_MLFC);
387 IXGBE_READ_REG(hw, IXGBE_MRFC);
388 IXGBE_READ_REG(hw, IXGBE_RLEC);
389 IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Auke Kok9a799d72007-09-15 14:07:45 -0700390 IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Emil Tantilov667c7562011-02-26 06:40:05 +0000391 if (hw->mac.type >= ixgbe_mac_82599EB) {
392 IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
393 IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
394 } else {
395 IXGBE_READ_REG(hw, IXGBE_LXONRXC);
396 IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
397 }
Auke Kok9a799d72007-09-15 14:07:45 -0700398
399 for (i = 0; i < 8; i++) {
400 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700401 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000402 if (hw->mac.type >= ixgbe_mac_82599EB) {
403 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
404 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
405 } else {
406 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
407 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
408 }
Auke Kok9a799d72007-09-15 14:07:45 -0700409 }
Emil Tantilov667c7562011-02-26 06:40:05 +0000410 if (hw->mac.type >= ixgbe_mac_82599EB)
411 for (i = 0; i < 8; i++)
412 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700413 IXGBE_READ_REG(hw, IXGBE_PRC64);
414 IXGBE_READ_REG(hw, IXGBE_PRC127);
415 IXGBE_READ_REG(hw, IXGBE_PRC255);
416 IXGBE_READ_REG(hw, IXGBE_PRC511);
417 IXGBE_READ_REG(hw, IXGBE_PRC1023);
418 IXGBE_READ_REG(hw, IXGBE_PRC1522);
419 IXGBE_READ_REG(hw, IXGBE_GPRC);
420 IXGBE_READ_REG(hw, IXGBE_BPRC);
421 IXGBE_READ_REG(hw, IXGBE_MPRC);
422 IXGBE_READ_REG(hw, IXGBE_GPTC);
423 IXGBE_READ_REG(hw, IXGBE_GORCL);
424 IXGBE_READ_REG(hw, IXGBE_GORCH);
425 IXGBE_READ_REG(hw, IXGBE_GOTCL);
426 IXGBE_READ_REG(hw, IXGBE_GOTCH);
Emil Tantilovf3116f62011-07-29 06:46:15 +0000427 if (hw->mac.type == ixgbe_mac_82598EB)
428 for (i = 0; i < 8; i++)
429 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700430 IXGBE_READ_REG(hw, IXGBE_RUC);
431 IXGBE_READ_REG(hw, IXGBE_RFC);
432 IXGBE_READ_REG(hw, IXGBE_ROC);
433 IXGBE_READ_REG(hw, IXGBE_RJC);
434 IXGBE_READ_REG(hw, IXGBE_MNGPRC);
435 IXGBE_READ_REG(hw, IXGBE_MNGPDC);
436 IXGBE_READ_REG(hw, IXGBE_MNGPTC);
437 IXGBE_READ_REG(hw, IXGBE_TORL);
438 IXGBE_READ_REG(hw, IXGBE_TORH);
439 IXGBE_READ_REG(hw, IXGBE_TPR);
440 IXGBE_READ_REG(hw, IXGBE_TPT);
441 IXGBE_READ_REG(hw, IXGBE_PTC64);
442 IXGBE_READ_REG(hw, IXGBE_PTC127);
443 IXGBE_READ_REG(hw, IXGBE_PTC255);
444 IXGBE_READ_REG(hw, IXGBE_PTC511);
445 IXGBE_READ_REG(hw, IXGBE_PTC1023);
446 IXGBE_READ_REG(hw, IXGBE_PTC1522);
447 IXGBE_READ_REG(hw, IXGBE_MPTC);
448 IXGBE_READ_REG(hw, IXGBE_BPTC);
449 for (i = 0; i < 16; i++) {
450 IXGBE_READ_REG(hw, IXGBE_QPRC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700451 IXGBE_READ_REG(hw, IXGBE_QPTC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000452 if (hw->mac.type >= ixgbe_mac_82599EB) {
453 IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
454 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i));
455 IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
456 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i));
457 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
458 } else {
459 IXGBE_READ_REG(hw, IXGBE_QBRC(i));
460 IXGBE_READ_REG(hw, IXGBE_QBTC(i));
461 }
Auke Kok9a799d72007-09-15 14:07:45 -0700462 }
463
Emil Tantilova3aeea02011-02-26 06:40:11 +0000464 if (hw->mac.type == ixgbe_mac_X540) {
465 if (hw->phy.id == 0)
466 hw->phy.ops.identify(hw);
Emil Tantilovc1085b12011-12-10 08:21:47 +0000467 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECL, MDIO_MMD_PCS, &i);
468 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECH, MDIO_MMD_PCS, &i);
469 hw->phy.ops.read_reg(hw, IXGBE_LDPCECL, MDIO_MMD_PCS, &i);
470 hw->phy.ops.read_reg(hw, IXGBE_LDPCECH, MDIO_MMD_PCS, &i);
Emil Tantilova3aeea02011-02-26 06:40:11 +0000471 }
472
Auke Kok9a799d72007-09-15 14:07:45 -0700473 return 0;
474}
475
476/**
Don Skidmore289700db2010-12-03 03:32:58 +0000477 * ixgbe_read_pba_string_generic - Reads part number string from EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700478 * @hw: pointer to hardware structure
Don Skidmore289700db2010-12-03 03:32:58 +0000479 * @pba_num: stores the part number string from the EEPROM
480 * @pba_num_size: part number string buffer length
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700481 *
Don Skidmore289700db2010-12-03 03:32:58 +0000482 * Reads the part number string from the EEPROM.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700483 **/
Don Skidmore289700db2010-12-03 03:32:58 +0000484s32 ixgbe_read_pba_string_generic(struct ixgbe_hw *hw, u8 *pba_num,
485 u32 pba_num_size)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700486{
487 s32 ret_val;
488 u16 data;
Don Skidmore289700db2010-12-03 03:32:58 +0000489 u16 pba_ptr;
490 u16 offset;
491 u16 length;
492
493 if (pba_num == NULL) {
494 hw_dbg(hw, "PBA string buffer was null\n");
495 return IXGBE_ERR_INVALID_ARGUMENT;
496 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700497
498 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data);
499 if (ret_val) {
500 hw_dbg(hw, "NVM Read Error\n");
501 return ret_val;
502 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700503
Don Skidmore289700db2010-12-03 03:32:58 +0000504 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &pba_ptr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700505 if (ret_val) {
506 hw_dbg(hw, "NVM Read Error\n");
507 return ret_val;
508 }
Don Skidmore289700db2010-12-03 03:32:58 +0000509
510 /*
511 * if data is not ptr guard the PBA must be in legacy format which
512 * means pba_ptr is actually our second data word for the PBA number
513 * and we can decode it into an ascii string
514 */
515 if (data != IXGBE_PBANUM_PTR_GUARD) {
516 hw_dbg(hw, "NVM PBA number is not stored as string\n");
517
518 /* we will need 11 characters to store the PBA */
519 if (pba_num_size < 11) {
520 hw_dbg(hw, "PBA string buffer too small\n");
521 return IXGBE_ERR_NO_SPACE;
522 }
523
524 /* extract hex string from data and pba_ptr */
525 pba_num[0] = (data >> 12) & 0xF;
526 pba_num[1] = (data >> 8) & 0xF;
527 pba_num[2] = (data >> 4) & 0xF;
528 pba_num[3] = data & 0xF;
529 pba_num[4] = (pba_ptr >> 12) & 0xF;
530 pba_num[5] = (pba_ptr >> 8) & 0xF;
531 pba_num[6] = '-';
532 pba_num[7] = 0;
533 pba_num[8] = (pba_ptr >> 4) & 0xF;
534 pba_num[9] = pba_ptr & 0xF;
535
536 /* put a null character on the end of our string */
537 pba_num[10] = '\0';
538
539 /* switch all the data but the '-' to hex char */
540 for (offset = 0; offset < 10; offset++) {
541 if (pba_num[offset] < 0xA)
542 pba_num[offset] += '0';
543 else if (pba_num[offset] < 0x10)
544 pba_num[offset] += 'A' - 0xA;
545 }
546
547 return 0;
548 }
549
550 ret_val = hw->eeprom.ops.read(hw, pba_ptr, &length);
551 if (ret_val) {
552 hw_dbg(hw, "NVM Read Error\n");
553 return ret_val;
554 }
555
556 if (length == 0xFFFF || length == 0) {
557 hw_dbg(hw, "NVM PBA number section invalid length\n");
558 return IXGBE_ERR_PBA_SECTION;
559 }
560
561 /* check if pba_num buffer is big enough */
562 if (pba_num_size < (((u32)length * 2) - 1)) {
563 hw_dbg(hw, "PBA string buffer too small\n");
564 return IXGBE_ERR_NO_SPACE;
565 }
566
567 /* trim pba length from start of string */
568 pba_ptr++;
569 length--;
570
571 for (offset = 0; offset < length; offset++) {
572 ret_val = hw->eeprom.ops.read(hw, pba_ptr + offset, &data);
573 if (ret_val) {
574 hw_dbg(hw, "NVM Read Error\n");
575 return ret_val;
576 }
577 pba_num[offset * 2] = (u8)(data >> 8);
578 pba_num[(offset * 2) + 1] = (u8)(data & 0xFF);
579 }
580 pba_num[offset * 2] = '\0';
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700581
582 return 0;
583}
584
585/**
586 * ixgbe_get_mac_addr_generic - Generic get MAC address
Auke Kok9a799d72007-09-15 14:07:45 -0700587 * @hw: pointer to hardware structure
588 * @mac_addr: Adapter MAC address
589 *
590 * Reads the adapter's MAC address from first Receive Address Register (RAR0)
591 * A reset of the adapter must be performed prior to calling this function
592 * in order for the MAC address to have been loaded from the EEPROM into RAR0
593 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700594s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr)
Auke Kok9a799d72007-09-15 14:07:45 -0700595{
596 u32 rar_high;
597 u32 rar_low;
598 u16 i;
599
600 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0));
601 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0));
602
603 for (i = 0; i < 4; i++)
604 mac_addr[i] = (u8)(rar_low >> (i*8));
605
606 for (i = 0; i < 2; i++)
607 mac_addr[i+4] = (u8)(rar_high >> (i*8));
608
609 return 0;
610}
611
Jacob Kelleref1889d2013-02-15 09:18:15 +0000612enum ixgbe_bus_width ixgbe_convert_bus_width(u16 link_status)
613{
614 switch (link_status & IXGBE_PCI_LINK_WIDTH) {
615 case IXGBE_PCI_LINK_WIDTH_1:
616 return ixgbe_bus_width_pcie_x1;
617 case IXGBE_PCI_LINK_WIDTH_2:
618 return ixgbe_bus_width_pcie_x2;
619 case IXGBE_PCI_LINK_WIDTH_4:
620 return ixgbe_bus_width_pcie_x4;
621 case IXGBE_PCI_LINK_WIDTH_8:
622 return ixgbe_bus_width_pcie_x8;
623 default:
624 return ixgbe_bus_width_unknown;
625 }
626}
627
628enum ixgbe_bus_speed ixgbe_convert_bus_speed(u16 link_status)
629{
630 switch (link_status & IXGBE_PCI_LINK_SPEED) {
631 case IXGBE_PCI_LINK_SPEED_2500:
632 return ixgbe_bus_speed_2500;
633 case IXGBE_PCI_LINK_SPEED_5000:
634 return ixgbe_bus_speed_5000;
635 case IXGBE_PCI_LINK_SPEED_8000:
636 return ixgbe_bus_speed_8000;
637 default:
638 return ixgbe_bus_speed_unknown;
639 }
640}
641
Auke Kok9a799d72007-09-15 14:07:45 -0700642/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000643 * ixgbe_get_bus_info_generic - Generic set PCI bus info
644 * @hw: pointer to hardware structure
645 *
646 * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
647 **/
648s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw)
649{
650 struct ixgbe_adapter *adapter = hw->back;
651 struct ixgbe_mac_info *mac = &hw->mac;
652 u16 link_status;
653
654 hw->bus.type = ixgbe_bus_type_pci_express;
655
656 /* Get the negotiated link width and speed from PCI config space */
657 pci_read_config_word(adapter->pdev, IXGBE_PCI_LINK_STATUS,
658 &link_status);
659
Jacob Kelleref1889d2013-02-15 09:18:15 +0000660 hw->bus.width = ixgbe_convert_bus_width(link_status);
661 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000662
663 mac->ops.set_lan_id(hw);
664
665 return 0;
666}
667
668/**
669 * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices
670 * @hw: pointer to the HW structure
671 *
672 * Determines the LAN function id by reading memory-mapped registers
673 * and swaps the port value if requested.
674 **/
675void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw)
676{
677 struct ixgbe_bus_info *bus = &hw->bus;
678 u32 reg;
679
680 reg = IXGBE_READ_REG(hw, IXGBE_STATUS);
681 bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT;
682 bus->lan_id = bus->func;
683
684 /* check for a port swap */
685 reg = IXGBE_READ_REG(hw, IXGBE_FACTPS);
686 if (reg & IXGBE_FACTPS_LFS)
687 bus->func ^= 0x1;
688}
689
690/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700691 * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units
Auke Kok9a799d72007-09-15 14:07:45 -0700692 * @hw: pointer to hardware structure
693 *
694 * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
695 * disables transmit and receive units. The adapter_stopped flag is used by
696 * the shared code and drivers to determine if the adapter is in a stopped
697 * state and should not touch the hardware.
698 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700699s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700700{
Auke Kok9a799d72007-09-15 14:07:45 -0700701 u32 reg_val;
702 u16 i;
703
704 /*
705 * Set the adapter_stopped flag so other driver functions stop touching
706 * the hardware
707 */
708 hw->adapter_stopped = true;
709
710 /* Disable the receive unit */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000711 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, 0);
Auke Kok9a799d72007-09-15 14:07:45 -0700712
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000713 /* Clear interrupt mask to stop interrupts from being generated */
Auke Kok9a799d72007-09-15 14:07:45 -0700714 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
715
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000716 /* Clear any pending interrupts, flush previous writes */
Auke Kok9a799d72007-09-15 14:07:45 -0700717 IXGBE_READ_REG(hw, IXGBE_EICR);
718
719 /* Disable the transmit unit. Each queue must be disabled. */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000720 for (i = 0; i < hw->mac.max_tx_queues; i++)
721 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), IXGBE_TXDCTL_SWFLSH);
722
723 /* Disable the receive unit by stopping each queue */
724 for (i = 0; i < hw->mac.max_rx_queues; i++) {
725 reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
726 reg_val &= ~IXGBE_RXDCTL_ENABLE;
727 reg_val |= IXGBE_RXDCTL_SWFLSH;
728 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700729 }
730
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000731 /* flush all queues disables */
732 IXGBE_WRITE_FLUSH(hw);
733 usleep_range(1000, 2000);
734
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700735 /*
736 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
737 * access and verify no pending requests
738 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000739 return ixgbe_disable_pcie_master(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700740}
741
742/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700743 * ixgbe_led_on_generic - Turns on the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700744 * @hw: pointer to hardware structure
745 * @index: led number to turn on
746 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700747s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700748{
749 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
750
751 /* To turn on the LED, set mode to ON. */
752 led_reg &= ~IXGBE_LED_MODE_MASK(index);
753 led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index);
754 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700755 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700756
757 return 0;
758}
759
760/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700761 * ixgbe_led_off_generic - Turns off the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700762 * @hw: pointer to hardware structure
763 * @index: led number to turn off
764 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700765s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700766{
767 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
768
769 /* To turn off the LED, set mode to OFF. */
770 led_reg &= ~IXGBE_LED_MODE_MASK(index);
771 led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index);
772 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700773 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700774
775 return 0;
776}
777
Auke Kok9a799d72007-09-15 14:07:45 -0700778/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700779 * ixgbe_init_eeprom_params_generic - Initialize EEPROM params
Auke Kok9a799d72007-09-15 14:07:45 -0700780 * @hw: pointer to hardware structure
781 *
782 * Initializes the EEPROM parameters ixgbe_eeprom_info within the
783 * ixgbe_hw struct in order to set up EEPROM access.
784 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700785s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700786{
787 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
788 u32 eec;
789 u16 eeprom_size;
790
791 if (eeprom->type == ixgbe_eeprom_uninitialized) {
792 eeprom->type = ixgbe_eeprom_none;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700793 /* Set default semaphore delay to 10ms which is a well
794 * tested value */
795 eeprom->semaphore_delay = 10;
Emil Tantilov68c70052011-04-20 08:49:06 +0000796 /* Clear EEPROM page size, it will be initialized as needed */
797 eeprom->word_page_size = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700798
799 /*
800 * Check for EEPROM present first.
801 * If not present leave as none
802 */
803 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
804 if (eec & IXGBE_EEC_PRES) {
805 eeprom->type = ixgbe_eeprom_spi;
806
807 /*
808 * SPI EEPROM is assumed here. This code would need to
809 * change if a future EEPROM is not SPI.
810 */
811 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
812 IXGBE_EEC_SIZE_SHIFT);
813 eeprom->word_size = 1 << (eeprom_size +
814 IXGBE_EEPROM_WORD_SIZE_SHIFT);
815 }
816
817 if (eec & IXGBE_EEC_ADDR_SIZE)
818 eeprom->address_bits = 16;
819 else
820 eeprom->address_bits = 8;
821 hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: "
822 "%d\n", eeprom->type, eeprom->word_size,
823 eeprom->address_bits);
824 }
825
826 return 0;
827}
828
829/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000830 * ixgbe_write_eeprom_buffer_bit_bang_generic - Write EEPROM using bit-bang
831 * @hw: pointer to hardware structure
832 * @offset: offset within the EEPROM to write
833 * @words: number of words
834 * @data: 16 bit word(s) to write to EEPROM
835 *
836 * Reads 16 bit word(s) from EEPROM through bit-bang method
837 **/
838s32 ixgbe_write_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
839 u16 words, u16 *data)
840{
841 s32 status = 0;
842 u16 i, count;
843
844 hw->eeprom.ops.init_params(hw);
845
846 if (words == 0) {
847 status = IXGBE_ERR_INVALID_ARGUMENT;
848 goto out;
849 }
850
851 if (offset + words > hw->eeprom.word_size) {
852 status = IXGBE_ERR_EEPROM;
853 goto out;
854 }
855
856 /*
857 * The EEPROM page size cannot be queried from the chip. We do lazy
858 * initialization. It is worth to do that when we write large buffer.
859 */
860 if ((hw->eeprom.word_page_size == 0) &&
861 (words > IXGBE_EEPROM_PAGE_SIZE_MAX))
862 ixgbe_detect_eeprom_page_size_generic(hw, offset);
863
864 /*
865 * We cannot hold synchronization semaphores for too long
866 * to avoid other entity starvation. However it is more efficient
867 * to read in bursts than synchronizing access for each word.
868 */
869 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
870 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
871 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
872 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset + i,
873 count, &data[i]);
874
875 if (status != 0)
876 break;
877 }
878
879out:
880 return status;
881}
882
883/**
884 * ixgbe_write_eeprom_buffer_bit_bang - Writes 16 bit word(s) to EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000885 * @hw: pointer to hardware structure
886 * @offset: offset within the EEPROM to be written to
Emil Tantilov68c70052011-04-20 08:49:06 +0000887 * @words: number of word(s)
888 * @data: 16 bit word(s) to be written to the EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000889 *
890 * If ixgbe_eeprom_update_checksum is not called after this function, the
891 * EEPROM will most likely contain an invalid checksum.
892 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000893static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
894 u16 words, u16 *data)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000895{
896 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +0000897 u16 word;
898 u16 page_size;
899 u16 i;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000900 u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI;
901
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000902 /* Prepare the EEPROM for writing */
903 status = ixgbe_acquire_eeprom(hw);
904
905 if (status == 0) {
906 if (ixgbe_ready_eeprom(hw) != 0) {
907 ixgbe_release_eeprom(hw);
908 status = IXGBE_ERR_EEPROM;
909 }
910 }
911
912 if (status == 0) {
Emil Tantilov68c70052011-04-20 08:49:06 +0000913 for (i = 0; i < words; i++) {
914 ixgbe_standby_eeprom(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000915
Emil Tantilov68c70052011-04-20 08:49:06 +0000916 /* Send the WRITE ENABLE command (8 bit opcode ) */
917 ixgbe_shift_out_eeprom_bits(hw,
918 IXGBE_EEPROM_WREN_OPCODE_SPI,
919 IXGBE_EEPROM_OPCODE_BITS);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000920
Emil Tantilov68c70052011-04-20 08:49:06 +0000921 ixgbe_standby_eeprom(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000922
Emil Tantilov68c70052011-04-20 08:49:06 +0000923 /*
924 * Some SPI eeproms use the 8th address bit embedded
925 * in the opcode
926 */
927 if ((hw->eeprom.address_bits == 8) &&
928 ((offset + i) >= 128))
929 write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000930
Emil Tantilov68c70052011-04-20 08:49:06 +0000931 /* Send the Write command (8-bit opcode + addr) */
932 ixgbe_shift_out_eeprom_bits(hw, write_opcode,
933 IXGBE_EEPROM_OPCODE_BITS);
934 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
935 hw->eeprom.address_bits);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000936
Emil Tantilov68c70052011-04-20 08:49:06 +0000937 page_size = hw->eeprom.word_page_size;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000938
Emil Tantilov68c70052011-04-20 08:49:06 +0000939 /* Send the data in burst via SPI*/
940 do {
941 word = data[i];
942 word = (word >> 8) | (word << 8);
943 ixgbe_shift_out_eeprom_bits(hw, word, 16);
944
945 if (page_size == 0)
946 break;
947
948 /* do not wrap around page */
949 if (((offset + i) & (page_size - 1)) ==
950 (page_size - 1))
951 break;
952 } while (++i < words);
953
954 ixgbe_standby_eeprom(hw);
955 usleep_range(10000, 20000);
956 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000957 /* Done with writing - release the EEPROM */
958 ixgbe_release_eeprom(hw);
959 }
960
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000961 return status;
962}
963
964/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000965 * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700966 * @hw: pointer to hardware structure
Emil Tantilov68c70052011-04-20 08:49:06 +0000967 * @offset: offset within the EEPROM to be written to
968 * @data: 16 bit word to be written to the EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700969 *
Emil Tantilov68c70052011-04-20 08:49:06 +0000970 * If ixgbe_eeprom_update_checksum is not called after this function, the
971 * EEPROM will most likely contain an invalid checksum.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700972 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000973s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700974{
975 s32 status;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700976
977 hw->eeprom.ops.init_params(hw);
978
979 if (offset >= hw->eeprom.word_size) {
980 status = IXGBE_ERR_EEPROM;
981 goto out;
982 }
983
Emil Tantilov68c70052011-04-20 08:49:06 +0000984 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset, 1, &data);
985
986out:
987 return status;
988}
989
990/**
991 * ixgbe_read_eeprom_buffer_bit_bang_generic - Read EEPROM using bit-bang
992 * @hw: pointer to hardware structure
993 * @offset: offset within the EEPROM to be read
994 * @words: number of word(s)
995 * @data: read 16 bit words(s) from EEPROM
996 *
997 * Reads 16 bit word(s) from EEPROM through bit-bang method
998 **/
999s32 ixgbe_read_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1000 u16 words, u16 *data)
1001{
1002 s32 status = 0;
1003 u16 i, count;
1004
1005 hw->eeprom.ops.init_params(hw);
1006
1007 if (words == 0) {
1008 status = IXGBE_ERR_INVALID_ARGUMENT;
1009 goto out;
1010 }
1011
1012 if (offset + words > hw->eeprom.word_size) {
1013 status = IXGBE_ERR_EEPROM;
1014 goto out;
1015 }
1016
1017 /*
1018 * We cannot hold synchronization semaphores for too long
1019 * to avoid other entity starvation. However it is more efficient
1020 * to read in bursts than synchronizing access for each word.
1021 */
1022 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
1023 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
1024 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
1025
1026 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset + i,
1027 count, &data[i]);
1028
1029 if (status != 0)
1030 break;
1031 }
1032
1033out:
1034 return status;
1035}
1036
1037/**
1038 * ixgbe_read_eeprom_buffer_bit_bang - Read EEPROM using bit-bang
1039 * @hw: pointer to hardware structure
1040 * @offset: offset within the EEPROM to be read
1041 * @words: number of word(s)
1042 * @data: read 16 bit word(s) from EEPROM
1043 *
1044 * Reads 16 bit word(s) from EEPROM through bit-bang method
1045 **/
1046static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
1047 u16 words, u16 *data)
1048{
1049 s32 status;
1050 u16 word_in;
1051 u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI;
1052 u16 i;
1053
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001054 /* Prepare the EEPROM for reading */
1055 status = ixgbe_acquire_eeprom(hw);
1056
1057 if (status == 0) {
1058 if (ixgbe_ready_eeprom(hw) != 0) {
1059 ixgbe_release_eeprom(hw);
1060 status = IXGBE_ERR_EEPROM;
1061 }
1062 }
1063
1064 if (status == 0) {
Emil Tantilov68c70052011-04-20 08:49:06 +00001065 for (i = 0; i < words; i++) {
1066 ixgbe_standby_eeprom(hw);
1067 /*
1068 * Some SPI eeproms use the 8th address bit embedded
1069 * in the opcode
1070 */
1071 if ((hw->eeprom.address_bits == 8) &&
1072 ((offset + i) >= 128))
1073 read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001074
Emil Tantilov68c70052011-04-20 08:49:06 +00001075 /* Send the READ command (opcode + addr) */
1076 ixgbe_shift_out_eeprom_bits(hw, read_opcode,
1077 IXGBE_EEPROM_OPCODE_BITS);
1078 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
1079 hw->eeprom.address_bits);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001080
Emil Tantilov68c70052011-04-20 08:49:06 +00001081 /* Read the data. */
1082 word_in = ixgbe_shift_in_eeprom_bits(hw, 16);
1083 data[i] = (word_in >> 8) | (word_in << 8);
1084 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001085
1086 /* End this read operation */
1087 ixgbe_release_eeprom(hw);
1088 }
1089
Emil Tantilov68c70052011-04-20 08:49:06 +00001090 return status;
1091}
1092
1093/**
1094 * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang
1095 * @hw: pointer to hardware structure
1096 * @offset: offset within the EEPROM to be read
1097 * @data: read 16 bit value from EEPROM
1098 *
1099 * Reads 16 bit value from EEPROM through bit-bang method
1100 **/
1101s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1102 u16 *data)
1103{
1104 s32 status;
1105
1106 hw->eeprom.ops.init_params(hw);
1107
1108 if (offset >= hw->eeprom.word_size) {
1109 status = IXGBE_ERR_EEPROM;
1110 goto out;
1111 }
1112
1113 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
1114
1115out:
1116 return status;
1117}
1118
1119/**
1120 * ixgbe_read_eerd_buffer_generic - Read EEPROM word(s) using EERD
1121 * @hw: pointer to hardware structure
1122 * @offset: offset of word in the EEPROM to read
1123 * @words: number of word(s)
1124 * @data: 16 bit word(s) from the EEPROM
1125 *
1126 * Reads a 16 bit word(s) from the EEPROM using the EERD register.
1127 **/
1128s32 ixgbe_read_eerd_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1129 u16 words, u16 *data)
1130{
1131 u32 eerd;
1132 s32 status = 0;
1133 u32 i;
1134
1135 hw->eeprom.ops.init_params(hw);
1136
1137 if (words == 0) {
1138 status = IXGBE_ERR_INVALID_ARGUMENT;
1139 goto out;
1140 }
1141
1142 if (offset >= hw->eeprom.word_size) {
1143 status = IXGBE_ERR_EEPROM;
1144 goto out;
1145 }
1146
1147 for (i = 0; i < words; i++) {
Emil Tantilovd0111572013-02-05 09:43:26 +00001148 eerd = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
Emil Tantilov68c70052011-04-20 08:49:06 +00001149 IXGBE_EEPROM_RW_REG_START;
1150
1151 IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd);
1152 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_READ);
1153
1154 if (status == 0) {
1155 data[i] = (IXGBE_READ_REG(hw, IXGBE_EERD) >>
1156 IXGBE_EEPROM_RW_REG_DATA);
1157 } else {
1158 hw_dbg(hw, "Eeprom read timed out\n");
1159 goto out;
1160 }
1161 }
1162out:
1163 return status;
1164}
1165
1166/**
1167 * ixgbe_detect_eeprom_page_size_generic - Detect EEPROM page size
1168 * @hw: pointer to hardware structure
1169 * @offset: offset within the EEPROM to be used as a scratch pad
1170 *
1171 * Discover EEPROM page size by writing marching data at given offset.
1172 * This function is called only when we are writing a new large buffer
1173 * at given offset so the data would be overwritten anyway.
1174 **/
1175static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
1176 u16 offset)
1177{
1178 u16 data[IXGBE_EEPROM_PAGE_SIZE_MAX];
1179 s32 status = 0;
1180 u16 i;
1181
1182 for (i = 0; i < IXGBE_EEPROM_PAGE_SIZE_MAX; i++)
1183 data[i] = i;
1184
1185 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX;
1186 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset,
1187 IXGBE_EEPROM_PAGE_SIZE_MAX, data);
1188 hw->eeprom.word_page_size = 0;
1189 if (status != 0)
1190 goto out;
1191
1192 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
1193 if (status != 0)
1194 goto out;
1195
1196 /*
1197 * When writing in burst more than the actual page size
1198 * EEPROM address wraps around current page.
1199 */
1200 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX - data[0];
1201
1202 hw_dbg(hw, "Detected EEPROM page size = %d words.",
1203 hw->eeprom.word_page_size);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001204out:
1205 return status;
1206}
1207
1208/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001209 * ixgbe_read_eerd_generic - Read EEPROM word using EERD
Auke Kok9a799d72007-09-15 14:07:45 -07001210 * @hw: pointer to hardware structure
1211 * @offset: offset of word in the EEPROM to read
1212 * @data: word read from the EEPROM
1213 *
1214 * Reads a 16 bit word from the EEPROM using the EERD register.
1215 **/
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001216s32 ixgbe_read_eerd_generic(struct ixgbe_hw *hw, u16 offset, u16 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001217{
Emil Tantilov68c70052011-04-20 08:49:06 +00001218 return ixgbe_read_eerd_buffer_generic(hw, offset, 1, data);
1219}
1220
1221/**
1222 * ixgbe_write_eewr_buffer_generic - Write EEPROM word(s) using EEWR
1223 * @hw: pointer to hardware structure
1224 * @offset: offset of word in the EEPROM to write
1225 * @words: number of words
1226 * @data: word(s) write to the EEPROM
1227 *
1228 * Write a 16 bit word(s) to the EEPROM using the EEWR register.
1229 **/
1230s32 ixgbe_write_eewr_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1231 u16 words, u16 *data)
1232{
1233 u32 eewr;
1234 s32 status = 0;
1235 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07001236
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001237 hw->eeprom.ops.init_params(hw);
1238
Emil Tantilov68c70052011-04-20 08:49:06 +00001239 if (words == 0) {
1240 status = IXGBE_ERR_INVALID_ARGUMENT;
1241 goto out;
1242 }
1243
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001244 if (offset >= hw->eeprom.word_size) {
1245 status = IXGBE_ERR_EEPROM;
1246 goto out;
1247 }
1248
Emil Tantilov68c70052011-04-20 08:49:06 +00001249 for (i = 0; i < words; i++) {
1250 eewr = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
1251 (data[i] << IXGBE_EEPROM_RW_REG_DATA) |
1252 IXGBE_EEPROM_RW_REG_START;
Auke Kok9a799d72007-09-15 14:07:45 -07001253
Emil Tantilov68c70052011-04-20 08:49:06 +00001254 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
1255 if (status != 0) {
1256 hw_dbg(hw, "Eeprom write EEWR timed out\n");
1257 goto out;
1258 }
Auke Kok9a799d72007-09-15 14:07:45 -07001259
Emil Tantilov68c70052011-04-20 08:49:06 +00001260 IXGBE_WRITE_REG(hw, IXGBE_EEWR, eewr);
1261
1262 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
1263 if (status != 0) {
1264 hw_dbg(hw, "Eeprom write EEWR timed out\n");
1265 goto out;
1266 }
1267 }
Auke Kok9a799d72007-09-15 14:07:45 -07001268
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001269out:
Auke Kok9a799d72007-09-15 14:07:45 -07001270 return status;
1271}
1272
1273/**
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001274 * ixgbe_write_eewr_generic - Write EEPROM word using EEWR
1275 * @hw: pointer to hardware structure
1276 * @offset: offset of word in the EEPROM to write
1277 * @data: word write to the EEPROM
1278 *
1279 * Write a 16 bit word to the EEPROM using the EEWR register.
1280 **/
1281s32 ixgbe_write_eewr_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
1282{
Emil Tantilov68c70052011-04-20 08:49:06 +00001283 return ixgbe_write_eewr_buffer_generic(hw, offset, 1, &data);
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001284}
1285
1286/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001287 * ixgbe_poll_eerd_eewr_done - Poll EERD read or EEWR write status
Auke Kok9a799d72007-09-15 14:07:45 -07001288 * @hw: pointer to hardware structure
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001289 * @ee_reg: EEPROM flag for polling
Auke Kok9a799d72007-09-15 14:07:45 -07001290 *
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001291 * Polls the status bit (bit 1) of the EERD or EEWR to determine when the
1292 * read or write is done respectively.
Auke Kok9a799d72007-09-15 14:07:45 -07001293 **/
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001294static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg)
Auke Kok9a799d72007-09-15 14:07:45 -07001295{
1296 u32 i;
1297 u32 reg;
1298 s32 status = IXGBE_ERR_EEPROM;
1299
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001300 for (i = 0; i < IXGBE_EERD_EEWR_ATTEMPTS; i++) {
1301 if (ee_reg == IXGBE_NVM_POLL_READ)
1302 reg = IXGBE_READ_REG(hw, IXGBE_EERD);
1303 else
1304 reg = IXGBE_READ_REG(hw, IXGBE_EEWR);
1305
1306 if (reg & IXGBE_EEPROM_RW_REG_DONE) {
Auke Kok9a799d72007-09-15 14:07:45 -07001307 status = 0;
1308 break;
1309 }
1310 udelay(5);
1311 }
1312 return status;
1313}
1314
1315/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001316 * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang
1317 * @hw: pointer to hardware structure
1318 *
1319 * Prepares EEPROM for access using bit-bang method. This function should
1320 * be called before issuing a command to the EEPROM.
1321 **/
1322static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw)
1323{
1324 s32 status = 0;
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001325 u32 eec;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001326 u32 i;
1327
Don Skidmore5e655102011-02-25 01:58:04 +00001328 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001329 status = IXGBE_ERR_SWFW_SYNC;
1330
1331 if (status == 0) {
1332 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1333
1334 /* Request EEPROM Access */
1335 eec |= IXGBE_EEC_REQ;
1336 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1337
1338 for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) {
1339 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1340 if (eec & IXGBE_EEC_GNT)
1341 break;
1342 udelay(5);
1343 }
1344
1345 /* Release if grant not acquired */
1346 if (!(eec & IXGBE_EEC_GNT)) {
1347 eec &= ~IXGBE_EEC_REQ;
1348 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1349 hw_dbg(hw, "Could not acquire EEPROM grant\n");
1350
Don Skidmore5e655102011-02-25 01:58:04 +00001351 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001352 status = IXGBE_ERR_EEPROM;
1353 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001354
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001355 /* Setup EEPROM for Read/Write */
1356 if (status == 0) {
1357 /* Clear CS and SK */
1358 eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK);
1359 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1360 IXGBE_WRITE_FLUSH(hw);
1361 udelay(1);
1362 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001363 }
1364 return status;
1365}
1366
1367/**
Auke Kok9a799d72007-09-15 14:07:45 -07001368 * ixgbe_get_eeprom_semaphore - Get hardware semaphore
1369 * @hw: pointer to hardware structure
1370 *
1371 * Sets the hardware semaphores so EEPROM access can occur for bit-bang method
1372 **/
1373static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw)
1374{
1375 s32 status = IXGBE_ERR_EEPROM;
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001376 u32 timeout = 2000;
Auke Kok9a799d72007-09-15 14:07:45 -07001377 u32 i;
1378 u32 swsm;
1379
Auke Kok9a799d72007-09-15 14:07:45 -07001380 /* Get SMBI software semaphore between device drivers first */
1381 for (i = 0; i < timeout; i++) {
1382 /*
1383 * If the SMBI bit is 0 when we read it, then the bit will be
1384 * set and we have the semaphore
1385 */
1386 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1387 if (!(swsm & IXGBE_SWSM_SMBI)) {
1388 status = 0;
1389 break;
1390 }
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001391 udelay(50);
Auke Kok9a799d72007-09-15 14:07:45 -07001392 }
1393
Emil Tantilov51275d32011-04-08 01:23:59 +00001394 if (i == timeout) {
1395 hw_dbg(hw, "Driver can't access the Eeprom - SMBI Semaphore "
1396 "not granted.\n");
1397 /*
1398 * this release is particularly important because our attempts
1399 * above to get the semaphore may have succeeded, and if there
1400 * was a timeout, we should unconditionally clear the semaphore
1401 * bits to free the driver to make progress
1402 */
1403 ixgbe_release_eeprom_semaphore(hw);
1404
1405 udelay(50);
1406 /*
1407 * one last try
1408 * If the SMBI bit is 0 when we read it, then the bit will be
1409 * set and we have the semaphore
1410 */
1411 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1412 if (!(swsm & IXGBE_SWSM_SMBI))
1413 status = 0;
1414 }
1415
Auke Kok9a799d72007-09-15 14:07:45 -07001416 /* Now get the semaphore between SW/FW through the SWESMBI bit */
1417 if (status == 0) {
1418 for (i = 0; i < timeout; i++) {
1419 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1420
1421 /* Set the SW EEPROM semaphore bit to request access */
1422 swsm |= IXGBE_SWSM_SWESMBI;
1423 IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm);
1424
1425 /*
1426 * If we set the bit successfully then we got the
1427 * semaphore.
1428 */
1429 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1430 if (swsm & IXGBE_SWSM_SWESMBI)
1431 break;
1432
1433 udelay(50);
1434 }
1435
1436 /*
1437 * Release semaphores and return error if SW EEPROM semaphore
1438 * was not granted because we don't have access to the EEPROM
1439 */
1440 if (i >= timeout) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001441 hw_dbg(hw, "SWESMBI Software EEPROM semaphore "
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001442 "not granted.\n");
Auke Kok9a799d72007-09-15 14:07:45 -07001443 ixgbe_release_eeprom_semaphore(hw);
1444 status = IXGBE_ERR_EEPROM;
1445 }
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001446 } else {
1447 hw_dbg(hw, "Software semaphore SMBI between device drivers "
1448 "not granted.\n");
Auke Kok9a799d72007-09-15 14:07:45 -07001449 }
1450
1451 return status;
1452}
1453
1454/**
1455 * ixgbe_release_eeprom_semaphore - Release hardware semaphore
1456 * @hw: pointer to hardware structure
1457 *
1458 * This function clears hardware semaphore bits.
1459 **/
1460static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw)
1461{
1462 u32 swsm;
1463
1464 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1465
1466 /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */
1467 swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI);
1468 IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm);
Auke Kok3957d632007-10-31 15:22:10 -07001469 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001470}
1471
1472/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001473 * ixgbe_ready_eeprom - Polls for EEPROM ready
1474 * @hw: pointer to hardware structure
1475 **/
1476static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw)
1477{
1478 s32 status = 0;
1479 u16 i;
1480 u8 spi_stat_reg;
1481
1482 /*
1483 * Read "Status Register" repeatedly until the LSB is cleared. The
1484 * EEPROM will signal that the command has been completed by clearing
1485 * bit 0 of the internal status register. If it's not cleared within
1486 * 5 milliseconds, then error out.
1487 */
1488 for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) {
1489 ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI,
1490 IXGBE_EEPROM_OPCODE_BITS);
1491 spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8);
1492 if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI))
1493 break;
1494
1495 udelay(5);
1496 ixgbe_standby_eeprom(hw);
Joe Perches6403eab2011-06-03 11:51:20 +00001497 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001498
1499 /*
1500 * On some parts, SPI write time could vary from 0-20mSec on 3.3V
1501 * devices (and only 0-5mSec on 5V devices)
1502 */
1503 if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) {
1504 hw_dbg(hw, "SPI EEPROM Status error\n");
1505 status = IXGBE_ERR_EEPROM;
1506 }
1507
1508 return status;
1509}
1510
1511/**
1512 * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state
1513 * @hw: pointer to hardware structure
1514 **/
1515static void ixgbe_standby_eeprom(struct ixgbe_hw *hw)
1516{
1517 u32 eec;
1518
1519 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1520
1521 /* Toggle CS to flush commands */
1522 eec |= IXGBE_EEC_CS;
1523 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1524 IXGBE_WRITE_FLUSH(hw);
1525 udelay(1);
1526 eec &= ~IXGBE_EEC_CS;
1527 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1528 IXGBE_WRITE_FLUSH(hw);
1529 udelay(1);
1530}
1531
1532/**
1533 * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM.
1534 * @hw: pointer to hardware structure
1535 * @data: data to send to the EEPROM
1536 * @count: number of bits to shift out
1537 **/
1538static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
1539 u16 count)
1540{
1541 u32 eec;
1542 u32 mask;
1543 u32 i;
1544
1545 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1546
1547 /*
1548 * Mask is used to shift "count" bits of "data" out to the EEPROM
1549 * one bit at a time. Determine the starting bit based on count
1550 */
1551 mask = 0x01 << (count - 1);
1552
1553 for (i = 0; i < count; i++) {
1554 /*
1555 * A "1" is shifted out to the EEPROM by setting bit "DI" to a
1556 * "1", and then raising and then lowering the clock (the SK
1557 * bit controls the clock input to the EEPROM). A "0" is
1558 * shifted out to the EEPROM by setting "DI" to "0" and then
1559 * raising and then lowering the clock.
1560 */
1561 if (data & mask)
1562 eec |= IXGBE_EEC_DI;
1563 else
1564 eec &= ~IXGBE_EEC_DI;
1565
1566 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1567 IXGBE_WRITE_FLUSH(hw);
1568
1569 udelay(1);
1570
1571 ixgbe_raise_eeprom_clk(hw, &eec);
1572 ixgbe_lower_eeprom_clk(hw, &eec);
1573
1574 /*
1575 * Shift mask to signify next bit of data to shift in to the
1576 * EEPROM
1577 */
1578 mask = mask >> 1;
Joe Perches6403eab2011-06-03 11:51:20 +00001579 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001580
1581 /* We leave the "DI" bit set to "0" when we leave this routine. */
1582 eec &= ~IXGBE_EEC_DI;
1583 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1584 IXGBE_WRITE_FLUSH(hw);
1585}
1586
1587/**
1588 * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM
1589 * @hw: pointer to hardware structure
1590 **/
1591static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count)
1592{
1593 u32 eec;
1594 u32 i;
1595 u16 data = 0;
1596
1597 /*
1598 * In order to read a register from the EEPROM, we need to shift
1599 * 'count' bits in from the EEPROM. Bits are "shifted in" by raising
1600 * the clock input to the EEPROM (setting the SK bit), and then reading
1601 * the value of the "DO" bit. During this "shifting in" process the
1602 * "DI" bit should always be clear.
1603 */
1604 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1605
1606 eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI);
1607
1608 for (i = 0; i < count; i++) {
1609 data = data << 1;
1610 ixgbe_raise_eeprom_clk(hw, &eec);
1611
1612 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1613
1614 eec &= ~(IXGBE_EEC_DI);
1615 if (eec & IXGBE_EEC_DO)
1616 data |= 1;
1617
1618 ixgbe_lower_eeprom_clk(hw, &eec);
1619 }
1620
1621 return data;
1622}
1623
1624/**
1625 * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input.
1626 * @hw: pointer to hardware structure
1627 * @eec: EEC register's current value
1628 **/
1629static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1630{
1631 /*
1632 * Raise the clock input to the EEPROM
1633 * (setting the SK bit), then delay
1634 */
1635 *eec = *eec | IXGBE_EEC_SK;
1636 IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec);
1637 IXGBE_WRITE_FLUSH(hw);
1638 udelay(1);
1639}
1640
1641/**
1642 * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input.
1643 * @hw: pointer to hardware structure
1644 * @eecd: EECD's current value
1645 **/
1646static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1647{
1648 /*
1649 * Lower the clock input to the EEPROM (clearing the SK bit), then
1650 * delay
1651 */
1652 *eec = *eec & ~IXGBE_EEC_SK;
1653 IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec);
1654 IXGBE_WRITE_FLUSH(hw);
1655 udelay(1);
1656}
1657
1658/**
1659 * ixgbe_release_eeprom - Release EEPROM, release semaphores
1660 * @hw: pointer to hardware structure
1661 **/
1662static void ixgbe_release_eeprom(struct ixgbe_hw *hw)
1663{
1664 u32 eec;
1665
1666 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1667
1668 eec |= IXGBE_EEC_CS; /* Pull CS high */
1669 eec &= ~IXGBE_EEC_SK; /* Lower SCK */
1670
1671 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1672 IXGBE_WRITE_FLUSH(hw);
1673
1674 udelay(1);
1675
1676 /* Stop requesting EEPROM access */
1677 eec &= ~IXGBE_EEC_REQ;
1678 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1679
Don Skidmore90827992011-03-05 18:59:20 -08001680 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001681
Don Skidmore032b4322011-03-18 09:32:53 +00001682 /*
1683 * Delay before attempt to obtain semaphore again to allow FW
1684 * access. semaphore_delay is in ms we need us for usleep_range
1685 */
1686 usleep_range(hw->eeprom.semaphore_delay * 1000,
1687 hw->eeprom.semaphore_delay * 2000);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001688}
1689
1690/**
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001691 * ixgbe_calc_eeprom_checksum_generic - Calculates and returns the checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001692 * @hw: pointer to hardware structure
1693 **/
Don Skidmorea391f1d2010-11-16 19:27:15 -08001694u16 ixgbe_calc_eeprom_checksum_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001695{
1696 u16 i;
1697 u16 j;
1698 u16 checksum = 0;
1699 u16 length = 0;
1700 u16 pointer = 0;
1701 u16 word = 0;
1702
1703 /* Include 0x0-0x3F in the checksum */
1704 for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001705 if (hw->eeprom.ops.read(hw, i, &word) != 0) {
Auke Kok9a799d72007-09-15 14:07:45 -07001706 hw_dbg(hw, "EEPROM read failed\n");
1707 break;
1708 }
1709 checksum += word;
1710 }
1711
1712 /* Include all data from pointers except for the fw pointer */
1713 for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001714 hw->eeprom.ops.read(hw, i, &pointer);
Auke Kok9a799d72007-09-15 14:07:45 -07001715
1716 /* Make sure the pointer seems valid */
1717 if (pointer != 0xFFFF && pointer != 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001718 hw->eeprom.ops.read(hw, pointer, &length);
Auke Kok9a799d72007-09-15 14:07:45 -07001719
1720 if (length != 0xFFFF && length != 0) {
1721 for (j = pointer+1; j <= pointer+length; j++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001722 hw->eeprom.ops.read(hw, j, &word);
Auke Kok9a799d72007-09-15 14:07:45 -07001723 checksum += word;
1724 }
1725 }
1726 }
1727 }
1728
1729 checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1730
1731 return checksum;
1732}
1733
1734/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001735 * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001736 * @hw: pointer to hardware structure
1737 * @checksum_val: calculated checksum
1738 *
1739 * Performs checksum calculation and validates the EEPROM checksum. If the
1740 * caller does not need checksum_val, the value can be NULL.
1741 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001742s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw,
1743 u16 *checksum_val)
Auke Kok9a799d72007-09-15 14:07:45 -07001744{
1745 s32 status;
1746 u16 checksum;
1747 u16 read_checksum = 0;
1748
1749 /*
1750 * Read the first word from the EEPROM. If this times out or fails, do
1751 * not continue or we could be in for a very long wait while every
1752 * EEPROM read fails
1753 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001754 status = hw->eeprom.ops.read(hw, 0, &checksum);
Auke Kok9a799d72007-09-15 14:07:45 -07001755
1756 if (status == 0) {
Don Skidmorea391f1d2010-11-16 19:27:15 -08001757 checksum = hw->eeprom.ops.calc_checksum(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001758
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001759 hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum);
Auke Kok9a799d72007-09-15 14:07:45 -07001760
1761 /*
1762 * Verify read checksum from EEPROM is the same as
1763 * calculated checksum
1764 */
1765 if (read_checksum != checksum)
1766 status = IXGBE_ERR_EEPROM_CHECKSUM;
1767
1768 /* If the user cares, return the calculated checksum */
1769 if (checksum_val)
1770 *checksum_val = checksum;
1771 } else {
1772 hw_dbg(hw, "EEPROM read failed\n");
1773 }
1774
1775 return status;
1776}
1777
1778/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001779 * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum
1780 * @hw: pointer to hardware structure
1781 **/
1782s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw)
1783{
1784 s32 status;
1785 u16 checksum;
1786
1787 /*
1788 * Read the first word from the EEPROM. If this times out or fails, do
1789 * not continue or we could be in for a very long wait while every
1790 * EEPROM read fails
1791 */
1792 status = hw->eeprom.ops.read(hw, 0, &checksum);
1793
1794 if (status == 0) {
Don Skidmorea391f1d2010-11-16 19:27:15 -08001795 checksum = hw->eeprom.ops.calc_checksum(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001796 status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM,
Emil Tantilov8c7bea32011-02-19 08:43:44 +00001797 checksum);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001798 } else {
1799 hw_dbg(hw, "EEPROM read failed\n");
1800 }
1801
1802 return status;
1803}
1804
1805/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001806 * ixgbe_set_rar_generic - Set Rx address register
Auke Kok9a799d72007-09-15 14:07:45 -07001807 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07001808 * @index: Receive address register to write
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001809 * @addr: Address to put into receive address register
1810 * @vmdq: VMDq "set" or "pool" index
Auke Kok9a799d72007-09-15 14:07:45 -07001811 * @enable_addr: set flag that address is active
1812 *
1813 * Puts an ethernet address into a receive address register.
1814 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001815s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
1816 u32 enable_addr)
Auke Kok9a799d72007-09-15 14:07:45 -07001817{
1818 u32 rar_low, rar_high;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001819 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001820
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001821 /* Make sure we are using a valid rar index range */
1822 if (index >= rar_entries) {
1823 hw_dbg(hw, "RAR index %d is out of range.\n", index);
1824 return IXGBE_ERR_INVALID_ARGUMENT;
1825 }
1826
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001827 /* setup VMDq pool selection before this RAR gets enabled */
1828 hw->mac.ops.set_vmdq(hw, index, vmdq);
1829
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001830 /*
1831 * HW expects these in little endian so we reverse the byte
1832 * order from network order (big endian) to little endian
1833 */
1834 rar_low = ((u32)addr[0] |
1835 ((u32)addr[1] << 8) |
1836 ((u32)addr[2] << 16) |
1837 ((u32)addr[3] << 24));
1838 /*
1839 * Some parts put the VMDq setting in the extra RAH bits,
1840 * so save everything except the lower 16 bits that hold part
1841 * of the address and the address valid bit.
1842 */
1843 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1844 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1845 rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8));
Auke Kok9a799d72007-09-15 14:07:45 -07001846
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001847 if (enable_addr != 0)
1848 rar_high |= IXGBE_RAH_AV;
Auke Kok9a799d72007-09-15 14:07:45 -07001849
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001850 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low);
1851 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
Auke Kok9a799d72007-09-15 14:07:45 -07001852
1853 return 0;
1854}
1855
1856/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001857 * ixgbe_clear_rar_generic - Remove Rx address register
1858 * @hw: pointer to hardware structure
1859 * @index: Receive address register to write
1860 *
1861 * Clears an ethernet address from a receive address register.
1862 **/
1863s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index)
1864{
1865 u32 rar_high;
1866 u32 rar_entries = hw->mac.num_rar_entries;
1867
1868 /* Make sure we are using a valid rar index range */
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001869 if (index >= rar_entries) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001870 hw_dbg(hw, "RAR index %d is out of range.\n", index);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001871 return IXGBE_ERR_INVALID_ARGUMENT;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001872 }
1873
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001874 /*
1875 * Some parts put the VMDq setting in the extra RAH bits,
1876 * so save everything except the lower 16 bits that hold part
1877 * of the address and the address valid bit.
1878 */
1879 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1880 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1881
1882 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0);
1883 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1884
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001885 /* clear VMDq pool/queue selection for this RAR */
1886 hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL);
1887
1888 return 0;
1889}
1890
1891/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001892 * ixgbe_init_rx_addrs_generic - Initializes receive address filters.
Auke Kok9a799d72007-09-15 14:07:45 -07001893 * @hw: pointer to hardware structure
1894 *
1895 * Places the MAC address in receive address register 0 and clears the rest
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001896 * of the receive address registers. Clears the multicast table. Assumes
Auke Kok9a799d72007-09-15 14:07:45 -07001897 * the receiver is in reset when the routine is called.
1898 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001899s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001900{
1901 u32 i;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001902 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001903
1904 /*
1905 * If the current mac address is valid, assume it is a software override
1906 * to the permanent address.
1907 * Otherwise, use the permanent address from the eeprom.
1908 */
Joe Perchesf8ebc682012-10-24 17:19:02 +00001909 if (!is_valid_ether_addr(hw->mac.addr)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001910 /* Get the MAC address from the RAR0 for later reference */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001911 hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001912
hartleysce7194d2010-01-05 06:56:52 +00001913 hw_dbg(hw, " Keeping Current RAR0 Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001914 } else {
1915 /* Setup the receive address. */
1916 hw_dbg(hw, "Overriding MAC Address in RAR[0]\n");
hartleysce7194d2010-01-05 06:56:52 +00001917 hw_dbg(hw, " New MAC Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001918
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001919 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
Alexander Duyck96cc6372011-01-19 18:33:05 +00001920
1921 /* clear VMDq pool/queue selection for RAR 0 */
1922 hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL);
Auke Kok9a799d72007-09-15 14:07:45 -07001923 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001924 hw->addr_ctrl.overflow_promisc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001925
1926 hw->addr_ctrl.rar_used_count = 1;
1927
1928 /* Zero out the other receive addresses. */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001929 hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07001930 for (i = 1; i < rar_entries; i++) {
1931 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
1932 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
1933 }
1934
1935 /* Clear the MTA */
Auke Kok9a799d72007-09-15 14:07:45 -07001936 hw->addr_ctrl.mta_in_use = 0;
1937 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
1938
1939 hw_dbg(hw, " Clearing MTA\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001940 for (i = 0; i < hw->mac.mcft_size; i++)
Auke Kok9a799d72007-09-15 14:07:45 -07001941 IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0);
1942
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001943 if (hw->mac.ops.init_uta_tables)
1944 hw->mac.ops.init_uta_tables(hw);
1945
Auke Kok9a799d72007-09-15 14:07:45 -07001946 return 0;
1947}
1948
1949/**
1950 * ixgbe_mta_vector - Determines bit-vector in multicast table to set
1951 * @hw: pointer to hardware structure
1952 * @mc_addr: the multicast address
1953 *
1954 * Extracts the 12 bits, from a multicast address, to determine which
1955 * bit-vector to set in the multicast table. The hardware uses 12 bits, from
1956 * incoming rx multicast addresses, to determine the bit-vector to check in
1957 * the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001958 * by the MO field of the MCSTCTRL. The MO field is set during initialization
Auke Kok9a799d72007-09-15 14:07:45 -07001959 * to mc_filter_type.
1960 **/
1961static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr)
1962{
1963 u32 vector = 0;
1964
1965 switch (hw->mac.mc_filter_type) {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001966 case 0: /* use bits [47:36] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001967 vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
1968 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001969 case 1: /* use bits [46:35] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001970 vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
1971 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001972 case 2: /* use bits [45:34] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001973 vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
1974 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001975 case 3: /* use bits [43:32] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001976 vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
1977 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001978 default: /* Invalid mc_filter_type */
Auke Kok9a799d72007-09-15 14:07:45 -07001979 hw_dbg(hw, "MC filter type param set incorrectly\n");
1980 break;
1981 }
1982
1983 /* vector can only be 12-bits or boundary will be exceeded */
1984 vector &= 0xFFF;
1985 return vector;
1986}
1987
1988/**
1989 * ixgbe_set_mta - Set bit-vector in multicast table
1990 * @hw: pointer to hardware structure
1991 * @hash_value: Multicast address hash value
1992 *
1993 * Sets the bit-vector in the multicast table.
1994 **/
1995static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr)
1996{
1997 u32 vector;
1998 u32 vector_bit;
1999 u32 vector_reg;
Auke Kok9a799d72007-09-15 14:07:45 -07002000
2001 hw->addr_ctrl.mta_in_use++;
2002
2003 vector = ixgbe_mta_vector(hw, mc_addr);
2004 hw_dbg(hw, " bit-vector = 0x%03X\n", vector);
2005
2006 /*
2007 * The MTA is a register array of 128 32-bit registers. It is treated
2008 * like an array of 4096 bits. We want to set bit
2009 * BitArray[vector_value]. So we figure out what register the bit is
2010 * in, read it, OR in the new bit, then write back the new value. The
2011 * register is determined by the upper 7 bits of the vector value and
2012 * the bit within that register are determined by the lower 5 bits of
2013 * the value.
2014 */
2015 vector_reg = (vector >> 5) & 0x7F;
2016 vector_bit = vector & 0x1F;
Emil Tantilov80960ab2011-02-18 08:58:27 +00002017 hw->mac.mta_shadow[vector_reg] |= (1 << vector_bit);
Auke Kok9a799d72007-09-15 14:07:45 -07002018}
2019
2020/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002021 * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses
Auke Kok9a799d72007-09-15 14:07:45 -07002022 * @hw: pointer to hardware structure
Jiri Pirko2853eb82010-03-23 22:58:01 +00002023 * @netdev: pointer to net device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002024 *
2025 * The given list replaces any existing list. Clears the MC addrs from receive
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002026 * address registers and the multicast table. Uses unused receive address
Auke Kok9a799d72007-09-15 14:07:45 -07002027 * registers for the first multicast addresses, and hashes the rest into the
2028 * multicast table.
2029 **/
Jiri Pirko2853eb82010-03-23 22:58:01 +00002030s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw,
2031 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07002032{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002033 struct netdev_hw_addr *ha;
Auke Kok9a799d72007-09-15 14:07:45 -07002034 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002035
2036 /*
2037 * Set the new number of MC addresses that we are being requested to
2038 * use.
2039 */
Jiri Pirko2853eb82010-03-23 22:58:01 +00002040 hw->addr_ctrl.num_mc_addrs = netdev_mc_count(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002041 hw->addr_ctrl.mta_in_use = 0;
2042
Emil Tantilov80960ab2011-02-18 08:58:27 +00002043 /* Clear mta_shadow */
Auke Kok9a799d72007-09-15 14:07:45 -07002044 hw_dbg(hw, " Clearing MTA\n");
Emil Tantilov80960ab2011-02-18 08:58:27 +00002045 memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow));
Auke Kok9a799d72007-09-15 14:07:45 -07002046
Emil Tantilov80960ab2011-02-18 08:58:27 +00002047 /* Update mta shadow */
Jiri Pirko22bedad32010-04-01 21:22:57 +00002048 netdev_for_each_mc_addr(ha, netdev) {
Auke Kok9a799d72007-09-15 14:07:45 -07002049 hw_dbg(hw, " Adding the multicast addresses:\n");
Jiri Pirko22bedad32010-04-01 21:22:57 +00002050 ixgbe_set_mta(hw, ha->addr);
Auke Kok9a799d72007-09-15 14:07:45 -07002051 }
2052
2053 /* Enable mta */
Emil Tantilov80960ab2011-02-18 08:58:27 +00002054 for (i = 0; i < hw->mac.mcft_size; i++)
2055 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_MTA(0), i,
2056 hw->mac.mta_shadow[i]);
2057
Auke Kok9a799d72007-09-15 14:07:45 -07002058 if (hw->addr_ctrl.mta_in_use > 0)
2059 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002060 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002061
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002062 hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002063 return 0;
2064}
2065
2066/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002067 * ixgbe_enable_mc_generic - Enable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002068 * @hw: pointer to hardware structure
2069 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002070 * Enables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002071 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002072s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002073{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002074 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002075
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002076 if (a->mta_in_use > 0)
2077 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE |
2078 hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002079
2080 return 0;
2081}
2082
2083/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002084 * ixgbe_disable_mc_generic - Disable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002085 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07002086 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002087 * Disables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002088 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002089s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002090{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002091 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002092
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002093 if (a->mta_in_use > 0)
2094 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002095
2096 return 0;
2097}
2098
2099/**
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002100 * ixgbe_fc_enable_generic - Enable flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002101 * @hw: pointer to hardware structure
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002102 *
2103 * Enable flow control according to the current settings.
2104 **/
Alexander Duyck041441d2012-04-19 17:48:48 +00002105s32 ixgbe_fc_enable_generic(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002106{
2107 s32 ret_val = 0;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002108 u32 mflcn_reg, fccfg_reg;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002109 u32 reg;
John Fastabend16b61be2010-11-16 19:26:44 -08002110 u32 fcrtl, fcrth;
Alexander Duyck041441d2012-04-19 17:48:48 +00002111 int i;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002112
Alexander Duyck041441d2012-04-19 17:48:48 +00002113 /*
2114 * Validate the water mark configuration for packet buffer 0. Zero
2115 * water marks indicate that the packet buffer was not configured
2116 * and the watermarks for packet buffer 0 should always be configured.
2117 */
2118 if (!hw->fc.low_water ||
2119 !hw->fc.high_water[0] ||
2120 !hw->fc.pause_time) {
2121 hw_dbg(hw, "Invalid water mark configuration\n");
2122 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002123 goto out;
Alexander Duyck041441d2012-04-19 17:48:48 +00002124 }
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002125
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002126 /* Negotiate the fc mode to use */
Alexander Duyck786e9a52012-03-28 08:03:48 +00002127 ixgbe_fc_autoneg(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002128
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002129 /* Disable any previous flow control settings */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002130 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Alexander Duyck041441d2012-04-19 17:48:48 +00002131 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_MASK | IXGBE_MFLCN_RFCE);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002132
2133 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
2134 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
2135
2136 /*
2137 * The possible values of fc.current_mode are:
2138 * 0: Flow control is completely disabled
2139 * 1: Rx flow control is enabled (we can receive pause frames,
2140 * but not send pause frames).
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00002141 * 2: Tx flow control is enabled (we can send pause frames but
2142 * we do not support receiving pause frames).
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002143 * 3: Both Rx and Tx flow control (symmetric) are enabled.
2144 * other: Invalid.
2145 */
2146 switch (hw->fc.current_mode) {
2147 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002148 /*
2149 * Flow control is disabled by software override or autoneg.
2150 * The code below will actually disable it in the HW.
2151 */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002152 break;
2153 case ixgbe_fc_rx_pause:
2154 /*
2155 * Rx Flow control is enabled and Tx Flow control is
2156 * disabled by software override. Since there really
2157 * isn't a way to advertise that we are capable of RX
2158 * Pause ONLY, we will advertise that we support both
2159 * symmetric and asymmetric Rx PAUSE. Later, we will
2160 * disable the adapter's ability to send PAUSE frames.
2161 */
2162 mflcn_reg |= IXGBE_MFLCN_RFCE;
2163 break;
2164 case ixgbe_fc_tx_pause:
2165 /*
2166 * Tx Flow control is enabled, and Rx Flow control is
2167 * disabled by software override.
2168 */
2169 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2170 break;
2171 case ixgbe_fc_full:
2172 /* Flow control (both Rx and Tx) is enabled by SW override. */
2173 mflcn_reg |= IXGBE_MFLCN_RFCE;
2174 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2175 break;
2176 default:
2177 hw_dbg(hw, "Flow control param set incorrectly\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002178 ret_val = IXGBE_ERR_CONFIG;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002179 goto out;
2180 break;
2181 }
2182
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002183 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +00002184 mflcn_reg |= IXGBE_MFLCN_DPF;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002185 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
2186 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
2187
Alexander Duyck041441d2012-04-19 17:48:48 +00002188 fcrtl = (hw->fc.low_water << 10) | IXGBE_FCRTL_XONE;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002189
Alexander Duyck041441d2012-04-19 17:48:48 +00002190 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
2191 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
2192 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
2193 hw->fc.high_water[i]) {
2194 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), fcrtl);
2195 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
2196 } else {
2197 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0);
2198 /*
2199 * In order to prevent Tx hangs when the internal Tx
2200 * switch is enabled we must set the high water mark
2201 * to the maximum FCRTH value. This allows the Tx
2202 * switch to function even under heavy Rx workloads.
2203 */
2204 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 32;
2205 }
2206
2207 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002208 }
2209
2210 /* Configure pause time (2 TCs per register) */
Alexander Duyck041441d2012-04-19 17:48:48 +00002211 reg = hw->fc.pause_time * 0x00010001;
2212 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
2213 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002214
Alexander Duyck041441d2012-04-19 17:48:48 +00002215 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002216
2217out:
2218 return ret_val;
2219}
2220
2221/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002222 * ixgbe_negotiate_fc - Negotiate flow control
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002223 * @hw: pointer to hardware structure
Alexander Duyck67a79df2012-04-19 17:49:56 +00002224 * @adv_reg: flow control advertised settings
2225 * @lp_reg: link partner's flow control settings
2226 * @adv_sym: symmetric pause bit in advertisement
2227 * @adv_asm: asymmetric pause bit in advertisement
2228 * @lp_sym: symmetric pause bit in link partner advertisement
2229 * @lp_asm: asymmetric pause bit in link partner advertisement
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002230 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002231 * Find the intersection between advertised settings and link partner's
2232 * advertised settings
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002233 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002234static s32 ixgbe_negotiate_fc(struct ixgbe_hw *hw, u32 adv_reg, u32 lp_reg,
2235 u32 adv_sym, u32 adv_asm, u32 lp_sym, u32 lp_asm)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002236{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002237 if ((!(adv_reg)) || (!(lp_reg)))
2238 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002239
Alexander Duyck67a79df2012-04-19 17:49:56 +00002240 if ((adv_reg & adv_sym) && (lp_reg & lp_sym)) {
2241 /*
2242 * Now we need to check if the user selected Rx ONLY
2243 * of pause frames. In this case, we had to advertise
2244 * FULL flow control because we could not advertise RX
2245 * ONLY. Hence, we must now check to see if we need to
2246 * turn OFF the TRANSMISSION of PAUSE frames.
2247 */
2248 if (hw->fc.requested_mode == ixgbe_fc_full) {
2249 hw->fc.current_mode = ixgbe_fc_full;
2250 hw_dbg(hw, "Flow Control = FULL.\n");
2251 } else {
2252 hw->fc.current_mode = ixgbe_fc_rx_pause;
2253 hw_dbg(hw, "Flow Control=RX PAUSE frames only\n");
2254 }
2255 } else if (!(adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2256 (lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2257 hw->fc.current_mode = ixgbe_fc_tx_pause;
2258 hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n");
2259 } else if ((adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2260 !(lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2261 hw->fc.current_mode = ixgbe_fc_rx_pause;
2262 hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002263 } else {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002264 hw->fc.current_mode = ixgbe_fc_none;
2265 hw_dbg(hw, "Flow Control = NONE.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002266 }
Alexander Duyck67a79df2012-04-19 17:49:56 +00002267 return 0;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002268}
2269
2270/**
2271 * ixgbe_fc_autoneg_fiber - Enable flow control on 1 gig fiber
2272 * @hw: pointer to hardware structure
2273 *
2274 * Enable flow control according on 1 gig fiber.
2275 **/
2276static s32 ixgbe_fc_autoneg_fiber(struct ixgbe_hw *hw)
2277{
2278 u32 pcs_anadv_reg, pcs_lpab_reg, linkstat;
Alexander Duyck786e9a52012-03-28 08:03:48 +00002279 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002280
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002281 /*
2282 * On multispeed fiber at 1g, bail out if
2283 * - link is up but AN did not complete, or if
2284 * - link is up and AN completed but timed out
2285 */
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002286
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002287 linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
Don Skidmore53f096d2011-07-28 01:00:58 +00002288 if ((!!(linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) ||
Alexander Duyck786e9a52012-03-28 08:03:48 +00002289 (!!(linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1))
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00002290 goto out;
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00002291
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002292 pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
2293 pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002294
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002295 ret_val = ixgbe_negotiate_fc(hw, pcs_anadv_reg,
2296 pcs_lpab_reg, IXGBE_PCS1GANA_SYM_PAUSE,
2297 IXGBE_PCS1GANA_ASM_PAUSE,
2298 IXGBE_PCS1GANA_SYM_PAUSE,
2299 IXGBE_PCS1GANA_ASM_PAUSE);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002300
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002301out:
2302 return ret_val;
2303}
2304
2305/**
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002306 * ixgbe_fc_autoneg_backplane - Enable flow control IEEE clause 37
2307 * @hw: pointer to hardware structure
2308 *
2309 * Enable flow control according to IEEE clause 37.
2310 **/
2311static s32 ixgbe_fc_autoneg_backplane(struct ixgbe_hw *hw)
2312{
2313 u32 links2, anlp1_reg, autoc_reg, links;
Alexander Duyck786e9a52012-03-28 08:03:48 +00002314 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002315
2316 /*
2317 * On backplane, bail out if
2318 * - backplane autoneg was not completed, or if
2319 * - we are 82599 and link partner is not AN enabled
2320 */
2321 links = IXGBE_READ_REG(hw, IXGBE_LINKS);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002322 if ((links & IXGBE_LINKS_KX_AN_COMP) == 0)
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002323 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002324
2325 if (hw->mac.type == ixgbe_mac_82599EB) {
2326 links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002327 if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0)
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002328 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002329 }
2330 /*
2331 * Read the 10g AN autoc and LP ability registers and resolve
2332 * local flow control settings accordingly
2333 */
2334 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2335 anlp1_reg = IXGBE_READ_REG(hw, IXGBE_ANLP1);
2336
2337 ret_val = ixgbe_negotiate_fc(hw, autoc_reg,
2338 anlp1_reg, IXGBE_AUTOC_SYM_PAUSE, IXGBE_AUTOC_ASM_PAUSE,
2339 IXGBE_ANLP1_SYM_PAUSE, IXGBE_ANLP1_ASM_PAUSE);
2340
2341out:
2342 return ret_val;
2343}
2344
2345/**
2346 * ixgbe_fc_autoneg_copper - Enable flow control IEEE clause 37
2347 * @hw: pointer to hardware structure
2348 *
2349 * Enable flow control according to IEEE clause 37.
2350 **/
2351static s32 ixgbe_fc_autoneg_copper(struct ixgbe_hw *hw)
2352{
2353 u16 technology_ability_reg = 0;
2354 u16 lp_technology_ability_reg = 0;
2355
2356 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
2357 MDIO_MMD_AN,
2358 &technology_ability_reg);
2359 hw->phy.ops.read_reg(hw, MDIO_AN_LPA,
2360 MDIO_MMD_AN,
2361 &lp_technology_ability_reg);
2362
2363 return ixgbe_negotiate_fc(hw, (u32)technology_ability_reg,
2364 (u32)lp_technology_ability_reg,
2365 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE,
2366 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE);
2367}
2368
2369/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002370 * ixgbe_fc_autoneg - Configure flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002371 * @hw: pointer to hardware structure
2372 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002373 * Compares our advertised flow control capabilities to those advertised by
2374 * our link partner, and determines the proper flow control mode to use.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002375 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002376void ixgbe_fc_autoneg(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002377{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002378 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
2379 ixgbe_link_speed speed;
2380 bool link_up;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002381
2382 /*
Alexander Duyck67a79df2012-04-19 17:49:56 +00002383 * AN should have completed when the cable was plugged in.
2384 * Look for reasons to bail out. Bail out if:
2385 * - FC autoneg is disabled, or if
2386 * - link is not up.
2387 *
2388 * Since we're being called from an LSC, link is already known to be up.
2389 * So use link_up_wait_to_complete=false.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002390 */
Alexander Duyck67a79df2012-04-19 17:49:56 +00002391 if (hw->fc.disable_fc_autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002392 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002393
Alexander Duyck67a79df2012-04-19 17:49:56 +00002394 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2395 if (!link_up)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002396 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002397
2398 switch (hw->phy.media_type) {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002399 /* Autoneg flow control on fiber adapters */
Don Skidmore4e8e1bc2013-07-31 02:17:40 +00002400 case ixgbe_media_type_fiber_fixed:
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002401 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002402 if (speed == IXGBE_LINK_SPEED_1GB_FULL)
2403 ret_val = ixgbe_fc_autoneg_fiber(hw);
2404 break;
2405
2406 /* Autoneg flow control on backplane adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002407 case ixgbe_media_type_backplane:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002408 ret_val = ixgbe_fc_autoneg_backplane(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002409 break;
2410
Alexander Duyck67a79df2012-04-19 17:49:56 +00002411 /* Autoneg flow control on copper adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002412 case ixgbe_media_type_copper:
Don Skidmore73d80953d2013-07-31 02:19:24 +00002413 if (ixgbe_device_supports_autoneg_fc(hw))
Alexander Duyck67a79df2012-04-19 17:49:56 +00002414 ret_val = ixgbe_fc_autoneg_copper(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002415 break;
2416
2417 default:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002418 break;
2419 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002420
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002421out:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002422 if (ret_val == 0) {
2423 hw->fc.fc_was_autonegged = true;
2424 } else {
2425 hw->fc.fc_was_autonegged = false;
2426 hw->fc.current_mode = hw->fc.requested_mode;
2427 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002428}
2429
2430/**
Don Skidmore1f86c982014-02-27 20:32:40 -08002431 * ixgbe_pcie_timeout_poll - Return number of times to poll for completion
2432 * @hw: pointer to hardware structure
2433 *
2434 * System-wide timeout range is encoded in PCIe Device Control2 register.
2435 *
2436 * Add 10% to specified maximum and return the number of times to poll for
2437 * completion timeout, in units of 100 microsec. Never return less than
2438 * 800 = 80 millisec.
2439 **/
2440static u32 ixgbe_pcie_timeout_poll(struct ixgbe_hw *hw)
2441{
2442 struct ixgbe_adapter *adapter = hw->back;
2443 s16 devctl2;
2444 u32 pollcnt;
2445
2446 pci_read_config_word(adapter->pdev, IXGBE_PCI_DEVICE_CONTROL2,
2447 &devctl2);
2448 devctl2 &= IXGBE_PCIDEVCTRL2_TIMEO_MASK;
2449
2450 switch (devctl2) {
2451 case IXGBE_PCIDEVCTRL2_65_130ms:
2452 pollcnt = 1300; /* 130 millisec */
2453 break;
2454 case IXGBE_PCIDEVCTRL2_260_520ms:
2455 pollcnt = 5200; /* 520 millisec */
2456 break;
2457 case IXGBE_PCIDEVCTRL2_1_2s:
2458 pollcnt = 20000; /* 2 sec */
2459 break;
2460 case IXGBE_PCIDEVCTRL2_4_8s:
2461 pollcnt = 80000; /* 8 sec */
2462 break;
2463 case IXGBE_PCIDEVCTRL2_17_34s:
2464 pollcnt = 34000; /* 34 sec */
2465 break;
2466 case IXGBE_PCIDEVCTRL2_50_100us: /* 100 microsecs */
2467 case IXGBE_PCIDEVCTRL2_1_2ms: /* 2 millisecs */
2468 case IXGBE_PCIDEVCTRL2_16_32ms: /* 32 millisec */
2469 case IXGBE_PCIDEVCTRL2_16_32ms_def: /* 32 millisec default */
2470 default:
2471 pollcnt = 800; /* 80 millisec minimum */
2472 break;
2473 }
2474
2475 /* add 10% to spec maximum */
2476 return (pollcnt * 11) / 10;
2477}
2478
2479/**
Auke Kok9a799d72007-09-15 14:07:45 -07002480 * ixgbe_disable_pcie_master - Disable PCI-express master access
2481 * @hw: pointer to hardware structure
2482 *
2483 * Disables PCI-Express master access and verifies there are no pending
2484 * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable
2485 * bit hasn't caused the master requests to be disabled, else 0
2486 * is returned signifying master requests disabled.
2487 **/
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002488static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002489{
Emil Tantilova4297dc2011-02-14 08:45:13 +00002490 s32 status = 0;
Don Skidmore1f86c982014-02-27 20:32:40 -08002491 u32 i, poll;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002492 u16 value;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002493
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002494 /* Always set this bit to ensure any future transactions are blocked */
2495 IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS);
2496
2497 /* Exit if master requests are blocked */
Mark Rustad14438462014-02-28 15:48:57 -08002498 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO) ||
2499 ixgbe_removed(hw->hw_addr))
Emil Tantilova4297dc2011-02-14 08:45:13 +00002500 goto out;
Auke Kok9a799d72007-09-15 14:07:45 -07002501
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002502 /* Poll for master request bit to clear */
Auke Kok9a799d72007-09-15 14:07:45 -07002503 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002504 udelay(100);
Emil Tantilova4297dc2011-02-14 08:45:13 +00002505 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO))
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002506 goto out;
Auke Kok9a799d72007-09-15 14:07:45 -07002507 }
2508
Emil Tantilova4297dc2011-02-14 08:45:13 +00002509 /*
2510 * Two consecutive resets are required via CTRL.RST per datasheet
2511 * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine
2512 * of this need. The first reset prevents new master requests from
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002513 * being issued by our device. We then must wait 1usec or more for any
Emil Tantilova4297dc2011-02-14 08:45:13 +00002514 * remaining completions from the PCIe bus to trickle in, and then reset
2515 * again to clear out any effects they may have had on our device.
2516 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002517 hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n");
2518 hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
2519
2520 /*
2521 * Before proceeding, make sure that the PCIe block does not have
2522 * transactions pending.
2523 */
Don Skidmore1f86c982014-02-27 20:32:40 -08002524 poll = ixgbe_pcie_timeout_poll(hw);
2525 for (i = 0; i < poll; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002526 udelay(100);
Mark Rustad14438462014-02-28 15:48:57 -08002527 value = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_STATUS);
2528 if (ixgbe_removed(hw->hw_addr))
2529 goto out;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002530 if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING))
2531 goto out;
2532 }
2533
2534 hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n");
2535 status = IXGBE_ERR_MASTER_REQUESTS_PENDING;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002536
2537out:
Auke Kok9a799d72007-09-15 14:07:45 -07002538 return status;
2539}
2540
Auke Kok9a799d72007-09-15 14:07:45 -07002541/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002542 * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore
Auke Kok9a799d72007-09-15 14:07:45 -07002543 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002544 * @mask: Mask to specify which semaphore to acquire
Auke Kok9a799d72007-09-15 14:07:45 -07002545 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002546 * Acquires the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002547 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2548 **/
2549s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u16 mask)
2550{
Emil Tantilov674c18b2013-07-23 01:57:03 +00002551 u32 gssr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002552 u32 swmask = mask;
2553 u32 fwmask = mask << 5;
Emil Tantilov674c18b2013-07-23 01:57:03 +00002554 u32 timeout = 200;
2555 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002556
Emil Tantilov674c18b2013-07-23 01:57:03 +00002557 for (i = 0; i < timeout; i++) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002558 /*
Emil Tantilov674c18b2013-07-23 01:57:03 +00002559 * SW NVM semaphore bit is used for access to all
2560 * SW_FW_SYNC bits (not just NVM)
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002561 */
Auke Kok9a799d72007-09-15 14:07:45 -07002562 if (ixgbe_get_eeprom_semaphore(hw))
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002563 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002564
2565 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
Emil Tantilov674c18b2013-07-23 01:57:03 +00002566 if (!(gssr & (fwmask | swmask))) {
2567 gssr |= swmask;
2568 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2569 ixgbe_release_eeprom_semaphore(hw);
2570 return 0;
2571 } else {
2572 /* Resource is currently in use by FW or SW */
2573 ixgbe_release_eeprom_semaphore(hw);
2574 usleep_range(5000, 10000);
2575 }
Auke Kok9a799d72007-09-15 14:07:45 -07002576 }
2577
Emil Tantilov674c18b2013-07-23 01:57:03 +00002578 /* If time expired clear the bits holding the lock and retry */
2579 if (gssr & (fwmask | swmask))
2580 ixgbe_release_swfw_sync(hw, gssr & (fwmask | swmask));
Auke Kok9a799d72007-09-15 14:07:45 -07002581
Emil Tantilov674c18b2013-07-23 01:57:03 +00002582 usleep_range(5000, 10000);
2583 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002584}
2585
2586/**
2587 * ixgbe_release_swfw_sync - Release SWFW semaphore
2588 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002589 * @mask: Mask to specify which semaphore to release
Auke Kok9a799d72007-09-15 14:07:45 -07002590 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002591 * Releases the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002592 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2593 **/
2594void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u16 mask)
2595{
2596 u32 gssr;
2597 u32 swmask = mask;
2598
2599 ixgbe_get_eeprom_semaphore(hw);
2600
2601 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2602 gssr &= ~swmask;
2603 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2604
2605 ixgbe_release_eeprom_semaphore(hw);
2606}
2607
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002608/**
Don Skidmore429d6a32014-02-27 20:32:41 -08002609 * prot_autoc_read_generic - Hides MAC differences needed for AUTOC read
2610 * @hw: pointer to hardware structure
2611 * @reg_val: Value we read from AUTOC
2612 * @locked: bool to indicate whether the SW/FW lock should be taken. Never
2613 * true in this the generic case.
2614 *
2615 * The default case requires no protection so just to the register read.
2616 **/
2617s32 prot_autoc_read_generic(struct ixgbe_hw *hw, bool *locked, u32 *reg_val)
2618{
2619 *locked = false;
2620 *reg_val = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2621 return 0;
2622}
2623
2624/**
2625 * prot_autoc_write_generic - Hides MAC differences needed for AUTOC write
2626 * @hw: pointer to hardware structure
2627 * @reg_val: value to write to AUTOC
2628 * @locked: bool to indicate whether the SW/FW lock was already taken by
2629 * previous read.
2630 **/
2631s32 prot_autoc_write_generic(struct ixgbe_hw *hw, u32 reg_val, bool locked)
2632{
2633 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_val);
2634 return 0;
2635}
2636
2637/**
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002638 * ixgbe_disable_rx_buff_generic - Stops the receive data path
2639 * @hw: pointer to hardware structure
2640 *
2641 * Stops the receive data path and waits for the HW to internally
2642 * empty the Rx security block.
2643 **/
2644s32 ixgbe_disable_rx_buff_generic(struct ixgbe_hw *hw)
2645{
2646#define IXGBE_MAX_SECRX_POLL 40
2647 int i;
2648 int secrxreg;
2649
2650 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2651 secrxreg |= IXGBE_SECRXCTRL_RX_DIS;
2652 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2653 for (i = 0; i < IXGBE_MAX_SECRX_POLL; i++) {
2654 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXSTAT);
2655 if (secrxreg & IXGBE_SECRXSTAT_SECRX_RDY)
2656 break;
2657 else
2658 /* Use interrupt-safe sleep just in case */
Jacob Kellerdb76ad42012-05-03 01:44:12 +00002659 udelay(1000);
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002660 }
2661
2662 /* For informational purposes only */
2663 if (i >= IXGBE_MAX_SECRX_POLL)
2664 hw_dbg(hw, "Rx unit being enabled before security "
2665 "path fully disabled. Continuing with init.\n");
2666
2667 return 0;
2668
2669}
2670
2671/**
2672 * ixgbe_enable_rx_buff - Enables the receive data path
2673 * @hw: pointer to hardware structure
2674 *
2675 * Enables the receive data path
2676 **/
2677s32 ixgbe_enable_rx_buff_generic(struct ixgbe_hw *hw)
2678{
2679 int secrxreg;
2680
2681 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2682 secrxreg &= ~IXGBE_SECRXCTRL_RX_DIS;
2683 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2684 IXGBE_WRITE_FLUSH(hw);
2685
2686 return 0;
2687}
2688
2689/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002690 * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit
2691 * @hw: pointer to hardware structure
2692 * @regval: register value to write to RXCTRL
2693 *
2694 * Enables the Rx DMA unit
2695 **/
2696s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval)
2697{
2698 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, regval);
2699
2700 return 0;
2701}
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002702
2703/**
2704 * ixgbe_blink_led_start_generic - Blink LED based on index.
2705 * @hw: pointer to hardware structure
2706 * @index: led number to blink
2707 **/
2708s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index)
2709{
2710 ixgbe_link_speed speed = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002711 bool link_up = false;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002712 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2713 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002714 s32 ret_val = 0;
Don Skidmore429d6a32014-02-27 20:32:41 -08002715 bool locked = false;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002716
2717 /*
2718 * Link must be up to auto-blink the LEDs;
2719 * Force it if link is down.
2720 */
2721 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2722
2723 if (!link_up) {
Don Skidmore429d6a32014-02-27 20:32:41 -08002724 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg);
2725 if (!ret_val)
2726 goto out;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002727
Peter P Waskiewicz Jr50ac58b2009-06-04 11:10:53 +00002728 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002729 autoc_reg |= IXGBE_AUTOC_FLU;
Don Skidmore429d6a32014-02-27 20:32:41 -08002730
2731 ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked);
2732 if (!ret_val)
2733 goto out;
2734
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002735 IXGBE_WRITE_FLUSH(hw);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002736
Don Skidmore032b4322011-03-18 09:32:53 +00002737 usleep_range(10000, 20000);
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002738 }
2739
2740 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2741 led_reg |= IXGBE_LED_BLINK(index);
2742 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2743 IXGBE_WRITE_FLUSH(hw);
2744
Don Skidmored7bbcd32012-10-24 06:19:01 +00002745out:
2746 return ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002747}
2748
2749/**
2750 * ixgbe_blink_led_stop_generic - Stop blinking LED based on index.
2751 * @hw: pointer to hardware structure
2752 * @index: led number to stop blinking
2753 **/
2754s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index)
2755{
Don Skidmore429d6a32014-02-27 20:32:41 -08002756 u32 autoc_reg = 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002757 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002758 s32 ret_val = 0;
Don Skidmore429d6a32014-02-27 20:32:41 -08002759 bool locked = false;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002760
Don Skidmore429d6a32014-02-27 20:32:41 -08002761 ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg);
2762 if (!ret_val)
2763 goto out;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002764
2765 autoc_reg &= ~IXGBE_AUTOC_FLU;
2766 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002767
Don Skidmore429d6a32014-02-27 20:32:41 -08002768 ret_val = hw->mac.ops.prot_autoc_write(hw, autoc_reg, locked);
2769 if (!ret_val)
2770 goto out;
Don Skidmored7bbcd32012-10-24 06:19:01 +00002771
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002772 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2773 led_reg &= ~IXGBE_LED_BLINK(index);
2774 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
2775 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2776 IXGBE_WRITE_FLUSH(hw);
2777
Don Skidmored7bbcd32012-10-24 06:19:01 +00002778out:
2779 return ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002780}
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002781
2782/**
2783 * ixgbe_get_san_mac_addr_offset - Get SAN MAC address offset from the EEPROM
2784 * @hw: pointer to hardware structure
2785 * @san_mac_offset: SAN MAC address offset
2786 *
2787 * This function will read the EEPROM location for the SAN MAC address
2788 * pointer, and returns the value at that location. This is used in both
2789 * get and set mac_addr routines.
2790 **/
2791static s32 ixgbe_get_san_mac_addr_offset(struct ixgbe_hw *hw,
2792 u16 *san_mac_offset)
2793{
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002794 s32 ret_val;
2795
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002796 /*
2797 * First read the EEPROM pointer to see if the MAC addresses are
2798 * available.
2799 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002800 ret_val = hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR,
2801 san_mac_offset);
2802 if (ret_val)
2803 hw_err(hw, "eeprom read at offset %d failed\n",
2804 IXGBE_SAN_MAC_ADDR_PTR);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002805
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002806 return ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002807}
2808
2809/**
2810 * ixgbe_get_san_mac_addr_generic - SAN MAC address retrieval from the EEPROM
2811 * @hw: pointer to hardware structure
2812 * @san_mac_addr: SAN MAC address
2813 *
2814 * Reads the SAN MAC address from the EEPROM, if it's available. This is
2815 * per-port, so set_lan_id() must be called before reading the addresses.
2816 * set_lan_id() is called by identify_sfp(), but this cannot be relied
2817 * upon for non-SFP connections, so we must call it here.
2818 **/
2819s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr)
2820{
2821 u16 san_mac_data, san_mac_offset;
2822 u8 i;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002823 s32 ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002824
2825 /*
2826 * First read the EEPROM pointer to see if the MAC addresses are
2827 * available. If they're not, no point in calling set_lan_id() here.
2828 */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002829 ret_val = ixgbe_get_san_mac_addr_offset(hw, &san_mac_offset);
2830 if (ret_val || san_mac_offset == 0 || san_mac_offset == 0xFFFF)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002831
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002832 goto san_mac_addr_clr;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002833
2834 /* make sure we know which port we need to program */
2835 hw->mac.ops.set_lan_id(hw);
2836 /* apply the port offset to the address offset */
2837 (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) :
2838 (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET);
2839 for (i = 0; i < 3; i++) {
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002840 ret_val = hw->eeprom.ops.read(hw, san_mac_offset,
2841 &san_mac_data);
2842 if (ret_val) {
2843 hw_err(hw, "eeprom read at offset %d failed\n",
2844 san_mac_offset);
2845 goto san_mac_addr_clr;
2846 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002847 san_mac_addr[i * 2] = (u8)(san_mac_data);
2848 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
2849 san_mac_offset++;
2850 }
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002851 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00002852
2853san_mac_addr_clr:
2854 /* No addresses available in this EEPROM. It's not necessarily an
2855 * error though, so just wipe the local address and return.
2856 */
2857 for (i = 0; i < 6; i++)
2858 san_mac_addr[i] = 0xFF;
2859 return ret_val;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002860}
2861
2862/**
2863 * ixgbe_get_pcie_msix_count_generic - Gets MSI-X vector count
2864 * @hw: pointer to hardware structure
2865 *
2866 * Read PCIe configuration space, and get the MSI-X vector count from
2867 * the capabilities table.
2868 **/
Emil Tantilov71161302012-03-22 03:00:29 +00002869u16 ixgbe_get_pcie_msix_count_generic(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002870{
Emil Tantilov71161302012-03-22 03:00:29 +00002871 u16 msix_count = 1;
2872 u16 max_msix_count;
2873 u16 pcie_offset;
2874
2875 switch (hw->mac.type) {
2876 case ixgbe_mac_82598EB:
2877 pcie_offset = IXGBE_PCIE_MSIX_82598_CAPS;
2878 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82598;
2879 break;
2880 case ixgbe_mac_82599EB:
2881 case ixgbe_mac_X540:
2882 pcie_offset = IXGBE_PCIE_MSIX_82599_CAPS;
2883 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82599;
2884 break;
2885 default:
2886 return msix_count;
2887 }
2888
Mark Rustad14438462014-02-28 15:48:57 -08002889 msix_count = ixgbe_read_pci_cfg_word(hw, pcie_offset);
2890 if (ixgbe_removed(hw->hw_addr))
2891 msix_count = 0;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002892 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
2893
Emil Tantilov71161302012-03-22 03:00:29 +00002894 /* MSI-X count is zero-based in HW */
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002895 msix_count++;
2896
Emil Tantilov71161302012-03-22 03:00:29 +00002897 if (msix_count > max_msix_count)
2898 msix_count = max_msix_count;
2899
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002900 return msix_count;
2901}
2902
2903/**
2904 * ixgbe_clear_vmdq_generic - Disassociate a VMDq pool index from a rx address
2905 * @hw: pointer to hardware struct
2906 * @rar: receive address register index to disassociate
2907 * @vmdq: VMDq pool index to remove from the rar
2908 **/
2909s32 ixgbe_clear_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2910{
2911 u32 mpsar_lo, mpsar_hi;
2912 u32 rar_entries = hw->mac.num_rar_entries;
2913
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002914 /* Make sure we are using a valid rar index range */
2915 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002916 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002917 return IXGBE_ERR_INVALID_ARGUMENT;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002918 }
2919
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002920 mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2921 mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2922
2923 if (!mpsar_lo && !mpsar_hi)
2924 goto done;
2925
2926 if (vmdq == IXGBE_CLEAR_VMDQ_ALL) {
2927 if (mpsar_lo) {
2928 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2929 mpsar_lo = 0;
2930 }
2931 if (mpsar_hi) {
2932 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2933 mpsar_hi = 0;
2934 }
2935 } else if (vmdq < 32) {
2936 mpsar_lo &= ~(1 << vmdq);
2937 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo);
2938 } else {
2939 mpsar_hi &= ~(1 << (vmdq - 32));
2940 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi);
2941 }
2942
2943 /* was that the last pool using this rar? */
2944 if (mpsar_lo == 0 && mpsar_hi == 0 && rar != 0)
2945 hw->mac.ops.clear_rar(hw, rar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002946done:
2947 return 0;
2948}
2949
2950/**
2951 * ixgbe_set_vmdq_generic - Associate a VMDq pool index with a rx address
2952 * @hw: pointer to hardware struct
2953 * @rar: receive address register index to associate with a VMDq index
2954 * @vmdq: VMDq pool index
2955 **/
2956s32 ixgbe_set_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2957{
2958 u32 mpsar;
2959 u32 rar_entries = hw->mac.num_rar_entries;
2960
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002961 /* Make sure we are using a valid rar index range */
2962 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002963 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002964 return IXGBE_ERR_INVALID_ARGUMENT;
2965 }
2966
2967 if (vmdq < 32) {
2968 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2969 mpsar |= 1 << vmdq;
2970 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar);
2971 } else {
2972 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2973 mpsar |= 1 << (vmdq - 32);
2974 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002975 }
2976 return 0;
2977}
2978
2979/**
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00002980 * This function should only be involved in the IOV mode.
2981 * In IOV mode, Default pool is next pool after the number of
2982 * VFs advertized and not 0.
2983 * MPSAR table needs to be updated for SAN_MAC RAR [hw->mac.san_mac_rar_index]
2984 *
2985 * ixgbe_set_vmdq_san_mac - Associate default VMDq pool index with a rx address
2986 * @hw: pointer to hardware struct
2987 * @vmdq: VMDq pool index
2988 **/
2989s32 ixgbe_set_vmdq_san_mac_generic(struct ixgbe_hw *hw, u32 vmdq)
2990{
2991 u32 rar = hw->mac.san_mac_rar_index;
2992
2993 if (vmdq < 32) {
2994 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 1 << vmdq);
2995 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2996 } else {
2997 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2998 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 1 << (vmdq - 32));
2999 }
3000
3001 return 0;
3002}
3003
3004/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003005 * ixgbe_init_uta_tables_generic - Initialize the Unicast Table Array
3006 * @hw: pointer to hardware structure
3007 **/
3008s32 ixgbe_init_uta_tables_generic(struct ixgbe_hw *hw)
3009{
3010 int i;
3011
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003012 for (i = 0; i < 128; i++)
3013 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
3014
3015 return 0;
3016}
3017
3018/**
3019 * ixgbe_find_vlvf_slot - find the vlanid or the first empty slot
3020 * @hw: pointer to hardware structure
3021 * @vlan: VLAN id to write to VLAN filter
3022 *
3023 * return the VLVF index where this VLAN id should be placed
3024 *
3025 **/
Emil Tantilov5d5b7c32010-10-12 22:20:59 +00003026static s32 ixgbe_find_vlvf_slot(struct ixgbe_hw *hw, u32 vlan)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003027{
3028 u32 bits = 0;
3029 u32 first_empty_slot = 0;
3030 s32 regindex;
3031
3032 /* short cut the special case */
3033 if (vlan == 0)
3034 return 0;
3035
3036 /*
3037 * Search for the vlan id in the VLVF entries. Save off the first empty
3038 * slot found along the way
3039 */
3040 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
3041 bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
3042 if (!bits && !(first_empty_slot))
3043 first_empty_slot = regindex;
3044 else if ((bits & 0x0FFF) == vlan)
3045 break;
3046 }
3047
3048 /*
3049 * If regindex is less than IXGBE_VLVF_ENTRIES, then we found the vlan
3050 * in the VLVF. Else use the first empty VLVF register for this
3051 * vlan id.
3052 */
3053 if (regindex >= IXGBE_VLVF_ENTRIES) {
3054 if (first_empty_slot)
3055 regindex = first_empty_slot;
3056 else {
3057 hw_dbg(hw, "No space in VLVF.\n");
3058 regindex = IXGBE_ERR_NO_SPACE;
3059 }
3060 }
3061
3062 return regindex;
3063}
3064
3065/**
3066 * ixgbe_set_vfta_generic - Set VLAN filter table
3067 * @hw: pointer to hardware structure
3068 * @vlan: VLAN id to write to VLAN filter
3069 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
3070 * @vlan_on: boolean flag to turn on/off VLAN in VFVF
3071 *
3072 * Turn on/off specified VLAN in the VLAN filter table.
3073 **/
3074s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
3075 bool vlan_on)
3076{
3077 s32 regindex;
3078 u32 bitindex;
3079 u32 vfta;
3080 u32 bits;
3081 u32 vt;
3082 u32 targetbit;
3083 bool vfta_changed = false;
3084
3085 if (vlan > 4095)
3086 return IXGBE_ERR_PARAM;
3087
3088 /*
3089 * this is a 2 part operation - first the VFTA, then the
3090 * VLVF and VLVFB if VT Mode is set
3091 * We don't write the VFTA until we know the VLVF part succeeded.
3092 */
3093
3094 /* Part 1
3095 * The VFTA is a bitstring made up of 128 32-bit registers
3096 * that enable the particular VLAN id, much like the MTA:
3097 * bits[11-5]: which register
3098 * bits[4-0]: which bit in the register
3099 */
3100 regindex = (vlan >> 5) & 0x7F;
3101 bitindex = vlan & 0x1F;
3102 targetbit = (1 << bitindex);
3103 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
3104
3105 if (vlan_on) {
3106 if (!(vfta & targetbit)) {
3107 vfta |= targetbit;
3108 vfta_changed = true;
3109 }
3110 } else {
3111 if ((vfta & targetbit)) {
3112 vfta &= ~targetbit;
3113 vfta_changed = true;
3114 }
3115 }
3116
3117 /* Part 2
3118 * If VT Mode is set
3119 * Either vlan_on
3120 * make sure the vlan is in VLVF
3121 * set the vind bit in the matching VLVFB
3122 * Or !vlan_on
3123 * clear the pool bit and possibly the vind
3124 */
3125 vt = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3126 if (vt & IXGBE_VT_CTL_VT_ENABLE) {
3127 s32 vlvf_index;
3128
3129 vlvf_index = ixgbe_find_vlvf_slot(hw, vlan);
3130 if (vlvf_index < 0)
3131 return vlvf_index;
3132
3133 if (vlan_on) {
3134 /* set the pool bit */
3135 if (vind < 32) {
3136 bits = IXGBE_READ_REG(hw,
3137 IXGBE_VLVFB(vlvf_index*2));
3138 bits |= (1 << vind);
3139 IXGBE_WRITE_REG(hw,
3140 IXGBE_VLVFB(vlvf_index*2),
3141 bits);
3142 } else {
3143 bits = IXGBE_READ_REG(hw,
3144 IXGBE_VLVFB((vlvf_index*2)+1));
3145 bits |= (1 << (vind-32));
3146 IXGBE_WRITE_REG(hw,
3147 IXGBE_VLVFB((vlvf_index*2)+1),
3148 bits);
3149 }
3150 } else {
3151 /* clear the pool bit */
3152 if (vind < 32) {
3153 bits = IXGBE_READ_REG(hw,
3154 IXGBE_VLVFB(vlvf_index*2));
3155 bits &= ~(1 << vind);
3156 IXGBE_WRITE_REG(hw,
3157 IXGBE_VLVFB(vlvf_index*2),
3158 bits);
3159 bits |= IXGBE_READ_REG(hw,
3160 IXGBE_VLVFB((vlvf_index*2)+1));
3161 } else {
3162 bits = IXGBE_READ_REG(hw,
3163 IXGBE_VLVFB((vlvf_index*2)+1));
3164 bits &= ~(1 << (vind-32));
3165 IXGBE_WRITE_REG(hw,
3166 IXGBE_VLVFB((vlvf_index*2)+1),
3167 bits);
3168 bits |= IXGBE_READ_REG(hw,
3169 IXGBE_VLVFB(vlvf_index*2));
3170 }
3171 }
3172
3173 /*
3174 * If there are still bits set in the VLVFB registers
3175 * for the VLAN ID indicated we need to see if the
3176 * caller is requesting that we clear the VFTA entry bit.
3177 * If the caller has requested that we clear the VFTA
3178 * entry bit but there are still pools/VFs using this VLAN
3179 * ID entry then ignore the request. We're not worried
3180 * about the case where we're turning the VFTA VLAN ID
3181 * entry bit on, only when requested to turn it off as
3182 * there may be multiple pools and/or VFs using the
3183 * VLAN ID entry. In that case we cannot clear the
3184 * VFTA bit until all pools/VFs using that VLAN ID have also
3185 * been cleared. This will be indicated by "bits" being
3186 * zero.
3187 */
3188 if (bits) {
3189 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index),
3190 (IXGBE_VLVF_VIEN | vlan));
3191 if (!vlan_on) {
3192 /* someone wants to clear the vfta entry
3193 * but some pools/VFs are still using it.
3194 * Ignore it. */
3195 vfta_changed = false;
3196 }
3197 }
3198 else
3199 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), 0);
3200 }
3201
3202 if (vfta_changed)
3203 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), vfta);
3204
3205 return 0;
3206}
3207
3208/**
3209 * ixgbe_clear_vfta_generic - Clear VLAN filter table
3210 * @hw: pointer to hardware structure
3211 *
3212 * Clears the VLAN filer table, and the VMDq index associated with the filter
3213 **/
3214s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw)
3215{
3216 u32 offset;
3217
3218 for (offset = 0; offset < hw->mac.vft_size; offset++)
3219 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
3220
3221 for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) {
3222 IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0);
3223 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset*2), 0);
3224 IXGBE_WRITE_REG(hw, IXGBE_VLVFB((offset*2)+1), 0);
3225 }
3226
3227 return 0;
3228}
3229
3230/**
3231 * ixgbe_check_mac_link_generic - Determine link and speed status
3232 * @hw: pointer to hardware structure
3233 * @speed: pointer to link speed
3234 * @link_up: true when link is up
3235 * @link_up_wait_to_complete: bool used to wait for link up or not
3236 *
3237 * Reads the links register to determine if link is up and the current speed
3238 **/
3239s32 ixgbe_check_mac_link_generic(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
Emil Tantilov8c7bea32011-02-19 08:43:44 +00003240 bool *link_up, bool link_up_wait_to_complete)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003241{
Emil Tantilov48de36c2011-02-16 01:38:08 +00003242 u32 links_reg, links_orig;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003243 u32 i;
3244
Emil Tantilov48de36c2011-02-16 01:38:08 +00003245 /* clear the old state */
3246 links_orig = IXGBE_READ_REG(hw, IXGBE_LINKS);
3247
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003248 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Emil Tantilov48de36c2011-02-16 01:38:08 +00003249
3250 if (links_orig != links_reg) {
3251 hw_dbg(hw, "LINKS changed from %08X to %08X\n",
3252 links_orig, links_reg);
3253 }
3254
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003255 if (link_up_wait_to_complete) {
3256 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
3257 if (links_reg & IXGBE_LINKS_UP) {
3258 *link_up = true;
3259 break;
3260 } else {
3261 *link_up = false;
3262 }
3263 msleep(100);
3264 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
3265 }
3266 } else {
3267 if (links_reg & IXGBE_LINKS_UP)
3268 *link_up = true;
3269 else
3270 *link_up = false;
3271 }
3272
3273 if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
3274 IXGBE_LINKS_SPEED_10G_82599)
3275 *speed = IXGBE_LINK_SPEED_10GB_FULL;
3276 else if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
Emil Tantilov63d778d2011-02-19 08:43:39 +00003277 IXGBE_LINKS_SPEED_1G_82599)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003278 *speed = IXGBE_LINK_SPEED_1GB_FULL;
Emil Tantilov63d778d2011-02-19 08:43:39 +00003279 else if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
3280 IXGBE_LINKS_SPEED_100_82599)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003281 *speed = IXGBE_LINK_SPEED_100_FULL;
Emil Tantilov63d778d2011-02-19 08:43:39 +00003282 else
3283 *speed = IXGBE_LINK_SPEED_UNKNOWN;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003284
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003285 return 0;
3286}
Don Skidmorea391f1d2010-11-16 19:27:15 -08003287
3288/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003289 * ixgbe_get_wwn_prefix_generic - Get alternative WWNN/WWPN prefix from
Don Skidmorea391f1d2010-11-16 19:27:15 -08003290 * the EEPROM
3291 * @hw: pointer to hardware structure
3292 * @wwnn_prefix: the alternative WWNN prefix
3293 * @wwpn_prefix: the alternative WWPN prefix
3294 *
3295 * This function will read the EEPROM from the alternative SAN MAC address
3296 * block to check the support for the alternative WWNN/WWPN prefix support.
3297 **/
3298s32 ixgbe_get_wwn_prefix_generic(struct ixgbe_hw *hw, u16 *wwnn_prefix,
3299 u16 *wwpn_prefix)
3300{
3301 u16 offset, caps;
3302 u16 alt_san_mac_blk_offset;
3303
3304 /* clear output first */
3305 *wwnn_prefix = 0xFFFF;
3306 *wwpn_prefix = 0xFFFF;
3307
3308 /* check if alternative SAN MAC is supported */
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003309 offset = IXGBE_ALT_SAN_MAC_ADDR_BLK_PTR;
3310 if (hw->eeprom.ops.read(hw, offset, &alt_san_mac_blk_offset))
3311 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003312
3313 if ((alt_san_mac_blk_offset == 0) ||
3314 (alt_san_mac_blk_offset == 0xFFFF))
3315 goto wwn_prefix_out;
3316
3317 /* check capability in alternative san mac address block */
3318 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_CAPS_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003319 if (hw->eeprom.ops.read(hw, offset, &caps))
3320 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003321 if (!(caps & IXGBE_ALT_SAN_MAC_ADDR_CAPS_ALTWWN))
3322 goto wwn_prefix_out;
3323
3324 /* get the corresponding prefix for WWNN/WWPN */
3325 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWNN_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003326 if (hw->eeprom.ops.read(hw, offset, wwnn_prefix))
3327 hw_err(hw, "eeprom read at offset %d failed\n", offset);
Don Skidmorea391f1d2010-11-16 19:27:15 -08003328
3329 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWPN_OFFSET;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003330 if (hw->eeprom.ops.read(hw, offset, wwpn_prefix))
3331 goto wwn_prefix_err;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003332
3333wwn_prefix_out:
3334 return 0;
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003335
3336wwn_prefix_err:
3337 hw_err(hw, "eeprom read at offset %d failed\n", offset);
3338 return 0;
Don Skidmorea391f1d2010-11-16 19:27:15 -08003339}
Greg Rosea985b6c32010-11-18 03:02:52 +00003340
3341/**
3342 * ixgbe_set_mac_anti_spoofing - Enable/Disable MAC anti-spoofing
3343 * @hw: pointer to hardware structure
3344 * @enable: enable or disable switch for anti-spoofing
3345 * @pf: Physical Function pool - do not enable anti-spoofing for the PF
3346 *
3347 **/
3348void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int pf)
3349{
3350 int j;
3351 int pf_target_reg = pf >> 3;
3352 int pf_target_shift = pf % 8;
3353 u32 pfvfspoof = 0;
3354
3355 if (hw->mac.type == ixgbe_mac_82598EB)
3356 return;
3357
3358 if (enable)
3359 pfvfspoof = IXGBE_SPOOF_MACAS_MASK;
3360
3361 /*
3362 * PFVFSPOOF register array is size 8 with 8 bits assigned to
3363 * MAC anti-spoof enables in each register array element.
3364 */
Alexander Duyckef89e0a2012-05-05 05:32:58 +00003365 for (j = 0; j < pf_target_reg; j++)
Greg Rosea985b6c32010-11-18 03:02:52 +00003366 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof);
3367
Greg Rosea985b6c32010-11-18 03:02:52 +00003368 /*
3369 * The PF should be allowed to spoof so that it can support
Alexander Duyckef89e0a2012-05-05 05:32:58 +00003370 * emulation mode NICs. Do not set the bits assigned to the PF
Greg Rosea985b6c32010-11-18 03:02:52 +00003371 */
Alexander Duyckef89e0a2012-05-05 05:32:58 +00003372 pfvfspoof &= (1 << pf_target_shift) - 1;
3373 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof);
3374
3375 /*
3376 * Remaining pools belong to the PF so they do not need to have
3377 * anti-spoofing enabled.
3378 */
3379 for (j++; j < IXGBE_PFVFSPOOF_REG_COUNT; j++)
3380 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), 0);
Greg Rosea985b6c32010-11-18 03:02:52 +00003381}
3382
3383/**
3384 * ixgbe_set_vlan_anti_spoofing - Enable/Disable VLAN anti-spoofing
3385 * @hw: pointer to hardware structure
3386 * @enable: enable or disable switch for VLAN anti-spoofing
3387 * @pf: Virtual Function pool - VF Pool to set for VLAN anti-spoofing
3388 *
3389 **/
3390void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
3391{
3392 int vf_target_reg = vf >> 3;
3393 int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT;
3394 u32 pfvfspoof;
3395
3396 if (hw->mac.type == ixgbe_mac_82598EB)
3397 return;
3398
3399 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
3400 if (enable)
3401 pfvfspoof |= (1 << vf_target_shift);
3402 else
3403 pfvfspoof &= ~(1 << vf_target_shift);
3404 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
3405}
Emil Tantilovb776d102011-03-31 09:36:18 +00003406
3407/**
3408 * ixgbe_get_device_caps_generic - Get additional device capabilities
3409 * @hw: pointer to hardware structure
3410 * @device_caps: the EEPROM word with the extra device capabilities
3411 *
3412 * This function will read the EEPROM location for the device capabilities,
3413 * and return the word through device_caps.
3414 **/
3415s32 ixgbe_get_device_caps_generic(struct ixgbe_hw *hw, u16 *device_caps)
3416{
3417 hw->eeprom.ops.read(hw, IXGBE_DEVICE_CAPS, device_caps);
3418
3419 return 0;
3420}
John Fastabend80605c652011-05-02 12:34:10 +00003421
3422/**
3423 * ixgbe_set_rxpba_generic - Initialize RX packet buffer
3424 * @hw: pointer to hardware structure
3425 * @num_pb: number of packet buffers to allocate
3426 * @headroom: reserve n KB of headroom
3427 * @strategy: packet buffer allocation strategy
3428 **/
3429void ixgbe_set_rxpba_generic(struct ixgbe_hw *hw,
3430 int num_pb,
3431 u32 headroom,
3432 int strategy)
3433{
3434 u32 pbsize = hw->mac.rx_pb_size;
3435 int i = 0;
3436 u32 rxpktsize, txpktsize, txpbthresh;
3437
3438 /* Reserve headroom */
3439 pbsize -= headroom;
3440
3441 if (!num_pb)
3442 num_pb = 1;
3443
3444 /* Divide remaining packet buffer space amongst the number
3445 * of packet buffers requested using supplied strategy.
3446 */
3447 switch (strategy) {
3448 case (PBA_STRATEGY_WEIGHTED):
3449 /* pba_80_48 strategy weight first half of packet buffer with
3450 * 5/8 of the packet buffer space.
3451 */
3452 rxpktsize = ((pbsize * 5 * 2) / (num_pb * 8));
3453 pbsize -= rxpktsize * (num_pb / 2);
3454 rxpktsize <<= IXGBE_RXPBSIZE_SHIFT;
3455 for (; i < (num_pb / 2); i++)
3456 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3457 /* Fall through to configure remaining packet buffers */
3458 case (PBA_STRATEGY_EQUAL):
3459 /* Divide the remaining Rx packet buffer evenly among the TCs */
3460 rxpktsize = (pbsize / (num_pb - i)) << IXGBE_RXPBSIZE_SHIFT;
3461 for (; i < num_pb; i++)
3462 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3463 break;
3464 default:
3465 break;
3466 }
3467
3468 /*
3469 * Setup Tx packet buffer and threshold equally for all TCs
3470 * TXPBTHRESH register is set in K so divide by 1024 and subtract
3471 * 10 since the largest packet we support is just over 9K.
3472 */
3473 txpktsize = IXGBE_TXPBSIZE_MAX / num_pb;
3474 txpbthresh = (txpktsize / 1024) - IXGBE_TXPKT_SIZE_MAX;
3475 for (i = 0; i < num_pb; i++) {
3476 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
3477 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
3478 }
3479
3480 /* Clear unused TCs, if any, to zero buffer size*/
3481 for (; i < IXGBE_MAX_PB; i++) {
3482 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
3483 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
3484 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
3485 }
3486}
Emil Tantilov9612de92011-05-07 07:40:20 +00003487
3488/**
3489 * ixgbe_calculate_checksum - Calculate checksum for buffer
3490 * @buffer: pointer to EEPROM
3491 * @length: size of EEPROM to calculate a checksum for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003492 *
Emil Tantilov9612de92011-05-07 07:40:20 +00003493 * Calculates the checksum for some buffer on a specified length. The
3494 * checksum calculated is returned.
3495 **/
3496static u8 ixgbe_calculate_checksum(u8 *buffer, u32 length)
3497{
3498 u32 i;
3499 u8 sum = 0;
3500
3501 if (!buffer)
3502 return 0;
3503
3504 for (i = 0; i < length; i++)
3505 sum += buffer[i];
3506
3507 return (u8) (0 - sum);
3508}
3509
3510/**
3511 * ixgbe_host_interface_command - Issue command to manageability block
3512 * @hw: pointer to the HW structure
3513 * @buffer: contains the command to write and where the return status will
3514 * be placed
Don Skidmorec466d7a2012-02-28 06:35:54 +00003515 * @length: length of buffer, must be multiple of 4 bytes
Emil Tantilov9612de92011-05-07 07:40:20 +00003516 *
3517 * Communicates with the manageability block. On success return 0
3518 * else return IXGBE_ERR_HOST_INTERFACE_COMMAND.
3519 **/
Emil Tantilov79488c52011-10-11 08:24:57 +00003520static s32 ixgbe_host_interface_command(struct ixgbe_hw *hw, u32 *buffer,
Emil Tantilov9612de92011-05-07 07:40:20 +00003521 u32 length)
3522{
Emil Tantilov331bcf42011-10-22 05:21:32 +00003523 u32 hicr, i, bi;
Emil Tantilov9612de92011-05-07 07:40:20 +00003524 u32 hdr_size = sizeof(struct ixgbe_hic_hdr);
3525 u8 buf_len, dword_len;
3526
3527 s32 ret_val = 0;
3528
3529 if (length == 0 || length & 0x3 ||
3530 length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) {
3531 hw_dbg(hw, "Buffer length failure.\n");
3532 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3533 goto out;
3534 }
3535
3536 /* Check that the host interface is enabled. */
3537 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
3538 if ((hicr & IXGBE_HICR_EN) == 0) {
3539 hw_dbg(hw, "IXGBE_HOST_EN bit disabled.\n");
3540 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3541 goto out;
3542 }
3543
3544 /* Calculate length in DWORDs */
3545 dword_len = length >> 2;
3546
3547 /*
3548 * The device driver writes the relevant command block
3549 * into the ram area.
3550 */
3551 for (i = 0; i < dword_len; i++)
3552 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_FLEX_MNG,
Emil Tantilov79488c52011-10-11 08:24:57 +00003553 i, cpu_to_le32(buffer[i]));
Emil Tantilov9612de92011-05-07 07:40:20 +00003554
3555 /* Setting this bit tells the ARC that a new command is pending. */
3556 IXGBE_WRITE_REG(hw, IXGBE_HICR, hicr | IXGBE_HICR_C);
3557
3558 for (i = 0; i < IXGBE_HI_COMMAND_TIMEOUT; i++) {
3559 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
3560 if (!(hicr & IXGBE_HICR_C))
3561 break;
3562 usleep_range(1000, 2000);
3563 }
3564
3565 /* Check command successful completion. */
3566 if (i == IXGBE_HI_COMMAND_TIMEOUT ||
3567 (!(IXGBE_READ_REG(hw, IXGBE_HICR) & IXGBE_HICR_SV))) {
3568 hw_dbg(hw, "Command has failed with no status valid.\n");
3569 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3570 goto out;
3571 }
3572
3573 /* Calculate length in DWORDs */
3574 dword_len = hdr_size >> 2;
3575
3576 /* first pull in the header so we know the buffer length */
Emil Tantilov331bcf42011-10-22 05:21:32 +00003577 for (bi = 0; bi < dword_len; bi++) {
3578 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3579 le32_to_cpus(&buffer[bi]);
Emil Tantilov79488c52011-10-11 08:24:57 +00003580 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003581
3582 /* If there is any thing in data position pull it in */
3583 buf_len = ((struct ixgbe_hic_hdr *)buffer)->buf_len;
3584 if (buf_len == 0)
3585 goto out;
3586
3587 if (length < (buf_len + hdr_size)) {
3588 hw_dbg(hw, "Buffer not large enough for reply message.\n");
3589 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3590 goto out;
3591 }
3592
Emil Tantilov331bcf42011-10-22 05:21:32 +00003593 /* Calculate length in DWORDs, add 3 for odd lengths */
3594 dword_len = (buf_len + 3) >> 2;
Emil Tantilov9612de92011-05-07 07:40:20 +00003595
Emil Tantilov331bcf42011-10-22 05:21:32 +00003596 /* Pull in the rest of the buffer (bi is where we left off)*/
3597 for (; bi <= dword_len; bi++) {
3598 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3599 le32_to_cpus(&buffer[bi]);
3600 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003601
3602out:
3603 return ret_val;
3604}
3605
3606/**
3607 * ixgbe_set_fw_drv_ver_generic - Sends driver version to firmware
3608 * @hw: pointer to the HW structure
3609 * @maj: driver version major number
3610 * @min: driver version minor number
3611 * @build: driver version build number
3612 * @sub: driver version sub build number
3613 *
3614 * Sends driver version number to firmware through the manageability
3615 * block. On success return 0
3616 * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring
3617 * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails.
3618 **/
3619s32 ixgbe_set_fw_drv_ver_generic(struct ixgbe_hw *hw, u8 maj, u8 min,
3620 u8 build, u8 sub)
3621{
3622 struct ixgbe_hic_drv_info fw_cmd;
3623 int i;
3624 s32 ret_val = 0;
3625
3626 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM) != 0) {
3627 ret_val = IXGBE_ERR_SWFW_SYNC;
3628 goto out;
3629 }
3630
3631 fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO;
3632 fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN;
3633 fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED;
3634 fw_cmd.port_num = (u8)hw->bus.func;
3635 fw_cmd.ver_maj = maj;
3636 fw_cmd.ver_min = min;
3637 fw_cmd.ver_build = build;
3638 fw_cmd.ver_sub = sub;
3639 fw_cmd.hdr.checksum = 0;
3640 fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd,
3641 (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len));
3642 fw_cmd.pad = 0;
3643 fw_cmd.pad2 = 0;
3644
3645 for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) {
Emil Tantilov79488c52011-10-11 08:24:57 +00003646 ret_val = ixgbe_host_interface_command(hw, (u32 *)&fw_cmd,
Emil Tantilov9612de92011-05-07 07:40:20 +00003647 sizeof(fw_cmd));
3648 if (ret_val != 0)
3649 continue;
3650
3651 if (fw_cmd.hdr.cmd_or_resp.ret_status ==
3652 FW_CEM_RESP_STATUS_SUCCESS)
3653 ret_val = 0;
3654 else
3655 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3656
3657 break;
3658 }
3659
3660 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM);
3661out:
3662 return ret_val;
3663}
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003664
3665/**
3666 * ixgbe_clear_tx_pending - Clear pending TX work from the PCIe fifo
3667 * @hw: pointer to the hardware structure
3668 *
3669 * The 82599 and x540 MACs can experience issues if TX work is still pending
3670 * when a reset occurs. This function prevents this by flushing the PCIe
3671 * buffers on the system.
3672 **/
3673void ixgbe_clear_tx_pending(struct ixgbe_hw *hw)
3674{
3675 u32 gcr_ext, hlreg0;
3676
3677 /*
3678 * If double reset is not requested then all transactions should
3679 * already be clear and as such there is no work to do
3680 */
3681 if (!(hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED))
3682 return;
3683
3684 /*
3685 * Set loopback enable to prevent any transmits from being sent
3686 * should the link come up. This assumes that the RXCTRL.RXEN bit
3687 * has already been cleared.
3688 */
3689 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3690 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0 | IXGBE_HLREG0_LPBK);
3691
3692 /* initiate cleaning flow for buffers in the PCIe transaction layer */
3693 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3694 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT,
3695 gcr_ext | IXGBE_GCR_EXT_BUFFERS_CLEAR);
3696
3697 /* Flush all writes and allow 20usec for all transactions to clear */
3698 IXGBE_WRITE_FLUSH(hw);
3699 udelay(20);
3700
3701 /* restore previous register values */
3702 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3703 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3704}
Don Skidmoree1ea9152012-02-17 02:38:58 +00003705
3706static const u8 ixgbe_emc_temp_data[4] = {
3707 IXGBE_EMC_INTERNAL_DATA,
3708 IXGBE_EMC_DIODE1_DATA,
3709 IXGBE_EMC_DIODE2_DATA,
3710 IXGBE_EMC_DIODE3_DATA
3711};
3712static const u8 ixgbe_emc_therm_limit[4] = {
3713 IXGBE_EMC_INTERNAL_THERM_LIMIT,
3714 IXGBE_EMC_DIODE1_THERM_LIMIT,
3715 IXGBE_EMC_DIODE2_THERM_LIMIT,
3716 IXGBE_EMC_DIODE3_THERM_LIMIT
3717};
3718
3719/**
3720 * ixgbe_get_ets_data - Extracts the ETS bit data
3721 * @hw: pointer to hardware structure
3722 * @ets_cfg: extected ETS data
3723 * @ets_offset: offset of ETS data
3724 *
3725 * Returns error code.
3726 **/
3727static s32 ixgbe_get_ets_data(struct ixgbe_hw *hw, u16 *ets_cfg,
3728 u16 *ets_offset)
3729{
3730 s32 status = 0;
3731
3732 status = hw->eeprom.ops.read(hw, IXGBE_ETS_CFG, ets_offset);
3733 if (status)
3734 goto out;
3735
3736 if ((*ets_offset == 0x0000) || (*ets_offset == 0xFFFF)) {
3737 status = IXGBE_NOT_IMPLEMENTED;
3738 goto out;
3739 }
3740
3741 status = hw->eeprom.ops.read(hw, *ets_offset, ets_cfg);
3742 if (status)
3743 goto out;
3744
3745 if ((*ets_cfg & IXGBE_ETS_TYPE_MASK) != IXGBE_ETS_TYPE_EMC_SHIFTED) {
3746 status = IXGBE_NOT_IMPLEMENTED;
3747 goto out;
3748 }
3749
3750out:
3751 return status;
3752}
3753
3754/**
3755 * ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
3756 * @hw: pointer to hardware structure
3757 *
3758 * Returns the thermal sensor data structure
3759 **/
3760s32 ixgbe_get_thermal_sensor_data_generic(struct ixgbe_hw *hw)
3761{
3762 s32 status = 0;
3763 u16 ets_offset;
3764 u16 ets_cfg;
3765 u16 ets_sensor;
3766 u8 num_sensors;
3767 u8 i;
3768 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3769
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003770 /* Only support thermal sensors attached to physical port 0 */
3771 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) {
Don Skidmoree1ea9152012-02-17 02:38:58 +00003772 status = IXGBE_NOT_IMPLEMENTED;
3773 goto out;
3774 }
3775
3776 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3777 if (status)
3778 goto out;
3779
3780 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3781 if (num_sensors > IXGBE_MAX_SENSORS)
3782 num_sensors = IXGBE_MAX_SENSORS;
3783
3784 for (i = 0; i < num_sensors; i++) {
3785 u8 sensor_index;
3786 u8 sensor_location;
3787
3788 status = hw->eeprom.ops.read(hw, (ets_offset + 1 + i),
3789 &ets_sensor);
3790 if (status)
3791 goto out;
3792
3793 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3794 IXGBE_ETS_DATA_INDEX_SHIFT);
3795 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3796 IXGBE_ETS_DATA_LOC_SHIFT);
3797
3798 if (sensor_location != 0) {
3799 status = hw->phy.ops.read_i2c_byte(hw,
3800 ixgbe_emc_temp_data[sensor_index],
3801 IXGBE_I2C_THERMAL_SENSOR_ADDR,
3802 &data->sensor[i].temp);
3803 if (status)
3804 goto out;
3805 }
3806 }
3807out:
3808 return status;
3809}
3810
3811/**
3812 * ixgbe_init_thermal_sensor_thresh_generic - Inits thermal sensor thresholds
3813 * @hw: pointer to hardware structure
3814 *
3815 * Inits the thermal sensor thresholds according to the NVM map
3816 * and save off the threshold and location values into mac.thermal_sensor_data
3817 **/
3818s32 ixgbe_init_thermal_sensor_thresh_generic(struct ixgbe_hw *hw)
3819{
3820 s32 status = 0;
3821 u16 ets_offset;
3822 u16 ets_cfg;
3823 u16 ets_sensor;
3824 u8 low_thresh_delta;
3825 u8 num_sensors;
3826 u8 therm_limit;
3827 u8 i;
3828 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3829
3830 memset(data, 0, sizeof(struct ixgbe_thermal_sensor_data));
3831
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003832 /* Only support thermal sensors attached to physical port 0 */
3833 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) {
Don Skidmoree1ea9152012-02-17 02:38:58 +00003834 status = IXGBE_NOT_IMPLEMENTED;
3835 goto out;
3836 }
3837
3838 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3839 if (status)
3840 goto out;
3841
3842 low_thresh_delta = ((ets_cfg & IXGBE_ETS_LTHRES_DELTA_MASK) >>
3843 IXGBE_ETS_LTHRES_DELTA_SHIFT);
3844 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3845 if (num_sensors > IXGBE_MAX_SENSORS)
3846 num_sensors = IXGBE_MAX_SENSORS;
3847
3848 for (i = 0; i < num_sensors; i++) {
3849 u8 sensor_index;
3850 u8 sensor_location;
3851
Mark Rustadbe0c27b2013-05-24 07:31:09 +00003852 if (hw->eeprom.ops.read(hw, ets_offset + 1 + i, &ets_sensor)) {
3853 hw_err(hw, "eeprom read at offset %d failed\n",
3854 ets_offset + 1 + i);
3855 continue;
3856 }
Don Skidmoree1ea9152012-02-17 02:38:58 +00003857 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3858 IXGBE_ETS_DATA_INDEX_SHIFT);
3859 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3860 IXGBE_ETS_DATA_LOC_SHIFT);
3861 therm_limit = ets_sensor & IXGBE_ETS_DATA_HTHRESH_MASK;
3862
3863 hw->phy.ops.write_i2c_byte(hw,
3864 ixgbe_emc_therm_limit[sensor_index],
3865 IXGBE_I2C_THERMAL_SENSOR_ADDR, therm_limit);
3866
3867 if (sensor_location == 0)
3868 continue;
3869
3870 data->sensor[i].location = sensor_location;
3871 data->sensor[i].caution_thresh = therm_limit;
3872 data->sensor[i].max_op_thresh = therm_limit - low_thresh_delta;
3873 }
3874out:
3875 return status;
3876}
3877