blob: 0d09711b9379305b52af35fc4717487007e7bd90 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore434c5e32013-01-08 05:02:28 +00004 Copyright(c) 1999 - 2013 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 Skidmored7bbcd32012-10-24 06:19:01 +0000117 bool got_lock = 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 Skidmore4e8e1bc2013-07-31 02:17:40 +0000142 case ixgbe_media_type_fiber_fixed:
Alexander Duyck67a79df2012-04-19 17:49:56 +0000143 case ixgbe_media_type_fiber:
144 case ixgbe_media_type_backplane:
145 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
146 reg_bp = IXGBE_READ_REG(hw, IXGBE_AUTOC);
147 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000148 case ixgbe_media_type_copper:
149 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
150 MDIO_MMD_AN, &reg_cu);
151 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000152 default:
Alexander Duyck041441d2012-04-19 17:48:48 +0000153 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000154 }
155
156 /*
157 * The possible values of fc.requested_mode are:
158 * 0: Flow control is completely disabled
159 * 1: Rx flow control is enabled (we can receive pause frames,
160 * but not send pause frames).
161 * 2: Tx flow control is enabled (we can send pause frames but
162 * we do not support receiving pause frames).
163 * 3: Both Rx and Tx flow control (symmetric) are enabled.
Alexander Duyck67a79df2012-04-19 17:49:56 +0000164 * other: Invalid.
165 */
166 switch (hw->fc.requested_mode) {
167 case ixgbe_fc_none:
168 /* Flow control completely disabled by software override. */
169 reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
170 if (hw->phy.media_type == ixgbe_media_type_backplane)
171 reg_bp &= ~(IXGBE_AUTOC_SYM_PAUSE |
172 IXGBE_AUTOC_ASM_PAUSE);
173 else if (hw->phy.media_type == ixgbe_media_type_copper)
174 reg_cu &= ~(IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE);
175 break;
Alexander Duyck041441d2012-04-19 17:48:48 +0000176 case ixgbe_fc_tx_pause:
177 /*
178 * Tx Flow control is enabled, and Rx Flow control is
179 * disabled by software override.
180 */
181 reg |= IXGBE_PCS1GANA_ASM_PAUSE;
182 reg &= ~IXGBE_PCS1GANA_SYM_PAUSE;
183 if (hw->phy.media_type == ixgbe_media_type_backplane) {
184 reg_bp |= IXGBE_AUTOC_ASM_PAUSE;
185 reg_bp &= ~IXGBE_AUTOC_SYM_PAUSE;
186 } else if (hw->phy.media_type == ixgbe_media_type_copper) {
187 reg_cu |= IXGBE_TAF_ASM_PAUSE;
188 reg_cu &= ~IXGBE_TAF_SYM_PAUSE;
189 }
190 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000191 case ixgbe_fc_rx_pause:
192 /*
193 * Rx Flow control is enabled and Tx Flow control is
194 * disabled by software override. Since there really
195 * isn't a way to advertise that we are capable of RX
196 * Pause ONLY, we will advertise that we support both
Alexander Duyck041441d2012-04-19 17:48:48 +0000197 * symmetric and asymmetric Rx PAUSE, as such we fall
198 * through to the fc_full statement. Later, we will
Alexander Duyck67a79df2012-04-19 17:49:56 +0000199 * disable the adapter's ability to send PAUSE frames.
200 */
Alexander Duyck67a79df2012-04-19 17:49:56 +0000201 case ixgbe_fc_full:
202 /* Flow control (both Rx and Tx) is enabled by SW override. */
Alexander Duyck041441d2012-04-19 17:48:48 +0000203 reg |= IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000204 if (hw->phy.media_type == ixgbe_media_type_backplane)
Alexander Duyck041441d2012-04-19 17:48:48 +0000205 reg_bp |= IXGBE_AUTOC_SYM_PAUSE |
206 IXGBE_AUTOC_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000207 else if (hw->phy.media_type == ixgbe_media_type_copper)
Alexander Duyck041441d2012-04-19 17:48:48 +0000208 reg_cu |= IXGBE_TAF_SYM_PAUSE | IXGBE_TAF_ASM_PAUSE;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000209 break;
Alexander Duyck67a79df2012-04-19 17:49:56 +0000210 default:
211 hw_dbg(hw, "Flow control param set incorrectly\n");
212 ret_val = IXGBE_ERR_CONFIG;
213 goto out;
214 break;
215 }
216
217 if (hw->mac.type != ixgbe_mac_X540) {
218 /*
219 * Enable auto-negotiation between the MAC & PHY;
220 * the MAC will advertise clause 37 flow control.
221 */
222 IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg);
223 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
224
225 /* Disable AN timeout */
226 if (hw->fc.strict_ieee)
227 reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN;
228
229 IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg);
230 hw_dbg(hw, "Set up FC; PCS1GLCTL = 0x%08X\n", reg);
231 }
232
233 /*
234 * AUTOC restart handles negotiation of 1G and 10G on backplane
235 * and copper. There is no need to set the PCS1GCTL register.
236 *
237 */
238 if (hw->phy.media_type == ixgbe_media_type_backplane) {
Don Skidmored7bbcd32012-10-24 06:19:01 +0000239 /* Need the SW/FW semaphore around AUTOC writes if 82599 and
240 * LESM is on, likewise reset_pipeline requries the lock as
241 * it also writes AUTOC.
242 */
243 if ((hw->mac.type == ixgbe_mac_82599EB) &&
244 ixgbe_verify_lesm_fw_enabled_82599(hw)) {
245 ret_val = hw->mac.ops.acquire_swfw_sync(hw,
246 IXGBE_GSSR_MAC_CSR_SM);
247 if (ret_val)
248 goto out;
249
250 got_lock = true;
251 }
252
Alexander Duyck67a79df2012-04-19 17:49:56 +0000253 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_bp);
Don Skidmored7bbcd32012-10-24 06:19:01 +0000254
255 if (hw->mac.type == ixgbe_mac_82599EB)
256 ixgbe_reset_pipeline_82599(hw);
257
258 if (got_lock)
259 hw->mac.ops.release_swfw_sync(hw,
260 IXGBE_GSSR_MAC_CSR_SM);
261
Alexander Duyck67a79df2012-04-19 17:49:56 +0000262 } else if ((hw->phy.media_type == ixgbe_media_type_copper) &&
Don Skidmore73d80953d2013-07-31 02:19:24 +0000263 ixgbe_device_supports_autoneg_fc(hw)) {
Alexander Duyck67a79df2012-04-19 17:49:56 +0000264 hw->phy.ops.write_reg(hw, MDIO_AN_ADVERTISE,
265 MDIO_MMD_AN, reg_cu);
266 }
267
268 hw_dbg(hw, "Set up FC; IXGBE_AUTOC = 0x%08X\n", reg);
269out:
270 return ret_val;
271}
272
273/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700274 * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx
Auke Kok9a799d72007-09-15 14:07:45 -0700275 * @hw: pointer to hardware structure
276 *
277 * Starts the hardware by filling the bus info structure and media type, clears
278 * all on chip counters, initializes receive address registers, multicast
279 * table, VLAN filter table, calls routine to set up link and flow control
280 * settings, and leaves transmit and receive units disabled and uninitialized
281 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700282s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700283{
284 u32 ctrl_ext;
285
286 /* Set the media type */
287 hw->phy.media_type = hw->mac.ops.get_media_type(hw);
288
289 /* Identify the PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700290 hw->phy.ops.identify(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700291
Auke Kok9a799d72007-09-15 14:07:45 -0700292 /* Clear the VLAN filter table */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700293 hw->mac.ops.clear_vfta(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700294
Auke Kok9a799d72007-09-15 14:07:45 -0700295 /* Clear statistics registers */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700296 hw->mac.ops.clear_hw_cntrs(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700297
298 /* Set No Snoop Disable */
299 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
300 ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS;
301 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok3957d632007-10-31 15:22:10 -0700302 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700303
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000304 /* Setup flow control */
Alexander Duyck041441d2012-04-19 17:48:48 +0000305 ixgbe_setup_fc(hw);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000306
Auke Kok9a799d72007-09-15 14:07:45 -0700307 /* Clear adapter stopped flag */
308 hw->adapter_stopped = false;
309
310 return 0;
311}
312
313/**
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000314 * ixgbe_start_hw_gen2 - Init sequence for common device family
315 * @hw: pointer to hw structure
316 *
317 * Performs the init sequence common to the second generation
318 * of 10 GbE devices.
319 * Devices in the second generation:
320 * 82599
321 * X540
322 **/
323s32 ixgbe_start_hw_gen2(struct ixgbe_hw *hw)
324{
325 u32 i;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000326 u32 regval;
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000327
328 /* Clear the rate limiters */
329 for (i = 0; i < hw->mac.max_tx_queues; i++) {
330 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, i);
331 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, 0);
332 }
333 IXGBE_WRITE_FLUSH(hw);
334
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000335 /* Disable relaxed ordering */
336 for (i = 0; i < hw->mac.max_tx_queues; i++) {
337 regval = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000338 regval &= ~IXGBE_DCA_TXCTRL_DESC_WRO_EN;
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000339 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(i), regval);
340 }
341
342 for (i = 0; i < hw->mac.max_rx_queues; i++) {
343 regval = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000344 regval &= ~(IXGBE_DCA_RXCTRL_DATA_WRO_EN |
345 IXGBE_DCA_RXCTRL_HEAD_WRO_EN);
Emil Tantilov3d5c5202011-03-19 01:32:46 +0000346 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(i), regval);
347 }
348
Emil Tantilov7184b7c2011-03-18 08:18:22 +0000349 return 0;
350}
351
352/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700353 * ixgbe_init_hw_generic - Generic hardware initialization
Auke Kok9a799d72007-09-15 14:07:45 -0700354 * @hw: pointer to hardware structure
355 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700356 * Initialize the hardware by resetting the hardware, filling the bus info
Auke Kok9a799d72007-09-15 14:07:45 -0700357 * structure and media type, clears all on chip counters, initializes receive
358 * address registers, multicast table, VLAN filter table, calls routine to set
359 * up link and flow control settings, and leaves transmit and receive units
360 * disabled and uninitialized
361 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700362s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700363{
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000364 s32 status;
365
Auke Kok9a799d72007-09-15 14:07:45 -0700366 /* Reset the hardware */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000367 status = hw->mac.ops.reset_hw(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700368
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000369 if (status == 0) {
370 /* Start the HW */
371 status = hw->mac.ops.start_hw(hw);
372 }
Auke Kok9a799d72007-09-15 14:07:45 -0700373
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000374 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700375}
376
377/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700378 * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters
Auke Kok9a799d72007-09-15 14:07:45 -0700379 * @hw: pointer to hardware structure
380 *
381 * Clears all hardware statistics counters by reading them from the hardware
382 * Statistics counters are clear on read.
383 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700384s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700385{
386 u16 i = 0;
387
388 IXGBE_READ_REG(hw, IXGBE_CRCERRS);
389 IXGBE_READ_REG(hw, IXGBE_ILLERRC);
390 IXGBE_READ_REG(hw, IXGBE_ERRBC);
391 IXGBE_READ_REG(hw, IXGBE_MSPDC);
392 for (i = 0; i < 8; i++)
393 IXGBE_READ_REG(hw, IXGBE_MPC(i));
394
395 IXGBE_READ_REG(hw, IXGBE_MLFC);
396 IXGBE_READ_REG(hw, IXGBE_MRFC);
397 IXGBE_READ_REG(hw, IXGBE_RLEC);
398 IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Auke Kok9a799d72007-09-15 14:07:45 -0700399 IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Emil Tantilov667c7562011-02-26 06:40:05 +0000400 if (hw->mac.type >= ixgbe_mac_82599EB) {
401 IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
402 IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
403 } else {
404 IXGBE_READ_REG(hw, IXGBE_LXONRXC);
405 IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
406 }
Auke Kok9a799d72007-09-15 14:07:45 -0700407
408 for (i = 0; i < 8; i++) {
409 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700410 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000411 if (hw->mac.type >= ixgbe_mac_82599EB) {
412 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
413 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
414 } else {
415 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
416 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
417 }
Auke Kok9a799d72007-09-15 14:07:45 -0700418 }
Emil Tantilov667c7562011-02-26 06:40:05 +0000419 if (hw->mac.type >= ixgbe_mac_82599EB)
420 for (i = 0; i < 8; i++)
421 IXGBE_READ_REG(hw, IXGBE_PXON2OFFCNT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700422 IXGBE_READ_REG(hw, IXGBE_PRC64);
423 IXGBE_READ_REG(hw, IXGBE_PRC127);
424 IXGBE_READ_REG(hw, IXGBE_PRC255);
425 IXGBE_READ_REG(hw, IXGBE_PRC511);
426 IXGBE_READ_REG(hw, IXGBE_PRC1023);
427 IXGBE_READ_REG(hw, IXGBE_PRC1522);
428 IXGBE_READ_REG(hw, IXGBE_GPRC);
429 IXGBE_READ_REG(hw, IXGBE_BPRC);
430 IXGBE_READ_REG(hw, IXGBE_MPRC);
431 IXGBE_READ_REG(hw, IXGBE_GPTC);
432 IXGBE_READ_REG(hw, IXGBE_GORCL);
433 IXGBE_READ_REG(hw, IXGBE_GORCH);
434 IXGBE_READ_REG(hw, IXGBE_GOTCL);
435 IXGBE_READ_REG(hw, IXGBE_GOTCH);
Emil Tantilovf3116f62011-07-29 06:46:15 +0000436 if (hw->mac.type == ixgbe_mac_82598EB)
437 for (i = 0; i < 8; i++)
438 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700439 IXGBE_READ_REG(hw, IXGBE_RUC);
440 IXGBE_READ_REG(hw, IXGBE_RFC);
441 IXGBE_READ_REG(hw, IXGBE_ROC);
442 IXGBE_READ_REG(hw, IXGBE_RJC);
443 IXGBE_READ_REG(hw, IXGBE_MNGPRC);
444 IXGBE_READ_REG(hw, IXGBE_MNGPDC);
445 IXGBE_READ_REG(hw, IXGBE_MNGPTC);
446 IXGBE_READ_REG(hw, IXGBE_TORL);
447 IXGBE_READ_REG(hw, IXGBE_TORH);
448 IXGBE_READ_REG(hw, IXGBE_TPR);
449 IXGBE_READ_REG(hw, IXGBE_TPT);
450 IXGBE_READ_REG(hw, IXGBE_PTC64);
451 IXGBE_READ_REG(hw, IXGBE_PTC127);
452 IXGBE_READ_REG(hw, IXGBE_PTC255);
453 IXGBE_READ_REG(hw, IXGBE_PTC511);
454 IXGBE_READ_REG(hw, IXGBE_PTC1023);
455 IXGBE_READ_REG(hw, IXGBE_PTC1522);
456 IXGBE_READ_REG(hw, IXGBE_MPTC);
457 IXGBE_READ_REG(hw, IXGBE_BPTC);
458 for (i = 0; i < 16; i++) {
459 IXGBE_READ_REG(hw, IXGBE_QPRC(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700460 IXGBE_READ_REG(hw, IXGBE_QPTC(i));
Emil Tantilov667c7562011-02-26 06:40:05 +0000461 if (hw->mac.type >= ixgbe_mac_82599EB) {
462 IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
463 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i));
464 IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
465 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i));
466 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
467 } else {
468 IXGBE_READ_REG(hw, IXGBE_QBRC(i));
469 IXGBE_READ_REG(hw, IXGBE_QBTC(i));
470 }
Auke Kok9a799d72007-09-15 14:07:45 -0700471 }
472
Emil Tantilova3aeea02011-02-26 06:40:11 +0000473 if (hw->mac.type == ixgbe_mac_X540) {
474 if (hw->phy.id == 0)
475 hw->phy.ops.identify(hw);
Emil Tantilovc1085b12011-12-10 08:21:47 +0000476 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECL, MDIO_MMD_PCS, &i);
477 hw->phy.ops.read_reg(hw, IXGBE_PCRC8ECH, MDIO_MMD_PCS, &i);
478 hw->phy.ops.read_reg(hw, IXGBE_LDPCECL, MDIO_MMD_PCS, &i);
479 hw->phy.ops.read_reg(hw, IXGBE_LDPCECH, MDIO_MMD_PCS, &i);
Emil Tantilova3aeea02011-02-26 06:40:11 +0000480 }
481
Auke Kok9a799d72007-09-15 14:07:45 -0700482 return 0;
483}
484
485/**
Don Skidmore289700db2010-12-03 03:32:58 +0000486 * ixgbe_read_pba_string_generic - Reads part number string from EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700487 * @hw: pointer to hardware structure
Don Skidmore289700db2010-12-03 03:32:58 +0000488 * @pba_num: stores the part number string from the EEPROM
489 * @pba_num_size: part number string buffer length
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700490 *
Don Skidmore289700db2010-12-03 03:32:58 +0000491 * Reads the part number string from the EEPROM.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700492 **/
Don Skidmore289700db2010-12-03 03:32:58 +0000493s32 ixgbe_read_pba_string_generic(struct ixgbe_hw *hw, u8 *pba_num,
494 u32 pba_num_size)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700495{
496 s32 ret_val;
497 u16 data;
Don Skidmore289700db2010-12-03 03:32:58 +0000498 u16 pba_ptr;
499 u16 offset;
500 u16 length;
501
502 if (pba_num == NULL) {
503 hw_dbg(hw, "PBA string buffer was null\n");
504 return IXGBE_ERR_INVALID_ARGUMENT;
505 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700506
507 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data);
508 if (ret_val) {
509 hw_dbg(hw, "NVM Read Error\n");
510 return ret_val;
511 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700512
Don Skidmore289700db2010-12-03 03:32:58 +0000513 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &pba_ptr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700514 if (ret_val) {
515 hw_dbg(hw, "NVM Read Error\n");
516 return ret_val;
517 }
Don Skidmore289700db2010-12-03 03:32:58 +0000518
519 /*
520 * if data is not ptr guard the PBA must be in legacy format which
521 * means pba_ptr is actually our second data word for the PBA number
522 * and we can decode it into an ascii string
523 */
524 if (data != IXGBE_PBANUM_PTR_GUARD) {
525 hw_dbg(hw, "NVM PBA number is not stored as string\n");
526
527 /* we will need 11 characters to store the PBA */
528 if (pba_num_size < 11) {
529 hw_dbg(hw, "PBA string buffer too small\n");
530 return IXGBE_ERR_NO_SPACE;
531 }
532
533 /* extract hex string from data and pba_ptr */
534 pba_num[0] = (data >> 12) & 0xF;
535 pba_num[1] = (data >> 8) & 0xF;
536 pba_num[2] = (data >> 4) & 0xF;
537 pba_num[3] = data & 0xF;
538 pba_num[4] = (pba_ptr >> 12) & 0xF;
539 pba_num[5] = (pba_ptr >> 8) & 0xF;
540 pba_num[6] = '-';
541 pba_num[7] = 0;
542 pba_num[8] = (pba_ptr >> 4) & 0xF;
543 pba_num[9] = pba_ptr & 0xF;
544
545 /* put a null character on the end of our string */
546 pba_num[10] = '\0';
547
548 /* switch all the data but the '-' to hex char */
549 for (offset = 0; offset < 10; offset++) {
550 if (pba_num[offset] < 0xA)
551 pba_num[offset] += '0';
552 else if (pba_num[offset] < 0x10)
553 pba_num[offset] += 'A' - 0xA;
554 }
555
556 return 0;
557 }
558
559 ret_val = hw->eeprom.ops.read(hw, pba_ptr, &length);
560 if (ret_val) {
561 hw_dbg(hw, "NVM Read Error\n");
562 return ret_val;
563 }
564
565 if (length == 0xFFFF || length == 0) {
566 hw_dbg(hw, "NVM PBA number section invalid length\n");
567 return IXGBE_ERR_PBA_SECTION;
568 }
569
570 /* check if pba_num buffer is big enough */
571 if (pba_num_size < (((u32)length * 2) - 1)) {
572 hw_dbg(hw, "PBA string buffer too small\n");
573 return IXGBE_ERR_NO_SPACE;
574 }
575
576 /* trim pba length from start of string */
577 pba_ptr++;
578 length--;
579
580 for (offset = 0; offset < length; offset++) {
581 ret_val = hw->eeprom.ops.read(hw, pba_ptr + offset, &data);
582 if (ret_val) {
583 hw_dbg(hw, "NVM Read Error\n");
584 return ret_val;
585 }
586 pba_num[offset * 2] = (u8)(data >> 8);
587 pba_num[(offset * 2) + 1] = (u8)(data & 0xFF);
588 }
589 pba_num[offset * 2] = '\0';
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700590
591 return 0;
592}
593
594/**
595 * ixgbe_get_mac_addr_generic - Generic get MAC address
Auke Kok9a799d72007-09-15 14:07:45 -0700596 * @hw: pointer to hardware structure
597 * @mac_addr: Adapter MAC address
598 *
599 * Reads the adapter's MAC address from first Receive Address Register (RAR0)
600 * A reset of the adapter must be performed prior to calling this function
601 * in order for the MAC address to have been loaded from the EEPROM into RAR0
602 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700603s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr)
Auke Kok9a799d72007-09-15 14:07:45 -0700604{
605 u32 rar_high;
606 u32 rar_low;
607 u16 i;
608
609 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0));
610 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0));
611
612 for (i = 0; i < 4; i++)
613 mac_addr[i] = (u8)(rar_low >> (i*8));
614
615 for (i = 0; i < 2; i++)
616 mac_addr[i+4] = (u8)(rar_high >> (i*8));
617
618 return 0;
619}
620
Jacob Kelleref1889d2013-02-15 09:18:15 +0000621enum ixgbe_bus_width ixgbe_convert_bus_width(u16 link_status)
622{
623 switch (link_status & IXGBE_PCI_LINK_WIDTH) {
624 case IXGBE_PCI_LINK_WIDTH_1:
625 return ixgbe_bus_width_pcie_x1;
626 case IXGBE_PCI_LINK_WIDTH_2:
627 return ixgbe_bus_width_pcie_x2;
628 case IXGBE_PCI_LINK_WIDTH_4:
629 return ixgbe_bus_width_pcie_x4;
630 case IXGBE_PCI_LINK_WIDTH_8:
631 return ixgbe_bus_width_pcie_x8;
632 default:
633 return ixgbe_bus_width_unknown;
634 }
635}
636
637enum ixgbe_bus_speed ixgbe_convert_bus_speed(u16 link_status)
638{
639 switch (link_status & IXGBE_PCI_LINK_SPEED) {
640 case IXGBE_PCI_LINK_SPEED_2500:
641 return ixgbe_bus_speed_2500;
642 case IXGBE_PCI_LINK_SPEED_5000:
643 return ixgbe_bus_speed_5000;
644 case IXGBE_PCI_LINK_SPEED_8000:
645 return ixgbe_bus_speed_8000;
646 default:
647 return ixgbe_bus_speed_unknown;
648 }
649}
650
Auke Kok9a799d72007-09-15 14:07:45 -0700651/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000652 * ixgbe_get_bus_info_generic - Generic set PCI bus info
653 * @hw: pointer to hardware structure
654 *
655 * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
656 **/
657s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw)
658{
659 struct ixgbe_adapter *adapter = hw->back;
660 struct ixgbe_mac_info *mac = &hw->mac;
661 u16 link_status;
662
663 hw->bus.type = ixgbe_bus_type_pci_express;
664
665 /* Get the negotiated link width and speed from PCI config space */
666 pci_read_config_word(adapter->pdev, IXGBE_PCI_LINK_STATUS,
667 &link_status);
668
Jacob Kelleref1889d2013-02-15 09:18:15 +0000669 hw->bus.width = ixgbe_convert_bus_width(link_status);
670 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000671
672 mac->ops.set_lan_id(hw);
673
674 return 0;
675}
676
677/**
678 * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices
679 * @hw: pointer to the HW structure
680 *
681 * Determines the LAN function id by reading memory-mapped registers
682 * and swaps the port value if requested.
683 **/
684void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw)
685{
686 struct ixgbe_bus_info *bus = &hw->bus;
687 u32 reg;
688
689 reg = IXGBE_READ_REG(hw, IXGBE_STATUS);
690 bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT;
691 bus->lan_id = bus->func;
692
693 /* check for a port swap */
694 reg = IXGBE_READ_REG(hw, IXGBE_FACTPS);
695 if (reg & IXGBE_FACTPS_LFS)
696 bus->func ^= 0x1;
697}
698
699/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700700 * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units
Auke Kok9a799d72007-09-15 14:07:45 -0700701 * @hw: pointer to hardware structure
702 *
703 * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
704 * disables transmit and receive units. The adapter_stopped flag is used by
705 * the shared code and drivers to determine if the adapter is in a stopped
706 * state and should not touch the hardware.
707 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700708s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700709{
Auke Kok9a799d72007-09-15 14:07:45 -0700710 u32 reg_val;
711 u16 i;
712
713 /*
714 * Set the adapter_stopped flag so other driver functions stop touching
715 * the hardware
716 */
717 hw->adapter_stopped = true;
718
719 /* Disable the receive unit */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000720 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, 0);
Auke Kok9a799d72007-09-15 14:07:45 -0700721
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000722 /* Clear interrupt mask to stop interrupts from being generated */
Auke Kok9a799d72007-09-15 14:07:45 -0700723 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
724
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000725 /* Clear any pending interrupts, flush previous writes */
Auke Kok9a799d72007-09-15 14:07:45 -0700726 IXGBE_READ_REG(hw, IXGBE_EICR);
727
728 /* Disable the transmit unit. Each queue must be disabled. */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000729 for (i = 0; i < hw->mac.max_tx_queues; i++)
730 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), IXGBE_TXDCTL_SWFLSH);
731
732 /* Disable the receive unit by stopping each queue */
733 for (i = 0; i < hw->mac.max_rx_queues; i++) {
734 reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
735 reg_val &= ~IXGBE_RXDCTL_ENABLE;
736 reg_val |= IXGBE_RXDCTL_SWFLSH;
737 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val);
Auke Kok9a799d72007-09-15 14:07:45 -0700738 }
739
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000740 /* flush all queues disables */
741 IXGBE_WRITE_FLUSH(hw);
742 usleep_range(1000, 2000);
743
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700744 /*
745 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
746 * access and verify no pending requests
747 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +0000748 return ixgbe_disable_pcie_master(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700749}
750
751/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700752 * ixgbe_led_on_generic - Turns on the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700753 * @hw: pointer to hardware structure
754 * @index: led number to turn on
755 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700756s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700757{
758 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
759
760 /* To turn on the LED, set mode to ON. */
761 led_reg &= ~IXGBE_LED_MODE_MASK(index);
762 led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index);
763 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700764 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700765
766 return 0;
767}
768
769/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700770 * ixgbe_led_off_generic - Turns off the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700771 * @hw: pointer to hardware structure
772 * @index: led number to turn off
773 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700774s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700775{
776 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
777
778 /* To turn off the LED, set mode to OFF. */
779 led_reg &= ~IXGBE_LED_MODE_MASK(index);
780 led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index);
781 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700782 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700783
784 return 0;
785}
786
Auke Kok9a799d72007-09-15 14:07:45 -0700787/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700788 * ixgbe_init_eeprom_params_generic - Initialize EEPROM params
Auke Kok9a799d72007-09-15 14:07:45 -0700789 * @hw: pointer to hardware structure
790 *
791 * Initializes the EEPROM parameters ixgbe_eeprom_info within the
792 * ixgbe_hw struct in order to set up EEPROM access.
793 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700794s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700795{
796 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
797 u32 eec;
798 u16 eeprom_size;
799
800 if (eeprom->type == ixgbe_eeprom_uninitialized) {
801 eeprom->type = ixgbe_eeprom_none;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700802 /* Set default semaphore delay to 10ms which is a well
803 * tested value */
804 eeprom->semaphore_delay = 10;
Emil Tantilov68c70052011-04-20 08:49:06 +0000805 /* Clear EEPROM page size, it will be initialized as needed */
806 eeprom->word_page_size = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700807
808 /*
809 * Check for EEPROM present first.
810 * If not present leave as none
811 */
812 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
813 if (eec & IXGBE_EEC_PRES) {
814 eeprom->type = ixgbe_eeprom_spi;
815
816 /*
817 * SPI EEPROM is assumed here. This code would need to
818 * change if a future EEPROM is not SPI.
819 */
820 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
821 IXGBE_EEC_SIZE_SHIFT);
822 eeprom->word_size = 1 << (eeprom_size +
823 IXGBE_EEPROM_WORD_SIZE_SHIFT);
824 }
825
826 if (eec & IXGBE_EEC_ADDR_SIZE)
827 eeprom->address_bits = 16;
828 else
829 eeprom->address_bits = 8;
830 hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: "
831 "%d\n", eeprom->type, eeprom->word_size,
832 eeprom->address_bits);
833 }
834
835 return 0;
836}
837
838/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000839 * ixgbe_write_eeprom_buffer_bit_bang_generic - Write EEPROM using bit-bang
840 * @hw: pointer to hardware structure
841 * @offset: offset within the EEPROM to write
842 * @words: number of words
843 * @data: 16 bit word(s) to write to EEPROM
844 *
845 * Reads 16 bit word(s) from EEPROM through bit-bang method
846 **/
847s32 ixgbe_write_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
848 u16 words, u16 *data)
849{
850 s32 status = 0;
851 u16 i, count;
852
853 hw->eeprom.ops.init_params(hw);
854
855 if (words == 0) {
856 status = IXGBE_ERR_INVALID_ARGUMENT;
857 goto out;
858 }
859
860 if (offset + words > hw->eeprom.word_size) {
861 status = IXGBE_ERR_EEPROM;
862 goto out;
863 }
864
865 /*
866 * The EEPROM page size cannot be queried from the chip. We do lazy
867 * initialization. It is worth to do that when we write large buffer.
868 */
869 if ((hw->eeprom.word_page_size == 0) &&
870 (words > IXGBE_EEPROM_PAGE_SIZE_MAX))
871 ixgbe_detect_eeprom_page_size_generic(hw, offset);
872
873 /*
874 * We cannot hold synchronization semaphores for too long
875 * to avoid other entity starvation. However it is more efficient
876 * to read in bursts than synchronizing access for each word.
877 */
878 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
879 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
880 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
881 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset + i,
882 count, &data[i]);
883
884 if (status != 0)
885 break;
886 }
887
888out:
889 return status;
890}
891
892/**
893 * ixgbe_write_eeprom_buffer_bit_bang - Writes 16 bit word(s) to EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000894 * @hw: pointer to hardware structure
895 * @offset: offset within the EEPROM to be written to
Emil Tantilov68c70052011-04-20 08:49:06 +0000896 * @words: number of word(s)
897 * @data: 16 bit word(s) to be written to the EEPROM
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000898 *
899 * If ixgbe_eeprom_update_checksum is not called after this function, the
900 * EEPROM will most likely contain an invalid checksum.
901 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000902static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
903 u16 words, u16 *data)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000904{
905 s32 status;
Emil Tantilov68c70052011-04-20 08:49:06 +0000906 u16 word;
907 u16 page_size;
908 u16 i;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000909 u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI;
910
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000911 /* Prepare the EEPROM for writing */
912 status = ixgbe_acquire_eeprom(hw);
913
914 if (status == 0) {
915 if (ixgbe_ready_eeprom(hw) != 0) {
916 ixgbe_release_eeprom(hw);
917 status = IXGBE_ERR_EEPROM;
918 }
919 }
920
921 if (status == 0) {
Emil Tantilov68c70052011-04-20 08:49:06 +0000922 for (i = 0; i < words; i++) {
923 ixgbe_standby_eeprom(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000924
Emil Tantilov68c70052011-04-20 08:49:06 +0000925 /* Send the WRITE ENABLE command (8 bit opcode ) */
926 ixgbe_shift_out_eeprom_bits(hw,
927 IXGBE_EEPROM_WREN_OPCODE_SPI,
928 IXGBE_EEPROM_OPCODE_BITS);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000929
Emil Tantilov68c70052011-04-20 08:49:06 +0000930 ixgbe_standby_eeprom(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000931
Emil Tantilov68c70052011-04-20 08:49:06 +0000932 /*
933 * Some SPI eeproms use the 8th address bit embedded
934 * in the opcode
935 */
936 if ((hw->eeprom.address_bits == 8) &&
937 ((offset + i) >= 128))
938 write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000939
Emil Tantilov68c70052011-04-20 08:49:06 +0000940 /* Send the Write command (8-bit opcode + addr) */
941 ixgbe_shift_out_eeprom_bits(hw, write_opcode,
942 IXGBE_EEPROM_OPCODE_BITS);
943 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
944 hw->eeprom.address_bits);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000945
Emil Tantilov68c70052011-04-20 08:49:06 +0000946 page_size = hw->eeprom.word_page_size;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000947
Emil Tantilov68c70052011-04-20 08:49:06 +0000948 /* Send the data in burst via SPI*/
949 do {
950 word = data[i];
951 word = (word >> 8) | (word << 8);
952 ixgbe_shift_out_eeprom_bits(hw, word, 16);
953
954 if (page_size == 0)
955 break;
956
957 /* do not wrap around page */
958 if (((offset + i) & (page_size - 1)) ==
959 (page_size - 1))
960 break;
961 } while (++i < words);
962
963 ixgbe_standby_eeprom(hw);
964 usleep_range(10000, 20000);
965 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000966 /* Done with writing - release the EEPROM */
967 ixgbe_release_eeprom(hw);
968 }
969
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000970 return status;
971}
972
973/**
Emil Tantilov68c70052011-04-20 08:49:06 +0000974 * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700975 * @hw: pointer to hardware structure
Emil Tantilov68c70052011-04-20 08:49:06 +0000976 * @offset: offset within the EEPROM to be written to
977 * @data: 16 bit word to be written to the EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700978 *
Emil Tantilov68c70052011-04-20 08:49:06 +0000979 * If ixgbe_eeprom_update_checksum is not called after this function, the
980 * EEPROM will most likely contain an invalid checksum.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700981 **/
Emil Tantilov68c70052011-04-20 08:49:06 +0000982s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700983{
984 s32 status;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700985
986 hw->eeprom.ops.init_params(hw);
987
988 if (offset >= hw->eeprom.word_size) {
989 status = IXGBE_ERR_EEPROM;
990 goto out;
991 }
992
Emil Tantilov68c70052011-04-20 08:49:06 +0000993 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset, 1, &data);
994
995out:
996 return status;
997}
998
999/**
1000 * ixgbe_read_eeprom_buffer_bit_bang_generic - Read EEPROM using bit-bang
1001 * @hw: pointer to hardware structure
1002 * @offset: offset within the EEPROM to be read
1003 * @words: number of word(s)
1004 * @data: read 16 bit words(s) from EEPROM
1005 *
1006 * Reads 16 bit word(s) from EEPROM through bit-bang method
1007 **/
1008s32 ixgbe_read_eeprom_buffer_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1009 u16 words, u16 *data)
1010{
1011 s32 status = 0;
1012 u16 i, count;
1013
1014 hw->eeprom.ops.init_params(hw);
1015
1016 if (words == 0) {
1017 status = IXGBE_ERR_INVALID_ARGUMENT;
1018 goto out;
1019 }
1020
1021 if (offset + words > hw->eeprom.word_size) {
1022 status = IXGBE_ERR_EEPROM;
1023 goto out;
1024 }
1025
1026 /*
1027 * We cannot hold synchronization semaphores for too long
1028 * to avoid other entity starvation. However it is more efficient
1029 * to read in bursts than synchronizing access for each word.
1030 */
1031 for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
1032 count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
1033 IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
1034
1035 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset + i,
1036 count, &data[i]);
1037
1038 if (status != 0)
1039 break;
1040 }
1041
1042out:
1043 return status;
1044}
1045
1046/**
1047 * ixgbe_read_eeprom_buffer_bit_bang - Read EEPROM using bit-bang
1048 * @hw: pointer to hardware structure
1049 * @offset: offset within the EEPROM to be read
1050 * @words: number of word(s)
1051 * @data: read 16 bit word(s) from EEPROM
1052 *
1053 * Reads 16 bit word(s) from EEPROM through bit-bang method
1054 **/
1055static s32 ixgbe_read_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
1056 u16 words, u16 *data)
1057{
1058 s32 status;
1059 u16 word_in;
1060 u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI;
1061 u16 i;
1062
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001063 /* Prepare the EEPROM for reading */
1064 status = ixgbe_acquire_eeprom(hw);
1065
1066 if (status == 0) {
1067 if (ixgbe_ready_eeprom(hw) != 0) {
1068 ixgbe_release_eeprom(hw);
1069 status = IXGBE_ERR_EEPROM;
1070 }
1071 }
1072
1073 if (status == 0) {
Emil Tantilov68c70052011-04-20 08:49:06 +00001074 for (i = 0; i < words; i++) {
1075 ixgbe_standby_eeprom(hw);
1076 /*
1077 * Some SPI eeproms use the 8th address bit embedded
1078 * in the opcode
1079 */
1080 if ((hw->eeprom.address_bits == 8) &&
1081 ((offset + i) >= 128))
1082 read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001083
Emil Tantilov68c70052011-04-20 08:49:06 +00001084 /* Send the READ command (opcode + addr) */
1085 ixgbe_shift_out_eeprom_bits(hw, read_opcode,
1086 IXGBE_EEPROM_OPCODE_BITS);
1087 ixgbe_shift_out_eeprom_bits(hw, (u16)((offset + i) * 2),
1088 hw->eeprom.address_bits);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001089
Emil Tantilov68c70052011-04-20 08:49:06 +00001090 /* Read the data. */
1091 word_in = ixgbe_shift_in_eeprom_bits(hw, 16);
1092 data[i] = (word_in >> 8) | (word_in << 8);
1093 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001094
1095 /* End this read operation */
1096 ixgbe_release_eeprom(hw);
1097 }
1098
Emil Tantilov68c70052011-04-20 08:49:06 +00001099 return status;
1100}
1101
1102/**
1103 * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang
1104 * @hw: pointer to hardware structure
1105 * @offset: offset within the EEPROM to be read
1106 * @data: read 16 bit value from EEPROM
1107 *
1108 * Reads 16 bit value from EEPROM through bit-bang method
1109 **/
1110s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
1111 u16 *data)
1112{
1113 s32 status;
1114
1115 hw->eeprom.ops.init_params(hw);
1116
1117 if (offset >= hw->eeprom.word_size) {
1118 status = IXGBE_ERR_EEPROM;
1119 goto out;
1120 }
1121
1122 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
1123
1124out:
1125 return status;
1126}
1127
1128/**
1129 * ixgbe_read_eerd_buffer_generic - Read EEPROM word(s) using EERD
1130 * @hw: pointer to hardware structure
1131 * @offset: offset of word in the EEPROM to read
1132 * @words: number of word(s)
1133 * @data: 16 bit word(s) from the EEPROM
1134 *
1135 * Reads a 16 bit word(s) from the EEPROM using the EERD register.
1136 **/
1137s32 ixgbe_read_eerd_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1138 u16 words, u16 *data)
1139{
1140 u32 eerd;
1141 s32 status = 0;
1142 u32 i;
1143
1144 hw->eeprom.ops.init_params(hw);
1145
1146 if (words == 0) {
1147 status = IXGBE_ERR_INVALID_ARGUMENT;
1148 goto out;
1149 }
1150
1151 if (offset >= hw->eeprom.word_size) {
1152 status = IXGBE_ERR_EEPROM;
1153 goto out;
1154 }
1155
1156 for (i = 0; i < words; i++) {
Emil Tantilovd0111572013-02-05 09:43:26 +00001157 eerd = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
Emil Tantilov68c70052011-04-20 08:49:06 +00001158 IXGBE_EEPROM_RW_REG_START;
1159
1160 IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd);
1161 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_READ);
1162
1163 if (status == 0) {
1164 data[i] = (IXGBE_READ_REG(hw, IXGBE_EERD) >>
1165 IXGBE_EEPROM_RW_REG_DATA);
1166 } else {
1167 hw_dbg(hw, "Eeprom read timed out\n");
1168 goto out;
1169 }
1170 }
1171out:
1172 return status;
1173}
1174
1175/**
1176 * ixgbe_detect_eeprom_page_size_generic - Detect EEPROM page size
1177 * @hw: pointer to hardware structure
1178 * @offset: offset within the EEPROM to be used as a scratch pad
1179 *
1180 * Discover EEPROM page size by writing marching data at given offset.
1181 * This function is called only when we are writing a new large buffer
1182 * at given offset so the data would be overwritten anyway.
1183 **/
1184static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
1185 u16 offset)
1186{
1187 u16 data[IXGBE_EEPROM_PAGE_SIZE_MAX];
1188 s32 status = 0;
1189 u16 i;
1190
1191 for (i = 0; i < IXGBE_EEPROM_PAGE_SIZE_MAX; i++)
1192 data[i] = i;
1193
1194 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX;
1195 status = ixgbe_write_eeprom_buffer_bit_bang(hw, offset,
1196 IXGBE_EEPROM_PAGE_SIZE_MAX, data);
1197 hw->eeprom.word_page_size = 0;
1198 if (status != 0)
1199 goto out;
1200
1201 status = ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data);
1202 if (status != 0)
1203 goto out;
1204
1205 /*
1206 * When writing in burst more than the actual page size
1207 * EEPROM address wraps around current page.
1208 */
1209 hw->eeprom.word_page_size = IXGBE_EEPROM_PAGE_SIZE_MAX - data[0];
1210
1211 hw_dbg(hw, "Detected EEPROM page size = %d words.",
1212 hw->eeprom.word_page_size);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001213out:
1214 return status;
1215}
1216
1217/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001218 * ixgbe_read_eerd_generic - Read EEPROM word using EERD
Auke Kok9a799d72007-09-15 14:07:45 -07001219 * @hw: pointer to hardware structure
1220 * @offset: offset of word in the EEPROM to read
1221 * @data: word read from the EEPROM
1222 *
1223 * Reads a 16 bit word from the EEPROM using the EERD register.
1224 **/
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001225s32 ixgbe_read_eerd_generic(struct ixgbe_hw *hw, u16 offset, u16 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001226{
Emil Tantilov68c70052011-04-20 08:49:06 +00001227 return ixgbe_read_eerd_buffer_generic(hw, offset, 1, data);
1228}
1229
1230/**
1231 * ixgbe_write_eewr_buffer_generic - Write EEPROM word(s) using EEWR
1232 * @hw: pointer to hardware structure
1233 * @offset: offset of word in the EEPROM to write
1234 * @words: number of words
1235 * @data: word(s) write to the EEPROM
1236 *
1237 * Write a 16 bit word(s) to the EEPROM using the EEWR register.
1238 **/
1239s32 ixgbe_write_eewr_buffer_generic(struct ixgbe_hw *hw, u16 offset,
1240 u16 words, u16 *data)
1241{
1242 u32 eewr;
1243 s32 status = 0;
1244 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07001245
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001246 hw->eeprom.ops.init_params(hw);
1247
Emil Tantilov68c70052011-04-20 08:49:06 +00001248 if (words == 0) {
1249 status = IXGBE_ERR_INVALID_ARGUMENT;
1250 goto out;
1251 }
1252
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001253 if (offset >= hw->eeprom.word_size) {
1254 status = IXGBE_ERR_EEPROM;
1255 goto out;
1256 }
1257
Emil Tantilov68c70052011-04-20 08:49:06 +00001258 for (i = 0; i < words; i++) {
1259 eewr = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) |
1260 (data[i] << IXGBE_EEPROM_RW_REG_DATA) |
1261 IXGBE_EEPROM_RW_REG_START;
Auke Kok9a799d72007-09-15 14:07:45 -07001262
Emil Tantilov68c70052011-04-20 08:49:06 +00001263 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
1264 if (status != 0) {
1265 hw_dbg(hw, "Eeprom write EEWR timed out\n");
1266 goto out;
1267 }
Auke Kok9a799d72007-09-15 14:07:45 -07001268
Emil Tantilov68c70052011-04-20 08:49:06 +00001269 IXGBE_WRITE_REG(hw, IXGBE_EEWR, eewr);
1270
1271 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_WRITE);
1272 if (status != 0) {
1273 hw_dbg(hw, "Eeprom write EEWR timed out\n");
1274 goto out;
1275 }
1276 }
Auke Kok9a799d72007-09-15 14:07:45 -07001277
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001278out:
Auke Kok9a799d72007-09-15 14:07:45 -07001279 return status;
1280}
1281
1282/**
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001283 * ixgbe_write_eewr_generic - Write EEPROM word using EEWR
1284 * @hw: pointer to hardware structure
1285 * @offset: offset of word in the EEPROM to write
1286 * @data: word write to the EEPROM
1287 *
1288 * Write a 16 bit word to the EEPROM using the EEWR register.
1289 **/
1290s32 ixgbe_write_eewr_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
1291{
Emil Tantilov68c70052011-04-20 08:49:06 +00001292 return ixgbe_write_eewr_buffer_generic(hw, offset, 1, &data);
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001293}
1294
1295/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001296 * ixgbe_poll_eerd_eewr_done - Poll EERD read or EEWR write status
Auke Kok9a799d72007-09-15 14:07:45 -07001297 * @hw: pointer to hardware structure
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001298 * @ee_reg: EEPROM flag for polling
Auke Kok9a799d72007-09-15 14:07:45 -07001299 *
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001300 * Polls the status bit (bit 1) of the EERD or EEWR to determine when the
1301 * read or write is done respectively.
Auke Kok9a799d72007-09-15 14:07:45 -07001302 **/
Emil Tantiloveb9c3e32011-03-24 00:57:50 +00001303static s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg)
Auke Kok9a799d72007-09-15 14:07:45 -07001304{
1305 u32 i;
1306 u32 reg;
1307 s32 status = IXGBE_ERR_EEPROM;
1308
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00001309 for (i = 0; i < IXGBE_EERD_EEWR_ATTEMPTS; i++) {
1310 if (ee_reg == IXGBE_NVM_POLL_READ)
1311 reg = IXGBE_READ_REG(hw, IXGBE_EERD);
1312 else
1313 reg = IXGBE_READ_REG(hw, IXGBE_EEWR);
1314
1315 if (reg & IXGBE_EEPROM_RW_REG_DONE) {
Auke Kok9a799d72007-09-15 14:07:45 -07001316 status = 0;
1317 break;
1318 }
1319 udelay(5);
1320 }
1321 return status;
1322}
1323
1324/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001325 * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang
1326 * @hw: pointer to hardware structure
1327 *
1328 * Prepares EEPROM for access using bit-bang method. This function should
1329 * be called before issuing a command to the EEPROM.
1330 **/
1331static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw)
1332{
1333 s32 status = 0;
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001334 u32 eec;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001335 u32 i;
1336
Don Skidmore5e655102011-02-25 01:58:04 +00001337 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001338 status = IXGBE_ERR_SWFW_SYNC;
1339
1340 if (status == 0) {
1341 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1342
1343 /* Request EEPROM Access */
1344 eec |= IXGBE_EEC_REQ;
1345 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1346
1347 for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) {
1348 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1349 if (eec & IXGBE_EEC_GNT)
1350 break;
1351 udelay(5);
1352 }
1353
1354 /* Release if grant not acquired */
1355 if (!(eec & IXGBE_EEC_GNT)) {
1356 eec &= ~IXGBE_EEC_REQ;
1357 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1358 hw_dbg(hw, "Could not acquire EEPROM grant\n");
1359
Don Skidmore5e655102011-02-25 01:58:04 +00001360 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001361 status = IXGBE_ERR_EEPROM;
1362 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001363
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001364 /* Setup EEPROM for Read/Write */
1365 if (status == 0) {
1366 /* Clear CS and SK */
1367 eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK);
1368 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1369 IXGBE_WRITE_FLUSH(hw);
1370 udelay(1);
1371 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001372 }
1373 return status;
1374}
1375
1376/**
Auke Kok9a799d72007-09-15 14:07:45 -07001377 * ixgbe_get_eeprom_semaphore - Get hardware semaphore
1378 * @hw: pointer to hardware structure
1379 *
1380 * Sets the hardware semaphores so EEPROM access can occur for bit-bang method
1381 **/
1382static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw)
1383{
1384 s32 status = IXGBE_ERR_EEPROM;
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001385 u32 timeout = 2000;
Auke Kok9a799d72007-09-15 14:07:45 -07001386 u32 i;
1387 u32 swsm;
1388
Auke Kok9a799d72007-09-15 14:07:45 -07001389 /* Get SMBI software semaphore between device drivers first */
1390 for (i = 0; i < timeout; i++) {
1391 /*
1392 * If the SMBI bit is 0 when we read it, then the bit will be
1393 * set and we have the semaphore
1394 */
1395 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1396 if (!(swsm & IXGBE_SWSM_SMBI)) {
1397 status = 0;
1398 break;
1399 }
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001400 udelay(50);
Auke Kok9a799d72007-09-15 14:07:45 -07001401 }
1402
Emil Tantilov51275d32011-04-08 01:23:59 +00001403 if (i == timeout) {
1404 hw_dbg(hw, "Driver can't access the Eeprom - SMBI Semaphore "
1405 "not granted.\n");
1406 /*
1407 * this release is particularly important because our attempts
1408 * above to get the semaphore may have succeeded, and if there
1409 * was a timeout, we should unconditionally clear the semaphore
1410 * bits to free the driver to make progress
1411 */
1412 ixgbe_release_eeprom_semaphore(hw);
1413
1414 udelay(50);
1415 /*
1416 * one last try
1417 * If the SMBI bit is 0 when we read it, then the bit will be
1418 * set and we have the semaphore
1419 */
1420 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1421 if (!(swsm & IXGBE_SWSM_SMBI))
1422 status = 0;
1423 }
1424
Auke Kok9a799d72007-09-15 14:07:45 -07001425 /* Now get the semaphore between SW/FW through the SWESMBI bit */
1426 if (status == 0) {
1427 for (i = 0; i < timeout; i++) {
1428 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1429
1430 /* Set the SW EEPROM semaphore bit to request access */
1431 swsm |= IXGBE_SWSM_SWESMBI;
1432 IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm);
1433
1434 /*
1435 * If we set the bit successfully then we got the
1436 * semaphore.
1437 */
1438 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1439 if (swsm & IXGBE_SWSM_SWESMBI)
1440 break;
1441
1442 udelay(50);
1443 }
1444
1445 /*
1446 * Release semaphores and return error if SW EEPROM semaphore
1447 * was not granted because we don't have access to the EEPROM
1448 */
1449 if (i >= timeout) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001450 hw_dbg(hw, "SWESMBI Software EEPROM semaphore "
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001451 "not granted.\n");
Auke Kok9a799d72007-09-15 14:07:45 -07001452 ixgbe_release_eeprom_semaphore(hw);
1453 status = IXGBE_ERR_EEPROM;
1454 }
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001455 } else {
1456 hw_dbg(hw, "Software semaphore SMBI between device drivers "
1457 "not granted.\n");
Auke Kok9a799d72007-09-15 14:07:45 -07001458 }
1459
1460 return status;
1461}
1462
1463/**
1464 * ixgbe_release_eeprom_semaphore - Release hardware semaphore
1465 * @hw: pointer to hardware structure
1466 *
1467 * This function clears hardware semaphore bits.
1468 **/
1469static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw)
1470{
1471 u32 swsm;
1472
1473 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
1474
1475 /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */
1476 swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI);
1477 IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm);
Auke Kok3957d632007-10-31 15:22:10 -07001478 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001479}
1480
1481/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001482 * ixgbe_ready_eeprom - Polls for EEPROM ready
1483 * @hw: pointer to hardware structure
1484 **/
1485static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw)
1486{
1487 s32 status = 0;
1488 u16 i;
1489 u8 spi_stat_reg;
1490
1491 /*
1492 * Read "Status Register" repeatedly until the LSB is cleared. The
1493 * EEPROM will signal that the command has been completed by clearing
1494 * bit 0 of the internal status register. If it's not cleared within
1495 * 5 milliseconds, then error out.
1496 */
1497 for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) {
1498 ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI,
1499 IXGBE_EEPROM_OPCODE_BITS);
1500 spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8);
1501 if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI))
1502 break;
1503
1504 udelay(5);
1505 ixgbe_standby_eeprom(hw);
Joe Perches6403eab2011-06-03 11:51:20 +00001506 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001507
1508 /*
1509 * On some parts, SPI write time could vary from 0-20mSec on 3.3V
1510 * devices (and only 0-5mSec on 5V devices)
1511 */
1512 if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) {
1513 hw_dbg(hw, "SPI EEPROM Status error\n");
1514 status = IXGBE_ERR_EEPROM;
1515 }
1516
1517 return status;
1518}
1519
1520/**
1521 * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state
1522 * @hw: pointer to hardware structure
1523 **/
1524static void ixgbe_standby_eeprom(struct ixgbe_hw *hw)
1525{
1526 u32 eec;
1527
1528 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1529
1530 /* Toggle CS to flush commands */
1531 eec |= IXGBE_EEC_CS;
1532 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1533 IXGBE_WRITE_FLUSH(hw);
1534 udelay(1);
1535 eec &= ~IXGBE_EEC_CS;
1536 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1537 IXGBE_WRITE_FLUSH(hw);
1538 udelay(1);
1539}
1540
1541/**
1542 * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM.
1543 * @hw: pointer to hardware structure
1544 * @data: data to send to the EEPROM
1545 * @count: number of bits to shift out
1546 **/
1547static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
1548 u16 count)
1549{
1550 u32 eec;
1551 u32 mask;
1552 u32 i;
1553
1554 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1555
1556 /*
1557 * Mask is used to shift "count" bits of "data" out to the EEPROM
1558 * one bit at a time. Determine the starting bit based on count
1559 */
1560 mask = 0x01 << (count - 1);
1561
1562 for (i = 0; i < count; i++) {
1563 /*
1564 * A "1" is shifted out to the EEPROM by setting bit "DI" to a
1565 * "1", and then raising and then lowering the clock (the SK
1566 * bit controls the clock input to the EEPROM). A "0" is
1567 * shifted out to the EEPROM by setting "DI" to "0" and then
1568 * raising and then lowering the clock.
1569 */
1570 if (data & mask)
1571 eec |= IXGBE_EEC_DI;
1572 else
1573 eec &= ~IXGBE_EEC_DI;
1574
1575 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1576 IXGBE_WRITE_FLUSH(hw);
1577
1578 udelay(1);
1579
1580 ixgbe_raise_eeprom_clk(hw, &eec);
1581 ixgbe_lower_eeprom_clk(hw, &eec);
1582
1583 /*
1584 * Shift mask to signify next bit of data to shift in to the
1585 * EEPROM
1586 */
1587 mask = mask >> 1;
Joe Perches6403eab2011-06-03 11:51:20 +00001588 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001589
1590 /* We leave the "DI" bit set to "0" when we leave this routine. */
1591 eec &= ~IXGBE_EEC_DI;
1592 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1593 IXGBE_WRITE_FLUSH(hw);
1594}
1595
1596/**
1597 * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM
1598 * @hw: pointer to hardware structure
1599 **/
1600static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count)
1601{
1602 u32 eec;
1603 u32 i;
1604 u16 data = 0;
1605
1606 /*
1607 * In order to read a register from the EEPROM, we need to shift
1608 * 'count' bits in from the EEPROM. Bits are "shifted in" by raising
1609 * the clock input to the EEPROM (setting the SK bit), and then reading
1610 * the value of the "DO" bit. During this "shifting in" process the
1611 * "DI" bit should always be clear.
1612 */
1613 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1614
1615 eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI);
1616
1617 for (i = 0; i < count; i++) {
1618 data = data << 1;
1619 ixgbe_raise_eeprom_clk(hw, &eec);
1620
1621 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1622
1623 eec &= ~(IXGBE_EEC_DI);
1624 if (eec & IXGBE_EEC_DO)
1625 data |= 1;
1626
1627 ixgbe_lower_eeprom_clk(hw, &eec);
1628 }
1629
1630 return data;
1631}
1632
1633/**
1634 * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input.
1635 * @hw: pointer to hardware structure
1636 * @eec: EEC register's current value
1637 **/
1638static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1639{
1640 /*
1641 * Raise the clock input to the EEPROM
1642 * (setting the SK bit), then delay
1643 */
1644 *eec = *eec | IXGBE_EEC_SK;
1645 IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec);
1646 IXGBE_WRITE_FLUSH(hw);
1647 udelay(1);
1648}
1649
1650/**
1651 * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input.
1652 * @hw: pointer to hardware structure
1653 * @eecd: EECD's current value
1654 **/
1655static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1656{
1657 /*
1658 * Lower the clock input to the EEPROM (clearing the SK bit), then
1659 * delay
1660 */
1661 *eec = *eec & ~IXGBE_EEC_SK;
1662 IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec);
1663 IXGBE_WRITE_FLUSH(hw);
1664 udelay(1);
1665}
1666
1667/**
1668 * ixgbe_release_eeprom - Release EEPROM, release semaphores
1669 * @hw: pointer to hardware structure
1670 **/
1671static void ixgbe_release_eeprom(struct ixgbe_hw *hw)
1672{
1673 u32 eec;
1674
1675 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1676
1677 eec |= IXGBE_EEC_CS; /* Pull CS high */
1678 eec &= ~IXGBE_EEC_SK; /* Lower SCK */
1679
1680 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1681 IXGBE_WRITE_FLUSH(hw);
1682
1683 udelay(1);
1684
1685 /* Stop requesting EEPROM access */
1686 eec &= ~IXGBE_EEC_REQ;
1687 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1688
Don Skidmore90827992011-03-05 18:59:20 -08001689 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001690
Don Skidmore032b4322011-03-18 09:32:53 +00001691 /*
1692 * Delay before attempt to obtain semaphore again to allow FW
1693 * access. semaphore_delay is in ms we need us for usleep_range
1694 */
1695 usleep_range(hw->eeprom.semaphore_delay * 1000,
1696 hw->eeprom.semaphore_delay * 2000);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001697}
1698
1699/**
Emil Tantilovdbf893e2011-02-08 09:42:41 +00001700 * ixgbe_calc_eeprom_checksum_generic - Calculates and returns the checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001701 * @hw: pointer to hardware structure
1702 **/
Don Skidmorea391f1d2010-11-16 19:27:15 -08001703u16 ixgbe_calc_eeprom_checksum_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001704{
1705 u16 i;
1706 u16 j;
1707 u16 checksum = 0;
1708 u16 length = 0;
1709 u16 pointer = 0;
1710 u16 word = 0;
1711
1712 /* Include 0x0-0x3F in the checksum */
1713 for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001714 if (hw->eeprom.ops.read(hw, i, &word) != 0) {
Auke Kok9a799d72007-09-15 14:07:45 -07001715 hw_dbg(hw, "EEPROM read failed\n");
1716 break;
1717 }
1718 checksum += word;
1719 }
1720
1721 /* Include all data from pointers except for the fw pointer */
1722 for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001723 hw->eeprom.ops.read(hw, i, &pointer);
Auke Kok9a799d72007-09-15 14:07:45 -07001724
1725 /* Make sure the pointer seems valid */
1726 if (pointer != 0xFFFF && pointer != 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001727 hw->eeprom.ops.read(hw, pointer, &length);
Auke Kok9a799d72007-09-15 14:07:45 -07001728
1729 if (length != 0xFFFF && length != 0) {
1730 for (j = pointer+1; j <= pointer+length; j++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001731 hw->eeprom.ops.read(hw, j, &word);
Auke Kok9a799d72007-09-15 14:07:45 -07001732 checksum += word;
1733 }
1734 }
1735 }
1736 }
1737
1738 checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1739
1740 return checksum;
1741}
1742
1743/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001744 * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001745 * @hw: pointer to hardware structure
1746 * @checksum_val: calculated checksum
1747 *
1748 * Performs checksum calculation and validates the EEPROM checksum. If the
1749 * caller does not need checksum_val, the value can be NULL.
1750 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001751s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw,
1752 u16 *checksum_val)
Auke Kok9a799d72007-09-15 14:07:45 -07001753{
1754 s32 status;
1755 u16 checksum;
1756 u16 read_checksum = 0;
1757
1758 /*
1759 * Read the first word from the EEPROM. If this times out or fails, do
1760 * not continue or we could be in for a very long wait while every
1761 * EEPROM read fails
1762 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001763 status = hw->eeprom.ops.read(hw, 0, &checksum);
Auke Kok9a799d72007-09-15 14:07:45 -07001764
1765 if (status == 0) {
Don Skidmorea391f1d2010-11-16 19:27:15 -08001766 checksum = hw->eeprom.ops.calc_checksum(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001767
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001768 hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum);
Auke Kok9a799d72007-09-15 14:07:45 -07001769
1770 /*
1771 * Verify read checksum from EEPROM is the same as
1772 * calculated checksum
1773 */
1774 if (read_checksum != checksum)
1775 status = IXGBE_ERR_EEPROM_CHECKSUM;
1776
1777 /* If the user cares, return the calculated checksum */
1778 if (checksum_val)
1779 *checksum_val = checksum;
1780 } else {
1781 hw_dbg(hw, "EEPROM read failed\n");
1782 }
1783
1784 return status;
1785}
1786
1787/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001788 * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum
1789 * @hw: pointer to hardware structure
1790 **/
1791s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw)
1792{
1793 s32 status;
1794 u16 checksum;
1795
1796 /*
1797 * Read the first word from the EEPROM. If this times out or fails, do
1798 * not continue or we could be in for a very long wait while every
1799 * EEPROM read fails
1800 */
1801 status = hw->eeprom.ops.read(hw, 0, &checksum);
1802
1803 if (status == 0) {
Don Skidmorea391f1d2010-11-16 19:27:15 -08001804 checksum = hw->eeprom.ops.calc_checksum(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001805 status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM,
Emil Tantilov8c7bea32011-02-19 08:43:44 +00001806 checksum);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001807 } else {
1808 hw_dbg(hw, "EEPROM read failed\n");
1809 }
1810
1811 return status;
1812}
1813
1814/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001815 * ixgbe_set_rar_generic - Set Rx address register
Auke Kok9a799d72007-09-15 14:07:45 -07001816 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07001817 * @index: Receive address register to write
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001818 * @addr: Address to put into receive address register
1819 * @vmdq: VMDq "set" or "pool" index
Auke Kok9a799d72007-09-15 14:07:45 -07001820 * @enable_addr: set flag that address is active
1821 *
1822 * Puts an ethernet address into a receive address register.
1823 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001824s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
1825 u32 enable_addr)
Auke Kok9a799d72007-09-15 14:07:45 -07001826{
1827 u32 rar_low, rar_high;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001828 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001829
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001830 /* Make sure we are using a valid rar index range */
1831 if (index >= rar_entries) {
1832 hw_dbg(hw, "RAR index %d is out of range.\n", index);
1833 return IXGBE_ERR_INVALID_ARGUMENT;
1834 }
1835
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001836 /* setup VMDq pool selection before this RAR gets enabled */
1837 hw->mac.ops.set_vmdq(hw, index, vmdq);
1838
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001839 /*
1840 * HW expects these in little endian so we reverse the byte
1841 * order from network order (big endian) to little endian
1842 */
1843 rar_low = ((u32)addr[0] |
1844 ((u32)addr[1] << 8) |
1845 ((u32)addr[2] << 16) |
1846 ((u32)addr[3] << 24));
1847 /*
1848 * Some parts put the VMDq setting in the extra RAH bits,
1849 * so save everything except the lower 16 bits that hold part
1850 * of the address and the address valid bit.
1851 */
1852 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1853 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1854 rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8));
Auke Kok9a799d72007-09-15 14:07:45 -07001855
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001856 if (enable_addr != 0)
1857 rar_high |= IXGBE_RAH_AV;
Auke Kok9a799d72007-09-15 14:07:45 -07001858
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001859 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low);
1860 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
Auke Kok9a799d72007-09-15 14:07:45 -07001861
1862 return 0;
1863}
1864
1865/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001866 * ixgbe_clear_rar_generic - Remove Rx address register
1867 * @hw: pointer to hardware structure
1868 * @index: Receive address register to write
1869 *
1870 * Clears an ethernet address from a receive address register.
1871 **/
1872s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index)
1873{
1874 u32 rar_high;
1875 u32 rar_entries = hw->mac.num_rar_entries;
1876
1877 /* Make sure we are using a valid rar index range */
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001878 if (index >= rar_entries) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001879 hw_dbg(hw, "RAR index %d is out of range.\n", index);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001880 return IXGBE_ERR_INVALID_ARGUMENT;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001881 }
1882
Emil Tantilovc700f4e2011-02-17 11:34:58 +00001883 /*
1884 * Some parts put the VMDq setting in the extra RAH bits,
1885 * so save everything except the lower 16 bits that hold part
1886 * of the address and the address valid bit.
1887 */
1888 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1889 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1890
1891 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0);
1892 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1893
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001894 /* clear VMDq pool/queue selection for this RAR */
1895 hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL);
1896
1897 return 0;
1898}
1899
1900/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001901 * ixgbe_init_rx_addrs_generic - Initializes receive address filters.
Auke Kok9a799d72007-09-15 14:07:45 -07001902 * @hw: pointer to hardware structure
1903 *
1904 * Places the MAC address in receive address register 0 and clears the rest
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001905 * of the receive address registers. Clears the multicast table. Assumes
Auke Kok9a799d72007-09-15 14:07:45 -07001906 * the receiver is in reset when the routine is called.
1907 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001908s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001909{
1910 u32 i;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001911 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001912
1913 /*
1914 * If the current mac address is valid, assume it is a software override
1915 * to the permanent address.
1916 * Otherwise, use the permanent address from the eeprom.
1917 */
Joe Perchesf8ebc682012-10-24 17:19:02 +00001918 if (!is_valid_ether_addr(hw->mac.addr)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001919 /* Get the MAC address from the RAR0 for later reference */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001920 hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001921
hartleysce7194d2010-01-05 06:56:52 +00001922 hw_dbg(hw, " Keeping Current RAR0 Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001923 } else {
1924 /* Setup the receive address. */
1925 hw_dbg(hw, "Overriding MAC Address in RAR[0]\n");
hartleysce7194d2010-01-05 06:56:52 +00001926 hw_dbg(hw, " New MAC Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001927
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001928 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
Alexander Duyck96cc6372011-01-19 18:33:05 +00001929
1930 /* clear VMDq pool/queue selection for RAR 0 */
1931 hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL);
Auke Kok9a799d72007-09-15 14:07:45 -07001932 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001933 hw->addr_ctrl.overflow_promisc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001934
1935 hw->addr_ctrl.rar_used_count = 1;
1936
1937 /* Zero out the other receive addresses. */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001938 hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07001939 for (i = 1; i < rar_entries; i++) {
1940 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
1941 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
1942 }
1943
1944 /* Clear the MTA */
Auke Kok9a799d72007-09-15 14:07:45 -07001945 hw->addr_ctrl.mta_in_use = 0;
1946 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
1947
1948 hw_dbg(hw, " Clearing MTA\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001949 for (i = 0; i < hw->mac.mcft_size; i++)
Auke Kok9a799d72007-09-15 14:07:45 -07001950 IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0);
1951
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001952 if (hw->mac.ops.init_uta_tables)
1953 hw->mac.ops.init_uta_tables(hw);
1954
Auke Kok9a799d72007-09-15 14:07:45 -07001955 return 0;
1956}
1957
1958/**
1959 * ixgbe_mta_vector - Determines bit-vector in multicast table to set
1960 * @hw: pointer to hardware structure
1961 * @mc_addr: the multicast address
1962 *
1963 * Extracts the 12 bits, from a multicast address, to determine which
1964 * bit-vector to set in the multicast table. The hardware uses 12 bits, from
1965 * incoming rx multicast addresses, to determine the bit-vector to check in
1966 * the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001967 * by the MO field of the MCSTCTRL. The MO field is set during initialization
Auke Kok9a799d72007-09-15 14:07:45 -07001968 * to mc_filter_type.
1969 **/
1970static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr)
1971{
1972 u32 vector = 0;
1973
1974 switch (hw->mac.mc_filter_type) {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001975 case 0: /* use bits [47:36] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001976 vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
1977 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001978 case 1: /* use bits [46:35] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001979 vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
1980 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001981 case 2: /* use bits [45:34] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001982 vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
1983 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001984 case 3: /* use bits [43:32] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001985 vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
1986 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001987 default: /* Invalid mc_filter_type */
Auke Kok9a799d72007-09-15 14:07:45 -07001988 hw_dbg(hw, "MC filter type param set incorrectly\n");
1989 break;
1990 }
1991
1992 /* vector can only be 12-bits or boundary will be exceeded */
1993 vector &= 0xFFF;
1994 return vector;
1995}
1996
1997/**
1998 * ixgbe_set_mta - Set bit-vector in multicast table
1999 * @hw: pointer to hardware structure
2000 * @hash_value: Multicast address hash value
2001 *
2002 * Sets the bit-vector in the multicast table.
2003 **/
2004static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr)
2005{
2006 u32 vector;
2007 u32 vector_bit;
2008 u32 vector_reg;
Auke Kok9a799d72007-09-15 14:07:45 -07002009
2010 hw->addr_ctrl.mta_in_use++;
2011
2012 vector = ixgbe_mta_vector(hw, mc_addr);
2013 hw_dbg(hw, " bit-vector = 0x%03X\n", vector);
2014
2015 /*
2016 * The MTA is a register array of 128 32-bit registers. It is treated
2017 * like an array of 4096 bits. We want to set bit
2018 * BitArray[vector_value]. So we figure out what register the bit is
2019 * in, read it, OR in the new bit, then write back the new value. The
2020 * register is determined by the upper 7 bits of the vector value and
2021 * the bit within that register are determined by the lower 5 bits of
2022 * the value.
2023 */
2024 vector_reg = (vector >> 5) & 0x7F;
2025 vector_bit = vector & 0x1F;
Emil Tantilov80960ab2011-02-18 08:58:27 +00002026 hw->mac.mta_shadow[vector_reg] |= (1 << vector_bit);
Auke Kok9a799d72007-09-15 14:07:45 -07002027}
2028
2029/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002030 * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses
Auke Kok9a799d72007-09-15 14:07:45 -07002031 * @hw: pointer to hardware structure
Jiri Pirko2853eb82010-03-23 22:58:01 +00002032 * @netdev: pointer to net device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002033 *
2034 * The given list replaces any existing list. Clears the MC addrs from receive
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002035 * address registers and the multicast table. Uses unused receive address
Auke Kok9a799d72007-09-15 14:07:45 -07002036 * registers for the first multicast addresses, and hashes the rest into the
2037 * multicast table.
2038 **/
Jiri Pirko2853eb82010-03-23 22:58:01 +00002039s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw,
2040 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07002041{
Jiri Pirko22bedad32010-04-01 21:22:57 +00002042 struct netdev_hw_addr *ha;
Auke Kok9a799d72007-09-15 14:07:45 -07002043 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002044
2045 /*
2046 * Set the new number of MC addresses that we are being requested to
2047 * use.
2048 */
Jiri Pirko2853eb82010-03-23 22:58:01 +00002049 hw->addr_ctrl.num_mc_addrs = netdev_mc_count(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002050 hw->addr_ctrl.mta_in_use = 0;
2051
Emil Tantilov80960ab2011-02-18 08:58:27 +00002052 /* Clear mta_shadow */
Auke Kok9a799d72007-09-15 14:07:45 -07002053 hw_dbg(hw, " Clearing MTA\n");
Emil Tantilov80960ab2011-02-18 08:58:27 +00002054 memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow));
Auke Kok9a799d72007-09-15 14:07:45 -07002055
Emil Tantilov80960ab2011-02-18 08:58:27 +00002056 /* Update mta shadow */
Jiri Pirko22bedad32010-04-01 21:22:57 +00002057 netdev_for_each_mc_addr(ha, netdev) {
Auke Kok9a799d72007-09-15 14:07:45 -07002058 hw_dbg(hw, " Adding the multicast addresses:\n");
Jiri Pirko22bedad32010-04-01 21:22:57 +00002059 ixgbe_set_mta(hw, ha->addr);
Auke Kok9a799d72007-09-15 14:07:45 -07002060 }
2061
2062 /* Enable mta */
Emil Tantilov80960ab2011-02-18 08:58:27 +00002063 for (i = 0; i < hw->mac.mcft_size; i++)
2064 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_MTA(0), i,
2065 hw->mac.mta_shadow[i]);
2066
Auke Kok9a799d72007-09-15 14:07:45 -07002067 if (hw->addr_ctrl.mta_in_use > 0)
2068 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002069 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002070
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002071 hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002072 return 0;
2073}
2074
2075/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002076 * ixgbe_enable_mc_generic - Enable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002077 * @hw: pointer to hardware structure
2078 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002079 * Enables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002080 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002081s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002082{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002083 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002084
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002085 if (a->mta_in_use > 0)
2086 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE |
2087 hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002088
2089 return 0;
2090}
2091
2092/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002093 * ixgbe_disable_mc_generic - Disable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07002094 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07002095 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002096 * Disables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07002097 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002098s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002099{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002100 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07002101
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002102 if (a->mta_in_use > 0)
2103 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07002104
2105 return 0;
2106}
2107
2108/**
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002109 * ixgbe_fc_enable_generic - Enable flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002110 * @hw: pointer to hardware structure
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002111 *
2112 * Enable flow control according to the current settings.
2113 **/
Alexander Duyck041441d2012-04-19 17:48:48 +00002114s32 ixgbe_fc_enable_generic(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002115{
2116 s32 ret_val = 0;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002117 u32 mflcn_reg, fccfg_reg;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002118 u32 reg;
John Fastabend16b61be2010-11-16 19:26:44 -08002119 u32 fcrtl, fcrth;
Alexander Duyck041441d2012-04-19 17:48:48 +00002120 int i;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002121
Alexander Duyck041441d2012-04-19 17:48:48 +00002122 /*
2123 * Validate the water mark configuration for packet buffer 0. Zero
2124 * water marks indicate that the packet buffer was not configured
2125 * and the watermarks for packet buffer 0 should always be configured.
2126 */
2127 if (!hw->fc.low_water ||
2128 !hw->fc.high_water[0] ||
2129 !hw->fc.pause_time) {
2130 hw_dbg(hw, "Invalid water mark configuration\n");
2131 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002132 goto out;
Alexander Duyck041441d2012-04-19 17:48:48 +00002133 }
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00002134
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002135 /* Negotiate the fc mode to use */
Alexander Duyck786e9a52012-03-28 08:03:48 +00002136 ixgbe_fc_autoneg(hw);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002137
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002138 /* Disable any previous flow control settings */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002139 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Alexander Duyck041441d2012-04-19 17:48:48 +00002140 mflcn_reg &= ~(IXGBE_MFLCN_RPFCE_MASK | IXGBE_MFLCN_RFCE);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002141
2142 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
2143 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
2144
2145 /*
2146 * The possible values of fc.current_mode are:
2147 * 0: Flow control is completely disabled
2148 * 1: Rx flow control is enabled (we can receive pause frames,
2149 * but not send pause frames).
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00002150 * 2: Tx flow control is enabled (we can send pause frames but
2151 * we do not support receiving pause frames).
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002152 * 3: Both Rx and Tx flow control (symmetric) are enabled.
2153 * other: Invalid.
2154 */
2155 switch (hw->fc.current_mode) {
2156 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002157 /*
2158 * Flow control is disabled by software override or autoneg.
2159 * The code below will actually disable it in the HW.
2160 */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002161 break;
2162 case ixgbe_fc_rx_pause:
2163 /*
2164 * Rx Flow control is enabled and Tx Flow control is
2165 * disabled by software override. Since there really
2166 * isn't a way to advertise that we are capable of RX
2167 * Pause ONLY, we will advertise that we support both
2168 * symmetric and asymmetric Rx PAUSE. Later, we will
2169 * disable the adapter's ability to send PAUSE frames.
2170 */
2171 mflcn_reg |= IXGBE_MFLCN_RFCE;
2172 break;
2173 case ixgbe_fc_tx_pause:
2174 /*
2175 * Tx Flow control is enabled, and Rx Flow control is
2176 * disabled by software override.
2177 */
2178 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2179 break;
2180 case ixgbe_fc_full:
2181 /* Flow control (both Rx and Tx) is enabled by SW override. */
2182 mflcn_reg |= IXGBE_MFLCN_RFCE;
2183 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
2184 break;
2185 default:
2186 hw_dbg(hw, "Flow control param set incorrectly\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002187 ret_val = IXGBE_ERR_CONFIG;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002188 goto out;
2189 break;
2190 }
2191
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002192 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +00002193 mflcn_reg |= IXGBE_MFLCN_DPF;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002194 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
2195 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
2196
Alexander Duyck041441d2012-04-19 17:48:48 +00002197 fcrtl = (hw->fc.low_water << 10) | IXGBE_FCRTL_XONE;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002198
Alexander Duyck041441d2012-04-19 17:48:48 +00002199 /* Set up and enable Rx high/low water mark thresholds, enable XON. */
2200 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
2201 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
2202 hw->fc.high_water[i]) {
2203 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), fcrtl);
2204 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
2205 } else {
2206 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0);
2207 /*
2208 * In order to prevent Tx hangs when the internal Tx
2209 * switch is enabled we must set the high water mark
2210 * to the maximum FCRTH value. This allows the Tx
2211 * switch to function even under heavy Rx workloads.
2212 */
2213 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 32;
2214 }
2215
2216 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002217 }
2218
2219 /* Configure pause time (2 TCs per register) */
Alexander Duyck041441d2012-04-19 17:48:48 +00002220 reg = hw->fc.pause_time * 0x00010001;
2221 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
2222 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002223
Alexander Duyck041441d2012-04-19 17:48:48 +00002224 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002225
2226out:
2227 return ret_val;
2228}
2229
2230/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002231 * ixgbe_negotiate_fc - Negotiate flow control
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002232 * @hw: pointer to hardware structure
Alexander Duyck67a79df2012-04-19 17:49:56 +00002233 * @adv_reg: flow control advertised settings
2234 * @lp_reg: link partner's flow control settings
2235 * @adv_sym: symmetric pause bit in advertisement
2236 * @adv_asm: asymmetric pause bit in advertisement
2237 * @lp_sym: symmetric pause bit in link partner advertisement
2238 * @lp_asm: asymmetric pause bit in link partner advertisement
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002239 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002240 * Find the intersection between advertised settings and link partner's
2241 * advertised settings
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002242 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002243static s32 ixgbe_negotiate_fc(struct ixgbe_hw *hw, u32 adv_reg, u32 lp_reg,
2244 u32 adv_sym, u32 adv_asm, u32 lp_sym, u32 lp_asm)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002245{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002246 if ((!(adv_reg)) || (!(lp_reg)))
2247 return IXGBE_ERR_FC_NOT_NEGOTIATED;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002248
Alexander Duyck67a79df2012-04-19 17:49:56 +00002249 if ((adv_reg & adv_sym) && (lp_reg & lp_sym)) {
2250 /*
2251 * Now we need to check if the user selected Rx ONLY
2252 * of pause frames. In this case, we had to advertise
2253 * FULL flow control because we could not advertise RX
2254 * ONLY. Hence, we must now check to see if we need to
2255 * turn OFF the TRANSMISSION of PAUSE frames.
2256 */
2257 if (hw->fc.requested_mode == ixgbe_fc_full) {
2258 hw->fc.current_mode = ixgbe_fc_full;
2259 hw_dbg(hw, "Flow Control = FULL.\n");
2260 } else {
2261 hw->fc.current_mode = ixgbe_fc_rx_pause;
2262 hw_dbg(hw, "Flow Control=RX PAUSE frames only\n");
2263 }
2264 } else if (!(adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2265 (lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2266 hw->fc.current_mode = ixgbe_fc_tx_pause;
2267 hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n");
2268 } else if ((adv_reg & adv_sym) && (adv_reg & adv_asm) &&
2269 !(lp_reg & lp_sym) && (lp_reg & lp_asm)) {
2270 hw->fc.current_mode = ixgbe_fc_rx_pause;
2271 hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002272 } else {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002273 hw->fc.current_mode = ixgbe_fc_none;
2274 hw_dbg(hw, "Flow Control = NONE.\n");
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002275 }
Alexander Duyck67a79df2012-04-19 17:49:56 +00002276 return 0;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002277}
2278
2279/**
2280 * ixgbe_fc_autoneg_fiber - Enable flow control on 1 gig fiber
2281 * @hw: pointer to hardware structure
2282 *
2283 * Enable flow control according on 1 gig fiber.
2284 **/
2285static s32 ixgbe_fc_autoneg_fiber(struct ixgbe_hw *hw)
2286{
2287 u32 pcs_anadv_reg, pcs_lpab_reg, linkstat;
Alexander Duyck786e9a52012-03-28 08:03:48 +00002288 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002289
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002290 /*
2291 * On multispeed fiber at 1g, bail out if
2292 * - link is up but AN did not complete, or if
2293 * - link is up and AN completed but timed out
2294 */
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002295
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002296 linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
Don Skidmore53f096d2011-07-28 01:00:58 +00002297 if ((!!(linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) ||
Alexander Duyck786e9a52012-03-28 08:03:48 +00002298 (!!(linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1))
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00002299 goto out;
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00002300
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002301 pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
2302 pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002303
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002304 ret_val = ixgbe_negotiate_fc(hw, pcs_anadv_reg,
2305 pcs_lpab_reg, IXGBE_PCS1GANA_SYM_PAUSE,
2306 IXGBE_PCS1GANA_ASM_PAUSE,
2307 IXGBE_PCS1GANA_SYM_PAUSE,
2308 IXGBE_PCS1GANA_ASM_PAUSE);
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002309
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08002310out:
2311 return ret_val;
2312}
2313
2314/**
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002315 * ixgbe_fc_autoneg_backplane - Enable flow control IEEE clause 37
2316 * @hw: pointer to hardware structure
2317 *
2318 * Enable flow control according to IEEE clause 37.
2319 **/
2320static s32 ixgbe_fc_autoneg_backplane(struct ixgbe_hw *hw)
2321{
2322 u32 links2, anlp1_reg, autoc_reg, links;
Alexander Duyck786e9a52012-03-28 08:03:48 +00002323 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002324
2325 /*
2326 * On backplane, bail out if
2327 * - backplane autoneg was not completed, or if
2328 * - we are 82599 and link partner is not AN enabled
2329 */
2330 links = IXGBE_READ_REG(hw, IXGBE_LINKS);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002331 if ((links & IXGBE_LINKS_KX_AN_COMP) == 0)
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002332 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002333
2334 if (hw->mac.type == ixgbe_mac_82599EB) {
2335 links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2);
Alexander Duyck786e9a52012-03-28 08:03:48 +00002336 if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0)
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002337 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002338 }
2339 /*
2340 * Read the 10g AN autoc and LP ability registers and resolve
2341 * local flow control settings accordingly
2342 */
2343 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2344 anlp1_reg = IXGBE_READ_REG(hw, IXGBE_ANLP1);
2345
2346 ret_val = ixgbe_negotiate_fc(hw, autoc_reg,
2347 anlp1_reg, IXGBE_AUTOC_SYM_PAUSE, IXGBE_AUTOC_ASM_PAUSE,
2348 IXGBE_ANLP1_SYM_PAUSE, IXGBE_ANLP1_ASM_PAUSE);
2349
2350out:
2351 return ret_val;
2352}
2353
2354/**
2355 * ixgbe_fc_autoneg_copper - Enable flow control IEEE clause 37
2356 * @hw: pointer to hardware structure
2357 *
2358 * Enable flow control according to IEEE clause 37.
2359 **/
2360static s32 ixgbe_fc_autoneg_copper(struct ixgbe_hw *hw)
2361{
2362 u16 technology_ability_reg = 0;
2363 u16 lp_technology_ability_reg = 0;
2364
2365 hw->phy.ops.read_reg(hw, MDIO_AN_ADVERTISE,
2366 MDIO_MMD_AN,
2367 &technology_ability_reg);
2368 hw->phy.ops.read_reg(hw, MDIO_AN_LPA,
2369 MDIO_MMD_AN,
2370 &lp_technology_ability_reg);
2371
2372 return ixgbe_negotiate_fc(hw, (u32)technology_ability_reg,
2373 (u32)lp_technology_ability_reg,
2374 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE,
2375 IXGBE_TAF_SYM_PAUSE, IXGBE_TAF_ASM_PAUSE);
2376}
2377
2378/**
Alexander Duyck67a79df2012-04-19 17:49:56 +00002379 * ixgbe_fc_autoneg - Configure flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002380 * @hw: pointer to hardware structure
2381 *
Alexander Duyck67a79df2012-04-19 17:49:56 +00002382 * Compares our advertised flow control capabilities to those advertised by
2383 * our link partner, and determines the proper flow control mode to use.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002384 **/
Alexander Duyck67a79df2012-04-19 17:49:56 +00002385void ixgbe_fc_autoneg(struct ixgbe_hw *hw)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002386{
Alexander Duyck67a79df2012-04-19 17:49:56 +00002387 s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED;
2388 ixgbe_link_speed speed;
2389 bool link_up;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002390
2391 /*
Alexander Duyck67a79df2012-04-19 17:49:56 +00002392 * AN should have completed when the cable was plugged in.
2393 * Look for reasons to bail out. Bail out if:
2394 * - FC autoneg is disabled, or if
2395 * - link is not up.
2396 *
2397 * Since we're being called from an LSC, link is already known to be up.
2398 * So use link_up_wait_to_complete=false.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002399 */
Alexander Duyck67a79df2012-04-19 17:49:56 +00002400 if (hw->fc.disable_fc_autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002401 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002402
Alexander Duyck67a79df2012-04-19 17:49:56 +00002403 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2404 if (!link_up)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002405 goto out;
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002406
2407 switch (hw->phy.media_type) {
Alexander Duyck67a79df2012-04-19 17:49:56 +00002408 /* Autoneg flow control on fiber adapters */
Don Skidmore4e8e1bc2013-07-31 02:17:40 +00002409 case ixgbe_media_type_fiber_fixed:
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002410 case ixgbe_media_type_fiber:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002411 if (speed == IXGBE_LINK_SPEED_1GB_FULL)
2412 ret_val = ixgbe_fc_autoneg_fiber(hw);
2413 break;
2414
2415 /* Autoneg flow control on backplane adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002416 case ixgbe_media_type_backplane:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002417 ret_val = ixgbe_fc_autoneg_backplane(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002418 break;
2419
Alexander Duyck67a79df2012-04-19 17:49:56 +00002420 /* Autoneg flow control on copper adapters */
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002421 case ixgbe_media_type_copper:
Don Skidmore73d80953d2013-07-31 02:19:24 +00002422 if (ixgbe_device_supports_autoneg_fc(hw))
Alexander Duyck67a79df2012-04-19 17:49:56 +00002423 ret_val = ixgbe_fc_autoneg_copper(hw);
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00002424 break;
2425
2426 default:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002427 break;
2428 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002429
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002430out:
Alexander Duyck67a79df2012-04-19 17:49:56 +00002431 if (ret_val == 0) {
2432 hw->fc.fc_was_autonegged = true;
2433 } else {
2434 hw->fc.fc_was_autonegged = false;
2435 hw->fc.current_mode = hw->fc.requested_mode;
2436 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002437}
2438
2439/**
Auke Kok9a799d72007-09-15 14:07:45 -07002440 * ixgbe_disable_pcie_master - Disable PCI-express master access
2441 * @hw: pointer to hardware structure
2442 *
2443 * Disables PCI-Express master access and verifies there are no pending
2444 * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable
2445 * bit hasn't caused the master requests to be disabled, else 0
2446 * is returned signifying master requests disabled.
2447 **/
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002448static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07002449{
Emil Tantilova4297dc2011-02-14 08:45:13 +00002450 struct ixgbe_adapter *adapter = hw->back;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002451 s32 status = 0;
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002452 u32 i;
2453 u16 value;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002454
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002455 /* Always set this bit to ensure any future transactions are blocked */
2456 IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS);
2457
2458 /* Exit if master requests are blocked */
Emil Tantilova4297dc2011-02-14 08:45:13 +00002459 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO))
2460 goto out;
Auke Kok9a799d72007-09-15 14:07:45 -07002461
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002462 /* Poll for master request bit to clear */
Auke Kok9a799d72007-09-15 14:07:45 -07002463 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002464 udelay(100);
Emil Tantilova4297dc2011-02-14 08:45:13 +00002465 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO))
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002466 goto out;
Auke Kok9a799d72007-09-15 14:07:45 -07002467 }
2468
Emil Tantilova4297dc2011-02-14 08:45:13 +00002469 /*
2470 * Two consecutive resets are required via CTRL.RST per datasheet
2471 * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine
2472 * of this need. The first reset prevents new master requests from
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002473 * being issued by our device. We then must wait 1usec or more for any
Emil Tantilova4297dc2011-02-14 08:45:13 +00002474 * remaining completions from the PCIe bus to trickle in, and then reset
2475 * again to clear out any effects they may have had on our device.
2476 */
Emil Tantilovff9d1a52011-08-16 04:35:11 +00002477 hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n");
2478 hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
2479
2480 /*
2481 * Before proceeding, make sure that the PCIe block does not have
2482 * transactions pending.
2483 */
2484 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
2485 udelay(100);
2486 pci_read_config_word(adapter->pdev, IXGBE_PCI_DEVICE_STATUS,
2487 &value);
2488 if (!(value & IXGBE_PCI_DEVICE_STATUS_TRANSACTION_PENDING))
2489 goto out;
2490 }
2491
2492 hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n");
2493 status = IXGBE_ERR_MASTER_REQUESTS_PENDING;
Emil Tantilova4297dc2011-02-14 08:45:13 +00002494
2495out:
Auke Kok9a799d72007-09-15 14:07:45 -07002496 return status;
2497}
2498
Auke Kok9a799d72007-09-15 14:07:45 -07002499/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002500 * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore
Auke Kok9a799d72007-09-15 14:07:45 -07002501 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002502 * @mask: Mask to specify which semaphore to acquire
Auke Kok9a799d72007-09-15 14:07:45 -07002503 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002504 * Acquires the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002505 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2506 **/
2507s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u16 mask)
2508{
2509 u32 gssr;
2510 u32 swmask = mask;
2511 u32 fwmask = mask << 5;
2512 s32 timeout = 200;
2513
2514 while (timeout) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002515 /*
2516 * SW EEPROM semaphore bit is used for access to all
2517 * SW_FW_SYNC/GSSR bits (not just EEPROM)
2518 */
Auke Kok9a799d72007-09-15 14:07:45 -07002519 if (ixgbe_get_eeprom_semaphore(hw))
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002520 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002521
2522 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2523 if (!(gssr & (fwmask | swmask)))
2524 break;
2525
2526 /*
2527 * Firmware currently using resource (fwmask) or other software
2528 * thread currently using resource (swmask)
2529 */
2530 ixgbe_release_eeprom_semaphore(hw);
Don Skidmore032b4322011-03-18 09:32:53 +00002531 usleep_range(5000, 10000);
Auke Kok9a799d72007-09-15 14:07:45 -07002532 timeout--;
2533 }
2534
2535 if (!timeout) {
Emil Tantilovdbf893e2011-02-08 09:42:41 +00002536 hw_dbg(hw, "Driver can't access resource, SW_FW_SYNC timeout.\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002537 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002538 }
2539
2540 gssr |= swmask;
2541 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2542
2543 ixgbe_release_eeprom_semaphore(hw);
2544 return 0;
2545}
2546
2547/**
2548 * ixgbe_release_swfw_sync - Release SWFW semaphore
2549 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002550 * @mask: Mask to specify which semaphore to release
Auke Kok9a799d72007-09-15 14:07:45 -07002551 *
Emil Tantilovda74cd42011-03-03 09:25:07 +00002552 * Releases the SWFW semaphore through the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002553 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2554 **/
2555void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u16 mask)
2556{
2557 u32 gssr;
2558 u32 swmask = mask;
2559
2560 ixgbe_get_eeprom_semaphore(hw);
2561
2562 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2563 gssr &= ~swmask;
2564 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2565
2566 ixgbe_release_eeprom_semaphore(hw);
2567}
2568
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002569/**
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002570 * ixgbe_disable_rx_buff_generic - Stops the receive data path
2571 * @hw: pointer to hardware structure
2572 *
2573 * Stops the receive data path and waits for the HW to internally
2574 * empty the Rx security block.
2575 **/
2576s32 ixgbe_disable_rx_buff_generic(struct ixgbe_hw *hw)
2577{
2578#define IXGBE_MAX_SECRX_POLL 40
2579 int i;
2580 int secrxreg;
2581
2582 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2583 secrxreg |= IXGBE_SECRXCTRL_RX_DIS;
2584 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2585 for (i = 0; i < IXGBE_MAX_SECRX_POLL; i++) {
2586 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXSTAT);
2587 if (secrxreg & IXGBE_SECRXSTAT_SECRX_RDY)
2588 break;
2589 else
2590 /* Use interrupt-safe sleep just in case */
Jacob Kellerdb76ad42012-05-03 01:44:12 +00002591 udelay(1000);
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00002592 }
2593
2594 /* For informational purposes only */
2595 if (i >= IXGBE_MAX_SECRX_POLL)
2596 hw_dbg(hw, "Rx unit being enabled before security "
2597 "path fully disabled. Continuing with init.\n");
2598
2599 return 0;
2600
2601}
2602
2603/**
2604 * ixgbe_enable_rx_buff - Enables the receive data path
2605 * @hw: pointer to hardware structure
2606 *
2607 * Enables the receive data path
2608 **/
2609s32 ixgbe_enable_rx_buff_generic(struct ixgbe_hw *hw)
2610{
2611 int secrxreg;
2612
2613 secrxreg = IXGBE_READ_REG(hw, IXGBE_SECRXCTRL);
2614 secrxreg &= ~IXGBE_SECRXCTRL_RX_DIS;
2615 IXGBE_WRITE_REG(hw, IXGBE_SECRXCTRL, secrxreg);
2616 IXGBE_WRITE_FLUSH(hw);
2617
2618 return 0;
2619}
2620
2621/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002622 * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit
2623 * @hw: pointer to hardware structure
2624 * @regval: register value to write to RXCTRL
2625 *
2626 * Enables the Rx DMA unit
2627 **/
2628s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval)
2629{
2630 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, regval);
2631
2632 return 0;
2633}
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002634
2635/**
2636 * ixgbe_blink_led_start_generic - Blink LED based on index.
2637 * @hw: pointer to hardware structure
2638 * @index: led number to blink
2639 **/
2640s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index)
2641{
2642 ixgbe_link_speed speed = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002643 bool link_up = false;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002644 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2645 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002646 s32 ret_val = 0;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002647
2648 /*
2649 * Link must be up to auto-blink the LEDs;
2650 * Force it if link is down.
2651 */
2652 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2653
2654 if (!link_up) {
Don Skidmored7bbcd32012-10-24 06:19:01 +00002655 /* Need the SW/FW semaphore around AUTOC writes if 82599 and
2656 * LESM is on.
2657 */
2658 bool got_lock = false;
2659
2660 if ((hw->mac.type == ixgbe_mac_82599EB) &&
2661 ixgbe_verify_lesm_fw_enabled_82599(hw)) {
2662 ret_val = hw->mac.ops.acquire_swfw_sync(hw,
2663 IXGBE_GSSR_MAC_CSR_SM);
2664 if (ret_val)
2665 goto out;
2666
2667 got_lock = true;
2668 }
Peter P Waskiewicz Jr50ac58b2009-06-04 11:10:53 +00002669 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002670 autoc_reg |= IXGBE_AUTOC_FLU;
2671 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00002672 IXGBE_WRITE_FLUSH(hw);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002673
2674 if (got_lock)
2675 hw->mac.ops.release_swfw_sync(hw,
2676 IXGBE_GSSR_MAC_CSR_SM);
Don Skidmore032b4322011-03-18 09:32:53 +00002677 usleep_range(10000, 20000);
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002678 }
2679
2680 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2681 led_reg |= IXGBE_LED_BLINK(index);
2682 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2683 IXGBE_WRITE_FLUSH(hw);
2684
Don Skidmored7bbcd32012-10-24 06:19:01 +00002685out:
2686 return ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002687}
2688
2689/**
2690 * ixgbe_blink_led_stop_generic - Stop blinking LED based on index.
2691 * @hw: pointer to hardware structure
2692 * @index: led number to stop blinking
2693 **/
2694s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index)
2695{
2696 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2697 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
Don Skidmored7bbcd32012-10-24 06:19:01 +00002698 s32 ret_val = 0;
2699 bool got_lock = false;
2700
2701 /* Need the SW/FW semaphore around AUTOC writes if 82599 and
2702 * LESM is on.
2703 */
2704 if ((hw->mac.type == ixgbe_mac_82599EB) &&
2705 ixgbe_verify_lesm_fw_enabled_82599(hw)) {
2706 ret_val = hw->mac.ops.acquire_swfw_sync(hw,
2707 IXGBE_GSSR_MAC_CSR_SM);
2708 if (ret_val)
2709 goto out;
2710
2711 got_lock = true;
2712 }
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002713
2714 autoc_reg &= ~IXGBE_AUTOC_FLU;
2715 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
2716 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
2717
Don Skidmored7bbcd32012-10-24 06:19:01 +00002718 if (hw->mac.type == ixgbe_mac_82599EB)
2719 ixgbe_reset_pipeline_82599(hw);
2720
2721 if (got_lock)
2722 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM);
2723
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002724 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2725 led_reg &= ~IXGBE_LED_BLINK(index);
2726 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
2727 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2728 IXGBE_WRITE_FLUSH(hw);
2729
Don Skidmored7bbcd32012-10-24 06:19:01 +00002730out:
2731 return ret_val;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002732}
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002733
2734/**
2735 * ixgbe_get_san_mac_addr_offset - Get SAN MAC address offset from the EEPROM
2736 * @hw: pointer to hardware structure
2737 * @san_mac_offset: SAN MAC address offset
2738 *
2739 * This function will read the EEPROM location for the SAN MAC address
2740 * pointer, and returns the value at that location. This is used in both
2741 * get and set mac_addr routines.
2742 **/
2743static s32 ixgbe_get_san_mac_addr_offset(struct ixgbe_hw *hw,
2744 u16 *san_mac_offset)
2745{
2746 /*
2747 * First read the EEPROM pointer to see if the MAC addresses are
2748 * available.
2749 */
2750 hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR, san_mac_offset);
2751
2752 return 0;
2753}
2754
2755/**
2756 * ixgbe_get_san_mac_addr_generic - SAN MAC address retrieval from the EEPROM
2757 * @hw: pointer to hardware structure
2758 * @san_mac_addr: SAN MAC address
2759 *
2760 * Reads the SAN MAC address from the EEPROM, if it's available. This is
2761 * per-port, so set_lan_id() must be called before reading the addresses.
2762 * set_lan_id() is called by identify_sfp(), but this cannot be relied
2763 * upon for non-SFP connections, so we must call it here.
2764 **/
2765s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr)
2766{
2767 u16 san_mac_data, san_mac_offset;
2768 u8 i;
2769
2770 /*
2771 * First read the EEPROM pointer to see if the MAC addresses are
2772 * available. If they're not, no point in calling set_lan_id() here.
2773 */
2774 ixgbe_get_san_mac_addr_offset(hw, &san_mac_offset);
2775
2776 if ((san_mac_offset == 0) || (san_mac_offset == 0xFFFF)) {
2777 /*
2778 * No addresses available in this EEPROM. It's not an
2779 * error though, so just wipe the local address and return.
2780 */
2781 for (i = 0; i < 6; i++)
2782 san_mac_addr[i] = 0xFF;
2783
2784 goto san_mac_addr_out;
2785 }
2786
2787 /* make sure we know which port we need to program */
2788 hw->mac.ops.set_lan_id(hw);
2789 /* apply the port offset to the address offset */
2790 (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) :
2791 (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET);
2792 for (i = 0; i < 3; i++) {
2793 hw->eeprom.ops.read(hw, san_mac_offset, &san_mac_data);
2794 san_mac_addr[i * 2] = (u8)(san_mac_data);
2795 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
2796 san_mac_offset++;
2797 }
2798
2799san_mac_addr_out:
2800 return 0;
2801}
2802
2803/**
2804 * ixgbe_get_pcie_msix_count_generic - Gets MSI-X vector count
2805 * @hw: pointer to hardware structure
2806 *
2807 * Read PCIe configuration space, and get the MSI-X vector count from
2808 * the capabilities table.
2809 **/
Emil Tantilov71161302012-03-22 03:00:29 +00002810u16 ixgbe_get_pcie_msix_count_generic(struct ixgbe_hw *hw)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002811{
2812 struct ixgbe_adapter *adapter = hw->back;
Emil Tantilov71161302012-03-22 03:00:29 +00002813 u16 msix_count = 1;
2814 u16 max_msix_count;
2815 u16 pcie_offset;
2816
2817 switch (hw->mac.type) {
2818 case ixgbe_mac_82598EB:
2819 pcie_offset = IXGBE_PCIE_MSIX_82598_CAPS;
2820 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82598;
2821 break;
2822 case ixgbe_mac_82599EB:
2823 case ixgbe_mac_X540:
2824 pcie_offset = IXGBE_PCIE_MSIX_82599_CAPS;
2825 max_msix_count = IXGBE_MAX_MSIX_VECTORS_82599;
2826 break;
2827 default:
2828 return msix_count;
2829 }
2830
2831 pci_read_config_word(adapter->pdev, pcie_offset, &msix_count);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002832 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
2833
Emil Tantilov71161302012-03-22 03:00:29 +00002834 /* MSI-X count is zero-based in HW */
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002835 msix_count++;
2836
Emil Tantilov71161302012-03-22 03:00:29 +00002837 if (msix_count > max_msix_count)
2838 msix_count = max_msix_count;
2839
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002840 return msix_count;
2841}
2842
2843/**
2844 * ixgbe_clear_vmdq_generic - Disassociate a VMDq pool index from a rx address
2845 * @hw: pointer to hardware struct
2846 * @rar: receive address register index to disassociate
2847 * @vmdq: VMDq pool index to remove from the rar
2848 **/
2849s32 ixgbe_clear_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2850{
2851 u32 mpsar_lo, mpsar_hi;
2852 u32 rar_entries = hw->mac.num_rar_entries;
2853
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002854 /* Make sure we are using a valid rar index range */
2855 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002856 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002857 return IXGBE_ERR_INVALID_ARGUMENT;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002858 }
2859
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002860 mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2861 mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2862
2863 if (!mpsar_lo && !mpsar_hi)
2864 goto done;
2865
2866 if (vmdq == IXGBE_CLEAR_VMDQ_ALL) {
2867 if (mpsar_lo) {
2868 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2869 mpsar_lo = 0;
2870 }
2871 if (mpsar_hi) {
2872 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2873 mpsar_hi = 0;
2874 }
2875 } else if (vmdq < 32) {
2876 mpsar_lo &= ~(1 << vmdq);
2877 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo);
2878 } else {
2879 mpsar_hi &= ~(1 << (vmdq - 32));
2880 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi);
2881 }
2882
2883 /* was that the last pool using this rar? */
2884 if (mpsar_lo == 0 && mpsar_hi == 0 && rar != 0)
2885 hw->mac.ops.clear_rar(hw, rar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002886done:
2887 return 0;
2888}
2889
2890/**
2891 * ixgbe_set_vmdq_generic - Associate a VMDq pool index with a rx address
2892 * @hw: pointer to hardware struct
2893 * @rar: receive address register index to associate with a VMDq index
2894 * @vmdq: VMDq pool index
2895 **/
2896s32 ixgbe_set_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2897{
2898 u32 mpsar;
2899 u32 rar_entries = hw->mac.num_rar_entries;
2900
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002901 /* Make sure we are using a valid rar index range */
2902 if (rar >= rar_entries) {
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002903 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
Emil Tantilovc700f4e2011-02-17 11:34:58 +00002904 return IXGBE_ERR_INVALID_ARGUMENT;
2905 }
2906
2907 if (vmdq < 32) {
2908 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2909 mpsar |= 1 << vmdq;
2910 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar);
2911 } else {
2912 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2913 mpsar |= 1 << (vmdq - 32);
2914 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002915 }
2916 return 0;
2917}
2918
2919/**
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00002920 * This function should only be involved in the IOV mode.
2921 * In IOV mode, Default pool is next pool after the number of
2922 * VFs advertized and not 0.
2923 * MPSAR table needs to be updated for SAN_MAC RAR [hw->mac.san_mac_rar_index]
2924 *
2925 * ixgbe_set_vmdq_san_mac - Associate default VMDq pool index with a rx address
2926 * @hw: pointer to hardware struct
2927 * @vmdq: VMDq pool index
2928 **/
2929s32 ixgbe_set_vmdq_san_mac_generic(struct ixgbe_hw *hw, u32 vmdq)
2930{
2931 u32 rar = hw->mac.san_mac_rar_index;
2932
2933 if (vmdq < 32) {
2934 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 1 << vmdq);
2935 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2936 } else {
2937 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2938 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 1 << (vmdq - 32));
2939 }
2940
2941 return 0;
2942}
2943
2944/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002945 * ixgbe_init_uta_tables_generic - Initialize the Unicast Table Array
2946 * @hw: pointer to hardware structure
2947 **/
2948s32 ixgbe_init_uta_tables_generic(struct ixgbe_hw *hw)
2949{
2950 int i;
2951
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002952 for (i = 0; i < 128; i++)
2953 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
2954
2955 return 0;
2956}
2957
2958/**
2959 * ixgbe_find_vlvf_slot - find the vlanid or the first empty slot
2960 * @hw: pointer to hardware structure
2961 * @vlan: VLAN id to write to VLAN filter
2962 *
2963 * return the VLVF index where this VLAN id should be placed
2964 *
2965 **/
Emil Tantilov5d5b7c32010-10-12 22:20:59 +00002966static s32 ixgbe_find_vlvf_slot(struct ixgbe_hw *hw, u32 vlan)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002967{
2968 u32 bits = 0;
2969 u32 first_empty_slot = 0;
2970 s32 regindex;
2971
2972 /* short cut the special case */
2973 if (vlan == 0)
2974 return 0;
2975
2976 /*
2977 * Search for the vlan id in the VLVF entries. Save off the first empty
2978 * slot found along the way
2979 */
2980 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
2981 bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
2982 if (!bits && !(first_empty_slot))
2983 first_empty_slot = regindex;
2984 else if ((bits & 0x0FFF) == vlan)
2985 break;
2986 }
2987
2988 /*
2989 * If regindex is less than IXGBE_VLVF_ENTRIES, then we found the vlan
2990 * in the VLVF. Else use the first empty VLVF register for this
2991 * vlan id.
2992 */
2993 if (regindex >= IXGBE_VLVF_ENTRIES) {
2994 if (first_empty_slot)
2995 regindex = first_empty_slot;
2996 else {
2997 hw_dbg(hw, "No space in VLVF.\n");
2998 regindex = IXGBE_ERR_NO_SPACE;
2999 }
3000 }
3001
3002 return regindex;
3003}
3004
3005/**
3006 * ixgbe_set_vfta_generic - Set VLAN filter table
3007 * @hw: pointer to hardware structure
3008 * @vlan: VLAN id to write to VLAN filter
3009 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
3010 * @vlan_on: boolean flag to turn on/off VLAN in VFVF
3011 *
3012 * Turn on/off specified VLAN in the VLAN filter table.
3013 **/
3014s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
3015 bool vlan_on)
3016{
3017 s32 regindex;
3018 u32 bitindex;
3019 u32 vfta;
3020 u32 bits;
3021 u32 vt;
3022 u32 targetbit;
3023 bool vfta_changed = false;
3024
3025 if (vlan > 4095)
3026 return IXGBE_ERR_PARAM;
3027
3028 /*
3029 * this is a 2 part operation - first the VFTA, then the
3030 * VLVF and VLVFB if VT Mode is set
3031 * We don't write the VFTA until we know the VLVF part succeeded.
3032 */
3033
3034 /* Part 1
3035 * The VFTA is a bitstring made up of 128 32-bit registers
3036 * that enable the particular VLAN id, much like the MTA:
3037 * bits[11-5]: which register
3038 * bits[4-0]: which bit in the register
3039 */
3040 regindex = (vlan >> 5) & 0x7F;
3041 bitindex = vlan & 0x1F;
3042 targetbit = (1 << bitindex);
3043 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
3044
3045 if (vlan_on) {
3046 if (!(vfta & targetbit)) {
3047 vfta |= targetbit;
3048 vfta_changed = true;
3049 }
3050 } else {
3051 if ((vfta & targetbit)) {
3052 vfta &= ~targetbit;
3053 vfta_changed = true;
3054 }
3055 }
3056
3057 /* Part 2
3058 * If VT Mode is set
3059 * Either vlan_on
3060 * make sure the vlan is in VLVF
3061 * set the vind bit in the matching VLVFB
3062 * Or !vlan_on
3063 * clear the pool bit and possibly the vind
3064 */
3065 vt = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3066 if (vt & IXGBE_VT_CTL_VT_ENABLE) {
3067 s32 vlvf_index;
3068
3069 vlvf_index = ixgbe_find_vlvf_slot(hw, vlan);
3070 if (vlvf_index < 0)
3071 return vlvf_index;
3072
3073 if (vlan_on) {
3074 /* set the pool bit */
3075 if (vind < 32) {
3076 bits = IXGBE_READ_REG(hw,
3077 IXGBE_VLVFB(vlvf_index*2));
3078 bits |= (1 << vind);
3079 IXGBE_WRITE_REG(hw,
3080 IXGBE_VLVFB(vlvf_index*2),
3081 bits);
3082 } else {
3083 bits = IXGBE_READ_REG(hw,
3084 IXGBE_VLVFB((vlvf_index*2)+1));
3085 bits |= (1 << (vind-32));
3086 IXGBE_WRITE_REG(hw,
3087 IXGBE_VLVFB((vlvf_index*2)+1),
3088 bits);
3089 }
3090 } else {
3091 /* clear the pool bit */
3092 if (vind < 32) {
3093 bits = IXGBE_READ_REG(hw,
3094 IXGBE_VLVFB(vlvf_index*2));
3095 bits &= ~(1 << vind);
3096 IXGBE_WRITE_REG(hw,
3097 IXGBE_VLVFB(vlvf_index*2),
3098 bits);
3099 bits |= IXGBE_READ_REG(hw,
3100 IXGBE_VLVFB((vlvf_index*2)+1));
3101 } else {
3102 bits = IXGBE_READ_REG(hw,
3103 IXGBE_VLVFB((vlvf_index*2)+1));
3104 bits &= ~(1 << (vind-32));
3105 IXGBE_WRITE_REG(hw,
3106 IXGBE_VLVFB((vlvf_index*2)+1),
3107 bits);
3108 bits |= IXGBE_READ_REG(hw,
3109 IXGBE_VLVFB(vlvf_index*2));
3110 }
3111 }
3112
3113 /*
3114 * If there are still bits set in the VLVFB registers
3115 * for the VLAN ID indicated we need to see if the
3116 * caller is requesting that we clear the VFTA entry bit.
3117 * If the caller has requested that we clear the VFTA
3118 * entry bit but there are still pools/VFs using this VLAN
3119 * ID entry then ignore the request. We're not worried
3120 * about the case where we're turning the VFTA VLAN ID
3121 * entry bit on, only when requested to turn it off as
3122 * there may be multiple pools and/or VFs using the
3123 * VLAN ID entry. In that case we cannot clear the
3124 * VFTA bit until all pools/VFs using that VLAN ID have also
3125 * been cleared. This will be indicated by "bits" being
3126 * zero.
3127 */
3128 if (bits) {
3129 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index),
3130 (IXGBE_VLVF_VIEN | vlan));
3131 if (!vlan_on) {
3132 /* someone wants to clear the vfta entry
3133 * but some pools/VFs are still using it.
3134 * Ignore it. */
3135 vfta_changed = false;
3136 }
3137 }
3138 else
3139 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), 0);
3140 }
3141
3142 if (vfta_changed)
3143 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), vfta);
3144
3145 return 0;
3146}
3147
3148/**
3149 * ixgbe_clear_vfta_generic - Clear VLAN filter table
3150 * @hw: pointer to hardware structure
3151 *
3152 * Clears the VLAN filer table, and the VMDq index associated with the filter
3153 **/
3154s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw)
3155{
3156 u32 offset;
3157
3158 for (offset = 0; offset < hw->mac.vft_size; offset++)
3159 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
3160
3161 for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) {
3162 IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0);
3163 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset*2), 0);
3164 IXGBE_WRITE_REG(hw, IXGBE_VLVFB((offset*2)+1), 0);
3165 }
3166
3167 return 0;
3168}
3169
3170/**
3171 * ixgbe_check_mac_link_generic - Determine link and speed status
3172 * @hw: pointer to hardware structure
3173 * @speed: pointer to link speed
3174 * @link_up: true when link is up
3175 * @link_up_wait_to_complete: bool used to wait for link up or not
3176 *
3177 * Reads the links register to determine if link is up and the current speed
3178 **/
3179s32 ixgbe_check_mac_link_generic(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
Emil Tantilov8c7bea32011-02-19 08:43:44 +00003180 bool *link_up, bool link_up_wait_to_complete)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003181{
Emil Tantilov48de36c2011-02-16 01:38:08 +00003182 u32 links_reg, links_orig;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003183 u32 i;
3184
Emil Tantilov48de36c2011-02-16 01:38:08 +00003185 /* clear the old state */
3186 links_orig = IXGBE_READ_REG(hw, IXGBE_LINKS);
3187
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003188 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
Emil Tantilov48de36c2011-02-16 01:38:08 +00003189
3190 if (links_orig != links_reg) {
3191 hw_dbg(hw, "LINKS changed from %08X to %08X\n",
3192 links_orig, links_reg);
3193 }
3194
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003195 if (link_up_wait_to_complete) {
3196 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
3197 if (links_reg & IXGBE_LINKS_UP) {
3198 *link_up = true;
3199 break;
3200 } else {
3201 *link_up = false;
3202 }
3203 msleep(100);
3204 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
3205 }
3206 } else {
3207 if (links_reg & IXGBE_LINKS_UP)
3208 *link_up = true;
3209 else
3210 *link_up = false;
3211 }
3212
3213 if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
3214 IXGBE_LINKS_SPEED_10G_82599)
3215 *speed = IXGBE_LINK_SPEED_10GB_FULL;
3216 else if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
Emil Tantilov63d778d2011-02-19 08:43:39 +00003217 IXGBE_LINKS_SPEED_1G_82599)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003218 *speed = IXGBE_LINK_SPEED_1GB_FULL;
Emil Tantilov63d778d2011-02-19 08:43:39 +00003219 else if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
3220 IXGBE_LINKS_SPEED_100_82599)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003221 *speed = IXGBE_LINK_SPEED_100_FULL;
Emil Tantilov63d778d2011-02-19 08:43:39 +00003222 else
3223 *speed = IXGBE_LINK_SPEED_UNKNOWN;
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003224
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00003225 return 0;
3226}
Don Skidmorea391f1d2010-11-16 19:27:15 -08003227
3228/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003229 * ixgbe_get_wwn_prefix_generic - Get alternative WWNN/WWPN prefix from
Don Skidmorea391f1d2010-11-16 19:27:15 -08003230 * the EEPROM
3231 * @hw: pointer to hardware structure
3232 * @wwnn_prefix: the alternative WWNN prefix
3233 * @wwpn_prefix: the alternative WWPN prefix
3234 *
3235 * This function will read the EEPROM from the alternative SAN MAC address
3236 * block to check the support for the alternative WWNN/WWPN prefix support.
3237 **/
3238s32 ixgbe_get_wwn_prefix_generic(struct ixgbe_hw *hw, u16 *wwnn_prefix,
3239 u16 *wwpn_prefix)
3240{
3241 u16 offset, caps;
3242 u16 alt_san_mac_blk_offset;
3243
3244 /* clear output first */
3245 *wwnn_prefix = 0xFFFF;
3246 *wwpn_prefix = 0xFFFF;
3247
3248 /* check if alternative SAN MAC is supported */
3249 hw->eeprom.ops.read(hw, IXGBE_ALT_SAN_MAC_ADDR_BLK_PTR,
3250 &alt_san_mac_blk_offset);
3251
3252 if ((alt_san_mac_blk_offset == 0) ||
3253 (alt_san_mac_blk_offset == 0xFFFF))
3254 goto wwn_prefix_out;
3255
3256 /* check capability in alternative san mac address block */
3257 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_CAPS_OFFSET;
3258 hw->eeprom.ops.read(hw, offset, &caps);
3259 if (!(caps & IXGBE_ALT_SAN_MAC_ADDR_CAPS_ALTWWN))
3260 goto wwn_prefix_out;
3261
3262 /* get the corresponding prefix for WWNN/WWPN */
3263 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWNN_OFFSET;
3264 hw->eeprom.ops.read(hw, offset, wwnn_prefix);
3265
3266 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWPN_OFFSET;
3267 hw->eeprom.ops.read(hw, offset, wwpn_prefix);
3268
3269wwn_prefix_out:
3270 return 0;
3271}
Greg Rosea985b6c32010-11-18 03:02:52 +00003272
3273/**
3274 * ixgbe_set_mac_anti_spoofing - Enable/Disable MAC anti-spoofing
3275 * @hw: pointer to hardware structure
3276 * @enable: enable or disable switch for anti-spoofing
3277 * @pf: Physical Function pool - do not enable anti-spoofing for the PF
3278 *
3279 **/
3280void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int pf)
3281{
3282 int j;
3283 int pf_target_reg = pf >> 3;
3284 int pf_target_shift = pf % 8;
3285 u32 pfvfspoof = 0;
3286
3287 if (hw->mac.type == ixgbe_mac_82598EB)
3288 return;
3289
3290 if (enable)
3291 pfvfspoof = IXGBE_SPOOF_MACAS_MASK;
3292
3293 /*
3294 * PFVFSPOOF register array is size 8 with 8 bits assigned to
3295 * MAC anti-spoof enables in each register array element.
3296 */
Alexander Duyckef89e0a2012-05-05 05:32:58 +00003297 for (j = 0; j < pf_target_reg; j++)
Greg Rosea985b6c32010-11-18 03:02:52 +00003298 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof);
3299
Greg Rosea985b6c32010-11-18 03:02:52 +00003300 /*
3301 * The PF should be allowed to spoof so that it can support
Alexander Duyckef89e0a2012-05-05 05:32:58 +00003302 * emulation mode NICs. Do not set the bits assigned to the PF
Greg Rosea985b6c32010-11-18 03:02:52 +00003303 */
Alexander Duyckef89e0a2012-05-05 05:32:58 +00003304 pfvfspoof &= (1 << pf_target_shift) - 1;
3305 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof);
3306
3307 /*
3308 * Remaining pools belong to the PF so they do not need to have
3309 * anti-spoofing enabled.
3310 */
3311 for (j++; j < IXGBE_PFVFSPOOF_REG_COUNT; j++)
3312 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), 0);
Greg Rosea985b6c32010-11-18 03:02:52 +00003313}
3314
3315/**
3316 * ixgbe_set_vlan_anti_spoofing - Enable/Disable VLAN anti-spoofing
3317 * @hw: pointer to hardware structure
3318 * @enable: enable or disable switch for VLAN anti-spoofing
3319 * @pf: Virtual Function pool - VF Pool to set for VLAN anti-spoofing
3320 *
3321 **/
3322void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
3323{
3324 int vf_target_reg = vf >> 3;
3325 int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT;
3326 u32 pfvfspoof;
3327
3328 if (hw->mac.type == ixgbe_mac_82598EB)
3329 return;
3330
3331 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
3332 if (enable)
3333 pfvfspoof |= (1 << vf_target_shift);
3334 else
3335 pfvfspoof &= ~(1 << vf_target_shift);
3336 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
3337}
Emil Tantilovb776d102011-03-31 09:36:18 +00003338
3339/**
3340 * ixgbe_get_device_caps_generic - Get additional device capabilities
3341 * @hw: pointer to hardware structure
3342 * @device_caps: the EEPROM word with the extra device capabilities
3343 *
3344 * This function will read the EEPROM location for the device capabilities,
3345 * and return the word through device_caps.
3346 **/
3347s32 ixgbe_get_device_caps_generic(struct ixgbe_hw *hw, u16 *device_caps)
3348{
3349 hw->eeprom.ops.read(hw, IXGBE_DEVICE_CAPS, device_caps);
3350
3351 return 0;
3352}
John Fastabend80605c652011-05-02 12:34:10 +00003353
3354/**
3355 * ixgbe_set_rxpba_generic - Initialize RX packet buffer
3356 * @hw: pointer to hardware structure
3357 * @num_pb: number of packet buffers to allocate
3358 * @headroom: reserve n KB of headroom
3359 * @strategy: packet buffer allocation strategy
3360 **/
3361void ixgbe_set_rxpba_generic(struct ixgbe_hw *hw,
3362 int num_pb,
3363 u32 headroom,
3364 int strategy)
3365{
3366 u32 pbsize = hw->mac.rx_pb_size;
3367 int i = 0;
3368 u32 rxpktsize, txpktsize, txpbthresh;
3369
3370 /* Reserve headroom */
3371 pbsize -= headroom;
3372
3373 if (!num_pb)
3374 num_pb = 1;
3375
3376 /* Divide remaining packet buffer space amongst the number
3377 * of packet buffers requested using supplied strategy.
3378 */
3379 switch (strategy) {
3380 case (PBA_STRATEGY_WEIGHTED):
3381 /* pba_80_48 strategy weight first half of packet buffer with
3382 * 5/8 of the packet buffer space.
3383 */
3384 rxpktsize = ((pbsize * 5 * 2) / (num_pb * 8));
3385 pbsize -= rxpktsize * (num_pb / 2);
3386 rxpktsize <<= IXGBE_RXPBSIZE_SHIFT;
3387 for (; i < (num_pb / 2); i++)
3388 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3389 /* Fall through to configure remaining packet buffers */
3390 case (PBA_STRATEGY_EQUAL):
3391 /* Divide the remaining Rx packet buffer evenly among the TCs */
3392 rxpktsize = (pbsize / (num_pb - i)) << IXGBE_RXPBSIZE_SHIFT;
3393 for (; i < num_pb; i++)
3394 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
3395 break;
3396 default:
3397 break;
3398 }
3399
3400 /*
3401 * Setup Tx packet buffer and threshold equally for all TCs
3402 * TXPBTHRESH register is set in K so divide by 1024 and subtract
3403 * 10 since the largest packet we support is just over 9K.
3404 */
3405 txpktsize = IXGBE_TXPBSIZE_MAX / num_pb;
3406 txpbthresh = (txpktsize / 1024) - IXGBE_TXPKT_SIZE_MAX;
3407 for (i = 0; i < num_pb; i++) {
3408 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
3409 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
3410 }
3411
3412 /* Clear unused TCs, if any, to zero buffer size*/
3413 for (; i < IXGBE_MAX_PB; i++) {
3414 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
3415 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
3416 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
3417 }
3418}
Emil Tantilov9612de92011-05-07 07:40:20 +00003419
3420/**
3421 * ixgbe_calculate_checksum - Calculate checksum for buffer
3422 * @buffer: pointer to EEPROM
3423 * @length: size of EEPROM to calculate a checksum for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003424 *
Emil Tantilov9612de92011-05-07 07:40:20 +00003425 * Calculates the checksum for some buffer on a specified length. The
3426 * checksum calculated is returned.
3427 **/
3428static u8 ixgbe_calculate_checksum(u8 *buffer, u32 length)
3429{
3430 u32 i;
3431 u8 sum = 0;
3432
3433 if (!buffer)
3434 return 0;
3435
3436 for (i = 0; i < length; i++)
3437 sum += buffer[i];
3438
3439 return (u8) (0 - sum);
3440}
3441
3442/**
3443 * ixgbe_host_interface_command - Issue command to manageability block
3444 * @hw: pointer to the HW structure
3445 * @buffer: contains the command to write and where the return status will
3446 * be placed
Don Skidmorec466d7a2012-02-28 06:35:54 +00003447 * @length: length of buffer, must be multiple of 4 bytes
Emil Tantilov9612de92011-05-07 07:40:20 +00003448 *
3449 * Communicates with the manageability block. On success return 0
3450 * else return IXGBE_ERR_HOST_INTERFACE_COMMAND.
3451 **/
Emil Tantilov79488c52011-10-11 08:24:57 +00003452static s32 ixgbe_host_interface_command(struct ixgbe_hw *hw, u32 *buffer,
Emil Tantilov9612de92011-05-07 07:40:20 +00003453 u32 length)
3454{
Emil Tantilov331bcf42011-10-22 05:21:32 +00003455 u32 hicr, i, bi;
Emil Tantilov9612de92011-05-07 07:40:20 +00003456 u32 hdr_size = sizeof(struct ixgbe_hic_hdr);
3457 u8 buf_len, dword_len;
3458
3459 s32 ret_val = 0;
3460
3461 if (length == 0 || length & 0x3 ||
3462 length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) {
3463 hw_dbg(hw, "Buffer length failure.\n");
3464 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3465 goto out;
3466 }
3467
3468 /* Check that the host interface is enabled. */
3469 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
3470 if ((hicr & IXGBE_HICR_EN) == 0) {
3471 hw_dbg(hw, "IXGBE_HOST_EN bit disabled.\n");
3472 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3473 goto out;
3474 }
3475
3476 /* Calculate length in DWORDs */
3477 dword_len = length >> 2;
3478
3479 /*
3480 * The device driver writes the relevant command block
3481 * into the ram area.
3482 */
3483 for (i = 0; i < dword_len; i++)
3484 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_FLEX_MNG,
Emil Tantilov79488c52011-10-11 08:24:57 +00003485 i, cpu_to_le32(buffer[i]));
Emil Tantilov9612de92011-05-07 07:40:20 +00003486
3487 /* Setting this bit tells the ARC that a new command is pending. */
3488 IXGBE_WRITE_REG(hw, IXGBE_HICR, hicr | IXGBE_HICR_C);
3489
3490 for (i = 0; i < IXGBE_HI_COMMAND_TIMEOUT; i++) {
3491 hicr = IXGBE_READ_REG(hw, IXGBE_HICR);
3492 if (!(hicr & IXGBE_HICR_C))
3493 break;
3494 usleep_range(1000, 2000);
3495 }
3496
3497 /* Check command successful completion. */
3498 if (i == IXGBE_HI_COMMAND_TIMEOUT ||
3499 (!(IXGBE_READ_REG(hw, IXGBE_HICR) & IXGBE_HICR_SV))) {
3500 hw_dbg(hw, "Command has failed with no status valid.\n");
3501 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3502 goto out;
3503 }
3504
3505 /* Calculate length in DWORDs */
3506 dword_len = hdr_size >> 2;
3507
3508 /* first pull in the header so we know the buffer length */
Emil Tantilov331bcf42011-10-22 05:21:32 +00003509 for (bi = 0; bi < dword_len; bi++) {
3510 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3511 le32_to_cpus(&buffer[bi]);
Emil Tantilov79488c52011-10-11 08:24:57 +00003512 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003513
3514 /* If there is any thing in data position pull it in */
3515 buf_len = ((struct ixgbe_hic_hdr *)buffer)->buf_len;
3516 if (buf_len == 0)
3517 goto out;
3518
3519 if (length < (buf_len + hdr_size)) {
3520 hw_dbg(hw, "Buffer not large enough for reply message.\n");
3521 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3522 goto out;
3523 }
3524
Emil Tantilov331bcf42011-10-22 05:21:32 +00003525 /* Calculate length in DWORDs, add 3 for odd lengths */
3526 dword_len = (buf_len + 3) >> 2;
Emil Tantilov9612de92011-05-07 07:40:20 +00003527
Emil Tantilov331bcf42011-10-22 05:21:32 +00003528 /* Pull in the rest of the buffer (bi is where we left off)*/
3529 for (; bi <= dword_len; bi++) {
3530 buffer[bi] = IXGBE_READ_REG_ARRAY(hw, IXGBE_FLEX_MNG, bi);
3531 le32_to_cpus(&buffer[bi]);
3532 }
Emil Tantilov9612de92011-05-07 07:40:20 +00003533
3534out:
3535 return ret_val;
3536}
3537
3538/**
3539 * ixgbe_set_fw_drv_ver_generic - Sends driver version to firmware
3540 * @hw: pointer to the HW structure
3541 * @maj: driver version major number
3542 * @min: driver version minor number
3543 * @build: driver version build number
3544 * @sub: driver version sub build number
3545 *
3546 * Sends driver version number to firmware through the manageability
3547 * block. On success return 0
3548 * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring
3549 * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails.
3550 **/
3551s32 ixgbe_set_fw_drv_ver_generic(struct ixgbe_hw *hw, u8 maj, u8 min,
3552 u8 build, u8 sub)
3553{
3554 struct ixgbe_hic_drv_info fw_cmd;
3555 int i;
3556 s32 ret_val = 0;
3557
3558 if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM) != 0) {
3559 ret_val = IXGBE_ERR_SWFW_SYNC;
3560 goto out;
3561 }
3562
3563 fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO;
3564 fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN;
3565 fw_cmd.hdr.cmd_or_resp.cmd_resv = FW_CEM_CMD_RESERVED;
3566 fw_cmd.port_num = (u8)hw->bus.func;
3567 fw_cmd.ver_maj = maj;
3568 fw_cmd.ver_min = min;
3569 fw_cmd.ver_build = build;
3570 fw_cmd.ver_sub = sub;
3571 fw_cmd.hdr.checksum = 0;
3572 fw_cmd.hdr.checksum = ixgbe_calculate_checksum((u8 *)&fw_cmd,
3573 (FW_CEM_HDR_LEN + fw_cmd.hdr.buf_len));
3574 fw_cmd.pad = 0;
3575 fw_cmd.pad2 = 0;
3576
3577 for (i = 0; i <= FW_CEM_MAX_RETRIES; i++) {
Emil Tantilov79488c52011-10-11 08:24:57 +00003578 ret_val = ixgbe_host_interface_command(hw, (u32 *)&fw_cmd,
Emil Tantilov9612de92011-05-07 07:40:20 +00003579 sizeof(fw_cmd));
3580 if (ret_val != 0)
3581 continue;
3582
3583 if (fw_cmd.hdr.cmd_or_resp.ret_status ==
3584 FW_CEM_RESP_STATUS_SUCCESS)
3585 ret_val = 0;
3586 else
3587 ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND;
3588
3589 break;
3590 }
3591
3592 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM);
3593out:
3594 return ret_val;
3595}
Emil Tantilovff9d1a52011-08-16 04:35:11 +00003596
3597/**
3598 * ixgbe_clear_tx_pending - Clear pending TX work from the PCIe fifo
3599 * @hw: pointer to the hardware structure
3600 *
3601 * The 82599 and x540 MACs can experience issues if TX work is still pending
3602 * when a reset occurs. This function prevents this by flushing the PCIe
3603 * buffers on the system.
3604 **/
3605void ixgbe_clear_tx_pending(struct ixgbe_hw *hw)
3606{
3607 u32 gcr_ext, hlreg0;
3608
3609 /*
3610 * If double reset is not requested then all transactions should
3611 * already be clear and as such there is no work to do
3612 */
3613 if (!(hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED))
3614 return;
3615
3616 /*
3617 * Set loopback enable to prevent any transmits from being sent
3618 * should the link come up. This assumes that the RXCTRL.RXEN bit
3619 * has already been cleared.
3620 */
3621 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
3622 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0 | IXGBE_HLREG0_LPBK);
3623
3624 /* initiate cleaning flow for buffers in the PCIe transaction layer */
3625 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3626 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT,
3627 gcr_ext | IXGBE_GCR_EXT_BUFFERS_CLEAR);
3628
3629 /* Flush all writes and allow 20usec for all transactions to clear */
3630 IXGBE_WRITE_FLUSH(hw);
3631 udelay(20);
3632
3633 /* restore previous register values */
3634 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3635 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3636}
Don Skidmoree1ea9152012-02-17 02:38:58 +00003637
3638static const u8 ixgbe_emc_temp_data[4] = {
3639 IXGBE_EMC_INTERNAL_DATA,
3640 IXGBE_EMC_DIODE1_DATA,
3641 IXGBE_EMC_DIODE2_DATA,
3642 IXGBE_EMC_DIODE3_DATA
3643};
3644static const u8 ixgbe_emc_therm_limit[4] = {
3645 IXGBE_EMC_INTERNAL_THERM_LIMIT,
3646 IXGBE_EMC_DIODE1_THERM_LIMIT,
3647 IXGBE_EMC_DIODE2_THERM_LIMIT,
3648 IXGBE_EMC_DIODE3_THERM_LIMIT
3649};
3650
3651/**
3652 * ixgbe_get_ets_data - Extracts the ETS bit data
3653 * @hw: pointer to hardware structure
3654 * @ets_cfg: extected ETS data
3655 * @ets_offset: offset of ETS data
3656 *
3657 * Returns error code.
3658 **/
3659static s32 ixgbe_get_ets_data(struct ixgbe_hw *hw, u16 *ets_cfg,
3660 u16 *ets_offset)
3661{
3662 s32 status = 0;
3663
3664 status = hw->eeprom.ops.read(hw, IXGBE_ETS_CFG, ets_offset);
3665 if (status)
3666 goto out;
3667
3668 if ((*ets_offset == 0x0000) || (*ets_offset == 0xFFFF)) {
3669 status = IXGBE_NOT_IMPLEMENTED;
3670 goto out;
3671 }
3672
3673 status = hw->eeprom.ops.read(hw, *ets_offset, ets_cfg);
3674 if (status)
3675 goto out;
3676
3677 if ((*ets_cfg & IXGBE_ETS_TYPE_MASK) != IXGBE_ETS_TYPE_EMC_SHIFTED) {
3678 status = IXGBE_NOT_IMPLEMENTED;
3679 goto out;
3680 }
3681
3682out:
3683 return status;
3684}
3685
3686/**
3687 * ixgbe_get_thermal_sensor_data - Gathers thermal sensor data
3688 * @hw: pointer to hardware structure
3689 *
3690 * Returns the thermal sensor data structure
3691 **/
3692s32 ixgbe_get_thermal_sensor_data_generic(struct ixgbe_hw *hw)
3693{
3694 s32 status = 0;
3695 u16 ets_offset;
3696 u16 ets_cfg;
3697 u16 ets_sensor;
3698 u8 num_sensors;
3699 u8 i;
3700 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3701
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003702 /* Only support thermal sensors attached to physical port 0 */
3703 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) {
Don Skidmoree1ea9152012-02-17 02:38:58 +00003704 status = IXGBE_NOT_IMPLEMENTED;
3705 goto out;
3706 }
3707
3708 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3709 if (status)
3710 goto out;
3711
3712 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3713 if (num_sensors > IXGBE_MAX_SENSORS)
3714 num_sensors = IXGBE_MAX_SENSORS;
3715
3716 for (i = 0; i < num_sensors; i++) {
3717 u8 sensor_index;
3718 u8 sensor_location;
3719
3720 status = hw->eeprom.ops.read(hw, (ets_offset + 1 + i),
3721 &ets_sensor);
3722 if (status)
3723 goto out;
3724
3725 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3726 IXGBE_ETS_DATA_INDEX_SHIFT);
3727 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3728 IXGBE_ETS_DATA_LOC_SHIFT);
3729
3730 if (sensor_location != 0) {
3731 status = hw->phy.ops.read_i2c_byte(hw,
3732 ixgbe_emc_temp_data[sensor_index],
3733 IXGBE_I2C_THERMAL_SENSOR_ADDR,
3734 &data->sensor[i].temp);
3735 if (status)
3736 goto out;
3737 }
3738 }
3739out:
3740 return status;
3741}
3742
3743/**
3744 * ixgbe_init_thermal_sensor_thresh_generic - Inits thermal sensor thresholds
3745 * @hw: pointer to hardware structure
3746 *
3747 * Inits the thermal sensor thresholds according to the NVM map
3748 * and save off the threshold and location values into mac.thermal_sensor_data
3749 **/
3750s32 ixgbe_init_thermal_sensor_thresh_generic(struct ixgbe_hw *hw)
3751{
3752 s32 status = 0;
3753 u16 ets_offset;
3754 u16 ets_cfg;
3755 u16 ets_sensor;
3756 u8 low_thresh_delta;
3757 u8 num_sensors;
3758 u8 therm_limit;
3759 u8 i;
3760 struct ixgbe_thermal_sensor_data *data = &hw->mac.thermal_sensor_data;
3761
3762 memset(data, 0, sizeof(struct ixgbe_thermal_sensor_data));
3763
Don Skidmore3ca8bc62012-04-12 00:33:31 +00003764 /* Only support thermal sensors attached to physical port 0 */
3765 if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) {
Don Skidmoree1ea9152012-02-17 02:38:58 +00003766 status = IXGBE_NOT_IMPLEMENTED;
3767 goto out;
3768 }
3769
3770 status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset);
3771 if (status)
3772 goto out;
3773
3774 low_thresh_delta = ((ets_cfg & IXGBE_ETS_LTHRES_DELTA_MASK) >>
3775 IXGBE_ETS_LTHRES_DELTA_SHIFT);
3776 num_sensors = (ets_cfg & IXGBE_ETS_NUM_SENSORS_MASK);
3777 if (num_sensors > IXGBE_MAX_SENSORS)
3778 num_sensors = IXGBE_MAX_SENSORS;
3779
3780 for (i = 0; i < num_sensors; i++) {
3781 u8 sensor_index;
3782 u8 sensor_location;
3783
3784 hw->eeprom.ops.read(hw, (ets_offset + 1 + i), &ets_sensor);
3785 sensor_index = ((ets_sensor & IXGBE_ETS_DATA_INDEX_MASK) >>
3786 IXGBE_ETS_DATA_INDEX_SHIFT);
3787 sensor_location = ((ets_sensor & IXGBE_ETS_DATA_LOC_MASK) >>
3788 IXGBE_ETS_DATA_LOC_SHIFT);
3789 therm_limit = ets_sensor & IXGBE_ETS_DATA_HTHRESH_MASK;
3790
3791 hw->phy.ops.write_i2c_byte(hw,
3792 ixgbe_emc_therm_limit[sensor_index],
3793 IXGBE_I2C_THERMAL_SENSOR_ADDR, therm_limit);
3794
3795 if (sensor_location == 0)
3796 continue;
3797
3798 data->sensor[i].location = sensor_location;
3799 data->sensor[i].caution_thresh = therm_limit;
3800 data->sensor[i].max_op_thresh = therm_limit - low_thresh_delta;
3801 }
3802out:
3803 return status;
3804}
3805