blob: d5ede2df3e425955f75d48f9e652eac0a03f1a22 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Shannon Nelson8c47eaa2010-01-13 01:49:34 +00004 Copyright(c) 1999 - 2010 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
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070049static void ixgbe_enable_rar(struct ixgbe_hw *hw, u32 index);
50static void ixgbe_disable_rar(struct ixgbe_hw *hw, u32 index);
Auke Kok9a799d72007-09-15 14:07:45 -070051static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070052static void ixgbe_add_uc_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq);
Don Skidmore7b25cdb2009-08-25 04:47:32 +000053static s32 ixgbe_setup_fc(struct ixgbe_hw *hw, s32 packetbuf_num);
Auke Kok9a799d72007-09-15 14:07:45 -070054
55/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070056 * ixgbe_start_hw_generic - Prepare hardware for Tx/Rx
Auke Kok9a799d72007-09-15 14:07:45 -070057 * @hw: pointer to hardware structure
58 *
59 * Starts the hardware by filling the bus info structure and media type, clears
60 * all on chip counters, initializes receive address registers, multicast
61 * table, VLAN filter table, calls routine to set up link and flow control
62 * settings, and leaves transmit and receive units disabled and uninitialized
63 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070064s32 ixgbe_start_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -070065{
66 u32 ctrl_ext;
67
68 /* Set the media type */
69 hw->phy.media_type = hw->mac.ops.get_media_type(hw);
70
71 /* Identify the PHY */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070072 hw->phy.ops.identify(hw);
Auke Kok9a799d72007-09-15 14:07:45 -070073
Auke Kok9a799d72007-09-15 14:07:45 -070074 /* Clear the VLAN filter table */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070075 hw->mac.ops.clear_vfta(hw);
Auke Kok9a799d72007-09-15 14:07:45 -070076
Auke Kok9a799d72007-09-15 14:07:45 -070077 /* Clear statistics registers */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070078 hw->mac.ops.clear_hw_cntrs(hw);
Auke Kok9a799d72007-09-15 14:07:45 -070079
80 /* Set No Snoop Disable */
81 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
82 ctrl_ext |= IXGBE_CTRL_EXT_NS_DIS;
83 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok3957d632007-10-31 15:22:10 -070084 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -070085
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +000086 /* Setup flow control */
87 ixgbe_setup_fc(hw, 0);
88
Auke Kok9a799d72007-09-15 14:07:45 -070089 /* Clear adapter stopped flag */
90 hw->adapter_stopped = false;
91
92 return 0;
93}
94
95/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070096 * ixgbe_init_hw_generic - Generic hardware initialization
Auke Kok9a799d72007-09-15 14:07:45 -070097 * @hw: pointer to hardware structure
98 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -070099 * Initialize the hardware by resetting the hardware, filling the bus info
Auke Kok9a799d72007-09-15 14:07:45 -0700100 * structure and media type, clears all on chip counters, initializes receive
101 * address registers, multicast table, VLAN filter table, calls routine to set
102 * up link and flow control settings, and leaves transmit and receive units
103 * disabled and uninitialized
104 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700105s32 ixgbe_init_hw_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700106{
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000107 s32 status;
108
Auke Kok9a799d72007-09-15 14:07:45 -0700109 /* Reset the hardware */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000110 status = hw->mac.ops.reset_hw(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700111
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000112 if (status == 0) {
113 /* Start the HW */
114 status = hw->mac.ops.start_hw(hw);
115 }
Auke Kok9a799d72007-09-15 14:07:45 -0700116
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +0000117 return status;
Auke Kok9a799d72007-09-15 14:07:45 -0700118}
119
120/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700121 * ixgbe_clear_hw_cntrs_generic - Generic clear hardware counters
Auke Kok9a799d72007-09-15 14:07:45 -0700122 * @hw: pointer to hardware structure
123 *
124 * Clears all hardware statistics counters by reading them from the hardware
125 * Statistics counters are clear on read.
126 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700127s32 ixgbe_clear_hw_cntrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700128{
129 u16 i = 0;
130
131 IXGBE_READ_REG(hw, IXGBE_CRCERRS);
132 IXGBE_READ_REG(hw, IXGBE_ILLERRC);
133 IXGBE_READ_REG(hw, IXGBE_ERRBC);
134 IXGBE_READ_REG(hw, IXGBE_MSPDC);
135 for (i = 0; i < 8; i++)
136 IXGBE_READ_REG(hw, IXGBE_MPC(i));
137
138 IXGBE_READ_REG(hw, IXGBE_MLFC);
139 IXGBE_READ_REG(hw, IXGBE_MRFC);
140 IXGBE_READ_REG(hw, IXGBE_RLEC);
141 IXGBE_READ_REG(hw, IXGBE_LXONTXC);
142 IXGBE_READ_REG(hw, IXGBE_LXONRXC);
143 IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
144 IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
145
146 for (i = 0; i < 8; i++) {
147 IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
148 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
149 IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
150 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
151 }
152
153 IXGBE_READ_REG(hw, IXGBE_PRC64);
154 IXGBE_READ_REG(hw, IXGBE_PRC127);
155 IXGBE_READ_REG(hw, IXGBE_PRC255);
156 IXGBE_READ_REG(hw, IXGBE_PRC511);
157 IXGBE_READ_REG(hw, IXGBE_PRC1023);
158 IXGBE_READ_REG(hw, IXGBE_PRC1522);
159 IXGBE_READ_REG(hw, IXGBE_GPRC);
160 IXGBE_READ_REG(hw, IXGBE_BPRC);
161 IXGBE_READ_REG(hw, IXGBE_MPRC);
162 IXGBE_READ_REG(hw, IXGBE_GPTC);
163 IXGBE_READ_REG(hw, IXGBE_GORCL);
164 IXGBE_READ_REG(hw, IXGBE_GORCH);
165 IXGBE_READ_REG(hw, IXGBE_GOTCL);
166 IXGBE_READ_REG(hw, IXGBE_GOTCH);
167 for (i = 0; i < 8; i++)
168 IXGBE_READ_REG(hw, IXGBE_RNBC(i));
169 IXGBE_READ_REG(hw, IXGBE_RUC);
170 IXGBE_READ_REG(hw, IXGBE_RFC);
171 IXGBE_READ_REG(hw, IXGBE_ROC);
172 IXGBE_READ_REG(hw, IXGBE_RJC);
173 IXGBE_READ_REG(hw, IXGBE_MNGPRC);
174 IXGBE_READ_REG(hw, IXGBE_MNGPDC);
175 IXGBE_READ_REG(hw, IXGBE_MNGPTC);
176 IXGBE_READ_REG(hw, IXGBE_TORL);
177 IXGBE_READ_REG(hw, IXGBE_TORH);
178 IXGBE_READ_REG(hw, IXGBE_TPR);
179 IXGBE_READ_REG(hw, IXGBE_TPT);
180 IXGBE_READ_REG(hw, IXGBE_PTC64);
181 IXGBE_READ_REG(hw, IXGBE_PTC127);
182 IXGBE_READ_REG(hw, IXGBE_PTC255);
183 IXGBE_READ_REG(hw, IXGBE_PTC511);
184 IXGBE_READ_REG(hw, IXGBE_PTC1023);
185 IXGBE_READ_REG(hw, IXGBE_PTC1522);
186 IXGBE_READ_REG(hw, IXGBE_MPTC);
187 IXGBE_READ_REG(hw, IXGBE_BPTC);
188 for (i = 0; i < 16; i++) {
189 IXGBE_READ_REG(hw, IXGBE_QPRC(i));
190 IXGBE_READ_REG(hw, IXGBE_QBRC(i));
191 IXGBE_READ_REG(hw, IXGBE_QPTC(i));
192 IXGBE_READ_REG(hw, IXGBE_QBTC(i));
193 }
194
195 return 0;
196}
197
198/**
Don Skidmore289700db2010-12-03 03:32:58 +0000199 * ixgbe_read_pba_string_generic - Reads part number string from EEPROM
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700200 * @hw: pointer to hardware structure
Don Skidmore289700db2010-12-03 03:32:58 +0000201 * @pba_num: stores the part number string from the EEPROM
202 * @pba_num_size: part number string buffer length
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700203 *
Don Skidmore289700db2010-12-03 03:32:58 +0000204 * Reads the part number string from the EEPROM.
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700205 **/
Don Skidmore289700db2010-12-03 03:32:58 +0000206s32 ixgbe_read_pba_string_generic(struct ixgbe_hw *hw, u8 *pba_num,
207 u32 pba_num_size)
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700208{
209 s32 ret_val;
210 u16 data;
Don Skidmore289700db2010-12-03 03:32:58 +0000211 u16 pba_ptr;
212 u16 offset;
213 u16 length;
214
215 if (pba_num == NULL) {
216 hw_dbg(hw, "PBA string buffer was null\n");
217 return IXGBE_ERR_INVALID_ARGUMENT;
218 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700219
220 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data);
221 if (ret_val) {
222 hw_dbg(hw, "NVM Read Error\n");
223 return ret_val;
224 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700225
Don Skidmore289700db2010-12-03 03:32:58 +0000226 ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM1_PTR, &pba_ptr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700227 if (ret_val) {
228 hw_dbg(hw, "NVM Read Error\n");
229 return ret_val;
230 }
Don Skidmore289700db2010-12-03 03:32:58 +0000231
232 /*
233 * if data is not ptr guard the PBA must be in legacy format which
234 * means pba_ptr is actually our second data word for the PBA number
235 * and we can decode it into an ascii string
236 */
237 if (data != IXGBE_PBANUM_PTR_GUARD) {
238 hw_dbg(hw, "NVM PBA number is not stored as string\n");
239
240 /* we will need 11 characters to store the PBA */
241 if (pba_num_size < 11) {
242 hw_dbg(hw, "PBA string buffer too small\n");
243 return IXGBE_ERR_NO_SPACE;
244 }
245
246 /* extract hex string from data and pba_ptr */
247 pba_num[0] = (data >> 12) & 0xF;
248 pba_num[1] = (data >> 8) & 0xF;
249 pba_num[2] = (data >> 4) & 0xF;
250 pba_num[3] = data & 0xF;
251 pba_num[4] = (pba_ptr >> 12) & 0xF;
252 pba_num[5] = (pba_ptr >> 8) & 0xF;
253 pba_num[6] = '-';
254 pba_num[7] = 0;
255 pba_num[8] = (pba_ptr >> 4) & 0xF;
256 pba_num[9] = pba_ptr & 0xF;
257
258 /* put a null character on the end of our string */
259 pba_num[10] = '\0';
260
261 /* switch all the data but the '-' to hex char */
262 for (offset = 0; offset < 10; offset++) {
263 if (pba_num[offset] < 0xA)
264 pba_num[offset] += '0';
265 else if (pba_num[offset] < 0x10)
266 pba_num[offset] += 'A' - 0xA;
267 }
268
269 return 0;
270 }
271
272 ret_val = hw->eeprom.ops.read(hw, pba_ptr, &length);
273 if (ret_val) {
274 hw_dbg(hw, "NVM Read Error\n");
275 return ret_val;
276 }
277
278 if (length == 0xFFFF || length == 0) {
279 hw_dbg(hw, "NVM PBA number section invalid length\n");
280 return IXGBE_ERR_PBA_SECTION;
281 }
282
283 /* check if pba_num buffer is big enough */
284 if (pba_num_size < (((u32)length * 2) - 1)) {
285 hw_dbg(hw, "PBA string buffer too small\n");
286 return IXGBE_ERR_NO_SPACE;
287 }
288
289 /* trim pba length from start of string */
290 pba_ptr++;
291 length--;
292
293 for (offset = 0; offset < length; offset++) {
294 ret_val = hw->eeprom.ops.read(hw, pba_ptr + offset, &data);
295 if (ret_val) {
296 hw_dbg(hw, "NVM Read Error\n");
297 return ret_val;
298 }
299 pba_num[offset * 2] = (u8)(data >> 8);
300 pba_num[(offset * 2) + 1] = (u8)(data & 0xFF);
301 }
302 pba_num[offset * 2] = '\0';
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700303
304 return 0;
305}
306
307/**
308 * ixgbe_get_mac_addr_generic - Generic get MAC address
Auke Kok9a799d72007-09-15 14:07:45 -0700309 * @hw: pointer to hardware structure
310 * @mac_addr: Adapter MAC address
311 *
312 * Reads the adapter's MAC address from first Receive Address Register (RAR0)
313 * A reset of the adapter must be performed prior to calling this function
314 * in order for the MAC address to have been loaded from the EEPROM into RAR0
315 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700316s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr)
Auke Kok9a799d72007-09-15 14:07:45 -0700317{
318 u32 rar_high;
319 u32 rar_low;
320 u16 i;
321
322 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(0));
323 rar_low = IXGBE_READ_REG(hw, IXGBE_RAL(0));
324
325 for (i = 0; i < 4; i++)
326 mac_addr[i] = (u8)(rar_low >> (i*8));
327
328 for (i = 0; i < 2; i++)
329 mac_addr[i+4] = (u8)(rar_high >> (i*8));
330
331 return 0;
332}
333
Auke Kok9a799d72007-09-15 14:07:45 -0700334/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000335 * ixgbe_get_bus_info_generic - Generic set PCI bus info
336 * @hw: pointer to hardware structure
337 *
338 * Sets the PCI bus info (speed, width, type) within the ixgbe_hw structure
339 **/
340s32 ixgbe_get_bus_info_generic(struct ixgbe_hw *hw)
341{
342 struct ixgbe_adapter *adapter = hw->back;
343 struct ixgbe_mac_info *mac = &hw->mac;
344 u16 link_status;
345
346 hw->bus.type = ixgbe_bus_type_pci_express;
347
348 /* Get the negotiated link width and speed from PCI config space */
349 pci_read_config_word(adapter->pdev, IXGBE_PCI_LINK_STATUS,
350 &link_status);
351
352 switch (link_status & IXGBE_PCI_LINK_WIDTH) {
353 case IXGBE_PCI_LINK_WIDTH_1:
354 hw->bus.width = ixgbe_bus_width_pcie_x1;
355 break;
356 case IXGBE_PCI_LINK_WIDTH_2:
357 hw->bus.width = ixgbe_bus_width_pcie_x2;
358 break;
359 case IXGBE_PCI_LINK_WIDTH_4:
360 hw->bus.width = ixgbe_bus_width_pcie_x4;
361 break;
362 case IXGBE_PCI_LINK_WIDTH_8:
363 hw->bus.width = ixgbe_bus_width_pcie_x8;
364 break;
365 default:
366 hw->bus.width = ixgbe_bus_width_unknown;
367 break;
368 }
369
370 switch (link_status & IXGBE_PCI_LINK_SPEED) {
371 case IXGBE_PCI_LINK_SPEED_2500:
372 hw->bus.speed = ixgbe_bus_speed_2500;
373 break;
374 case IXGBE_PCI_LINK_SPEED_5000:
375 hw->bus.speed = ixgbe_bus_speed_5000;
376 break;
377 default:
378 hw->bus.speed = ixgbe_bus_speed_unknown;
379 break;
380 }
381
382 mac->ops.set_lan_id(hw);
383
384 return 0;
385}
386
387/**
388 * ixgbe_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices
389 * @hw: pointer to the HW structure
390 *
391 * Determines the LAN function id by reading memory-mapped registers
392 * and swaps the port value if requested.
393 **/
394void ixgbe_set_lan_id_multi_port_pcie(struct ixgbe_hw *hw)
395{
396 struct ixgbe_bus_info *bus = &hw->bus;
397 u32 reg;
398
399 reg = IXGBE_READ_REG(hw, IXGBE_STATUS);
400 bus->func = (reg & IXGBE_STATUS_LAN_ID) >> IXGBE_STATUS_LAN_ID_SHIFT;
401 bus->lan_id = bus->func;
402
403 /* check for a port swap */
404 reg = IXGBE_READ_REG(hw, IXGBE_FACTPS);
405 if (reg & IXGBE_FACTPS_LFS)
406 bus->func ^= 0x1;
407}
408
409/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700410 * ixgbe_stop_adapter_generic - Generic stop Tx/Rx units
Auke Kok9a799d72007-09-15 14:07:45 -0700411 * @hw: pointer to hardware structure
412 *
413 * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts,
414 * disables transmit and receive units. The adapter_stopped flag is used by
415 * the shared code and drivers to determine if the adapter is in a stopped
416 * state and should not touch the hardware.
417 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700418s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700419{
420 u32 number_of_queues;
421 u32 reg_val;
422 u16 i;
423
424 /*
425 * Set the adapter_stopped flag so other driver functions stop touching
426 * the hardware
427 */
428 hw->adapter_stopped = true;
429
430 /* Disable the receive unit */
431 reg_val = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
432 reg_val &= ~(IXGBE_RXCTRL_RXEN);
433 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, reg_val);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700434 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700435 msleep(2);
436
437 /* Clear interrupt mask to stop from interrupts being generated */
438 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
439
440 /* Clear any pending interrupts */
441 IXGBE_READ_REG(hw, IXGBE_EICR);
442
443 /* Disable the transmit unit. Each queue must be disabled. */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700444 number_of_queues = hw->mac.max_tx_queues;
Auke Kok9a799d72007-09-15 14:07:45 -0700445 for (i = 0; i < number_of_queues; i++) {
446 reg_val = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
447 if (reg_val & IXGBE_TXDCTL_ENABLE) {
448 reg_val &= ~IXGBE_TXDCTL_ENABLE;
449 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), reg_val);
450 }
451 }
452
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700453 /*
454 * Prevent the PCI-E bus from from hanging by disabling PCI-E master
455 * access and verify no pending requests
456 */
457 if (ixgbe_disable_pcie_master(hw) != 0)
458 hw_dbg(hw, "PCI-E Master disable polling has failed.\n");
459
Auke Kok9a799d72007-09-15 14:07:45 -0700460 return 0;
461}
462
463/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700464 * ixgbe_led_on_generic - Turns on the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700465 * @hw: pointer to hardware structure
466 * @index: led number to turn on
467 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700468s32 ixgbe_led_on_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700469{
470 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
471
472 /* To turn on the LED, set mode to ON. */
473 led_reg &= ~IXGBE_LED_MODE_MASK(index);
474 led_reg |= IXGBE_LED_ON << IXGBE_LED_MODE_SHIFT(index);
475 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700476 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700477
478 return 0;
479}
480
481/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700482 * ixgbe_led_off_generic - Turns off the software controllable LEDs.
Auke Kok9a799d72007-09-15 14:07:45 -0700483 * @hw: pointer to hardware structure
484 * @index: led number to turn off
485 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700486s32 ixgbe_led_off_generic(struct ixgbe_hw *hw, u32 index)
Auke Kok9a799d72007-09-15 14:07:45 -0700487{
488 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
489
490 /* To turn off the LED, set mode to OFF. */
491 led_reg &= ~IXGBE_LED_MODE_MASK(index);
492 led_reg |= IXGBE_LED_OFF << IXGBE_LED_MODE_SHIFT(index);
493 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
Auke Kok3957d632007-10-31 15:22:10 -0700494 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700495
496 return 0;
497}
498
Auke Kok9a799d72007-09-15 14:07:45 -0700499/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700500 * ixgbe_init_eeprom_params_generic - Initialize EEPROM params
Auke Kok9a799d72007-09-15 14:07:45 -0700501 * @hw: pointer to hardware structure
502 *
503 * Initializes the EEPROM parameters ixgbe_eeprom_info within the
504 * ixgbe_hw struct in order to set up EEPROM access.
505 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700506s32 ixgbe_init_eeprom_params_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -0700507{
508 struct ixgbe_eeprom_info *eeprom = &hw->eeprom;
509 u32 eec;
510 u16 eeprom_size;
511
512 if (eeprom->type == ixgbe_eeprom_uninitialized) {
513 eeprom->type = ixgbe_eeprom_none;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700514 /* Set default semaphore delay to 10ms which is a well
515 * tested value */
516 eeprom->semaphore_delay = 10;
Auke Kok9a799d72007-09-15 14:07:45 -0700517
518 /*
519 * Check for EEPROM present first.
520 * If not present leave as none
521 */
522 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
523 if (eec & IXGBE_EEC_PRES) {
524 eeprom->type = ixgbe_eeprom_spi;
525
526 /*
527 * SPI EEPROM is assumed here. This code would need to
528 * change if a future EEPROM is not SPI.
529 */
530 eeprom_size = (u16)((eec & IXGBE_EEC_SIZE) >>
531 IXGBE_EEC_SIZE_SHIFT);
532 eeprom->word_size = 1 << (eeprom_size +
533 IXGBE_EEPROM_WORD_SIZE_SHIFT);
534 }
535
536 if (eec & IXGBE_EEC_ADDR_SIZE)
537 eeprom->address_bits = 16;
538 else
539 eeprom->address_bits = 8;
540 hw_dbg(hw, "Eeprom params: type = %d, size = %d, address bits: "
541 "%d\n", eeprom->type, eeprom->word_size,
542 eeprom->address_bits);
543 }
544
545 return 0;
546}
547
548/**
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000549 * ixgbe_write_eeprom_generic - Writes 16 bit value to EEPROM
550 * @hw: pointer to hardware structure
551 * @offset: offset within the EEPROM to be written to
552 * @data: 16 bit word to be written to the EEPROM
553 *
554 * If ixgbe_eeprom_update_checksum is not called after this function, the
555 * EEPROM will most likely contain an invalid checksum.
556 **/
557s32 ixgbe_write_eeprom_generic(struct ixgbe_hw *hw, u16 offset, u16 data)
558{
559 s32 status;
560 u8 write_opcode = IXGBE_EEPROM_WRITE_OPCODE_SPI;
561
562 hw->eeprom.ops.init_params(hw);
563
564 if (offset >= hw->eeprom.word_size) {
565 status = IXGBE_ERR_EEPROM;
566 goto out;
567 }
568
569 /* Prepare the EEPROM for writing */
570 status = ixgbe_acquire_eeprom(hw);
571
572 if (status == 0) {
573 if (ixgbe_ready_eeprom(hw) != 0) {
574 ixgbe_release_eeprom(hw);
575 status = IXGBE_ERR_EEPROM;
576 }
577 }
578
579 if (status == 0) {
580 ixgbe_standby_eeprom(hw);
581
582 /* Send the WRITE ENABLE command (8 bit opcode ) */
583 ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_WREN_OPCODE_SPI,
584 IXGBE_EEPROM_OPCODE_BITS);
585
586 ixgbe_standby_eeprom(hw);
587
588 /*
589 * Some SPI eeproms use the 8th address bit embedded in the
590 * opcode
591 */
592 if ((hw->eeprom.address_bits == 8) && (offset >= 128))
593 write_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
594
595 /* Send the Write command (8-bit opcode + addr) */
596 ixgbe_shift_out_eeprom_bits(hw, write_opcode,
597 IXGBE_EEPROM_OPCODE_BITS);
598 ixgbe_shift_out_eeprom_bits(hw, (u16)(offset*2),
599 hw->eeprom.address_bits);
600
601 /* Send the data */
602 data = (data >> 8) | (data << 8);
603 ixgbe_shift_out_eeprom_bits(hw, data, 16);
604 ixgbe_standby_eeprom(hw);
605
606 msleep(hw->eeprom.semaphore_delay);
607 /* Done with writing - release the EEPROM */
608 ixgbe_release_eeprom(hw);
609 }
610
611out:
612 return status;
613}
614
615/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700616 * ixgbe_read_eeprom_bit_bang_generic - Read EEPROM word using bit-bang
617 * @hw: pointer to hardware structure
618 * @offset: offset within the EEPROM to be read
619 * @data: read 16 bit value from EEPROM
620 *
621 * Reads 16 bit value from EEPROM through bit-bang method
622 **/
623s32 ixgbe_read_eeprom_bit_bang_generic(struct ixgbe_hw *hw, u16 offset,
624 u16 *data)
625{
626 s32 status;
627 u16 word_in;
628 u8 read_opcode = IXGBE_EEPROM_READ_OPCODE_SPI;
629
630 hw->eeprom.ops.init_params(hw);
631
632 if (offset >= hw->eeprom.word_size) {
633 status = IXGBE_ERR_EEPROM;
634 goto out;
635 }
636
637 /* Prepare the EEPROM for reading */
638 status = ixgbe_acquire_eeprom(hw);
639
640 if (status == 0) {
641 if (ixgbe_ready_eeprom(hw) != 0) {
642 ixgbe_release_eeprom(hw);
643 status = IXGBE_ERR_EEPROM;
644 }
645 }
646
647 if (status == 0) {
648 ixgbe_standby_eeprom(hw);
649
650 /*
651 * Some SPI eeproms use the 8th address bit embedded in the
652 * opcode
653 */
654 if ((hw->eeprom.address_bits == 8) && (offset >= 128))
655 read_opcode |= IXGBE_EEPROM_A8_OPCODE_SPI;
656
657 /* Send the READ command (opcode + addr) */
658 ixgbe_shift_out_eeprom_bits(hw, read_opcode,
659 IXGBE_EEPROM_OPCODE_BITS);
660 ixgbe_shift_out_eeprom_bits(hw, (u16)(offset*2),
661 hw->eeprom.address_bits);
662
663 /* Read the data. */
664 word_in = ixgbe_shift_in_eeprom_bits(hw, 16);
665 *data = (word_in >> 8) | (word_in << 8);
666
667 /* End this read operation */
668 ixgbe_release_eeprom(hw);
669 }
670
671out:
672 return status;
673}
674
675/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000676 * ixgbe_read_eerd_generic - Read EEPROM word using EERD
Auke Kok9a799d72007-09-15 14:07:45 -0700677 * @hw: pointer to hardware structure
678 * @offset: offset of word in the EEPROM to read
679 * @data: word read from the EEPROM
680 *
681 * Reads a 16 bit word from the EEPROM using the EERD register.
682 **/
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000683s32 ixgbe_read_eerd_generic(struct ixgbe_hw *hw, u16 offset, u16 *data)
Auke Kok9a799d72007-09-15 14:07:45 -0700684{
685 u32 eerd;
686 s32 status;
687
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700688 hw->eeprom.ops.init_params(hw);
689
690 if (offset >= hw->eeprom.word_size) {
691 status = IXGBE_ERR_EEPROM;
692 goto out;
693 }
694
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000695 eerd = (offset << IXGBE_EEPROM_RW_ADDR_SHIFT) +
696 IXGBE_EEPROM_RW_REG_START;
Auke Kok9a799d72007-09-15 14:07:45 -0700697
698 IXGBE_WRITE_REG(hw, IXGBE_EERD, eerd);
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000699 status = ixgbe_poll_eerd_eewr_done(hw, IXGBE_NVM_POLL_READ);
Auke Kok9a799d72007-09-15 14:07:45 -0700700
701 if (status == 0)
702 *data = (IXGBE_READ_REG(hw, IXGBE_EERD) >>
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000703 IXGBE_EEPROM_RW_REG_DATA);
Auke Kok9a799d72007-09-15 14:07:45 -0700704 else
705 hw_dbg(hw, "Eeprom read timed out\n");
706
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700707out:
Auke Kok9a799d72007-09-15 14:07:45 -0700708 return status;
709}
710
711/**
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000712 * ixgbe_poll_eerd_eewr_done - Poll EERD read or EEWR write status
Auke Kok9a799d72007-09-15 14:07:45 -0700713 * @hw: pointer to hardware structure
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000714 * @ee_reg: EEPROM flag for polling
Auke Kok9a799d72007-09-15 14:07:45 -0700715 *
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000716 * Polls the status bit (bit 1) of the EERD or EEWR to determine when the
717 * read or write is done respectively.
Auke Kok9a799d72007-09-15 14:07:45 -0700718 **/
Don Skidmorea391f1d2010-11-16 19:27:15 -0800719s32 ixgbe_poll_eerd_eewr_done(struct ixgbe_hw *hw, u32 ee_reg)
Auke Kok9a799d72007-09-15 14:07:45 -0700720{
721 u32 i;
722 u32 reg;
723 s32 status = IXGBE_ERR_EEPROM;
724
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +0000725 for (i = 0; i < IXGBE_EERD_EEWR_ATTEMPTS; i++) {
726 if (ee_reg == IXGBE_NVM_POLL_READ)
727 reg = IXGBE_READ_REG(hw, IXGBE_EERD);
728 else
729 reg = IXGBE_READ_REG(hw, IXGBE_EEWR);
730
731 if (reg & IXGBE_EEPROM_RW_REG_DONE) {
Auke Kok9a799d72007-09-15 14:07:45 -0700732 status = 0;
733 break;
734 }
735 udelay(5);
736 }
737 return status;
738}
739
740/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700741 * ixgbe_acquire_eeprom - Acquire EEPROM using bit-bang
742 * @hw: pointer to hardware structure
743 *
744 * Prepares EEPROM for access using bit-bang method. This function should
745 * be called before issuing a command to the EEPROM.
746 **/
747static s32 ixgbe_acquire_eeprom(struct ixgbe_hw *hw)
748{
749 s32 status = 0;
David S. Millerfc1f2092009-03-01 20:32:39 -0800750 u32 eec = 0;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700751 u32 i;
752
753 if (ixgbe_acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0)
754 status = IXGBE_ERR_SWFW_SYNC;
755
756 if (status == 0) {
757 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
758
759 /* Request EEPROM Access */
760 eec |= IXGBE_EEC_REQ;
761 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
762
763 for (i = 0; i < IXGBE_EEPROM_GRANT_ATTEMPTS; i++) {
764 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
765 if (eec & IXGBE_EEC_GNT)
766 break;
767 udelay(5);
768 }
769
770 /* Release if grant not acquired */
771 if (!(eec & IXGBE_EEC_GNT)) {
772 eec &= ~IXGBE_EEC_REQ;
773 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
774 hw_dbg(hw, "Could not acquire EEPROM grant\n");
775
776 ixgbe_release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
777 status = IXGBE_ERR_EEPROM;
778 }
779 }
780
781 /* Setup EEPROM for Read/Write */
782 if (status == 0) {
783 /* Clear CS and SK */
784 eec &= ~(IXGBE_EEC_CS | IXGBE_EEC_SK);
785 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
786 IXGBE_WRITE_FLUSH(hw);
787 udelay(1);
788 }
789 return status;
790}
791
792/**
Auke Kok9a799d72007-09-15 14:07:45 -0700793 * ixgbe_get_eeprom_semaphore - Get hardware semaphore
794 * @hw: pointer to hardware structure
795 *
796 * Sets the hardware semaphores so EEPROM access can occur for bit-bang method
797 **/
798static s32 ixgbe_get_eeprom_semaphore(struct ixgbe_hw *hw)
799{
800 s32 status = IXGBE_ERR_EEPROM;
801 u32 timeout;
802 u32 i;
803 u32 swsm;
804
805 /* Set timeout value based on size of EEPROM */
806 timeout = hw->eeprom.word_size + 1;
807
808 /* Get SMBI software semaphore between device drivers first */
809 for (i = 0; i < timeout; i++) {
810 /*
811 * If the SMBI bit is 0 when we read it, then the bit will be
812 * set and we have the semaphore
813 */
814 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
815 if (!(swsm & IXGBE_SWSM_SMBI)) {
816 status = 0;
817 break;
818 }
819 msleep(1);
820 }
821
822 /* Now get the semaphore between SW/FW through the SWESMBI bit */
823 if (status == 0) {
824 for (i = 0; i < timeout; i++) {
825 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
826
827 /* Set the SW EEPROM semaphore bit to request access */
828 swsm |= IXGBE_SWSM_SWESMBI;
829 IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm);
830
831 /*
832 * If we set the bit successfully then we got the
833 * semaphore.
834 */
835 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
836 if (swsm & IXGBE_SWSM_SWESMBI)
837 break;
838
839 udelay(50);
840 }
841
842 /*
843 * Release semaphores and return error if SW EEPROM semaphore
844 * was not granted because we don't have access to the EEPROM
845 */
846 if (i >= timeout) {
847 hw_dbg(hw, "Driver can't access the Eeprom - Semaphore "
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700848 "not granted.\n");
Auke Kok9a799d72007-09-15 14:07:45 -0700849 ixgbe_release_eeprom_semaphore(hw);
850 status = IXGBE_ERR_EEPROM;
851 }
852 }
853
854 return status;
855}
856
857/**
858 * ixgbe_release_eeprom_semaphore - Release hardware semaphore
859 * @hw: pointer to hardware structure
860 *
861 * This function clears hardware semaphore bits.
862 **/
863static void ixgbe_release_eeprom_semaphore(struct ixgbe_hw *hw)
864{
865 u32 swsm;
866
867 swsm = IXGBE_READ_REG(hw, IXGBE_SWSM);
868
869 /* Release both semaphores by writing 0 to the bits SWESMBI and SMBI */
870 swsm &= ~(IXGBE_SWSM_SWESMBI | IXGBE_SWSM_SMBI);
871 IXGBE_WRITE_REG(hw, IXGBE_SWSM, swsm);
Auke Kok3957d632007-10-31 15:22:10 -0700872 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -0700873}
874
875/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700876 * ixgbe_ready_eeprom - Polls for EEPROM ready
877 * @hw: pointer to hardware structure
878 **/
879static s32 ixgbe_ready_eeprom(struct ixgbe_hw *hw)
880{
881 s32 status = 0;
882 u16 i;
883 u8 spi_stat_reg;
884
885 /*
886 * Read "Status Register" repeatedly until the LSB is cleared. The
887 * EEPROM will signal that the command has been completed by clearing
888 * bit 0 of the internal status register. If it's not cleared within
889 * 5 milliseconds, then error out.
890 */
891 for (i = 0; i < IXGBE_EEPROM_MAX_RETRY_SPI; i += 5) {
892 ixgbe_shift_out_eeprom_bits(hw, IXGBE_EEPROM_RDSR_OPCODE_SPI,
893 IXGBE_EEPROM_OPCODE_BITS);
894 spi_stat_reg = (u8)ixgbe_shift_in_eeprom_bits(hw, 8);
895 if (!(spi_stat_reg & IXGBE_EEPROM_STATUS_RDY_SPI))
896 break;
897
898 udelay(5);
899 ixgbe_standby_eeprom(hw);
900 };
901
902 /*
903 * On some parts, SPI write time could vary from 0-20mSec on 3.3V
904 * devices (and only 0-5mSec on 5V devices)
905 */
906 if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) {
907 hw_dbg(hw, "SPI EEPROM Status error\n");
908 status = IXGBE_ERR_EEPROM;
909 }
910
911 return status;
912}
913
914/**
915 * ixgbe_standby_eeprom - Returns EEPROM to a "standby" state
916 * @hw: pointer to hardware structure
917 **/
918static void ixgbe_standby_eeprom(struct ixgbe_hw *hw)
919{
920 u32 eec;
921
922 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
923
924 /* Toggle CS to flush commands */
925 eec |= IXGBE_EEC_CS;
926 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
927 IXGBE_WRITE_FLUSH(hw);
928 udelay(1);
929 eec &= ~IXGBE_EEC_CS;
930 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
931 IXGBE_WRITE_FLUSH(hw);
932 udelay(1);
933}
934
935/**
936 * ixgbe_shift_out_eeprom_bits - Shift data bits out to the EEPROM.
937 * @hw: pointer to hardware structure
938 * @data: data to send to the EEPROM
939 * @count: number of bits to shift out
940 **/
941static void ixgbe_shift_out_eeprom_bits(struct ixgbe_hw *hw, u16 data,
942 u16 count)
943{
944 u32 eec;
945 u32 mask;
946 u32 i;
947
948 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
949
950 /*
951 * Mask is used to shift "count" bits of "data" out to the EEPROM
952 * one bit at a time. Determine the starting bit based on count
953 */
954 mask = 0x01 << (count - 1);
955
956 for (i = 0; i < count; i++) {
957 /*
958 * A "1" is shifted out to the EEPROM by setting bit "DI" to a
959 * "1", and then raising and then lowering the clock (the SK
960 * bit controls the clock input to the EEPROM). A "0" is
961 * shifted out to the EEPROM by setting "DI" to "0" and then
962 * raising and then lowering the clock.
963 */
964 if (data & mask)
965 eec |= IXGBE_EEC_DI;
966 else
967 eec &= ~IXGBE_EEC_DI;
968
969 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
970 IXGBE_WRITE_FLUSH(hw);
971
972 udelay(1);
973
974 ixgbe_raise_eeprom_clk(hw, &eec);
975 ixgbe_lower_eeprom_clk(hw, &eec);
976
977 /*
978 * Shift mask to signify next bit of data to shift in to the
979 * EEPROM
980 */
981 mask = mask >> 1;
982 };
983
984 /* We leave the "DI" bit set to "0" when we leave this routine. */
985 eec &= ~IXGBE_EEC_DI;
986 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
987 IXGBE_WRITE_FLUSH(hw);
988}
989
990/**
991 * ixgbe_shift_in_eeprom_bits - Shift data bits in from the EEPROM
992 * @hw: pointer to hardware structure
993 **/
994static u16 ixgbe_shift_in_eeprom_bits(struct ixgbe_hw *hw, u16 count)
995{
996 u32 eec;
997 u32 i;
998 u16 data = 0;
999
1000 /*
1001 * In order to read a register from the EEPROM, we need to shift
1002 * 'count' bits in from the EEPROM. Bits are "shifted in" by raising
1003 * the clock input to the EEPROM (setting the SK bit), and then reading
1004 * the value of the "DO" bit. During this "shifting in" process the
1005 * "DI" bit should always be clear.
1006 */
1007 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1008
1009 eec &= ~(IXGBE_EEC_DO | IXGBE_EEC_DI);
1010
1011 for (i = 0; i < count; i++) {
1012 data = data << 1;
1013 ixgbe_raise_eeprom_clk(hw, &eec);
1014
1015 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1016
1017 eec &= ~(IXGBE_EEC_DI);
1018 if (eec & IXGBE_EEC_DO)
1019 data |= 1;
1020
1021 ixgbe_lower_eeprom_clk(hw, &eec);
1022 }
1023
1024 return data;
1025}
1026
1027/**
1028 * ixgbe_raise_eeprom_clk - Raises the EEPROM's clock input.
1029 * @hw: pointer to hardware structure
1030 * @eec: EEC register's current value
1031 **/
1032static void ixgbe_raise_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1033{
1034 /*
1035 * Raise the clock input to the EEPROM
1036 * (setting the SK bit), then delay
1037 */
1038 *eec = *eec | IXGBE_EEC_SK;
1039 IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec);
1040 IXGBE_WRITE_FLUSH(hw);
1041 udelay(1);
1042}
1043
1044/**
1045 * ixgbe_lower_eeprom_clk - Lowers the EEPROM's clock input.
1046 * @hw: pointer to hardware structure
1047 * @eecd: EECD's current value
1048 **/
1049static void ixgbe_lower_eeprom_clk(struct ixgbe_hw *hw, u32 *eec)
1050{
1051 /*
1052 * Lower the clock input to the EEPROM (clearing the SK bit), then
1053 * delay
1054 */
1055 *eec = *eec & ~IXGBE_EEC_SK;
1056 IXGBE_WRITE_REG(hw, IXGBE_EEC, *eec);
1057 IXGBE_WRITE_FLUSH(hw);
1058 udelay(1);
1059}
1060
1061/**
1062 * ixgbe_release_eeprom - Release EEPROM, release semaphores
1063 * @hw: pointer to hardware structure
1064 **/
1065static void ixgbe_release_eeprom(struct ixgbe_hw *hw)
1066{
1067 u32 eec;
1068
1069 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
1070
1071 eec |= IXGBE_EEC_CS; /* Pull CS high */
1072 eec &= ~IXGBE_EEC_SK; /* Lower SCK */
1073
1074 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1075 IXGBE_WRITE_FLUSH(hw);
1076
1077 udelay(1);
1078
1079 /* Stop requesting EEPROM access */
1080 eec &= ~IXGBE_EEC_REQ;
1081 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1082
1083 ixgbe_release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1084}
1085
1086/**
Auke Kok9a799d72007-09-15 14:07:45 -07001087 * ixgbe_calc_eeprom_checksum - Calculates and returns the checksum
1088 * @hw: pointer to hardware structure
1089 **/
Don Skidmorea391f1d2010-11-16 19:27:15 -08001090u16 ixgbe_calc_eeprom_checksum_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001091{
1092 u16 i;
1093 u16 j;
1094 u16 checksum = 0;
1095 u16 length = 0;
1096 u16 pointer = 0;
1097 u16 word = 0;
1098
1099 /* Include 0x0-0x3F in the checksum */
1100 for (i = 0; i < IXGBE_EEPROM_CHECKSUM; i++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001101 if (hw->eeprom.ops.read(hw, i, &word) != 0) {
Auke Kok9a799d72007-09-15 14:07:45 -07001102 hw_dbg(hw, "EEPROM read failed\n");
1103 break;
1104 }
1105 checksum += word;
1106 }
1107
1108 /* Include all data from pointers except for the fw pointer */
1109 for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001110 hw->eeprom.ops.read(hw, i, &pointer);
Auke Kok9a799d72007-09-15 14:07:45 -07001111
1112 /* Make sure the pointer seems valid */
1113 if (pointer != 0xFFFF && pointer != 0) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001114 hw->eeprom.ops.read(hw, pointer, &length);
Auke Kok9a799d72007-09-15 14:07:45 -07001115
1116 if (length != 0xFFFF && length != 0) {
1117 for (j = pointer+1; j <= pointer+length; j++) {
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001118 hw->eeprom.ops.read(hw, j, &word);
Auke Kok9a799d72007-09-15 14:07:45 -07001119 checksum += word;
1120 }
1121 }
1122 }
1123 }
1124
1125 checksum = (u16)IXGBE_EEPROM_SUM - checksum;
1126
1127 return checksum;
1128}
1129
1130/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001131 * ixgbe_validate_eeprom_checksum_generic - Validate EEPROM checksum
Auke Kok9a799d72007-09-15 14:07:45 -07001132 * @hw: pointer to hardware structure
1133 * @checksum_val: calculated checksum
1134 *
1135 * Performs checksum calculation and validates the EEPROM checksum. If the
1136 * caller does not need checksum_val, the value can be NULL.
1137 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001138s32 ixgbe_validate_eeprom_checksum_generic(struct ixgbe_hw *hw,
1139 u16 *checksum_val)
Auke Kok9a799d72007-09-15 14:07:45 -07001140{
1141 s32 status;
1142 u16 checksum;
1143 u16 read_checksum = 0;
1144
1145 /*
1146 * Read the first word from the EEPROM. If this times out or fails, do
1147 * not continue or we could be in for a very long wait while every
1148 * EEPROM read fails
1149 */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001150 status = hw->eeprom.ops.read(hw, 0, &checksum);
Auke Kok9a799d72007-09-15 14:07:45 -07001151
1152 if (status == 0) {
Don Skidmorea391f1d2010-11-16 19:27:15 -08001153 checksum = hw->eeprom.ops.calc_checksum(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001154
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001155 hw->eeprom.ops.read(hw, IXGBE_EEPROM_CHECKSUM, &read_checksum);
Auke Kok9a799d72007-09-15 14:07:45 -07001156
1157 /*
1158 * Verify read checksum from EEPROM is the same as
1159 * calculated checksum
1160 */
1161 if (read_checksum != checksum)
1162 status = IXGBE_ERR_EEPROM_CHECKSUM;
1163
1164 /* If the user cares, return the calculated checksum */
1165 if (checksum_val)
1166 *checksum_val = checksum;
1167 } else {
1168 hw_dbg(hw, "EEPROM read failed\n");
1169 }
1170
1171 return status;
1172}
1173
1174/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001175 * ixgbe_update_eeprom_checksum_generic - Updates the EEPROM checksum
1176 * @hw: pointer to hardware structure
1177 **/
1178s32 ixgbe_update_eeprom_checksum_generic(struct ixgbe_hw *hw)
1179{
1180 s32 status;
1181 u16 checksum;
1182
1183 /*
1184 * Read the first word from the EEPROM. If this times out or fails, do
1185 * not continue or we could be in for a very long wait while every
1186 * EEPROM read fails
1187 */
1188 status = hw->eeprom.ops.read(hw, 0, &checksum);
1189
1190 if (status == 0) {
Don Skidmorea391f1d2010-11-16 19:27:15 -08001191 checksum = hw->eeprom.ops.calc_checksum(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001192 status = hw->eeprom.ops.write(hw, IXGBE_EEPROM_CHECKSUM,
1193 checksum);
1194 } else {
1195 hw_dbg(hw, "EEPROM read failed\n");
1196 }
1197
1198 return status;
1199}
1200
1201/**
Auke Kok9a799d72007-09-15 14:07:45 -07001202 * ixgbe_validate_mac_addr - Validate MAC address
1203 * @mac_addr: pointer to MAC address.
1204 *
1205 * Tests a MAC address to ensure it is a valid Individual Address
1206 **/
1207s32 ixgbe_validate_mac_addr(u8 *mac_addr)
1208{
1209 s32 status = 0;
1210
1211 /* Make sure it is not a multicast address */
1212 if (IXGBE_IS_MULTICAST(mac_addr))
1213 status = IXGBE_ERR_INVALID_MAC_ADDR;
1214 /* Not a broadcast address */
1215 else if (IXGBE_IS_BROADCAST(mac_addr))
1216 status = IXGBE_ERR_INVALID_MAC_ADDR;
1217 /* Reject the zero address */
1218 else if (mac_addr[0] == 0 && mac_addr[1] == 0 && mac_addr[2] == 0 &&
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001219 mac_addr[3] == 0 && mac_addr[4] == 0 && mac_addr[5] == 0)
Auke Kok9a799d72007-09-15 14:07:45 -07001220 status = IXGBE_ERR_INVALID_MAC_ADDR;
1221
1222 return status;
1223}
1224
1225/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001226 * ixgbe_set_rar_generic - Set Rx address register
Auke Kok9a799d72007-09-15 14:07:45 -07001227 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07001228 * @index: Receive address register to write
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001229 * @addr: Address to put into receive address register
1230 * @vmdq: VMDq "set" or "pool" index
Auke Kok9a799d72007-09-15 14:07:45 -07001231 * @enable_addr: set flag that address is active
1232 *
1233 * Puts an ethernet address into a receive address register.
1234 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001235s32 ixgbe_set_rar_generic(struct ixgbe_hw *hw, u32 index, u8 *addr, u32 vmdq,
1236 u32 enable_addr)
Auke Kok9a799d72007-09-15 14:07:45 -07001237{
1238 u32 rar_low, rar_high;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001239 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001240
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001241 /* setup VMDq pool selection before this RAR gets enabled */
1242 hw->mac.ops.set_vmdq(hw, index, vmdq);
1243
1244 /* Make sure we are using a valid rar index range */
1245 if (index < rar_entries) {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001246 /*
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001247 * HW expects these in little endian so we reverse the byte
1248 * order from network order (big endian) to little endian
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001249 */
1250 rar_low = ((u32)addr[0] |
1251 ((u32)addr[1] << 8) |
1252 ((u32)addr[2] << 16) |
1253 ((u32)addr[3] << 24));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001254 /*
1255 * Some parts put the VMDq setting in the extra RAH bits,
1256 * so save everything except the lower 16 bits that hold part
1257 * of the address and the address valid bit.
1258 */
1259 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1260 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1261 rar_high |= ((u32)addr[4] | ((u32)addr[5] << 8));
Auke Kok9a799d72007-09-15 14:07:45 -07001262
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001263 if (enable_addr != 0)
1264 rar_high |= IXGBE_RAH_AV;
Auke Kok9a799d72007-09-15 14:07:45 -07001265
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001266 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), rar_low);
1267 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001268 } else {
1269 hw_dbg(hw, "RAR index %d is out of range.\n", index);
Jeff Kirshera1868dc2010-06-02 12:44:05 +00001270 return IXGBE_ERR_RAR_INDEX;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001271 }
Auke Kok9a799d72007-09-15 14:07:45 -07001272
1273 return 0;
1274}
1275
1276/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001277 * ixgbe_clear_rar_generic - Remove Rx address register
1278 * @hw: pointer to hardware structure
1279 * @index: Receive address register to write
1280 *
1281 * Clears an ethernet address from a receive address register.
1282 **/
1283s32 ixgbe_clear_rar_generic(struct ixgbe_hw *hw, u32 index)
1284{
1285 u32 rar_high;
1286 u32 rar_entries = hw->mac.num_rar_entries;
1287
1288 /* Make sure we are using a valid rar index range */
1289 if (index < rar_entries) {
1290 /*
1291 * Some parts put the VMDq setting in the extra RAH bits,
1292 * so save everything except the lower 16 bits that hold part
1293 * of the address and the address valid bit.
1294 */
1295 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1296 rar_high &= ~(0x0000FFFF | IXGBE_RAH_AV);
1297
1298 IXGBE_WRITE_REG(hw, IXGBE_RAL(index), 0);
1299 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1300 } else {
1301 hw_dbg(hw, "RAR index %d is out of range.\n", index);
Jeff Kirshera1868dc2010-06-02 12:44:05 +00001302 return IXGBE_ERR_RAR_INDEX;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001303 }
1304
1305 /* clear VMDq pool/queue selection for this RAR */
1306 hw->mac.ops.clear_vmdq(hw, index, IXGBE_CLEAR_VMDQ_ALL);
1307
1308 return 0;
1309}
1310
1311/**
1312 * ixgbe_enable_rar - Enable Rx address register
1313 * @hw: pointer to hardware structure
1314 * @index: index into the RAR table
1315 *
1316 * Enables the select receive address register.
1317 **/
1318static void ixgbe_enable_rar(struct ixgbe_hw *hw, u32 index)
1319{
1320 u32 rar_high;
1321
1322 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1323 rar_high |= IXGBE_RAH_AV;
1324 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1325}
1326
1327/**
1328 * ixgbe_disable_rar - Disable Rx address register
1329 * @hw: pointer to hardware structure
1330 * @index: index into the RAR table
1331 *
1332 * Disables the select receive address register.
1333 **/
1334static void ixgbe_disable_rar(struct ixgbe_hw *hw, u32 index)
1335{
1336 u32 rar_high;
1337
1338 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(index));
1339 rar_high &= (~IXGBE_RAH_AV);
1340 IXGBE_WRITE_REG(hw, IXGBE_RAH(index), rar_high);
1341}
1342
1343/**
1344 * ixgbe_init_rx_addrs_generic - Initializes receive address filters.
Auke Kok9a799d72007-09-15 14:07:45 -07001345 * @hw: pointer to hardware structure
1346 *
1347 * Places the MAC address in receive address register 0 and clears the rest
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001348 * of the receive address registers. Clears the multicast table. Assumes
Auke Kok9a799d72007-09-15 14:07:45 -07001349 * the receiver is in reset when the routine is called.
1350 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001351s32 ixgbe_init_rx_addrs_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001352{
1353 u32 i;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001354 u32 rar_entries = hw->mac.num_rar_entries;
Auke Kok9a799d72007-09-15 14:07:45 -07001355
1356 /*
1357 * If the current mac address is valid, assume it is a software override
1358 * to the permanent address.
1359 * Otherwise, use the permanent address from the eeprom.
1360 */
1361 if (ixgbe_validate_mac_addr(hw->mac.addr) ==
1362 IXGBE_ERR_INVALID_MAC_ADDR) {
1363 /* Get the MAC address from the RAR0 for later reference */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001364 hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001365
hartleysce7194d2010-01-05 06:56:52 +00001366 hw_dbg(hw, " Keeping Current RAR0 Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001367 } else {
1368 /* Setup the receive address. */
1369 hw_dbg(hw, "Overriding MAC Address in RAR[0]\n");
hartleysce7194d2010-01-05 06:56:52 +00001370 hw_dbg(hw, " New MAC Addr =%pM\n", hw->mac.addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001371
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001372 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07001373 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001374 hw->addr_ctrl.overflow_promisc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001375
1376 hw->addr_ctrl.rar_used_count = 1;
1377
1378 /* Zero out the other receive addresses. */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001379 hw_dbg(hw, "Clearing RAR[1-%d]\n", rar_entries - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07001380 for (i = 1; i < rar_entries; i++) {
1381 IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0);
1382 IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0);
1383 }
1384
1385 /* Clear the MTA */
1386 hw->addr_ctrl.mc_addr_in_rar_count = 0;
1387 hw->addr_ctrl.mta_in_use = 0;
1388 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
1389
1390 hw_dbg(hw, " Clearing MTA\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001391 for (i = 0; i < hw->mac.mcft_size; i++)
Auke Kok9a799d72007-09-15 14:07:45 -07001392 IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0);
1393
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001394 if (hw->mac.ops.init_uta_tables)
1395 hw->mac.ops.init_uta_tables(hw);
1396
Auke Kok9a799d72007-09-15 14:07:45 -07001397 return 0;
1398}
1399
1400/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07001401 * ixgbe_add_uc_addr - Adds a secondary unicast address.
1402 * @hw: pointer to hardware structure
1403 * @addr: new address
1404 *
1405 * Adds it to unused receive address register or goes into promiscuous mode.
1406 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001407static void ixgbe_add_uc_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq)
Christopher Leech2c5645c2008-08-26 04:27:02 -07001408{
1409 u32 rar_entries = hw->mac.num_rar_entries;
1410 u32 rar;
1411
1412 hw_dbg(hw, " UC Addr = %.2X %.2X %.2X %.2X %.2X %.2X\n",
1413 addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
1414
1415 /*
1416 * Place this address in the RAR if there is room,
1417 * else put the controller into promiscuous mode
1418 */
1419 if (hw->addr_ctrl.rar_used_count < rar_entries) {
1420 rar = hw->addr_ctrl.rar_used_count -
1421 hw->addr_ctrl.mc_addr_in_rar_count;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001422 hw->mac.ops.set_rar(hw, rar, addr, vmdq, IXGBE_RAH_AV);
Christopher Leech2c5645c2008-08-26 04:27:02 -07001423 hw_dbg(hw, "Added a secondary address to RAR[%d]\n", rar);
1424 hw->addr_ctrl.rar_used_count++;
1425 } else {
1426 hw->addr_ctrl.overflow_promisc++;
1427 }
1428
1429 hw_dbg(hw, "ixgbe_add_uc_addr Complete\n");
1430}
1431
1432/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001433 * ixgbe_update_uc_addr_list_generic - Updates MAC list of secondary addresses
Christopher Leech2c5645c2008-08-26 04:27:02 -07001434 * @hw: pointer to hardware structure
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001435 * @netdev: pointer to net device structure
Christopher Leech2c5645c2008-08-26 04:27:02 -07001436 *
1437 * The given list replaces any existing list. Clears the secondary addrs from
1438 * receive address registers. Uses unused receive address registers for the
1439 * first secondary addresses, and falls back to promiscuous mode as needed.
1440 *
1441 * Drivers using secondary unicast addresses must set user_set_promisc when
1442 * manually putting the device into promiscuous mode.
1443 **/
Jiri Pirkoccffad252009-05-22 23:22:17 +00001444s32 ixgbe_update_uc_addr_list_generic(struct ixgbe_hw *hw,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001445 struct net_device *netdev)
Christopher Leech2c5645c2008-08-26 04:27:02 -07001446{
Christopher Leech2c5645c2008-08-26 04:27:02 -07001447 u32 i;
1448 u32 old_promisc_setting = hw->addr_ctrl.overflow_promisc;
1449 u32 uc_addr_in_use;
1450 u32 fctrl;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001451 struct netdev_hw_addr *ha;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001452
1453 /*
1454 * Clear accounting of old secondary address list,
1455 * don't count RAR[0]
1456 */
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00001457 uc_addr_in_use = hw->addr_ctrl.rar_used_count - 1;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001458 hw->addr_ctrl.rar_used_count -= uc_addr_in_use;
1459 hw->addr_ctrl.overflow_promisc = 0;
1460
1461 /* Zero out the other receive addresses */
Shannon Nelson91152c32009-11-24 18:52:10 +00001462 hw_dbg(hw, "Clearing RAR[1-%d]\n", uc_addr_in_use + 1);
1463 for (i = 0; i < uc_addr_in_use; i++) {
1464 IXGBE_WRITE_REG(hw, IXGBE_RAL(1+i), 0);
1465 IXGBE_WRITE_REG(hw, IXGBE_RAH(1+i), 0);
Christopher Leech2c5645c2008-08-26 04:27:02 -07001466 }
1467
1468 /* Add the new addresses */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001469 netdev_for_each_uc_addr(ha, netdev) {
Christopher Leech2c5645c2008-08-26 04:27:02 -07001470 hw_dbg(hw, " Adding the secondary addresses:\n");
Jiri Pirkoccffad252009-05-22 23:22:17 +00001471 ixgbe_add_uc_addr(hw, ha->addr, 0);
Christopher Leech2c5645c2008-08-26 04:27:02 -07001472 }
1473
1474 if (hw->addr_ctrl.overflow_promisc) {
1475 /* enable promisc if not already in overflow or set by user */
1476 if (!old_promisc_setting && !hw->addr_ctrl.user_set_promisc) {
1477 hw_dbg(hw, " Entering address overflow promisc mode\n");
1478 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
1479 fctrl |= IXGBE_FCTRL_UPE;
1480 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Emil Tantilove433ea12010-05-13 17:33:00 +00001481 hw->addr_ctrl.uc_set_promisc = true;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001482 }
1483 } else {
1484 /* only disable if set by overflow, not by user */
Emil Tantilove433ea12010-05-13 17:33:00 +00001485 if ((old_promisc_setting && hw->addr_ctrl.uc_set_promisc) &&
1486 !(hw->addr_ctrl.user_set_promisc)) {
Christopher Leech2c5645c2008-08-26 04:27:02 -07001487 hw_dbg(hw, " Leaving address overflow promisc mode\n");
1488 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
1489 fctrl &= ~IXGBE_FCTRL_UPE;
1490 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Emil Tantilove433ea12010-05-13 17:33:00 +00001491 hw->addr_ctrl.uc_set_promisc = false;
Christopher Leech2c5645c2008-08-26 04:27:02 -07001492 }
1493 }
1494
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001495 hw_dbg(hw, "ixgbe_update_uc_addr_list_generic Complete\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001496 return 0;
1497}
1498
1499/**
Auke Kok9a799d72007-09-15 14:07:45 -07001500 * ixgbe_mta_vector - Determines bit-vector in multicast table to set
1501 * @hw: pointer to hardware structure
1502 * @mc_addr: the multicast address
1503 *
1504 * Extracts the 12 bits, from a multicast address, to determine which
1505 * bit-vector to set in the multicast table. The hardware uses 12 bits, from
1506 * incoming rx multicast addresses, to determine the bit-vector to check in
1507 * the MTA. Which of the 4 combination, of 12-bits, the hardware uses is set
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001508 * by the MO field of the MCSTCTRL. The MO field is set during initialization
Auke Kok9a799d72007-09-15 14:07:45 -07001509 * to mc_filter_type.
1510 **/
1511static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr)
1512{
1513 u32 vector = 0;
1514
1515 switch (hw->mac.mc_filter_type) {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001516 case 0: /* use bits [47:36] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001517 vector = ((mc_addr[4] >> 4) | (((u16)mc_addr[5]) << 4));
1518 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001519 case 1: /* use bits [46:35] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001520 vector = ((mc_addr[4] >> 3) | (((u16)mc_addr[5]) << 5));
1521 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001522 case 2: /* use bits [45:34] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001523 vector = ((mc_addr[4] >> 2) | (((u16)mc_addr[5]) << 6));
1524 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001525 case 3: /* use bits [43:32] of the address */
Auke Kok9a799d72007-09-15 14:07:45 -07001526 vector = ((mc_addr[4]) | (((u16)mc_addr[5]) << 8));
1527 break;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001528 default: /* Invalid mc_filter_type */
Auke Kok9a799d72007-09-15 14:07:45 -07001529 hw_dbg(hw, "MC filter type param set incorrectly\n");
1530 break;
1531 }
1532
1533 /* vector can only be 12-bits or boundary will be exceeded */
1534 vector &= 0xFFF;
1535 return vector;
1536}
1537
1538/**
1539 * ixgbe_set_mta - Set bit-vector in multicast table
1540 * @hw: pointer to hardware structure
1541 * @hash_value: Multicast address hash value
1542 *
1543 * Sets the bit-vector in the multicast table.
1544 **/
1545static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr)
1546{
1547 u32 vector;
1548 u32 vector_bit;
1549 u32 vector_reg;
1550 u32 mta_reg;
1551
1552 hw->addr_ctrl.mta_in_use++;
1553
1554 vector = ixgbe_mta_vector(hw, mc_addr);
1555 hw_dbg(hw, " bit-vector = 0x%03X\n", vector);
1556
1557 /*
1558 * The MTA is a register array of 128 32-bit registers. It is treated
1559 * like an array of 4096 bits. We want to set bit
1560 * BitArray[vector_value]. So we figure out what register the bit is
1561 * in, read it, OR in the new bit, then write back the new value. The
1562 * register is determined by the upper 7 bits of the vector value and
1563 * the bit within that register are determined by the lower 5 bits of
1564 * the value.
1565 */
1566 vector_reg = (vector >> 5) & 0x7F;
1567 vector_bit = vector & 0x1F;
1568 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
1569 mta_reg |= (1 << vector_bit);
1570 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
1571}
1572
1573/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001574 * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses
Auke Kok9a799d72007-09-15 14:07:45 -07001575 * @hw: pointer to hardware structure
Jiri Pirko2853eb82010-03-23 22:58:01 +00001576 * @netdev: pointer to net device structure
Auke Kok9a799d72007-09-15 14:07:45 -07001577 *
1578 * The given list replaces any existing list. Clears the MC addrs from receive
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001579 * address registers and the multicast table. Uses unused receive address
Auke Kok9a799d72007-09-15 14:07:45 -07001580 * registers for the first multicast addresses, and hashes the rest into the
1581 * multicast table.
1582 **/
Jiri Pirko2853eb82010-03-23 22:58:01 +00001583s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw,
1584 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07001585{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001586 struct netdev_hw_addr *ha;
Auke Kok9a799d72007-09-15 14:07:45 -07001587 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07001588
1589 /*
1590 * Set the new number of MC addresses that we are being requested to
1591 * use.
1592 */
Jiri Pirko2853eb82010-03-23 22:58:01 +00001593 hw->addr_ctrl.num_mc_addrs = netdev_mc_count(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07001594 hw->addr_ctrl.mta_in_use = 0;
1595
Auke Kok9a799d72007-09-15 14:07:45 -07001596 /* Clear the MTA */
1597 hw_dbg(hw, " Clearing MTA\n");
Christopher Leech2c5645c2008-08-26 04:27:02 -07001598 for (i = 0; i < hw->mac.mcft_size; i++)
Auke Kok9a799d72007-09-15 14:07:45 -07001599 IXGBE_WRITE_REG(hw, IXGBE_MTA(i), 0);
1600
1601 /* Add the new addresses */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001602 netdev_for_each_mc_addr(ha, netdev) {
Auke Kok9a799d72007-09-15 14:07:45 -07001603 hw_dbg(hw, " Adding the multicast addresses:\n");
Jiri Pirko22bedad32010-04-01 21:22:57 +00001604 ixgbe_set_mta(hw, ha->addr);
Auke Kok9a799d72007-09-15 14:07:45 -07001605 }
1606
1607 /* Enable mta */
1608 if (hw->addr_ctrl.mta_in_use > 0)
1609 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001610 IXGBE_MCSTCTRL_MFE | hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07001611
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001612 hw_dbg(hw, "ixgbe_update_mc_addr_list_generic Complete\n");
Auke Kok9a799d72007-09-15 14:07:45 -07001613 return 0;
1614}
1615
1616/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001617 * ixgbe_enable_mc_generic - Enable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07001618 * @hw: pointer to hardware structure
1619 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001620 * Enables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07001621 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001622s32 ixgbe_enable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001623{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001624 u32 i;
1625 u32 rar_entries = hw->mac.num_rar_entries;
1626 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07001627
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001628 if (a->mc_addr_in_rar_count > 0)
1629 for (i = (rar_entries - a->mc_addr_in_rar_count);
1630 i < rar_entries; i++)
1631 ixgbe_enable_rar(hw, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001632
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001633 if (a->mta_in_use > 0)
1634 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, IXGBE_MCSTCTRL_MFE |
1635 hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07001636
1637 return 0;
1638}
1639
1640/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001641 * ixgbe_disable_mc_generic - Disable multicast address in RAR
Auke Kok9a799d72007-09-15 14:07:45 -07001642 * @hw: pointer to hardware structure
Auke Kok9a799d72007-09-15 14:07:45 -07001643 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001644 * Disables multicast address in RAR and the use of the multicast hash table.
Auke Kok9a799d72007-09-15 14:07:45 -07001645 **/
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001646s32 ixgbe_disable_mc_generic(struct ixgbe_hw *hw)
Auke Kok9a799d72007-09-15 14:07:45 -07001647{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001648 u32 i;
1649 u32 rar_entries = hw->mac.num_rar_entries;
1650 struct ixgbe_addr_filter_info *a = &hw->addr_ctrl;
Auke Kok9a799d72007-09-15 14:07:45 -07001651
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001652 if (a->mc_addr_in_rar_count > 0)
1653 for (i = (rar_entries - a->mc_addr_in_rar_count);
1654 i < rar_entries; i++)
1655 ixgbe_disable_rar(hw, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001656
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001657 if (a->mta_in_use > 0)
1658 IXGBE_WRITE_REG(hw, IXGBE_MCSTCTRL, hw->mac.mc_filter_type);
Auke Kok9a799d72007-09-15 14:07:45 -07001659
1660 return 0;
1661}
1662
1663/**
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001664 * ixgbe_fc_enable_generic - Enable flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001665 * @hw: pointer to hardware structure
1666 * @packetbuf_num: packet buffer number (0-7)
1667 *
1668 * Enable flow control according to the current settings.
1669 **/
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001670s32 ixgbe_fc_enable_generic(struct ixgbe_hw *hw, s32 packetbuf_num)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001671{
1672 s32 ret_val = 0;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001673 u32 mflcn_reg, fccfg_reg;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001674 u32 reg;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00001675 u32 rx_pba_size;
John Fastabend16b61be2010-11-16 19:26:44 -08001676 u32 fcrtl, fcrth;
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00001677
1678#ifdef CONFIG_DCB
1679 if (hw->fc.requested_mode == ixgbe_fc_pfc)
1680 goto out;
1681
1682#endif /* CONFIG_DCB */
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001683 /* Negotiate the fc mode to use */
1684 ret_val = ixgbe_fc_autoneg(hw);
1685 if (ret_val)
1686 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001687
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001688 /* Disable any previous flow control settings */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001689 mflcn_reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
1690 mflcn_reg &= ~(IXGBE_MFLCN_RFCE | IXGBE_MFLCN_RPFCE);
1691
1692 fccfg_reg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
1693 fccfg_reg &= ~(IXGBE_FCCFG_TFCE_802_3X | IXGBE_FCCFG_TFCE_PRIORITY);
1694
1695 /*
1696 * The possible values of fc.current_mode are:
1697 * 0: Flow control is completely disabled
1698 * 1: Rx flow control is enabled (we can receive pause frames,
1699 * but not send pause frames).
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00001700 * 2: Tx flow control is enabled (we can send pause frames but
1701 * we do not support receiving pause frames).
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001702 * 3: Both Rx and Tx flow control (symmetric) are enabled.
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00001703 * 4: Priority Flow Control is enabled.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001704 * other: Invalid.
1705 */
1706 switch (hw->fc.current_mode) {
1707 case ixgbe_fc_none:
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001708 /*
1709 * Flow control is disabled by software override or autoneg.
1710 * The code below will actually disable it in the HW.
1711 */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001712 break;
1713 case ixgbe_fc_rx_pause:
1714 /*
1715 * Rx Flow control is enabled and Tx Flow control is
1716 * disabled by software override. Since there really
1717 * isn't a way to advertise that we are capable of RX
1718 * Pause ONLY, we will advertise that we support both
1719 * symmetric and asymmetric Rx PAUSE. Later, we will
1720 * disable the adapter's ability to send PAUSE frames.
1721 */
1722 mflcn_reg |= IXGBE_MFLCN_RFCE;
1723 break;
1724 case ixgbe_fc_tx_pause:
1725 /*
1726 * Tx Flow control is enabled, and Rx Flow control is
1727 * disabled by software override.
1728 */
1729 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
1730 break;
1731 case ixgbe_fc_full:
1732 /* Flow control (both Rx and Tx) is enabled by SW override. */
1733 mflcn_reg |= IXGBE_MFLCN_RFCE;
1734 fccfg_reg |= IXGBE_FCCFG_TFCE_802_3X;
1735 break;
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00001736#ifdef CONFIG_DCB
1737 case ixgbe_fc_pfc:
1738 goto out;
1739 break;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001740#endif /* CONFIG_DCB */
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001741 default:
1742 hw_dbg(hw, "Flow control param set incorrectly\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001743 ret_val = IXGBE_ERR_CONFIG;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001744 goto out;
1745 break;
1746 }
1747
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001748 /* Set 802.3x based flow control settings. */
PJ Waskiewicz2132d382009-04-09 22:26:21 +00001749 mflcn_reg |= IXGBE_MFLCN_DPF;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001750 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, mflcn_reg);
1751 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, fccfg_reg);
1752
John Fastabend16b61be2010-11-16 19:26:44 -08001753 rx_pba_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(packetbuf_num));
1754 rx_pba_size >>= IXGBE_RXPBSIZE_SHIFT;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001755
John Fastabend16b61be2010-11-16 19:26:44 -08001756 fcrth = (rx_pba_size - hw->fc.high_water) << 10;
1757 fcrtl = (rx_pba_size - hw->fc.low_water) << 10;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001758
John Fastabend16b61be2010-11-16 19:26:44 -08001759 if (hw->fc.current_mode & ixgbe_fc_tx_pause) {
1760 fcrth |= IXGBE_FCRTH_FCEN;
1761 if (hw->fc.send_xon)
1762 fcrtl |= IXGBE_FCRTL_XONE;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001763 }
1764
John Fastabend16b61be2010-11-16 19:26:44 -08001765 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(packetbuf_num), fcrth);
1766 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(packetbuf_num), fcrtl);
1767
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001768 /* Configure pause time (2 TCs per register) */
Peter P Waskiewicz Jr70b77622009-05-17 12:34:55 +00001769 reg = IXGBE_READ_REG(hw, IXGBE_FCTTV(packetbuf_num / 2));
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001770 if ((packetbuf_num & 1) == 0)
1771 reg = (reg & 0xFFFF0000) | hw->fc.pause_time;
1772 else
1773 reg = (reg & 0x0000FFFF) | (hw->fc.pause_time << 16);
1774 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(packetbuf_num / 2), reg);
1775
1776 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, (hw->fc.pause_time >> 1));
1777
1778out:
1779 return ret_val;
1780}
1781
1782/**
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001783 * ixgbe_fc_autoneg - Configure flow control
1784 * @hw: pointer to hardware structure
1785 *
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001786 * Compares our advertised flow control capabilities to those advertised by
1787 * our link partner, and determines the proper flow control mode to use.
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001788 **/
1789s32 ixgbe_fc_autoneg(struct ixgbe_hw *hw)
1790{
1791 s32 ret_val = 0;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001792 ixgbe_link_speed speed;
1793 u32 pcs_anadv_reg, pcs_lpab_reg, linkstat;
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001794 u32 links2, anlp1_reg, autoc_reg, links;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001795 bool link_up;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001796
1797 /*
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001798 * AN should have completed when the cable was plugged in.
1799 * Look for reasons to bail out. Bail out if:
1800 * - FC autoneg is disabled, or if
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001801 * - link is not up.
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001802 *
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001803 * Since we're being called from an LSC, link is already known to be up.
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001804 * So use link_up_wait_to_complete=false.
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001805 */
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001806 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001807
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001808 if (hw->fc.disable_fc_autoneg || (!link_up)) {
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001809 hw->fc.fc_was_autonegged = false;
1810 hw->fc.current_mode = hw->fc.requested_mode;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001811 goto out;
1812 }
1813
1814 /*
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001815 * On backplane, bail out if
1816 * - backplane autoneg was not completed, or if
Don Skidmore000c4862009-11-24 18:51:48 +00001817 * - we are 82599 and link partner is not AN enabled
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001818 */
1819 if (hw->phy.media_type == ixgbe_media_type_backplane) {
1820 links = IXGBE_READ_REG(hw, IXGBE_LINKS);
Don Skidmore000c4862009-11-24 18:51:48 +00001821 if ((links & IXGBE_LINKS_KX_AN_COMP) == 0) {
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001822 hw->fc.fc_was_autonegged = false;
1823 hw->fc.current_mode = hw->fc.requested_mode;
1824 goto out;
1825 }
Don Skidmore000c4862009-11-24 18:51:48 +00001826
1827 if (hw->mac.type == ixgbe_mac_82599EB) {
1828 links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2);
1829 if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0) {
1830 hw->fc.fc_was_autonegged = false;
1831 hw->fc.current_mode = hw->fc.requested_mode;
1832 goto out;
1833 }
1834 }
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001835 }
1836
1837 /*
1838 * On multispeed fiber at 1g, bail out if
1839 * - link is up but AN did not complete, or if
1840 * - link is up and AN completed but timed out
1841 */
1842 if (hw->phy.multispeed_fiber && (speed == IXGBE_LINK_SPEED_1GB_FULL)) {
1843 linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
1844 if (((linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) ||
1845 ((linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1)) {
1846 hw->fc.fc_was_autonegged = false;
1847 hw->fc.current_mode = hw->fc.requested_mode;
1848 goto out;
1849 }
1850 }
1851
1852 /*
PJ Waskiewicz9bbe3a52009-11-24 18:51:28 +00001853 * Bail out on
1854 * - copper or CX4 adapters
1855 * - fiber adapters running at 10gig
1856 */
1857 if ((hw->phy.media_type == ixgbe_media_type_copper) ||
1858 (hw->phy.media_type == ixgbe_media_type_cx4) ||
1859 ((hw->phy.media_type == ixgbe_media_type_fiber) &&
1860 (speed == IXGBE_LINK_SPEED_10GB_FULL))) {
1861 hw->fc.fc_was_autonegged = false;
1862 hw->fc.current_mode = hw->fc.requested_mode;
1863 goto out;
1864 }
1865
1866 /*
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001867 * Read the AN advertisement and LP ability registers and resolve
1868 * local flow control settings accordingly
1869 */
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001870 if ((speed == IXGBE_LINK_SPEED_1GB_FULL) &&
1871 (hw->phy.media_type != ixgbe_media_type_backplane)) {
1872 pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
1873 pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
1874 if ((pcs_anadv_reg & IXGBE_PCS1GANA_SYM_PAUSE) &&
1875 (pcs_lpab_reg & IXGBE_PCS1GANA_SYM_PAUSE)) {
1876 /*
1877 * Now we need to check if the user selected Rx ONLY
1878 * of pause frames. In this case, we had to advertise
1879 * FULL flow control because we could not advertise RX
1880 * ONLY. Hence, we must now check to see if we need to
1881 * turn OFF the TRANSMISSION of PAUSE frames.
1882 */
1883 if (hw->fc.requested_mode == ixgbe_fc_full) {
1884 hw->fc.current_mode = ixgbe_fc_full;
1885 hw_dbg(hw, "Flow Control = FULL.\n");
1886 } else {
1887 hw->fc.current_mode = ixgbe_fc_rx_pause;
1888 hw_dbg(hw, "Flow Control=RX PAUSE only\n");
1889 }
1890 } else if (!(pcs_anadv_reg & IXGBE_PCS1GANA_SYM_PAUSE) &&
1891 (pcs_anadv_reg & IXGBE_PCS1GANA_ASM_PAUSE) &&
1892 (pcs_lpab_reg & IXGBE_PCS1GANA_SYM_PAUSE) &&
1893 (pcs_lpab_reg & IXGBE_PCS1GANA_ASM_PAUSE)) {
1894 hw->fc.current_mode = ixgbe_fc_tx_pause;
1895 hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n");
1896 } else if ((pcs_anadv_reg & IXGBE_PCS1GANA_SYM_PAUSE) &&
1897 (pcs_anadv_reg & IXGBE_PCS1GANA_ASM_PAUSE) &&
1898 !(pcs_lpab_reg & IXGBE_PCS1GANA_SYM_PAUSE) &&
1899 (pcs_lpab_reg & IXGBE_PCS1GANA_ASM_PAUSE)) {
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001900 hw->fc.current_mode = ixgbe_fc_rx_pause;
1901 hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001902 } else {
1903 hw->fc.current_mode = ixgbe_fc_none;
1904 hw_dbg(hw, "Flow Control = NONE.\n");
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001905 }
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001906 }
1907
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00001908 if (hw->phy.media_type == ixgbe_media_type_backplane) {
1909 /*
1910 * Read the 10g AN autoc and LP ability registers and resolve
1911 * local flow control settings accordingly
1912 */
1913 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
1914 anlp1_reg = IXGBE_READ_REG(hw, IXGBE_ANLP1);
1915
1916 if ((autoc_reg & IXGBE_AUTOC_SYM_PAUSE) &&
1917 (anlp1_reg & IXGBE_ANLP1_SYM_PAUSE)) {
1918 /*
1919 * Now we need to check if the user selected Rx ONLY
1920 * of pause frames. In this case, we had to advertise
1921 * FULL flow control because we could not advertise RX
1922 * ONLY. Hence, we must now check to see if we need to
1923 * turn OFF the TRANSMISSION of PAUSE frames.
1924 */
1925 if (hw->fc.requested_mode == ixgbe_fc_full) {
1926 hw->fc.current_mode = ixgbe_fc_full;
1927 hw_dbg(hw, "Flow Control = FULL.\n");
1928 } else {
1929 hw->fc.current_mode = ixgbe_fc_rx_pause;
1930 hw_dbg(hw, "Flow Control=RX PAUSE only\n");
1931 }
1932 } else if (!(autoc_reg & IXGBE_AUTOC_SYM_PAUSE) &&
1933 (autoc_reg & IXGBE_AUTOC_ASM_PAUSE) &&
1934 (anlp1_reg & IXGBE_ANLP1_SYM_PAUSE) &&
1935 (anlp1_reg & IXGBE_ANLP1_ASM_PAUSE)) {
1936 hw->fc.current_mode = ixgbe_fc_tx_pause;
1937 hw_dbg(hw, "Flow Control = TX PAUSE frames only.\n");
1938 } else if ((autoc_reg & IXGBE_AUTOC_SYM_PAUSE) &&
1939 (autoc_reg & IXGBE_AUTOC_ASM_PAUSE) &&
1940 !(anlp1_reg & IXGBE_ANLP1_SYM_PAUSE) &&
1941 (anlp1_reg & IXGBE_ANLP1_ASM_PAUSE)) {
1942 hw->fc.current_mode = ixgbe_fc_rx_pause;
1943 hw_dbg(hw, "Flow Control = RX PAUSE frames only.\n");
1944 } else {
1945 hw->fc.current_mode = ixgbe_fc_none;
1946 hw_dbg(hw, "Flow Control = NONE.\n");
1947 }
1948 }
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001949 /* Record that current_mode is the result of a successful autoneg */
1950 hw->fc.fc_was_autonegged = true;
1951
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08001952out:
1953 return ret_val;
1954}
1955
1956/**
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001957 * ixgbe_setup_fc - Set up flow control
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001958 * @hw: pointer to hardware structure
1959 *
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001960 * Called at init time to set up flow control.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001961 **/
Don Skidmore7b25cdb2009-08-25 04:47:32 +00001962static s32 ixgbe_setup_fc(struct ixgbe_hw *hw, s32 packetbuf_num)
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001963{
1964 s32 ret_val = 0;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001965 u32 reg;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001966
PJ Waskiewiczbb3daa42009-03-25 22:10:42 +00001967#ifdef CONFIG_DCB
1968 if (hw->fc.requested_mode == ixgbe_fc_pfc) {
1969 hw->fc.current_mode = hw->fc.requested_mode;
1970 goto out;
1971 }
1972
1973#endif
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001974 /* Validate the packetbuf configuration */
1975 if (packetbuf_num < 0 || packetbuf_num > 7) {
1976 hw_dbg(hw, "Invalid packet buffer number [%d], expected range "
1977 "is 0-7\n", packetbuf_num);
1978 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
1979 goto out;
1980 }
1981
1982 /*
1983 * Validate the water mark configuration. Zero water marks are invalid
1984 * because it causes the controller to just blast out fc packets.
1985 */
1986 if (!hw->fc.low_water || !hw->fc.high_water || !hw->fc.pause_time) {
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001987 hw_dbg(hw, "Invalid water mark configuration\n");
1988 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
1989 goto out;
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001990 }
1991
1992 /*
1993 * Validate the requested mode. Strict IEEE mode does not allow
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00001994 * ixgbe_fc_rx_pause because it will cause us to fail at UNH.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00001995 */
1996 if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) {
1997 hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict "
1998 "IEEE mode\n");
1999 ret_val = IXGBE_ERR_INVALID_LINK_SETTINGS;
2000 goto out;
2001 }
2002
2003 /*
2004 * 10gig parts do not have a word in the EEPROM to determine the
2005 * default flow control setting, so we explicitly set it to full.
2006 */
2007 if (hw->fc.requested_mode == ixgbe_fc_default)
2008 hw->fc.requested_mode = ixgbe_fc_full;
2009
2010 /*
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002011 * Set up the 1G flow control advertisement registers so the HW will be
2012 * able to do fc autoneg once the cable is plugged in. If we end up
2013 * using 10g instead, this is harmless.
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002014 */
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002015 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002016
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002017 /*
2018 * The possible values of fc.requested_mode are:
2019 * 0: Flow control is completely disabled
2020 * 1: Rx flow control is enabled (we can receive pause frames,
2021 * but not send pause frames).
2022 * 2: Tx flow control is enabled (we can send pause frames but
2023 * we do not support receiving pause frames).
2024 * 3: Both Rx and Tx flow control (symmetric) are enabled.
2025#ifdef CONFIG_DCB
2026 * 4: Priority Flow Control is enabled.
2027#endif
2028 * other: Invalid.
2029 */
2030 switch (hw->fc.requested_mode) {
2031 case ixgbe_fc_none:
2032 /* Flow control completely disabled by software override. */
2033 reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
2034 break;
2035 case ixgbe_fc_rx_pause:
2036 /*
2037 * Rx Flow control is enabled and Tx Flow control is
2038 * disabled by software override. Since there really
2039 * isn't a way to advertise that we are capable of RX
2040 * Pause ONLY, we will advertise that we support both
2041 * symmetric and asymmetric Rx PAUSE. Later, we will
2042 * disable the adapter's ability to send PAUSE frames.
2043 */
2044 reg |= (IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
2045 break;
2046 case ixgbe_fc_tx_pause:
2047 /*
2048 * Tx Flow control is enabled, and Rx Flow control is
2049 * disabled by software override.
2050 */
2051 reg |= (IXGBE_PCS1GANA_ASM_PAUSE);
2052 reg &= ~(IXGBE_PCS1GANA_SYM_PAUSE);
2053 break;
2054 case ixgbe_fc_full:
2055 /* Flow control (both Rx and Tx) is enabled by SW override. */
2056 reg |= (IXGBE_PCS1GANA_SYM_PAUSE | IXGBE_PCS1GANA_ASM_PAUSE);
2057 break;
2058#ifdef CONFIG_DCB
2059 case ixgbe_fc_pfc:
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002060 goto out;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002061 break;
2062#endif /* CONFIG_DCB */
2063 default:
2064 hw_dbg(hw, "Flow control param set incorrectly\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002065 ret_val = IXGBE_ERR_CONFIG;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002066 goto out;
2067 break;
2068 }
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002069
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002070 IXGBE_WRITE_REG(hw, IXGBE_PCS1GANA, reg);
2071 reg = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
2072
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00002073 /* Disable AN timeout */
2074 if (hw->fc.strict_ieee)
2075 reg &= ~IXGBE_PCS1GLCTL_AN_1G_TIMEOUT_EN;
2076
2077 IXGBE_WRITE_REG(hw, IXGBE_PCS1GLCTL, reg);
2078 hw_dbg(hw, "Set up FC; PCS1GLCTL = 0x%08X\n", reg);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002079
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002080 /*
2081 * Set up the 10G flow control advertisement registers so the HW
2082 * can do fc autoneg once the cable is plugged in. If we end up
2083 * using 1g instead, this is harmless.
2084 */
2085 reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2086
2087 /*
2088 * The possible values of fc.requested_mode are:
2089 * 0: Flow control is completely disabled
2090 * 1: Rx flow control is enabled (we can receive pause frames,
2091 * but not send pause frames).
2092 * 2: Tx flow control is enabled (we can send pause frames but
2093 * we do not support receiving pause frames).
2094 * 3: Both Rx and Tx flow control (symmetric) are enabled.
2095 * other: Invalid.
2096 */
2097 switch (hw->fc.requested_mode) {
2098 case ixgbe_fc_none:
2099 /* Flow control completely disabled by software override. */
2100 reg &= ~(IXGBE_AUTOC_SYM_PAUSE | IXGBE_AUTOC_ASM_PAUSE);
2101 break;
2102 case ixgbe_fc_rx_pause:
2103 /*
2104 * Rx Flow control is enabled and Tx Flow control is
2105 * disabled by software override. Since there really
2106 * isn't a way to advertise that we are capable of RX
2107 * Pause ONLY, we will advertise that we support both
2108 * symmetric and asymmetric Rx PAUSE. Later, we will
2109 * disable the adapter's ability to send PAUSE frames.
2110 */
2111 reg |= (IXGBE_AUTOC_SYM_PAUSE | IXGBE_AUTOC_ASM_PAUSE);
2112 break;
2113 case ixgbe_fc_tx_pause:
2114 /*
2115 * Tx Flow control is enabled, and Rx Flow control is
2116 * disabled by software override.
2117 */
2118 reg |= (IXGBE_AUTOC_ASM_PAUSE);
2119 reg &= ~(IXGBE_AUTOC_SYM_PAUSE);
2120 break;
2121 case ixgbe_fc_full:
2122 /* Flow control (both Rx and Tx) is enabled by SW override. */
2123 reg |= (IXGBE_AUTOC_SYM_PAUSE | IXGBE_AUTOC_ASM_PAUSE);
2124 break;
2125#ifdef CONFIG_DCB
2126 case ixgbe_fc_pfc:
2127 goto out;
2128 break;
2129#endif /* CONFIG_DCB */
2130 default:
2131 hw_dbg(hw, "Flow control param set incorrectly\n");
2132 ret_val = IXGBE_ERR_CONFIG;
2133 goto out;
2134 break;
2135 }
2136 /*
2137 * AUTOC restart handles negotiation of 1G and 10G. There is
2138 * no need to set the PCS1GCTL register.
2139 */
2140 reg |= IXGBE_AUTOC_AN_RESTART;
2141 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg);
2142 hw_dbg(hw, "Set up FC; IXGBE_AUTOC = 0x%08X\n", reg);
2143
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002144out:
2145 return ret_val;
2146}
2147
2148/**
Auke Kok9a799d72007-09-15 14:07:45 -07002149 * ixgbe_disable_pcie_master - Disable PCI-express master access
2150 * @hw: pointer to hardware structure
2151 *
2152 * Disables PCI-Express master access and verifies there are no pending
2153 * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable
2154 * bit hasn't caused the master requests to be disabled, else 0
2155 * is returned signifying master requests disabled.
2156 **/
2157s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
2158{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002159 u32 i;
2160 u32 reg_val;
2161 u32 number_of_queues;
Auke Kok9a799d72007-09-15 14:07:45 -07002162 s32 status = IXGBE_ERR_MASTER_REQUESTS_PENDING;
2163
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002164 /* Disable the receive unit by stopping each queue */
2165 number_of_queues = hw->mac.max_rx_queues;
2166 for (i = 0; i < number_of_queues; i++) {
2167 reg_val = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
2168 if (reg_val & IXGBE_RXDCTL_ENABLE) {
2169 reg_val &= ~IXGBE_RXDCTL_ENABLE;
2170 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(i), reg_val);
2171 }
2172 }
2173
2174 reg_val = IXGBE_READ_REG(hw, IXGBE_CTRL);
2175 reg_val |= IXGBE_CTRL_GIO_DIS;
2176 IXGBE_WRITE_REG(hw, IXGBE_CTRL, reg_val);
Auke Kok9a799d72007-09-15 14:07:45 -07002177
2178 for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
2179 if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO)) {
2180 status = 0;
2181 break;
2182 }
2183 udelay(100);
2184 }
2185
2186 return status;
2187}
2188
2189
2190/**
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002191 * ixgbe_acquire_swfw_sync - Acquire SWFW semaphore
Auke Kok9a799d72007-09-15 14:07:45 -07002192 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002193 * @mask: Mask to specify which semaphore to acquire
Auke Kok9a799d72007-09-15 14:07:45 -07002194 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002195 * Acquires the SWFW semaphore thought the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002196 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2197 **/
2198s32 ixgbe_acquire_swfw_sync(struct ixgbe_hw *hw, u16 mask)
2199{
2200 u32 gssr;
2201 u32 swmask = mask;
2202 u32 fwmask = mask << 5;
2203 s32 timeout = 200;
2204
2205 while (timeout) {
2206 if (ixgbe_get_eeprom_semaphore(hw))
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002207 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002208
2209 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2210 if (!(gssr & (fwmask | swmask)))
2211 break;
2212
2213 /*
2214 * Firmware currently using resource (fwmask) or other software
2215 * thread currently using resource (swmask)
2216 */
2217 ixgbe_release_eeprom_semaphore(hw);
2218 msleep(5);
2219 timeout--;
2220 }
2221
2222 if (!timeout) {
2223 hw_dbg(hw, "Driver can't access resource, GSSR timeout.\n");
Peter P Waskiewicz Jr539e5f02009-09-30 12:07:38 +00002224 return IXGBE_ERR_SWFW_SYNC;
Auke Kok9a799d72007-09-15 14:07:45 -07002225 }
2226
2227 gssr |= swmask;
2228 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2229
2230 ixgbe_release_eeprom_semaphore(hw);
2231 return 0;
2232}
2233
2234/**
2235 * ixgbe_release_swfw_sync - Release SWFW semaphore
2236 * @hw: pointer to hardware structure
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002237 * @mask: Mask to specify which semaphore to release
Auke Kok9a799d72007-09-15 14:07:45 -07002238 *
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002239 * Releases the SWFW semaphore thought the GSSR register for the specified
Auke Kok9a799d72007-09-15 14:07:45 -07002240 * function (CSR, PHY0, PHY1, EEPROM, Flash)
2241 **/
2242void ixgbe_release_swfw_sync(struct ixgbe_hw *hw, u16 mask)
2243{
2244 u32 gssr;
2245 u32 swmask = mask;
2246
2247 ixgbe_get_eeprom_semaphore(hw);
2248
2249 gssr = IXGBE_READ_REG(hw, IXGBE_GSSR);
2250 gssr &= ~swmask;
2251 IXGBE_WRITE_REG(hw, IXGBE_GSSR, gssr);
2252
2253 ixgbe_release_eeprom_semaphore(hw);
2254}
2255
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +00002256/**
2257 * ixgbe_enable_rx_dma_generic - Enable the Rx DMA unit
2258 * @hw: pointer to hardware structure
2259 * @regval: register value to write to RXCTRL
2260 *
2261 * Enables the Rx DMA unit
2262 **/
2263s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval)
2264{
2265 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, regval);
2266
2267 return 0;
2268}
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002269
2270/**
2271 * ixgbe_blink_led_start_generic - Blink LED based on index.
2272 * @hw: pointer to hardware structure
2273 * @index: led number to blink
2274 **/
2275s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index)
2276{
2277 ixgbe_link_speed speed = 0;
2278 bool link_up = 0;
2279 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2280 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
2281
2282 /*
2283 * Link must be up to auto-blink the LEDs;
2284 * Force it if link is down.
2285 */
2286 hw->mac.ops.check_link(hw, &speed, &link_up, false);
2287
2288 if (!link_up) {
Peter P Waskiewicz Jr50ac58b2009-06-04 11:10:53 +00002289 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
PJ Waskiewicz87c12012009-04-08 13:20:31 +00002290 autoc_reg |= IXGBE_AUTOC_FLU;
2291 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
2292 msleep(10);
2293 }
2294
2295 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2296 led_reg |= IXGBE_LED_BLINK(index);
2297 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2298 IXGBE_WRITE_FLUSH(hw);
2299
2300 return 0;
2301}
2302
2303/**
2304 * ixgbe_blink_led_stop_generic - Stop blinking LED based on index.
2305 * @hw: pointer to hardware structure
2306 * @index: led number to stop blinking
2307 **/
2308s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index)
2309{
2310 u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
2311 u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
2312
2313 autoc_reg &= ~IXGBE_AUTOC_FLU;
2314 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
2315 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
2316
2317 led_reg &= ~IXGBE_LED_MODE_MASK(index);
2318 led_reg &= ~IXGBE_LED_BLINK(index);
2319 led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index);
2320 IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg);
2321 IXGBE_WRITE_FLUSH(hw);
2322
2323 return 0;
2324}
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002325
2326/**
2327 * ixgbe_get_san_mac_addr_offset - Get SAN MAC address offset from the EEPROM
2328 * @hw: pointer to hardware structure
2329 * @san_mac_offset: SAN MAC address offset
2330 *
2331 * This function will read the EEPROM location for the SAN MAC address
2332 * pointer, and returns the value at that location. This is used in both
2333 * get and set mac_addr routines.
2334 **/
2335static s32 ixgbe_get_san_mac_addr_offset(struct ixgbe_hw *hw,
2336 u16 *san_mac_offset)
2337{
2338 /*
2339 * First read the EEPROM pointer to see if the MAC addresses are
2340 * available.
2341 */
2342 hw->eeprom.ops.read(hw, IXGBE_SAN_MAC_ADDR_PTR, san_mac_offset);
2343
2344 return 0;
2345}
2346
2347/**
2348 * ixgbe_get_san_mac_addr_generic - SAN MAC address retrieval from the EEPROM
2349 * @hw: pointer to hardware structure
2350 * @san_mac_addr: SAN MAC address
2351 *
2352 * Reads the SAN MAC address from the EEPROM, if it's available. This is
2353 * per-port, so set_lan_id() must be called before reading the addresses.
2354 * set_lan_id() is called by identify_sfp(), but this cannot be relied
2355 * upon for non-SFP connections, so we must call it here.
2356 **/
2357s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr)
2358{
2359 u16 san_mac_data, san_mac_offset;
2360 u8 i;
2361
2362 /*
2363 * First read the EEPROM pointer to see if the MAC addresses are
2364 * available. If they're not, no point in calling set_lan_id() here.
2365 */
2366 ixgbe_get_san_mac_addr_offset(hw, &san_mac_offset);
2367
2368 if ((san_mac_offset == 0) || (san_mac_offset == 0xFFFF)) {
2369 /*
2370 * No addresses available in this EEPROM. It's not an
2371 * error though, so just wipe the local address and return.
2372 */
2373 for (i = 0; i < 6; i++)
2374 san_mac_addr[i] = 0xFF;
2375
2376 goto san_mac_addr_out;
2377 }
2378
2379 /* make sure we know which port we need to program */
2380 hw->mac.ops.set_lan_id(hw);
2381 /* apply the port offset to the address offset */
2382 (hw->bus.func) ? (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT1_OFFSET) :
2383 (san_mac_offset += IXGBE_SAN_MAC_ADDR_PORT0_OFFSET);
2384 for (i = 0; i < 3; i++) {
2385 hw->eeprom.ops.read(hw, san_mac_offset, &san_mac_data);
2386 san_mac_addr[i * 2] = (u8)(san_mac_data);
2387 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
2388 san_mac_offset++;
2389 }
2390
2391san_mac_addr_out:
2392 return 0;
2393}
2394
2395/**
2396 * ixgbe_get_pcie_msix_count_generic - Gets MSI-X vector count
2397 * @hw: pointer to hardware structure
2398 *
2399 * Read PCIe configuration space, and get the MSI-X vector count from
2400 * the capabilities table.
2401 **/
2402u32 ixgbe_get_pcie_msix_count_generic(struct ixgbe_hw *hw)
2403{
2404 struct ixgbe_adapter *adapter = hw->back;
2405 u16 msix_count;
2406 pci_read_config_word(adapter->pdev, IXGBE_PCIE_MSIX_82599_CAPS,
2407 &msix_count);
2408 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
2409
2410 /* MSI-X count is zero-based in HW, so increment to give proper value */
2411 msix_count++;
2412
2413 return msix_count;
2414}
2415
2416/**
2417 * ixgbe_clear_vmdq_generic - Disassociate a VMDq pool index from a rx address
2418 * @hw: pointer to hardware struct
2419 * @rar: receive address register index to disassociate
2420 * @vmdq: VMDq pool index to remove from the rar
2421 **/
2422s32 ixgbe_clear_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2423{
2424 u32 mpsar_lo, mpsar_hi;
2425 u32 rar_entries = hw->mac.num_rar_entries;
2426
2427 if (rar < rar_entries) {
2428 mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2429 mpsar_hi = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2430
2431 if (!mpsar_lo && !mpsar_hi)
2432 goto done;
2433
2434 if (vmdq == IXGBE_CLEAR_VMDQ_ALL) {
2435 if (mpsar_lo) {
2436 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), 0);
2437 mpsar_lo = 0;
2438 }
2439 if (mpsar_hi) {
2440 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), 0);
2441 mpsar_hi = 0;
2442 }
2443 } else if (vmdq < 32) {
2444 mpsar_lo &= ~(1 << vmdq);
2445 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar_lo);
2446 } else {
2447 mpsar_hi &= ~(1 << (vmdq - 32));
2448 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar_hi);
2449 }
2450
2451 /* was that the last pool using this rar? */
2452 if (mpsar_lo == 0 && mpsar_hi == 0 && rar != 0)
2453 hw->mac.ops.clear_rar(hw, rar);
2454 } else {
2455 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
2456 }
2457
2458done:
2459 return 0;
2460}
2461
2462/**
2463 * ixgbe_set_vmdq_generic - Associate a VMDq pool index with a rx address
2464 * @hw: pointer to hardware struct
2465 * @rar: receive address register index to associate with a VMDq index
2466 * @vmdq: VMDq pool index
2467 **/
2468s32 ixgbe_set_vmdq_generic(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
2469{
2470 u32 mpsar;
2471 u32 rar_entries = hw->mac.num_rar_entries;
2472
2473 if (rar < rar_entries) {
2474 if (vmdq < 32) {
2475 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar));
2476 mpsar |= 1 << vmdq;
2477 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(rar), mpsar);
2478 } else {
2479 mpsar = IXGBE_READ_REG(hw, IXGBE_MPSAR_HI(rar));
2480 mpsar |= 1 << (vmdq - 32);
2481 IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(rar), mpsar);
2482 }
2483 } else {
2484 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
2485 }
2486 return 0;
2487}
2488
2489/**
2490 * ixgbe_init_uta_tables_generic - Initialize the Unicast Table Array
2491 * @hw: pointer to hardware structure
2492 **/
2493s32 ixgbe_init_uta_tables_generic(struct ixgbe_hw *hw)
2494{
2495 int i;
2496
2497
2498 for (i = 0; i < 128; i++)
2499 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), 0);
2500
2501 return 0;
2502}
2503
2504/**
2505 * ixgbe_find_vlvf_slot - find the vlanid or the first empty slot
2506 * @hw: pointer to hardware structure
2507 * @vlan: VLAN id to write to VLAN filter
2508 *
2509 * return the VLVF index where this VLAN id should be placed
2510 *
2511 **/
Emil Tantilov5d5b7c32010-10-12 22:20:59 +00002512static s32 ixgbe_find_vlvf_slot(struct ixgbe_hw *hw, u32 vlan)
Mallikarjuna R Chilakala21ce8492010-05-13 17:33:41 +00002513{
2514 u32 bits = 0;
2515 u32 first_empty_slot = 0;
2516 s32 regindex;
2517
2518 /* short cut the special case */
2519 if (vlan == 0)
2520 return 0;
2521
2522 /*
2523 * Search for the vlan id in the VLVF entries. Save off the first empty
2524 * slot found along the way
2525 */
2526 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
2527 bits = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
2528 if (!bits && !(first_empty_slot))
2529 first_empty_slot = regindex;
2530 else if ((bits & 0x0FFF) == vlan)
2531 break;
2532 }
2533
2534 /*
2535 * If regindex is less than IXGBE_VLVF_ENTRIES, then we found the vlan
2536 * in the VLVF. Else use the first empty VLVF register for this
2537 * vlan id.
2538 */
2539 if (regindex >= IXGBE_VLVF_ENTRIES) {
2540 if (first_empty_slot)
2541 regindex = first_empty_slot;
2542 else {
2543 hw_dbg(hw, "No space in VLVF.\n");
2544 regindex = IXGBE_ERR_NO_SPACE;
2545 }
2546 }
2547
2548 return regindex;
2549}
2550
2551/**
2552 * ixgbe_set_vfta_generic - Set VLAN filter table
2553 * @hw: pointer to hardware structure
2554 * @vlan: VLAN id to write to VLAN filter
2555 * @vind: VMDq output index that maps queue to VLAN id in VFVFB
2556 * @vlan_on: boolean flag to turn on/off VLAN in VFVF
2557 *
2558 * Turn on/off specified VLAN in the VLAN filter table.
2559 **/
2560s32 ixgbe_set_vfta_generic(struct ixgbe_hw *hw, u32 vlan, u32 vind,
2561 bool vlan_on)
2562{
2563 s32 regindex;
2564 u32 bitindex;
2565 u32 vfta;
2566 u32 bits;
2567 u32 vt;
2568 u32 targetbit;
2569 bool vfta_changed = false;
2570
2571 if (vlan > 4095)
2572 return IXGBE_ERR_PARAM;
2573
2574 /*
2575 * this is a 2 part operation - first the VFTA, then the
2576 * VLVF and VLVFB if VT Mode is set
2577 * We don't write the VFTA until we know the VLVF part succeeded.
2578 */
2579
2580 /* Part 1
2581 * The VFTA is a bitstring made up of 128 32-bit registers
2582 * that enable the particular VLAN id, much like the MTA:
2583 * bits[11-5]: which register
2584 * bits[4-0]: which bit in the register
2585 */
2586 regindex = (vlan >> 5) & 0x7F;
2587 bitindex = vlan & 0x1F;
2588 targetbit = (1 << bitindex);
2589 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
2590
2591 if (vlan_on) {
2592 if (!(vfta & targetbit)) {
2593 vfta |= targetbit;
2594 vfta_changed = true;
2595 }
2596 } else {
2597 if ((vfta & targetbit)) {
2598 vfta &= ~targetbit;
2599 vfta_changed = true;
2600 }
2601 }
2602
2603 /* Part 2
2604 * If VT Mode is set
2605 * Either vlan_on
2606 * make sure the vlan is in VLVF
2607 * set the vind bit in the matching VLVFB
2608 * Or !vlan_on
2609 * clear the pool bit and possibly the vind
2610 */
2611 vt = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2612 if (vt & IXGBE_VT_CTL_VT_ENABLE) {
2613 s32 vlvf_index;
2614
2615 vlvf_index = ixgbe_find_vlvf_slot(hw, vlan);
2616 if (vlvf_index < 0)
2617 return vlvf_index;
2618
2619 if (vlan_on) {
2620 /* set the pool bit */
2621 if (vind < 32) {
2622 bits = IXGBE_READ_REG(hw,
2623 IXGBE_VLVFB(vlvf_index*2));
2624 bits |= (1 << vind);
2625 IXGBE_WRITE_REG(hw,
2626 IXGBE_VLVFB(vlvf_index*2),
2627 bits);
2628 } else {
2629 bits = IXGBE_READ_REG(hw,
2630 IXGBE_VLVFB((vlvf_index*2)+1));
2631 bits |= (1 << (vind-32));
2632 IXGBE_WRITE_REG(hw,
2633 IXGBE_VLVFB((vlvf_index*2)+1),
2634 bits);
2635 }
2636 } else {
2637 /* clear the pool bit */
2638 if (vind < 32) {
2639 bits = IXGBE_READ_REG(hw,
2640 IXGBE_VLVFB(vlvf_index*2));
2641 bits &= ~(1 << vind);
2642 IXGBE_WRITE_REG(hw,
2643 IXGBE_VLVFB(vlvf_index*2),
2644 bits);
2645 bits |= IXGBE_READ_REG(hw,
2646 IXGBE_VLVFB((vlvf_index*2)+1));
2647 } else {
2648 bits = IXGBE_READ_REG(hw,
2649 IXGBE_VLVFB((vlvf_index*2)+1));
2650 bits &= ~(1 << (vind-32));
2651 IXGBE_WRITE_REG(hw,
2652 IXGBE_VLVFB((vlvf_index*2)+1),
2653 bits);
2654 bits |= IXGBE_READ_REG(hw,
2655 IXGBE_VLVFB(vlvf_index*2));
2656 }
2657 }
2658
2659 /*
2660 * If there are still bits set in the VLVFB registers
2661 * for the VLAN ID indicated we need to see if the
2662 * caller is requesting that we clear the VFTA entry bit.
2663 * If the caller has requested that we clear the VFTA
2664 * entry bit but there are still pools/VFs using this VLAN
2665 * ID entry then ignore the request. We're not worried
2666 * about the case where we're turning the VFTA VLAN ID
2667 * entry bit on, only when requested to turn it off as
2668 * there may be multiple pools and/or VFs using the
2669 * VLAN ID entry. In that case we cannot clear the
2670 * VFTA bit until all pools/VFs using that VLAN ID have also
2671 * been cleared. This will be indicated by "bits" being
2672 * zero.
2673 */
2674 if (bits) {
2675 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index),
2676 (IXGBE_VLVF_VIEN | vlan));
2677 if (!vlan_on) {
2678 /* someone wants to clear the vfta entry
2679 * but some pools/VFs are still using it.
2680 * Ignore it. */
2681 vfta_changed = false;
2682 }
2683 }
2684 else
2685 IXGBE_WRITE_REG(hw, IXGBE_VLVF(vlvf_index), 0);
2686 }
2687
2688 if (vfta_changed)
2689 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), vfta);
2690
2691 return 0;
2692}
2693
2694/**
2695 * ixgbe_clear_vfta_generic - Clear VLAN filter table
2696 * @hw: pointer to hardware structure
2697 *
2698 * Clears the VLAN filer table, and the VMDq index associated with the filter
2699 **/
2700s32 ixgbe_clear_vfta_generic(struct ixgbe_hw *hw)
2701{
2702 u32 offset;
2703
2704 for (offset = 0; offset < hw->mac.vft_size; offset++)
2705 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
2706
2707 for (offset = 0; offset < IXGBE_VLVF_ENTRIES; offset++) {
2708 IXGBE_WRITE_REG(hw, IXGBE_VLVF(offset), 0);
2709 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(offset*2), 0);
2710 IXGBE_WRITE_REG(hw, IXGBE_VLVFB((offset*2)+1), 0);
2711 }
2712
2713 return 0;
2714}
2715
2716/**
2717 * ixgbe_check_mac_link_generic - Determine link and speed status
2718 * @hw: pointer to hardware structure
2719 * @speed: pointer to link speed
2720 * @link_up: true when link is up
2721 * @link_up_wait_to_complete: bool used to wait for link up or not
2722 *
2723 * Reads the links register to determine if link is up and the current speed
2724 **/
2725s32 ixgbe_check_mac_link_generic(struct ixgbe_hw *hw, ixgbe_link_speed *speed,
2726 bool *link_up, bool link_up_wait_to_complete)
2727{
2728 u32 links_reg;
2729 u32 i;
2730
2731 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
2732 if (link_up_wait_to_complete) {
2733 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
2734 if (links_reg & IXGBE_LINKS_UP) {
2735 *link_up = true;
2736 break;
2737 } else {
2738 *link_up = false;
2739 }
2740 msleep(100);
2741 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
2742 }
2743 } else {
2744 if (links_reg & IXGBE_LINKS_UP)
2745 *link_up = true;
2746 else
2747 *link_up = false;
2748 }
2749
2750 if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
2751 IXGBE_LINKS_SPEED_10G_82599)
2752 *speed = IXGBE_LINK_SPEED_10GB_FULL;
2753 else if ((links_reg & IXGBE_LINKS_SPEED_82599) ==
2754 IXGBE_LINKS_SPEED_1G_82599)
2755 *speed = IXGBE_LINK_SPEED_1GB_FULL;
2756 else
2757 *speed = IXGBE_LINK_SPEED_100_FULL;
2758
2759 /* if link is down, zero out the current_mode */
2760 if (*link_up == false) {
2761 hw->fc.current_mode = ixgbe_fc_none;
2762 hw->fc.fc_was_autonegged = false;
2763 }
2764
2765 return 0;
2766}
Don Skidmorea391f1d2010-11-16 19:27:15 -08002767
2768/**
2769 * ixgbe_get_wwn_prefix_generic Get alternative WWNN/WWPN prefix from
2770 * the EEPROM
2771 * @hw: pointer to hardware structure
2772 * @wwnn_prefix: the alternative WWNN prefix
2773 * @wwpn_prefix: the alternative WWPN prefix
2774 *
2775 * This function will read the EEPROM from the alternative SAN MAC address
2776 * block to check the support for the alternative WWNN/WWPN prefix support.
2777 **/
2778s32 ixgbe_get_wwn_prefix_generic(struct ixgbe_hw *hw, u16 *wwnn_prefix,
2779 u16 *wwpn_prefix)
2780{
2781 u16 offset, caps;
2782 u16 alt_san_mac_blk_offset;
2783
2784 /* clear output first */
2785 *wwnn_prefix = 0xFFFF;
2786 *wwpn_prefix = 0xFFFF;
2787
2788 /* check if alternative SAN MAC is supported */
2789 hw->eeprom.ops.read(hw, IXGBE_ALT_SAN_MAC_ADDR_BLK_PTR,
2790 &alt_san_mac_blk_offset);
2791
2792 if ((alt_san_mac_blk_offset == 0) ||
2793 (alt_san_mac_blk_offset == 0xFFFF))
2794 goto wwn_prefix_out;
2795
2796 /* check capability in alternative san mac address block */
2797 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_CAPS_OFFSET;
2798 hw->eeprom.ops.read(hw, offset, &caps);
2799 if (!(caps & IXGBE_ALT_SAN_MAC_ADDR_CAPS_ALTWWN))
2800 goto wwn_prefix_out;
2801
2802 /* get the corresponding prefix for WWNN/WWPN */
2803 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWNN_OFFSET;
2804 hw->eeprom.ops.read(hw, offset, wwnn_prefix);
2805
2806 offset = alt_san_mac_blk_offset + IXGBE_ALT_SAN_MAC_ADDR_WWPN_OFFSET;
2807 hw->eeprom.ops.read(hw, offset, wwpn_prefix);
2808
2809wwn_prefix_out:
2810 return 0;
2811}
Greg Rosea985b6c32010-11-18 03:02:52 +00002812
2813/**
2814 * ixgbe_set_mac_anti_spoofing - Enable/Disable MAC anti-spoofing
2815 * @hw: pointer to hardware structure
2816 * @enable: enable or disable switch for anti-spoofing
2817 * @pf: Physical Function pool - do not enable anti-spoofing for the PF
2818 *
2819 **/
2820void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int pf)
2821{
2822 int j;
2823 int pf_target_reg = pf >> 3;
2824 int pf_target_shift = pf % 8;
2825 u32 pfvfspoof = 0;
2826
2827 if (hw->mac.type == ixgbe_mac_82598EB)
2828 return;
2829
2830 if (enable)
2831 pfvfspoof = IXGBE_SPOOF_MACAS_MASK;
2832
2833 /*
2834 * PFVFSPOOF register array is size 8 with 8 bits assigned to
2835 * MAC anti-spoof enables in each register array element.
2836 */
2837 for (j = 0; j < IXGBE_PFVFSPOOF_REG_COUNT; j++)
2838 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(j), pfvfspoof);
2839
2840 /* If not enabling anti-spoofing then done */
2841 if (!enable)
2842 return;
2843
2844 /*
2845 * The PF should be allowed to spoof so that it can support
2846 * emulation mode NICs. Reset the bit assigned to the PF
2847 */
2848 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(pf_target_reg));
2849 pfvfspoof ^= (1 << pf_target_shift);
2850 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(pf_target_reg), pfvfspoof);
2851}
2852
2853/**
2854 * ixgbe_set_vlan_anti_spoofing - Enable/Disable VLAN anti-spoofing
2855 * @hw: pointer to hardware structure
2856 * @enable: enable or disable switch for VLAN anti-spoofing
2857 * @pf: Virtual Function pool - VF Pool to set for VLAN anti-spoofing
2858 *
2859 **/
2860void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf)
2861{
2862 int vf_target_reg = vf >> 3;
2863 int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT;
2864 u32 pfvfspoof;
2865
2866 if (hw->mac.type == ixgbe_mac_82598EB)
2867 return;
2868
2869 pfvfspoof = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
2870 if (enable)
2871 pfvfspoof |= (1 << vf_target_shift);
2872 else
2873 pfvfspoof &= ~(1 << vf_target_shift);
2874 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), pfvfspoof);
2875}