blob: 9831a244d5baa2ba9c61b22f448a239d8c4f53c8 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore434c5e32013-01-08 05:02:28 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/vmalloc.h>
33#include <linux/string.h>
34#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000035#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070036#include <linux/ip.h>
37#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
John Fastabend2a47fa42013-11-06 09:54:52 -080047#include <linux/if_macvlan.h>
John Fastabend815cccb2012-10-24 08:13:09 +000048#include <linux/if_bridge.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040049#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000050#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070051
52#include "ixgbe.h"
53#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000054#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000055#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070056
57char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070058static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000059 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000060#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000061char ixgbe_default_device_descr[] =
62 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000063#else
64static char ixgbe_default_device_descr[] =
65 "Intel(R) 10 Gigabit Network Connection";
66#endif
Don Skidmore93ac03b2013-05-15 07:34:50 +000067#define DRV_VERSION "3.15.1-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070068const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000069static const char ixgbe_copyright[] =
Don Skidmore434c5e32013-01-08 05:02:28 +000070 "Copyright (c) 1999-2013 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070071
72static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070073 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000074 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080075 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070076};
77
78/* ixgbe_pci_tbl - PCI Device ID Table
79 *
80 * Wildcard entries (PCI_ANY_ID) should come last
81 * Last entry must be all 0s
82 *
83 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
84 * Class, Class Mask, private data (not used) }
85 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000086static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000087 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
88 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
89 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Don Skidmore8f583322013-07-27 06:25:38 +0000113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
Auke Kok9a799d72007-09-15 14:07:45 -0700117 /* required last entry */
118 {0, }
119};
120MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
121
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400122#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800123static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000124 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800125static struct notifier_block dca_notifier = {
126 .notifier_call = ixgbe_notify_dca,
127 .next = NULL,
128 .priority = 0
129};
130#endif
131
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000132#ifdef CONFIG_PCI_IOV
133static unsigned int max_vfs;
134module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000135MODULE_PARM_DESC(max_vfs,
Jacob Keller170e8542013-11-09 04:52:32 -0800136 "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63. (Deprecated)");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000137#endif /* CONFIG_PCI_IOV */
138
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000139static unsigned int allow_unsupported_sfp;
140module_param(allow_unsupported_sfp, uint, 0);
141MODULE_PARM_DESC(allow_unsupported_sfp,
142 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
143
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000144#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
145static int debug = -1;
146module_param(debug, int, 0);
147MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
148
Auke Kok9a799d72007-09-15 14:07:45 -0700149MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
150MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
151MODULE_LICENSE("GPL");
152MODULE_VERSION(DRV_VERSION);
153
Jacob Kellerb8e82002013-04-09 07:20:09 +0000154static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter *adapter,
155 u32 reg, u16 *value)
156{
Jacob Kellerb8e82002013-04-09 07:20:09 +0000157 struct pci_dev *parent_dev;
158 struct pci_bus *parent_bus;
159
160 parent_bus = adapter->pdev->bus->parent;
161 if (!parent_bus)
162 return -1;
163
164 parent_dev = parent_bus->self;
165 if (!parent_dev)
166 return -1;
167
Yijing Wangc0798ed2013-09-04 17:30:08 +0000168 if (!pci_is_pcie(parent_dev))
Jacob Kellerb8e82002013-04-09 07:20:09 +0000169 return -1;
170
Yijing Wangc0798ed2013-09-04 17:30:08 +0000171 pcie_capability_read_word(parent_dev, reg, value);
Jacob Kellerb8e82002013-04-09 07:20:09 +0000172 return 0;
173}
174
175static s32 ixgbe_get_parent_bus_info(struct ixgbe_adapter *adapter)
176{
177 struct ixgbe_hw *hw = &adapter->hw;
178 u16 link_status = 0;
179 int err;
180
181 hw->bus.type = ixgbe_bus_type_pci_express;
182
183 /* Get the negotiated link width and speed from PCI config space of the
184 * parent, as this device is behind a switch
185 */
186 err = ixgbe_read_pci_cfg_word_parent(adapter, 18, &link_status);
187
188 /* assume caller will handle error case */
189 if (err)
190 return err;
191
192 hw->bus.width = ixgbe_convert_bus_width(link_status);
193 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
194
195 return 0;
196}
197
Jacob Kellere027d1a2013-07-31 06:53:31 +0000198/**
199 * ixgbe_check_from_parent - Determine whether PCIe info should come from parent
200 * @hw: hw specific details
201 *
202 * This function is used by probe to determine whether a device's PCI-Express
203 * bandwidth details should be gathered from the parent bus instead of from the
204 * device. Used to ensure that various locations all have the correct device ID
205 * checks.
206 */
207static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw *hw)
208{
209 switch (hw->device_id) {
210 case IXGBE_DEV_ID_82599_SFP_SF_QP:
Don Skidmore8f583322013-07-27 06:25:38 +0000211 case IXGBE_DEV_ID_82599_QSFP_SF_QP:
Jacob Kellere027d1a2013-07-31 06:53:31 +0000212 return true;
213 default:
214 return false;
215 }
216}
217
218static void ixgbe_check_minimum_link(struct ixgbe_adapter *adapter,
219 int expected_gts)
220{
221 int max_gts = 0;
222 enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
223 enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
224 struct pci_dev *pdev;
225
226 /* determine whether to use the the parent device
227 */
228 if (ixgbe_pcie_from_parent(&adapter->hw))
229 pdev = adapter->pdev->bus->parent->self;
230 else
231 pdev = adapter->pdev;
232
233 if (pcie_get_minimum_link(pdev, &speed, &width) ||
234 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
235 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
236 return;
237 }
238
239 switch (speed) {
240 case PCIE_SPEED_2_5GT:
241 /* 8b/10b encoding reduces max throughput by 20% */
242 max_gts = 2 * width;
243 break;
244 case PCIE_SPEED_5_0GT:
245 /* 8b/10b encoding reduces max throughput by 20% */
246 max_gts = 4 * width;
247 break;
248 case PCIE_SPEED_8_0GT:
Jacob Keller9f0a4332013-10-18 05:09:19 +0000249 /* 128b/130b encoding reduces throughput by less than 2% */
Jacob Kellere027d1a2013-07-31 06:53:31 +0000250 max_gts = 8 * width;
251 break;
252 default:
253 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
254 return;
255 }
256
257 e_dev_info("PCI Express bandwidth of %dGT/s available\n",
258 max_gts);
259 e_dev_info("(Speed:%s, Width: x%d, Encoding Loss:%s)\n",
260 (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
261 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
262 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
263 "Unknown"),
264 width,
265 (speed == PCIE_SPEED_2_5GT ? "20%" :
266 speed == PCIE_SPEED_5_0GT ? "20%" :
Jacob Keller9f0a4332013-10-18 05:09:19 +0000267 speed == PCIE_SPEED_8_0GT ? "<2%" :
Jacob Kellere027d1a2013-07-31 06:53:31 +0000268 "Unknown"));
269
270 if (max_gts < expected_gts) {
271 e_dev_warn("This is not sufficient for optimal performance of this card.\n");
272 e_dev_warn("For optimal performance, at least %dGT/s of bandwidth is required.\n",
273 expected_gts);
274 e_dev_warn("A slot with more lanes and/or higher speed is suggested.\n");
275 }
276}
277
Alexander Duyck70864002011-04-27 09:13:56 +0000278static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
279{
280 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
Mark Rustad09f40ae2014-01-14 18:53:11 -0800281 !test_bit(__IXGBE_REMOVING, &adapter->state) &&
Alexander Duyck70864002011-04-27 09:13:56 +0000282 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
283 schedule_work(&adapter->service_task);
284}
285
Mark Rustad2a1a0912014-01-14 18:53:15 -0800286static void ixgbe_remove_adapter(struct ixgbe_hw *hw)
287{
288 struct ixgbe_adapter *adapter = hw->back;
289
290 if (!hw->hw_addr)
291 return;
292 hw->hw_addr = NULL;
293 e_dev_err("Adapter removed\n");
294}
295
296void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg)
297{
298 u32 value;
299
300 /* The following check not only optimizes a bit by not
301 * performing a read on the status register when the
302 * register just read was a status register read that
303 * returned IXGBE_FAILED_READ_REG. It also blocks any
304 * potential recursion.
305 */
306 if (reg == IXGBE_STATUS) {
307 ixgbe_remove_adapter(hw);
308 return;
309 }
310 value = ixgbe_read_reg(hw, IXGBE_STATUS);
311 if (value == IXGBE_FAILED_READ_REG)
312 ixgbe_remove_adapter(hw);
313}
314
Alexander Duyck70864002011-04-27 09:13:56 +0000315static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
316{
317 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
318
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000319 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000320 smp_mb__before_clear_bit();
321 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
322}
323
Taku Izumidcd79ae2010-04-27 14:39:53 +0000324struct ixgbe_reg_info {
325 u32 ofs;
326 char *name;
327};
328
329static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
330
331 /* General Registers */
332 {IXGBE_CTRL, "CTRL"},
333 {IXGBE_STATUS, "STATUS"},
334 {IXGBE_CTRL_EXT, "CTRL_EXT"},
335
336 /* Interrupt Registers */
337 {IXGBE_EICR, "EICR"},
338
339 /* RX Registers */
340 {IXGBE_SRRCTL(0), "SRRCTL"},
341 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
342 {IXGBE_RDLEN(0), "RDLEN"},
343 {IXGBE_RDH(0), "RDH"},
344 {IXGBE_RDT(0), "RDT"},
345 {IXGBE_RXDCTL(0), "RXDCTL"},
346 {IXGBE_RDBAL(0), "RDBAL"},
347 {IXGBE_RDBAH(0), "RDBAH"},
348
349 /* TX Registers */
350 {IXGBE_TDBAL(0), "TDBAL"},
351 {IXGBE_TDBAH(0), "TDBAH"},
352 {IXGBE_TDLEN(0), "TDLEN"},
353 {IXGBE_TDH(0), "TDH"},
354 {IXGBE_TDT(0), "TDT"},
355 {IXGBE_TXDCTL(0), "TXDCTL"},
356
357 /* List Terminator */
358 {}
359};
360
361
362/*
363 * ixgbe_regdump - register printout routine
364 */
365static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
366{
367 int i = 0, j = 0;
368 char rname[16];
369 u32 regs[64];
370
371 switch (reginfo->ofs) {
372 case IXGBE_SRRCTL(0):
373 for (i = 0; i < 64; i++)
374 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
375 break;
376 case IXGBE_DCA_RXCTRL(0):
377 for (i = 0; i < 64; i++)
378 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
379 break;
380 case IXGBE_RDLEN(0):
381 for (i = 0; i < 64; i++)
382 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
383 break;
384 case IXGBE_RDH(0):
385 for (i = 0; i < 64; i++)
386 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
387 break;
388 case IXGBE_RDT(0):
389 for (i = 0; i < 64; i++)
390 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
391 break;
392 case IXGBE_RXDCTL(0):
393 for (i = 0; i < 64; i++)
394 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
395 break;
396 case IXGBE_RDBAL(0):
397 for (i = 0; i < 64; i++)
398 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
399 break;
400 case IXGBE_RDBAH(0):
401 for (i = 0; i < 64; i++)
402 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
403 break;
404 case IXGBE_TDBAL(0):
405 for (i = 0; i < 64; i++)
406 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
407 break;
408 case IXGBE_TDBAH(0):
409 for (i = 0; i < 64; i++)
410 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
411 break;
412 case IXGBE_TDLEN(0):
413 for (i = 0; i < 64; i++)
414 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
415 break;
416 case IXGBE_TDH(0):
417 for (i = 0; i < 64; i++)
418 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
419 break;
420 case IXGBE_TDT(0):
421 for (i = 0; i < 64; i++)
422 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
423 break;
424 case IXGBE_TXDCTL(0):
425 for (i = 0; i < 64; i++)
426 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
427 break;
428 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000429 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000430 IXGBE_READ_REG(hw, reginfo->ofs));
431 return;
432 }
433
434 for (i = 0; i < 8; i++) {
435 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000436 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000437 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000438 pr_cont(" %08x", regs[i*8+j]);
439 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000440 }
441
442}
443
444/*
445 * ixgbe_dump - Print registers, tx-rings and rx-rings
446 */
447static void ixgbe_dump(struct ixgbe_adapter *adapter)
448{
449 struct net_device *netdev = adapter->netdev;
450 struct ixgbe_hw *hw = &adapter->hw;
451 struct ixgbe_reg_info *reginfo;
452 int n = 0;
453 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000454 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000455 union ixgbe_adv_tx_desc *tx_desc;
456 struct my_u0 { u64 a; u64 b; } *u0;
457 struct ixgbe_ring *rx_ring;
458 union ixgbe_adv_rx_desc *rx_desc;
459 struct ixgbe_rx_buffer *rx_buffer_info;
460 u32 staterr;
461 int i = 0;
462
463 if (!netif_msg_hw(adapter))
464 return;
465
466 /* Print netdevice Info */
467 if (netdev) {
468 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000469 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000470 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000471 pr_info("%-15s %016lX %016lX %016lX\n",
472 netdev->name,
473 netdev->state,
474 netdev->trans_start,
475 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000476 }
477
478 /* Print Registers */
479 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000480 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000481 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
482 reginfo->name; reginfo++) {
483 ixgbe_regdump(hw, reginfo);
484 }
485
486 /* Print TX Ring Summary */
487 if (!netdev || !netif_running(netdev))
488 goto exit;
489
490 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000491 pr_info(" %s %s %s %s\n",
492 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
493 "leng", "ntw", "timestamp");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000494 for (n = 0; n < adapter->num_tx_queues; n++) {
495 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000496 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Josh Hay8ad88e32012-09-26 05:59:41 +0000497 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000498 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000499 (u64)dma_unmap_addr(tx_buffer, dma),
500 dma_unmap_len(tx_buffer, len),
501 tx_buffer->next_to_watch,
502 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000503 }
504
505 /* Print TX Rings */
506 if (!netif_msg_tx_done(adapter))
507 goto rx_ring_summary;
508
509 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
510
511 /* Transmit Descriptor Formats
512 *
Josh Hay39ac8682012-09-26 05:59:36 +0000513 * 82598 Advanced Transmit Descriptor
Taku Izumidcd79ae2010-04-27 14:39:53 +0000514 * +--------------------------------------------------------------+
515 * 0 | Buffer Address [63:0] |
516 * +--------------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000517 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000518 * +--------------------------------------------------------------+
519 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000520 *
521 * 82598 Advanced Transmit Descriptor (Write-Back Format)
522 * +--------------------------------------------------------------+
523 * 0 | RSV [63:0] |
524 * +--------------------------------------------------------------+
525 * 8 | RSV | STA | NXTSEQ |
526 * +--------------------------------------------------------------+
527 * 63 36 35 32 31 0
528 *
529 * 82599+ Advanced Transmit Descriptor
530 * +--------------------------------------------------------------+
531 * 0 | Buffer Address [63:0] |
532 * +--------------------------------------------------------------+
533 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
534 * +--------------------------------------------------------------+
535 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
536 *
537 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
538 * +--------------------------------------------------------------+
539 * 0 | RSV [63:0] |
540 * +--------------------------------------------------------------+
541 * 8 | RSV | STA | RSV |
542 * +--------------------------------------------------------------+
543 * 63 36 35 32 31 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000544 */
545
546 for (n = 0; n < adapter->num_tx_queues; n++) {
547 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000548 pr_info("------------------------------------\n");
549 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
550 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000551 pr_info("%s%s %s %s %s %s\n",
552 "T [desc] [address 63:0 ] ",
553 "[PlPOIdStDDt Ln] [bi->dma ] ",
554 "leng", "ntw", "timestamp", "bi->skb");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000555
556 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000557 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000558 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000559 u0 = (struct my_u0 *)tx_desc;
Josh Hay8ad88e32012-09-26 05:59:41 +0000560 if (dma_unmap_len(tx_buffer, len) > 0) {
561 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p",
562 i,
563 le64_to_cpu(u0->a),
564 le64_to_cpu(u0->b),
565 (u64)dma_unmap_addr(tx_buffer, dma),
Alexander Duyck729739b2012-02-08 07:51:06 +0000566 dma_unmap_len(tx_buffer, len),
Josh Hay8ad88e32012-09-26 05:59:41 +0000567 tx_buffer->next_to_watch,
568 (u64)tx_buffer->time_stamp,
569 tx_buffer->skb);
570 if (i == tx_ring->next_to_use &&
571 i == tx_ring->next_to_clean)
572 pr_cont(" NTC/U\n");
573 else if (i == tx_ring->next_to_use)
574 pr_cont(" NTU\n");
575 else if (i == tx_ring->next_to_clean)
576 pr_cont(" NTC\n");
577 else
578 pr_cont("\n");
579
580 if (netif_msg_pktdata(adapter) &&
581 tx_buffer->skb)
582 print_hex_dump(KERN_INFO, "",
583 DUMP_PREFIX_ADDRESS, 16, 1,
584 tx_buffer->skb->data,
585 dma_unmap_len(tx_buffer, len),
586 true);
587 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000588 }
589 }
590
591 /* Print RX Rings Summary */
592rx_ring_summary:
593 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000594 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000595 for (n = 0; n < adapter->num_rx_queues; n++) {
596 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000597 pr_info("%5d %5X %5X\n",
598 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000599 }
600
601 /* Print RX Rings */
602 if (!netif_msg_rx_status(adapter))
603 goto exit;
604
605 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
606
Josh Hay39ac8682012-09-26 05:59:36 +0000607 /* Receive Descriptor Formats
608 *
609 * 82598 Advanced Receive Descriptor (Read) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000610 * 63 1 0
611 * +-----------------------------------------------------+
612 * 0 | Packet Buffer Address [63:1] |A0/NSE|
613 * +----------------------------------------------+------+
614 * 8 | Header Buffer Address [63:1] | DD |
615 * +-----------------------------------------------------+
616 *
617 *
Josh Hay39ac8682012-09-26 05:59:36 +0000618 * 82598 Advanced Receive Descriptor (Write-Back) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000619 *
620 * 63 48 47 32 31 30 21 20 16 15 4 3 0
621 * +------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000622 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
623 * | Packet | IP | | | | Type | Type |
624 * | Checksum | Ident | | | | | |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000625 * +------------------------------------------------------+
626 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
627 * +------------------------------------------------------+
628 * 63 48 47 32 31 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000629 *
630 * 82599+ Advanced Receive Descriptor (Read) Format
631 * 63 1 0
632 * +-----------------------------------------------------+
633 * 0 | Packet Buffer Address [63:1] |A0/NSE|
634 * +----------------------------------------------+------+
635 * 8 | Header Buffer Address [63:1] | DD |
636 * +-----------------------------------------------------+
637 *
638 *
639 * 82599+ Advanced Receive Descriptor (Write-Back) Format
640 *
641 * 63 48 47 32 31 30 21 20 17 16 4 3 0
642 * +------------------------------------------------------+
643 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
644 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
645 * |/ Flow Dir Flt ID | | | | | |
646 * +------------------------------------------------------+
647 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
648 * +------------------------------------------------------+
649 * 63 48 47 32 31 20 19 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000650 */
Josh Hay39ac8682012-09-26 05:59:36 +0000651
Taku Izumidcd79ae2010-04-27 14:39:53 +0000652 for (n = 0; n < adapter->num_rx_queues; n++) {
653 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000654 pr_info("------------------------------------\n");
655 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
656 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000657 pr_info("%s%s%s",
658 "R [desc] [ PktBuf A0] ",
659 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000660 "<-- Adv Rx Read format\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000661 pr_info("%s%s%s",
662 "RWB[desc] [PcsmIpSHl PtRs] ",
663 "[vl er S cks ln] ---------------- [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000664 "<-- Adv Rx Write-Back format\n");
665
666 for (i = 0; i < rx_ring->count; i++) {
667 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000668 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000669 u0 = (struct my_u0 *)rx_desc;
670 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
671 if (staterr & IXGBE_RXD_STAT_DD) {
672 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000673 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000674 "%016llX ---------------- %p", i,
675 le64_to_cpu(u0->a),
676 le64_to_cpu(u0->b),
677 rx_buffer_info->skb);
678 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000679 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000680 "%016llX %016llX %p", i,
681 le64_to_cpu(u0->a),
682 le64_to_cpu(u0->b),
683 (u64)rx_buffer_info->dma,
684 rx_buffer_info->skb);
685
Emil Tantilov9c50c032012-07-26 01:21:24 +0000686 if (netif_msg_pktdata(adapter) &&
687 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000688 print_hex_dump(KERN_INFO, "",
689 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000690 page_address(rx_buffer_info->page) +
691 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000692 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000693 }
694 }
695
696 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000697 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000698 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000699 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000700 else
Joe Perchesc7689572010-09-07 21:35:17 +0000701 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000702
703 }
704 }
705
706exit:
707 return;
708}
709
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800710static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
711{
712 u32 ctrl_ext;
713
714 /* Let firmware take over control of h/w */
715 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
716 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000717 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800718}
719
720static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
721{
722 u32 ctrl_ext;
723
724 /* Let firmware know the driver has taken over */
725 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
726 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000727 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800728}
Auke Kok9a799d72007-09-15 14:07:45 -0700729
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000730/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000731 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
732 * @adapter: pointer to adapter struct
733 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
734 * @queue: queue to map the corresponding interrupt to
735 * @msix_vector: the vector to map to the corresponding queue
736 *
737 */
738static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000739 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700740{
741 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000742 struct ixgbe_hw *hw = &adapter->hw;
743 switch (hw->mac.type) {
744 case ixgbe_mac_82598EB:
745 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
746 if (direction == -1)
747 direction = 0;
748 index = (((direction * 64) + queue) >> 2) & 0x1F;
749 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
750 ivar &= ~(0xFF << (8 * (queue & 0x3)));
751 ivar |= (msix_vector << (8 * (queue & 0x3)));
752 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
753 break;
754 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800755 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000756 if (direction == -1) {
757 /* other causes */
758 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
759 index = ((queue & 1) * 8);
760 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
761 ivar &= ~(0xFF << index);
762 ivar |= (msix_vector << index);
763 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
764 break;
765 } else {
766 /* tx or rx causes */
767 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
768 index = ((16 * (queue & 1)) + (8 * direction));
769 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
770 ivar &= ~(0xFF << index);
771 ivar |= (msix_vector << index);
772 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
773 break;
774 }
775 default:
776 break;
777 }
Auke Kok9a799d72007-09-15 14:07:45 -0700778}
779
Alexander Duyckfe49f042009-06-04 16:00:09 +0000780static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000781 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000782{
783 u32 mask;
784
Alexander Duyckbd508172010-11-16 19:27:03 -0800785 switch (adapter->hw.mac.type) {
786 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000787 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
788 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800789 break;
790 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800791 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000792 mask = (qmask & 0xFFFFFFFF);
793 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
794 mask = (qmask >> 32);
795 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800796 break;
797 default:
798 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000799 }
800}
801
Alexander Duyck729739b2012-02-08 07:51:06 +0000802void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
803 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000804{
Alexander Duyck729739b2012-02-08 07:51:06 +0000805 if (tx_buffer->skb) {
806 dev_kfree_skb_any(tx_buffer->skb);
807 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000808 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000809 dma_unmap_addr(tx_buffer, dma),
810 dma_unmap_len(tx_buffer, len),
811 DMA_TO_DEVICE);
812 } else if (dma_unmap_len(tx_buffer, len)) {
813 dma_unmap_page(ring->dev,
814 dma_unmap_addr(tx_buffer, dma),
815 dma_unmap_len(tx_buffer, len),
816 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000817 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000818 tx_buffer->next_to_watch = NULL;
819 tx_buffer->skb = NULL;
820 dma_unmap_len_set(tx_buffer, len, 0);
821 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700822}
823
Alexander Duyck943561d2012-05-09 22:14:44 -0700824static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
825{
826 struct ixgbe_hw *hw = &adapter->hw;
827 struct ixgbe_hw_stats *hwstats = &adapter->stats;
828 int i;
829 u32 data;
830
831 if ((hw->fc.current_mode != ixgbe_fc_full) &&
832 (hw->fc.current_mode != ixgbe_fc_rx_pause))
833 return;
834
835 switch (hw->mac.type) {
836 case ixgbe_mac_82598EB:
837 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
838 break;
839 default:
840 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
841 }
842 hwstats->lxoffrxc += data;
843
844 /* refill credits (no tx hang) if we received xoff */
845 if (!data)
846 return;
847
848 for (i = 0; i < adapter->num_tx_queues; i++)
849 clear_bit(__IXGBE_HANG_CHECK_ARMED,
850 &adapter->tx_ring[i]->state);
851}
852
John Fastabendc84d3242010-11-16 19:27:12 -0800853static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700854{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700855 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800856 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800857 u32 xoff[8] = {0};
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000858 u8 tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800859 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700860 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700861
Alexander Duyck943561d2012-05-09 22:14:44 -0700862 if (adapter->ixgbe_ieee_pfc)
863 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800864
Alexander Duyck943561d2012-05-09 22:14:44 -0700865 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
866 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800867 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700868 }
John Fastabendc84d3242010-11-16 19:27:12 -0800869
870 /* update stats for each tc, only valid with PFC enabled */
871 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000872 u32 pxoffrxc;
873
John Fastabendc84d3242010-11-16 19:27:12 -0800874 switch (hw->mac.type) {
875 case ixgbe_mac_82598EB:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000876 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800877 break;
878 default:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000879 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800880 }
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000881 hwstats->pxoffrxc[i] += pxoffrxc;
882 /* Get the TC for given UP */
883 tc = netdev_get_prio_tc_map(adapter->netdev, i);
884 xoff[tc] += pxoffrxc;
Auke Kok9a799d72007-09-15 14:07:45 -0700885 }
886
John Fastabendc84d3242010-11-16 19:27:12 -0800887 /* disarm tx queues that have received xoff frames */
888 for (i = 0; i < adapter->num_tx_queues; i++) {
889 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendc84d3242010-11-16 19:27:12 -0800890
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000891 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800892 if (xoff[tc])
893 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
894 }
895}
896
897static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
898{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000899 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800900}
901
902static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
903{
John Fastabend2a47fa42013-11-06 09:54:52 -0800904 struct ixgbe_adapter *adapter;
905 struct ixgbe_hw *hw;
906 u32 head, tail;
John Fastabendc84d3242010-11-16 19:27:12 -0800907
John Fastabend2a47fa42013-11-06 09:54:52 -0800908 if (ring->l2_accel_priv)
909 adapter = ring->l2_accel_priv->real_adapter;
910 else
911 adapter = netdev_priv(ring->netdev);
912
913 hw = &adapter->hw;
914 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
915 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
John Fastabendc84d3242010-11-16 19:27:12 -0800916
917 if (head != tail)
918 return (head < tail) ?
919 tail - head : (tail + ring->count - head);
920
921 return 0;
922}
923
924static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
925{
926 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
927 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
928 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
929 bool ret = false;
930
931 clear_check_for_tx_hang(tx_ring);
932
933 /*
934 * Check for a hung queue, but be thorough. This verifies
935 * that a transmit has been completed since the previous
936 * check AND there is at least one packet pending. The
937 * ARMED bit is set to indicate a potential hang. The
938 * bit is cleared if a pause frame is received to remove
939 * false hang detection due to PFC or 802.3x frames. By
940 * requiring this to fail twice we avoid races with
941 * pfc clearing the ARMED bit and conditions where we
942 * run the check_tx_hang logic with a transmit completion
943 * pending but without time to complete it yet.
944 */
945 if ((tx_done_old == tx_done) && tx_pending) {
946 /* make sure it is true for two checks in a row */
947 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
948 &tx_ring->state);
949 } else {
950 /* update completed stats and continue */
951 tx_ring->tx_stats.tx_done_old = tx_done;
952 /* reset the countdown */
953 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
954 }
955
956 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700957}
958
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000959/**
960 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
961 * @adapter: driver private struct
962 **/
963static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
964{
965
966 /* Do the reset outside of interrupt context */
967 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
968 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Jacob Keller12ff3f32012-12-01 07:57:17 +0000969 e_warn(drv, "initiating reset due to tx timeout\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000970 ixgbe_service_event_schedule(adapter);
971 }
972}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700973
Auke Kok9a799d72007-09-15 14:07:45 -0700974/**
975 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000976 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700977 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700978 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000979static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000980 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700981{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000982 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000983 struct ixgbe_tx_buffer *tx_buffer;
984 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700985 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000986 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +0000987 unsigned int i = tx_ring->next_to_clean;
988
989 if (test_bit(__IXGBE_DOWN, &adapter->state))
990 return true;
Auke Kok9a799d72007-09-15 14:07:45 -0700991
Alexander Duyckd3d00232011-07-15 02:31:25 +0000992 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000993 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000994 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800995
Alexander Duyck729739b2012-02-08 07:51:06 +0000996 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000997 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700998
Alexander Duyckd3d00232011-07-15 02:31:25 +0000999 /* if next_to_watch is not set then there is no work pending */
1000 if (!eop_desc)
1001 break;
1002
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001003 /* prevent any other reads prior to eop_desc */
Alexander Duyck7e63bf42013-01-08 07:00:58 +00001004 read_barrier_depends();
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001005
Alexander Duyckd3d00232011-07-15 02:31:25 +00001006 /* if DD is not set pending work has not been completed */
1007 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
1008 break;
1009
Alexander Duyckd3d00232011-07-15 02:31:25 +00001010 /* clear next_to_watch to prevent false hangs */
1011 tx_buffer->next_to_watch = NULL;
1012
Alexander Duyck091a6242012-02-08 07:51:01 +00001013 /* update the statistics for this packet */
1014 total_bytes += tx_buffer->bytecount;
1015 total_packets += tx_buffer->gso_segs;
1016
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001017 /* free the skb */
1018 dev_kfree_skb_any(tx_buffer->skb);
1019
Alexander Duyck729739b2012-02-08 07:51:06 +00001020 /* unmap skb header data */
1021 dma_unmap_single(tx_ring->dev,
1022 dma_unmap_addr(tx_buffer, dma),
1023 dma_unmap_len(tx_buffer, len),
1024 DMA_TO_DEVICE);
1025
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001026 /* clear tx_buffer data */
1027 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +00001028 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001029
Alexander Duyck729739b2012-02-08 07:51:06 +00001030 /* unmap remaining buffers */
1031 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001032 tx_buffer++;
1033 tx_desc++;
1034 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00001035 if (unlikely(!i)) {
1036 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001037 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +00001038 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00001039 }
1040
Alexander Duyck729739b2012-02-08 07:51:06 +00001041 /* unmap any remaining paged data */
1042 if (dma_unmap_len(tx_buffer, len)) {
1043 dma_unmap_page(tx_ring->dev,
1044 dma_unmap_addr(tx_buffer, dma),
1045 dma_unmap_len(tx_buffer, len),
1046 DMA_TO_DEVICE);
1047 dma_unmap_len_set(tx_buffer, len, 0);
1048 }
1049 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001050
Alexander Duyck729739b2012-02-08 07:51:06 +00001051 /* move us one more past the eop_desc for start of next pkt */
1052 tx_buffer++;
1053 tx_desc++;
1054 i++;
1055 if (unlikely(!i)) {
1056 i -= tx_ring->count;
1057 tx_buffer = tx_ring->tx_buffer_info;
1058 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
1059 }
1060
1061 /* issue prefetch for next Tx descriptor */
1062 prefetch(tx_desc);
1063
1064 /* update budget accounting */
1065 budget--;
1066 } while (likely(budget));
1067
1068 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07001069 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001070 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -08001071 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +00001072 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001073 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001074 q_vector->tx.total_bytes += total_bytes;
1075 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -08001076
John Fastabendc84d3242010-11-16 19:27:12 -08001077 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -08001078 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -08001079 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -08001080 e_err(drv, "Detected Tx Unit Hang\n"
1081 " Tx Queue <%d>\n"
1082 " TDH, TDT <%x>, <%x>\n"
1083 " next_to_use <%x>\n"
1084 " next_to_clean <%x>\n"
1085 "tx_buffer_info[next_to_clean]\n"
1086 " time_stamp <%lx>\n"
1087 " jiffies <%lx>\n",
1088 tx_ring->queue_index,
1089 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
1090 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +00001091 tx_ring->next_to_use, i,
1092 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -08001093
1094 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1095
1096 e_info(probe,
1097 "tx hang %d detected on queue %d, resetting adapter\n",
1098 adapter->tx_timeout_count + 1, tx_ring->queue_index);
1099
1100 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001101 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -08001102
1103 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +00001104 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -08001105 }
Auke Kok9a799d72007-09-15 14:07:45 -07001106
Alexander Duyckb2d96e02012-02-07 08:14:33 +00001107 netdev_tx_completed_queue(txring_txq(tx_ring),
1108 total_packets, total_bytes);
1109
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001110#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +00001111 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001112 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001113 /* Make sure that anybody stopping the queue after this
1114 * sees the new next_to_clean.
1115 */
1116 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +00001117 if (__netif_subqueue_stopped(tx_ring->netdev,
1118 tx_ring->queue_index)
1119 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
1120 netif_wake_subqueue(tx_ring->netdev,
1121 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08001122 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08001123 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001124 }
Auke Kok9a799d72007-09-15 14:07:45 -07001125
Alexander Duyck59224552011-08-31 00:01:06 +00001126 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001127}
1128
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001129#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001130static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001131 struct ixgbe_ring *tx_ring,
1132 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001133{
Don Skidmoreee5f7842009-11-06 12:56:20 +00001134 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001135 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
1136 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001137
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001138 switch (hw->mac.type) {
1139 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001140 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001141 break;
1142 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001143 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001144 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
1145 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
1146 break;
1147 default:
1148 /* for unknown hardware do not write register */
1149 return;
1150 }
1151
1152 /*
1153 * We can enable relaxed ordering for reads, but not writes when
1154 * DCA is enabled. This is due to a known issue in some chipsets
1155 * which will cause the DCA tag to be cleared.
1156 */
1157 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1158 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
1159 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
1160
1161 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
1162}
1163
1164static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
1165 struct ixgbe_ring *rx_ring,
1166 int cpu)
1167{
1168 struct ixgbe_hw *hw = &adapter->hw;
1169 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
1170 u8 reg_idx = rx_ring->reg_idx;
1171
1172
1173 switch (hw->mac.type) {
1174 case ixgbe_mac_82599EB:
1175 case ixgbe_mac_X540:
1176 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001177 break;
1178 default:
1179 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001180 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001181
1182 /*
1183 * We can enable relaxed ordering for reads, but not writes when
1184 * DCA is enabled. This is due to a known issue in some chipsets
1185 * which will cause the DCA tag to be cleared.
1186 */
1187 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001188 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
1189
1190 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001191}
1192
1193static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
1194{
1195 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001196 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001197 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001198
1199 if (q_vector->cpu == cpu)
1200 goto out_no_update;
1201
Alexander Duycka5579282012-02-08 07:50:04 +00001202 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001203 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001204
Alexander Duycka5579282012-02-08 07:50:04 +00001205 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001206 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001207
1208 q_vector->cpu = cpu;
1209out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001210 put_cpu();
1211}
1212
1213static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1214{
1215 int i;
1216
1217 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1218 return;
1219
Alexander Duycke35ec122009-05-21 13:07:12 +00001220 /* always use CB2 mode, difference is masked in the CB driver */
1221 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1222
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001223 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001224 adapter->q_vector[i]->cpu = -1;
1225 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001226 }
1227}
1228
1229static int __ixgbe_notify_dca(struct device *dev, void *data)
1230{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001231 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001232 unsigned long event = *(unsigned long *)data;
1233
Don Skidmore2a72c312011-07-20 02:27:05 +00001234 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001235 return 0;
1236
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001237 switch (event) {
1238 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001239 /* if we're already enabled, don't do it again */
1240 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1241 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001242 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001243 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001244 ixgbe_setup_dca(adapter);
1245 break;
1246 }
1247 /* Fall Through since DCA is disabled. */
1248 case DCA_PROVIDER_REMOVE:
1249 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1250 dca_remove_requester(dev);
1251 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1252 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1253 }
1254 break;
1255 }
1256
Denis V. Lunev652f0932008-03-27 14:39:17 +03001257 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001258}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001259
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001260#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001261static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1262 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001263 struct sk_buff *skb)
1264{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001265 if (ring->netdev->features & NETIF_F_RXHASH)
1266 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001267}
1268
Alexander Duyckf8003262012-03-03 02:35:52 +00001269#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001270/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001271 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001272 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001273 * @rx_desc: advanced rx descriptor
1274 *
1275 * Returns : true if it is FCoE pkt
1276 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001277static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001278 union ixgbe_adv_rx_desc *rx_desc)
1279{
1280 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1281
Alexander Duyck57efd442012-06-25 21:54:46 +00001282 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001283 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1284 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1285 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1286}
1287
Alexander Duyckf8003262012-03-03 02:35:52 +00001288#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001289/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001290 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001291 * @ring: structure containing ring specific data
1292 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001293 * @skb: skb currently being received and modified
1294 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001295static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001296 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001297 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001298{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001299 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001300
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001301 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001302 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001303 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001304
1305 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001306 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1307 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001308 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001309 return;
1310 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001311
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001312 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001313 return;
1314
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001315 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001316 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001317
1318 /*
1319 * 82599 errata, UDP frames with a 0 checksum can be marked as
1320 * checksum errors.
1321 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001322 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1323 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001324 return;
1325
Alexander Duyck8a0da212012-01-31 02:59:49 +00001326 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001327 return;
1328 }
1329
Auke Kok9a799d72007-09-15 14:07:45 -07001330 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001331 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001332}
1333
Alexander Duyck84ea2592010-11-16 19:26:49 -08001334static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001335{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001336 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001337
1338 /* update next to alloc since we have filled the ring */
1339 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001340 /*
1341 * Force memory writes to complete before letting h/w
1342 * know there are new descriptors to fetch. (Only
1343 * applicable for weak-ordered memory model archs,
1344 * such as IA-64).
1345 */
1346 wmb();
Mark Rustad84227bc2014-01-14 18:53:13 -08001347 ixgbe_write_tail(rx_ring, val);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001348}
1349
Alexander Duyckf990b792012-01-31 02:59:34 +00001350static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1351 struct ixgbe_rx_buffer *bi)
1352{
1353 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001354 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001355
Alexander Duyckf8003262012-03-03 02:35:52 +00001356 /* since we are recycling buffers we should seldom need to alloc */
1357 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001358 return true;
1359
Alexander Duyckf8003262012-03-03 02:35:52 +00001360 /* alloc new page for storage */
1361 if (likely(!page)) {
Mel Gorman06140022012-07-31 16:44:24 -07001362 page = __skb_alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP,
1363 bi->skb, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001364 if (unlikely(!page)) {
1365 rx_ring->rx_stats.alloc_rx_page_failed++;
1366 return false;
1367 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001368 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001369 }
1370
Alexander Duyckf8003262012-03-03 02:35:52 +00001371 /* map page for use */
1372 dma = dma_map_page(rx_ring->dev, page, 0,
1373 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001374
Alexander Duyckf8003262012-03-03 02:35:52 +00001375 /*
1376 * if mapping failed free memory back to system since
1377 * there isn't much point in holding memory we can't use
1378 */
1379 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001380 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001381 bi->page = NULL;
1382
Alexander Duyckf990b792012-01-31 02:59:34 +00001383 rx_ring->rx_stats.alloc_rx_page_failed++;
1384 return false;
1385 }
1386
Alexander Duyckf8003262012-03-03 02:35:52 +00001387 bi->dma = dma;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001388 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001389
Alexander Duyckf990b792012-01-31 02:59:34 +00001390 return true;
1391}
1392
Auke Kok9a799d72007-09-15 14:07:45 -07001393/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001394 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001395 * @rx_ring: ring to place buffers on
1396 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001397 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001398void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001399{
Auke Kok9a799d72007-09-15 14:07:45 -07001400 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001401 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001402 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001403
Alexander Duyckf8003262012-03-03 02:35:52 +00001404 /* nothing to do */
1405 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001406 return;
1407
Alexander Duycke4f74022012-01-31 02:59:44 +00001408 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001409 bi = &rx_ring->rx_buffer_info[i];
1410 i -= rx_ring->count;
1411
Alexander Duyckf8003262012-03-03 02:35:52 +00001412 do {
1413 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001414 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001415
Alexander Duyckf8003262012-03-03 02:35:52 +00001416 /*
1417 * Refresh the desc even if buffer_addrs didn't change
1418 * because each write-back erases this info.
1419 */
1420 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001421
Alexander Duyckf990b792012-01-31 02:59:34 +00001422 rx_desc++;
1423 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001424 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001425 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001426 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001427 bi = rx_ring->rx_buffer_info;
1428 i -= rx_ring->count;
1429 }
1430
1431 /* clear the hdr_addr for the next_to_use descriptor */
1432 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001433
1434 cleaned_count--;
1435 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001436
Alexander Duyckf990b792012-01-31 02:59:34 +00001437 i += rx_ring->count;
1438
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001439 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001440 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001441}
1442
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001443/**
1444 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1445 * @data: pointer to the start of the headers
1446 * @max_len: total length of section to find headers in
1447 *
1448 * This function is meant to determine the length of headers that will
1449 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1450 * motivation of doing this is to only perform one pull for IPv4 TCP
1451 * packets so that we can do basic things like calculating the gso_size
1452 * based on the average data per packet.
1453 **/
1454static unsigned int ixgbe_get_headlen(unsigned char *data,
1455 unsigned int max_len)
1456{
1457 union {
1458 unsigned char *network;
1459 /* l2 headers */
1460 struct ethhdr *eth;
1461 struct vlan_hdr *vlan;
1462 /* l3 headers */
1463 struct iphdr *ipv4;
Alexander Duycka048b402012-05-24 08:26:29 +00001464 struct ipv6hdr *ipv6;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001465 } hdr;
1466 __be16 protocol;
1467 u8 nexthdr = 0; /* default to not TCP */
1468 u8 hlen;
1469
1470 /* this should never happen, but better safe than sorry */
1471 if (max_len < ETH_HLEN)
1472 return max_len;
1473
1474 /* initialize network frame pointer */
1475 hdr.network = data;
1476
1477 /* set first protocol and move network header forward */
1478 protocol = hdr.eth->h_proto;
1479 hdr.network += ETH_HLEN;
1480
1481 /* handle any vlan tag if present */
1482 if (protocol == __constant_htons(ETH_P_8021Q)) {
1483 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1484 return max_len;
1485
1486 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1487 hdr.network += VLAN_HLEN;
1488 }
1489
1490 /* handle L3 protocols */
1491 if (protocol == __constant_htons(ETH_P_IP)) {
1492 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1493 return max_len;
1494
1495 /* access ihl as a u8 to avoid unaligned access on ia64 */
1496 hlen = (hdr.network[0] & 0x0F) << 2;
1497
1498 /* verify hlen meets minimum size requirements */
1499 if (hlen < sizeof(struct iphdr))
1500 return hdr.network - data;
1501
Alexander Duycked83da12012-11-13 01:13:33 +00001502 /* record next protocol if header is present */
Alexander Duyck20967f42013-02-01 08:56:41 +00001503 if (!(hdr.ipv4->frag_off & htons(IP_OFFSET)))
Alexander Duycked83da12012-11-13 01:13:33 +00001504 nexthdr = hdr.ipv4->protocol;
Alexander Duycka048b402012-05-24 08:26:29 +00001505 } else if (protocol == __constant_htons(ETH_P_IPV6)) {
1506 if ((hdr.network - data) > (max_len - sizeof(struct ipv6hdr)))
1507 return max_len;
1508
1509 /* record next protocol */
1510 nexthdr = hdr.ipv6->nexthdr;
Alexander Duycked83da12012-11-13 01:13:33 +00001511 hlen = sizeof(struct ipv6hdr);
Alexander Duyckf8003262012-03-03 02:35:52 +00001512#ifdef IXGBE_FCOE
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001513 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1514 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1515 return max_len;
Alexander Duycked83da12012-11-13 01:13:33 +00001516 hlen = FCOE_HEADER_LEN;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001517#endif
1518 } else {
1519 return hdr.network - data;
1520 }
1521
Alexander Duycked83da12012-11-13 01:13:33 +00001522 /* relocate pointer to start of L4 header */
1523 hdr.network += hlen;
1524
Alexander Duycka048b402012-05-24 08:26:29 +00001525 /* finally sort out TCP/UDP */
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001526 if (nexthdr == IPPROTO_TCP) {
1527 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1528 return max_len;
1529
1530 /* access doff as a u8 to avoid unaligned access on ia64 */
1531 hlen = (hdr.network[12] & 0xF0) >> 2;
1532
1533 /* verify hlen meets minimum size requirements */
1534 if (hlen < sizeof(struct tcphdr))
1535 return hdr.network - data;
1536
1537 hdr.network += hlen;
Alexander Duycka048b402012-05-24 08:26:29 +00001538 } else if (nexthdr == IPPROTO_UDP) {
1539 if ((hdr.network - data) > (max_len - sizeof(struct udphdr)))
1540 return max_len;
1541
1542 hdr.network += sizeof(struct udphdr);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001543 }
1544
1545 /*
1546 * If everything has gone correctly hdr.network should be the
1547 * data section of the packet and will be the end of the header.
1548 * If not then it probably represents the end of the last recognized
1549 * header.
1550 */
1551 if ((hdr.network - data) < max_len)
1552 return hdr.network - data;
1553 else
1554 return max_len;
1555}
1556
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001557static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1558 struct sk_buff *skb)
1559{
Alexander Duyckf8003262012-03-03 02:35:52 +00001560 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001561
1562 /* set gso_size to avoid messing up TCP MSS */
1563 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1564 IXGBE_CB(skb)->append_cnt);
Alexander Duyck96be80a2013-02-12 09:45:44 +00001565 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001566}
1567
1568static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1569 struct sk_buff *skb)
1570{
1571 /* if append_cnt is 0 then frame is not RSC */
1572 if (!IXGBE_CB(skb)->append_cnt)
1573 return;
1574
1575 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1576 rx_ring->rx_stats.rsc_flush++;
1577
1578 ixgbe_set_rsc_gso_size(rx_ring, skb);
1579
1580 /* gso_size is computed using append_cnt so always clear it last */
1581 IXGBE_CB(skb)->append_cnt = 0;
1582}
1583
Alexander Duyck8a0da212012-01-31 02:59:49 +00001584/**
1585 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1586 * @rx_ring: rx descriptor ring packet is being transacted on
1587 * @rx_desc: pointer to the EOP Rx descriptor
1588 * @skb: pointer to current skb being populated
1589 *
1590 * This function checks the ring, descriptor, and packet information in
1591 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1592 * other fields within the skb.
1593 **/
1594static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1595 union ixgbe_adv_rx_desc *rx_desc,
1596 struct sk_buff *skb)
1597{
John Fastabend43e95f12012-05-15 06:12:17 +00001598 struct net_device *dev = rx_ring->netdev;
1599
Alexander Duyck8a0da212012-01-31 02:59:49 +00001600 ixgbe_update_rsc_stats(rx_ring, skb);
1601
1602 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1603
1604 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1605
Jacob Keller6cb562d2012-12-05 07:24:41 +00001606 ixgbe_ptp_rx_hwtstamp(rx_ring, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001607
Patrick McHardyf6469682013-04-19 02:04:27 +00001608 if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
John Fastabend43e95f12012-05-15 06:12:17 +00001609 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001610 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001611 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001612 }
1613
1614 skb_record_rx_queue(skb, rx_ring->queue_index);
1615
John Fastabend43e95f12012-05-15 06:12:17 +00001616 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001617}
1618
1619static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1620 struct sk_buff *skb)
1621{
1622 struct ixgbe_adapter *adapter = q_vector->adapter;
1623
Jacob Kellerb4640032013-10-01 04:33:54 -07001624 if (ixgbe_qv_busy_polling(q_vector))
Eliezer Tamir5a85e732013-06-10 11:40:20 +03001625 netif_receive_skb(skb);
1626 else if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
Alexander Duyck8a0da212012-01-31 02:59:49 +00001627 napi_gro_receive(&q_vector->napi, skb);
1628 else
1629 netif_rx(skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001630}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001631
Alexander Duyckf8003262012-03-03 02:35:52 +00001632/**
1633 * ixgbe_is_non_eop - process handling of non-EOP buffers
1634 * @rx_ring: Rx ring being processed
1635 * @rx_desc: Rx descriptor for current buffer
1636 * @skb: Current socket buffer containing buffer in progress
1637 *
1638 * This function updates next to clean. If the buffer is an EOP buffer
1639 * this function exits returning false, otherwise it will place the
1640 * sk_buff in the next buffer to be chained and return true indicating
1641 * that this is in fact a non-EOP buffer.
1642 **/
1643static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1644 union ixgbe_adv_rx_desc *rx_desc,
1645 struct sk_buff *skb)
1646{
1647 u32 ntc = rx_ring->next_to_clean + 1;
1648
1649 /* fetch, update, and store next to clean */
1650 ntc = (ntc < rx_ring->count) ? ntc : 0;
1651 rx_ring->next_to_clean = ntc;
1652
1653 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1654
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001655 /* update RSC append count if present */
1656 if (ring_is_rsc_enabled(rx_ring)) {
1657 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1658 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1659
1660 if (unlikely(rsc_enabled)) {
1661 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1662
1663 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1664 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1665
1666 /* update ntc based on RSC value */
1667 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1668 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1669 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1670 }
1671 }
1672
1673 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001674 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1675 return false;
1676
Alexander Duyckf8003262012-03-03 02:35:52 +00001677 /* place skb in next buffer to be received */
1678 rx_ring->rx_buffer_info[ntc].skb = skb;
1679 rx_ring->rx_stats.non_eop_descs++;
1680
1681 return true;
1682}
1683
1684/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001685 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1686 * @rx_ring: rx descriptor ring packet is being transacted on
1687 * @skb: pointer to current skb being adjusted
1688 *
1689 * This function is an ixgbe specific version of __pskb_pull_tail. The
1690 * main difference between this version and the original function is that
1691 * this function can make several assumptions about the state of things
1692 * that allow for significant optimizations versus the standard function.
1693 * As a result we can do things like drop a frag and maintain an accurate
1694 * truesize for the skb.
1695 */
1696static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1697 struct sk_buff *skb)
1698{
1699 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1700 unsigned char *va;
1701 unsigned int pull_len;
1702
1703 /*
1704 * it is valid to use page_address instead of kmap since we are
1705 * working with pages allocated out of the lomem pool per
1706 * alloc_page(GFP_ATOMIC)
1707 */
1708 va = skb_frag_address(frag);
1709
1710 /*
1711 * we need the header to contain the greater of either ETH_HLEN or
1712 * 60 bytes if the skb->len is less than 60 for skb_pad.
1713 */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001714 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001715
1716 /* align pull length to size of long to optimize memcpy performance */
1717 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1718
1719 /* update all of the pointers */
1720 skb_frag_size_sub(frag, pull_len);
1721 frag->page_offset += pull_len;
1722 skb->data_len -= pull_len;
1723 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001724}
1725
1726/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001727 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1728 * @rx_ring: rx descriptor ring packet is being transacted on
1729 * @skb: pointer to current skb being updated
1730 *
1731 * This function provides a basic DMA sync up for the first fragment of an
1732 * skb. The reason for doing this is that the first fragment cannot be
1733 * unmapped until we have reached the end of packet descriptor for a buffer
1734 * chain.
1735 */
1736static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1737 struct sk_buff *skb)
1738{
1739 /* if the page was released unmap it, else just sync our portion */
1740 if (unlikely(IXGBE_CB(skb)->page_released)) {
1741 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1742 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1743 IXGBE_CB(skb)->page_released = false;
1744 } else {
1745 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1746
1747 dma_sync_single_range_for_cpu(rx_ring->dev,
1748 IXGBE_CB(skb)->dma,
1749 frag->page_offset,
1750 ixgbe_rx_bufsz(rx_ring),
1751 DMA_FROM_DEVICE);
1752 }
1753 IXGBE_CB(skb)->dma = 0;
1754}
1755
1756/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001757 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1758 * @rx_ring: rx descriptor ring packet is being transacted on
1759 * @rx_desc: pointer to the EOP Rx descriptor
1760 * @skb: pointer to current skb being fixed
1761 *
1762 * Check for corrupted packet headers caused by senders on the local L2
1763 * embedded NIC switch not setting up their Tx Descriptors right. These
1764 * should be very rare.
1765 *
1766 * Also address the case where we are pulling data in on pages only
1767 * and as such no data is present in the skb header.
1768 *
1769 * In addition if skb is not at least 60 bytes we need to pad it so that
1770 * it is large enough to qualify as a valid Ethernet frame.
1771 *
1772 * Returns true if an error was encountered and skb was freed.
1773 **/
1774static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1775 union ixgbe_adv_rx_desc *rx_desc,
1776 struct sk_buff *skb)
1777{
Alexander Duyckf8003262012-03-03 02:35:52 +00001778 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001779
1780 /* verify that the packet does not have any known errors */
1781 if (unlikely(ixgbe_test_staterr(rx_desc,
1782 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1783 !(netdev->features & NETIF_F_RXALL))) {
1784 dev_kfree_skb_any(skb);
1785 return true;
1786 }
1787
Alexander Duyck19861ce2012-07-20 08:08:33 +00001788 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001789 if (skb_is_nonlinear(skb))
1790 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001791
Alexander Duyck57efd442012-06-25 21:54:46 +00001792#ifdef IXGBE_FCOE
1793 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1794 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1795 return false;
1796
1797#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001798 /* if skb_pad returns an error the skb was freed */
1799 if (unlikely(skb->len < 60)) {
1800 int pad_len = 60 - skb->len;
1801
1802 if (skb_pad(skb, pad_len))
1803 return true;
1804 __skb_put(skb, pad_len);
1805 }
1806
1807 return false;
1808}
1809
1810/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001811 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1812 * @rx_ring: rx descriptor ring to store buffers on
1813 * @old_buff: donor buffer to have page reused
1814 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001815 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001816 **/
1817static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1818 struct ixgbe_rx_buffer *old_buff)
1819{
1820 struct ixgbe_rx_buffer *new_buff;
1821 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001822
1823 new_buff = &rx_ring->rx_buffer_info[nta];
1824
1825 /* update, and store next to alloc */
1826 nta++;
1827 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1828
1829 /* transfer page from old buffer to new buffer */
1830 new_buff->page = old_buff->page;
1831 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001832 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001833
1834 /* sync the buffer for use by the device */
1835 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001836 new_buff->page_offset,
1837 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001838 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001839}
1840
1841/**
1842 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1843 * @rx_ring: rx descriptor ring to transact packets on
1844 * @rx_buffer: buffer containing page to add
1845 * @rx_desc: descriptor containing length of buffer written by hardware
1846 * @skb: sk_buff to place the data into
1847 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001848 * This function will add the data contained in rx_buffer->page to the skb.
1849 * This is done either through a direct copy if the data in the buffer is
1850 * less than the skb header size, otherwise it will just attach the page as
1851 * a frag to the skb.
1852 *
1853 * The function will then update the page offset if necessary and return
1854 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001855 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001856static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001857 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001858 union ixgbe_adv_rx_desc *rx_desc,
1859 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001860{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001861 struct page *page = rx_buffer->page;
1862 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001863#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001864 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001865#else
1866 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1867 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1868 ixgbe_rx_bufsz(rx_ring);
1869#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001870
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001871 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1872 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1873
1874 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1875
1876 /* we can reuse buffer as-is, just make sure it is local */
1877 if (likely(page_to_nid(page) == numa_node_id()))
1878 return true;
1879
1880 /* this page cannot be reused so discard it */
1881 put_page(page);
1882 return false;
1883 }
1884
Alexander Duyck0549ae22012-07-20 08:08:18 +00001885 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1886 rx_buffer->page_offset, size, truesize);
1887
Alexander Duyck09816fb2012-07-20 08:08:23 +00001888 /* avoid re-using remote pages */
1889 if (unlikely(page_to_nid(page) != numa_node_id()))
1890 return false;
1891
1892#if (PAGE_SIZE < 8192)
1893 /* if we are only owner of page we can reuse it */
1894 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001895 return false;
1896
1897 /* flip page offset to other buffer */
1898 rx_buffer->page_offset ^= truesize;
1899
Alexander Duyck09816fb2012-07-20 08:08:23 +00001900 /*
1901 * since we are the only owner of the page and we need to
1902 * increment it, just set the value to 2 in order to avoid
1903 * an unecessary locked operation
1904 */
1905 atomic_set(&page->_count, 2);
1906#else
1907 /* move offset up to the next cache line */
1908 rx_buffer->page_offset += truesize;
1909
1910 if (rx_buffer->page_offset > last_offset)
1911 return false;
1912
Alexander Duyck0549ae22012-07-20 08:08:18 +00001913 /* bump ref count on page before it is given to the stack */
1914 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001915#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001916
1917 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001918}
1919
Alexander Duyck18806c92012-07-20 08:08:44 +00001920static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1921 union ixgbe_adv_rx_desc *rx_desc)
1922{
1923 struct ixgbe_rx_buffer *rx_buffer;
1924 struct sk_buff *skb;
1925 struct page *page;
1926
1927 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1928 page = rx_buffer->page;
1929 prefetchw(page);
1930
1931 skb = rx_buffer->skb;
1932
1933 if (likely(!skb)) {
1934 void *page_addr = page_address(page) +
1935 rx_buffer->page_offset;
1936
1937 /* prefetch first cache line of first page */
1938 prefetch(page_addr);
1939#if L1_CACHE_BYTES < 128
1940 prefetch(page_addr + L1_CACHE_BYTES);
1941#endif
1942
1943 /* allocate a skb to store the frags */
1944 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1945 IXGBE_RX_HDR_SIZE);
1946 if (unlikely(!skb)) {
1947 rx_ring->rx_stats.alloc_rx_buff_failed++;
1948 return NULL;
1949 }
1950
1951 /*
1952 * we will be copying header into skb->data in
1953 * pskb_may_pull so it is in our interest to prefetch
1954 * it now to avoid a possible cache miss
1955 */
1956 prefetchw(skb->data);
1957
1958 /*
1959 * Delay unmapping of the first packet. It carries the
1960 * header information, HW may still access the header
1961 * after the writeback. Only unmap it when EOP is
1962 * reached
1963 */
1964 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1965 goto dma_sync;
1966
1967 IXGBE_CB(skb)->dma = rx_buffer->dma;
1968 } else {
1969 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
1970 ixgbe_dma_sync_frag(rx_ring, skb);
1971
1972dma_sync:
1973 /* we are reusing so sync this buffer for CPU use */
1974 dma_sync_single_range_for_cpu(rx_ring->dev,
1975 rx_buffer->dma,
1976 rx_buffer->page_offset,
1977 ixgbe_rx_bufsz(rx_ring),
1978 DMA_FROM_DEVICE);
1979 }
1980
1981 /* pull page into skb */
1982 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
1983 /* hand second half of page back to the ring */
1984 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1985 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1986 /* the page has been released from the ring */
1987 IXGBE_CB(skb)->page_released = true;
1988 } else {
1989 /* we are not reusing the buffer so unmap it */
1990 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1991 ixgbe_rx_pg_size(rx_ring),
1992 DMA_FROM_DEVICE);
1993 }
1994
1995 /* clear contents of buffer_info */
1996 rx_buffer->skb = NULL;
1997 rx_buffer->dma = 0;
1998 rx_buffer->page = NULL;
1999
2000 return skb;
Alexander Duyckf8003262012-03-03 02:35:52 +00002001}
2002
2003/**
2004 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
2005 * @q_vector: structure containing interrupt and ring information
2006 * @rx_ring: rx descriptor ring to transact packets on
2007 * @budget: Total limit on number of packets to process
2008 *
2009 * This function provides a "bounce buffer" approach to Rx interrupt
2010 * processing. The advantage to this is that on systems that have
2011 * expensive overhead for IOMMU access this provides a means of avoiding
2012 * it by maintaining the mapping of the page to the syste.
2013 *
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002014 * Returns amount of work completed
Alexander Duyckf8003262012-03-03 02:35:52 +00002015 **/
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002016static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002017 struct ixgbe_ring *rx_ring,
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002018 const int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07002019{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002020 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00002021#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00002022 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00002023 int ddp_bytes;
2024 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00002025#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00002026 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07002027
Alexander Duyckf8003262012-03-03 02:35:52 +00002028 do {
Alexander Duyckf8003262012-03-03 02:35:52 +00002029 union ixgbe_adv_rx_desc *rx_desc;
2030 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07002031
Alexander Duyckf8003262012-03-03 02:35:52 +00002032 /* return some buffers to hardware, one at a time is too slow */
2033 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
2034 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2035 cleaned_count = 0;
2036 }
Auke Kok9a799d72007-09-15 14:07:45 -07002037
Alexander Duyck18806c92012-07-20 08:08:44 +00002038 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07002039
Alexander Duyckf8003262012-03-03 02:35:52 +00002040 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
2041 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08002042
Alexander Duyckf8003262012-03-03 02:35:52 +00002043 /*
2044 * This memory barrier is needed to keep us from reading
2045 * any other fields out of the rx_desc until we know the
2046 * RXD_STAT_DD bit is set
2047 */
2048 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07002049
Alexander Duyck18806c92012-07-20 08:08:44 +00002050 /* retrieve a buffer from the ring */
2051 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00002052
Alexander Duyck18806c92012-07-20 08:08:44 +00002053 /* exit if we failed to retrieve a buffer */
2054 if (!skb)
2055 break;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00002056
Auke Kok9a799d72007-09-15 14:07:45 -07002057 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002058
Alexander Duyckf8003262012-03-03 02:35:52 +00002059 /* place incomplete frames back on ring for completion */
2060 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
2061 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002062
Alexander Duyckf8003262012-03-03 02:35:52 +00002063 /* verify the packet layout is correct */
2064 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
2065 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002066
2067 /* probably a little skewed due to removing CRC */
2068 total_rx_bytes += skb->len;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002069
Alexander Duyck8a0da212012-01-31 02:59:49 +00002070 /* populate checksum, timestamp, VLAN, and protocol */
2071 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
2072
Yi Zou332d4a72009-05-13 13:11:53 +00002073#ifdef IXGBE_FCOE
2074 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00002075 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00002076 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00002077 /* include DDPed FCoE data */
2078 if (ddp_bytes > 0) {
2079 if (!mss) {
2080 mss = rx_ring->netdev->mtu -
2081 sizeof(struct fcoe_hdr) -
2082 sizeof(struct fc_frame_header) -
2083 sizeof(struct fcoe_crc_eof);
2084 if (mss > 512)
2085 mss &= ~511;
2086 }
2087 total_rx_bytes += ddp_bytes;
2088 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
2089 mss);
2090 }
David S. Miller823dcd22011-08-20 10:39:12 -07002091 if (!ddp_bytes) {
2092 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00002093 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07002094 }
Yi Zou3d8fd382009-06-08 14:38:44 +00002095 }
Alexander Duyckf8003262012-03-03 02:35:52 +00002096
Yi Zou332d4a72009-05-13 13:11:53 +00002097#endif /* IXGBE_FCOE */
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03002098 skb_mark_napi_id(skb, &q_vector->napi);
Alexander Duyck8a0da212012-01-31 02:59:49 +00002099 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07002100
Alexander Duyckf8003262012-03-03 02:35:52 +00002101 /* update budget accounting */
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002102 total_rx_packets++;
2103 } while (likely(total_rx_packets < budget));
Auke Kok9a799d72007-09-15 14:07:45 -07002104
Alexander Duyckc267fc12010-11-16 19:27:00 -08002105 u64_stats_update_begin(&rx_ring->syncp);
2106 rx_ring->stats.packets += total_rx_packets;
2107 rx_ring->stats.bytes += total_rx_bytes;
2108 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00002109 q_vector->rx.total_packets += total_rx_packets;
2110 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002111
Alexander Duyckf8003262012-03-03 02:35:52 +00002112 if (cleaned_count)
2113 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2114
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002115 return total_rx_packets;
Auke Kok9a799d72007-09-15 14:07:45 -07002116}
2117
Cong Wange0d10952013-08-01 11:10:25 +08002118#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002119/* must be called with local_bh_disable()d */
2120static int ixgbe_low_latency_recv(struct napi_struct *napi)
2121{
2122 struct ixgbe_q_vector *q_vector =
2123 container_of(napi, struct ixgbe_q_vector, napi);
2124 struct ixgbe_adapter *adapter = q_vector->adapter;
2125 struct ixgbe_ring *ring;
2126 int found = 0;
2127
2128 if (test_bit(__IXGBE_DOWN, &adapter->state))
2129 return LL_FLUSH_FAILED;
2130
2131 if (!ixgbe_qv_lock_poll(q_vector))
2132 return LL_FLUSH_BUSY;
2133
2134 ixgbe_for_each_ring(ring, q_vector->rx) {
2135 found = ixgbe_clean_rx_irq(q_vector, ring, 4);
Jacob Kellerb4640032013-10-01 04:33:54 -07002136#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03002137 if (found)
2138 ring->stats.cleaned += found;
2139 else
2140 ring->stats.misses++;
2141#endif
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002142 if (found)
2143 break;
2144 }
2145
2146 ixgbe_qv_unlock_poll(q_vector);
2147
2148 return found;
2149}
Cong Wange0d10952013-08-01 11:10:25 +08002150#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002151
Auke Kok9a799d72007-09-15 14:07:45 -07002152/**
2153 * ixgbe_configure_msix - Configure MSI-X hardware
2154 * @adapter: board private structure
2155 *
2156 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
2157 * interrupts.
2158 **/
2159static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
2160{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002161 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002162 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002163 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07002164
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00002165 /* Populate MSIX to EITR Select */
2166 if (adapter->num_vfs > 32) {
2167 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2168 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2169 }
2170
Jesse Brandeburg4df10462009-03-13 22:15:31 +00002171 /*
2172 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002173 * corresponding register.
2174 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002175 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002176 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002177 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002178
Alexander Duycka5579282012-02-08 07:50:04 +00002179 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002180 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002181
Alexander Duycka5579282012-02-08 07:50:04 +00002182 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002183 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002184
Alexander Duyckfe49f042009-06-04 16:00:09 +00002185 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002186 }
2187
Alexander Duyckbd508172010-11-16 19:27:03 -08002188 switch (adapter->hw.mac.type) {
2189 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002190 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00002191 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002192 break;
2193 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002194 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002195 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002196 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08002197 default:
2198 break;
2199 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002200 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07002201
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07002202 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002203 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002204 mask &= ~(IXGBE_EIMS_OTHER |
2205 IXGBE_EIMS_MAILBOX |
2206 IXGBE_EIMS_LSC);
2207
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002208 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07002209}
2210
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002211enum latency_range {
2212 lowest_latency = 0,
2213 low_latency = 1,
2214 bulk_latency = 2,
2215 latency_invalid = 255
2216};
2217
2218/**
2219 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00002220 * @q_vector: structure containing interrupt and ring information
2221 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002222 *
2223 * Stores a new ITR value based on packets and byte
2224 * counts during the last interrupt. The advantage of per interrupt
2225 * computation is faster updates and more accurate ITR for the current
2226 * traffic pattern. Constants in this function were computed
2227 * based on theoretical maximum wire speed and thresholds were set based
2228 * on testing data as well as attempting to minimize response time
2229 * while increasing bulk throughput.
2230 * this functionality is controlled by the InterruptThrottleRate module
2231 * parameter (see ixgbe_param.c)
2232 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00002233static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
2234 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002235{
Alexander Duyckbd198052011-06-11 01:45:08 +00002236 int bytes = ring_container->total_bytes;
2237 int packets = ring_container->total_packets;
2238 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00002239 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00002240 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002241
2242 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00002243 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002244
2245 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00002246 * 0-10MB/s lowest (100000 ints/s)
2247 * 10-20MB/s low (20000 ints/s)
2248 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002249 */
2250 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002251 timepassed_us = q_vector->itr >> 2;
Don Skidmorebdbeefe2013-03-02 07:17:37 +00002252 if (timepassed_us == 0)
2253 return;
2254
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002255 bytes_perint = bytes / timepassed_us; /* bytes/usec */
2256
2257 switch (itr_setting) {
2258 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002259 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002260 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002261 break;
2262 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002263 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002264 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002265 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002266 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002267 break;
2268 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002269 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002270 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002271 break;
2272 }
2273
Alexander Duyckbd198052011-06-11 01:45:08 +00002274 /* clear work counters since we have the values we need */
2275 ring_container->total_bytes = 0;
2276 ring_container->total_packets = 0;
2277
2278 /* write updated itr to ring container */
2279 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002280}
2281
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002282/**
2283 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002284 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002285 *
2286 * This function is made to be called by ethtool and by the driver
2287 * when it needs to update EITR registers at runtime. Hardware
2288 * specific quirks/differences are taken care of here.
2289 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002290void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002291{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002292 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002293 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002294 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002295 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002296
Alexander Duyckbd508172010-11-16 19:27:03 -08002297 switch (adapter->hw.mac.type) {
2298 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002299 /* must write high and low 16 bits to reset counter */
2300 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002301 break;
2302 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002303 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002304 /*
2305 * set the WDIS bit to not clear the timer bits and cause an
2306 * immediate assertion of the interrupt
2307 */
2308 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002309 break;
2310 default:
2311 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002312 }
2313 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2314}
2315
Alexander Duyckbd198052011-06-11 01:45:08 +00002316static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002317{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002318 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002319 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002320
Alexander Duyckbd198052011-06-11 01:45:08 +00002321 ixgbe_update_itr(q_vector, &q_vector->tx);
2322 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002323
Alexander Duyck08c88332011-06-11 01:45:03 +00002324 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002325
2326 switch (current_itr) {
2327 /* counts and packets in update_itr are dependent on these numbers */
2328 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002329 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002330 break;
2331 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002332 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002333 break;
2334 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002335 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002336 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002337 default:
2338 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002339 }
2340
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002341 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002342 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002343 new_itr = (10 * new_itr * q_vector->itr) /
2344 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002345
Alexander Duyckbd198052011-06-11 01:45:08 +00002346 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002347 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002348
2349 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002350 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002351}
2352
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002353/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002354 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002355 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002356 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002357static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002358{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002359 struct ixgbe_hw *hw = &adapter->hw;
2360 u32 eicr = adapter->interrupt_event;
2361
Alexander Duyckf0f97782011-04-22 04:08:09 +00002362 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002363 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002364
Alexander Duyckf0f97782011-04-22 04:08:09 +00002365 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2366 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2367 return;
2368
2369 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2370
Joe Perches7ca647b2010-09-07 21:35:40 +00002371 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002372 case IXGBE_DEV_ID_82599_T3_LOM:
2373 /*
2374 * Since the warning interrupt is for both ports
2375 * we don't have to check if:
2376 * - This interrupt wasn't for our port.
2377 * - We may have missed the interrupt so always have to
2378 * check if we got a LSC
2379 */
2380 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2381 !(eicr & IXGBE_EICR_LSC))
2382 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002383
Alexander Duyckf0f97782011-04-22 04:08:09 +00002384 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
Josh Hay3d292262012-12-15 03:28:19 +00002385 u32 speed;
Alexander Duyckf0f97782011-04-22 04:08:09 +00002386 bool link_up = false;
2387
Josh Hay3d292262012-12-15 03:28:19 +00002388 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Joe Perches7ca647b2010-09-07 21:35:40 +00002389
Alexander Duyckf0f97782011-04-22 04:08:09 +00002390 if (link_up)
2391 return;
2392 }
2393
2394 /* Check if this is not due to overtemp */
2395 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2396 return;
2397
2398 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002399 default:
2400 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2401 return;
2402 break;
2403 }
2404 e_crit(drv,
2405 "Network adapter has been stopped because it has over heated. "
2406 "Restart the computer. If the problem persists, "
2407 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002408
2409 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002410}
2411
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002412static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2413{
2414 struct ixgbe_hw *hw = &adapter->hw;
2415
2416 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2417 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002418 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002419 /* write to clear the interrupt */
2420 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2421 }
2422}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002423
Jacob Keller4f51bf72011-08-20 04:49:45 +00002424static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2425{
2426 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2427 return;
2428
2429 switch (adapter->hw.mac.type) {
2430 case ixgbe_mac_82599EB:
2431 /*
2432 * Need to check link state so complete overtemp check
2433 * on service task
2434 */
2435 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2436 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2437 adapter->interrupt_event = eicr;
2438 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2439 ixgbe_service_event_schedule(adapter);
2440 return;
2441 }
2442 return;
2443 case ixgbe_mac_X540:
2444 if (!(eicr & IXGBE_EICR_TS))
2445 return;
2446 break;
2447 default:
2448 return;
2449 }
2450
2451 e_crit(drv,
2452 "Network adapter has been stopped because it has over heated. "
2453 "Restart the computer. If the problem persists, "
2454 "power off the system and replace the adapter\n");
2455}
2456
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002457static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2458{
2459 struct ixgbe_hw *hw = &adapter->hw;
2460
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002461 if (eicr & IXGBE_EICR_GPI_SDP2) {
2462 /* Clear the interrupt */
2463 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002464 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2465 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2466 ixgbe_service_event_schedule(adapter);
2467 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002468 }
2469
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002470 if (eicr & IXGBE_EICR_GPI_SDP1) {
2471 /* Clear the interrupt */
2472 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002473 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2474 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2475 ixgbe_service_event_schedule(adapter);
2476 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002477 }
2478}
2479
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002480static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2481{
2482 struct ixgbe_hw *hw = &adapter->hw;
2483
2484 adapter->lsc_int++;
2485 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2486 adapter->link_check_timeout = jiffies;
2487 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2488 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002489 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002490 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002491 }
2492}
2493
Alexander Duyckfe49f042009-06-04 16:00:09 +00002494static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2495 u64 qmask)
2496{
2497 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002498 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002499
Alexander Duyckbd508172010-11-16 19:27:03 -08002500 switch (hw->mac.type) {
2501 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002502 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002503 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2504 break;
2505 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002506 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002507 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002508 if (mask)
2509 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002510 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002511 if (mask)
2512 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2513 break;
2514 default:
2515 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002516 }
2517 /* skip the flush */
2518}
2519
2520static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002521 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002522{
2523 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002524 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002525
Alexander Duyckbd508172010-11-16 19:27:03 -08002526 switch (hw->mac.type) {
2527 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002528 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002529 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2530 break;
2531 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002532 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002533 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002534 if (mask)
2535 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002536 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002537 if (mask)
2538 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2539 break;
2540 default:
2541 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002542 }
2543 /* skip the flush */
2544}
2545
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002546/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002547 * ixgbe_irq_enable - Enable default interrupt generation settings
2548 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002549 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002550static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2551 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002552{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002553 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002554
Alexander Duyck2c4af692011-07-15 07:29:55 +00002555 /* don't reenable LSC while waiting for link */
2556 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2557 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002558
Alexander Duyck2c4af692011-07-15 07:29:55 +00002559 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002560 switch (adapter->hw.mac.type) {
2561 case ixgbe_mac_82599EB:
2562 mask |= IXGBE_EIMS_GPI_SDP0;
2563 break;
2564 case ixgbe_mac_X540:
2565 mask |= IXGBE_EIMS_TS;
2566 break;
2567 default:
2568 break;
2569 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002570 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2571 mask |= IXGBE_EIMS_GPI_SDP1;
2572 switch (adapter->hw.mac.type) {
2573 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002574 mask |= IXGBE_EIMS_GPI_SDP1;
2575 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002576 case ixgbe_mac_X540:
2577 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002578 mask |= IXGBE_EIMS_MAILBOX;
2579 break;
2580 default:
2581 break;
2582 }
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002583
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002584 if (adapter->hw.mac.type == ixgbe_mac_X540)
2585 mask |= IXGBE_EIMS_TIMESYNC;
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002586
Alexander Duyck2c4af692011-07-15 07:29:55 +00002587 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2588 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2589 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002590
Alexander Duyck2c4af692011-07-15 07:29:55 +00002591 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2592 if (queues)
2593 ixgbe_irq_enable_queues(adapter, ~0);
2594 if (flush)
2595 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002596}
2597
Alexander Duyck2c4af692011-07-15 07:29:55 +00002598static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002599{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002600 struct ixgbe_adapter *adapter = data;
2601 struct ixgbe_hw *hw = &adapter->hw;
2602 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002603
Alexander Duyck2c4af692011-07-15 07:29:55 +00002604 /*
2605 * Workaround for Silicon errata. Use clear-by-write instead
2606 * of clear-by-read. Reading with EICS will return the
2607 * interrupt causes without clearing, which later be done
2608 * with the write to EICR.
2609 */
2610 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
Jacob Kellerd87d8302013-03-02 07:51:42 +00002611
2612 /* The lower 16bits of the EICR register are for the queue interrupts
2613 * which should be masked here in order to not accidently clear them if
2614 * the bits are high when ixgbe_msix_other is called. There is a race
2615 * condition otherwise which results in possible performance loss
2616 * especially if the ixgbe_msix_other interrupt is triggering
2617 * consistently (as it would when PPS is turned on for the X540 device)
2618 */
2619 eicr &= 0xFFFF0000;
2620
Alexander Duyck2c4af692011-07-15 07:29:55 +00002621 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002622
Alexander Duyck2c4af692011-07-15 07:29:55 +00002623 if (eicr & IXGBE_EICR_LSC)
2624 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002625
Alexander Duyck2c4af692011-07-15 07:29:55 +00002626 if (eicr & IXGBE_EICR_MAILBOX)
2627 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002628
Alexander Duyck2c4af692011-07-15 07:29:55 +00002629 switch (hw->mac.type) {
2630 case ixgbe_mac_82599EB:
2631 case ixgbe_mac_X540:
2632 if (eicr & IXGBE_EICR_ECC)
2633 e_info(link, "Received unrecoverable ECC Err, please "
2634 "reboot\n");
2635 /* Handle Flow Director Full threshold interrupt */
2636 if (eicr & IXGBE_EICR_FLOW_DIR) {
2637 int reinit_count = 0;
2638 int i;
2639 for (i = 0; i < adapter->num_tx_queues; i++) {
2640 struct ixgbe_ring *ring = adapter->tx_ring[i];
2641 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2642 &ring->state))
2643 reinit_count++;
2644 }
2645 if (reinit_count) {
2646 /* no more flow director interrupts until after init */
2647 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2648 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2649 ixgbe_service_event_schedule(adapter);
2650 }
2651 }
2652 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002653 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002654 break;
2655 default:
2656 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002657 }
2658
Alexander Duyck2c4af692011-07-15 07:29:55 +00002659 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002660
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002661 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2662 ixgbe_ptp_check_pps_event(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002663
Alexander Duyck2c4af692011-07-15 07:29:55 +00002664 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002665 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002666 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002667
Alexander Duyck2c4af692011-07-15 07:29:55 +00002668 return IRQ_HANDLED;
2669}
2670
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002671static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002672{
2673 struct ixgbe_q_vector *q_vector = data;
2674
Auke Kok9a799d72007-09-15 14:07:45 -07002675 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002676
2677 if (q_vector->rx.ring || q_vector->tx.ring)
2678 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002679
2680 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002681}
2682
Auke Kok9a799d72007-09-15 14:07:45 -07002683/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002684 * ixgbe_poll - NAPI Rx polling callback
2685 * @napi: structure for representing this polling device
2686 * @budget: how many packets driver is allowed to clean
2687 *
2688 * This function is used for legacy and MSI, NAPI mode
2689 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002690int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002691{
2692 struct ixgbe_q_vector *q_vector =
2693 container_of(napi, struct ixgbe_q_vector, napi);
2694 struct ixgbe_adapter *adapter = q_vector->adapter;
2695 struct ixgbe_ring *ring;
2696 int per_ring_budget;
2697 bool clean_complete = true;
2698
2699#ifdef CONFIG_IXGBE_DCA
2700 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2701 ixgbe_update_dca(q_vector);
2702#endif
2703
2704 ixgbe_for_each_ring(ring, q_vector->tx)
2705 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2706
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002707 if (!ixgbe_qv_lock_napi(q_vector))
2708 return budget;
2709
Alexander Duyckeb01b972012-02-08 07:51:27 +00002710 /* attempt to distribute budget to each queue fairly, but don't allow
2711 * the budget to go below 1 because we'll exit polling */
2712 if (q_vector->rx.count > 1)
2713 per_ring_budget = max(budget/q_vector->rx.count, 1);
2714 else
2715 per_ring_budget = budget;
2716
2717 ixgbe_for_each_ring(ring, q_vector->rx)
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002718 clean_complete &= (ixgbe_clean_rx_irq(q_vector, ring,
2719 per_ring_budget) < per_ring_budget);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002720
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002721 ixgbe_qv_unlock_napi(q_vector);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002722 /* If all work not completed, return budget and keep polling */
2723 if (!clean_complete)
2724 return budget;
2725
2726 /* all work done, exit the polling mode */
2727 napi_complete(napi);
2728 if (adapter->rx_itr_setting & 1)
2729 ixgbe_set_itr(q_vector);
2730 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2731 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2732
2733 return 0;
2734}
2735
2736/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002737 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2738 * @adapter: board private structure
2739 *
2740 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2741 * interrupts from the kernel.
2742 **/
2743static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2744{
2745 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002746 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002747 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002748
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002749 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002750 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002751 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002752
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002753 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002754 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002755 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002756 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002757 } else if (q_vector->rx.ring) {
2758 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2759 "%s-%s-%d", netdev->name, "rx", ri++);
2760 } else if (q_vector->tx.ring) {
2761 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2762 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002763 } else {
2764 /* skip this unused q_vector */
2765 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002766 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002767 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2768 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002769 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002770 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002771 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002772 goto free_queue_irqs;
2773 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002774 /* If Flow Director is enabled, set interrupt affinity */
2775 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2776 /* assign the mask for this irq */
2777 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002778 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002779 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002780 }
2781
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002782 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002783 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002784 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002785 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002786 goto free_queue_irqs;
2787 }
2788
2789 return 0;
2790
2791free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002792 while (vector) {
2793 vector--;
2794 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2795 NULL);
2796 free_irq(adapter->msix_entries[vector].vector,
2797 adapter->q_vector[vector]);
2798 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002799 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2800 pci_disable_msix(adapter->pdev);
2801 kfree(adapter->msix_entries);
2802 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002803 return err;
2804}
2805
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002806/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002807 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002808 * @irq: interrupt number
2809 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002810 **/
2811static irqreturn_t ixgbe_intr(int irq, void *data)
2812{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002813 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002814 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002815 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002816 u32 eicr;
2817
Don Skidmore54037502009-02-21 15:42:56 -08002818 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002819 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002820 * before the read of EICR.
2821 */
2822 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2823
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002824 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002825 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002826 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002827 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002828 /*
2829 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002830 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002831 * have disabled interrupts due to EIAM
2832 * finish the workaround of silicon errata on 82598. Unmask
2833 * the interrupt that we masked before the EICR read.
2834 */
2835 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2836 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002837 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002838 }
Auke Kok9a799d72007-09-15 14:07:45 -07002839
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002840 if (eicr & IXGBE_EICR_LSC)
2841 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002842
Alexander Duyckbd508172010-11-16 19:27:03 -08002843 switch (hw->mac.type) {
2844 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002845 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002846 /* Fall through */
2847 case ixgbe_mac_X540:
2848 if (eicr & IXGBE_EICR_ECC)
2849 e_info(link, "Received unrecoverable ECC err, please "
2850 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002851 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002852 break;
2853 default:
2854 break;
2855 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002856
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002857 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002858 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2859 ixgbe_ptp_check_pps_event(adapter, eicr);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002860
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002861 /* would disable interrupts here but EIAM disabled it */
2862 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002863
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002864 /*
2865 * re-enable link(maybe) and non-queue interrupts, no flush.
2866 * ixgbe_poll will re-enable the queue interrupts
2867 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002868 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2869 ixgbe_irq_enable(adapter, false, false);
2870
Auke Kok9a799d72007-09-15 14:07:45 -07002871 return IRQ_HANDLED;
2872}
2873
2874/**
2875 * ixgbe_request_irq - initialize interrupts
2876 * @adapter: board private structure
2877 *
2878 * Attempts to configure interrupts using the best available
2879 * capabilities of the hardware and kernel.
2880 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002881static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002882{
2883 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002884 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002885
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002886 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002887 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002888 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002889 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002890 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002891 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002892 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002893 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002894
Alexander Duyckde88eee2012-02-08 07:49:59 +00002895 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002896 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002897
Auke Kok9a799d72007-09-15 14:07:45 -07002898 return err;
2899}
2900
2901static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2902{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002903 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002904
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002905 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002906 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002907 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002908 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002909
2910 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2911 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2912 struct msix_entry *entry = &adapter->msix_entries[vector];
2913
2914 /* free only the irqs that were actually requested */
2915 if (!q_vector->rx.ring && !q_vector->tx.ring)
2916 continue;
2917
2918 /* clear the affinity_mask in the IRQ descriptor */
2919 irq_set_affinity_hint(entry->vector, NULL);
2920
2921 free_irq(entry->vector, q_vector);
2922 }
2923
2924 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002925}
2926
2927/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002928 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2929 * @adapter: board private structure
2930 **/
2931static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2932{
Alexander Duyckbd508172010-11-16 19:27:03 -08002933 switch (adapter->hw.mac.type) {
2934 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002935 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002936 break;
2937 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002938 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002939 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2940 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002941 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002942 break;
2943 default:
2944 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002945 }
2946 IXGBE_WRITE_FLUSH(&adapter->hw);
2947 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002948 int vector;
2949
2950 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2951 synchronize_irq(adapter->msix_entries[vector].vector);
2952
2953 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002954 } else {
2955 synchronize_irq(adapter->pdev->irq);
2956 }
2957}
2958
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002959/**
Auke Kok9a799d72007-09-15 14:07:45 -07002960 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2961 *
2962 **/
2963static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2964{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002965 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002966
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002967 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002968
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002969 ixgbe_set_ivar(adapter, 0, 0, 0);
2970 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002971
Emil Tantilov396e7992010-07-01 20:05:12 +00002972 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002973}
2974
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002975/**
2976 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2977 * @adapter: board private structure
2978 * @ring: structure containing ring specific data
2979 *
2980 * Configure the Tx descriptor ring after a reset.
2981 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002982void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2983 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002984{
2985 struct ixgbe_hw *hw = &adapter->hw;
2986 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002987 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002988 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002989 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002990
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002991 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002992 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002993 IXGBE_WRITE_FLUSH(hw);
2994
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002995 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002996 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002997 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2998 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2999 ring->count * sizeof(union ixgbe_adv_tx_desc));
3000 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
3001 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003002 ring->tail = adapter->io_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003003
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003004 /*
3005 * set WTHRESH to encourage burst writeback, it should not be set
Emil Tantilov67da0972013-01-25 06:19:20 +00003006 * higher than 1 when:
3007 * - ITR is 0 as it could cause false TX hangs
3008 * - ITR is set to > 100k int/sec and BQL is enabled
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003009 *
3010 * In order to avoid issues WTHRESH + PTHRESH should always be equal
3011 * to or less than the number of on chip descriptors, which is
3012 * currently 40.
3013 */
Emil Tantilov67da0972013-01-25 06:19:20 +00003014#if IS_ENABLED(CONFIG_BQL)
3015 if (!ring->q_vector || (ring->q_vector->itr < IXGBE_100K_ITR))
3016#else
Alexander Duycke954b372012-02-08 07:49:38 +00003017 if (!ring->q_vector || (ring->q_vector->itr < 8))
Emil Tantilov67da0972013-01-25 06:19:20 +00003018#endif
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003019 txdctl |= (1 << 16); /* WTHRESH = 1 */
3020 else
3021 txdctl |= (8 << 16); /* WTHRESH = 8 */
3022
Alexander Duycke954b372012-02-08 07:49:38 +00003023 /*
3024 * Setting PTHRESH to 32 both improves performance
3025 * and avoids a TX hang with DFP enabled
3026 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003027 txdctl |= (1 << 8) | /* HTHRESH = 1 */
3028 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003029
3030 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00003031 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08003032 ring->atr_sample_rate = adapter->atr_sample_rate;
3033 ring->atr_count = 0;
3034 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
3035 } else {
3036 ring->atr_sample_rate = 0;
3037 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003038
Alexander Duyckfd786b72013-01-12 06:33:31 +00003039 /* initialize XPS */
3040 if (!test_and_set_bit(__IXGBE_TX_XPS_INIT_DONE, &ring->state)) {
3041 struct ixgbe_q_vector *q_vector = ring->q_vector;
3042
3043 if (q_vector)
John Fastabend2a47fa42013-11-06 09:54:52 -08003044 netif_set_xps_queue(ring->netdev,
Alexander Duyckfd786b72013-01-12 06:33:31 +00003045 &q_vector->affinity_mask,
3046 ring->queue_index);
3047 }
3048
John Fastabendc84d3242010-11-16 19:27:12 -08003049 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
3050
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003051 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003052 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
3053
3054 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3055 if (hw->mac.type == ixgbe_mac_82598EB &&
3056 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3057 return;
3058
3059 /* poll to verify queue is enabled */
3060 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003061 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003062 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
3063 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
3064 if (!wait_loop)
3065 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003066}
3067
Alexander Duyck120ff942010-08-19 13:34:50 +00003068static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
3069{
3070 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003071 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003072 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00003073
3074 if (hw->mac.type == ixgbe_mac_82598EB)
3075 return;
3076
3077 /* disable the arbiter while setting MTQC */
3078 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3079 rttdcs |= IXGBE_RTTDCS_ARBDIS;
3080 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3081
3082 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003083 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3084 mtqc = IXGBE_MTQC_VT_ENA;
3085 if (tcs > 4)
3086 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3087 else if (tcs > 1)
3088 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3089 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3090 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003091 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003092 mtqc |= IXGBE_MTQC_64VF;
3093 } else {
3094 if (tcs > 4)
3095 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3096 else if (tcs > 1)
3097 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3098 else
3099 mtqc = IXGBE_MTQC_64Q_1PB;
3100 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00003101
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003102 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003103
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003104 /* Enable Security TX Buffer IFG for multiple pb */
3105 if (tcs) {
3106 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
3107 sectx |= IXGBE_SECTX_DCB;
3108 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00003109 }
3110
3111 /* re-enable the arbiter */
3112 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3113 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3114}
3115
Auke Kok9a799d72007-09-15 14:07:45 -07003116/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07003117 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07003118 * @adapter: board private structure
3119 *
3120 * Configure the Tx unit of the MAC after a reset.
3121 **/
3122static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
3123{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003124 struct ixgbe_hw *hw = &adapter->hw;
3125 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003126 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003127
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003128 ixgbe_setup_mtqc(adapter);
3129
3130 if (hw->mac.type != ixgbe_mac_82598EB) {
3131 /* DMATXCTL.EN must be before Tx queues are enabled */
3132 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3133 dmatxctl |= IXGBE_DMATXCTL_TE;
3134 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3135 }
3136
Auke Kok9a799d72007-09-15 14:07:45 -07003137 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003138 for (i = 0; i < adapter->num_tx_queues; i++)
3139 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07003140}
3141
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00003142static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
3143 struct ixgbe_ring *ring)
3144{
3145 struct ixgbe_hw *hw = &adapter->hw;
3146 u8 reg_idx = ring->reg_idx;
3147 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3148
3149 srrctl |= IXGBE_SRRCTL_DROP_EN;
3150
3151 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3152}
3153
3154static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
3155 struct ixgbe_ring *ring)
3156{
3157 struct ixgbe_hw *hw = &adapter->hw;
3158 u8 reg_idx = ring->reg_idx;
3159 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3160
3161 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
3162
3163 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3164}
3165
3166#ifdef CONFIG_IXGBE_DCB
3167void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3168#else
3169static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3170#endif
3171{
3172 int i;
3173 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
3174
3175 if (adapter->ixgbe_ieee_pfc)
3176 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
3177
3178 /*
3179 * We should set the drop enable bit if:
3180 * SR-IOV is enabled
3181 * or
3182 * Number of Rx queues > 1 and flow control is disabled
3183 *
3184 * This allows us to avoid head of line blocking for security
3185 * and performance reasons.
3186 */
3187 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
3188 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
3189 for (i = 0; i < adapter->num_rx_queues; i++)
3190 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
3191 } else {
3192 for (i = 0; i < adapter->num_rx_queues; i++)
3193 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
3194 }
3195}
3196
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003197#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07003198
Yi Zoua6616b42009-08-06 13:05:23 +00003199static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00003200 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003201{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003202 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003203 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003204 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003205
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003206 if (hw->mac.type == ixgbe_mac_82598EB) {
3207 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
3208
3209 /*
3210 * if VMDq is not active we must program one srrctl register
3211 * per RSS queue since we have enabled RDRXCTL.MVMEN
3212 */
3213 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08003214 }
3215
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003216 /* configure header buffer length, needed for RSC */
3217 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003218
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003219 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00003220 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003221
3222 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00003223 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003224
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003225 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003226}
3227
Alexander Duyck05abb122010-08-19 13:35:41 +00003228static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003229{
Alexander Duyck05abb122010-08-19 13:35:41 +00003230 struct ixgbe_hw *hw = &adapter->hw;
3231 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00003232 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
3233 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00003234 u32 mrqc = 0, reta = 0;
3235 u32 rxcsum;
3236 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003237 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00003238
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003239 /*
3240 * Program table for at least 2 queues w/ SR-IOV so that VFs can
3241 * make full use of any rings they may have. We will use the
3242 * PSRTYPE register to control how many rings we use within the PF.
3243 */
3244 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
3245 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003246
Alexander Duyck05abb122010-08-19 13:35:41 +00003247 /* Fill out hash function seeds */
3248 for (i = 0; i < 10; i++)
3249 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003250
Alexander Duyck05abb122010-08-19 13:35:41 +00003251 /* Fill out redirection table */
3252 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003253 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00003254 j = 0;
3255 /* reta = 4-byte sliding window of
3256 * 0x00..(indices-1)(indices-1)00..etc. */
3257 reta = (reta << 8) | (j * 0x11);
3258 if ((i & 3) == 3)
3259 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3260 }
3261
3262 /* Disable indicating checksum in descriptor, enables RSS hash */
3263 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3264 rxcsum |= IXGBE_RXCSUM_PCSD;
3265 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3266
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003267 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003268 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003269 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003270 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003271 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003272
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003273 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3274 if (tcs > 4)
3275 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3276 else if (tcs > 1)
3277 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
3278 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3279 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3280 else
3281 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3282 } else {
3283 if (tcs > 4)
3284 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3285 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003286 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3287 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003288 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003289 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003290 }
3291
Alexander Duyck05abb122010-08-19 13:35:41 +00003292 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003293 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3294 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3295 IXGBE_MRQC_RSS_FIELD_IPV6 |
3296 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003297
Alexander Duyckef6afc02012-02-08 07:51:53 +00003298 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3299 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3300 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3301 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3302
Alexander Duyck05abb122010-08-19 13:35:41 +00003303 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003304}
3305
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003306/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003307 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3308 * @adapter: address of board private structure
3309 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003310 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003311static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003312 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003313{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003314 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003315 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003316 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003317
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003318 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003319 return;
3320
Alexander Duyck73670962010-08-19 13:38:34 +00003321 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003322 rscctrl |= IXGBE_RSCCTL_RSCEN;
3323 /*
3324 * we must limit the number of descriptors so that the
3325 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003326 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003327 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003328 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003329 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003330}
3331
Alexander Duyck9e10e042010-08-19 13:40:06 +00003332#define IXGBE_MAX_RX_DESC_POLL 10
3333static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3334 struct ixgbe_ring *ring)
3335{
3336 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003337 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3338 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003339 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003340
3341 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3342 if (hw->mac.type == ixgbe_mac_82598EB &&
3343 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3344 return;
3345
3346 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003347 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003348 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3349 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3350
3351 if (!wait_loop) {
3352 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3353 "the polling period\n", reg_idx);
3354 }
3355}
3356
Yi Zou2d39d572011-01-06 14:29:56 +00003357void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3358 struct ixgbe_ring *ring)
3359{
3360 struct ixgbe_hw *hw = &adapter->hw;
3361 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3362 u32 rxdctl;
3363 u8 reg_idx = ring->reg_idx;
3364
3365 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3366 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3367
3368 /* write value back with RXDCTL.ENABLE bit cleared */
3369 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3370
3371 if (hw->mac.type == ixgbe_mac_82598EB &&
3372 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3373 return;
3374
3375 /* the hardware may take up to 100us to really disable the rx queue */
3376 do {
3377 udelay(10);
3378 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3379 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3380
3381 if (!wait_loop) {
3382 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3383 "the polling period\n", reg_idx);
3384 }
3385}
3386
Alexander Duyck84418e32010-08-19 13:40:54 +00003387void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3388 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003389{
3390 struct ixgbe_hw *hw = &adapter->hw;
3391 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003392 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003393 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003394
Alexander Duyck9e10e042010-08-19 13:40:06 +00003395 /* disable queue to avoid issues while updating state */
3396 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003397 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003398
Alexander Duyckacd37172010-08-19 13:36:05 +00003399 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3400 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3401 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3402 ring->count * sizeof(union ixgbe_adv_rx_desc));
3403 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3404 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003405 ring->tail = adapter->io_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003406
3407 ixgbe_configure_srrctl(adapter, ring);
3408 ixgbe_configure_rscctl(adapter, ring);
3409
3410 if (hw->mac.type == ixgbe_mac_82598EB) {
3411 /*
3412 * enable cache line friendly hardware writes:
3413 * PTHRESH=32 descriptors (half the internal cache),
3414 * this also removes ugly rx_no_buffer_count increment
3415 * HTHRESH=4 descriptors (to minimize latency on fetch)
3416 * WTHRESH=8 burst writeback up to two cache lines
3417 */
3418 rxdctl &= ~0x3FFFFF;
3419 rxdctl |= 0x080420;
3420 }
3421
3422 /* enable receive descriptor ring */
3423 rxdctl |= IXGBE_RXDCTL_ENABLE;
3424 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3425
3426 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003427 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003428}
3429
Alexander Duyck48654522010-08-19 13:36:27 +00003430static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3431{
3432 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003433 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend2a47fa42013-11-06 09:54:52 -08003434 u16 pool;
Alexander Duyck48654522010-08-19 13:36:27 +00003435
3436 /* PSRTYPE must be initialized in non 82598 adapters */
3437 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003438 IXGBE_PSRTYPE_UDPHDR |
3439 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003440 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003441 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003442
3443 if (hw->mac.type == ixgbe_mac_82598EB)
3444 return;
3445
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003446 if (rss_i > 3)
3447 psrtype |= 2 << 29;
3448 else if (rss_i > 1)
3449 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003450
John Fastabend2a47fa42013-11-06 09:54:52 -08003451 for_each_set_bit(pool, &adapter->fwd_bitmask, 32)
3452 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
Alexander Duyck48654522010-08-19 13:36:27 +00003453}
3454
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003455static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3456{
3457 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003458 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003459 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003460 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003461
3462 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3463 return;
3464
3465 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003466 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3467 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003468 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003469 vmdctl |= IXGBE_VT_CTL_REPLEN;
3470 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003471
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003472 vf_shift = VMDQ_P(0) % 32;
3473 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003474
3475 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003476 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3477 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3478 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3479 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Greg Rose9b735982012-11-08 02:41:35 +00003480 if (adapter->flags2 & IXGBE_FLAG2_BRIDGE_MODE_VEB)
3481 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003482
3483 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003484 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003485
3486 /*
3487 * Set up VF register offsets for selected VT Mode,
3488 * i.e. 32 or 64 VFs for SR-IOV
3489 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003490 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3491 case IXGBE_82599_VMDQ_8Q_MASK:
3492 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3493 break;
3494 case IXGBE_82599_VMDQ_4Q_MASK:
3495 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3496 break;
3497 default:
3498 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3499 break;
3500 }
3501
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003502 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3503
Alexander Duyck435b19f2012-05-18 06:34:08 +00003504
Greg Rosea985b6c32010-11-18 03:02:52 +00003505 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003506 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003507 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003508 /* For VFs that have spoof checking turned off */
3509 for (i = 0; i < adapter->num_vfs; i++) {
3510 if (!adapter->vfinfo[i].spoofchk_enabled)
3511 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3512 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003513}
3514
Alexander Duyck477de6e2010-08-19 13:38:11 +00003515static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003516{
Auke Kok9a799d72007-09-15 14:07:45 -07003517 struct ixgbe_hw *hw = &adapter->hw;
3518 struct net_device *netdev = adapter->netdev;
3519 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003520 struct ixgbe_ring *rx_ring;
3521 int i;
3522 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003523
Alexander Duyck477de6e2010-08-19 13:38:11 +00003524#ifdef IXGBE_FCOE
3525 /* adjust max frame to be able to do baby jumbo for FCoE */
3526 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3527 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3528 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3529
3530#endif /* IXGBE_FCOE */
Alexander Duyck872844d2012-08-15 02:10:43 +00003531
3532 /* adjust max frame to be at least the size of a standard frame */
3533 if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN))
3534 max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN);
3535
Alexander Duyck477de6e2010-08-19 13:38:11 +00003536 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3537 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3538 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3539 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3540
3541 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003542 }
3543
Auke Kok9a799d72007-09-15 14:07:45 -07003544 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003545 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3546 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003547 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3548
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003549 /*
3550 * Setup the HW Rx Head and Tail Descriptor Pointers and
3551 * the Base and Length of the Rx Descriptor Ring
3552 */
Auke Kok9a799d72007-09-15 14:07:45 -07003553 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003554 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003555 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3556 set_ring_rsc_enabled(rx_ring);
3557 else
3558 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003559 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003560}
3561
Alexander Duyck73670962010-08-19 13:38:34 +00003562static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3563{
3564 struct ixgbe_hw *hw = &adapter->hw;
3565 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3566
3567 switch (hw->mac.type) {
3568 case ixgbe_mac_82598EB:
3569 /*
3570 * For VMDq support of different descriptor types or
3571 * buffer sizes through the use of multiple SRRCTL
3572 * registers, RDRXCTL.MVMEN must be set to 1
3573 *
3574 * also, the manual doesn't mention it clearly but DCA hints
3575 * will only use queue 0's tags unless this bit is set. Side
3576 * effects of setting this bit are only that SRRCTL must be
3577 * fully programmed [0..15]
3578 */
3579 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3580 break;
3581 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003582 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003583 /* Disable RSC for ACK packets */
3584 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3585 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3586 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3587 /* hardware requires some bits to be set by default */
3588 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3589 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3590 break;
3591 default:
3592 /* We should do nothing since we don't know this hardware */
3593 return;
3594 }
3595
3596 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3597}
3598
Alexander Duyck477de6e2010-08-19 13:38:11 +00003599/**
3600 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3601 * @adapter: board private structure
3602 *
3603 * Configure the Rx unit of the MAC after a reset.
3604 **/
3605static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3606{
3607 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003608 int i;
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003609 u32 rxctrl, rfctl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003610
3611 /* disable receives while setting up the descriptors */
3612 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3613 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3614
3615 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003616 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003617
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003618 /* RSC Setup */
3619 rfctl = IXGBE_READ_REG(hw, IXGBE_RFCTL);
3620 rfctl &= ~IXGBE_RFCTL_RSC_DIS;
3621 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
3622 rfctl |= IXGBE_RFCTL_RSC_DIS;
3623 IXGBE_WRITE_REG(hw, IXGBE_RFCTL, rfctl);
3624
Alexander Duyck9e10e042010-08-19 13:40:06 +00003625 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003626 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003627
Alexander Duyck477de6e2010-08-19 13:38:11 +00003628 /* set_rx_buffer_len must be called before ring initialization */
3629 ixgbe_set_rx_buffer_len(adapter);
3630
3631 /*
3632 * Setup the HW Rx Head and Tail Descriptor Pointers and
3633 * the Base and Length of the Rx Descriptor Ring
3634 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003635 for (i = 0; i < adapter->num_rx_queues; i++)
3636 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003637
Alexander Duyck9e10e042010-08-19 13:40:06 +00003638 /* disable drop enable for 82598 parts */
3639 if (hw->mac.type == ixgbe_mac_82598EB)
3640 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3641
3642 /* enable all receives */
3643 rxctrl |= IXGBE_RXCTRL_RXEN;
3644 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003645}
3646
Patrick McHardy80d5c362013-04-19 02:04:28 +00003647static int ixgbe_vlan_rx_add_vid(struct net_device *netdev,
3648 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003649{
3650 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003651 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003652
3653 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003654 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003655 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003656
3657 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003658}
3659
Patrick McHardy80d5c362013-04-19 02:04:28 +00003660static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev,
3661 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003662{
3663 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003664 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003665
Auke Kok9a799d72007-09-15 14:07:45 -07003666 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003667 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003668 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003669
3670 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003671}
3672
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003673/**
3674 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3675 * @adapter: driver data
3676 */
3677static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3678{
3679 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003680 u32 vlnctrl;
3681
3682 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3683 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3684 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3685}
3686
3687/**
3688 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3689 * @adapter: driver data
3690 */
3691static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3692{
3693 struct ixgbe_hw *hw = &adapter->hw;
3694 u32 vlnctrl;
3695
3696 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3697 vlnctrl |= IXGBE_VLNCTRL_VFE;
3698 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3699 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3700}
3701
3702/**
3703 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3704 * @adapter: driver data
3705 */
3706static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3707{
3708 struct ixgbe_hw *hw = &adapter->hw;
3709 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003710 int i, j;
3711
3712 switch (hw->mac.type) {
3713 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003714 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3715 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003716 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3717 break;
3718 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003719 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003720 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08003721 struct ixgbe_ring *ring = adapter->rx_ring[i];
3722
3723 if (ring->l2_accel_priv)
3724 continue;
3725 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003726 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3727 vlnctrl &= ~IXGBE_RXDCTL_VME;
3728 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3729 }
3730 break;
3731 default:
3732 break;
3733 }
3734}
3735
3736/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003737 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003738 * @adapter: driver data
3739 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003740static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003741{
3742 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003743 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003744 int i, j;
3745
3746 switch (hw->mac.type) {
3747 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003748 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3749 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003750 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3751 break;
3752 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003753 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003754 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08003755 struct ixgbe_ring *ring = adapter->rx_ring[i];
3756
3757 if (ring->l2_accel_priv)
3758 continue;
3759 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003760 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3761 vlnctrl |= IXGBE_RXDCTL_VME;
3762 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3763 }
3764 break;
3765 default:
3766 break;
3767 }
3768}
3769
Auke Kok9a799d72007-09-15 14:07:45 -07003770static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3771{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003772 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003773
Patrick McHardy80d5c362013-04-19 02:04:28 +00003774 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003775
3776 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00003777 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003778}
3779
3780/**
Alexander Duyck28500622010-06-15 09:25:48 +00003781 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3782 * @netdev: network interface device structure
3783 *
3784 * Writes unicast address list to the RAR table.
3785 * Returns: -ENOMEM on failure/insufficient address space
3786 * 0 on no addresses written
3787 * X on writing X addresses to the RAR table
3788 **/
3789static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3790{
3791 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3792 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003793 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003794 int count = 0;
3795
John Fastabend2a47fa42013-11-06 09:54:52 -08003796 /* In SR-IOV/VMDQ modes significantly less RAR entries are available */
John Fastabend95447462012-05-31 12:42:26 +00003797 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3798 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3799
Alexander Duyck28500622010-06-15 09:25:48 +00003800 /* return ENOMEM indicating insufficient memory for addresses */
3801 if (netdev_uc_count(netdev) > rar_entries)
3802 return -ENOMEM;
3803
John Fastabend95447462012-05-31 12:42:26 +00003804 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003805 struct netdev_hw_addr *ha;
3806 /* return error if we do not support writing to RAR table */
3807 if (!hw->mac.ops.set_rar)
3808 return -ENOMEM;
3809
3810 netdev_for_each_uc_addr(ha, netdev) {
3811 if (!rar_entries)
3812 break;
3813 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003814 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003815 count++;
3816 }
3817 }
3818 /* write the addresses in reverse order to avoid write combining */
3819 for (; rar_entries > 0 ; rar_entries--)
3820 hw->mac.ops.clear_rar(hw, rar_entries);
3821
3822 return count;
3823}
3824
3825/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003826 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003827 * @netdev: network interface device structure
3828 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003829 * The set_rx_method entry point is called whenever the unicast/multicast
3830 * address list or the network interface flags are updated. This routine is
3831 * responsible for configuring the hardware for proper unicast, multicast and
3832 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003833 **/
Greg Rose7f870472010-01-09 02:25:29 +00003834void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003835{
3836 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3837 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003838 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3839 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003840
3841 /* Check for Promiscuous and All Multicast modes */
3842
3843 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3844
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003845 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003846 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003847 fctrl |= IXGBE_FCTRL_BAM;
3848 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3849 fctrl |= IXGBE_FCTRL_PMCF;
3850
Alexander Duyck28500622010-06-15 09:25:48 +00003851 /* clear the bits we are changing the status of */
3852 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3853
Auke Kok9a799d72007-09-15 14:07:45 -07003854 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003855 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003856 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003857 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Greg Rose670224f2013-02-22 02:14:39 +00003858 /* Only disable hardware filter vlans in promiscuous mode
3859 * if SR-IOV and VMDQ are disabled - otherwise ensure
3860 * that hardware VLAN filters remain enabled.
3861 */
3862 if (!(adapter->flags & (IXGBE_FLAG_VMDQ_ENABLED |
3863 IXGBE_FLAG_SRIOV_ENABLED)))
3864 ixgbe_vlan_filter_disable(adapter);
3865 else
3866 ixgbe_vlan_filter_enable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003867 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003868 if (netdev->flags & IFF_ALLMULTI) {
3869 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003870 vmolr |= IXGBE_VMOLR_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003871 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003872 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003873 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003874 }
3875
3876 /*
3877 * Write addresses to available RAR registers, if there is not
3878 * sufficient space to store all the addresses then enable
3879 * unicast promiscuous mode
3880 */
3881 count = ixgbe_write_uc_addr_list(netdev);
3882 if (count < 0) {
3883 fctrl |= IXGBE_FCTRL_UPE;
3884 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003885 }
3886
Emil Tantilovcf789592013-10-26 08:13:20 +00003887 /* Write addresses to the MTA, if the attempt fails
3888 * then we should just turn on promiscuous mode so
3889 * that we can at least receive multicast traffic
3890 */
3891 hw->mac.ops.update_mc_addr_list(hw, netdev);
3892 vmolr |= IXGBE_VMOLR_ROMPE;
3893
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003894 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003895 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003896
3897 if (hw->mac.type != ixgbe_mac_82598EB) {
3898 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003899 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3900 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003901 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003902 }
3903
Ben Greear3f2d1c02012-03-08 08:28:41 +00003904 /* This is useful for sniffing bad packets. */
3905 if (adapter->netdev->features & NETIF_F_RXALL) {
3906 /* UPE and MPE will be handled by normal PROMISC logic
3907 * in e1000e_set_rx_mode */
3908 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3909 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3910 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3911
3912 fctrl &= ~(IXGBE_FCTRL_DPF);
3913 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3914 }
3915
Auke Kok9a799d72007-09-15 14:07:45 -07003916 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003917
Patrick McHardyf6469682013-04-19 02:04:27 +00003918 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Jesse Grossf62bbb52010-10-20 13:56:10 +00003919 ixgbe_vlan_strip_enable(adapter);
3920 else
3921 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003922}
3923
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003924static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3925{
3926 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003927
Eliezer Tamir5a85e732013-06-10 11:40:20 +03003928 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
3929 ixgbe_qv_init_lock(adapter->q_vector[q_idx]);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003930 napi_enable(&adapter->q_vector[q_idx]->napi);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03003931 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003932}
3933
3934static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3935{
3936 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003937
Eliezer Tamir5a85e732013-06-10 11:40:20 +03003938 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003939 napi_disable(&adapter->q_vector[q_idx]->napi);
Jacob Keller27d9ce42013-09-21 05:05:44 +00003940 while (!ixgbe_qv_disable(adapter->q_vector[q_idx])) {
Eliezer Tamir5a85e732013-06-10 11:40:20 +03003941 pr_info("QV %d locked\n", q_idx);
Jacob Keller27d9ce42013-09-21 05:05:44 +00003942 usleep_range(1000, 20000);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03003943 }
3944 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003945}
3946
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003947#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003948/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003949 * ixgbe_configure_dcb - Configure DCB hardware
3950 * @adapter: ixgbe adapter struct
3951 *
3952 * This is called by the driver on open to configure the DCB hardware.
3953 * This is also called by the gennetlink interface when reconfiguring
3954 * the DCB state.
3955 */
3956static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3957{
3958 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003959 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003960
Alexander Duyck67ebd792010-08-19 13:34:04 +00003961 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3962 if (hw->mac.type == ixgbe_mac_82598EB)
3963 netif_set_gso_max_size(adapter->netdev, 65536);
3964 return;
3965 }
3966
3967 if (hw->mac.type == ixgbe_mac_82598EB)
3968 netif_set_gso_max_size(adapter->netdev, 32768);
3969
John Fastabendb1208182011-10-15 05:00:10 +00003970#ifdef IXGBE_FCOE
3971 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3972 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3973#endif
3974
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003975 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003976 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003977 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3978 DCB_TX_CONFIG);
3979 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3980 DCB_RX_CONFIG);
3981 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003982 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3983 ixgbe_dcb_hw_ets(&adapter->hw,
3984 adapter->ixgbe_ieee_ets,
3985 max_frame);
3986 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3987 adapter->ixgbe_ieee_pfc->pfc_en,
3988 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003989 }
John Fastabend8187cd42011-02-23 05:58:08 +00003990
3991 /* Enable RSS Hash per TC */
3992 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003993 u32 msb = 0;
3994 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003995
Alexander Duyckd411a932012-06-30 00:14:01 +00003996 while (rss_i) {
3997 msb++;
3998 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003999 }
Alexander Duyckd411a932012-06-30 00:14:01 +00004000
Alexander Duyck4ae63732012-06-22 06:46:33 +00004001 /* write msb to all 8 TCs in one write */
4002 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00004003 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004004}
John Fastabend9da712d2011-08-23 03:14:22 +00004005#endif
4006
4007/* Additional bittime to account for IXGBE framing */
4008#define IXGBE_ETH_FRAMING 20
4009
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004010/**
John Fastabend9da712d2011-08-23 03:14:22 +00004011 * ixgbe_hpbthresh - calculate high water mark for flow control
4012 *
4013 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004014 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004015 */
4016static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
4017{
4018 struct ixgbe_hw *hw = &adapter->hw;
4019 struct net_device *dev = adapter->netdev;
4020 int link, tc, kb, marker;
4021 u32 dv_id, rx_pba;
4022
4023 /* Calculate max LAN frame size */
4024 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
4025
4026#ifdef IXGBE_FCOE
4027 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00004028 if ((dev->features & NETIF_F_FCOE_MTU) &&
4029 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
4030 (pb == ixgbe_fcoe_get_tc(adapter)))
4031 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004032
4033#endif
John Fastabend9da712d2011-08-23 03:14:22 +00004034 /* Calculate delay value for device */
4035 switch (hw->mac.type) {
4036 case ixgbe_mac_X540:
4037 dv_id = IXGBE_DV_X540(link, tc);
4038 break;
4039 default:
4040 dv_id = IXGBE_DV(link, tc);
4041 break;
4042 }
4043
4044 /* Loopback switch introduces additional latency */
4045 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4046 dv_id += IXGBE_B2BT(tc);
4047
4048 /* Delay value is calculated in bit times convert to KB */
4049 kb = IXGBE_BT2KB(dv_id);
4050 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
4051
4052 marker = rx_pba - kb;
4053
4054 /* It is possible that the packet buffer is not large enough
4055 * to provide required headroom. In this case throw an error
4056 * to user and a do the best we can.
4057 */
4058 if (marker < 0) {
4059 e_warn(drv, "Packet Buffer(%i) can not provide enough"
4060 "headroom to support flow control."
4061 "Decrease MTU or number of traffic classes\n", pb);
4062 marker = tc + 1;
4063 }
4064
4065 return marker;
4066}
4067
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004068/**
John Fastabend9da712d2011-08-23 03:14:22 +00004069 * ixgbe_lpbthresh - calculate low water mark for for flow control
4070 *
4071 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004072 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004073 */
4074static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
4075{
4076 struct ixgbe_hw *hw = &adapter->hw;
4077 struct net_device *dev = adapter->netdev;
4078 int tc;
4079 u32 dv_id;
4080
4081 /* Calculate max LAN frame size */
4082 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
4083
4084 /* Calculate delay value for device */
4085 switch (hw->mac.type) {
4086 case ixgbe_mac_X540:
4087 dv_id = IXGBE_LOW_DV_X540(tc);
4088 break;
4089 default:
4090 dv_id = IXGBE_LOW_DV(tc);
4091 break;
4092 }
4093
4094 /* Delay value is calculated in bit times convert to KB */
4095 return IXGBE_BT2KB(dv_id);
4096}
4097
4098/*
4099 * ixgbe_pbthresh_setup - calculate and setup high low water marks
4100 */
4101static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
4102{
4103 struct ixgbe_hw *hw = &adapter->hw;
4104 int num_tc = netdev_get_num_tc(adapter->netdev);
4105 int i;
4106
4107 if (!num_tc)
4108 num_tc = 1;
4109
4110 hw->fc.low_water = ixgbe_lpbthresh(adapter);
4111
4112 for (i = 0; i < num_tc; i++) {
4113 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
4114
4115 /* Low water marks must not be larger than high water marks */
4116 if (hw->fc.low_water > hw->fc.high_water[i])
4117 hw->fc.low_water = 0;
4118 }
4119}
John Fastabend80605c652011-05-02 12:34:10 +00004120
4121static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
4122{
John Fastabend80605c652011-05-02 12:34:10 +00004123 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00004124 int hdrm;
4125 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00004126
4127 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4128 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00004129 hdrm = 32 << adapter->fdir_pballoc;
4130 else
4131 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00004132
Alexander Duyckf7e10272011-07-21 00:40:35 +00004133 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00004134 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00004135}
4136
Alexander Duycke4911d52011-05-11 07:18:52 +00004137static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
4138{
4139 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004140 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00004141 struct ixgbe_fdir_filter *filter;
4142
4143 spin_lock(&adapter->fdir_perfect_lock);
4144
4145 if (!hlist_empty(&adapter->fdir_filter_list))
4146 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
4147
Sasha Levinb67bfe02013-02-27 17:06:00 -08004148 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00004149 &adapter->fdir_filter_list, fdir_node) {
4150 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00004151 &filter->filter,
4152 filter->sw_idx,
4153 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
4154 IXGBE_FDIR_DROP_QUEUE :
4155 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00004156 }
4157
4158 spin_unlock(&adapter->fdir_perfect_lock);
4159}
4160
John Fastabend2a47fa42013-11-06 09:54:52 -08004161static void ixgbe_macvlan_set_rx_mode(struct net_device *dev, unsigned int pool,
4162 struct ixgbe_adapter *adapter)
4163{
4164 struct ixgbe_hw *hw = &adapter->hw;
4165 u32 vmolr;
4166
4167 /* No unicast promiscuous support for VMDQ devices. */
4168 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
4169 vmolr |= (IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
4170
4171 /* clear the affected bit */
4172 vmolr &= ~IXGBE_VMOLR_MPE;
4173
4174 if (dev->flags & IFF_ALLMULTI) {
4175 vmolr |= IXGBE_VMOLR_MPE;
4176 } else {
4177 vmolr |= IXGBE_VMOLR_ROMPE;
4178 hw->mac.ops.update_mc_addr_list(hw, dev);
4179 }
4180 ixgbe_write_uc_addr_list(adapter->netdev);
4181 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
4182}
4183
4184static void ixgbe_add_mac_filter(struct ixgbe_adapter *adapter,
4185 u8 *addr, u16 pool)
4186{
4187 struct ixgbe_hw *hw = &adapter->hw;
4188 unsigned int entry;
4189
4190 entry = hw->mac.num_rar_entries - pool;
4191 hw->mac.ops.set_rar(hw, entry, addr, VMDQ_P(pool), IXGBE_RAH_AV);
4192}
4193
4194static void ixgbe_fwd_psrtype(struct ixgbe_fwd_adapter *vadapter)
4195{
4196 struct ixgbe_adapter *adapter = vadapter->real_adapter;
John Fastabend219354d2013-11-08 00:50:32 -08004197 int rss_i = adapter->num_rx_queues_per_pool;
John Fastabend2a47fa42013-11-06 09:54:52 -08004198 struct ixgbe_hw *hw = &adapter->hw;
4199 u16 pool = vadapter->pool;
4200 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
4201 IXGBE_PSRTYPE_UDPHDR |
4202 IXGBE_PSRTYPE_IPV4HDR |
4203 IXGBE_PSRTYPE_L2HDR |
4204 IXGBE_PSRTYPE_IPV6HDR;
4205
4206 if (hw->mac.type == ixgbe_mac_82598EB)
4207 return;
4208
4209 if (rss_i > 3)
4210 psrtype |= 2 << 29;
4211 else if (rss_i > 1)
4212 psrtype |= 1 << 29;
4213
4214 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
4215}
4216
4217/**
4218 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
4219 * @rx_ring: ring to free buffers from
4220 **/
4221static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
4222{
4223 struct device *dev = rx_ring->dev;
4224 unsigned long size;
4225 u16 i;
4226
4227 /* ring already cleared, nothing to do */
4228 if (!rx_ring->rx_buffer_info)
4229 return;
4230
4231 /* Free all the Rx ring sk_buffs */
4232 for (i = 0; i < rx_ring->count; i++) {
4233 struct ixgbe_rx_buffer *rx_buffer;
4234
4235 rx_buffer = &rx_ring->rx_buffer_info[i];
4236 if (rx_buffer->skb) {
4237 struct sk_buff *skb = rx_buffer->skb;
4238 if (IXGBE_CB(skb)->page_released) {
4239 dma_unmap_page(dev,
4240 IXGBE_CB(skb)->dma,
4241 ixgbe_rx_bufsz(rx_ring),
4242 DMA_FROM_DEVICE);
4243 IXGBE_CB(skb)->page_released = false;
4244 }
4245 dev_kfree_skb(skb);
4246 }
4247 rx_buffer->skb = NULL;
4248 if (rx_buffer->dma)
4249 dma_unmap_page(dev, rx_buffer->dma,
4250 ixgbe_rx_pg_size(rx_ring),
4251 DMA_FROM_DEVICE);
4252 rx_buffer->dma = 0;
4253 if (rx_buffer->page)
4254 __free_pages(rx_buffer->page,
4255 ixgbe_rx_pg_order(rx_ring));
4256 rx_buffer->page = NULL;
4257 }
4258
4259 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4260 memset(rx_ring->rx_buffer_info, 0, size);
4261
4262 /* Zero out the descriptor ring */
4263 memset(rx_ring->desc, 0, rx_ring->size);
4264
4265 rx_ring->next_to_alloc = 0;
4266 rx_ring->next_to_clean = 0;
4267 rx_ring->next_to_use = 0;
4268}
4269
4270static void ixgbe_disable_fwd_ring(struct ixgbe_fwd_adapter *vadapter,
4271 struct ixgbe_ring *rx_ring)
4272{
4273 struct ixgbe_adapter *adapter = vadapter->real_adapter;
4274 int index = rx_ring->queue_index + vadapter->rx_base_queue;
4275
4276 /* shutdown specific queue receive and wait for dma to settle */
4277 ixgbe_disable_rx_queue(adapter, rx_ring);
4278 usleep_range(10000, 20000);
4279 ixgbe_irq_disable_queues(adapter, ((u64)1 << index));
4280 ixgbe_clean_rx_ring(rx_ring);
4281 rx_ring->l2_accel_priv = NULL;
4282}
4283
John Fastabendae72c8d2013-11-09 07:11:26 +00004284static int ixgbe_fwd_ring_down(struct net_device *vdev,
4285 struct ixgbe_fwd_adapter *accel)
John Fastabend2a47fa42013-11-06 09:54:52 -08004286{
4287 struct ixgbe_adapter *adapter = accel->real_adapter;
4288 unsigned int rxbase = accel->rx_base_queue;
4289 unsigned int txbase = accel->tx_base_queue;
4290 int i;
4291
4292 netif_tx_stop_all_queues(vdev);
4293
4294 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4295 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4296 adapter->rx_ring[rxbase + i]->netdev = adapter->netdev;
4297 }
4298
4299 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4300 adapter->tx_ring[txbase + i]->l2_accel_priv = NULL;
4301 adapter->tx_ring[txbase + i]->netdev = adapter->netdev;
4302 }
4303
4304
4305 return 0;
4306}
4307
4308static int ixgbe_fwd_ring_up(struct net_device *vdev,
4309 struct ixgbe_fwd_adapter *accel)
4310{
4311 struct ixgbe_adapter *adapter = accel->real_adapter;
4312 unsigned int rxbase, txbase, queues;
4313 int i, baseq, err = 0;
4314
4315 if (!test_bit(accel->pool, &adapter->fwd_bitmask))
4316 return 0;
4317
4318 baseq = accel->pool * adapter->num_rx_queues_per_pool;
4319 netdev_dbg(vdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
4320 accel->pool, adapter->num_rx_pools,
4321 baseq, baseq + adapter->num_rx_queues_per_pool,
4322 adapter->fwd_bitmask);
4323
4324 accel->netdev = vdev;
4325 accel->rx_base_queue = rxbase = baseq;
4326 accel->tx_base_queue = txbase = baseq;
4327
4328 for (i = 0; i < adapter->num_rx_queues_per_pool; i++)
4329 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4330
4331 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4332 adapter->rx_ring[rxbase + i]->netdev = vdev;
4333 adapter->rx_ring[rxbase + i]->l2_accel_priv = accel;
4334 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[rxbase + i]);
4335 }
4336
4337 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4338 adapter->tx_ring[txbase + i]->netdev = vdev;
4339 adapter->tx_ring[txbase + i]->l2_accel_priv = accel;
4340 }
4341
4342 queues = min_t(unsigned int,
4343 adapter->num_rx_queues_per_pool, vdev->num_tx_queues);
4344 err = netif_set_real_num_tx_queues(vdev, queues);
4345 if (err)
4346 goto fwd_queue_err;
4347
John Fastabend2a47fa42013-11-06 09:54:52 -08004348 err = netif_set_real_num_rx_queues(vdev, queues);
4349 if (err)
4350 goto fwd_queue_err;
4351
4352 if (is_valid_ether_addr(vdev->dev_addr))
4353 ixgbe_add_mac_filter(adapter, vdev->dev_addr, accel->pool);
4354
4355 ixgbe_fwd_psrtype(accel);
4356 ixgbe_macvlan_set_rx_mode(vdev, accel->pool, adapter);
4357 return err;
4358fwd_queue_err:
4359 ixgbe_fwd_ring_down(vdev, accel);
4360 return err;
4361}
4362
4363static void ixgbe_configure_dfwd(struct ixgbe_adapter *adapter)
4364{
4365 struct net_device *upper;
4366 struct list_head *iter;
4367 int err;
4368
4369 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
4370 if (netif_is_macvlan(upper)) {
4371 struct macvlan_dev *dfwd = netdev_priv(upper);
4372 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
4373
4374 if (dfwd->fwd_priv) {
4375 err = ixgbe_fwd_ring_up(upper, vadapter);
4376 if (err)
4377 continue;
4378 }
4379 }
4380 }
4381}
4382
Auke Kok9a799d72007-09-15 14:07:45 -07004383static void ixgbe_configure(struct ixgbe_adapter *adapter)
4384{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004385 struct ixgbe_hw *hw = &adapter->hw;
4386
John Fastabend80605c652011-05-02 12:34:10 +00004387 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004388#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00004389 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08004390#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00004391 /*
4392 * We must restore virtualization before VLANs or else
4393 * the VLVF registers will not be populated
4394 */
4395 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004396
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004397 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004398 ixgbe_restore_vlan(adapter);
4399
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004400 switch (hw->mac.type) {
4401 case ixgbe_mac_82599EB:
4402 case ixgbe_mac_X540:
4403 hw->mac.ops.disable_rx_buff(hw);
4404 break;
4405 default:
4406 break;
4407 }
4408
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004409 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004410 ixgbe_init_fdir_signature_82599(&adapter->hw,
4411 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00004412 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
4413 ixgbe_init_fdir_perfect_82599(&adapter->hw,
4414 adapter->fdir_pballoc);
4415 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004416 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004417
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004418 switch (hw->mac.type) {
4419 case ixgbe_mac_82599EB:
4420 case ixgbe_mac_X540:
4421 hw->mac.ops.enable_rx_buff(hw);
4422 break;
4423 default:
4424 break;
4425 }
4426
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004427#ifdef IXGBE_FCOE
4428 /* configure FCoE L2 filters, redirection table, and Rx control */
4429 ixgbe_configure_fcoe(adapter);
4430
4431#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07004432 ixgbe_configure_tx(adapter);
4433 ixgbe_configure_rx(adapter);
John Fastabend2a47fa42013-11-06 09:54:52 -08004434 ixgbe_configure_dfwd(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004435}
4436
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004437static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
4438{
4439 switch (hw->phy.type) {
4440 case ixgbe_phy_sfp_avago:
4441 case ixgbe_phy_sfp_ftl:
4442 case ixgbe_phy_sfp_intel:
4443 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00004444 case ixgbe_phy_sfp_passive_tyco:
4445 case ixgbe_phy_sfp_passive_unknown:
4446 case ixgbe_phy_sfp_active_unknown:
4447 case ixgbe_phy_sfp_ftl_active:
Emil Tantilov987e1d52013-08-14 07:12:27 +00004448 case ixgbe_phy_qsfp_passive_unknown:
4449 case ixgbe_phy_qsfp_active_unknown:
4450 case ixgbe_phy_qsfp_intel:
4451 case ixgbe_phy_qsfp_unknown:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004452 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00004453 case ixgbe_phy_nl:
4454 if (hw->mac.type == ixgbe_mac_82598EB)
4455 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004456 default:
4457 return false;
4458 }
4459}
4460
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004461/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004462 * ixgbe_sfp_link_config - set up SFP+ link
4463 * @adapter: pointer to private adapter struct
4464 **/
4465static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
4466{
Alexander Duyck70864002011-04-27 09:13:56 +00004467 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004468 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00004469 * is that an SFP was inserted/removed after the reset
4470 * but before SFP detection was enabled. As such the best
4471 * solution is to just start searching as soon as we start
4472 */
4473 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
4474 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004475
Alexander Duyck70864002011-04-27 09:13:56 +00004476 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004477}
4478
4479/**
4480 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004481 * @hw: pointer to private hardware struct
4482 *
4483 * Returns 0 on success, negative on failure
4484 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004485static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004486{
Josh Hay3d292262012-12-15 03:28:19 +00004487 u32 speed;
4488 bool autoneg, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004489 u32 ret = IXGBE_ERR_LINK_SETUP;
4490
4491 if (hw->mac.ops.check_link)
Josh Hay3d292262012-12-15 03:28:19 +00004492 ret = hw->mac.ops.check_link(hw, &speed, &link_up, false);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004493
4494 if (ret)
4495 goto link_cfg_out;
4496
Josh Hay3d292262012-12-15 03:28:19 +00004497 speed = hw->phy.autoneg_advertised;
4498 if ((!speed) && (hw->mac.ops.get_link_capabilities))
4499 ret = hw->mac.ops.get_link_capabilities(hw, &speed,
4500 &autoneg);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004501 if (ret)
4502 goto link_cfg_out;
4503
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00004504 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00004505 ret = hw->mac.ops.setup_link(hw, speed, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004506link_cfg_out:
4507 return ret;
4508}
4509
Alexander Duycka34bcff2010-08-19 13:39:20 +00004510static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004511{
Auke Kok9a799d72007-09-15 14:07:45 -07004512 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004513 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004514
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004515 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00004516 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
4517 IXGBE_GPIE_OCD;
4518 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004519 /*
4520 * use EIAM to auto-mask when MSI-X interrupt is asserted
4521 * this saves a register write for every interrupt
4522 */
4523 switch (hw->mac.type) {
4524 case ixgbe_mac_82598EB:
4525 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4526 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004527 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004528 case ixgbe_mac_X540:
4529 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004530 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4531 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4532 break;
4533 }
4534 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004535 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4536 * specifically only auto mask tx and rx interrupts */
4537 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004538 }
4539
Alexander Duycka34bcff2010-08-19 13:39:20 +00004540 /* XXX: to interrupt immediately for EICS writes, enable this */
4541 /* gpie |= IXGBE_GPIE_EIMEN; */
4542
4543 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
4544 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00004545
4546 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4547 case IXGBE_82599_VMDQ_8Q_MASK:
4548 gpie |= IXGBE_GPIE_VTMODE_16;
4549 break;
4550 case IXGBE_82599_VMDQ_4Q_MASK:
4551 gpie |= IXGBE_GPIE_VTMODE_32;
4552 break;
4553 default:
4554 gpie |= IXGBE_GPIE_VTMODE_64;
4555 break;
4556 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004557 }
4558
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004559 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00004560 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
4561 switch (adapter->hw.mac.type) {
4562 case ixgbe_mac_82599EB:
4563 gpie |= IXGBE_SDP0_GPIEN;
4564 break;
4565 case ixgbe_mac_X540:
4566 gpie |= IXGBE_EIMS_TS;
4567 break;
4568 default:
4569 break;
4570 }
4571 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004572
Alexander Duycka34bcff2010-08-19 13:39:20 +00004573 /* Enable fan failure interrupt */
4574 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004575 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004576
Don Skidmore2698b202011-04-13 07:01:52 +00004577 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004578 gpie |= IXGBE_SDP1_GPIEN;
4579 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004580 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004581
4582 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4583}
4584
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004585static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004586{
4587 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08004588 struct net_device *upper;
4589 struct list_head *iter;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004590 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004591 u32 ctrl_ext;
4592
4593 ixgbe_get_hw_control(adapter);
4594 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004595
Auke Kok9a799d72007-09-15 14:07:45 -07004596 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4597 ixgbe_configure_msix(adapter);
4598 else
4599 ixgbe_configure_msi_and_legacy(adapter);
4600
Emil Tantilovec74a472012-09-20 03:33:56 +00004601 /* enable the optics for 82599 SFP+ fiber */
4602 if (hw->mac.ops.enable_tx_laser)
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004603 hw->mac.ops.enable_tx_laser(hw);
4604
Mark Rustadc3049c82014-01-14 18:53:12 -08004605 smp_mb__before_clear_bit();
Auke Kok9a799d72007-09-15 14:07:45 -07004606 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004607 ixgbe_napi_enable_all(adapter);
4608
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004609 if (ixgbe_is_sfp(hw)) {
4610 ixgbe_sfp_link_config(adapter);
4611 } else {
4612 err = ixgbe_non_sfp_link_config(hw);
4613 if (err)
4614 e_err(probe, "link_config FAILED %d\n", err);
4615 }
4616
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004617 /* clear any pending interrupts, may auto mask */
4618 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004619 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004620
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004621 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004622 * If this adapter has a fan, check to see if we had a failure
4623 * before we enabled the interrupt.
4624 */
4625 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4626 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4627 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004628 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004629 }
4630
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004631 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004632 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004633
John Fastabend2a47fa42013-11-06 09:54:52 -08004634 /* enable any upper devices */
4635 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
4636 if (netif_is_macvlan(upper)) {
4637 struct macvlan_dev *vlan = netdev_priv(upper);
4638
4639 if (vlan->fwd_priv)
4640 netif_tx_start_all_queues(upper);
4641 }
4642 }
4643
Auke Kok9a799d72007-09-15 14:07:45 -07004644 /* bring the link up in the watchdog, this could race with our first
4645 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004646 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4647 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004648 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004649
4650 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4651 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4652 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4653 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004654}
4655
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004656void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4657{
4658 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004659 /* put off any impending NetWatchDogTimeout */
4660 adapter->netdev->trans_start = jiffies;
4661
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004662 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004663 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004664 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004665 /*
4666 * If SR-IOV enabled then wait a bit before bringing the adapter
4667 * back up to give the VFs time to respond to the reset. The
4668 * two second wait is based upon the watchdog timer cycle in
4669 * the VF driver.
4670 */
4671 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4672 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004673 ixgbe_up(adapter);
4674 clear_bit(__IXGBE_RESETTING, &adapter->state);
4675}
4676
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004677void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004678{
4679 /* hardware has been reset, we need to reload some things */
4680 ixgbe_configure(adapter);
4681
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004682 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004683}
4684
4685void ixgbe_reset(struct ixgbe_adapter *adapter)
4686{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004687 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004688 int err;
4689
Alexander Duyck70864002011-04-27 09:13:56 +00004690 /* lock SFP init bit to prevent race conditions with the watchdog */
4691 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4692 usleep_range(1000, 2000);
4693
4694 /* clear all SFP and link config related flags while holding SFP_INIT */
4695 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4696 IXGBE_FLAG2_SFP_NEEDS_RESET);
4697 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4698
Don Skidmore8ca783a2009-05-26 20:40:47 -07004699 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004700 switch (err) {
4701 case 0:
4702 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004703 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004704 break;
4705 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004706 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004707 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004708 case IXGBE_ERR_EEPROM_VERSION:
4709 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004710 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004711 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004712 "your hardware. If you are experiencing problems "
4713 "please contact your Intel or hardware "
4714 "representative who provided you with this "
4715 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004716 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004717 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004718 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004719 }
Auke Kok9a799d72007-09-15 14:07:45 -07004720
Alexander Duyck70864002011-04-27 09:13:56 +00004721 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4722
Auke Kok9a799d72007-09-15 14:07:45 -07004723 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004724 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004725
4726 /* update SAN MAC vmdq pool selection */
4727 if (hw->mac.san_mac_rar_index)
4728 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Jacob Keller1a71ab22012-08-25 03:54:19 +00004729
Jacob Keller8fecf672013-06-21 08:14:32 +00004730 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00004731 ixgbe_ptp_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004732}
4733
Auke Kok9a799d72007-09-15 14:07:45 -07004734/**
Auke Kok9a799d72007-09-15 14:07:45 -07004735 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004736 * @tx_ring: ring to be cleaned
4737 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004738static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004739{
4740 struct ixgbe_tx_buffer *tx_buffer_info;
4741 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004742 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004743
Alexander Duyck84418e32010-08-19 13:40:54 +00004744 /* ring already cleared, nothing to do */
4745 if (!tx_ring->tx_buffer_info)
4746 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004747
Alexander Duyck84418e32010-08-19 13:40:54 +00004748 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004749 for (i = 0; i < tx_ring->count; i++) {
4750 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004751 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004752 }
4753
John Fastabenddad8a3b2012-04-23 12:22:39 +00004754 netdev_tx_reset_queue(txring_txq(tx_ring));
4755
Auke Kok9a799d72007-09-15 14:07:45 -07004756 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4757 memset(tx_ring->tx_buffer_info, 0, size);
4758
4759 /* Zero out the descriptor ring */
4760 memset(tx_ring->desc, 0, tx_ring->size);
4761
4762 tx_ring->next_to_use = 0;
4763 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004764}
4765
4766/**
Auke Kok9a799d72007-09-15 14:07:45 -07004767 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4768 * @adapter: board private structure
4769 **/
4770static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4771{
4772 int i;
4773
4774 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004775 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004776}
4777
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004778/**
4779 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4780 * @adapter: board private structure
4781 **/
4782static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4783{
4784 int i;
4785
4786 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004787 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004788}
4789
Alexander Duycke4911d52011-05-11 07:18:52 +00004790static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4791{
Sasha Levinb67bfe02013-02-27 17:06:00 -08004792 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00004793 struct ixgbe_fdir_filter *filter;
4794
4795 spin_lock(&adapter->fdir_perfect_lock);
4796
Sasha Levinb67bfe02013-02-27 17:06:00 -08004797 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00004798 &adapter->fdir_filter_list, fdir_node) {
4799 hlist_del(&filter->fdir_node);
4800 kfree(filter);
4801 }
4802 adapter->fdir_filter_count = 0;
4803
4804 spin_unlock(&adapter->fdir_perfect_lock);
4805}
4806
Auke Kok9a799d72007-09-15 14:07:45 -07004807void ixgbe_down(struct ixgbe_adapter *adapter)
4808{
4809 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004810 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08004811 struct net_device *upper;
4812 struct list_head *iter;
Auke Kok9a799d72007-09-15 14:07:45 -07004813 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004814 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004815
4816 /* signal that we are down to the interrupt handler */
Mark Rustadc3049c82014-01-14 18:53:12 -08004817 if (test_and_set_bit(__IXGBE_DOWN, &adapter->state))
4818 return; /* do nothing if already down */
Auke Kok9a799d72007-09-15 14:07:45 -07004819
4820 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004821 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4822 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004823
Yi Zou2d39d572011-01-06 14:29:56 +00004824 /* disable all enabled rx queues */
4825 for (i = 0; i < adapter->num_rx_queues; i++)
4826 /* this call also flushes the previous write */
4827 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4828
Don Skidmore032b4322011-03-18 09:32:53 +00004829 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004830
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004831 netif_tx_stop_all_queues(netdev);
4832
Alexander Duyck70864002011-04-27 09:13:56 +00004833 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004834 netif_carrier_off(netdev);
4835 netif_tx_disable(netdev);
4836
John Fastabend2a47fa42013-11-06 09:54:52 -08004837 /* disable any upper devices */
4838 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
4839 if (netif_is_macvlan(upper)) {
4840 struct macvlan_dev *vlan = netdev_priv(upper);
4841
4842 if (vlan->fwd_priv) {
4843 netif_tx_stop_all_queues(upper);
4844 netif_carrier_off(upper);
4845 netif_tx_disable(upper);
4846 }
4847 }
4848 }
4849
John Fastabendc0dfb902010-04-27 02:13:39 +00004850 ixgbe_irq_disable(adapter);
4851
4852 ixgbe_napi_disable_all(adapter);
4853
Alexander Duyckd034acf2011-04-27 09:25:34 +00004854 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4855 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004856 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4857
4858 del_timer_sync(&adapter->service_timer);
4859
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004860 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004861 /* Clear EITR Select mapping */
4862 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4863
4864 /* Mark all the VFs as inactive */
4865 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004866 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004867
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004868 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004869 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004870
Auke Kok9a799d72007-09-15 14:07:45 -07004871 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004872 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004873 }
4874
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004875 /* disable transmits in the hardware now that interrupts are off */
4876 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004877 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004878 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004879 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004880
4881 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004882 switch (hw->mac.type) {
4883 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004884 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004885 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004886 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4887 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004888 break;
4889 default:
4890 break;
4891 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004892
Paul Larson6f4a0e42008-06-24 17:00:56 -07004893 if (!pci_channel_offline(adapter->pdev))
4894 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004895
Emil Tantilovec74a472012-09-20 03:33:56 +00004896 /* power down the optics for 82599 SFP+ fiber */
4897 if (hw->mac.ops.disable_tx_laser)
Don Skidmorec6ecf392010-12-03 03:31:51 +00004898 hw->mac.ops.disable_tx_laser(hw);
4899
Auke Kok9a799d72007-09-15 14:07:45 -07004900 ixgbe_clean_all_tx_rings(adapter);
4901 ixgbe_clean_all_rx_rings(adapter);
4902
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004903#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004904 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004905 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004906#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004907}
4908
Auke Kok9a799d72007-09-15 14:07:45 -07004909/**
Auke Kok9a799d72007-09-15 14:07:45 -07004910 * ixgbe_tx_timeout - Respond to a Tx Hang
4911 * @netdev: network interface device structure
4912 **/
4913static void ixgbe_tx_timeout(struct net_device *netdev)
4914{
4915 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4916
4917 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004918 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004919}
4920
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004921/**
Auke Kok9a799d72007-09-15 14:07:45 -07004922 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4923 * @adapter: board private structure to initialize
4924 *
4925 * ixgbe_sw_init initializes the Adapter private data structure.
4926 * Fields are initialized based on PCI device information and
4927 * OS network device settings (MTU size).
4928 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05004929static int ixgbe_sw_init(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004930{
4931 struct ixgbe_hw *hw = &adapter->hw;
4932 struct pci_dev *pdev = adapter->pdev;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00004933 unsigned int rss, fdir;
Jacob Kellercb6d0f52012-12-04 06:03:14 +00004934 u32 fwsm;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004935#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004936 int j;
4937 struct tc_configuration *tc;
4938#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004939
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004940 /* PCI config space info */
4941
4942 hw->vendor_id = pdev->vendor;
4943 hw->device_id = pdev->device;
4944 hw->revision_id = pdev->revision;
4945 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4946 hw->subsystem_device_id = pdev->subsystem_device;
4947
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004948 /* Set common capability flags and settings */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004949 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004950 adapter->ring_feature[RING_F_RSS].limit = rss;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004951 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4952 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004953 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
4954 adapter->atr_sample_rate = 20;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00004955 fdir = min_t(int, IXGBE_MAX_FDIR_INDICES, num_online_cpus());
4956 adapter->ring_feature[RING_F_FDIR].limit = fdir;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004957 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
4958#ifdef CONFIG_IXGBE_DCA
4959 adapter->flags |= IXGBE_FLAG_DCA_CAPABLE;
4960#endif
4961#ifdef IXGBE_FCOE
4962 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4963 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
4964#ifdef CONFIG_IXGBE_DCB
4965 /* Default traffic class to use for FCoE */
4966 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
4967#endif /* CONFIG_IXGBE_DCB */
4968#endif /* IXGBE_FCOE */
4969
4970 /* Set MAC specific capability flags and exceptions */
Alexander Duyckbd508172010-11-16 19:27:03 -08004971 switch (hw->mac.type) {
4972 case ixgbe_mac_82598EB:
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004973 adapter->flags2 &= ~IXGBE_FLAG2_RSC_CAPABLE;
4974 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
4975
Don Skidmorebf069c92009-05-07 10:39:54 +00004976 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4977 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004978
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004979 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00004980 adapter->ring_feature[RING_F_FDIR].limit = 0;
4981 adapter->atr_sample_rate = 0;
4982 adapter->fdir_pballoc = 0;
4983#ifdef IXGBE_FCOE
4984 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
4985 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
4986#ifdef CONFIG_IXGBE_DCB
4987 adapter->fcoe.up = 0;
4988#endif /* IXGBE_DCB */
4989#endif /* IXGBE_FCOE */
4990 break;
4991 case ixgbe_mac_82599EB:
4992 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4993 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08004994 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004995 case ixgbe_mac_X540:
Jacob Kellercb6d0f52012-12-04 06:03:14 +00004996 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM);
4997 if (fwsm & IXGBE_FWSM_TS_ENABLED)
4998 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08004999 break;
5000 default:
5001 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005002 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005003
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005004#ifdef IXGBE_FCOE
5005 /* FCoE support exists, always init the FCoE lock */
5006 spin_lock_init(&adapter->fcoe.lock);
5007
5008#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005009 /* n-tuple support exists, always init our spinlock */
5010 spin_lock_init(&adapter->fdir_perfect_lock);
5011
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005012#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005013 switch (hw->mac.type) {
5014 case ixgbe_mac_X540:
5015 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5016 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5017 break;
5018 default:
5019 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5020 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5021 break;
5022 }
5023
Alexander Duyck2f90b862008-11-20 20:52:10 -08005024 /* Configure DCB traffic classes */
5025 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5026 tc = &adapter->dcb_cfg.tc_config[j];
5027 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5028 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5029 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5030 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5031 tc->dcb_pfc = pfc_disabled;
5032 }
John Fastabend4de2a022011-09-27 03:52:01 +00005033
5034 /* Initialize default user to priority mapping, UPx->TC0 */
5035 tc = &adapter->dcb_cfg.tc_config[0];
5036 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5037 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5038
Alexander Duyck2f90b862008-11-20 20:52:10 -08005039 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5040 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005041 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005042 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005043 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00005044 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
5045 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08005046
5047#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005048
5049 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005050 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005051 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00005052 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005053 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5054 hw->fc.send_xon = true;
Don Skidmore73d80953d2013-07-31 02:19:24 +00005055 hw->fc.disable_fc_autoneg = ixgbe_device_supports_autoneg_fc(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07005056
Alexander Duyck99d74482012-05-09 08:09:25 +00005057#ifdef CONFIG_PCI_IOV
Jacob Keller170e8542013-11-09 04:52:32 -08005058 if (max_vfs > 0)
5059 e_dev_warn("Enabling SR-IOV VFs using the max_vfs module parameter is deprecated - please use the pci sysfs interface instead.\n");
Alexander Duyck99d74482012-05-09 08:09:25 +00005060
Jacob Keller170e8542013-11-09 04:52:32 -08005061 /* assign number of SR-IOV VFs */
5062 if (hw->mac.type != ixgbe_mac_82598EB) {
5063 if (max_vfs > 63) {
5064 adapter->num_vfs = 0;
5065 e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n");
5066 } else {
5067 adapter->num_vfs = max_vfs;
5068 }
5069 }
5070#endif /* CONFIG_PCI_IOV */
5071
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005072 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005073 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005074 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005075
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005076 /* set default ring sizes */
5077 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5078 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5079
Alexander Duyckbd198052011-06-11 01:45:08 +00005080 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005081 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005082
Auke Kok9a799d72007-09-15 14:07:45 -07005083 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005084 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005085 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005086 return -EIO;
5087 }
5088
John Fastabend2a47fa42013-11-06 09:54:52 -08005089 /* PF holds first pool slot */
5090 set_bit(0, &adapter->fwd_bitmask);
Auke Kok9a799d72007-09-15 14:07:45 -07005091 set_bit(__IXGBE_DOWN, &adapter->state);
5092
5093 return 0;
5094}
5095
5096/**
5097 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005098 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005099 *
5100 * Return 0 on success, negative on failure
5101 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005102int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005103{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005104 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005105 int orig_node = dev_to_node(dev);
5106 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07005107 int size;
5108
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005109 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005110
5111 if (tx_ring->q_vector)
5112 numa_node = tx_ring->q_vector->numa_node;
5113
5114 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005115 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005116 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005117 if (!tx_ring->tx_buffer_info)
5118 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005119
John Stultz827da442013-10-07 15:51:58 -07005120 u64_stats_init(&tx_ring->syncp);
5121
Auke Kok9a799d72007-09-15 14:07:45 -07005122 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005123 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005124 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005125
Alexander Duyckde88eee2012-02-08 07:49:59 +00005126 set_dev_node(dev, numa_node);
5127 tx_ring->desc = dma_alloc_coherent(dev,
5128 tx_ring->size,
5129 &tx_ring->dma,
5130 GFP_KERNEL);
5131 set_dev_node(dev, orig_node);
5132 if (!tx_ring->desc)
5133 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
5134 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005135 if (!tx_ring->desc)
5136 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005137
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005138 tx_ring->next_to_use = 0;
5139 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005140 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005141
5142err:
5143 vfree(tx_ring->tx_buffer_info);
5144 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005145 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005146 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005147}
5148
5149/**
Alexander Duyck69888672008-09-11 20:05:39 -07005150 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5151 * @adapter: board private structure
5152 *
5153 * If this function returns with an error, then it's possible one or
5154 * more of the rings is populated (while the rest are not). It is the
5155 * callers duty to clean those orphaned rings.
5156 *
5157 * Return 0 on success, negative on failure
5158 **/
5159static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5160{
5161 int i, err = 0;
5162
5163 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005164 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005165 if (!err)
5166 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005167
Emil Tantilov396e7992010-07-01 20:05:12 +00005168 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005169 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07005170 }
5171
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005172 return 0;
5173err_setup_tx:
5174 /* rewind the index freeing the rings as we go */
5175 while (i--)
5176 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005177 return err;
5178}
5179
5180/**
Auke Kok9a799d72007-09-15 14:07:45 -07005181 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005182 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005183 *
5184 * Returns 0 on success, negative on failure
5185 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005186int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005187{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005188 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005189 int orig_node = dev_to_node(dev);
5190 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005191 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005192
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005193 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005194
5195 if (rx_ring->q_vector)
5196 numa_node = rx_ring->q_vector->numa_node;
5197
5198 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005199 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005200 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005201 if (!rx_ring->rx_buffer_info)
5202 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005203
John Stultz827da442013-10-07 15:51:58 -07005204 u64_stats_init(&rx_ring->syncp);
5205
Auke Kok9a799d72007-09-15 14:07:45 -07005206 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005207 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5208 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005209
Alexander Duyckde88eee2012-02-08 07:49:59 +00005210 set_dev_node(dev, numa_node);
5211 rx_ring->desc = dma_alloc_coherent(dev,
5212 rx_ring->size,
5213 &rx_ring->dma,
5214 GFP_KERNEL);
5215 set_dev_node(dev, orig_node);
5216 if (!rx_ring->desc)
5217 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
5218 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005219 if (!rx_ring->desc)
5220 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005221
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005222 rx_ring->next_to_clean = 0;
5223 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005224
5225 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005226err:
5227 vfree(rx_ring->rx_buffer_info);
5228 rx_ring->rx_buffer_info = NULL;
5229 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005230 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005231}
5232
5233/**
Alexander Duyck69888672008-09-11 20:05:39 -07005234 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5235 * @adapter: board private structure
5236 *
5237 * If this function returns with an error, then it's possible one or
5238 * more of the rings is populated (while the rest are not). It is the
5239 * callers duty to clean those orphaned rings.
5240 *
5241 * Return 0 on success, negative on failure
5242 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005243static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5244{
5245 int i, err = 0;
5246
5247 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005248 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005249 if (!err)
5250 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005251
Emil Tantilov396e7992010-07-01 20:05:12 +00005252 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005253 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07005254 }
5255
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005256#ifdef IXGBE_FCOE
5257 err = ixgbe_setup_fcoe_ddp_resources(adapter);
5258 if (!err)
5259#endif
5260 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005261err_setup_rx:
5262 /* rewind the index freeing the rings as we go */
5263 while (i--)
5264 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005265 return err;
5266}
5267
5268/**
Auke Kok9a799d72007-09-15 14:07:45 -07005269 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005270 * @tx_ring: Tx descriptor ring for a specific queue
5271 *
5272 * Free all transmit software resources
5273 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005274void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005275{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005276 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005277
5278 vfree(tx_ring->tx_buffer_info);
5279 tx_ring->tx_buffer_info = NULL;
5280
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005281 /* if not set, then don't free */
5282 if (!tx_ring->desc)
5283 return;
5284
5285 dma_free_coherent(tx_ring->dev, tx_ring->size,
5286 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005287
5288 tx_ring->desc = NULL;
5289}
5290
5291/**
5292 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5293 * @adapter: board private structure
5294 *
5295 * Free all transmit software resources
5296 **/
5297static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5298{
5299 int i;
5300
5301 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005302 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005303 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005304}
5305
5306/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005307 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005308 * @rx_ring: ring to clean the resources from
5309 *
5310 * Free all receive software resources
5311 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005312void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005313{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005314 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005315
5316 vfree(rx_ring->rx_buffer_info);
5317 rx_ring->rx_buffer_info = NULL;
5318
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005319 /* if not set, then don't free */
5320 if (!rx_ring->desc)
5321 return;
5322
5323 dma_free_coherent(rx_ring->dev, rx_ring->size,
5324 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005325
5326 rx_ring->desc = NULL;
5327}
5328
5329/**
5330 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5331 * @adapter: board private structure
5332 *
5333 * Free all receive software resources
5334 **/
5335static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5336{
5337 int i;
5338
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005339#ifdef IXGBE_FCOE
5340 ixgbe_free_fcoe_ddp_resources(adapter);
5341
5342#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005343 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005344 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005345 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005346}
5347
5348/**
Auke Kok9a799d72007-09-15 14:07:45 -07005349 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5350 * @netdev: network interface device structure
5351 * @new_mtu: new value for maximum frame size
5352 *
5353 * Returns 0 on success, negative on failure
5354 **/
5355static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5356{
5357 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5358 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5359
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005360 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00005361 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5362 return -EINVAL;
5363
5364 /*
Alexander Duyck872844d2012-08-15 02:10:43 +00005365 * For 82599EB we cannot allow legacy VFs to enable their receive
5366 * paths when MTU greater than 1500 is configured. So display a
5367 * warning that legacy VFs will be disabled.
Alexander Duyck655309e2012-02-08 07:50:35 +00005368 */
5369 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
5370 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
Alexander Duyckc5604512013-01-09 08:50:42 +00005371 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
Alexander Duyck872844d2012-08-15 02:10:43 +00005372 e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005373
Emil Tantilov396e7992010-07-01 20:05:12 +00005374 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00005375
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005376 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005377 netdev->mtu = new_mtu;
5378
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005379 if (netif_running(netdev))
5380 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005381
5382 return 0;
5383}
5384
5385/**
5386 * ixgbe_open - Called when a network interface is made active
5387 * @netdev: network interface device structure
5388 *
5389 * Returns 0 on success, negative value on failure
5390 *
5391 * The open entry point is called when a network interface is made
5392 * active by the system (IFF_UP). At this point all resources needed
5393 * for transmit and receive operations are allocated, the interrupt
5394 * handler is registered with the OS, the watchdog timer is started,
5395 * and the stack is notified that the interface is ready.
5396 **/
5397static int ixgbe_open(struct net_device *netdev)
5398{
5399 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend2a47fa42013-11-06 09:54:52 -08005400 int err, queues;
Auke Kok9a799d72007-09-15 14:07:45 -07005401
Auke Kok4bebfaa2008-02-11 09:26:01 -08005402 /* disallow open during test */
5403 if (test_bit(__IXGBE_TESTING, &adapter->state))
5404 return -EBUSY;
5405
Jesse Brandeburg54386462009-04-17 20:44:27 +00005406 netif_carrier_off(netdev);
5407
Auke Kok9a799d72007-09-15 14:07:45 -07005408 /* allocate transmit descriptors */
5409 err = ixgbe_setup_all_tx_resources(adapter);
5410 if (err)
5411 goto err_setup_tx;
5412
Auke Kok9a799d72007-09-15 14:07:45 -07005413 /* allocate receive descriptors */
5414 err = ixgbe_setup_all_rx_resources(adapter);
5415 if (err)
5416 goto err_setup_rx;
5417
5418 ixgbe_configure(adapter);
5419
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005420 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005421 if (err)
5422 goto err_req_irq;
5423
Alexander Duyckac802f52012-07-12 05:52:53 +00005424 /* Notify the stack of the actual queue counts. */
John Fastabend2a47fa42013-11-06 09:54:52 -08005425 if (adapter->num_rx_pools > 1)
5426 queues = adapter->num_rx_queues_per_pool;
5427 else
5428 queues = adapter->num_tx_queues;
5429
5430 err = netif_set_real_num_tx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00005431 if (err)
5432 goto err_set_queues;
5433
John Fastabend2a47fa42013-11-06 09:54:52 -08005434 if (adapter->num_rx_pools > 1 &&
5435 adapter->num_rx_queues > IXGBE_MAX_L2A_QUEUES)
5436 queues = IXGBE_MAX_L2A_QUEUES;
5437 else
5438 queues = adapter->num_rx_queues;
5439 err = netif_set_real_num_rx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00005440 if (err)
5441 goto err_set_queues;
5442
Jacob Keller1a71ab22012-08-25 03:54:19 +00005443 ixgbe_ptp_init(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00005444
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005445 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005446
5447 return 0;
5448
Alexander Duyckac802f52012-07-12 05:52:53 +00005449err_set_queues:
5450 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005451err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005452 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005453err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005454 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005455err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07005456 ixgbe_reset(adapter);
5457
5458 return err;
5459}
5460
5461/**
5462 * ixgbe_close - Disables a network interface
5463 * @netdev: network interface device structure
5464 *
5465 * Returns 0, this is not allowed to fail
5466 *
5467 * The close entry point is called when an interface is de-activated
5468 * by the OS. The hardware is still under the drivers control, but
5469 * needs to be disabled. A global MAC reset is issued to stop the
5470 * hardware, and all transmit and receive resources are freed.
5471 **/
5472static int ixgbe_close(struct net_device *netdev)
5473{
5474 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005475
Jacob Keller1a71ab22012-08-25 03:54:19 +00005476 ixgbe_ptp_stop(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00005477
Auke Kok9a799d72007-09-15 14:07:45 -07005478 ixgbe_down(adapter);
5479 ixgbe_free_irq(adapter);
5480
Alexander Duycke4911d52011-05-11 07:18:52 +00005481 ixgbe_fdir_filter_exit(adapter);
5482
Auke Kok9a799d72007-09-15 14:07:45 -07005483 ixgbe_free_all_tx_resources(adapter);
5484 ixgbe_free_all_rx_resources(adapter);
5485
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005486 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005487
5488 return 0;
5489}
5490
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005491#ifdef CONFIG_PM
5492static int ixgbe_resume(struct pci_dev *pdev)
5493{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005494 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5495 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005496 u32 err;
5497
5498 pci_set_power_state(pdev, PCI_D0);
5499 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005500 /*
5501 * pci_restore_state clears dev->state_saved so call
5502 * pci_save_state to restore it.
5503 */
5504 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005505
5506 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005507 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005508 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005509 return err;
5510 }
5511 pci_set_master(pdev);
5512
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005513 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005514
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005515 ixgbe_reset(adapter);
5516
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005517 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5518
Alexander Duyckac802f52012-07-12 05:52:53 +00005519 rtnl_lock();
5520 err = ixgbe_init_interrupt_scheme(adapter);
5521 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005522 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00005523
5524 rtnl_unlock();
5525
5526 if (err)
5527 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005528
5529 netif_device_attach(netdev);
5530
5531 return 0;
5532}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005533#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005534
5535static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005536{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005537 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5538 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005539 struct ixgbe_hw *hw = &adapter->hw;
5540 u32 ctrl, fctrl;
5541 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005542#ifdef CONFIG_PM
5543 int retval = 0;
5544#endif
5545
5546 netif_device_detach(netdev);
5547
akepner499ab5c2013-03-13 14:54:58 +00005548 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005549 if (netif_running(netdev)) {
5550 ixgbe_down(adapter);
5551 ixgbe_free_irq(adapter);
5552 ixgbe_free_all_tx_resources(adapter);
5553 ixgbe_free_all_rx_resources(adapter);
5554 }
akepner499ab5c2013-03-13 14:54:58 +00005555 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005556
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005557 ixgbe_clear_interrupt_scheme(adapter);
5558
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005559#ifdef CONFIG_PM
5560 retval = pci_save_state(pdev);
5561 if (retval)
5562 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005563
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005564#endif
Jacob Kellerf4f10402013-06-25 07:59:23 +00005565 if (hw->mac.ops.stop_link_on_d3)
5566 hw->mac.ops.stop_link_on_d3(hw);
5567
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005568 if (wufc) {
5569 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005570
Emil Tantilovec74a472012-09-20 03:33:56 +00005571 /* enable the optics for 82599 SFP+ fiber as we can WoL */
5572 if (hw->mac.ops.enable_tx_laser)
Don Skidmorec509e752012-04-05 08:12:05 +00005573 hw->mac.ops.enable_tx_laser(hw);
5574
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005575 /* turn on all-multi mode if wake on multicast is enabled */
5576 if (wufc & IXGBE_WUFC_MC) {
5577 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5578 fctrl |= IXGBE_FCTRL_MPE;
5579 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5580 }
5581
5582 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5583 ctrl |= IXGBE_CTRL_GIO_DIS;
5584 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5585
5586 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5587 } else {
5588 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5589 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5590 }
5591
Alexander Duyckbd508172010-11-16 19:27:03 -08005592 switch (hw->mac.type) {
5593 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005594 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005595 break;
5596 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005597 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005598 pci_wake_from_d3(pdev, !!wufc);
5599 break;
5600 default:
5601 break;
5602 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005603
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005604 *enable_wake = !!wufc;
5605
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005606 ixgbe_release_hw_control(adapter);
5607
5608 pci_disable_device(pdev);
5609
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005610 return 0;
5611}
5612
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005613#ifdef CONFIG_PM
5614static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5615{
5616 int retval;
5617 bool wake;
5618
5619 retval = __ixgbe_shutdown(pdev, &wake);
5620 if (retval)
5621 return retval;
5622
5623 if (wake) {
5624 pci_prepare_to_sleep(pdev);
5625 } else {
5626 pci_wake_from_d3(pdev, false);
5627 pci_set_power_state(pdev, PCI_D3hot);
5628 }
5629
5630 return 0;
5631}
5632#endif /* CONFIG_PM */
5633
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005634static void ixgbe_shutdown(struct pci_dev *pdev)
5635{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005636 bool wake;
5637
5638 __ixgbe_shutdown(pdev, &wake);
5639
5640 if (system_state == SYSTEM_POWER_OFF) {
5641 pci_wake_from_d3(pdev, wake);
5642 pci_set_power_state(pdev, PCI_D3hot);
5643 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005644}
5645
5646/**
Auke Kok9a799d72007-09-15 14:07:45 -07005647 * ixgbe_update_stats - Update the board statistics counters.
5648 * @adapter: board private structure
5649 **/
5650void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5651{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005652 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005653 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005654 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005655 u64 total_mpc = 0;
5656 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005657 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5658 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005659 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005660
Don Skidmored08935c2010-06-11 13:20:29 +00005661 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5662 test_bit(__IXGBE_RESETTING, &adapter->state))
5663 return;
5664
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005665 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005666 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005667 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005668 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005669 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5670 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005671 }
5672 adapter->rsc_total_count = rsc_count;
5673 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005674 }
5675
Alexander Duyck5b7da512010-11-16 19:26:50 -08005676 for (i = 0; i < adapter->num_rx_queues; i++) {
5677 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5678 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5679 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5680 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005681 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005682 bytes += rx_ring->stats.bytes;
5683 packets += rx_ring->stats.packets;
5684 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005685 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005686 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5687 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005688 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005689 netdev->stats.rx_bytes = bytes;
5690 netdev->stats.rx_packets = packets;
5691
5692 bytes = 0;
5693 packets = 0;
5694 /* gather some stats to the adapter struct that are per queue */
5695 for (i = 0; i < adapter->num_tx_queues; i++) {
5696 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5697 restart_queue += tx_ring->tx_stats.restart_queue;
5698 tx_busy += tx_ring->tx_stats.tx_busy;
5699 bytes += tx_ring->stats.bytes;
5700 packets += tx_ring->stats.packets;
5701 }
5702 adapter->restart_queue = restart_queue;
5703 adapter->tx_busy = tx_busy;
5704 netdev->stats.tx_bytes = bytes;
5705 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005706
Joe Perches7ca647b2010-09-07 21:35:40 +00005707 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005708
5709 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005710 for (i = 0; i < 8; i++) {
5711 /* for packet buffers not used, the register should read 0 */
5712 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5713 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005714 hwstats->mpc[i] += mpc;
5715 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005716 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5717 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005718 switch (hw->mac.type) {
5719 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005720 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5721 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5722 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005723 hwstats->pxonrxc[i] +=
5724 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005725 break;
5726 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005727 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005728 hwstats->pxonrxc[i] +=
5729 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005730 break;
5731 default:
5732 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005733 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005734 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005735
5736 /*16 register reads */
5737 for (i = 0; i < 16; i++) {
5738 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5739 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5740 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5741 (hw->mac.type == ixgbe_mac_X540)) {
5742 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5743 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5744 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5745 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5746 }
5747 }
5748
Joe Perches7ca647b2010-09-07 21:35:40 +00005749 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005750 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005751 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005752
John Fastabendc84d3242010-11-16 19:27:12 -08005753 ixgbe_update_xoff_received(adapter);
5754
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005755 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005756 switch (hw->mac.type) {
5757 case ixgbe_mac_82598EB:
5758 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005759 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5760 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5761 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5762 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005763 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005764 /* OS2BMC stats are X540 only*/
5765 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5766 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5767 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5768 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5769 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005770 for (i = 0; i < 16; i++)
5771 adapter->hw_rx_no_dma_resources +=
5772 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005773 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005774 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005775 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005776 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005777 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005778 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005779 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005780 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5781 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005782#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005783 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5784 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5785 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5786 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5787 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5788 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005789 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005790 if (adapter->fcoe.ddp_pool) {
5791 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5792 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5793 unsigned int cpu;
5794 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005795 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005796 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5797 noddp += ddp_pool->noddp;
5798 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005799 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005800 hwstats->fcoe_noddp = noddp;
5801 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005802 }
Yi Zou6d455222009-05-13 13:12:16 +00005803#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005804 break;
5805 default:
5806 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005807 }
Auke Kok9a799d72007-09-15 14:07:45 -07005808 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005809 hwstats->bprc += bprc;
5810 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005811 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005812 hwstats->mprc -= bprc;
5813 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5814 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5815 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5816 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5817 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5818 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5819 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5820 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005821 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005822 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005823 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005824 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005825 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5826 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005827 /*
5828 * 82598 errata - tx of flow control packets is included in tx counters
5829 */
5830 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005831 hwstats->gptc -= xon_off_tot;
5832 hwstats->mptc -= xon_off_tot;
5833 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5834 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5835 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5836 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5837 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5838 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5839 hwstats->ptc64 -= xon_off_tot;
5840 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5841 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5842 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5843 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5844 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5845 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005846
5847 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005848 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005849
5850 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005851 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005852 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005853 netdev->stats.rx_length_errors = hwstats->rlec;
5854 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005855 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005856}
5857
5858/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005859 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005860 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005861 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005862static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005863{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005864 struct ixgbe_hw *hw = &adapter->hw;
5865 int i;
5866
Alexander Duyckd034acf2011-04-27 09:25:34 +00005867 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5868 return;
5869
5870 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5871
5872 /* if interface is down do nothing */
5873 if (test_bit(__IXGBE_DOWN, &adapter->state))
5874 return;
5875
5876 /* do nothing if we are not using signature filters */
5877 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5878 return;
5879
5880 adapter->fdir_overflow++;
5881
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005882 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5883 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005884 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005885 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005886 /* re-enable flow director interrupts */
5887 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005888 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005889 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005890 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005891 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005892}
5893
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005894/**
5895 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005896 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005897 *
5898 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005899 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005900 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005901 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005902 */
5903static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5904{
Auke Kok9a799d72007-09-15 14:07:45 -07005905 struct ixgbe_hw *hw = &adapter->hw;
5906 u64 eics = 0;
5907 int i;
5908
Mark Rustad09f40ae2014-01-14 18:53:11 -08005909 /* If we're down, removing or resetting, just bail */
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005910 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08005911 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005912 test_bit(__IXGBE_RESETTING, &adapter->state))
5913 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005914
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005915 /* Force detection of hung controller */
5916 if (netif_carrier_ok(adapter->netdev)) {
5917 for (i = 0; i < adapter->num_tx_queues; i++)
5918 set_check_for_tx_hang(adapter->tx_ring[i]);
5919 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005920
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005921 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005922 /*
5923 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005924 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005925 * would set *both* EIMS and EICS for any bit in EIAM
5926 */
5927 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5928 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005929 } else {
5930 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005931 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005932 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005933 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005934 eics |= ((u64)1 << i);
5935 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005936 }
5937
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005938 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005939 ixgbe_irq_rearm_queues(adapter, eics);
5940
Alexander Duyckfe49f042009-06-04 16:00:09 +00005941}
5942
5943/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005944 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005945 * @adapter: pointer to the device adapter structure
5946 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005947 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005948static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005949{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005950 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005951 u32 link_speed = adapter->link_speed;
5952 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005953 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005954
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005955 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5956 return;
5957
5958 if (hw->mac.ops.check_link) {
5959 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005960 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005961 /* always assume link is up, if no check link function */
5962 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5963 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005964 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005965
5966 if (adapter->ixgbe_ieee_pfc)
5967 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5968
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005969 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005970 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005971 ixgbe_set_rx_drop_en(adapter);
5972 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005973
5974 if (link_up ||
5975 time_after(jiffies, (adapter->link_check_timeout +
5976 IXGBE_TRY_LINK_TIMEOUT))) {
5977 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5978 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5979 IXGBE_WRITE_FLUSH(hw);
5980 }
5981
5982 adapter->link_up = link_up;
5983 adapter->link_speed = link_speed;
5984}
5985
Alexander Duyck107d3012012-10-02 00:17:03 +00005986static void ixgbe_update_default_up(struct ixgbe_adapter *adapter)
5987{
5988#ifdef CONFIG_IXGBE_DCB
5989 struct net_device *netdev = adapter->netdev;
5990 struct dcb_app app = {
5991 .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE,
5992 .protocol = 0,
5993 };
5994 u8 up = 0;
5995
5996 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE)
5997 up = dcb_ieee_getapp_mask(netdev, &app);
5998
5999 adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0;
6000#endif
6001}
6002
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006003/**
6004 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6005 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006006 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006007 **/
6008static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6009{
6010 struct net_device *netdev = adapter->netdev;
6011 struct ixgbe_hw *hw = &adapter->hw;
6012 u32 link_speed = adapter->link_speed;
6013 bool flow_rx, flow_tx;
6014
6015 /* only continue if link was previously down */
6016 if (netif_carrier_ok(netdev))
6017 return;
6018
6019 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6020
6021 switch (hw->mac.type) {
6022 case ixgbe_mac_82598EB: {
6023 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6024 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6025 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6026 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6027 }
6028 break;
6029 case ixgbe_mac_X540:
6030 case ixgbe_mac_82599EB: {
6031 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6032 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6033 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6034 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6035 }
6036 break;
6037 default:
6038 flow_tx = false;
6039 flow_rx = false;
6040 break;
6041 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006042
Jacob Keller6cb562d2012-12-05 07:24:41 +00006043 adapter->last_rx_ptp_check = jiffies;
6044
Jacob Keller8fecf672013-06-21 08:14:32 +00006045 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006046 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006047
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006048 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6049 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6050 "10 Gbps" :
6051 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6052 "1 Gbps" :
6053 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6054 "100 Mbps" :
6055 "unknown speed"))),
6056 ((flow_rx && flow_tx) ? "RX/TX" :
6057 (flow_rx ? "RX" :
6058 (flow_tx ? "TX" : "None"))));
6059
6060 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006061 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006062
Alexander Duyck107d3012012-10-02 00:17:03 +00006063 /* update the default user priority for VFs */
6064 ixgbe_update_default_up(adapter);
6065
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006066 /* ping all the active vfs to let them know link has changed */
6067 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006068}
6069
6070/**
6071 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6072 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006073 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006074 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00006075static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006076{
6077 struct net_device *netdev = adapter->netdev;
6078 struct ixgbe_hw *hw = &adapter->hw;
6079
6080 adapter->link_up = false;
6081 adapter->link_speed = 0;
6082
6083 /* only continue if link was up previously */
6084 if (!netif_carrier_ok(netdev))
6085 return;
6086
6087 /* poll for SFP+ cable when link is down */
6088 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6089 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6090
Jacob Keller8fecf672013-06-21 08:14:32 +00006091 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006092 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006093
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006094 e_info(drv, "NIC Link is Down\n");
6095 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006096
6097 /* ping all the active vfs to let them know link has changed */
6098 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006099}
6100
6101/**
6102 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006103 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006104 **/
6105static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6106{
6107 int i;
6108 int some_tx_pending = 0;
6109
6110 if (!netif_carrier_ok(adapter->netdev)) {
6111 for (i = 0; i < adapter->num_tx_queues; i++) {
6112 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6113 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6114 some_tx_pending = 1;
6115 break;
6116 }
6117 }
6118
6119 if (some_tx_pending) {
6120 /* We've lost link, so the controller stops DMA,
6121 * but we've got queued Tx work that's never going
6122 * to get done, so reset controller to flush Tx.
6123 * (Do the reset outside of interrupt context).
6124 */
Jacob Keller12ff3f32012-12-01 07:57:17 +00006125 e_warn(drv, "initiating reset to clear Tx work after link loss\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006126 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006127 }
6128 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006129}
6130
Greg Rosea985b6c32010-11-18 03:02:52 +00006131static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6132{
6133 u32 ssvpc;
6134
Greg Rose0584d992012-08-08 00:00:58 +00006135 /* Do not perform spoof check for 82598 or if not in IOV mode */
6136 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
6137 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00006138 return;
6139
6140 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6141
6142 /*
6143 * ssvpc register is cleared on read, if zero then no
6144 * spoofed packets in the last interval.
6145 */
6146 if (!ssvpc)
6147 return;
6148
Emil Tantilovd6ea0752012-08-08 06:28:37 +00006149 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00006150}
6151
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006152/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006153 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006154 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006155 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006156static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006157{
Mark Rustad09f40ae2014-01-14 18:53:11 -08006158 /* if interface is down, removing or resetting, do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006159 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006160 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Emil Tantilov7edebf92011-08-27 07:18:37 +00006161 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006162 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006163
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006164 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006165
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006166 if (adapter->link_up)
6167 ixgbe_watchdog_link_is_up(adapter);
6168 else
6169 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006170
Greg Rosea985b6c32010-11-18 03:02:52 +00006171 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006172 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006173
6174 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006175}
6176
Alexander Duyck70864002011-04-27 09:13:56 +00006177/**
6178 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006179 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00006180 **/
6181static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6182{
6183 struct ixgbe_hw *hw = &adapter->hw;
6184 s32 err;
6185
6186 /* not searching for SFP so there is nothing to do here */
6187 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6188 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6189 return;
6190
6191 /* someone else is in init, wait until next service event */
6192 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6193 return;
6194
6195 err = hw->phy.ops.identify_sfp(hw);
6196 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6197 goto sfp_out;
6198
6199 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6200 /* If no cable is present, then we need to reset
6201 * the next time we find a good cable. */
6202 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6203 }
6204
6205 /* exit on error */
6206 if (err)
6207 goto sfp_out;
6208
6209 /* exit if reset not needed */
6210 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6211 goto sfp_out;
6212
6213 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6214
6215 /*
6216 * A module may be identified correctly, but the EEPROM may not have
6217 * support for that module. setup_sfp() will fail in that case, so
6218 * we should not allow that module to load.
6219 */
6220 if (hw->mac.type == ixgbe_mac_82598EB)
6221 err = hw->phy.ops.reset(hw);
6222 else
6223 err = hw->mac.ops.setup_sfp(hw);
6224
6225 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6226 goto sfp_out;
6227
6228 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6229 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6230
6231sfp_out:
6232 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6233
6234 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6235 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6236 e_dev_err("failed to initialize because an unsupported "
6237 "SFP+ module type was detected.\n");
6238 e_dev_err("Reload the driver after installing a "
6239 "supported module.\n");
6240 unregister_netdev(adapter->netdev);
6241 }
6242}
6243
6244/**
6245 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006246 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00006247 **/
6248static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6249{
6250 struct ixgbe_hw *hw = &adapter->hw;
Josh Hay3d292262012-12-15 03:28:19 +00006251 u32 speed;
6252 bool autoneg = false;
Alexander Duyck70864002011-04-27 09:13:56 +00006253
6254 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6255 return;
6256
6257 /* someone else is in init, wait until next service event */
6258 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6259 return;
6260
6261 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6262
Josh Hay3d292262012-12-15 03:28:19 +00006263 speed = hw->phy.autoneg_advertised;
Emil Tantiloved33ff62013-08-30 07:55:24 +00006264 if ((!speed) && (hw->mac.ops.get_link_capabilities)) {
Josh Hay3d292262012-12-15 03:28:19 +00006265 hw->mac.ops.get_link_capabilities(hw, &speed, &autoneg);
Emil Tantiloved33ff62013-08-30 07:55:24 +00006266
6267 /* setup the highest link when no autoneg */
6268 if (!autoneg) {
6269 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
6270 speed = IXGBE_LINK_SPEED_10GB_FULL;
6271 }
6272 }
6273
Alexander Duyck70864002011-04-27 09:13:56 +00006274 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00006275 hw->mac.ops.setup_link(hw, speed, true);
Alexander Duyck70864002011-04-27 09:13:56 +00006276
6277 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6278 adapter->link_check_timeout = jiffies;
6279 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6280}
6281
Greg Rose83c61fa2011-09-07 05:59:35 +00006282#ifdef CONFIG_PCI_IOV
6283static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6284{
6285 int vf;
6286 struct ixgbe_hw *hw = &adapter->hw;
6287 struct net_device *netdev = adapter->netdev;
6288 u32 gpc;
6289 u32 ciaa, ciad;
6290
6291 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6292 if (gpc) /* If incrementing then no need for the check below */
6293 return;
6294 /*
6295 * Check to see if a bad DMA write target from an errant or
6296 * malicious VF has caused a PCIe error. If so then we can
6297 * issue a VFLR to the offending VF(s) and then resume without
6298 * requesting a full slot reset.
6299 */
6300
6301 for (vf = 0; vf < adapter->num_vfs; vf++) {
6302 ciaa = (vf << 16) | 0x80000000;
6303 /* 32 bit read so align, we really want status at offset 6 */
6304 ciaa |= PCI_COMMAND;
6305 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6306 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
6307 ciaa &= 0x7FFFFFFF;
6308 /* disable debug mode asap after reading data */
6309 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6310 /* Get the upper 16 bits which will be the PCI status reg */
6311 ciad >>= 16;
6312 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
6313 netdev_err(netdev, "VF %d Hung DMA\n", vf);
6314 /* Issue VFLR */
6315 ciaa = (vf << 16) | 0x80000000;
6316 ciaa |= 0xA8;
6317 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6318 ciad = 0x00008000; /* VFLR */
6319 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
6320 ciaa &= 0x7FFFFFFF;
6321 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6322 }
6323 }
6324}
6325
6326#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006327/**
6328 * ixgbe_service_timer - Timer Call-back
6329 * @data: pointer to adapter cast into an unsigned long
6330 **/
6331static void ixgbe_service_timer(unsigned long data)
6332{
6333 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6334 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00006335 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00006336
6337 /* poll faster when waiting for link */
6338 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6339 next_event_offset = HZ / 10;
6340 else
6341 next_event_offset = HZ * 2;
6342
Greg Rose83c61fa2011-09-07 05:59:35 +00006343#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00006344 /*
6345 * don't bother with SR-IOV VF DMA hang check if there are
6346 * no VFs or the link is down
6347 */
6348 if (!adapter->num_vfs ||
6349 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6350 goto normal_timer_service;
6351
6352 /* If we have VFs allocated then we must check for DMA hangs */
6353 ixgbe_check_for_bad_vf(adapter);
6354 next_event_offset = HZ / 50;
6355 adapter->timer_event_accumulator++;
6356
6357 if (adapter->timer_event_accumulator >= 100)
6358 adapter->timer_event_accumulator = 0;
6359 else
6360 ready = false;
6361
6362normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00006363#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006364 /* Reset the timer */
6365 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6366
Greg Rose83c61fa2011-09-07 05:59:35 +00006367 if (ready)
6368 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006369}
6370
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006371static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6372{
6373 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6374 return;
6375
6376 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6377
Mark Rustad09f40ae2014-01-14 18:53:11 -08006378 /* If we're already down, removing or resetting, just bail */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006379 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006380 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006381 test_bit(__IXGBE_RESETTING, &adapter->state))
6382 return;
6383
6384 ixgbe_dump(adapter);
6385 netdev_err(adapter->netdev, "Reset adapter\n");
6386 adapter->tx_timeout_count++;
6387
6388 ixgbe_reinit_locked(adapter);
6389}
6390
Alexander Duyck70864002011-04-27 09:13:56 +00006391/**
6392 * ixgbe_service_task - manages and runs subtasks
6393 * @work: pointer to work_struct containing our data
6394 **/
6395static void ixgbe_service_task(struct work_struct *work)
6396{
6397 struct ixgbe_adapter *adapter = container_of(work,
6398 struct ixgbe_adapter,
6399 service_task);
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006400 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006401 ixgbe_sfp_detection_subtask(adapter);
6402 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006403 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006404 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006405 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006406 ixgbe_check_hang_subtask(adapter);
Jacob Keller891dc082012-12-05 07:24:46 +00006407
Jacob Keller8fecf672013-06-21 08:14:32 +00006408 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) {
Jacob Keller891dc082012-12-05 07:24:46 +00006409 ixgbe_ptp_overflow_check(adapter);
6410 ixgbe_ptp_rx_hang(adapter);
6411 }
Alexander Duyck70864002011-04-27 09:13:56 +00006412
6413 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006414}
6415
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006416static int ixgbe_tso(struct ixgbe_ring *tx_ring,
6417 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006418 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00006419{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006420 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00006421 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006422 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006423
Alexander Duyck8f4fbb92012-10-30 06:01:40 +00006424 if (skb->ip_summed != CHECKSUM_PARTIAL)
6425 return 0;
6426
Alexander Duyck897ab152011-05-27 05:31:47 +00006427 if (!skb_is_gso(skb))
6428 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006429
Alexander Duyck897ab152011-05-27 05:31:47 +00006430 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006431 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00006432 if (err)
6433 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006434 }
6435
Alexander Duyck897ab152011-05-27 05:31:47 +00006436 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6437 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6438
Alexander Duyck244e27a2012-02-08 07:51:11 +00006439 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00006440 struct iphdr *iph = ip_hdr(skb);
6441 iph->tot_len = 0;
6442 iph->check = 0;
6443 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6444 iph->daddr, 0,
6445 IPPROTO_TCP,
6446 0);
6447 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006448 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
6449 IXGBE_TX_FLAGS_CSUM |
6450 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00006451 } else if (skb_is_gso_v6(skb)) {
6452 ipv6_hdr(skb)->payload_len = 0;
6453 tcp_hdr(skb)->check =
6454 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6455 &ipv6_hdr(skb)->daddr,
6456 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00006457 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
6458 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00006459 }
6460
Alexander Duyck091a6242012-02-08 07:51:01 +00006461 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00006462 l4len = tcp_hdrlen(skb);
6463 *hdr_len = skb_transport_offset(skb) + l4len;
6464
Alexander Duyck091a6242012-02-08 07:51:01 +00006465 /* update gso size and bytecount with header size */
6466 first->gso_segs = skb_shinfo(skb)->gso_segs;
6467 first->bytecount += (first->gso_segs - 1) * *hdr_len;
6468
Alexander Duyckc44f5f52012-10-30 06:01:45 +00006469 /* mss_l4len_id: use 0 as index for TSO */
Alexander Duyck897ab152011-05-27 05:31:47 +00006470 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6471 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +00006472
6473 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6474 vlan_macip_lens = skb_network_header_len(skb);
6475 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006476 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006477
6478 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006479 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00006480
6481 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006482}
6483
Alexander Duyck244e27a2012-02-08 07:51:11 +00006484static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
6485 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07006486{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006487 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00006488 u32 vlan_macip_lens = 0;
6489 u32 mss_l4len_idx = 0;
6490 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006491
Alexander Duyck897ab152011-05-27 05:31:47 +00006492 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck472148c2012-11-07 02:34:28 +00006493 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6494 !(first->tx_flags & IXGBE_TX_FLAGS_CC))
6495 return;
Alexander Duyck897ab152011-05-27 05:31:47 +00006496 } else {
6497 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006498 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00006499 case __constant_htons(ETH_P_IP):
6500 vlan_macip_lens |= skb_network_header_len(skb);
6501 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6502 l4_hdr = ip_hdr(skb)->protocol;
6503 break;
6504 case __constant_htons(ETH_P_IPV6):
6505 vlan_macip_lens |= skb_network_header_len(skb);
6506 l4_hdr = ipv6_hdr(skb)->nexthdr;
6507 break;
6508 default:
6509 if (unlikely(net_ratelimit())) {
6510 dev_warn(tx_ring->dev,
6511 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00006512 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00006513 }
6514 break;
6515 }
Auke Kok9a799d72007-09-15 14:07:45 -07006516
Alexander Duyck897ab152011-05-27 05:31:47 +00006517 switch (l4_hdr) {
6518 case IPPROTO_TCP:
6519 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6520 mss_l4len_idx = tcp_hdrlen(skb) <<
6521 IXGBE_ADVTXD_L4LEN_SHIFT;
6522 break;
6523 case IPPROTO_SCTP:
6524 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6525 mss_l4len_idx = sizeof(struct sctphdr) <<
6526 IXGBE_ADVTXD_L4LEN_SHIFT;
6527 break;
6528 case IPPROTO_UDP:
6529 mss_l4len_idx = sizeof(struct udphdr) <<
6530 IXGBE_ADVTXD_L4LEN_SHIFT;
6531 break;
6532 default:
6533 if (unlikely(net_ratelimit())) {
6534 dev_warn(tx_ring->dev,
6535 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00006536 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00006537 }
6538 break;
6539 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00006540
6541 /* update TX checksum flag */
6542 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006543 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006544
Alexander Duyck244e27a2012-02-08 07:51:11 +00006545 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00006546 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006547 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006548
6549 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6550 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07006551}
6552
Alexander Duyck472148c2012-11-07 02:34:28 +00006553#define IXGBE_SET_FLAG(_input, _flag, _result) \
6554 ((_flag <= _result) ? \
6555 ((u32)(_input & _flag) * (_result / _flag)) : \
6556 ((u32)(_input & _flag) / (_flag / _result)))
6557
6558static u32 ixgbe_tx_cmd_type(struct sk_buff *skb, u32 tx_flags)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006559{
6560 /* set type for advanced descriptor with frame checksum insertion */
Alexander Duyck472148c2012-11-07 02:34:28 +00006561 u32 cmd_type = IXGBE_ADVTXD_DTYP_DATA |
6562 IXGBE_ADVTXD_DCMD_DEXT |
6563 IXGBE_ADVTXD_DCMD_IFCS;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006564
6565 /* set HW vlan bit if vlan is present */
Alexander Duyck472148c2012-11-07 02:34:28 +00006566 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_HW_VLAN,
6567 IXGBE_ADVTXD_DCMD_VLE);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006568
Alexander Duyckd3d00232011-07-15 02:31:25 +00006569 /* set segmentation enable bits for TSO/FSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00006570 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSO,
6571 IXGBE_ADVTXD_DCMD_TSE);
6572
6573 /* set timestamp bit if present */
6574 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSTAMP,
6575 IXGBE_ADVTXD_MAC_TSTAMP);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006576
Alexander Duyck62748b72012-07-20 08:09:01 +00006577 /* insert frame checksum */
Alexander Duyck472148c2012-11-07 02:34:28 +00006578 cmd_type ^= IXGBE_SET_FLAG(skb->no_fcs, 1, IXGBE_ADVTXD_DCMD_IFCS);
Alexander Duyck62748b72012-07-20 08:09:01 +00006579
Alexander Duyckd3d00232011-07-15 02:31:25 +00006580 return cmd_type;
6581}
6582
Alexander Duyck729739b2012-02-08 07:51:06 +00006583static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
6584 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006585{
Alexander Duyck472148c2012-11-07 02:34:28 +00006586 u32 olinfo_status = paylen << IXGBE_ADVTXD_PAYLEN_SHIFT;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006587
6588 /* enable L4 checksum for TSO and TX checksum offload */
Alexander Duyck472148c2012-11-07 02:34:28 +00006589 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
6590 IXGBE_TX_FLAGS_CSUM,
6591 IXGBE_ADVTXD_POPTS_TXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006592
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006593 /* enble IPv4 checksum for TSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00006594 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
6595 IXGBE_TX_FLAGS_IPV4,
6596 IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006597
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006598 /*
6599 * Check Context must be set if Tx switch is enabled, which it
6600 * always is for case where virtual functions are running
6601 */
Alexander Duyck472148c2012-11-07 02:34:28 +00006602 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
6603 IXGBE_TX_FLAGS_CC,
6604 IXGBE_ADVTXD_CC);
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006605
Alexander Duyck472148c2012-11-07 02:34:28 +00006606 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006607}
6608
6609#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6610 IXGBE_TXD_CMD_RS)
6611
6612static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006613 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006614 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006615{
Alexander Duyck729739b2012-02-08 07:51:06 +00006616 struct sk_buff *skb = first->skb;
6617 struct ixgbe_tx_buffer *tx_buffer;
6618 union ixgbe_adv_tx_desc *tx_desc;
Alexander Duyckec718252012-10-30 06:01:55 +00006619 struct skb_frag_struct *frag;
6620 dma_addr_t dma;
6621 unsigned int data_len, size;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006622 u32 tx_flags = first->tx_flags;
Alexander Duyck472148c2012-11-07 02:34:28 +00006623 u32 cmd_type = ixgbe_tx_cmd_type(skb, tx_flags);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006624 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006625
Alexander Duyck729739b2012-02-08 07:51:06 +00006626 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6627
Alexander Duyckec718252012-10-30 06:01:55 +00006628 ixgbe_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len);
6629
6630 size = skb_headlen(skb);
6631 data_len = skb->data_len;
Alexander Duyck729739b2012-02-08 07:51:06 +00006632
Alexander Duyckd3d00232011-07-15 02:31:25 +00006633#ifdef IXGBE_FCOE
6634 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006635 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006636 size -= sizeof(struct fcoe_crc_eof) - data_len;
6637 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006638 } else {
6639 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006640 }
Auke Kok9a799d72007-09-15 14:07:45 -07006641 }
6642
Alexander Duyckd3d00232011-07-15 02:31:25 +00006643#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006644 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006645
Alexander Duyckec718252012-10-30 06:01:55 +00006646 tx_buffer = first;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006647
Alexander Duyckec718252012-10-30 06:01:55 +00006648 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
6649 if (dma_mapping_error(tx_ring->dev, dma))
6650 goto dma_error;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006651
Alexander Duyckec718252012-10-30 06:01:55 +00006652 /* record length, and DMA address */
6653 dma_unmap_len_set(tx_buffer, len, size);
6654 dma_unmap_addr_set(tx_buffer, dma, dma);
6655
6656 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6657
Alexander Duyck729739b2012-02-08 07:51:06 +00006658 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006659 tx_desc->read.cmd_type_len =
Alexander Duyck472148c2012-11-07 02:34:28 +00006660 cpu_to_le32(cmd_type ^ IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006661
Alexander Duyckd3d00232011-07-15 02:31:25 +00006662 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006663 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006664 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006665 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006666 i = 0;
6667 }
Alexander Duyckec718252012-10-30 06:01:55 +00006668 tx_desc->read.olinfo_status = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006669
6670 dma += IXGBE_MAX_DATA_PER_TXD;
6671 size -= IXGBE_MAX_DATA_PER_TXD;
6672
6673 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006674 }
6675
Alexander Duyck729739b2012-02-08 07:51:06 +00006676 if (likely(!data_len))
6677 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006678
Alexander Duyck472148c2012-11-07 02:34:28 +00006679 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type ^ size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006680
Alexander Duyck729739b2012-02-08 07:51:06 +00006681 i++;
6682 tx_desc++;
6683 if (i == tx_ring->count) {
6684 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6685 i = 0;
6686 }
Alexander Duyckec718252012-10-30 06:01:55 +00006687 tx_desc->read.olinfo_status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006688
Alexander Duyckd3d00232011-07-15 02:31:25 +00006689#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006690 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006691#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006692 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006693#endif
6694 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006695
Alexander Duyck729739b2012-02-08 07:51:06 +00006696 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6697 DMA_TO_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07006698
Alexander Duyck729739b2012-02-08 07:51:06 +00006699 tx_buffer = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -07006700 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006701
Alexander Duyck729739b2012-02-08 07:51:06 +00006702 /* write last descriptor with RS and EOP bits */
Alexander Duyck472148c2012-11-07 02:34:28 +00006703 cmd_type |= size | IXGBE_TXD_CMD;
6704 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006705
Alexander Duyck091a6242012-02-08 07:51:01 +00006706 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006707
Alexander Duyckd3d00232011-07-15 02:31:25 +00006708 /* set the timestamp */
6709 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006710
6711 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006712 * Force memory writes to complete before letting h/w know there
6713 * are new descriptors to fetch. (Only applicable for weak-ordered
6714 * memory model archs, such as IA-64).
6715 *
6716 * We also need this memory barrier to make certain all of the
6717 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006718 */
6719 wmb();
6720
Alexander Duyckd3d00232011-07-15 02:31:25 +00006721 /* set next_to_watch value indicating a packet is present */
6722 first->next_to_watch = tx_desc;
6723
Alexander Duyck729739b2012-02-08 07:51:06 +00006724 i++;
6725 if (i == tx_ring->count)
6726 i = 0;
6727
6728 tx_ring->next_to_use = i;
6729
Alexander Duyckd3d00232011-07-15 02:31:25 +00006730 /* notify HW of packet */
Mark Rustad84227bc2014-01-14 18:53:13 -08006731 ixgbe_write_tail(tx_ring, i);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006732
6733 return;
6734dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006735 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006736
6737 /* clear dma mappings for failed tx_buffer_info map */
6738 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006739 tx_buffer = &tx_ring->tx_buffer_info[i];
6740 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6741 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006742 break;
6743 if (i == 0)
6744 i = tx_ring->count;
6745 i--;
6746 }
6747
Alexander Duyckd3d00232011-07-15 02:31:25 +00006748 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006749}
6750
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006751static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006752 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006753{
Alexander Duyck69830522011-01-06 14:29:58 +00006754 struct ixgbe_q_vector *q_vector = ring->q_vector;
6755 union ixgbe_atr_hash_dword input = { .dword = 0 };
6756 union ixgbe_atr_hash_dword common = { .dword = 0 };
6757 union {
6758 unsigned char *network;
6759 struct iphdr *ipv4;
6760 struct ipv6hdr *ipv6;
6761 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006762 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006763 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006764
Alexander Duyck69830522011-01-06 14:29:58 +00006765 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6766 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006767 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006768
Alexander Duyck69830522011-01-06 14:29:58 +00006769 /* do nothing if sampling is disabled */
6770 if (!ring->atr_sample_rate)
6771 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006772
Alexander Duyck69830522011-01-06 14:29:58 +00006773 ring->atr_count++;
6774
6775 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006776 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006777
6778 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006779 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006780 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006781 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006782 hdr.ipv4->protocol != IPPROTO_TCP))
6783 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006784
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006785 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006786
Alexander Duyck66f32a82011-06-29 05:43:22 +00006787 /* skip this packet since it is invalid or the socket is closing */
6788 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006789 return;
6790
6791 /* sample on all syn packets or once every atr sample count */
6792 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6793 return;
6794
6795 /* reset sample count */
6796 ring->atr_count = 0;
6797
Alexander Duyck244e27a2012-02-08 07:51:11 +00006798 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006799
6800 /*
6801 * src and dst are inverted, think how the receiver sees them
6802 *
6803 * The input is broken into two sections, a non-compressed section
6804 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6805 * is XORed together and stored in the compressed dword.
6806 */
6807 input.formatted.vlan_id = vlan_id;
6808
6809 /*
6810 * since src port and flex bytes occupy the same word XOR them together
6811 * and write the value to source port portion of compressed dword
6812 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006813 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006814 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6815 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006816 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006817 common.port.dst ^= th->source;
6818
Alexander Duyck244e27a2012-02-08 07:51:11 +00006819 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006820 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6821 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6822 } else {
6823 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6824 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6825 hdr.ipv6->saddr.s6_addr32[1] ^
6826 hdr.ipv6->saddr.s6_addr32[2] ^
6827 hdr.ipv6->saddr.s6_addr32[3] ^
6828 hdr.ipv6->daddr.s6_addr32[0] ^
6829 hdr.ipv6->daddr.s6_addr32[1] ^
6830 hdr.ipv6->daddr.s6_addr32[2] ^
6831 hdr.ipv6->daddr.s6_addr32[3];
6832 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006833
6834 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006835 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6836 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006837}
6838
Alexander Duyck63544e92011-05-27 05:31:42 +00006839static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006840{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006841 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006842 /* Herbert's original patch had:
6843 * smp_mb__after_netif_stop_queue();
6844 * but since that doesn't exist yet, just open code it. */
6845 smp_mb();
6846
6847 /* We need to check again in a case another CPU has just
6848 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006849 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006850 return -EBUSY;
6851
6852 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006853 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006854 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006855 return 0;
6856}
6857
Alexander Duyck82d4e462011-06-11 01:44:58 +00006858static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006859{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006860 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006861 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006862 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006863}
6864
Jason Wangf663dd92014-01-10 16:18:26 +08006865static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb,
6866 void *accel_priv)
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006867{
Jason Wangf663dd92014-01-10 16:18:26 +08006868 struct ixgbe_fwd_adapter *fwd_adapter = accel_priv;
6869#ifdef IXGBE_FCOE
Alexander Duyck97488bd2013-01-12 06:33:37 +00006870 struct ixgbe_adapter *adapter;
6871 struct ixgbe_ring_feature *f;
6872 int txq;
Jason Wangf663dd92014-01-10 16:18:26 +08006873#endif
6874
6875 if (fwd_adapter)
6876 return skb->queue_mapping + fwd_adapter->tx_base_queue;
6877
6878#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00006879
Alexander Duyck97488bd2013-01-12 06:33:37 +00006880 /*
6881 * only execute the code below if protocol is FCoE
6882 * or FIP and we have FCoE enabled on the adapter
6883 */
6884 switch (vlan_get_protocol(skb)) {
6885 case __constant_htons(ETH_P_FCOE):
6886 case __constant_htons(ETH_P_FIP):
6887 adapter = netdev_priv(dev);
Alexander Duyckc0876632012-05-10 00:01:46 +00006888
Alexander Duyck97488bd2013-01-12 06:33:37 +00006889 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
6890 break;
6891 default:
6892 return __netdev_pick_tx(dev, skb);
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006893 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006894
Alexander Duyck97488bd2013-01-12 06:33:37 +00006895 f = &adapter->ring_feature[RING_F_FCOE];
6896
6897 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6898 smp_processor_id();
6899
6900 while (txq >= f->indices)
6901 txq -= f->indices;
6902
6903 return txq + f->offset;
Jason Wangf663dd92014-01-10 16:18:26 +08006904#else
6905 return __netdev_pick_tx(dev, skb);
6906#endif
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006907}
6908
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006909netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006910 struct ixgbe_adapter *adapter,
6911 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006912{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006913 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006914 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006915 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006916 unsigned short f;
Alexander Duycka535c302011-05-27 05:31:52 +00006917 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006918 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006919 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006920
Alexander Duycka535c302011-05-27 05:31:52 +00006921 /*
6922 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006923 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006924 * + 2 desc gap to keep tail from touching head,
6925 * + 1 desc for context descriptor,
6926 * otherwise try next time
6927 */
Alexander Duycka535c302011-05-27 05:31:52 +00006928 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6929 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Alexander Duyck7f661622013-02-09 01:19:55 +00006930
Alexander Duycka535c302011-05-27 05:31:52 +00006931 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6932 tx_ring->tx_stats.tx_busy++;
6933 return NETDEV_TX_BUSY;
6934 }
6935
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006936 /* record the location of the first descriptor for this packet */
6937 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6938 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006939 first->bytecount = skb->len;
6940 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006941
Alexander Duyck66f32a82011-06-29 05:43:22 +00006942 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006943 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006944 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6945 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6946 /* else if it is a SW VLAN check the next protocol and store the tag */
6947 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6948 struct vlan_hdr *vhdr, _vhdr;
6949 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6950 if (!vhdr)
6951 goto out_drop;
6952
6953 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006954 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6955 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006956 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006957 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006958
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006959 skb_tx_timestamp(skb);
6960
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006961 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6962 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6963 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
Jacob Keller891dc082012-12-05 07:24:46 +00006964
6965 /* schedule check for Tx timestamp */
6966 adapter->ptp_tx_skb = skb_get(skb);
6967 adapter->ptp_tx_start = jiffies;
6968 schedule_work(&adapter->ptp_tx_work);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006969 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006970
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006971#ifdef CONFIG_PCI_IOV
6972 /*
6973 * Use the l2switch_enable flag - would be false if the DMA
6974 * Tx switch had been disabled.
6975 */
6976 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
Alexander Duyck472148c2012-11-07 02:34:28 +00006977 tx_flags |= IXGBE_TX_FLAGS_CC;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006978
6979#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006980 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006981 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006982 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6983 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006984 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006985 tx_flags |= (skb->priority & 0x7) <<
6986 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006987 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6988 struct vlan_ethhdr *vhdr;
6989 if (skb_header_cloned(skb) &&
6990 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6991 goto out_drop;
6992 vhdr = (struct vlan_ethhdr *)skb->data;
6993 vhdr->h_vlan_TCI = htons(tx_flags >>
6994 IXGBE_TX_FLAGS_VLAN_SHIFT);
6995 } else {
6996 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6997 }
6998 }
Alexander Duycka535c302011-05-27 05:31:52 +00006999
Alexander Duyck244e27a2012-02-08 07:51:11 +00007000 /* record initial flags and protocol */
7001 first->tx_flags = tx_flags;
7002 first->protocol = protocol;
7003
Yi Zoueacd73f2009-05-13 13:11:06 +00007004#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007005 /* setup tx offload for FCoE */
7006 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00007007 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00007008 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00007009 if (tso < 0)
7010 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07007011
Alexander Duyck66f32a82011-06-29 05:43:22 +00007012 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007013 }
Auke Kok9a799d72007-09-15 14:07:45 -07007014
Auke Kok9a799d72007-09-15 14:07:45 -07007015#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007016 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007017 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007018 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007019 else if (!tso)
7020 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007021
7022 /* add the ATR filter if ATR is on */
7023 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00007024 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007025
7026#ifdef IXGBE_FCOE
7027xmit_fcoe:
7028#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007029 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007030
7031 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07007032
7033 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007034
7035out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007036 dev_kfree_skb_any(first->skb);
7037 first->skb = NULL;
7038
Alexander Duyck897ab152011-05-27 05:31:47 +00007039 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007040}
7041
John Fastabend2a47fa42013-11-06 09:54:52 -08007042static netdev_tx_t __ixgbe_xmit_frame(struct sk_buff *skb,
7043 struct net_device *netdev,
7044 struct ixgbe_ring *ring)
Auke Kok9a799d72007-09-15 14:07:45 -07007045{
7046 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007047 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07007048
Alexander Duycka50c29d2012-02-08 07:50:40 +00007049 /*
7050 * The minimum packet size for olinfo paylen is 17 so pad the skb
7051 * in order to meet this minimum size requirement.
7052 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00007053 if (unlikely(skb->len < 17)) {
7054 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00007055 return NETDEV_TX_OK;
7056 skb->len = 17;
Tushar Dave71a49f72012-09-14 04:24:49 +00007057 skb_set_tail_pointer(skb, 17);
Alexander Duycka50c29d2012-02-08 07:50:40 +00007058 }
7059
John Fastabend2a47fa42013-11-06 09:54:52 -08007060 tx_ring = ring ? ring : adapter->tx_ring[skb->queue_mapping];
7061
Auke Kok9a799d72007-09-15 14:07:45 -07007062 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7063}
7064
John Fastabend2a47fa42013-11-06 09:54:52 -08007065static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
7066 struct net_device *netdev)
7067{
7068 return __ixgbe_xmit_frame(skb, netdev, NULL);
7069}
7070
Auke Kok9a799d72007-09-15 14:07:45 -07007071/**
7072 * ixgbe_set_mac - Change the Ethernet Address of the NIC
7073 * @netdev: network interface device structure
7074 * @p: pointer to an address structure
7075 *
7076 * Returns 0 on success, negative on failure
7077 **/
7078static int ixgbe_set_mac(struct net_device *netdev, void *p)
7079{
7080 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7081 struct ixgbe_hw *hw = &adapter->hw;
7082 struct sockaddr *addr = p;
7083
7084 if (!is_valid_ether_addr(addr->sa_data))
7085 return -EADDRNOTAVAIL;
7086
7087 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007088 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07007089
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00007090 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07007091
7092 return 0;
7093}
7094
Ben Hutchings6b73e102009-04-29 08:08:58 +00007095static int
7096ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7097{
7098 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7099 struct ixgbe_hw *hw = &adapter->hw;
7100 u16 value;
7101 int rc;
7102
7103 if (prtad != hw->phy.mdio.prtad)
7104 return -EINVAL;
7105 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7106 if (!rc)
7107 rc = value;
7108 return rc;
7109}
7110
7111static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7112 u16 addr, u16 value)
7113{
7114 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7115 struct ixgbe_hw *hw = &adapter->hw;
7116
7117 if (prtad != hw->phy.mdio.prtad)
7118 return -EINVAL;
7119 return hw->phy.ops.write_reg(hw, addr, devad, value);
7120}
7121
7122static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7123{
7124 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7125
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007126 switch (cmd) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007127 case SIOCSHWTSTAMP:
7128 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007129 default:
7130 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7131 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00007132}
7133
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007134/**
7135 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007136 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007137 * @netdev: network interface device structure
7138 *
7139 * Returns non-zero on failure
7140 **/
7141static int ixgbe_add_sanmac_netdev(struct net_device *dev)
7142{
7143 int err = 0;
7144 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007145 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007146
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007147 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007148 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007149 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007150 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007151
7152 /* update SAN MAC vmdq pool selection */
7153 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007154 }
7155 return err;
7156}
7157
7158/**
7159 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007160 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007161 * @netdev: network interface device structure
7162 *
7163 * Returns non-zero on failure
7164 **/
7165static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7166{
7167 int err = 0;
7168 struct ixgbe_adapter *adapter = netdev_priv(dev);
7169 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7170
7171 if (is_valid_ether_addr(mac->san_addr)) {
7172 rtnl_lock();
7173 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7174 rtnl_unlock();
7175 }
7176 return err;
7177}
7178
Auke Kok9a799d72007-09-15 14:07:45 -07007179#ifdef CONFIG_NET_POLL_CONTROLLER
7180/*
7181 * Polling 'interrupt' - used by things like netconsole to send skbs
7182 * without having to re-enable interrupts. It's not called while
7183 * the interrupt routine is executing.
7184 */
7185static void ixgbe_netpoll(struct net_device *netdev)
7186{
7187 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007188 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007189
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007190 /* if interface is down do nothing */
7191 if (test_bit(__IXGBE_DOWN, &adapter->state))
7192 return;
7193
Auke Kok9a799d72007-09-15 14:07:45 -07007194 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007195 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00007196 for (i = 0; i < adapter->num_q_vectors; i++)
7197 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007198 } else {
7199 ixgbe_intr(adapter->pdev->irq, netdev);
7200 }
Auke Kok9a799d72007-09-15 14:07:45 -07007201 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07007202}
Auke Kok9a799d72007-09-15 14:07:45 -07007203
Alexander Duyck581330b2012-02-08 07:51:47 +00007204#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00007205static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7206 struct rtnl_link_stats64 *stats)
7207{
7208 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7209 int i;
7210
Eric Dumazet1a515022010-11-16 19:26:42 -08007211 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007212 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007213 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007214 u64 bytes, packets;
7215 unsigned int start;
7216
Eric Dumazet1a515022010-11-16 19:26:42 -08007217 if (ring) {
7218 do {
7219 start = u64_stats_fetch_begin_bh(&ring->syncp);
7220 packets = ring->stats.packets;
7221 bytes = ring->stats.bytes;
7222 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7223 stats->rx_packets += packets;
7224 stats->rx_bytes += bytes;
7225 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007226 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007227
7228 for (i = 0; i < adapter->num_tx_queues; i++) {
7229 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7230 u64 bytes, packets;
7231 unsigned int start;
7232
7233 if (ring) {
7234 do {
7235 start = u64_stats_fetch_begin_bh(&ring->syncp);
7236 packets = ring->stats.packets;
7237 bytes = ring->stats.bytes;
7238 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7239 stats->tx_packets += packets;
7240 stats->tx_bytes += bytes;
7241 }
7242 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007243 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007244 /* following stats updated by ixgbe_watchdog_task() */
7245 stats->multicast = netdev->stats.multicast;
7246 stats->rx_errors = netdev->stats.rx_errors;
7247 stats->rx_length_errors = netdev->stats.rx_length_errors;
7248 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7249 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7250 return stats;
7251}
7252
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007253#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007254/**
7255 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7256 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00007257 * @tc: number of traffic classes currently enabled
7258 *
7259 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7260 * 802.1Q priority maps to a packet buffer that exists.
7261 */
7262static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7263{
7264 struct ixgbe_hw *hw = &adapter->hw;
7265 u32 reg, rsave;
7266 int i;
7267
7268 /* 82598 have a static priority to TC mapping that can not
7269 * be changed so no validation is needed.
7270 */
7271 if (hw->mac.type == ixgbe_mac_82598EB)
7272 return;
7273
7274 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7275 rsave = reg;
7276
7277 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7278 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7279
7280 /* If up2tc is out of bounds default to zero */
7281 if (up2tc > tc)
7282 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7283 }
7284
7285 if (reg != rsave)
7286 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7287
7288 return;
7289}
7290
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007291/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00007292 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
7293 * @adapter: Pointer to adapter struct
7294 *
7295 * Populate the netdev user priority to tc map
7296 */
7297static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
7298{
7299 struct net_device *dev = adapter->netdev;
7300 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
7301 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
7302 u8 prio;
7303
7304 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
7305 u8 tc = 0;
7306
7307 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
7308 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
7309 else if (ets)
7310 tc = ets->prio_tc[prio];
7311
7312 netdev_set_prio_tc_map(dev, prio, tc);
7313 }
7314}
7315
Alexander Duyckcca73c52013-01-12 06:33:44 +00007316#endif /* CONFIG_IXGBE_DCB */
Alexander Duyck02debdc2012-05-18 06:33:31 +00007317/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007318 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00007319 *
7320 * @netdev: net device to configure
7321 * @tc: number of traffic classes to enable
7322 */
7323int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7324{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007325 struct ixgbe_adapter *adapter = netdev_priv(dev);
7326 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08007327 bool pools;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007328
John Fastabend8b1c0b22011-05-03 02:26:48 +00007329 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00007330 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00007331 (hw->mac.type == ixgbe_mac_82598EB &&
7332 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00007333 return -EINVAL;
7334
John Fastabend2a47fa42013-11-06 09:54:52 -08007335 pools = (find_first_zero_bit(&adapter->fwd_bitmask, 32) > 1);
7336 if (tc && pools && adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS)
7337 return -EBUSY;
7338
John Fastabend8b1c0b22011-05-03 02:26:48 +00007339 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00007340 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00007341 * hardware is not flexible enough to do this dynamically.
7342 */
7343 if (netif_running(dev))
7344 ixgbe_close(dev);
7345 ixgbe_clear_interrupt_scheme(adapter);
7346
Alexander Duyckcca73c52013-01-12 06:33:44 +00007347#ifdef CONFIG_IXGBE_DCB
John Fastabende7589ea2011-07-18 22:38:36 +00007348 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007349 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00007350 ixgbe_set_prio_tc_map(adapter);
7351
John Fastabende7589ea2011-07-18 22:38:36 +00007352 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00007353
Alexander Duyck943561d2012-05-09 22:14:44 -07007354 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
7355 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00007356 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07007357 }
John Fastabende7589ea2011-07-18 22:38:36 +00007358 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007359 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00007360
Alexander Duyck943561d2012-05-09 22:14:44 -07007361 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
7362 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00007363
7364 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00007365
7366 adapter->temp_dcb_cfg.pfc_mode_enable = false;
7367 adapter->dcb_cfg.pfc_mode_enable = false;
7368 }
7369
John Fastabend8b1c0b22011-05-03 02:26:48 +00007370 ixgbe_validate_rtr(adapter, tc);
Alexander Duyckcca73c52013-01-12 06:33:44 +00007371
7372#endif /* CONFIG_IXGBE_DCB */
7373 ixgbe_init_interrupt_scheme(adapter);
7374
John Fastabend8b1c0b22011-05-03 02:26:48 +00007375 if (netif_running(dev))
Alexander Duyckcca73c52013-01-12 06:33:44 +00007376 return ixgbe_open(dev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00007377
7378 return 0;
7379}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007380
Greg Roseda36b642012-12-11 08:26:43 +00007381#ifdef CONFIG_PCI_IOV
7382void ixgbe_sriov_reinit(struct ixgbe_adapter *adapter)
7383{
7384 struct net_device *netdev = adapter->netdev;
7385
7386 rtnl_lock();
Greg Roseda36b642012-12-11 08:26:43 +00007387 ixgbe_setup_tc(netdev, netdev_get_num_tc(netdev));
Greg Roseda36b642012-12-11 08:26:43 +00007388 rtnl_unlock();
7389}
7390
7391#endif
Don Skidmore082757a2011-07-21 05:55:00 +00007392void ixgbe_do_reset(struct net_device *netdev)
7393{
7394 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7395
7396 if (netif_running(netdev))
7397 ixgbe_reinit_locked(adapter);
7398 else
7399 ixgbe_reset(adapter);
7400}
7401
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007402static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00007403 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00007404{
7405 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7406
Don Skidmore082757a2011-07-21 05:55:00 +00007407 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00007408 if (!(features & NETIF_F_RXCSUM))
7409 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00007410
Alexander Duyck567d2de2012-02-11 07:18:57 +00007411 /* Turn off LRO if not RSC capable */
7412 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
7413 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007414
Alexander Duyck567d2de2012-02-11 07:18:57 +00007415 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00007416}
7417
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007418static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00007419 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00007420{
7421 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00007422 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00007423 bool need_reset = false;
7424
Don Skidmore082757a2011-07-21 05:55:00 +00007425 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00007426 if (!(features & NETIF_F_LRO)) {
7427 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00007428 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00007429 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
7430 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
7431 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7432 if (adapter->rx_itr_setting == 1 ||
7433 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
7434 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
7435 need_reset = true;
7436 } else if ((changed ^ features) & NETIF_F_LRO) {
7437 e_info(probe, "rx-usecs set too low, "
7438 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00007439 }
7440 }
7441
7442 /*
7443 * Check if Flow Director n-tuple support was enabled or disabled. If
7444 * the state changed, we need to reset.
7445 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00007446 switch (features & NETIF_F_NTUPLE) {
7447 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00007448 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00007449 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
7450 need_reset = true;
7451
Alexander Duyck567d2de2012-02-11 07:18:57 +00007452 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7453 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00007454 break;
7455 default:
7456 /* turn off perfect filters, enable ATR and reset */
7457 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
7458 need_reset = true;
7459
7460 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7461
7462 /* We cannot enable ATR if SR-IOV is enabled */
7463 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7464 break;
7465
7466 /* We cannot enable ATR if we have 2 or more traffic classes */
7467 if (netdev_get_num_tc(netdev) > 1)
7468 break;
7469
7470 /* We cannot enable ATR if RSS is disabled */
7471 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
7472 break;
7473
7474 /* A sample rate of 0 indicates ATR disabled */
7475 if (!adapter->atr_sample_rate)
7476 break;
7477
7478 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7479 break;
Don Skidmore082757a2011-07-21 05:55:00 +00007480 }
7481
Patrick McHardyf6469682013-04-19 02:04:27 +00007482 if (features & NETIF_F_HW_VLAN_CTAG_RX)
John Fastabend146d4cc2012-05-15 05:59:26 +00007483 ixgbe_vlan_strip_enable(adapter);
7484 else
7485 ixgbe_vlan_strip_disable(adapter);
7486
Ben Greear3f2d1c02012-03-08 08:28:41 +00007487 if (changed & NETIF_F_RXALL)
7488 need_reset = true;
7489
Alexander Duyck567d2de2012-02-11 07:18:57 +00007490 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00007491 if (need_reset)
7492 ixgbe_do_reset(netdev);
7493
7494 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00007495}
7496
stephen hemmingeredc7d572012-10-01 12:32:33 +00007497static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007498 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00007499 const unsigned char *addr,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007500 u16 flags)
7501{
7502 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00007503 int err;
7504
7505 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
Vlad Yasevichfaaf02d2013-03-06 15:39:43 +00007506 return ndo_dflt_fdb_add(ndm, tb, dev, addr, flags);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007507
John Fastabendb1ac1ef2012-11-01 05:00:44 +00007508 /* Hardware does not support aging addresses so if a
7509 * ndm_state is given only allow permanent addresses
7510 */
7511 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007512 pr_info("%s: FDB only supports static addresses\n",
7513 ixgbe_driver_name);
7514 return -EINVAL;
7515 }
7516
Ben Hutchings46acc462012-11-01 09:11:11 +00007517 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) {
John Fastabend95447462012-05-31 12:42:26 +00007518 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
7519
7520 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007521 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007522 else
John Fastabend95447462012-05-31 12:42:26 +00007523 err = -ENOMEM;
7524 } else if (is_multicast_ether_addr(addr)) {
7525 err = dev_mc_add_excl(dev, addr);
7526 } else {
7527 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007528 }
7529
7530 /* Only return duplicate errors if NLM_F_EXCL is set */
7531 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7532 err = 0;
7533
7534 return err;
7535}
7536
John Fastabend815cccb2012-10-24 08:13:09 +00007537static int ixgbe_ndo_bridge_setlink(struct net_device *dev,
7538 struct nlmsghdr *nlh)
7539{
7540 struct ixgbe_adapter *adapter = netdev_priv(dev);
7541 struct nlattr *attr, *br_spec;
7542 int rem;
7543
7544 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
7545 return -EOPNOTSUPP;
7546
7547 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
7548
7549 nla_for_each_nested(attr, br_spec, rem) {
7550 __u16 mode;
7551 u32 reg = 0;
7552
7553 if (nla_type(attr) != IFLA_BRIDGE_MODE)
7554 continue;
7555
7556 mode = nla_get_u16(attr);
Greg Rose9b735982012-11-08 02:41:35 +00007557 if (mode == BRIDGE_MODE_VEPA) {
John Fastabend815cccb2012-10-24 08:13:09 +00007558 reg = 0;
Greg Rose9b735982012-11-08 02:41:35 +00007559 adapter->flags2 &= ~IXGBE_FLAG2_BRIDGE_MODE_VEB;
7560 } else if (mode == BRIDGE_MODE_VEB) {
John Fastabend815cccb2012-10-24 08:13:09 +00007561 reg = IXGBE_PFDTXGSWC_VT_LBEN;
Greg Rose9b735982012-11-08 02:41:35 +00007562 adapter->flags2 |= IXGBE_FLAG2_BRIDGE_MODE_VEB;
7563 } else
John Fastabend815cccb2012-10-24 08:13:09 +00007564 return -EINVAL;
7565
7566 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, reg);
7567
7568 e_info(drv, "enabling bridge mode: %s\n",
7569 mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
7570 }
7571
7572 return 0;
7573}
7574
7575static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00007576 struct net_device *dev,
7577 u32 filter_mask)
John Fastabend815cccb2012-10-24 08:13:09 +00007578{
7579 struct ixgbe_adapter *adapter = netdev_priv(dev);
7580 u16 mode;
7581
7582 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
7583 return 0;
7584
Greg Rose9b735982012-11-08 02:41:35 +00007585 if (adapter->flags2 & IXGBE_FLAG2_BRIDGE_MODE_VEB)
John Fastabend815cccb2012-10-24 08:13:09 +00007586 mode = BRIDGE_MODE_VEB;
7587 else
7588 mode = BRIDGE_MODE_VEPA;
7589
7590 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, mode);
7591}
7592
John Fastabend2a47fa42013-11-06 09:54:52 -08007593static void *ixgbe_fwd_add(struct net_device *pdev, struct net_device *vdev)
7594{
7595 struct ixgbe_fwd_adapter *fwd_adapter = NULL;
7596 struct ixgbe_adapter *adapter = netdev_priv(pdev);
John Fastabend51f37732013-11-08 00:51:10 -08007597 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08007598 int pool, err;
7599
John Fastabend219354d2013-11-08 00:50:32 -08007600#ifdef CONFIG_RPS
7601 if (vdev->num_rx_queues != vdev->num_tx_queues) {
7602 netdev_info(pdev, "%s: Only supports a single queue count for TX and RX\n",
7603 vdev->name);
7604 return ERR_PTR(-EINVAL);
7605 }
7606#endif
John Fastabend2a47fa42013-11-06 09:54:52 -08007607 /* Check for hardware restriction on number of rx/tx queues */
John Fastabend219354d2013-11-08 00:50:32 -08007608 if (vdev->num_tx_queues > IXGBE_MAX_L2A_QUEUES ||
John Fastabend2a47fa42013-11-06 09:54:52 -08007609 vdev->num_tx_queues == IXGBE_BAD_L2A_QUEUE) {
7610 netdev_info(pdev,
7611 "%s: Supports RX/TX Queue counts 1,2, and 4\n",
7612 pdev->name);
7613 return ERR_PTR(-EINVAL);
7614 }
7615
7616 if (((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
7617 adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS - 1) ||
7618 (adapter->num_rx_pools > IXGBE_MAX_MACVLANS))
7619 return ERR_PTR(-EBUSY);
7620
7621 fwd_adapter = kcalloc(1, sizeof(struct ixgbe_fwd_adapter), GFP_KERNEL);
7622 if (!fwd_adapter)
7623 return ERR_PTR(-ENOMEM);
7624
7625 pool = find_first_zero_bit(&adapter->fwd_bitmask, 32);
7626 adapter->num_rx_pools++;
7627 set_bit(pool, &adapter->fwd_bitmask);
John Fastabend51f37732013-11-08 00:51:10 -08007628 limit = find_last_bit(&adapter->fwd_bitmask, 32);
John Fastabend2a47fa42013-11-06 09:54:52 -08007629
7630 /* Enable VMDq flag so device will be set in VM mode */
7631 adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED | IXGBE_FLAG_SRIOV_ENABLED;
John Fastabend51f37732013-11-08 00:51:10 -08007632 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend219354d2013-11-08 00:50:32 -08007633 adapter->ring_feature[RING_F_RSS].limit = vdev->num_tx_queues;
John Fastabend2a47fa42013-11-06 09:54:52 -08007634
7635 /* Force reinit of ring allocation with VMDQ enabled */
7636 err = ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
7637 if (err)
7638 goto fwd_add_err;
7639 fwd_adapter->pool = pool;
7640 fwd_adapter->real_adapter = adapter;
7641 err = ixgbe_fwd_ring_up(vdev, fwd_adapter);
7642 if (err)
7643 goto fwd_add_err;
7644 netif_tx_start_all_queues(vdev);
7645 return fwd_adapter;
7646fwd_add_err:
7647 /* unwind counter and free adapter struct */
7648 netdev_info(pdev,
7649 "%s: dfwd hardware acceleration failed\n", vdev->name);
7650 clear_bit(pool, &adapter->fwd_bitmask);
7651 adapter->num_rx_pools--;
7652 kfree(fwd_adapter);
7653 return ERR_PTR(err);
7654}
7655
7656static void ixgbe_fwd_del(struct net_device *pdev, void *priv)
7657{
7658 struct ixgbe_fwd_adapter *fwd_adapter = priv;
7659 struct ixgbe_adapter *adapter = fwd_adapter->real_adapter;
John Fastabend51f37732013-11-08 00:51:10 -08007660 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08007661
7662 clear_bit(fwd_adapter->pool, &adapter->fwd_bitmask);
7663 adapter->num_rx_pools--;
7664
John Fastabend51f37732013-11-08 00:51:10 -08007665 limit = find_last_bit(&adapter->fwd_bitmask, 32);
7666 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend2a47fa42013-11-06 09:54:52 -08007667 ixgbe_fwd_ring_down(fwd_adapter->netdev, fwd_adapter);
7668 ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
7669 netdev_dbg(pdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
7670 fwd_adapter->pool, adapter->num_rx_pools,
7671 fwd_adapter->rx_base_queue,
7672 fwd_adapter->rx_base_queue + adapter->num_rx_queues_per_pool,
7673 adapter->fwd_bitmask);
7674 kfree(fwd_adapter);
7675}
7676
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007677static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007678 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007679 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08007680 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007681 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00007682 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007683 .ndo_validate_addr = eth_validate_addr,
7684 .ndo_set_mac_address = ixgbe_set_mac,
7685 .ndo_change_mtu = ixgbe_change_mtu,
7686 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007687 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7688 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007689 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007690 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7691 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7692 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00007693 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007694 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007695 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007696#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00007697 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007698#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007699#ifdef CONFIG_NET_POLL_CONTROLLER
7700 .ndo_poll_controller = ixgbe_netpoll,
7701#endif
Cong Wange0d10952013-08-01 11:10:25 +08007702#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03007703 .ndo_busy_poll = ixgbe_low_latency_recv,
Eliezer Tamir5a85e732013-06-10 11:40:20 +03007704#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007705#ifdef IXGBE_FCOE
7706 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007707 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007708 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007709 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7710 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007711 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007712 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007713#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007714 .ndo_set_features = ixgbe_set_features,
7715 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007716 .ndo_fdb_add = ixgbe_ndo_fdb_add,
John Fastabend815cccb2012-10-24 08:13:09 +00007717 .ndo_bridge_setlink = ixgbe_ndo_bridge_setlink,
7718 .ndo_bridge_getlink = ixgbe_ndo_bridge_getlink,
John Fastabend2a47fa42013-11-06 09:54:52 -08007719 .ndo_dfwd_add_station = ixgbe_fwd_add,
7720 .ndo_dfwd_del_station = ixgbe_fwd_del,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007721};
7722
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007723/**
Jacob Kellere027d1a2013-07-31 06:53:31 +00007724 * ixgbe_enumerate_functions - Get the number of ports this device has
7725 * @adapter: adapter structure
7726 *
7727 * This function enumerates the phsyical functions co-located on a single slot,
7728 * in order to determine how many ports a device has. This is most useful in
7729 * determining the required GT/s of PCIe bandwidth necessary for optimal
7730 * performance.
7731 **/
7732static inline int ixgbe_enumerate_functions(struct ixgbe_adapter *adapter)
7733{
Jacob Kellere027d1a2013-07-31 06:53:31 +00007734 struct list_head *entry;
7735 int physfns = 0;
7736
Jacob Kellerf1f96572013-08-31 02:45:38 +00007737 /* Some cards can not use the generic count PCIe functions method,
7738 * because they are behind a parent switch, so we hardcode these with
7739 * the correct number of functions.
Jacob Kellere027d1a2013-07-31 06:53:31 +00007740 */
Jacob Kellerf1f96572013-08-31 02:45:38 +00007741 if (ixgbe_pcie_from_parent(&adapter->hw)) {
Jacob Kellere027d1a2013-07-31 06:53:31 +00007742 physfns = 4;
Jacob Kellerf1f96572013-08-31 02:45:38 +00007743 } else {
Jacob Kellere027d1a2013-07-31 06:53:31 +00007744 list_for_each(entry, &adapter->pdev->bus_list) {
7745 struct pci_dev *pdev =
7746 list_entry(entry, struct pci_dev, bus_list);
7747 /* don't count virtual functions */
7748 if (!pdev->is_virtfn)
7749 physfns++;
7750 }
7751 }
7752
7753 return physfns;
7754}
7755
7756/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00007757 * ixgbe_wol_supported - Check whether device supports WoL
7758 * @hw: hw specific details
7759 * @device_id: the device ID
7760 * @subdev_id: the subsystem device ID
7761 *
7762 * This function is used by probe and ethtool to determine
7763 * which devices have WoL support
7764 *
7765 **/
7766int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
7767 u16 subdevice_id)
7768{
7769 struct ixgbe_hw *hw = &adapter->hw;
7770 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7771 int is_wol_supported = 0;
7772
7773 switch (device_id) {
7774 case IXGBE_DEV_ID_82599_SFP:
7775 /* Only these subdevices could supports WOL */
7776 switch (subdevice_id) {
7777 case IXGBE_SUBDEV_ID_82599_560FLR:
7778 /* only support first port */
7779 if (hw->bus.func != 0)
7780 break;
Emil Tantilov5700ff22013-04-18 08:18:55 +00007781 case IXGBE_SUBDEV_ID_82599_SP_560FLR:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007782 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00007783 case IXGBE_SUBDEV_ID_82599_RNDC:
Emil Tantilovf8a06c22012-08-16 08:13:07 +00007784 case IXGBE_SUBDEV_ID_82599_ECNA_DP:
Jacob Keller979fe5f2013-04-03 04:41:37 +00007785 case IXGBE_SUBDEV_ID_82599_LOM_SFP:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007786 is_wol_supported = 1;
7787 break;
7788 }
7789 break;
Don Skidmore5daebbb2013-04-05 05:49:34 +00007790 case IXGBE_DEV_ID_82599EN_SFP:
7791 /* Only this subdevice supports WOL */
7792 switch (subdevice_id) {
7793 case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1:
7794 is_wol_supported = 1;
7795 break;
7796 }
7797 break;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007798 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7799 /* All except this subdevice support WOL */
7800 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7801 is_wol_supported = 1;
7802 break;
7803 case IXGBE_DEV_ID_82599_KX4:
7804 is_wol_supported = 1;
7805 break;
7806 case IXGBE_DEV_ID_X540T:
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +00007807 case IXGBE_DEV_ID_X540T1:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007808 /* check eeprom to see if enabled wol */
7809 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7810 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7811 (hw->bus.func == 0))) {
7812 is_wol_supported = 1;
7813 }
7814 break;
7815 }
7816
7817 return is_wol_supported;
7818}
7819
7820/**
Auke Kok9a799d72007-09-15 14:07:45 -07007821 * ixgbe_probe - Device Initialization Routine
7822 * @pdev: PCI device information struct
7823 * @ent: entry in ixgbe_pci_tbl
7824 *
7825 * Returns 0 on success, negative on failure
7826 *
7827 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7828 * The OS initialization, configuring of the adapter private structure,
7829 * and a hardware reset occur.
7830 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00007831static int ixgbe_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007832{
7833 struct net_device *netdev;
7834 struct ixgbe_adapter *adapter = NULL;
7835 struct ixgbe_hw *hw;
7836 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007837 static int cards_found;
Jacob Kellere027d1a2013-07-31 06:53:31 +00007838 int i, err, pci_using_dac, expected_gts;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007839 unsigned int indices = MAX_TX_QUEUES;
Don Skidmore289700db2010-12-03 03:32:58 +00007840 u8 part_str[IXGBE_PBANUM_LENGTH];
Yi Zoueacd73f2009-05-13 13:11:06 +00007841#ifdef IXGBE_FCOE
7842 u16 device_caps;
7843#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007844 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007845
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007846 /* Catch broken hardware that put the wrong VF device ID in
7847 * the PCIe SR-IOV capability.
7848 */
7849 if (pdev->is_virtfn) {
7850 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7851 pci_name(pdev), pdev->vendor, pdev->device);
7852 return -EINVAL;
7853 }
7854
gouji-new9ce77662009-05-06 10:44:45 +00007855 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007856 if (err)
7857 return err;
7858
Russell Kingf5f2eda2013-06-10 12:47:42 +01007859 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007860 pci_using_dac = 1;
7861 } else {
Russell Kingf5f2eda2013-06-10 12:47:42 +01007862 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007863 if (err) {
Russell Kingf5f2eda2013-06-10 12:47:42 +01007864 dev_err(&pdev->dev,
7865 "No usable DMA configuration, aborting\n");
7866 goto err_dma;
Auke Kok9a799d72007-09-15 14:07:45 -07007867 }
7868 pci_using_dac = 0;
7869 }
7870
gouji-new9ce77662009-05-06 10:44:45 +00007871 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007872 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007873 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007874 dev_err(&pdev->dev,
7875 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007876 goto err_pci_reg;
7877 }
7878
Frans Pop19d5afd2009-10-02 10:04:12 -07007879 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007880
Auke Kok9a799d72007-09-15 14:07:45 -07007881 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007882 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007883
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007884 if (ii->mac == ixgbe_mac_82598EB) {
John Fastabende901acd2011-04-26 07:26:08 +00007885#ifdef CONFIG_IXGBE_DCB
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007886 /* 8 TC w/ 4 queues per TC */
7887 indices = 4 * MAX_TRAFFIC_CLASS;
7888#else
7889 indices = IXGBE_MAX_RSS_INDICES;
John Fastabende901acd2011-04-26 07:26:08 +00007890#endif
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007891 }
John Fastabende901acd2011-04-26 07:26:08 +00007892
John Fastabendc85a2612010-02-25 23:15:21 +00007893 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007894 if (!netdev) {
7895 err = -ENOMEM;
7896 goto err_alloc_etherdev;
7897 }
7898
Auke Kok9a799d72007-09-15 14:07:45 -07007899 SET_NETDEV_DEV(netdev, &pdev->dev);
7900
Auke Kok9a799d72007-09-15 14:07:45 -07007901 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007902 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007903
7904 adapter->netdev = netdev;
7905 adapter->pdev = pdev;
7906 hw = &adapter->hw;
7907 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007908 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007909
Jeff Kirsher05857982008-09-11 19:57:00 -07007910 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007911 pci_resource_len(pdev, 0));
Mark Rustad2a1a0912014-01-14 18:53:15 -08007912 adapter->io_addr = hw->hw_addr;
Auke Kok9a799d72007-09-15 14:07:45 -07007913 if (!hw->hw_addr) {
7914 err = -EIO;
7915 goto err_ioremap;
7916 }
7917
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007918 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007919 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007920 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007921 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007922
Auke Kok9a799d72007-09-15 14:07:45 -07007923 adapter->bd_number = cards_found;
7924
Auke Kok9a799d72007-09-15 14:07:45 -07007925 /* Setup hw api */
7926 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007927 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007928
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007929 /* EEPROM */
7930 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7931 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7932 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7933 if (!(eec & (1 << 8)))
7934 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7935
7936 /* PHY */
7937 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007938 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007939 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7940 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7941 hw->phy.mdio.mmds = 0;
7942 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7943 hw->phy.mdio.dev = netdev;
7944 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7945 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007946
Don Skidmore8ca783a2009-05-26 20:40:47 -07007947 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007948
7949 /* setup the private structure */
7950 err = ixgbe_sw_init(adapter);
7951 if (err)
7952 goto err_sw_init;
7953
Don Skidmore0b2679d2013-02-21 03:00:04 +00007954 /* Cache if MNG FW is up so we don't have to read the REG later */
7955 if (hw->mac.ops.mng_fw_enabled)
7956 hw->mng_fw_enabled = hw->mac.ops.mng_fw_enabled(hw);
7957
Don Skidmoree86bff02010-02-11 04:14:08 +00007958 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007959 switch (adapter->hw.mac.type) {
7960 case ixgbe_mac_82599EB:
7961 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007962 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007963 break;
7964 default:
7965 break;
7966 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007967
Don Skidmorebf069c92009-05-07 10:39:54 +00007968 /*
7969 * If there is a fan on this device and it has failed log the
7970 * failure.
7971 */
7972 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7973 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7974 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007975 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007976 }
7977
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007978 if (allow_unsupported_sfp)
7979 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7980
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007981 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007982 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007983 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007984 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007985 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7986 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007987 err = 0;
7988 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Don Skidmore1b1bf312013-07-31 05:27:04 +00007989 e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n");
7990 e_dev_err("Reload the driver after installing a supported module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007991 goto err_sw_init;
7992 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007993 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007994 goto err_sw_init;
7995 }
7996
Alexander Duyck99d74482012-05-09 08:09:25 +00007997#ifdef CONFIG_PCI_IOV
Greg Rose60a1a682012-12-11 08:26:33 +00007998 /* SR-IOV not supported on the 82598 */
7999 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
8000 goto skip_sriov;
8001 /* Mailbox */
8002 ixgbe_init_mbx_params_pf(hw);
8003 memcpy(&hw->mbx.ops, ii->mbx_ops, sizeof(hw->mbx.ops));
8004 ixgbe_enable_sriov(adapter);
Donald Dutile43dc4e02012-12-11 08:26:48 +00008005 pci_sriov_set_totalvfs(pdev, 63);
Greg Rose60a1a682012-12-11 08:26:33 +00008006skip_sriov:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008007
Alexander Duyck99d74482012-05-09 08:09:25 +00008008#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00008009 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00008010 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00008011 NETIF_F_IPV6_CSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008012 NETIF_F_HW_VLAN_CTAG_TX |
8013 NETIF_F_HW_VLAN_CTAG_RX |
8014 NETIF_F_HW_VLAN_CTAG_FILTER |
Don Skidmore082757a2011-07-21 05:55:00 +00008015 NETIF_F_TSO |
8016 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00008017 NETIF_F_RXHASH |
John Fastabend8bf12642013-11-12 12:13:29 +00008018 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07008019
John Fastabend8bf12642013-11-12 12:13:29 +00008020 netdev->hw_features = netdev->features | NETIF_F_HW_L2FW_DOFFLOAD;
Jeff Kirsherad31c402008-06-05 04:05:30 -07008021
Don Skidmore58be7662011-04-12 09:42:11 +00008022 switch (adapter->hw.mac.type) {
8023 case ixgbe_mac_82599EB:
8024 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00008025 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00008026 netdev->hw_features |= NETIF_F_SCTP_CSUM |
8027 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00008028 break;
8029 default:
8030 break;
8031 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00008032
Ben Greear3f2d1c02012-03-08 08:28:41 +00008033 netdev->hw_features |= NETIF_F_RXALL;
8034
Jeff Kirsherad31c402008-06-05 04:05:30 -07008035 netdev->vlan_features |= NETIF_F_TSO;
8036 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07008037 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00008038 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07008039 netdev->vlan_features |= NETIF_F_SG;
8040
Jiri Pirko01789342011-08-16 06:29:00 +00008041 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00008042 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00008043
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08008044#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08008045 netdev->dcbnl_ops = &dcbnl_ops;
8046#endif
8047
Yi Zoueacd73f2009-05-13 13:11:06 +00008048#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00008049 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Alexander Duyckd3cb9862013-01-16 01:35:35 +00008050 unsigned int fcoe_l;
8051
Yi Zoueacd73f2009-05-13 13:11:06 +00008052 if (hw->mac.ops.get_device_caps) {
8053 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00008054 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
8055 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00008056 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00008057
Alexander Duyckd3cb9862013-01-16 01:35:35 +00008058
8059 fcoe_l = min_t(int, IXGBE_FCRETA_SIZE, num_online_cpus());
8060 adapter->ring_feature[RING_F_FCOE].limit = fcoe_l;
Alexander Duyck7c8ae652012-05-05 05:32:47 +00008061
Alexander Duycka58915c2012-05-25 06:38:18 +00008062 netdev->features |= NETIF_F_FSO |
8063 NETIF_F_FCOE_CRC;
8064
Alexander Duyck7c8ae652012-05-05 05:32:47 +00008065 netdev->vlan_features |= NETIF_F_FSO |
8066 NETIF_F_FCOE_CRC |
8067 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00008068 }
Yi Zoueacd73f2009-05-13 13:11:06 +00008069#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00008070 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07008071 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00008072 netdev->vlan_features |= NETIF_F_HIGHDMA;
8073 }
Auke Kok9a799d72007-09-15 14:07:45 -07008074
Don Skidmore082757a2011-07-21 05:55:00 +00008075 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
8076 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00008077 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00008078 netdev->features |= NETIF_F_LRO;
8079
Auke Kok9a799d72007-09-15 14:07:45 -07008080 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008081 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008082 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07008083 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00008084 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07008085 }
8086
8087 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07008088
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00008089 if (!is_valid_ether_addr(netdev->dev_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008090 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07008091 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00008092 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07008093 }
8094
Alexander Duyck70864002011-04-27 09:13:56 +00008095 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00008096 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008097
Alexander Duyck70864002011-04-27 09:13:56 +00008098 INIT_WORK(&adapter->service_task, ixgbe_service_task);
8099 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07008100
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008101 err = ixgbe_init_interrupt_scheme(adapter);
8102 if (err)
8103 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07008104
Jacob Keller8e2813f2012-04-21 06:05:40 +00008105 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00008106 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00008107 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00008108 hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device,
Don Skidmoreb8f83632013-02-28 08:08:44 +00008109 pdev->subsystem_device);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00008110 if (hw->wol_enabled)
Andy Gospodarek9417c462011-07-16 07:31:33 +00008111 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00008112
PJ Waskiewicze8e26352009-02-27 15:45:05 +00008113 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
8114
Emil Tantilov15e52092011-09-29 05:01:29 +00008115 /* save off EEPROM version number */
8116 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
8117 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
8118
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00008119 /* pick up the PCI bus settings for reporting later */
8120 hw->mac.ops.get_bus_info(hw);
Jacob Kellere027d1a2013-07-31 06:53:31 +00008121 if (ixgbe_pcie_from_parent(hw))
Jacob Kellerb8e82002013-04-09 07:20:09 +00008122 ixgbe_get_parent_bus_info(adapter);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00008123
Jacob Kellere027d1a2013-07-31 06:53:31 +00008124 /* calculate the expected PCIe bandwidth required for optimal
8125 * performance. Note that some older parts will never have enough
8126 * bandwidth due to being older generation PCIe parts. We clamp these
8127 * parts to ensure no warning is displayed if it can't be fixed.
8128 */
8129 switch (hw->mac.type) {
8130 case ixgbe_mac_82598EB:
8131 expected_gts = min(ixgbe_enumerate_functions(adapter) * 10, 16);
8132 break;
8133 default:
8134 expected_gts = ixgbe_enumerate_functions(adapter) * 10;
8135 break;
Auke Kok0c254d82008-02-11 09:25:56 -08008136 }
Jacob Kellere027d1a2013-07-31 06:53:31 +00008137 ixgbe_check_minimum_link(adapter, expected_gts);
Auke Kok0c254d82008-02-11 09:25:56 -08008138
Jacob Keller6a2aae52013-10-18 05:09:24 +00008139 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
8140 if (err)
8141 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
8142 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
8143 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
8144 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
8145 part_str);
8146 else
8147 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
8148 hw->mac.type, hw->phy.type, part_str);
8149
8150 e_dev_info("%pM\n", netdev->dev_addr);
8151
Auke Kok9a799d72007-09-15 14:07:45 -07008152 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00008153 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00008154 if (err == IXGBE_ERR_EEPROM_VERSION) {
8155 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00008156 e_dev_warn("This device is a pre-production adapter/LOM. "
8157 "Please be aware there may be issues associated "
8158 "with your hardware. If you are experiencing "
8159 "problems please contact your Intel or hardware "
8160 "representative who provided you with this "
8161 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00008162 }
Auke Kok9a799d72007-09-15 14:07:45 -07008163 strcpy(netdev->name, "eth%d");
8164 err = register_netdev(netdev);
8165 if (err)
8166 goto err_register;
8167
Emil Tantilovec74a472012-09-20 03:33:56 +00008168 /* power down the optics for 82599 SFP+ fiber */
8169 if (hw->mac.ops.disable_tx_laser)
Emil Tantilov93d3ce82011-10-19 07:59:55 +00008170 hw->mac.ops.disable_tx_laser(hw);
8171
Jesse Brandeburg54386462009-04-17 20:44:27 +00008172 /* carrier off reporting is important to ethtool even BEFORE open */
8173 netif_carrier_off(netdev);
8174
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008175#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03008176 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008177 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008178 ixgbe_setup_dca(adapter);
8179 }
8180#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008181 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008182 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008183 for (i = 0; i < adapter->num_vfs; i++)
8184 ixgbe_vf_configuration(pdev, (i | 0x10000000));
8185 }
8186
Jacob Keller2466dd92011-09-08 03:50:54 +00008187 /* firmware requires driver version to be 0xFFFFFFFF
8188 * since os does not support feature
8189 */
Emil Tantilov9612de92011-05-07 07:40:20 +00008190 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00008191 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
8192 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00008193
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008194 /* add san mac addr to netdev */
8195 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008196
Neerav Parikhea818752012-01-04 20:23:40 +00008197 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07008198 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008199
Don Skidmore12109822012-05-04 06:07:08 +00008200#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008201 if (ixgbe_sysfs_init(adapter))
8202 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00008203#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008204
Catherine Sullivan00949162012-08-10 01:59:10 +00008205 ixgbe_dbg_adapter_init(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00008206
Don Skidmore0b2679d2013-02-21 03:00:04 +00008207 /* Need link setup for MNG FW, else wait for IXGBE_UP */
8208 if (hw->mng_fw_enabled && hw->mac.ops.setup_link)
8209 hw->mac.ops.setup_link(hw,
8210 IXGBE_LINK_SPEED_10GB_FULL | IXGBE_LINK_SPEED_1GB_FULL,
8211 true);
8212
Auke Kok9a799d72007-09-15 14:07:45 -07008213 return 0;
8214
8215err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008216 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00008217 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008218err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00008219 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00008220 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Mark Rustad2a1a0912014-01-14 18:53:15 -08008221 iounmap(adapter->io_addr);
Auke Kok9a799d72007-09-15 14:07:45 -07008222err_ioremap:
8223 free_netdev(netdev);
8224err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00008225 pci_release_selected_regions(pdev,
8226 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008227err_pci_reg:
8228err_dma:
8229 pci_disable_device(pdev);
8230 return err;
8231}
8232
8233/**
8234 * ixgbe_remove - Device Removal Routine
8235 * @pdev: PCI device information struct
8236 *
8237 * ixgbe_remove is called by the PCI subsystem to alert the driver
8238 * that it should release a PCI device. The could be caused by a
8239 * Hot-Plug event, or because the driver is going to be removed from
8240 * memory.
8241 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05008242static void ixgbe_remove(struct pci_dev *pdev)
Auke Kok9a799d72007-09-15 14:07:45 -07008243{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008244 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8245 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008246
Catherine Sullivan00949162012-08-10 01:59:10 +00008247 ixgbe_dbg_adapter_exit(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00008248
Mark Rustad09f40ae2014-01-14 18:53:11 -08008249 set_bit(__IXGBE_REMOVING, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00008250 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07008251
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00008252
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008253#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008254 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
8255 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
8256 dca_remove_requester(&pdev->dev);
8257 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
8258 }
8259
8260#endif
Don Skidmore12109822012-05-04 06:07:08 +00008261#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008262 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00008263#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008264
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008265 /* remove the added san mac */
8266 ixgbe_del_sanmac_netdev(netdev);
8267
Donald Skidmorec4900be2008-11-20 21:11:42 -08008268 if (netdev->reg_state == NETREG_REGISTERED)
8269 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008270
Greg Roseda36b642012-12-11 08:26:43 +00008271#ifdef CONFIG_PCI_IOV
8272 /*
8273 * Only disable SR-IOV on unload if the user specified the now
8274 * deprecated max_vfs module parameter.
8275 */
8276 if (max_vfs)
8277 ixgbe_disable_sriov(adapter);
8278#endif
Alexander Duyck7a921c92009-05-06 10:43:28 +00008279 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008280
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008281 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008282
Alexander Duyck2b1588c2012-03-17 02:39:16 +00008283#ifdef CONFIG_DCB
8284 kfree(adapter->ixgbe_ieee_pfc);
8285 kfree(adapter->ixgbe_ieee_ets);
8286
8287#endif
Mark Rustad2a1a0912014-01-14 18:53:15 -08008288 iounmap(adapter->io_addr);
gouji-new9ce77662009-05-06 10:44:45 +00008289 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008290 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008291
Emil Tantilov849c4542010-06-03 16:53:41 +00008292 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008293
Auke Kok9a799d72007-09-15 14:07:45 -07008294 free_netdev(netdev);
8295
Frans Pop19d5afd2009-10-02 10:04:12 -07008296 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008297
Auke Kok9a799d72007-09-15 14:07:45 -07008298 pci_disable_device(pdev);
8299}
8300
8301/**
8302 * ixgbe_io_error_detected - called when PCI error is detected
8303 * @pdev: Pointer to PCI device
8304 * @state: The current pci connection state
8305 *
8306 * This function is called after a PCI bus error affecting
8307 * this device has been detected.
8308 */
8309static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008310 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07008311{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008312 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8313 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008314
Greg Rose83c61fa2011-09-07 05:59:35 +00008315#ifdef CONFIG_PCI_IOV
8316 struct pci_dev *bdev, *vfdev;
8317 u32 dw0, dw1, dw2, dw3;
8318 int vf, pos;
8319 u16 req_id, pf_func;
8320
8321 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
8322 adapter->num_vfs == 0)
8323 goto skip_bad_vf_detection;
8324
8325 bdev = pdev->bus->self;
Yijing Wang62f87c02012-07-24 17:20:03 +08008326 while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
Greg Rose83c61fa2011-09-07 05:59:35 +00008327 bdev = bdev->bus->self;
8328
8329 if (!bdev)
8330 goto skip_bad_vf_detection;
8331
8332 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
8333 if (!pos)
8334 goto skip_bad_vf_detection;
8335
8336 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
8337 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
8338 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
8339 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
8340
8341 req_id = dw1 >> 16;
8342 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
8343 if (!(req_id & 0x0080))
8344 goto skip_bad_vf_detection;
8345
8346 pf_func = req_id & 0x01;
8347 if ((pf_func & 1) == (pdev->devfn & 1)) {
8348 unsigned int device_id;
8349
8350 vf = (req_id & 0x7F) >> 1;
8351 e_dev_err("VF %d has caused a PCIe error\n", vf);
8352 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
8353 "%8.8x\tdw3: %8.8x\n",
8354 dw0, dw1, dw2, dw3);
8355 switch (adapter->hw.mac.type) {
8356 case ixgbe_mac_82599EB:
8357 device_id = IXGBE_82599_VF_DEVICE_ID;
8358 break;
8359 case ixgbe_mac_X540:
8360 device_id = IXGBE_X540_VF_DEVICE_ID;
8361 break;
8362 default:
8363 device_id = 0;
8364 break;
8365 }
8366
8367 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00008368 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00008369 while (vfdev) {
8370 if (vfdev->devfn == (req_id & 0xFF))
8371 break;
Jon Mason36e90312012-07-19 21:02:09 +00008372 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00008373 device_id, vfdev);
8374 }
8375 /*
8376 * There's a slim chance the VF could have been hot plugged,
8377 * so if it is no longer present we don't need to issue the
8378 * VFLR. Just clean up the AER in that case.
8379 */
8380 if (vfdev) {
8381 e_dev_err("Issuing VFLR to VF %d\n", vf);
8382 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
Greg Roseb4fafbe2012-12-13 01:14:06 +00008383 /* Free device reference count */
8384 pci_dev_put(vfdev);
Greg Rose83c61fa2011-09-07 05:59:35 +00008385 }
8386
8387 pci_cleanup_aer_uncorrect_error_status(pdev);
8388 }
8389
8390 /*
8391 * Even though the error may have occurred on the other port
8392 * we still need to increment the vf error reference count for
8393 * both ports because the I/O resume function will be called
8394 * for both of them.
8395 */
8396 adapter->vferr_refcount++;
8397
8398 return PCI_ERS_RESULT_RECOVERED;
8399
8400skip_bad_vf_detection:
8401#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07008402 netif_device_detach(netdev);
8403
Breno Leitao3044b8d2009-05-06 10:44:26 +00008404 if (state == pci_channel_io_perm_failure)
8405 return PCI_ERS_RESULT_DISCONNECT;
8406
Auke Kok9a799d72007-09-15 14:07:45 -07008407 if (netif_running(netdev))
8408 ixgbe_down(adapter);
8409 pci_disable_device(pdev);
8410
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008411 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07008412 return PCI_ERS_RESULT_NEED_RESET;
8413}
8414
8415/**
8416 * ixgbe_io_slot_reset - called after the pci bus has been reset.
8417 * @pdev: Pointer to PCI device
8418 *
8419 * Restart the card from scratch, as if from a cold-boot.
8420 */
8421static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
8422{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008423 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008424 pci_ers_result_t result;
8425 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07008426
gouji-new9ce77662009-05-06 10:44:45 +00008427 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008428 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008429 result = PCI_ERS_RESULT_DISCONNECT;
8430 } else {
8431 pci_set_master(pdev);
8432 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00008433 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008434
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07008435 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008436
8437 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00008438 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008439 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07008440 }
Auke Kok9a799d72007-09-15 14:07:45 -07008441
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008442 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8443 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008444 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
8445 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008446 /* non-fatal, continue */
8447 }
Auke Kok9a799d72007-09-15 14:07:45 -07008448
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008449 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07008450}
8451
8452/**
8453 * ixgbe_io_resume - called when traffic can start flowing again.
8454 * @pdev: Pointer to PCI device
8455 *
8456 * This callback is called when the error recovery driver tells us that
8457 * its OK to resume normal operation.
8458 */
8459static void ixgbe_io_resume(struct pci_dev *pdev)
8460{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008461 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8462 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008463
Greg Rose83c61fa2011-09-07 05:59:35 +00008464#ifdef CONFIG_PCI_IOV
8465 if (adapter->vferr_refcount) {
8466 e_info(drv, "Resuming after VF err\n");
8467 adapter->vferr_refcount--;
8468 return;
8469 }
8470
8471#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00008472 if (netif_running(netdev))
8473 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008474
8475 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008476}
8477
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07008478static const struct pci_error_handlers ixgbe_err_handler = {
Auke Kok9a799d72007-09-15 14:07:45 -07008479 .error_detected = ixgbe_io_error_detected,
8480 .slot_reset = ixgbe_io_slot_reset,
8481 .resume = ixgbe_io_resume,
8482};
8483
8484static struct pci_driver ixgbe_driver = {
8485 .name = ixgbe_driver_name,
8486 .id_table = ixgbe_pci_tbl,
8487 .probe = ixgbe_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05008488 .remove = ixgbe_remove,
Auke Kok9a799d72007-09-15 14:07:45 -07008489#ifdef CONFIG_PM
8490 .suspend = ixgbe_suspend,
8491 .resume = ixgbe_resume,
8492#endif
8493 .shutdown = ixgbe_shutdown,
Greg Roseda36b642012-12-11 08:26:43 +00008494 .sriov_configure = ixgbe_pci_sriov_configure,
Auke Kok9a799d72007-09-15 14:07:45 -07008495 .err_handler = &ixgbe_err_handler
8496};
8497
8498/**
8499 * ixgbe_init_module - Driver Registration Routine
8500 *
8501 * ixgbe_init_module is the first routine called when the driver is
8502 * loaded. All it does is register with the PCI subsystem.
8503 **/
8504static int __init ixgbe_init_module(void)
8505{
8506 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00008507 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00008508 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07008509
Catherine Sullivan00949162012-08-10 01:59:10 +00008510 ixgbe_dbg_init();
Catherine Sullivan00949162012-08-10 01:59:10 +00008511
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008512 ret = pci_register_driver(&ixgbe_driver);
8513 if (ret) {
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008514 ixgbe_dbg_exit();
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008515 return ret;
8516 }
8517
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008518#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008519 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008520#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008521
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008522 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07008523}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008524
Auke Kok9a799d72007-09-15 14:07:45 -07008525module_init(ixgbe_init_module);
8526
8527/**
8528 * ixgbe_exit_module - Driver Exit Cleanup Routine
8529 *
8530 * ixgbe_exit_module is called just before the driver is removed
8531 * from memory.
8532 **/
8533static void __exit ixgbe_exit_module(void)
8534{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008535#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008536 dca_unregister_notify(&dca_notifier);
8537#endif
Auke Kok9a799d72007-09-15 14:07:45 -07008538 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +00008539
Catherine Sullivan00949162012-08-10 01:59:10 +00008540 ixgbe_dbg_exit();
Catherine Sullivan00949162012-08-10 01:59:10 +00008541
Eric Dumazet1a515022010-11-16 19:26:42 -08008542 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07008543}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008544
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008545#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008546static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008547 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008548{
8549 int ret_val;
8550
8551 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008552 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008553
8554 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
8555}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008556
Alexander Duyckb4533682009-03-31 21:32:42 +00008557#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00008558
Auke Kok9a799d72007-09-15 14:07:45 -07008559module_exit(ixgbe_exit_module);
8560
8561/* ixgbe_main.c */