blob: 24538cb0f8565ef34c0fa19083edce06d1929bed [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad0391bbe2014-02-28 15:48:55 -08004 Copyright(c) 1999 - 2014 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Auke Kok9a799d72007-09-15 14:07:45 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include <linux/types.h>
30#include <linux/module.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/vmalloc.h>
34#include <linux/string.h>
35#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000036#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070037#include <linux/ip.h>
38#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000039#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000040#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070041#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070043#include <net/checksum.h>
44#include <net/ip6_checksum.h>
45#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000046#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070047#include <linux/if_vlan.h>
John Fastabend2a47fa42013-11-06 09:54:52 -080048#include <linux/if_macvlan.h>
John Fastabend815cccb2012-10-24 08:13:09 +000049#include <linux/if_bridge.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040050#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000051#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070052
53#include "ixgbe.h"
54#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000055#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000056#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070057
58char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070059static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000060 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000061#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000062char ixgbe_default_device_descr[] =
63 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000064#else
65static char ixgbe_default_device_descr[] =
66 "Intel(R) 10 Gigabit Network Connection";
67#endif
Don Skidmoref341c4e2014-01-17 01:21:37 -080068#define DRV_VERSION "3.19.1-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070069const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000070static const char ixgbe_copyright[] =
Mark Rustad0391bbe2014-02-28 15:48:55 -080071 "Copyright (c) 1999-2014 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070072
73static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070074 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000075 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e2010-11-16 19:27:16 -080076 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070077};
78
79/* ixgbe_pci_tbl - PCI Device ID Table
80 *
81 * Wildcard entries (PCI_ANY_ID) should come last
82 * Last entry must be all 0s
83 *
84 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
85 * Class, Class Mask, private data (not used) }
86 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000087static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000088 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
89 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Don Skidmore8f583322013-07-27 06:25:38 +0000114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +0000117 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
Auke Kok9a799d72007-09-15 14:07:45 -0700118 /* required last entry */
119 {0, }
120};
121MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
122
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400123#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800124static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000125 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800126static struct notifier_block dca_notifier = {
127 .notifier_call = ixgbe_notify_dca,
128 .next = NULL,
129 .priority = 0
130};
131#endif
132
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000133#ifdef CONFIG_PCI_IOV
134static unsigned int max_vfs;
135module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000136MODULE_PARM_DESC(max_vfs,
Jacob Keller170e8542013-11-09 04:52:32 -0800137 "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 +0000138#endif /* CONFIG_PCI_IOV */
139
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000140static unsigned int allow_unsupported_sfp;
141module_param(allow_unsupported_sfp, uint, 0);
142MODULE_PARM_DESC(allow_unsupported_sfp,
143 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
144
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000145#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
146static int debug = -1;
147module_param(debug, int, 0);
148MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
149
Auke Kok9a799d72007-09-15 14:07:45 -0700150MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
151MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
152MODULE_LICENSE("GPL");
153MODULE_VERSION(DRV_VERSION);
154
Mark Rustad14438462014-02-28 15:48:57 -0800155static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev);
156
Jacob Kellerb8e82002013-04-09 07:20:09 +0000157static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter *adapter,
158 u32 reg, u16 *value)
159{
Jacob Kellerb8e82002013-04-09 07:20:09 +0000160 struct pci_dev *parent_dev;
161 struct pci_bus *parent_bus;
162
163 parent_bus = adapter->pdev->bus->parent;
164 if (!parent_bus)
165 return -1;
166
167 parent_dev = parent_bus->self;
168 if (!parent_dev)
169 return -1;
170
Yijing Wangc0798ed2013-09-04 17:30:08 +0000171 if (!pci_is_pcie(parent_dev))
Jacob Kellerb8e82002013-04-09 07:20:09 +0000172 return -1;
173
Yijing Wangc0798ed2013-09-04 17:30:08 +0000174 pcie_capability_read_word(parent_dev, reg, value);
Mark Rustad14438462014-02-28 15:48:57 -0800175 if (*value == IXGBE_FAILED_READ_CFG_WORD &&
176 ixgbe_check_cfg_remove(&adapter->hw, parent_dev))
177 return -1;
Jacob Kellerb8e82002013-04-09 07:20:09 +0000178 return 0;
179}
180
181static s32 ixgbe_get_parent_bus_info(struct ixgbe_adapter *adapter)
182{
183 struct ixgbe_hw *hw = &adapter->hw;
184 u16 link_status = 0;
185 int err;
186
187 hw->bus.type = ixgbe_bus_type_pci_express;
188
189 /* Get the negotiated link width and speed from PCI config space of the
190 * parent, as this device is behind a switch
191 */
192 err = ixgbe_read_pci_cfg_word_parent(adapter, 18, &link_status);
193
194 /* assume caller will handle error case */
195 if (err)
196 return err;
197
198 hw->bus.width = ixgbe_convert_bus_width(link_status);
199 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
200
201 return 0;
202}
203
Jacob Kellere027d1a2013-07-31 06:53:31 +0000204/**
205 * ixgbe_check_from_parent - Determine whether PCIe info should come from parent
206 * @hw: hw specific details
207 *
208 * This function is used by probe to determine whether a device's PCI-Express
209 * bandwidth details should be gathered from the parent bus instead of from the
210 * device. Used to ensure that various locations all have the correct device ID
211 * checks.
212 */
213static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw *hw)
214{
215 switch (hw->device_id) {
216 case IXGBE_DEV_ID_82599_SFP_SF_QP:
Don Skidmore8f583322013-07-27 06:25:38 +0000217 case IXGBE_DEV_ID_82599_QSFP_SF_QP:
Jacob Kellere027d1a2013-07-31 06:53:31 +0000218 return true;
219 default:
220 return false;
221 }
222}
223
224static void ixgbe_check_minimum_link(struct ixgbe_adapter *adapter,
225 int expected_gts)
226{
227 int max_gts = 0;
228 enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
229 enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
230 struct pci_dev *pdev;
231
232 /* determine whether to use the the parent device
233 */
234 if (ixgbe_pcie_from_parent(&adapter->hw))
235 pdev = adapter->pdev->bus->parent->self;
236 else
237 pdev = adapter->pdev;
238
239 if (pcie_get_minimum_link(pdev, &speed, &width) ||
240 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
241 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
242 return;
243 }
244
245 switch (speed) {
246 case PCIE_SPEED_2_5GT:
247 /* 8b/10b encoding reduces max throughput by 20% */
248 max_gts = 2 * width;
249 break;
250 case PCIE_SPEED_5_0GT:
251 /* 8b/10b encoding reduces max throughput by 20% */
252 max_gts = 4 * width;
253 break;
254 case PCIE_SPEED_8_0GT:
Jacob Keller9f0a4332013-10-18 05:09:19 +0000255 /* 128b/130b encoding reduces throughput by less than 2% */
Jacob Kellere027d1a2013-07-31 06:53:31 +0000256 max_gts = 8 * width;
257 break;
258 default:
259 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
260 return;
261 }
262
263 e_dev_info("PCI Express bandwidth of %dGT/s available\n",
264 max_gts);
265 e_dev_info("(Speed:%s, Width: x%d, Encoding Loss:%s)\n",
266 (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
267 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
268 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
269 "Unknown"),
270 width,
271 (speed == PCIE_SPEED_2_5GT ? "20%" :
272 speed == PCIE_SPEED_5_0GT ? "20%" :
Jacob Keller9f0a4332013-10-18 05:09:19 +0000273 speed == PCIE_SPEED_8_0GT ? "<2%" :
Jacob Kellere027d1a2013-07-31 06:53:31 +0000274 "Unknown"));
275
276 if (max_gts < expected_gts) {
277 e_dev_warn("This is not sufficient for optimal performance of this card.\n");
278 e_dev_warn("For optimal performance, at least %dGT/s of bandwidth is required.\n",
279 expected_gts);
280 e_dev_warn("A slot with more lanes and/or higher speed is suggested.\n");
281 }
282}
283
Alexander Duyck70864002011-04-27 09:13:56 +0000284static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
285{
286 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
Mark Rustad09f40ae2014-01-14 18:53:11 -0800287 !test_bit(__IXGBE_REMOVING, &adapter->state) &&
Alexander Duyck70864002011-04-27 09:13:56 +0000288 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
289 schedule_work(&adapter->service_task);
290}
291
Mark Rustad2a1a0912014-01-14 18:53:15 -0800292static void ixgbe_remove_adapter(struct ixgbe_hw *hw)
293{
294 struct ixgbe_adapter *adapter = hw->back;
295
296 if (!hw->hw_addr)
297 return;
298 hw->hw_addr = NULL;
299 e_dev_err("Adapter removed\n");
Mark Rustadb0483c82014-01-14 18:53:17 -0800300 ixgbe_service_event_schedule(adapter);
Mark Rustad2a1a0912014-01-14 18:53:15 -0800301}
302
303void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg)
304{
305 u32 value;
306
307 /* The following check not only optimizes a bit by not
308 * performing a read on the status register when the
309 * register just read was a status register read that
310 * returned IXGBE_FAILED_READ_REG. It also blocks any
311 * potential recursion.
312 */
313 if (reg == IXGBE_STATUS) {
314 ixgbe_remove_adapter(hw);
315 return;
316 }
317 value = ixgbe_read_reg(hw, IXGBE_STATUS);
318 if (value == IXGBE_FAILED_READ_REG)
319 ixgbe_remove_adapter(hw);
320}
321
Mark Rustad14438462014-02-28 15:48:57 -0800322static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev)
323{
324 u16 value;
325
326 pci_read_config_word(pdev, PCI_VENDOR_ID, &value);
327 if (value == IXGBE_FAILED_READ_CFG_WORD) {
328 ixgbe_remove_adapter(hw);
329 return true;
330 }
331 return false;
332}
333
334u16 ixgbe_read_pci_cfg_word(struct ixgbe_hw *hw, u32 reg)
335{
336 struct ixgbe_adapter *adapter = hw->back;
337 u16 value;
338
339 if (ixgbe_removed(hw->hw_addr))
340 return IXGBE_FAILED_READ_CFG_WORD;
341 pci_read_config_word(adapter->pdev, reg, &value);
342 if (value == IXGBE_FAILED_READ_CFG_WORD &&
343 ixgbe_check_cfg_remove(hw, adapter->pdev))
344 return IXGBE_FAILED_READ_CFG_WORD;
345 return value;
346}
347
348#ifdef CONFIG_PCI_IOV
349static u32 ixgbe_read_pci_cfg_dword(struct ixgbe_hw *hw, u32 reg)
350{
351 struct ixgbe_adapter *adapter = hw->back;
352 u32 value;
353
354 if (ixgbe_removed(hw->hw_addr))
355 return IXGBE_FAILED_READ_CFG_DWORD;
356 pci_read_config_dword(adapter->pdev, reg, &value);
357 if (value == IXGBE_FAILED_READ_CFG_DWORD &&
358 ixgbe_check_cfg_remove(hw, adapter->pdev))
359 return IXGBE_FAILED_READ_CFG_DWORD;
360 return value;
361}
362#endif /* CONFIG_PCI_IOV */
363
Jacob Kellered192312014-02-22 01:23:53 +0000364void ixgbe_write_pci_cfg_word(struct ixgbe_hw *hw, u32 reg, u16 value)
365{
366 struct ixgbe_adapter *adapter = hw->back;
367
368 if (ixgbe_removed(hw->hw_addr))
369 return;
370 pci_write_config_word(adapter->pdev, reg, value);
371}
372
Alexander Duyck70864002011-04-27 09:13:56 +0000373static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
374{
375 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
376
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000377 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000378 smp_mb__before_clear_bit();
379 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
380}
381
Taku Izumidcd79ae2010-04-27 14:39:53 +0000382struct ixgbe_reg_info {
383 u32 ofs;
384 char *name;
385};
386
387static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
388
389 /* General Registers */
390 {IXGBE_CTRL, "CTRL"},
391 {IXGBE_STATUS, "STATUS"},
392 {IXGBE_CTRL_EXT, "CTRL_EXT"},
393
394 /* Interrupt Registers */
395 {IXGBE_EICR, "EICR"},
396
397 /* RX Registers */
398 {IXGBE_SRRCTL(0), "SRRCTL"},
399 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
400 {IXGBE_RDLEN(0), "RDLEN"},
401 {IXGBE_RDH(0), "RDH"},
402 {IXGBE_RDT(0), "RDT"},
403 {IXGBE_RXDCTL(0), "RXDCTL"},
404 {IXGBE_RDBAL(0), "RDBAL"},
405 {IXGBE_RDBAH(0), "RDBAH"},
406
407 /* TX Registers */
408 {IXGBE_TDBAL(0), "TDBAL"},
409 {IXGBE_TDBAH(0), "TDBAH"},
410 {IXGBE_TDLEN(0), "TDLEN"},
411 {IXGBE_TDH(0), "TDH"},
412 {IXGBE_TDT(0), "TDT"},
413 {IXGBE_TXDCTL(0), "TXDCTL"},
414
415 /* List Terminator */
416 {}
417};
418
419
420/*
421 * ixgbe_regdump - register printout routine
422 */
423static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
424{
425 int i = 0, j = 0;
426 char rname[16];
427 u32 regs[64];
428
429 switch (reginfo->ofs) {
430 case IXGBE_SRRCTL(0):
431 for (i = 0; i < 64; i++)
432 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
433 break;
434 case IXGBE_DCA_RXCTRL(0):
435 for (i = 0; i < 64; i++)
436 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
437 break;
438 case IXGBE_RDLEN(0):
439 for (i = 0; i < 64; i++)
440 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
441 break;
442 case IXGBE_RDH(0):
443 for (i = 0; i < 64; i++)
444 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
445 break;
446 case IXGBE_RDT(0):
447 for (i = 0; i < 64; i++)
448 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
449 break;
450 case IXGBE_RXDCTL(0):
451 for (i = 0; i < 64; i++)
452 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
453 break;
454 case IXGBE_RDBAL(0):
455 for (i = 0; i < 64; i++)
456 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
457 break;
458 case IXGBE_RDBAH(0):
459 for (i = 0; i < 64; i++)
460 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
461 break;
462 case IXGBE_TDBAL(0):
463 for (i = 0; i < 64; i++)
464 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
465 break;
466 case IXGBE_TDBAH(0):
467 for (i = 0; i < 64; i++)
468 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
469 break;
470 case IXGBE_TDLEN(0):
471 for (i = 0; i < 64; i++)
472 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
473 break;
474 case IXGBE_TDH(0):
475 for (i = 0; i < 64; i++)
476 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
477 break;
478 case IXGBE_TDT(0):
479 for (i = 0; i < 64; i++)
480 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
481 break;
482 case IXGBE_TXDCTL(0):
483 for (i = 0; i < 64; i++)
484 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
485 break;
486 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000487 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000488 IXGBE_READ_REG(hw, reginfo->ofs));
489 return;
490 }
491
492 for (i = 0; i < 8; i++) {
493 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000494 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000495 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000496 pr_cont(" %08x", regs[i*8+j]);
497 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000498 }
499
500}
501
502/*
503 * ixgbe_dump - Print registers, tx-rings and rx-rings
504 */
505static void ixgbe_dump(struct ixgbe_adapter *adapter)
506{
507 struct net_device *netdev = adapter->netdev;
508 struct ixgbe_hw *hw = &adapter->hw;
509 struct ixgbe_reg_info *reginfo;
510 int n = 0;
511 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000512 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000513 union ixgbe_adv_tx_desc *tx_desc;
514 struct my_u0 { u64 a; u64 b; } *u0;
515 struct ixgbe_ring *rx_ring;
516 union ixgbe_adv_rx_desc *rx_desc;
517 struct ixgbe_rx_buffer *rx_buffer_info;
518 u32 staterr;
519 int i = 0;
520
521 if (!netif_msg_hw(adapter))
522 return;
523
524 /* Print netdevice Info */
525 if (netdev) {
526 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000527 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000528 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000529 pr_info("%-15s %016lX %016lX %016lX\n",
530 netdev->name,
531 netdev->state,
532 netdev->trans_start,
533 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000534 }
535
536 /* Print Registers */
537 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000538 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000539 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
540 reginfo->name; reginfo++) {
541 ixgbe_regdump(hw, reginfo);
542 }
543
544 /* Print TX Ring Summary */
545 if (!netdev || !netif_running(netdev))
546 goto exit;
547
548 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000549 pr_info(" %s %s %s %s\n",
550 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
551 "leng", "ntw", "timestamp");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000552 for (n = 0; n < adapter->num_tx_queues; n++) {
553 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000554 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Josh Hay8ad88e32012-09-26 05:59:41 +0000555 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000556 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000557 (u64)dma_unmap_addr(tx_buffer, dma),
558 dma_unmap_len(tx_buffer, len),
559 tx_buffer->next_to_watch,
560 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000561 }
562
563 /* Print TX Rings */
564 if (!netif_msg_tx_done(adapter))
565 goto rx_ring_summary;
566
567 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
568
569 /* Transmit Descriptor Formats
570 *
Josh Hay39ac8682012-09-26 05:59:36 +0000571 * 82598 Advanced Transmit Descriptor
Taku Izumidcd79ae2010-04-27 14:39:53 +0000572 * +--------------------------------------------------------------+
573 * 0 | Buffer Address [63:0] |
574 * +--------------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000575 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000576 * +--------------------------------------------------------------+
577 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000578 *
579 * 82598 Advanced Transmit Descriptor (Write-Back Format)
580 * +--------------------------------------------------------------+
581 * 0 | RSV [63:0] |
582 * +--------------------------------------------------------------+
583 * 8 | RSV | STA | NXTSEQ |
584 * +--------------------------------------------------------------+
585 * 63 36 35 32 31 0
586 *
587 * 82599+ Advanced Transmit Descriptor
588 * +--------------------------------------------------------------+
589 * 0 | Buffer Address [63:0] |
590 * +--------------------------------------------------------------+
591 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
592 * +--------------------------------------------------------------+
593 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
594 *
595 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
596 * +--------------------------------------------------------------+
597 * 0 | RSV [63:0] |
598 * +--------------------------------------------------------------+
599 * 8 | RSV | STA | RSV |
600 * +--------------------------------------------------------------+
601 * 63 36 35 32 31 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000602 */
603
604 for (n = 0; n < adapter->num_tx_queues; n++) {
605 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000606 pr_info("------------------------------------\n");
607 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
608 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000609 pr_info("%s%s %s %s %s %s\n",
610 "T [desc] [address 63:0 ] ",
611 "[PlPOIdStDDt Ln] [bi->dma ] ",
612 "leng", "ntw", "timestamp", "bi->skb");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000613
614 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000615 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000616 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000617 u0 = (struct my_u0 *)tx_desc;
Josh Hay8ad88e32012-09-26 05:59:41 +0000618 if (dma_unmap_len(tx_buffer, len) > 0) {
619 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p",
620 i,
621 le64_to_cpu(u0->a),
622 le64_to_cpu(u0->b),
623 (u64)dma_unmap_addr(tx_buffer, dma),
Alexander Duyck729739b2012-02-08 07:51:06 +0000624 dma_unmap_len(tx_buffer, len),
Josh Hay8ad88e32012-09-26 05:59:41 +0000625 tx_buffer->next_to_watch,
626 (u64)tx_buffer->time_stamp,
627 tx_buffer->skb);
628 if (i == tx_ring->next_to_use &&
629 i == tx_ring->next_to_clean)
630 pr_cont(" NTC/U\n");
631 else if (i == tx_ring->next_to_use)
632 pr_cont(" NTU\n");
633 else if (i == tx_ring->next_to_clean)
634 pr_cont(" NTC\n");
635 else
636 pr_cont("\n");
637
638 if (netif_msg_pktdata(adapter) &&
639 tx_buffer->skb)
640 print_hex_dump(KERN_INFO, "",
641 DUMP_PREFIX_ADDRESS, 16, 1,
642 tx_buffer->skb->data,
643 dma_unmap_len(tx_buffer, len),
644 true);
645 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000646 }
647 }
648
649 /* Print RX Rings Summary */
650rx_ring_summary:
651 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000652 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000653 for (n = 0; n < adapter->num_rx_queues; n++) {
654 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000655 pr_info("%5d %5X %5X\n",
656 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000657 }
658
659 /* Print RX Rings */
660 if (!netif_msg_rx_status(adapter))
661 goto exit;
662
663 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
664
Josh Hay39ac8682012-09-26 05:59:36 +0000665 /* Receive Descriptor Formats
666 *
667 * 82598 Advanced Receive Descriptor (Read) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000668 * 63 1 0
669 * +-----------------------------------------------------+
670 * 0 | Packet Buffer Address [63:1] |A0/NSE|
671 * +----------------------------------------------+------+
672 * 8 | Header Buffer Address [63:1] | DD |
673 * +-----------------------------------------------------+
674 *
675 *
Josh Hay39ac8682012-09-26 05:59:36 +0000676 * 82598 Advanced Receive Descriptor (Write-Back) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000677 *
678 * 63 48 47 32 31 30 21 20 16 15 4 3 0
679 * +------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000680 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
681 * | Packet | IP | | | | Type | Type |
682 * | Checksum | Ident | | | | | |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000683 * +------------------------------------------------------+
684 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
685 * +------------------------------------------------------+
686 * 63 48 47 32 31 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000687 *
688 * 82599+ Advanced Receive Descriptor (Read) Format
689 * 63 1 0
690 * +-----------------------------------------------------+
691 * 0 | Packet Buffer Address [63:1] |A0/NSE|
692 * +----------------------------------------------+------+
693 * 8 | Header Buffer Address [63:1] | DD |
694 * +-----------------------------------------------------+
695 *
696 *
697 * 82599+ Advanced Receive Descriptor (Write-Back) Format
698 *
699 * 63 48 47 32 31 30 21 20 17 16 4 3 0
700 * +------------------------------------------------------+
701 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
702 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
703 * |/ Flow Dir Flt ID | | | | | |
704 * +------------------------------------------------------+
705 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
706 * +------------------------------------------------------+
707 * 63 48 47 32 31 20 19 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000708 */
Josh Hay39ac8682012-09-26 05:59:36 +0000709
Taku Izumidcd79ae2010-04-27 14:39:53 +0000710 for (n = 0; n < adapter->num_rx_queues; n++) {
711 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000712 pr_info("------------------------------------\n");
713 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
714 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000715 pr_info("%s%s%s",
716 "R [desc] [ PktBuf A0] ",
717 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000718 "<-- Adv Rx Read format\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000719 pr_info("%s%s%s",
720 "RWB[desc] [PcsmIpSHl PtRs] ",
721 "[vl er S cks ln] ---------------- [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000722 "<-- Adv Rx Write-Back format\n");
723
724 for (i = 0; i < rx_ring->count; i++) {
725 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000726 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000727 u0 = (struct my_u0 *)rx_desc;
728 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
729 if (staterr & IXGBE_RXD_STAT_DD) {
730 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000731 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000732 "%016llX ---------------- %p", i,
733 le64_to_cpu(u0->a),
734 le64_to_cpu(u0->b),
735 rx_buffer_info->skb);
736 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000737 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000738 "%016llX %016llX %p", i,
739 le64_to_cpu(u0->a),
740 le64_to_cpu(u0->b),
741 (u64)rx_buffer_info->dma,
742 rx_buffer_info->skb);
743
Emil Tantilov9c50c032012-07-26 01:21:24 +0000744 if (netif_msg_pktdata(adapter) &&
745 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000746 print_hex_dump(KERN_INFO, "",
747 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000748 page_address(rx_buffer_info->page) +
749 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000750 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000751 }
752 }
753
754 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000755 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000756 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000757 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000758 else
Joe Perchesc7689572010-09-07 21:35:17 +0000759 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000760
761 }
762 }
763
764exit:
765 return;
766}
767
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800768static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
769{
770 u32 ctrl_ext;
771
772 /* Let firmware take over control of h/w */
773 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
774 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000775 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800776}
777
778static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
779{
780 u32 ctrl_ext;
781
782 /* Let firmware know the driver has taken over */
783 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
784 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000785 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800786}
Auke Kok9a799d72007-09-15 14:07:45 -0700787
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000788/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000789 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
790 * @adapter: pointer to adapter struct
791 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
792 * @queue: queue to map the corresponding interrupt to
793 * @msix_vector: the vector to map to the corresponding queue
794 *
795 */
796static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000797 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700798{
799 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000800 struct ixgbe_hw *hw = &adapter->hw;
801 switch (hw->mac.type) {
802 case ixgbe_mac_82598EB:
803 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
804 if (direction == -1)
805 direction = 0;
806 index = (((direction * 64) + queue) >> 2) & 0x1F;
807 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
808 ivar &= ~(0xFF << (8 * (queue & 0x3)));
809 ivar |= (msix_vector << (8 * (queue & 0x3)));
810 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
811 break;
812 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800813 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000814 if (direction == -1) {
815 /* other causes */
816 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
817 index = ((queue & 1) * 8);
818 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
819 ivar &= ~(0xFF << index);
820 ivar |= (msix_vector << index);
821 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
822 break;
823 } else {
824 /* tx or rx causes */
825 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
826 index = ((16 * (queue & 1)) + (8 * direction));
827 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
828 ivar &= ~(0xFF << index);
829 ivar |= (msix_vector << index);
830 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
831 break;
832 }
833 default:
834 break;
835 }
Auke Kok9a799d72007-09-15 14:07:45 -0700836}
837
Alexander Duyckfe49f042009-06-04 16:00:09 +0000838static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000839 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000840{
841 u32 mask;
842
Alexander Duyckbd508172010-11-16 19:27:03 -0800843 switch (adapter->hw.mac.type) {
844 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000845 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
846 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800847 break;
848 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800849 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000850 mask = (qmask & 0xFFFFFFFF);
851 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
852 mask = (qmask >> 32);
853 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800854 break;
855 default:
856 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000857 }
858}
859
Alexander Duyck729739b2012-02-08 07:51:06 +0000860void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
861 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000862{
Alexander Duyck729739b2012-02-08 07:51:06 +0000863 if (tx_buffer->skb) {
864 dev_kfree_skb_any(tx_buffer->skb);
865 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000866 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000867 dma_unmap_addr(tx_buffer, dma),
868 dma_unmap_len(tx_buffer, len),
869 DMA_TO_DEVICE);
870 } else if (dma_unmap_len(tx_buffer, len)) {
871 dma_unmap_page(ring->dev,
872 dma_unmap_addr(tx_buffer, dma),
873 dma_unmap_len(tx_buffer, len),
874 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000875 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000876 tx_buffer->next_to_watch = NULL;
877 tx_buffer->skb = NULL;
878 dma_unmap_len_set(tx_buffer, len, 0);
879 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700880}
881
Alexander Duyck943561d2012-05-09 22:14:44 -0700882static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
883{
884 struct ixgbe_hw *hw = &adapter->hw;
885 struct ixgbe_hw_stats *hwstats = &adapter->stats;
886 int i;
887 u32 data;
888
889 if ((hw->fc.current_mode != ixgbe_fc_full) &&
890 (hw->fc.current_mode != ixgbe_fc_rx_pause))
891 return;
892
893 switch (hw->mac.type) {
894 case ixgbe_mac_82598EB:
895 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
896 break;
897 default:
898 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
899 }
900 hwstats->lxoffrxc += data;
901
902 /* refill credits (no tx hang) if we received xoff */
903 if (!data)
904 return;
905
906 for (i = 0; i < adapter->num_tx_queues; i++)
907 clear_bit(__IXGBE_HANG_CHECK_ARMED,
908 &adapter->tx_ring[i]->state);
909}
910
John Fastabendc84d3242010-11-16 19:27:12 -0800911static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700912{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700913 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800914 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800915 u32 xoff[8] = {0};
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000916 u8 tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800917 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700918 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700919
Alexander Duyck943561d2012-05-09 22:14:44 -0700920 if (adapter->ixgbe_ieee_pfc)
921 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800922
Alexander Duyck943561d2012-05-09 22:14:44 -0700923 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
924 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800925 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700926 }
John Fastabendc84d3242010-11-16 19:27:12 -0800927
928 /* update stats for each tc, only valid with PFC enabled */
929 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000930 u32 pxoffrxc;
931
John Fastabendc84d3242010-11-16 19:27:12 -0800932 switch (hw->mac.type) {
933 case ixgbe_mac_82598EB:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000934 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800935 break;
936 default:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000937 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800938 }
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000939 hwstats->pxoffrxc[i] += pxoffrxc;
940 /* Get the TC for given UP */
941 tc = netdev_get_prio_tc_map(adapter->netdev, i);
942 xoff[tc] += pxoffrxc;
Auke Kok9a799d72007-09-15 14:07:45 -0700943 }
944
John Fastabendc84d3242010-11-16 19:27:12 -0800945 /* disarm tx queues that have received xoff frames */
946 for (i = 0; i < adapter->num_tx_queues; i++) {
947 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendc84d3242010-11-16 19:27:12 -0800948
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000949 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800950 if (xoff[tc])
951 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
952 }
953}
954
955static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
956{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000957 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800958}
959
960static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
961{
John Fastabend2a47fa42013-11-06 09:54:52 -0800962 struct ixgbe_adapter *adapter;
963 struct ixgbe_hw *hw;
964 u32 head, tail;
John Fastabendc84d3242010-11-16 19:27:12 -0800965
John Fastabend2a47fa42013-11-06 09:54:52 -0800966 if (ring->l2_accel_priv)
967 adapter = ring->l2_accel_priv->real_adapter;
968 else
969 adapter = netdev_priv(ring->netdev);
970
971 hw = &adapter->hw;
972 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
973 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
John Fastabendc84d3242010-11-16 19:27:12 -0800974
975 if (head != tail)
976 return (head < tail) ?
977 tail - head : (tail + ring->count - head);
978
979 return 0;
980}
981
982static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
983{
984 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
985 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
986 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
987 bool ret = false;
988
989 clear_check_for_tx_hang(tx_ring);
990
991 /*
992 * Check for a hung queue, but be thorough. This verifies
993 * that a transmit has been completed since the previous
994 * check AND there is at least one packet pending. The
995 * ARMED bit is set to indicate a potential hang. The
996 * bit is cleared if a pause frame is received to remove
997 * false hang detection due to PFC or 802.3x frames. By
998 * requiring this to fail twice we avoid races with
999 * pfc clearing the ARMED bit and conditions where we
1000 * run the check_tx_hang logic with a transmit completion
1001 * pending but without time to complete it yet.
1002 */
1003 if ((tx_done_old == tx_done) && tx_pending) {
1004 /* make sure it is true for two checks in a row */
1005 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
1006 &tx_ring->state);
1007 } else {
1008 /* update completed stats and continue */
1009 tx_ring->tx_stats.tx_done_old = tx_done;
1010 /* reset the countdown */
1011 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
1012 }
1013
1014 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -07001015}
1016
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001017/**
1018 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
1019 * @adapter: driver private struct
1020 **/
1021static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
1022{
1023
1024 /* Do the reset outside of interrupt context */
1025 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1026 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Jacob Keller12ff3f32012-12-01 07:57:17 +00001027 e_warn(drv, "initiating reset due to tx timeout\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001028 ixgbe_service_event_schedule(adapter);
1029 }
1030}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001031
Auke Kok9a799d72007-09-15 14:07:45 -07001032/**
1033 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +00001034 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001035 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -07001036 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +00001037static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001038 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07001039{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001040 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001041 struct ixgbe_tx_buffer *tx_buffer;
1042 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001043 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +00001044 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +00001045 unsigned int i = tx_ring->next_to_clean;
1046
1047 if (test_bit(__IXGBE_DOWN, &adapter->state))
1048 return true;
Auke Kok9a799d72007-09-15 14:07:45 -07001049
Alexander Duyckd3d00232011-07-15 02:31:25 +00001050 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +00001051 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +00001052 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001053
Alexander Duyck729739b2012-02-08 07:51:06 +00001054 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001055 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -07001056
Alexander Duyckd3d00232011-07-15 02:31:25 +00001057 /* if next_to_watch is not set then there is no work pending */
1058 if (!eop_desc)
1059 break;
1060
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001061 /* prevent any other reads prior to eop_desc */
Alexander Duyck7e63bf42013-01-08 07:00:58 +00001062 read_barrier_depends();
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001063
Alexander Duyckd3d00232011-07-15 02:31:25 +00001064 /* if DD is not set pending work has not been completed */
1065 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
1066 break;
1067
Alexander Duyckd3d00232011-07-15 02:31:25 +00001068 /* clear next_to_watch to prevent false hangs */
1069 tx_buffer->next_to_watch = NULL;
1070
Alexander Duyck091a6242012-02-08 07:51:01 +00001071 /* update the statistics for this packet */
1072 total_bytes += tx_buffer->bytecount;
1073 total_packets += tx_buffer->gso_segs;
1074
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001075 /* free the skb */
1076 dev_kfree_skb_any(tx_buffer->skb);
1077
Alexander Duyck729739b2012-02-08 07:51:06 +00001078 /* unmap skb header data */
1079 dma_unmap_single(tx_ring->dev,
1080 dma_unmap_addr(tx_buffer, dma),
1081 dma_unmap_len(tx_buffer, len),
1082 DMA_TO_DEVICE);
1083
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001084 /* clear tx_buffer data */
1085 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +00001086 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001087
Alexander Duyck729739b2012-02-08 07:51:06 +00001088 /* unmap remaining buffers */
1089 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001090 tx_buffer++;
1091 tx_desc++;
1092 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00001093 if (unlikely(!i)) {
1094 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001095 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +00001096 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00001097 }
1098
Alexander Duyck729739b2012-02-08 07:51:06 +00001099 /* unmap any remaining paged data */
1100 if (dma_unmap_len(tx_buffer, len)) {
1101 dma_unmap_page(tx_ring->dev,
1102 dma_unmap_addr(tx_buffer, dma),
1103 dma_unmap_len(tx_buffer, len),
1104 DMA_TO_DEVICE);
1105 dma_unmap_len_set(tx_buffer, len, 0);
1106 }
1107 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001108
Alexander Duyck729739b2012-02-08 07:51:06 +00001109 /* move us one more past the eop_desc for start of next pkt */
1110 tx_buffer++;
1111 tx_desc++;
1112 i++;
1113 if (unlikely(!i)) {
1114 i -= tx_ring->count;
1115 tx_buffer = tx_ring->tx_buffer_info;
1116 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
1117 }
1118
1119 /* issue prefetch for next Tx descriptor */
1120 prefetch(tx_desc);
1121
1122 /* update budget accounting */
1123 budget--;
1124 } while (likely(budget));
1125
1126 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07001127 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001128 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -08001129 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +00001130 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001131 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001132 q_vector->tx.total_bytes += total_bytes;
1133 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -08001134
John Fastabendc84d3242010-11-16 19:27:12 -08001135 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -08001136 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -08001137 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -08001138 e_err(drv, "Detected Tx Unit Hang\n"
1139 " Tx Queue <%d>\n"
1140 " TDH, TDT <%x>, <%x>\n"
1141 " next_to_use <%x>\n"
1142 " next_to_clean <%x>\n"
1143 "tx_buffer_info[next_to_clean]\n"
1144 " time_stamp <%lx>\n"
1145 " jiffies <%lx>\n",
1146 tx_ring->queue_index,
1147 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
1148 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +00001149 tx_ring->next_to_use, i,
1150 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -08001151
1152 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1153
1154 e_info(probe,
1155 "tx hang %d detected on queue %d, resetting adapter\n",
1156 adapter->tx_timeout_count + 1, tx_ring->queue_index);
1157
1158 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001159 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -08001160
1161 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +00001162 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -08001163 }
Auke Kok9a799d72007-09-15 14:07:45 -07001164
Alexander Duyckb2d96e02012-02-07 08:14:33 +00001165 netdev_tx_completed_queue(txring_txq(tx_ring),
1166 total_packets, total_bytes);
1167
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001168#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +00001169 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001170 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001171 /* Make sure that anybody stopping the queue after this
1172 * sees the new next_to_clean.
1173 */
1174 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +00001175 if (__netif_subqueue_stopped(tx_ring->netdev,
1176 tx_ring->queue_index)
1177 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
1178 netif_wake_subqueue(tx_ring->netdev,
1179 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08001180 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08001181 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001182 }
Auke Kok9a799d72007-09-15 14:07:45 -07001183
Alexander Duyck59224552011-08-31 00:01:06 +00001184 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001185}
1186
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001187#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001188static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001189 struct ixgbe_ring *tx_ring,
1190 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001191{
Don Skidmoreee5f7842009-11-06 12:56:20 +00001192 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001193 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
1194 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001195
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001196 switch (hw->mac.type) {
1197 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001198 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001199 break;
1200 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001201 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001202 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
1203 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
1204 break;
1205 default:
1206 /* for unknown hardware do not write register */
1207 return;
1208 }
1209
1210 /*
1211 * We can enable relaxed ordering for reads, but not writes when
1212 * DCA is enabled. This is due to a known issue in some chipsets
1213 * which will cause the DCA tag to be cleared.
1214 */
1215 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1216 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
1217 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
1218
1219 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
1220}
1221
1222static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
1223 struct ixgbe_ring *rx_ring,
1224 int cpu)
1225{
1226 struct ixgbe_hw *hw = &adapter->hw;
1227 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
1228 u8 reg_idx = rx_ring->reg_idx;
1229
1230
1231 switch (hw->mac.type) {
1232 case ixgbe_mac_82599EB:
1233 case ixgbe_mac_X540:
1234 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001235 break;
1236 default:
1237 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001238 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001239
1240 /*
1241 * We can enable relaxed ordering for reads, but not writes when
1242 * DCA is enabled. This is due to a known issue in some chipsets
1243 * which will cause the DCA tag to be cleared.
1244 */
1245 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001246 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
1247
1248 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001249}
1250
1251static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
1252{
1253 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001254 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001255 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001256
1257 if (q_vector->cpu == cpu)
1258 goto out_no_update;
1259
Alexander Duycka5579282012-02-08 07:50:04 +00001260 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001261 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001262
Alexander Duycka5579282012-02-08 07:50:04 +00001263 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001264 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001265
1266 q_vector->cpu = cpu;
1267out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001268 put_cpu();
1269}
1270
1271static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1272{
1273 int i;
1274
1275 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1276 return;
1277
Alexander Duycke35ec122009-05-21 13:07:12 +00001278 /* always use CB2 mode, difference is masked in the CB driver */
1279 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1280
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001281 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001282 adapter->q_vector[i]->cpu = -1;
1283 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001284 }
1285}
1286
1287static int __ixgbe_notify_dca(struct device *dev, void *data)
1288{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001289 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001290 unsigned long event = *(unsigned long *)data;
1291
Don Skidmore2a72c312011-07-20 02:27:05 +00001292 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001293 return 0;
1294
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001295 switch (event) {
1296 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001297 /* if we're already enabled, don't do it again */
1298 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1299 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001300 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001301 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001302 ixgbe_setup_dca(adapter);
1303 break;
1304 }
1305 /* Fall Through since DCA is disabled. */
1306 case DCA_PROVIDER_REMOVE:
1307 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1308 dca_remove_requester(dev);
1309 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1310 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1311 }
1312 break;
1313 }
1314
Denis V. Lunev652f0932008-03-27 14:39:17 +03001315 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001316}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001317
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001318#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001319static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1320 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001321 struct sk_buff *skb)
1322{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001323 if (ring->netdev->features & NETIF_F_RXHASH)
Tom Herbert38da98532013-12-18 16:47:04 +00001324 skb_set_hash(skb,
1325 le32_to_cpu(rx_desc->wb.lower.hi_dword.rss),
1326 PKT_HASH_TYPE_L3);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001327}
1328
Alexander Duyckf8003262012-03-03 02:35:52 +00001329#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001330/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001331 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001332 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001333 * @rx_desc: advanced rx descriptor
1334 *
1335 * Returns : true if it is FCoE pkt
1336 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001337static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001338 union ixgbe_adv_rx_desc *rx_desc)
1339{
1340 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1341
Alexander Duyck57efd442012-06-25 21:54:46 +00001342 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001343 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1344 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1345 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1346}
1347
Alexander Duyckf8003262012-03-03 02:35:52 +00001348#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001349/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001350 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001351 * @ring: structure containing ring specific data
1352 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001353 * @skb: skb currently being received and modified
1354 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001355static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001356 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001357 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001358{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001359 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001360
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001361 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001362 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001363 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001364
1365 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001366 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1367 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001368 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001369 return;
1370 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001371
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001372 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001373 return;
1374
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001375 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001376 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001377
1378 /*
1379 * 82599 errata, UDP frames with a 0 checksum can be marked as
1380 * checksum errors.
1381 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001382 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1383 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001384 return;
1385
Alexander Duyck8a0da212012-01-31 02:59:49 +00001386 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001387 return;
1388 }
1389
Auke Kok9a799d72007-09-15 14:07:45 -07001390 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001391 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001392}
1393
Alexander Duyck84ea2592010-11-16 19:26:49 -08001394static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001395{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001396 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001397
1398 /* update next to alloc since we have filled the ring */
1399 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001400 /*
1401 * Force memory writes to complete before letting h/w
1402 * know there are new descriptors to fetch. (Only
1403 * applicable for weak-ordered memory model archs,
1404 * such as IA-64).
1405 */
1406 wmb();
Mark Rustad84227bc2014-01-14 18:53:13 -08001407 ixgbe_write_tail(rx_ring, val);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001408}
1409
Alexander Duyckf990b792012-01-31 02:59:34 +00001410static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1411 struct ixgbe_rx_buffer *bi)
1412{
1413 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001414 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001415
Alexander Duyckf8003262012-03-03 02:35:52 +00001416 /* since we are recycling buffers we should seldom need to alloc */
1417 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001418 return true;
1419
Alexander Duyckf8003262012-03-03 02:35:52 +00001420 /* alloc new page for storage */
1421 if (likely(!page)) {
Mel Gorman06140022012-07-31 16:44:24 -07001422 page = __skb_alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP,
1423 bi->skb, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001424 if (unlikely(!page)) {
1425 rx_ring->rx_stats.alloc_rx_page_failed++;
1426 return false;
1427 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001428 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001429 }
1430
Alexander Duyckf8003262012-03-03 02:35:52 +00001431 /* map page for use */
1432 dma = dma_map_page(rx_ring->dev, page, 0,
1433 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001434
Alexander Duyckf8003262012-03-03 02:35:52 +00001435 /*
1436 * if mapping failed free memory back to system since
1437 * there isn't much point in holding memory we can't use
1438 */
1439 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001440 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001441 bi->page = NULL;
1442
Alexander Duyckf990b792012-01-31 02:59:34 +00001443 rx_ring->rx_stats.alloc_rx_page_failed++;
1444 return false;
1445 }
1446
Alexander Duyckf8003262012-03-03 02:35:52 +00001447 bi->dma = dma;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001448 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001449
Alexander Duyckf990b792012-01-31 02:59:34 +00001450 return true;
1451}
1452
Auke Kok9a799d72007-09-15 14:07:45 -07001453/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001454 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001455 * @rx_ring: ring to place buffers on
1456 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001457 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001458void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001459{
Auke Kok9a799d72007-09-15 14:07:45 -07001460 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001461 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001462 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001463
Alexander Duyckf8003262012-03-03 02:35:52 +00001464 /* nothing to do */
1465 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001466 return;
1467
Alexander Duycke4f74022012-01-31 02:59:44 +00001468 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001469 bi = &rx_ring->rx_buffer_info[i];
1470 i -= rx_ring->count;
1471
Alexander Duyckf8003262012-03-03 02:35:52 +00001472 do {
1473 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001474 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001475
Alexander Duyckf8003262012-03-03 02:35:52 +00001476 /*
1477 * Refresh the desc even if buffer_addrs didn't change
1478 * because each write-back erases this info.
1479 */
1480 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001481
Alexander Duyckf990b792012-01-31 02:59:34 +00001482 rx_desc++;
1483 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001484 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001485 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001486 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001487 bi = rx_ring->rx_buffer_info;
1488 i -= rx_ring->count;
1489 }
1490
1491 /* clear the hdr_addr for the next_to_use descriptor */
1492 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001493
1494 cleaned_count--;
1495 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001496
Alexander Duyckf990b792012-01-31 02:59:34 +00001497 i += rx_ring->count;
1498
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001499 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001500 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001501}
1502
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001503/**
1504 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1505 * @data: pointer to the start of the headers
1506 * @max_len: total length of section to find headers in
1507 *
1508 * This function is meant to determine the length of headers that will
1509 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1510 * motivation of doing this is to only perform one pull for IPv4 TCP
1511 * packets so that we can do basic things like calculating the gso_size
1512 * based on the average data per packet.
1513 **/
1514static unsigned int ixgbe_get_headlen(unsigned char *data,
1515 unsigned int max_len)
1516{
1517 union {
1518 unsigned char *network;
1519 /* l2 headers */
1520 struct ethhdr *eth;
1521 struct vlan_hdr *vlan;
1522 /* l3 headers */
1523 struct iphdr *ipv4;
Alexander Duycka048b402012-05-24 08:26:29 +00001524 struct ipv6hdr *ipv6;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001525 } hdr;
1526 __be16 protocol;
1527 u8 nexthdr = 0; /* default to not TCP */
1528 u8 hlen;
1529
1530 /* this should never happen, but better safe than sorry */
1531 if (max_len < ETH_HLEN)
1532 return max_len;
1533
1534 /* initialize network frame pointer */
1535 hdr.network = data;
1536
1537 /* set first protocol and move network header forward */
1538 protocol = hdr.eth->h_proto;
1539 hdr.network += ETH_HLEN;
1540
1541 /* handle any vlan tag if present */
Joe Perchesa1108ff2014-03-13 05:19:25 +00001542 if (protocol == htons(ETH_P_8021Q)) {
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001543 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1544 return max_len;
1545
1546 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1547 hdr.network += VLAN_HLEN;
1548 }
1549
1550 /* handle L3 protocols */
Joe Perchesa1108ff2014-03-13 05:19:25 +00001551 if (protocol == htons(ETH_P_IP)) {
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001552 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1553 return max_len;
1554
1555 /* access ihl as a u8 to avoid unaligned access on ia64 */
1556 hlen = (hdr.network[0] & 0x0F) << 2;
1557
1558 /* verify hlen meets minimum size requirements */
1559 if (hlen < sizeof(struct iphdr))
1560 return hdr.network - data;
1561
Alexander Duycked83da12012-11-13 01:13:33 +00001562 /* record next protocol if header is present */
Alexander Duyck20967f42013-02-01 08:56:41 +00001563 if (!(hdr.ipv4->frag_off & htons(IP_OFFSET)))
Alexander Duycked83da12012-11-13 01:13:33 +00001564 nexthdr = hdr.ipv4->protocol;
Joe Perchesa1108ff2014-03-13 05:19:25 +00001565 } else if (protocol == htons(ETH_P_IPV6)) {
Alexander Duycka048b402012-05-24 08:26:29 +00001566 if ((hdr.network - data) > (max_len - sizeof(struct ipv6hdr)))
1567 return max_len;
1568
1569 /* record next protocol */
1570 nexthdr = hdr.ipv6->nexthdr;
Alexander Duycked83da12012-11-13 01:13:33 +00001571 hlen = sizeof(struct ipv6hdr);
Alexander Duyckf8003262012-03-03 02:35:52 +00001572#ifdef IXGBE_FCOE
Joe Perchesa1108ff2014-03-13 05:19:25 +00001573 } else if (protocol == htons(ETH_P_FCOE)) {
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001574 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1575 return max_len;
Alexander Duycked83da12012-11-13 01:13:33 +00001576 hlen = FCOE_HEADER_LEN;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001577#endif
1578 } else {
1579 return hdr.network - data;
1580 }
1581
Alexander Duycked83da12012-11-13 01:13:33 +00001582 /* relocate pointer to start of L4 header */
1583 hdr.network += hlen;
1584
Alexander Duycka048b402012-05-24 08:26:29 +00001585 /* finally sort out TCP/UDP */
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001586 if (nexthdr == IPPROTO_TCP) {
1587 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1588 return max_len;
1589
1590 /* access doff as a u8 to avoid unaligned access on ia64 */
1591 hlen = (hdr.network[12] & 0xF0) >> 2;
1592
1593 /* verify hlen meets minimum size requirements */
1594 if (hlen < sizeof(struct tcphdr))
1595 return hdr.network - data;
1596
1597 hdr.network += hlen;
Alexander Duycka048b402012-05-24 08:26:29 +00001598 } else if (nexthdr == IPPROTO_UDP) {
1599 if ((hdr.network - data) > (max_len - sizeof(struct udphdr)))
1600 return max_len;
1601
1602 hdr.network += sizeof(struct udphdr);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001603 }
1604
1605 /*
1606 * If everything has gone correctly hdr.network should be the
1607 * data section of the packet and will be the end of the header.
1608 * If not then it probably represents the end of the last recognized
1609 * header.
1610 */
1611 if ((hdr.network - data) < max_len)
1612 return hdr.network - data;
1613 else
1614 return max_len;
1615}
1616
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001617static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1618 struct sk_buff *skb)
1619{
Alexander Duyckf8003262012-03-03 02:35:52 +00001620 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001621
1622 /* set gso_size to avoid messing up TCP MSS */
1623 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1624 IXGBE_CB(skb)->append_cnt);
Alexander Duyck96be80a2013-02-12 09:45:44 +00001625 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001626}
1627
1628static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1629 struct sk_buff *skb)
1630{
1631 /* if append_cnt is 0 then frame is not RSC */
1632 if (!IXGBE_CB(skb)->append_cnt)
1633 return;
1634
1635 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1636 rx_ring->rx_stats.rsc_flush++;
1637
1638 ixgbe_set_rsc_gso_size(rx_ring, skb);
1639
1640 /* gso_size is computed using append_cnt so always clear it last */
1641 IXGBE_CB(skb)->append_cnt = 0;
1642}
1643
Alexander Duyck8a0da212012-01-31 02:59:49 +00001644/**
1645 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1646 * @rx_ring: rx descriptor ring packet is being transacted on
1647 * @rx_desc: pointer to the EOP Rx descriptor
1648 * @skb: pointer to current skb being populated
1649 *
1650 * This function checks the ring, descriptor, and packet information in
1651 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1652 * other fields within the skb.
1653 **/
1654static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1655 union ixgbe_adv_rx_desc *rx_desc,
1656 struct sk_buff *skb)
1657{
John Fastabend43e95f12012-05-15 06:12:17 +00001658 struct net_device *dev = rx_ring->netdev;
1659
Alexander Duyck8a0da212012-01-31 02:59:49 +00001660 ixgbe_update_rsc_stats(rx_ring, skb);
1661
1662 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1663
1664 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1665
Jacob Keller6cb562d2012-12-05 07:24:41 +00001666 ixgbe_ptp_rx_hwtstamp(rx_ring, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001667
Patrick McHardyf6469682013-04-19 02:04:27 +00001668 if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
John Fastabend43e95f12012-05-15 06:12:17 +00001669 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001670 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001671 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001672 }
1673
1674 skb_record_rx_queue(skb, rx_ring->queue_index);
1675
John Fastabend43e95f12012-05-15 06:12:17 +00001676 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001677}
1678
1679static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1680 struct sk_buff *skb)
1681{
1682 struct ixgbe_adapter *adapter = q_vector->adapter;
1683
Jacob Kellerb4640032013-10-01 04:33:54 -07001684 if (ixgbe_qv_busy_polling(q_vector))
Eliezer Tamir5a85e732013-06-10 11:40:20 +03001685 netif_receive_skb(skb);
1686 else if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
Alexander Duyck8a0da212012-01-31 02:59:49 +00001687 napi_gro_receive(&q_vector->napi, skb);
1688 else
1689 netif_rx(skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001690}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001691
Alexander Duyckf8003262012-03-03 02:35:52 +00001692/**
1693 * ixgbe_is_non_eop - process handling of non-EOP buffers
1694 * @rx_ring: Rx ring being processed
1695 * @rx_desc: Rx descriptor for current buffer
1696 * @skb: Current socket buffer containing buffer in progress
1697 *
1698 * This function updates next to clean. If the buffer is an EOP buffer
1699 * this function exits returning false, otherwise it will place the
1700 * sk_buff in the next buffer to be chained and return true indicating
1701 * that this is in fact a non-EOP buffer.
1702 **/
1703static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1704 union ixgbe_adv_rx_desc *rx_desc,
1705 struct sk_buff *skb)
1706{
1707 u32 ntc = rx_ring->next_to_clean + 1;
1708
1709 /* fetch, update, and store next to clean */
1710 ntc = (ntc < rx_ring->count) ? ntc : 0;
1711 rx_ring->next_to_clean = ntc;
1712
1713 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1714
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001715 /* update RSC append count if present */
1716 if (ring_is_rsc_enabled(rx_ring)) {
1717 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1718 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1719
1720 if (unlikely(rsc_enabled)) {
1721 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1722
1723 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1724 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1725
1726 /* update ntc based on RSC value */
1727 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1728 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1729 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1730 }
1731 }
1732
1733 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001734 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1735 return false;
1736
Alexander Duyckf8003262012-03-03 02:35:52 +00001737 /* place skb in next buffer to be received */
1738 rx_ring->rx_buffer_info[ntc].skb = skb;
1739 rx_ring->rx_stats.non_eop_descs++;
1740
1741 return true;
1742}
1743
1744/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001745 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1746 * @rx_ring: rx descriptor ring packet is being transacted on
1747 * @skb: pointer to current skb being adjusted
1748 *
1749 * This function is an ixgbe specific version of __pskb_pull_tail. The
1750 * main difference between this version and the original function is that
1751 * this function can make several assumptions about the state of things
1752 * that allow for significant optimizations versus the standard function.
1753 * As a result we can do things like drop a frag and maintain an accurate
1754 * truesize for the skb.
1755 */
1756static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1757 struct sk_buff *skb)
1758{
1759 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1760 unsigned char *va;
1761 unsigned int pull_len;
1762
1763 /*
1764 * it is valid to use page_address instead of kmap since we are
1765 * working with pages allocated out of the lomem pool per
1766 * alloc_page(GFP_ATOMIC)
1767 */
1768 va = skb_frag_address(frag);
1769
1770 /*
1771 * we need the header to contain the greater of either ETH_HLEN or
1772 * 60 bytes if the skb->len is less than 60 for skb_pad.
1773 */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001774 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001775
1776 /* align pull length to size of long to optimize memcpy performance */
1777 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1778
1779 /* update all of the pointers */
1780 skb_frag_size_sub(frag, pull_len);
1781 frag->page_offset += pull_len;
1782 skb->data_len -= pull_len;
1783 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001784}
1785
1786/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001787 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1788 * @rx_ring: rx descriptor ring packet is being transacted on
1789 * @skb: pointer to current skb being updated
1790 *
1791 * This function provides a basic DMA sync up for the first fragment of an
1792 * skb. The reason for doing this is that the first fragment cannot be
1793 * unmapped until we have reached the end of packet descriptor for a buffer
1794 * chain.
1795 */
1796static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1797 struct sk_buff *skb)
1798{
1799 /* if the page was released unmap it, else just sync our portion */
1800 if (unlikely(IXGBE_CB(skb)->page_released)) {
1801 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1802 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1803 IXGBE_CB(skb)->page_released = false;
1804 } else {
1805 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1806
1807 dma_sync_single_range_for_cpu(rx_ring->dev,
1808 IXGBE_CB(skb)->dma,
1809 frag->page_offset,
1810 ixgbe_rx_bufsz(rx_ring),
1811 DMA_FROM_DEVICE);
1812 }
1813 IXGBE_CB(skb)->dma = 0;
1814}
1815
1816/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001817 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1818 * @rx_ring: rx descriptor ring packet is being transacted on
1819 * @rx_desc: pointer to the EOP Rx descriptor
1820 * @skb: pointer to current skb being fixed
1821 *
1822 * Check for corrupted packet headers caused by senders on the local L2
1823 * embedded NIC switch not setting up their Tx Descriptors right. These
1824 * should be very rare.
1825 *
1826 * Also address the case where we are pulling data in on pages only
1827 * and as such no data is present in the skb header.
1828 *
1829 * In addition if skb is not at least 60 bytes we need to pad it so that
1830 * it is large enough to qualify as a valid Ethernet frame.
1831 *
1832 * Returns true if an error was encountered and skb was freed.
1833 **/
1834static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1835 union ixgbe_adv_rx_desc *rx_desc,
1836 struct sk_buff *skb)
1837{
Alexander Duyckf8003262012-03-03 02:35:52 +00001838 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001839
1840 /* verify that the packet does not have any known errors */
1841 if (unlikely(ixgbe_test_staterr(rx_desc,
1842 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1843 !(netdev->features & NETIF_F_RXALL))) {
1844 dev_kfree_skb_any(skb);
1845 return true;
1846 }
1847
Alexander Duyck19861ce2012-07-20 08:08:33 +00001848 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001849 if (skb_is_nonlinear(skb))
1850 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001851
Alexander Duyck57efd442012-06-25 21:54:46 +00001852#ifdef IXGBE_FCOE
1853 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1854 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1855 return false;
1856
1857#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001858 /* if skb_pad returns an error the skb was freed */
1859 if (unlikely(skb->len < 60)) {
1860 int pad_len = 60 - skb->len;
1861
1862 if (skb_pad(skb, pad_len))
1863 return true;
1864 __skb_put(skb, pad_len);
1865 }
1866
1867 return false;
1868}
1869
1870/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001871 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1872 * @rx_ring: rx descriptor ring to store buffers on
1873 * @old_buff: donor buffer to have page reused
1874 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001875 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001876 **/
1877static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1878 struct ixgbe_rx_buffer *old_buff)
1879{
1880 struct ixgbe_rx_buffer *new_buff;
1881 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001882
1883 new_buff = &rx_ring->rx_buffer_info[nta];
1884
1885 /* update, and store next to alloc */
1886 nta++;
1887 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1888
1889 /* transfer page from old buffer to new buffer */
1890 new_buff->page = old_buff->page;
1891 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001892 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001893
1894 /* sync the buffer for use by the device */
1895 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001896 new_buff->page_offset,
1897 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001898 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001899}
1900
1901/**
1902 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1903 * @rx_ring: rx descriptor ring to transact packets on
1904 * @rx_buffer: buffer containing page to add
1905 * @rx_desc: descriptor containing length of buffer written by hardware
1906 * @skb: sk_buff to place the data into
1907 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001908 * This function will add the data contained in rx_buffer->page to the skb.
1909 * This is done either through a direct copy if the data in the buffer is
1910 * less than the skb header size, otherwise it will just attach the page as
1911 * a frag to the skb.
1912 *
1913 * The function will then update the page offset if necessary and return
1914 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001915 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001916static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001917 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001918 union ixgbe_adv_rx_desc *rx_desc,
1919 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001920{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001921 struct page *page = rx_buffer->page;
1922 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001923#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001924 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001925#else
1926 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1927 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1928 ixgbe_rx_bufsz(rx_ring);
1929#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001930
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001931 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1932 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1933
1934 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1935
1936 /* we can reuse buffer as-is, just make sure it is local */
1937 if (likely(page_to_nid(page) == numa_node_id()))
1938 return true;
1939
1940 /* this page cannot be reused so discard it */
1941 put_page(page);
1942 return false;
1943 }
1944
Alexander Duyck0549ae22012-07-20 08:08:18 +00001945 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1946 rx_buffer->page_offset, size, truesize);
1947
Alexander Duyck09816fb2012-07-20 08:08:23 +00001948 /* avoid re-using remote pages */
1949 if (unlikely(page_to_nid(page) != numa_node_id()))
1950 return false;
1951
1952#if (PAGE_SIZE < 8192)
1953 /* if we are only owner of page we can reuse it */
1954 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001955 return false;
1956
1957 /* flip page offset to other buffer */
1958 rx_buffer->page_offset ^= truesize;
1959
Alexander Duyck09816fb2012-07-20 08:08:23 +00001960 /*
1961 * since we are the only owner of the page and we need to
1962 * increment it, just set the value to 2 in order to avoid
1963 * an unecessary locked operation
1964 */
1965 atomic_set(&page->_count, 2);
1966#else
1967 /* move offset up to the next cache line */
1968 rx_buffer->page_offset += truesize;
1969
1970 if (rx_buffer->page_offset > last_offset)
1971 return false;
1972
Alexander Duyck0549ae22012-07-20 08:08:18 +00001973 /* bump ref count on page before it is given to the stack */
1974 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001975#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001976
1977 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001978}
1979
Alexander Duyck18806c92012-07-20 08:08:44 +00001980static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1981 union ixgbe_adv_rx_desc *rx_desc)
1982{
1983 struct ixgbe_rx_buffer *rx_buffer;
1984 struct sk_buff *skb;
1985 struct page *page;
1986
1987 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1988 page = rx_buffer->page;
1989 prefetchw(page);
1990
1991 skb = rx_buffer->skb;
1992
1993 if (likely(!skb)) {
1994 void *page_addr = page_address(page) +
1995 rx_buffer->page_offset;
1996
1997 /* prefetch first cache line of first page */
1998 prefetch(page_addr);
1999#if L1_CACHE_BYTES < 128
2000 prefetch(page_addr + L1_CACHE_BYTES);
2001#endif
2002
2003 /* allocate a skb to store the frags */
2004 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
2005 IXGBE_RX_HDR_SIZE);
2006 if (unlikely(!skb)) {
2007 rx_ring->rx_stats.alloc_rx_buff_failed++;
2008 return NULL;
2009 }
2010
2011 /*
2012 * we will be copying header into skb->data in
2013 * pskb_may_pull so it is in our interest to prefetch
2014 * it now to avoid a possible cache miss
2015 */
2016 prefetchw(skb->data);
2017
2018 /*
2019 * Delay unmapping of the first packet. It carries the
2020 * header information, HW may still access the header
2021 * after the writeback. Only unmap it when EOP is
2022 * reached
2023 */
2024 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
2025 goto dma_sync;
2026
2027 IXGBE_CB(skb)->dma = rx_buffer->dma;
2028 } else {
2029 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
2030 ixgbe_dma_sync_frag(rx_ring, skb);
2031
2032dma_sync:
2033 /* we are reusing so sync this buffer for CPU use */
2034 dma_sync_single_range_for_cpu(rx_ring->dev,
2035 rx_buffer->dma,
2036 rx_buffer->page_offset,
2037 ixgbe_rx_bufsz(rx_ring),
2038 DMA_FROM_DEVICE);
2039 }
2040
2041 /* pull page into skb */
2042 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
2043 /* hand second half of page back to the ring */
2044 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
2045 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
2046 /* the page has been released from the ring */
2047 IXGBE_CB(skb)->page_released = true;
2048 } else {
2049 /* we are not reusing the buffer so unmap it */
2050 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
2051 ixgbe_rx_pg_size(rx_ring),
2052 DMA_FROM_DEVICE);
2053 }
2054
2055 /* clear contents of buffer_info */
2056 rx_buffer->skb = NULL;
2057 rx_buffer->dma = 0;
2058 rx_buffer->page = NULL;
2059
2060 return skb;
Alexander Duyckf8003262012-03-03 02:35:52 +00002061}
2062
2063/**
2064 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
2065 * @q_vector: structure containing interrupt and ring information
2066 * @rx_ring: rx descriptor ring to transact packets on
2067 * @budget: Total limit on number of packets to process
2068 *
2069 * This function provides a "bounce buffer" approach to Rx interrupt
2070 * processing. The advantage to this is that on systems that have
2071 * expensive overhead for IOMMU access this provides a means of avoiding
2072 * it by maintaining the mapping of the page to the syste.
2073 *
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002074 * Returns amount of work completed
Alexander Duyckf8003262012-03-03 02:35:52 +00002075 **/
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002076static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002077 struct ixgbe_ring *rx_ring,
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002078 const int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07002079{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002080 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00002081#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00002082 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00002083 int ddp_bytes;
2084 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00002085#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00002086 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07002087
Eric W. Biedermanfdabfc8a2014-03-14 18:00:41 -07002088 while (likely(total_rx_packets < budget)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00002089 union ixgbe_adv_rx_desc *rx_desc;
2090 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07002091
Alexander Duyckf8003262012-03-03 02:35:52 +00002092 /* return some buffers to hardware, one at a time is too slow */
2093 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
2094 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2095 cleaned_count = 0;
2096 }
Auke Kok9a799d72007-09-15 14:07:45 -07002097
Alexander Duyck18806c92012-07-20 08:08:44 +00002098 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07002099
Alexander Duyckf8003262012-03-03 02:35:52 +00002100 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
2101 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08002102
Alexander Duyckf8003262012-03-03 02:35:52 +00002103 /*
2104 * This memory barrier is needed to keep us from reading
2105 * any other fields out of the rx_desc until we know the
2106 * RXD_STAT_DD bit is set
2107 */
2108 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07002109
Alexander Duyck18806c92012-07-20 08:08:44 +00002110 /* retrieve a buffer from the ring */
2111 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00002112
Alexander Duyck18806c92012-07-20 08:08:44 +00002113 /* exit if we failed to retrieve a buffer */
2114 if (!skb)
2115 break;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00002116
Auke Kok9a799d72007-09-15 14:07:45 -07002117 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002118
Alexander Duyckf8003262012-03-03 02:35:52 +00002119 /* place incomplete frames back on ring for completion */
2120 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
2121 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002122
Alexander Duyckf8003262012-03-03 02:35:52 +00002123 /* verify the packet layout is correct */
2124 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
2125 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002126
2127 /* probably a little skewed due to removing CRC */
2128 total_rx_bytes += skb->len;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002129
Alexander Duyck8a0da212012-01-31 02:59:49 +00002130 /* populate checksum, timestamp, VLAN, and protocol */
2131 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
2132
Yi Zou332d4a72009-05-13 13:11:53 +00002133#ifdef IXGBE_FCOE
2134 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00002135 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00002136 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00002137 /* include DDPed FCoE data */
2138 if (ddp_bytes > 0) {
2139 if (!mss) {
2140 mss = rx_ring->netdev->mtu -
2141 sizeof(struct fcoe_hdr) -
2142 sizeof(struct fc_frame_header) -
2143 sizeof(struct fcoe_crc_eof);
2144 if (mss > 512)
2145 mss &= ~511;
2146 }
2147 total_rx_bytes += ddp_bytes;
2148 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
2149 mss);
2150 }
David S. Miller823dcd22011-08-20 10:39:12 -07002151 if (!ddp_bytes) {
2152 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00002153 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07002154 }
Yi Zou3d8fd382009-06-08 14:38:44 +00002155 }
Alexander Duyckf8003262012-03-03 02:35:52 +00002156
Yi Zou332d4a72009-05-13 13:11:53 +00002157#endif /* IXGBE_FCOE */
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03002158 skb_mark_napi_id(skb, &q_vector->napi);
Alexander Duyck8a0da212012-01-31 02:59:49 +00002159 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07002160
Alexander Duyckf8003262012-03-03 02:35:52 +00002161 /* update budget accounting */
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002162 total_rx_packets++;
Eric W. Biedermanfdabfc8a2014-03-14 18:00:41 -07002163 }
Auke Kok9a799d72007-09-15 14:07:45 -07002164
Alexander Duyckc267fc12010-11-16 19:27:00 -08002165 u64_stats_update_begin(&rx_ring->syncp);
2166 rx_ring->stats.packets += total_rx_packets;
2167 rx_ring->stats.bytes += total_rx_bytes;
2168 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00002169 q_vector->rx.total_packets += total_rx_packets;
2170 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002171
Alexander Duyckf8003262012-03-03 02:35:52 +00002172 if (cleaned_count)
2173 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2174
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002175 return total_rx_packets;
Auke Kok9a799d72007-09-15 14:07:45 -07002176}
2177
Cong Wange0d10952013-08-01 11:10:25 +08002178#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002179/* must be called with local_bh_disable()d */
2180static int ixgbe_low_latency_recv(struct napi_struct *napi)
2181{
2182 struct ixgbe_q_vector *q_vector =
2183 container_of(napi, struct ixgbe_q_vector, napi);
2184 struct ixgbe_adapter *adapter = q_vector->adapter;
2185 struct ixgbe_ring *ring;
2186 int found = 0;
2187
2188 if (test_bit(__IXGBE_DOWN, &adapter->state))
2189 return LL_FLUSH_FAILED;
2190
2191 if (!ixgbe_qv_lock_poll(q_vector))
2192 return LL_FLUSH_BUSY;
2193
2194 ixgbe_for_each_ring(ring, q_vector->rx) {
2195 found = ixgbe_clean_rx_irq(q_vector, ring, 4);
Jacob Kellerb4640032013-10-01 04:33:54 -07002196#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03002197 if (found)
2198 ring->stats.cleaned += found;
2199 else
2200 ring->stats.misses++;
2201#endif
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002202 if (found)
2203 break;
2204 }
2205
2206 ixgbe_qv_unlock_poll(q_vector);
2207
2208 return found;
2209}
Cong Wange0d10952013-08-01 11:10:25 +08002210#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002211
Auke Kok9a799d72007-09-15 14:07:45 -07002212/**
2213 * ixgbe_configure_msix - Configure MSI-X hardware
2214 * @adapter: board private structure
2215 *
2216 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
2217 * interrupts.
2218 **/
2219static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
2220{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002221 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002222 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002223 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07002224
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00002225 /* Populate MSIX to EITR Select */
2226 if (adapter->num_vfs > 32) {
2227 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2228 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2229 }
2230
Jesse Brandeburg4df10462009-03-13 22:15:31 +00002231 /*
2232 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002233 * corresponding register.
2234 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002235 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002236 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002237 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002238
Alexander Duycka5579282012-02-08 07:50:04 +00002239 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002240 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002241
Alexander Duycka5579282012-02-08 07:50:04 +00002242 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002243 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002244
Alexander Duyckfe49f042009-06-04 16:00:09 +00002245 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002246 }
2247
Alexander Duyckbd508172010-11-16 19:27:03 -08002248 switch (adapter->hw.mac.type) {
2249 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002250 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00002251 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002252 break;
2253 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002254 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002255 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002256 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08002257 default:
2258 break;
2259 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07002261
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07002262 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002264 mask &= ~(IXGBE_EIMS_OTHER |
2265 IXGBE_EIMS_MAILBOX |
2266 IXGBE_EIMS_LSC);
2267
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002268 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07002269}
2270
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002271enum latency_range {
2272 lowest_latency = 0,
2273 low_latency = 1,
2274 bulk_latency = 2,
2275 latency_invalid = 255
2276};
2277
2278/**
2279 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00002280 * @q_vector: structure containing interrupt and ring information
2281 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002282 *
2283 * Stores a new ITR value based on packets and byte
2284 * counts during the last interrupt. The advantage of per interrupt
2285 * computation is faster updates and more accurate ITR for the current
2286 * traffic pattern. Constants in this function were computed
2287 * based on theoretical maximum wire speed and thresholds were set based
2288 * on testing data as well as attempting to minimize response time
2289 * while increasing bulk throughput.
2290 * this functionality is controlled by the InterruptThrottleRate module
2291 * parameter (see ixgbe_param.c)
2292 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00002293static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
2294 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002295{
Alexander Duyckbd198052011-06-11 01:45:08 +00002296 int bytes = ring_container->total_bytes;
2297 int packets = ring_container->total_packets;
2298 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00002299 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00002300 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002301
2302 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00002303 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002304
2305 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00002306 * 0-10MB/s lowest (100000 ints/s)
2307 * 10-20MB/s low (20000 ints/s)
2308 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002309 */
2310 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002311 timepassed_us = q_vector->itr >> 2;
Don Skidmorebdbeefe2013-03-02 07:17:37 +00002312 if (timepassed_us == 0)
2313 return;
2314
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002315 bytes_perint = bytes / timepassed_us; /* bytes/usec */
2316
2317 switch (itr_setting) {
2318 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002319 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002320 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002321 break;
2322 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002323 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002324 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002325 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002326 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002327 break;
2328 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002329 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002330 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002331 break;
2332 }
2333
Alexander Duyckbd198052011-06-11 01:45:08 +00002334 /* clear work counters since we have the values we need */
2335 ring_container->total_bytes = 0;
2336 ring_container->total_packets = 0;
2337
2338 /* write updated itr to ring container */
2339 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002340}
2341
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002342/**
2343 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002344 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002345 *
2346 * This function is made to be called by ethtool and by the driver
2347 * when it needs to update EITR registers at runtime. Hardware
2348 * specific quirks/differences are taken care of here.
2349 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002350void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002351{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002352 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002353 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002354 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002355 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002356
Alexander Duyckbd508172010-11-16 19:27:03 -08002357 switch (adapter->hw.mac.type) {
2358 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002359 /* must write high and low 16 bits to reset counter */
2360 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002361 break;
2362 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002363 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002364 /*
2365 * set the WDIS bit to not clear the timer bits and cause an
2366 * immediate assertion of the interrupt
2367 */
2368 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002369 break;
2370 default:
2371 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002372 }
2373 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2374}
2375
Alexander Duyckbd198052011-06-11 01:45:08 +00002376static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002377{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002378 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002379 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002380
Alexander Duyckbd198052011-06-11 01:45:08 +00002381 ixgbe_update_itr(q_vector, &q_vector->tx);
2382 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002383
Alexander Duyck08c88332011-06-11 01:45:03 +00002384 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002385
2386 switch (current_itr) {
2387 /* counts and packets in update_itr are dependent on these numbers */
2388 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002389 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002390 break;
2391 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002392 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002393 break;
2394 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002395 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002396 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002397 default:
2398 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002399 }
2400
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002401 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002402 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002403 new_itr = (10 * new_itr * q_vector->itr) /
2404 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002405
Alexander Duyckbd198052011-06-11 01:45:08 +00002406 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002407 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002408
2409 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002410 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002411}
2412
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002413/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002414 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002415 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002416 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002417static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002418{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002419 struct ixgbe_hw *hw = &adapter->hw;
2420 u32 eicr = adapter->interrupt_event;
2421
Alexander Duyckf0f97782011-04-22 04:08:09 +00002422 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002423 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002424
Alexander Duyckf0f97782011-04-22 04:08:09 +00002425 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2426 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2427 return;
2428
2429 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2430
Joe Perches7ca647b2010-09-07 21:35:40 +00002431 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002432 case IXGBE_DEV_ID_82599_T3_LOM:
2433 /*
2434 * Since the warning interrupt is for both ports
2435 * we don't have to check if:
2436 * - This interrupt wasn't for our port.
2437 * - We may have missed the interrupt so always have to
2438 * check if we got a LSC
2439 */
2440 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2441 !(eicr & IXGBE_EICR_LSC))
2442 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002443
Alexander Duyckf0f97782011-04-22 04:08:09 +00002444 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
Josh Hay3d292262012-12-15 03:28:19 +00002445 u32 speed;
Alexander Duyckf0f97782011-04-22 04:08:09 +00002446 bool link_up = false;
2447
Josh Hay3d292262012-12-15 03:28:19 +00002448 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Joe Perches7ca647b2010-09-07 21:35:40 +00002449
Alexander Duyckf0f97782011-04-22 04:08:09 +00002450 if (link_up)
2451 return;
2452 }
2453
2454 /* Check if this is not due to overtemp */
2455 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2456 return;
2457
2458 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002459 default:
2460 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2461 return;
2462 break;
2463 }
2464 e_crit(drv,
2465 "Network adapter has been stopped because it has over heated. "
2466 "Restart the computer. If the problem persists, "
2467 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002468
2469 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002470}
2471
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002472static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2473{
2474 struct ixgbe_hw *hw = &adapter->hw;
2475
2476 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2477 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002478 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002479 /* write to clear the interrupt */
2480 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2481 }
2482}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002483
Jacob Keller4f51bf72011-08-20 04:49:45 +00002484static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2485{
2486 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2487 return;
2488
2489 switch (adapter->hw.mac.type) {
2490 case ixgbe_mac_82599EB:
2491 /*
2492 * Need to check link state so complete overtemp check
2493 * on service task
2494 */
2495 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2496 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2497 adapter->interrupt_event = eicr;
2498 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2499 ixgbe_service_event_schedule(adapter);
2500 return;
2501 }
2502 return;
2503 case ixgbe_mac_X540:
2504 if (!(eicr & IXGBE_EICR_TS))
2505 return;
2506 break;
2507 default:
2508 return;
2509 }
2510
2511 e_crit(drv,
2512 "Network adapter has been stopped because it has over heated. "
2513 "Restart the computer. If the problem persists, "
2514 "power off the system and replace the adapter\n");
2515}
2516
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002517static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2518{
2519 struct ixgbe_hw *hw = &adapter->hw;
2520
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002521 if (eicr & IXGBE_EICR_GPI_SDP2) {
2522 /* Clear the interrupt */
2523 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002524 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2525 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2526 ixgbe_service_event_schedule(adapter);
2527 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002528 }
2529
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002530 if (eicr & IXGBE_EICR_GPI_SDP1) {
2531 /* Clear the interrupt */
2532 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002533 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2534 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2535 ixgbe_service_event_schedule(adapter);
2536 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002537 }
2538}
2539
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002540static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2541{
2542 struct ixgbe_hw *hw = &adapter->hw;
2543
2544 adapter->lsc_int++;
2545 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2546 adapter->link_check_timeout = jiffies;
2547 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2548 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002549 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002550 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002551 }
2552}
2553
Alexander Duyckfe49f042009-06-04 16:00:09 +00002554static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2555 u64 qmask)
2556{
2557 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002558 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002559
Alexander Duyckbd508172010-11-16 19:27:03 -08002560 switch (hw->mac.type) {
2561 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002562 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002563 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2564 break;
2565 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002566 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002567 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002568 if (mask)
2569 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002570 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002571 if (mask)
2572 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2573 break;
2574 default:
2575 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002576 }
2577 /* skip the flush */
2578}
2579
2580static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002581 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002582{
2583 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002584 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002585
Alexander Duyckbd508172010-11-16 19:27:03 -08002586 switch (hw->mac.type) {
2587 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002588 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002589 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2590 break;
2591 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002592 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002593 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002594 if (mask)
2595 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002596 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002597 if (mask)
2598 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2599 break;
2600 default:
2601 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002602 }
2603 /* skip the flush */
2604}
2605
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002606/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002607 * ixgbe_irq_enable - Enable default interrupt generation settings
2608 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002609 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002610static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2611 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002612{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002613 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002614
Alexander Duyck2c4af692011-07-15 07:29:55 +00002615 /* don't reenable LSC while waiting for link */
2616 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2617 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002618
Alexander Duyck2c4af692011-07-15 07:29:55 +00002619 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002620 switch (adapter->hw.mac.type) {
2621 case ixgbe_mac_82599EB:
2622 mask |= IXGBE_EIMS_GPI_SDP0;
2623 break;
2624 case ixgbe_mac_X540:
2625 mask |= IXGBE_EIMS_TS;
2626 break;
2627 default:
2628 break;
2629 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002630 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2631 mask |= IXGBE_EIMS_GPI_SDP1;
2632 switch (adapter->hw.mac.type) {
2633 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002634 mask |= IXGBE_EIMS_GPI_SDP1;
2635 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002636 case ixgbe_mac_X540:
2637 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002638 mask |= IXGBE_EIMS_MAILBOX;
2639 break;
2640 default:
2641 break;
2642 }
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002643
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002644 if (adapter->hw.mac.type == ixgbe_mac_X540)
2645 mask |= IXGBE_EIMS_TIMESYNC;
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002646
Alexander Duyck2c4af692011-07-15 07:29:55 +00002647 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2648 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2649 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002650
Alexander Duyck2c4af692011-07-15 07:29:55 +00002651 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2652 if (queues)
2653 ixgbe_irq_enable_queues(adapter, ~0);
2654 if (flush)
2655 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002656}
2657
Alexander Duyck2c4af692011-07-15 07:29:55 +00002658static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002659{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002660 struct ixgbe_adapter *adapter = data;
2661 struct ixgbe_hw *hw = &adapter->hw;
2662 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002663
Alexander Duyck2c4af692011-07-15 07:29:55 +00002664 /*
2665 * Workaround for Silicon errata. Use clear-by-write instead
2666 * of clear-by-read. Reading with EICS will return the
2667 * interrupt causes without clearing, which later be done
2668 * with the write to EICR.
2669 */
2670 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
Jacob Kellerd87d8302013-03-02 07:51:42 +00002671
2672 /* The lower 16bits of the EICR register are for the queue interrupts
2673 * which should be masked here in order to not accidently clear them if
2674 * the bits are high when ixgbe_msix_other is called. There is a race
2675 * condition otherwise which results in possible performance loss
2676 * especially if the ixgbe_msix_other interrupt is triggering
2677 * consistently (as it would when PPS is turned on for the X540 device)
2678 */
2679 eicr &= 0xFFFF0000;
2680
Alexander Duyck2c4af692011-07-15 07:29:55 +00002681 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002682
Alexander Duyck2c4af692011-07-15 07:29:55 +00002683 if (eicr & IXGBE_EICR_LSC)
2684 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002685
Alexander Duyck2c4af692011-07-15 07:29:55 +00002686 if (eicr & IXGBE_EICR_MAILBOX)
2687 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002688
Alexander Duyck2c4af692011-07-15 07:29:55 +00002689 switch (hw->mac.type) {
2690 case ixgbe_mac_82599EB:
2691 case ixgbe_mac_X540:
Don Skidmored773ce22014-02-25 17:58:53 -08002692 if (eicr & IXGBE_EICR_ECC) {
2693 e_info(link, "Received ECC Err, initiating reset\n");
2694 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
2695 ixgbe_service_event_schedule(adapter);
2696 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
2697 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002698 /* Handle Flow Director Full threshold interrupt */
2699 if (eicr & IXGBE_EICR_FLOW_DIR) {
2700 int reinit_count = 0;
2701 int i;
2702 for (i = 0; i < adapter->num_tx_queues; i++) {
2703 struct ixgbe_ring *ring = adapter->tx_ring[i];
2704 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2705 &ring->state))
2706 reinit_count++;
2707 }
2708 if (reinit_count) {
2709 /* no more flow director interrupts until after init */
2710 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2711 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2712 ixgbe_service_event_schedule(adapter);
2713 }
2714 }
2715 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002716 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002717 break;
2718 default:
2719 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002720 }
2721
Alexander Duyck2c4af692011-07-15 07:29:55 +00002722 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002723
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002724 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2725 ixgbe_ptp_check_pps_event(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002726
Alexander Duyck2c4af692011-07-15 07:29:55 +00002727 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002728 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002729 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002730
Alexander Duyck2c4af692011-07-15 07:29:55 +00002731 return IRQ_HANDLED;
2732}
2733
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002734static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002735{
2736 struct ixgbe_q_vector *q_vector = data;
2737
Auke Kok9a799d72007-09-15 14:07:45 -07002738 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002739
2740 if (q_vector->rx.ring || q_vector->tx.ring)
2741 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002742
2743 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002744}
2745
Auke Kok9a799d72007-09-15 14:07:45 -07002746/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002747 * ixgbe_poll - NAPI Rx polling callback
2748 * @napi: structure for representing this polling device
2749 * @budget: how many packets driver is allowed to clean
2750 *
2751 * This function is used for legacy and MSI, NAPI mode
2752 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002753int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002754{
2755 struct ixgbe_q_vector *q_vector =
2756 container_of(napi, struct ixgbe_q_vector, napi);
2757 struct ixgbe_adapter *adapter = q_vector->adapter;
2758 struct ixgbe_ring *ring;
2759 int per_ring_budget;
2760 bool clean_complete = true;
2761
2762#ifdef CONFIG_IXGBE_DCA
2763 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2764 ixgbe_update_dca(q_vector);
2765#endif
2766
2767 ixgbe_for_each_ring(ring, q_vector->tx)
2768 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2769
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002770 if (!ixgbe_qv_lock_napi(q_vector))
2771 return budget;
2772
Alexander Duyckeb01b972012-02-08 07:51:27 +00002773 /* attempt to distribute budget to each queue fairly, but don't allow
2774 * the budget to go below 1 because we'll exit polling */
2775 if (q_vector->rx.count > 1)
2776 per_ring_budget = max(budget/q_vector->rx.count, 1);
2777 else
2778 per_ring_budget = budget;
2779
2780 ixgbe_for_each_ring(ring, q_vector->rx)
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002781 clean_complete &= (ixgbe_clean_rx_irq(q_vector, ring,
2782 per_ring_budget) < per_ring_budget);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002783
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002784 ixgbe_qv_unlock_napi(q_vector);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002785 /* If all work not completed, return budget and keep polling */
2786 if (!clean_complete)
2787 return budget;
2788
2789 /* all work done, exit the polling mode */
2790 napi_complete(napi);
2791 if (adapter->rx_itr_setting & 1)
2792 ixgbe_set_itr(q_vector);
2793 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2794 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2795
2796 return 0;
2797}
2798
2799/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002800 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2801 * @adapter: board private structure
2802 *
2803 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2804 * interrupts from the kernel.
2805 **/
2806static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2807{
2808 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002809 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002810 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002811
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002812 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002813 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002814 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002815
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002816 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002817 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002818 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002819 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002820 } else if (q_vector->rx.ring) {
2821 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2822 "%s-%s-%d", netdev->name, "rx", ri++);
2823 } else if (q_vector->tx.ring) {
2824 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2825 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002826 } else {
2827 /* skip this unused q_vector */
2828 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002829 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002830 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2831 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002832 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002833 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002834 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002835 goto free_queue_irqs;
2836 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002837 /* If Flow Director is enabled, set interrupt affinity */
2838 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2839 /* assign the mask for this irq */
2840 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002841 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002842 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002843 }
2844
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002845 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002846 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002847 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002848 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002849 goto free_queue_irqs;
2850 }
2851
2852 return 0;
2853
2854free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002855 while (vector) {
2856 vector--;
2857 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2858 NULL);
2859 free_irq(adapter->msix_entries[vector].vector,
2860 adapter->q_vector[vector]);
2861 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002862 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2863 pci_disable_msix(adapter->pdev);
2864 kfree(adapter->msix_entries);
2865 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002866 return err;
2867}
2868
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002869/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002870 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002871 * @irq: interrupt number
2872 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002873 **/
2874static irqreturn_t ixgbe_intr(int irq, void *data)
2875{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002876 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002877 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002878 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002879 u32 eicr;
2880
Don Skidmore54037502009-02-21 15:42:56 -08002881 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002882 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002883 * before the read of EICR.
2884 */
2885 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2886
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002887 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002888 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002889 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002890 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002891 /*
2892 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002893 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002894 * have disabled interrupts due to EIAM
2895 * finish the workaround of silicon errata on 82598. Unmask
2896 * the interrupt that we masked before the EICR read.
2897 */
2898 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2899 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002900 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002901 }
Auke Kok9a799d72007-09-15 14:07:45 -07002902
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002903 if (eicr & IXGBE_EICR_LSC)
2904 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002905
Alexander Duyckbd508172010-11-16 19:27:03 -08002906 switch (hw->mac.type) {
2907 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002908 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002909 /* Fall through */
2910 case ixgbe_mac_X540:
Don Skidmored773ce22014-02-25 17:58:53 -08002911 if (eicr & IXGBE_EICR_ECC) {
2912 e_info(link, "Received ECC Err, initiating reset\n");
2913 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
2914 ixgbe_service_event_schedule(adapter);
2915 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
2916 }
Jacob Keller4f51bf72011-08-20 04:49:45 +00002917 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002918 break;
2919 default:
2920 break;
2921 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002922
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002923 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002924 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2925 ixgbe_ptp_check_pps_event(adapter, eicr);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002926
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002927 /* would disable interrupts here but EIAM disabled it */
2928 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002929
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002930 /*
2931 * re-enable link(maybe) and non-queue interrupts, no flush.
2932 * ixgbe_poll will re-enable the queue interrupts
2933 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002934 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2935 ixgbe_irq_enable(adapter, false, false);
2936
Auke Kok9a799d72007-09-15 14:07:45 -07002937 return IRQ_HANDLED;
2938}
2939
2940/**
2941 * ixgbe_request_irq - initialize interrupts
2942 * @adapter: board private structure
2943 *
2944 * Attempts to configure interrupts using the best available
2945 * capabilities of the hardware and kernel.
2946 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002947static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002948{
2949 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002950 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002951
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002952 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002953 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002954 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002955 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002956 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002957 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002958 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002959 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002960
Alexander Duyckde88eee2012-02-08 07:49:59 +00002961 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002962 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002963
Auke Kok9a799d72007-09-15 14:07:45 -07002964 return err;
2965}
2966
2967static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2968{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002969 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002970
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002971 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002972 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002973 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002974 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002975
2976 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2977 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2978 struct msix_entry *entry = &adapter->msix_entries[vector];
2979
2980 /* free only the irqs that were actually requested */
2981 if (!q_vector->rx.ring && !q_vector->tx.ring)
2982 continue;
2983
2984 /* clear the affinity_mask in the IRQ descriptor */
2985 irq_set_affinity_hint(entry->vector, NULL);
2986
2987 free_irq(entry->vector, q_vector);
2988 }
2989
2990 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002991}
2992
2993/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002994 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2995 * @adapter: board private structure
2996 **/
2997static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2998{
Alexander Duyckbd508172010-11-16 19:27:03 -08002999 switch (adapter->hw.mac.type) {
3000 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00003001 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08003002 break;
3003 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003004 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00003005 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
3006 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003007 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08003008 break;
3009 default:
3010 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003011 }
3012 IXGBE_WRITE_FLUSH(&adapter->hw);
3013 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003014 int vector;
3015
3016 for (vector = 0; vector < adapter->num_q_vectors; vector++)
3017 synchronize_irq(adapter->msix_entries[vector].vector);
3018
3019 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003020 } else {
3021 synchronize_irq(adapter->pdev->irq);
3022 }
3023}
3024
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003025/**
Auke Kok9a799d72007-09-15 14:07:45 -07003026 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
3027 *
3028 **/
3029static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
3030{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00003031 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07003032
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00003033 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07003034
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003035 ixgbe_set_ivar(adapter, 0, 0, 0);
3036 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003037
Emil Tantilov396e7992010-07-01 20:05:12 +00003038 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07003039}
3040
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003041/**
3042 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
3043 * @adapter: board private structure
3044 * @ring: structure containing ring specific data
3045 *
3046 * Configure the Tx descriptor ring after a reset.
3047 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00003048void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
3049 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003050{
3051 struct ixgbe_hw *hw = &adapter->hw;
3052 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003053 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003054 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003055 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003056
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003057 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003058 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003059 IXGBE_WRITE_FLUSH(hw);
3060
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003061 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00003062 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003063 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
3064 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
3065 ring->count * sizeof(union ixgbe_adv_tx_desc));
3066 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
3067 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003068 ring->tail = adapter->io_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003069
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003070 /*
3071 * set WTHRESH to encourage burst writeback, it should not be set
Emil Tantilov67da0972013-01-25 06:19:20 +00003072 * higher than 1 when:
3073 * - ITR is 0 as it could cause false TX hangs
3074 * - ITR is set to > 100k int/sec and BQL is enabled
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003075 *
3076 * In order to avoid issues WTHRESH + PTHRESH should always be equal
3077 * to or less than the number of on chip descriptors, which is
3078 * currently 40.
3079 */
Emil Tantilov67da0972013-01-25 06:19:20 +00003080#if IS_ENABLED(CONFIG_BQL)
3081 if (!ring->q_vector || (ring->q_vector->itr < IXGBE_100K_ITR))
3082#else
Alexander Duycke954b372012-02-08 07:49:38 +00003083 if (!ring->q_vector || (ring->q_vector->itr < 8))
Emil Tantilov67da0972013-01-25 06:19:20 +00003084#endif
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003085 txdctl |= (1 << 16); /* WTHRESH = 1 */
3086 else
3087 txdctl |= (8 << 16); /* WTHRESH = 8 */
3088
Alexander Duycke954b372012-02-08 07:49:38 +00003089 /*
3090 * Setting PTHRESH to 32 both improves performance
3091 * and avoids a TX hang with DFP enabled
3092 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003093 txdctl |= (1 << 8) | /* HTHRESH = 1 */
3094 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003095
3096 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00003097 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08003098 ring->atr_sample_rate = adapter->atr_sample_rate;
3099 ring->atr_count = 0;
3100 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
3101 } else {
3102 ring->atr_sample_rate = 0;
3103 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003104
Alexander Duyckfd786b72013-01-12 06:33:31 +00003105 /* initialize XPS */
3106 if (!test_and_set_bit(__IXGBE_TX_XPS_INIT_DONE, &ring->state)) {
3107 struct ixgbe_q_vector *q_vector = ring->q_vector;
3108
3109 if (q_vector)
John Fastabend2a47fa42013-11-06 09:54:52 -08003110 netif_set_xps_queue(ring->netdev,
Alexander Duyckfd786b72013-01-12 06:33:31 +00003111 &q_vector->affinity_mask,
3112 ring->queue_index);
3113 }
3114
John Fastabendc84d3242010-11-16 19:27:12 -08003115 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
3116
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003117 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003118 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
3119
3120 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3121 if (hw->mac.type == ixgbe_mac_82598EB &&
3122 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3123 return;
3124
3125 /* poll to verify queue is enabled */
3126 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003127 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003128 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
3129 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
3130 if (!wait_loop)
3131 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003132}
3133
Alexander Duyck120ff942010-08-19 13:34:50 +00003134static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
3135{
3136 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003137 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003138 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00003139
3140 if (hw->mac.type == ixgbe_mac_82598EB)
3141 return;
3142
3143 /* disable the arbiter while setting MTQC */
3144 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3145 rttdcs |= IXGBE_RTTDCS_ARBDIS;
3146 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3147
3148 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003149 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3150 mtqc = IXGBE_MTQC_VT_ENA;
3151 if (tcs > 4)
3152 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3153 else if (tcs > 1)
3154 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3155 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3156 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003157 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003158 mtqc |= IXGBE_MTQC_64VF;
3159 } else {
3160 if (tcs > 4)
3161 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3162 else if (tcs > 1)
3163 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3164 else
3165 mtqc = IXGBE_MTQC_64Q_1PB;
3166 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00003167
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003168 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003169
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003170 /* Enable Security TX Buffer IFG for multiple pb */
3171 if (tcs) {
3172 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
3173 sectx |= IXGBE_SECTX_DCB;
3174 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00003175 }
3176
3177 /* re-enable the arbiter */
3178 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3179 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3180}
3181
Auke Kok9a799d72007-09-15 14:07:45 -07003182/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07003183 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07003184 * @adapter: board private structure
3185 *
3186 * Configure the Tx unit of the MAC after a reset.
3187 **/
3188static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
3189{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003190 struct ixgbe_hw *hw = &adapter->hw;
3191 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003192 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003193
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003194 ixgbe_setup_mtqc(adapter);
3195
3196 if (hw->mac.type != ixgbe_mac_82598EB) {
3197 /* DMATXCTL.EN must be before Tx queues are enabled */
3198 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3199 dmatxctl |= IXGBE_DMATXCTL_TE;
3200 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3201 }
3202
Auke Kok9a799d72007-09-15 14:07:45 -07003203 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003204 for (i = 0; i < adapter->num_tx_queues; i++)
3205 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07003206}
3207
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00003208static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
3209 struct ixgbe_ring *ring)
3210{
3211 struct ixgbe_hw *hw = &adapter->hw;
3212 u8 reg_idx = ring->reg_idx;
3213 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3214
3215 srrctl |= IXGBE_SRRCTL_DROP_EN;
3216
3217 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3218}
3219
3220static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
3221 struct ixgbe_ring *ring)
3222{
3223 struct ixgbe_hw *hw = &adapter->hw;
3224 u8 reg_idx = ring->reg_idx;
3225 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3226
3227 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
3228
3229 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3230}
3231
3232#ifdef CONFIG_IXGBE_DCB
3233void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3234#else
3235static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3236#endif
3237{
3238 int i;
3239 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
3240
3241 if (adapter->ixgbe_ieee_pfc)
3242 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
3243
3244 /*
3245 * We should set the drop enable bit if:
3246 * SR-IOV is enabled
3247 * or
3248 * Number of Rx queues > 1 and flow control is disabled
3249 *
3250 * This allows us to avoid head of line blocking for security
3251 * and performance reasons.
3252 */
3253 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
3254 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
3255 for (i = 0; i < adapter->num_rx_queues; i++)
3256 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
3257 } else {
3258 for (i = 0; i < adapter->num_rx_queues; i++)
3259 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
3260 }
3261}
3262
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003263#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07003264
Yi Zoua6616b42009-08-06 13:05:23 +00003265static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00003266 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003267{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003268 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003269 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003270 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003271
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003272 if (hw->mac.type == ixgbe_mac_82598EB) {
3273 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
3274
3275 /*
3276 * if VMDq is not active we must program one srrctl register
3277 * per RSS queue since we have enabled RDRXCTL.MVMEN
3278 */
3279 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08003280 }
3281
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003282 /* configure header buffer length, needed for RSC */
3283 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003284
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003285 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00003286 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003287
3288 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00003289 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003290
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003291 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003292}
3293
Alexander Duyck05abb122010-08-19 13:35:41 +00003294static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003295{
Alexander Duyck05abb122010-08-19 13:35:41 +00003296 struct ixgbe_hw *hw = &adapter->hw;
3297 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00003298 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
3299 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00003300 u32 mrqc = 0, reta = 0;
3301 u32 rxcsum;
3302 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003303 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00003304
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003305 /*
3306 * Program table for at least 2 queues w/ SR-IOV so that VFs can
3307 * make full use of any rings they may have. We will use the
3308 * PSRTYPE register to control how many rings we use within the PF.
3309 */
3310 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
3311 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003312
Alexander Duyck05abb122010-08-19 13:35:41 +00003313 /* Fill out hash function seeds */
3314 for (i = 0; i < 10; i++)
3315 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003316
Alexander Duyck05abb122010-08-19 13:35:41 +00003317 /* Fill out redirection table */
3318 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003319 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00003320 j = 0;
3321 /* reta = 4-byte sliding window of
3322 * 0x00..(indices-1)(indices-1)00..etc. */
3323 reta = (reta << 8) | (j * 0x11);
3324 if ((i & 3) == 3)
3325 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3326 }
3327
3328 /* Disable indicating checksum in descriptor, enables RSS hash */
3329 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3330 rxcsum |= IXGBE_RXCSUM_PCSD;
3331 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3332
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003333 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003334 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003335 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003336 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003337 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003338
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003339 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3340 if (tcs > 4)
3341 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3342 else if (tcs > 1)
3343 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
3344 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3345 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3346 else
3347 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3348 } else {
3349 if (tcs > 4)
3350 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3351 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003352 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3353 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003354 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003355 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003356 }
3357
Alexander Duyck05abb122010-08-19 13:35:41 +00003358 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003359 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3360 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3361 IXGBE_MRQC_RSS_FIELD_IPV6 |
3362 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003363
Alexander Duyckef6afc02012-02-08 07:51:53 +00003364 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3365 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3366 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3367 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3368
Alexander Duyck05abb122010-08-19 13:35:41 +00003369 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003370}
3371
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003372/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003373 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3374 * @adapter: address of board private structure
3375 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003376 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003377static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003378 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003379{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003380 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003381 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003382 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003383
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003384 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003385 return;
3386
Alexander Duyck73670962010-08-19 13:38:34 +00003387 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003388 rscctrl |= IXGBE_RSCCTL_RSCEN;
3389 /*
3390 * we must limit the number of descriptors so that the
3391 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003392 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003393 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003394 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003395 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003396}
3397
Alexander Duyck9e10e042010-08-19 13:40:06 +00003398#define IXGBE_MAX_RX_DESC_POLL 10
3399static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3400 struct ixgbe_ring *ring)
3401{
3402 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003403 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3404 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003405 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003406
Mark Rustadb0483c82014-01-14 18:53:17 -08003407 if (ixgbe_removed(hw->hw_addr))
3408 return;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003409 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3410 if (hw->mac.type == ixgbe_mac_82598EB &&
3411 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3412 return;
3413
3414 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003415 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003416 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3417 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3418
3419 if (!wait_loop) {
3420 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3421 "the polling period\n", reg_idx);
3422 }
3423}
3424
Yi Zou2d39d572011-01-06 14:29:56 +00003425void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3426 struct ixgbe_ring *ring)
3427{
3428 struct ixgbe_hw *hw = &adapter->hw;
3429 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3430 u32 rxdctl;
3431 u8 reg_idx = ring->reg_idx;
3432
Mark Rustadb0483c82014-01-14 18:53:17 -08003433 if (ixgbe_removed(hw->hw_addr))
3434 return;
Yi Zou2d39d572011-01-06 14:29:56 +00003435 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3436 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3437
3438 /* write value back with RXDCTL.ENABLE bit cleared */
3439 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3440
3441 if (hw->mac.type == ixgbe_mac_82598EB &&
3442 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3443 return;
3444
3445 /* the hardware may take up to 100us to really disable the rx queue */
3446 do {
3447 udelay(10);
3448 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3449 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3450
3451 if (!wait_loop) {
3452 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3453 "the polling period\n", reg_idx);
3454 }
3455}
3456
Alexander Duyck84418e32010-08-19 13:40:54 +00003457void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3458 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003459{
3460 struct ixgbe_hw *hw = &adapter->hw;
3461 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003462 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003463 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003464
Alexander Duyck9e10e042010-08-19 13:40:06 +00003465 /* disable queue to avoid issues while updating state */
3466 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003467 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003468
Alexander Duyckacd37172010-08-19 13:36:05 +00003469 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3470 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3471 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3472 ring->count * sizeof(union ixgbe_adv_rx_desc));
3473 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3474 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003475 ring->tail = adapter->io_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003476
3477 ixgbe_configure_srrctl(adapter, ring);
3478 ixgbe_configure_rscctl(adapter, ring);
3479
3480 if (hw->mac.type == ixgbe_mac_82598EB) {
3481 /*
3482 * enable cache line friendly hardware writes:
3483 * PTHRESH=32 descriptors (half the internal cache),
3484 * this also removes ugly rx_no_buffer_count increment
3485 * HTHRESH=4 descriptors (to minimize latency on fetch)
3486 * WTHRESH=8 burst writeback up to two cache lines
3487 */
3488 rxdctl &= ~0x3FFFFF;
3489 rxdctl |= 0x080420;
3490 }
3491
3492 /* enable receive descriptor ring */
3493 rxdctl |= IXGBE_RXDCTL_ENABLE;
3494 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3495
3496 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003497 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003498}
3499
Alexander Duyck48654522010-08-19 13:36:27 +00003500static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3501{
3502 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003503 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend2a47fa42013-11-06 09:54:52 -08003504 u16 pool;
Alexander Duyck48654522010-08-19 13:36:27 +00003505
3506 /* PSRTYPE must be initialized in non 82598 adapters */
3507 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003508 IXGBE_PSRTYPE_UDPHDR |
3509 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003510 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003511 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003512
3513 if (hw->mac.type == ixgbe_mac_82598EB)
3514 return;
3515
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003516 if (rss_i > 3)
3517 psrtype |= 2 << 29;
3518 else if (rss_i > 1)
3519 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003520
John Fastabend2a47fa42013-11-06 09:54:52 -08003521 for_each_set_bit(pool, &adapter->fwd_bitmask, 32)
3522 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
Alexander Duyck48654522010-08-19 13:36:27 +00003523}
3524
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003525static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3526{
3527 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003528 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003529 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003530 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003531
3532 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3533 return;
3534
3535 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003536 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3537 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003538 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003539 vmdctl |= IXGBE_VT_CTL_REPLEN;
3540 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003541
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003542 vf_shift = VMDQ_P(0) % 32;
3543 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003544
3545 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003546 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3547 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3548 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3549 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Greg Rose9b735982012-11-08 02:41:35 +00003550 if (adapter->flags2 & IXGBE_FLAG2_BRIDGE_MODE_VEB)
3551 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003552
3553 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003554 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003555
3556 /*
3557 * Set up VF register offsets for selected VT Mode,
3558 * i.e. 32 or 64 VFs for SR-IOV
3559 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003560 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3561 case IXGBE_82599_VMDQ_8Q_MASK:
3562 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3563 break;
3564 case IXGBE_82599_VMDQ_4Q_MASK:
3565 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3566 break;
3567 default:
3568 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3569 break;
3570 }
3571
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003572 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3573
Alexander Duyck435b19f2012-05-18 06:34:08 +00003574
Greg Rosea985b6c32010-11-18 03:02:52 +00003575 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003576 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003577 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003578 /* For VFs that have spoof checking turned off */
3579 for (i = 0; i < adapter->num_vfs; i++) {
3580 if (!adapter->vfinfo[i].spoofchk_enabled)
3581 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3582 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003583}
3584
Alexander Duyck477de6e2010-08-19 13:38:11 +00003585static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003586{
Auke Kok9a799d72007-09-15 14:07:45 -07003587 struct ixgbe_hw *hw = &adapter->hw;
3588 struct net_device *netdev = adapter->netdev;
3589 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003590 struct ixgbe_ring *rx_ring;
3591 int i;
3592 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003593
Alexander Duyck477de6e2010-08-19 13:38:11 +00003594#ifdef IXGBE_FCOE
3595 /* adjust max frame to be able to do baby jumbo for FCoE */
3596 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3597 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3598 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3599
3600#endif /* IXGBE_FCOE */
Alexander Duyck872844d2012-08-15 02:10:43 +00003601
3602 /* adjust max frame to be at least the size of a standard frame */
3603 if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN))
3604 max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN);
3605
Alexander Duyck477de6e2010-08-19 13:38:11 +00003606 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3607 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3608 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3609 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3610
3611 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003612 }
3613
Auke Kok9a799d72007-09-15 14:07:45 -07003614 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003615 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3616 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003617 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3618
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003619 /*
3620 * Setup the HW Rx Head and Tail Descriptor Pointers and
3621 * the Base and Length of the Rx Descriptor Ring
3622 */
Auke Kok9a799d72007-09-15 14:07:45 -07003623 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003624 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003625 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3626 set_ring_rsc_enabled(rx_ring);
3627 else
3628 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003629 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003630}
3631
Alexander Duyck73670962010-08-19 13:38:34 +00003632static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3633{
3634 struct ixgbe_hw *hw = &adapter->hw;
3635 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3636
3637 switch (hw->mac.type) {
3638 case ixgbe_mac_82598EB:
3639 /*
3640 * For VMDq support of different descriptor types or
3641 * buffer sizes through the use of multiple SRRCTL
3642 * registers, RDRXCTL.MVMEN must be set to 1
3643 *
3644 * also, the manual doesn't mention it clearly but DCA hints
3645 * will only use queue 0's tags unless this bit is set. Side
3646 * effects of setting this bit are only that SRRCTL must be
3647 * fully programmed [0..15]
3648 */
3649 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3650 break;
3651 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003652 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003653 /* Disable RSC for ACK packets */
3654 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3655 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3656 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3657 /* hardware requires some bits to be set by default */
3658 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3659 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3660 break;
3661 default:
3662 /* We should do nothing since we don't know this hardware */
3663 return;
3664 }
3665
3666 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3667}
3668
Alexander Duyck477de6e2010-08-19 13:38:11 +00003669/**
3670 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3671 * @adapter: board private structure
3672 *
3673 * Configure the Rx unit of the MAC after a reset.
3674 **/
3675static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3676{
3677 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003678 int i;
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003679 u32 rxctrl, rfctl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003680
3681 /* disable receives while setting up the descriptors */
3682 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3683 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3684
3685 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003686 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003687
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003688 /* RSC Setup */
3689 rfctl = IXGBE_READ_REG(hw, IXGBE_RFCTL);
3690 rfctl &= ~IXGBE_RFCTL_RSC_DIS;
3691 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
3692 rfctl |= IXGBE_RFCTL_RSC_DIS;
3693 IXGBE_WRITE_REG(hw, IXGBE_RFCTL, rfctl);
3694
Alexander Duyck9e10e042010-08-19 13:40:06 +00003695 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003696 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003697
Alexander Duyck477de6e2010-08-19 13:38:11 +00003698 /* set_rx_buffer_len must be called before ring initialization */
3699 ixgbe_set_rx_buffer_len(adapter);
3700
3701 /*
3702 * Setup the HW Rx Head and Tail Descriptor Pointers and
3703 * the Base and Length of the Rx Descriptor Ring
3704 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003705 for (i = 0; i < adapter->num_rx_queues; i++)
3706 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003707
Alexander Duyck9e10e042010-08-19 13:40:06 +00003708 /* disable drop enable for 82598 parts */
3709 if (hw->mac.type == ixgbe_mac_82598EB)
3710 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3711
3712 /* enable all receives */
3713 rxctrl |= IXGBE_RXCTRL_RXEN;
3714 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003715}
3716
Patrick McHardy80d5c362013-04-19 02:04:28 +00003717static int ixgbe_vlan_rx_add_vid(struct net_device *netdev,
3718 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003719{
3720 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003721 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003722
3723 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003724 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003725 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003726
3727 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003728}
3729
Patrick McHardy80d5c362013-04-19 02:04:28 +00003730static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev,
3731 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003732{
3733 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003734 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003735
Auke Kok9a799d72007-09-15 14:07:45 -07003736 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003737 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003738 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003739
3740 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003741}
3742
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003743/**
3744 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3745 * @adapter: driver data
3746 */
3747static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3748{
3749 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003750 u32 vlnctrl;
3751
3752 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3753 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3754 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3755}
3756
3757/**
3758 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3759 * @adapter: driver data
3760 */
3761static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3762{
3763 struct ixgbe_hw *hw = &adapter->hw;
3764 u32 vlnctrl;
3765
3766 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3767 vlnctrl |= IXGBE_VLNCTRL_VFE;
3768 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3769 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3770}
3771
3772/**
3773 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3774 * @adapter: driver data
3775 */
3776static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3777{
3778 struct ixgbe_hw *hw = &adapter->hw;
3779 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003780 int i, j;
3781
3782 switch (hw->mac.type) {
3783 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003784 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3785 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003786 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3787 break;
3788 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003789 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003790 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08003791 struct ixgbe_ring *ring = adapter->rx_ring[i];
3792
3793 if (ring->l2_accel_priv)
3794 continue;
3795 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003796 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3797 vlnctrl &= ~IXGBE_RXDCTL_VME;
3798 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3799 }
3800 break;
3801 default:
3802 break;
3803 }
3804}
3805
3806/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003807 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003808 * @adapter: driver data
3809 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003810static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003811{
3812 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003813 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003814 int i, j;
3815
3816 switch (hw->mac.type) {
3817 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003818 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3819 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003820 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3821 break;
3822 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003823 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003824 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08003825 struct ixgbe_ring *ring = adapter->rx_ring[i];
3826
3827 if (ring->l2_accel_priv)
3828 continue;
3829 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003830 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3831 vlnctrl |= IXGBE_RXDCTL_VME;
3832 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3833 }
3834 break;
3835 default:
3836 break;
3837 }
3838}
3839
Auke Kok9a799d72007-09-15 14:07:45 -07003840static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3841{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003842 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003843
Patrick McHardy80d5c362013-04-19 02:04:28 +00003844 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003845
3846 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00003847 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003848}
3849
3850/**
Alexander Duyck28500622010-06-15 09:25:48 +00003851 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3852 * @netdev: network interface device structure
3853 *
3854 * Writes unicast address list to the RAR table.
3855 * Returns: -ENOMEM on failure/insufficient address space
3856 * 0 on no addresses written
3857 * X on writing X addresses to the RAR table
3858 **/
3859static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3860{
3861 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3862 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003863 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003864 int count = 0;
3865
John Fastabend2a47fa42013-11-06 09:54:52 -08003866 /* In SR-IOV/VMDQ modes significantly less RAR entries are available */
John Fastabend95447462012-05-31 12:42:26 +00003867 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3868 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3869
Alexander Duyck28500622010-06-15 09:25:48 +00003870 /* return ENOMEM indicating insufficient memory for addresses */
3871 if (netdev_uc_count(netdev) > rar_entries)
3872 return -ENOMEM;
3873
John Fastabend95447462012-05-31 12:42:26 +00003874 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003875 struct netdev_hw_addr *ha;
3876 /* return error if we do not support writing to RAR table */
3877 if (!hw->mac.ops.set_rar)
3878 return -ENOMEM;
3879
3880 netdev_for_each_uc_addr(ha, netdev) {
3881 if (!rar_entries)
3882 break;
3883 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003884 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003885 count++;
3886 }
3887 }
3888 /* write the addresses in reverse order to avoid write combining */
3889 for (; rar_entries > 0 ; rar_entries--)
3890 hw->mac.ops.clear_rar(hw, rar_entries);
3891
3892 return count;
3893}
3894
3895/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003896 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003897 * @netdev: network interface device structure
3898 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003899 * The set_rx_method entry point is called whenever the unicast/multicast
3900 * address list or the network interface flags are updated. This routine is
3901 * responsible for configuring the hardware for proper unicast, multicast and
3902 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003903 **/
Greg Rose7f870472010-01-09 02:25:29 +00003904void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003905{
3906 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3907 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003908 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3909 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003910
3911 /* Check for Promiscuous and All Multicast modes */
3912
3913 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3914
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003915 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003916 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003917 fctrl |= IXGBE_FCTRL_BAM;
3918 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3919 fctrl |= IXGBE_FCTRL_PMCF;
3920
Alexander Duyck28500622010-06-15 09:25:48 +00003921 /* clear the bits we are changing the status of */
3922 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3923
Auke Kok9a799d72007-09-15 14:07:45 -07003924 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003925 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003926 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003927 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Greg Rose670224f2013-02-22 02:14:39 +00003928 /* Only disable hardware filter vlans in promiscuous mode
3929 * if SR-IOV and VMDQ are disabled - otherwise ensure
3930 * that hardware VLAN filters remain enabled.
3931 */
3932 if (!(adapter->flags & (IXGBE_FLAG_VMDQ_ENABLED |
3933 IXGBE_FLAG_SRIOV_ENABLED)))
3934 ixgbe_vlan_filter_disable(adapter);
3935 else
3936 ixgbe_vlan_filter_enable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003937 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003938 if (netdev->flags & IFF_ALLMULTI) {
3939 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003940 vmolr |= IXGBE_VMOLR_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003941 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003942 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003943 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003944 }
3945
3946 /*
3947 * Write addresses to available RAR registers, if there is not
3948 * sufficient space to store all the addresses then enable
3949 * unicast promiscuous mode
3950 */
3951 count = ixgbe_write_uc_addr_list(netdev);
3952 if (count < 0) {
3953 fctrl |= IXGBE_FCTRL_UPE;
3954 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003955 }
3956
Emil Tantilovcf789592013-10-26 08:13:20 +00003957 /* Write addresses to the MTA, if the attempt fails
3958 * then we should just turn on promiscuous mode so
3959 * that we can at least receive multicast traffic
3960 */
3961 hw->mac.ops.update_mc_addr_list(hw, netdev);
3962 vmolr |= IXGBE_VMOLR_ROMPE;
3963
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003964 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003965 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003966
3967 if (hw->mac.type != ixgbe_mac_82598EB) {
3968 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003969 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3970 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003971 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003972 }
3973
Ben Greear3f2d1c02012-03-08 08:28:41 +00003974 /* This is useful for sniffing bad packets. */
3975 if (adapter->netdev->features & NETIF_F_RXALL) {
3976 /* UPE and MPE will be handled by normal PROMISC logic
3977 * in e1000e_set_rx_mode */
3978 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3979 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3980 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3981
3982 fctrl &= ~(IXGBE_FCTRL_DPF);
3983 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3984 }
3985
Auke Kok9a799d72007-09-15 14:07:45 -07003986 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003987
Patrick McHardyf6469682013-04-19 02:04:27 +00003988 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Jesse Grossf62bbb52010-10-20 13:56:10 +00003989 ixgbe_vlan_strip_enable(adapter);
3990 else
3991 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003992}
3993
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003994static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3995{
3996 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003997
Eliezer Tamir5a85e732013-06-10 11:40:20 +03003998 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
3999 ixgbe_qv_init_lock(adapter->q_vector[q_idx]);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004000 napi_enable(&adapter->q_vector[q_idx]->napi);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004001 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004002}
4003
4004static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
4005{
4006 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004007
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004008 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004009 napi_disable(&adapter->q_vector[q_idx]->napi);
Jacob Keller27d9ce42013-09-21 05:05:44 +00004010 while (!ixgbe_qv_disable(adapter->q_vector[q_idx])) {
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004011 pr_info("QV %d locked\n", q_idx);
Jacob Keller27d9ce42013-09-21 05:05:44 +00004012 usleep_range(1000, 20000);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004013 }
4014 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004015}
4016
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004017#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004018/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08004019 * ixgbe_configure_dcb - Configure DCB hardware
4020 * @adapter: ixgbe adapter struct
4021 *
4022 * This is called by the driver on open to configure the DCB hardware.
4023 * This is also called by the gennetlink interface when reconfiguring
4024 * the DCB state.
4025 */
4026static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
4027{
4028 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00004029 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004030
Alexander Duyck67ebd792010-08-19 13:34:04 +00004031 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
4032 if (hw->mac.type == ixgbe_mac_82598EB)
4033 netif_set_gso_max_size(adapter->netdev, 65536);
4034 return;
4035 }
4036
4037 if (hw->mac.type == ixgbe_mac_82598EB)
4038 netif_set_gso_max_size(adapter->netdev, 32768);
4039
John Fastabendb1208182011-10-15 05:00:10 +00004040#ifdef IXGBE_FCOE
4041 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
4042 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
4043#endif
4044
Alexander Duyck01fa7d92010-11-16 19:26:53 -08004045 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00004046 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00004047 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
4048 DCB_TX_CONFIG);
4049 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
4050 DCB_RX_CONFIG);
4051 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00004052 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
4053 ixgbe_dcb_hw_ets(&adapter->hw,
4054 adapter->ixgbe_ieee_ets,
4055 max_frame);
4056 ixgbe_dcb_hw_pfc_config(&adapter->hw,
4057 adapter->ixgbe_ieee_pfc->pfc_en,
4058 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00004059 }
John Fastabend8187cd42011-02-23 05:58:08 +00004060
4061 /* Enable RSS Hash per TC */
4062 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00004063 u32 msb = 0;
4064 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00004065
Alexander Duyckd411a932012-06-30 00:14:01 +00004066 while (rss_i) {
4067 msb++;
4068 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00004069 }
Alexander Duyckd411a932012-06-30 00:14:01 +00004070
Alexander Duyck4ae63732012-06-22 06:46:33 +00004071 /* write msb to all 8 TCs in one write */
4072 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00004073 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004074}
John Fastabend9da712d2011-08-23 03:14:22 +00004075#endif
4076
4077/* Additional bittime to account for IXGBE framing */
4078#define IXGBE_ETH_FRAMING 20
4079
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004080/**
John Fastabend9da712d2011-08-23 03:14:22 +00004081 * ixgbe_hpbthresh - calculate high water mark for flow control
4082 *
4083 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004084 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004085 */
4086static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
4087{
4088 struct ixgbe_hw *hw = &adapter->hw;
4089 struct net_device *dev = adapter->netdev;
4090 int link, tc, kb, marker;
4091 u32 dv_id, rx_pba;
4092
4093 /* Calculate max LAN frame size */
4094 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
4095
4096#ifdef IXGBE_FCOE
4097 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00004098 if ((dev->features & NETIF_F_FCOE_MTU) &&
4099 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
4100 (pb == ixgbe_fcoe_get_tc(adapter)))
4101 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004102
4103#endif
John Fastabend9da712d2011-08-23 03:14:22 +00004104 /* Calculate delay value for device */
4105 switch (hw->mac.type) {
4106 case ixgbe_mac_X540:
4107 dv_id = IXGBE_DV_X540(link, tc);
4108 break;
4109 default:
4110 dv_id = IXGBE_DV(link, tc);
4111 break;
4112 }
4113
4114 /* Loopback switch introduces additional latency */
4115 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4116 dv_id += IXGBE_B2BT(tc);
4117
4118 /* Delay value is calculated in bit times convert to KB */
4119 kb = IXGBE_BT2KB(dv_id);
4120 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
4121
4122 marker = rx_pba - kb;
4123
4124 /* It is possible that the packet buffer is not large enough
4125 * to provide required headroom. In this case throw an error
4126 * to user and a do the best we can.
4127 */
4128 if (marker < 0) {
4129 e_warn(drv, "Packet Buffer(%i) can not provide enough"
4130 "headroom to support flow control."
4131 "Decrease MTU or number of traffic classes\n", pb);
4132 marker = tc + 1;
4133 }
4134
4135 return marker;
4136}
4137
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004138/**
John Fastabend9da712d2011-08-23 03:14:22 +00004139 * ixgbe_lpbthresh - calculate low water mark for for flow control
4140 *
4141 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004142 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004143 */
4144static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
4145{
4146 struct ixgbe_hw *hw = &adapter->hw;
4147 struct net_device *dev = adapter->netdev;
4148 int tc;
4149 u32 dv_id;
4150
4151 /* Calculate max LAN frame size */
4152 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
4153
4154 /* Calculate delay value for device */
4155 switch (hw->mac.type) {
4156 case ixgbe_mac_X540:
4157 dv_id = IXGBE_LOW_DV_X540(tc);
4158 break;
4159 default:
4160 dv_id = IXGBE_LOW_DV(tc);
4161 break;
4162 }
4163
4164 /* Delay value is calculated in bit times convert to KB */
4165 return IXGBE_BT2KB(dv_id);
4166}
4167
4168/*
4169 * ixgbe_pbthresh_setup - calculate and setup high low water marks
4170 */
4171static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
4172{
4173 struct ixgbe_hw *hw = &adapter->hw;
4174 int num_tc = netdev_get_num_tc(adapter->netdev);
4175 int i;
4176
4177 if (!num_tc)
4178 num_tc = 1;
4179
4180 hw->fc.low_water = ixgbe_lpbthresh(adapter);
4181
4182 for (i = 0; i < num_tc; i++) {
4183 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
4184
4185 /* Low water marks must not be larger than high water marks */
4186 if (hw->fc.low_water > hw->fc.high_water[i])
4187 hw->fc.low_water = 0;
4188 }
4189}
John Fastabend80605c652011-05-02 12:34:10 +00004190
4191static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
4192{
John Fastabend80605c652011-05-02 12:34:10 +00004193 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00004194 int hdrm;
4195 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00004196
4197 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4198 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00004199 hdrm = 32 << adapter->fdir_pballoc;
4200 else
4201 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00004202
Alexander Duyckf7e10272011-07-21 00:40:35 +00004203 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00004204 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00004205}
4206
Alexander Duycke4911d52011-05-11 07:18:52 +00004207static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
4208{
4209 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004210 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00004211 struct ixgbe_fdir_filter *filter;
4212
4213 spin_lock(&adapter->fdir_perfect_lock);
4214
4215 if (!hlist_empty(&adapter->fdir_filter_list))
4216 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
4217
Sasha Levinb67bfe02013-02-27 17:06:00 -08004218 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00004219 &adapter->fdir_filter_list, fdir_node) {
4220 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00004221 &filter->filter,
4222 filter->sw_idx,
4223 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
4224 IXGBE_FDIR_DROP_QUEUE :
4225 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00004226 }
4227
4228 spin_unlock(&adapter->fdir_perfect_lock);
4229}
4230
John Fastabend2a47fa42013-11-06 09:54:52 -08004231static void ixgbe_macvlan_set_rx_mode(struct net_device *dev, unsigned int pool,
4232 struct ixgbe_adapter *adapter)
4233{
4234 struct ixgbe_hw *hw = &adapter->hw;
4235 u32 vmolr;
4236
4237 /* No unicast promiscuous support for VMDQ devices. */
4238 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
4239 vmolr |= (IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
4240
4241 /* clear the affected bit */
4242 vmolr &= ~IXGBE_VMOLR_MPE;
4243
4244 if (dev->flags & IFF_ALLMULTI) {
4245 vmolr |= IXGBE_VMOLR_MPE;
4246 } else {
4247 vmolr |= IXGBE_VMOLR_ROMPE;
4248 hw->mac.ops.update_mc_addr_list(hw, dev);
4249 }
4250 ixgbe_write_uc_addr_list(adapter->netdev);
4251 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
4252}
4253
4254static void ixgbe_add_mac_filter(struct ixgbe_adapter *adapter,
4255 u8 *addr, u16 pool)
4256{
4257 struct ixgbe_hw *hw = &adapter->hw;
4258 unsigned int entry;
4259
4260 entry = hw->mac.num_rar_entries - pool;
4261 hw->mac.ops.set_rar(hw, entry, addr, VMDQ_P(pool), IXGBE_RAH_AV);
4262}
4263
4264static void ixgbe_fwd_psrtype(struct ixgbe_fwd_adapter *vadapter)
4265{
4266 struct ixgbe_adapter *adapter = vadapter->real_adapter;
John Fastabend219354d2013-11-08 00:50:32 -08004267 int rss_i = adapter->num_rx_queues_per_pool;
John Fastabend2a47fa42013-11-06 09:54:52 -08004268 struct ixgbe_hw *hw = &adapter->hw;
4269 u16 pool = vadapter->pool;
4270 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
4271 IXGBE_PSRTYPE_UDPHDR |
4272 IXGBE_PSRTYPE_IPV4HDR |
4273 IXGBE_PSRTYPE_L2HDR |
4274 IXGBE_PSRTYPE_IPV6HDR;
4275
4276 if (hw->mac.type == ixgbe_mac_82598EB)
4277 return;
4278
4279 if (rss_i > 3)
4280 psrtype |= 2 << 29;
4281 else if (rss_i > 1)
4282 psrtype |= 1 << 29;
4283
4284 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
4285}
4286
4287/**
4288 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
4289 * @rx_ring: ring to free buffers from
4290 **/
4291static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
4292{
4293 struct device *dev = rx_ring->dev;
4294 unsigned long size;
4295 u16 i;
4296
4297 /* ring already cleared, nothing to do */
4298 if (!rx_ring->rx_buffer_info)
4299 return;
4300
4301 /* Free all the Rx ring sk_buffs */
4302 for (i = 0; i < rx_ring->count; i++) {
4303 struct ixgbe_rx_buffer *rx_buffer;
4304
4305 rx_buffer = &rx_ring->rx_buffer_info[i];
4306 if (rx_buffer->skb) {
4307 struct sk_buff *skb = rx_buffer->skb;
4308 if (IXGBE_CB(skb)->page_released) {
4309 dma_unmap_page(dev,
4310 IXGBE_CB(skb)->dma,
4311 ixgbe_rx_bufsz(rx_ring),
4312 DMA_FROM_DEVICE);
4313 IXGBE_CB(skb)->page_released = false;
4314 }
4315 dev_kfree_skb(skb);
4316 }
4317 rx_buffer->skb = NULL;
4318 if (rx_buffer->dma)
4319 dma_unmap_page(dev, rx_buffer->dma,
4320 ixgbe_rx_pg_size(rx_ring),
4321 DMA_FROM_DEVICE);
4322 rx_buffer->dma = 0;
4323 if (rx_buffer->page)
4324 __free_pages(rx_buffer->page,
4325 ixgbe_rx_pg_order(rx_ring));
4326 rx_buffer->page = NULL;
4327 }
4328
4329 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4330 memset(rx_ring->rx_buffer_info, 0, size);
4331
4332 /* Zero out the descriptor ring */
4333 memset(rx_ring->desc, 0, rx_ring->size);
4334
4335 rx_ring->next_to_alloc = 0;
4336 rx_ring->next_to_clean = 0;
4337 rx_ring->next_to_use = 0;
4338}
4339
4340static void ixgbe_disable_fwd_ring(struct ixgbe_fwd_adapter *vadapter,
4341 struct ixgbe_ring *rx_ring)
4342{
4343 struct ixgbe_adapter *adapter = vadapter->real_adapter;
4344 int index = rx_ring->queue_index + vadapter->rx_base_queue;
4345
4346 /* shutdown specific queue receive and wait for dma to settle */
4347 ixgbe_disable_rx_queue(adapter, rx_ring);
4348 usleep_range(10000, 20000);
4349 ixgbe_irq_disable_queues(adapter, ((u64)1 << index));
4350 ixgbe_clean_rx_ring(rx_ring);
4351 rx_ring->l2_accel_priv = NULL;
4352}
4353
John Fastabendae72c8d2013-11-09 07:11:26 +00004354static int ixgbe_fwd_ring_down(struct net_device *vdev,
4355 struct ixgbe_fwd_adapter *accel)
John Fastabend2a47fa42013-11-06 09:54:52 -08004356{
4357 struct ixgbe_adapter *adapter = accel->real_adapter;
4358 unsigned int rxbase = accel->rx_base_queue;
4359 unsigned int txbase = accel->tx_base_queue;
4360 int i;
4361
4362 netif_tx_stop_all_queues(vdev);
4363
4364 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4365 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4366 adapter->rx_ring[rxbase + i]->netdev = adapter->netdev;
4367 }
4368
4369 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4370 adapter->tx_ring[txbase + i]->l2_accel_priv = NULL;
4371 adapter->tx_ring[txbase + i]->netdev = adapter->netdev;
4372 }
4373
4374
4375 return 0;
4376}
4377
4378static int ixgbe_fwd_ring_up(struct net_device *vdev,
4379 struct ixgbe_fwd_adapter *accel)
4380{
4381 struct ixgbe_adapter *adapter = accel->real_adapter;
4382 unsigned int rxbase, txbase, queues;
4383 int i, baseq, err = 0;
4384
4385 if (!test_bit(accel->pool, &adapter->fwd_bitmask))
4386 return 0;
4387
4388 baseq = accel->pool * adapter->num_rx_queues_per_pool;
4389 netdev_dbg(vdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
4390 accel->pool, adapter->num_rx_pools,
4391 baseq, baseq + adapter->num_rx_queues_per_pool,
4392 adapter->fwd_bitmask);
4393
4394 accel->netdev = vdev;
4395 accel->rx_base_queue = rxbase = baseq;
4396 accel->tx_base_queue = txbase = baseq;
4397
4398 for (i = 0; i < adapter->num_rx_queues_per_pool; i++)
4399 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4400
4401 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4402 adapter->rx_ring[rxbase + i]->netdev = vdev;
4403 adapter->rx_ring[rxbase + i]->l2_accel_priv = accel;
4404 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[rxbase + i]);
4405 }
4406
4407 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4408 adapter->tx_ring[txbase + i]->netdev = vdev;
4409 adapter->tx_ring[txbase + i]->l2_accel_priv = accel;
4410 }
4411
4412 queues = min_t(unsigned int,
4413 adapter->num_rx_queues_per_pool, vdev->num_tx_queues);
4414 err = netif_set_real_num_tx_queues(vdev, queues);
4415 if (err)
4416 goto fwd_queue_err;
4417
John Fastabend2a47fa42013-11-06 09:54:52 -08004418 err = netif_set_real_num_rx_queues(vdev, queues);
4419 if (err)
4420 goto fwd_queue_err;
4421
4422 if (is_valid_ether_addr(vdev->dev_addr))
4423 ixgbe_add_mac_filter(adapter, vdev->dev_addr, accel->pool);
4424
4425 ixgbe_fwd_psrtype(accel);
4426 ixgbe_macvlan_set_rx_mode(vdev, accel->pool, adapter);
4427 return err;
4428fwd_queue_err:
4429 ixgbe_fwd_ring_down(vdev, accel);
4430 return err;
4431}
4432
4433static void ixgbe_configure_dfwd(struct ixgbe_adapter *adapter)
4434{
4435 struct net_device *upper;
4436 struct list_head *iter;
4437 int err;
4438
4439 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
4440 if (netif_is_macvlan(upper)) {
4441 struct macvlan_dev *dfwd = netdev_priv(upper);
4442 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
4443
4444 if (dfwd->fwd_priv) {
4445 err = ixgbe_fwd_ring_up(upper, vadapter);
4446 if (err)
4447 continue;
4448 }
4449 }
4450 }
4451}
4452
Auke Kok9a799d72007-09-15 14:07:45 -07004453static void ixgbe_configure(struct ixgbe_adapter *adapter)
4454{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004455 struct ixgbe_hw *hw = &adapter->hw;
4456
John Fastabend80605c652011-05-02 12:34:10 +00004457 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004458#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00004459 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08004460#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00004461 /*
4462 * We must restore virtualization before VLANs or else
4463 * the VLVF registers will not be populated
4464 */
4465 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004466
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004467 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004468 ixgbe_restore_vlan(adapter);
4469
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004470 switch (hw->mac.type) {
4471 case ixgbe_mac_82599EB:
4472 case ixgbe_mac_X540:
4473 hw->mac.ops.disable_rx_buff(hw);
4474 break;
4475 default:
4476 break;
4477 }
4478
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004479 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004480 ixgbe_init_fdir_signature_82599(&adapter->hw,
4481 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00004482 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
4483 ixgbe_init_fdir_perfect_82599(&adapter->hw,
4484 adapter->fdir_pballoc);
4485 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004486 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004487
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004488 switch (hw->mac.type) {
4489 case ixgbe_mac_82599EB:
4490 case ixgbe_mac_X540:
4491 hw->mac.ops.enable_rx_buff(hw);
4492 break;
4493 default:
4494 break;
4495 }
4496
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004497#ifdef IXGBE_FCOE
4498 /* configure FCoE L2 filters, redirection table, and Rx control */
4499 ixgbe_configure_fcoe(adapter);
4500
4501#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07004502 ixgbe_configure_tx(adapter);
4503 ixgbe_configure_rx(adapter);
John Fastabend2a47fa42013-11-06 09:54:52 -08004504 ixgbe_configure_dfwd(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004505}
4506
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004507static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
4508{
4509 switch (hw->phy.type) {
4510 case ixgbe_phy_sfp_avago:
4511 case ixgbe_phy_sfp_ftl:
4512 case ixgbe_phy_sfp_intel:
4513 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00004514 case ixgbe_phy_sfp_passive_tyco:
4515 case ixgbe_phy_sfp_passive_unknown:
4516 case ixgbe_phy_sfp_active_unknown:
4517 case ixgbe_phy_sfp_ftl_active:
Emil Tantilov987e1d52013-08-14 07:12:27 +00004518 case ixgbe_phy_qsfp_passive_unknown:
4519 case ixgbe_phy_qsfp_active_unknown:
4520 case ixgbe_phy_qsfp_intel:
4521 case ixgbe_phy_qsfp_unknown:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004522 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00004523 case ixgbe_phy_nl:
4524 if (hw->mac.type == ixgbe_mac_82598EB)
4525 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004526 default:
4527 return false;
4528 }
4529}
4530
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004531/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004532 * ixgbe_sfp_link_config - set up SFP+ link
4533 * @adapter: pointer to private adapter struct
4534 **/
4535static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
4536{
Alexander Duyck70864002011-04-27 09:13:56 +00004537 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004538 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00004539 * is that an SFP was inserted/removed after the reset
4540 * but before SFP detection was enabled. As such the best
4541 * solution is to just start searching as soon as we start
4542 */
4543 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
4544 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004545
Alexander Duyck70864002011-04-27 09:13:56 +00004546 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004547}
4548
4549/**
4550 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004551 * @hw: pointer to private hardware struct
4552 *
4553 * Returns 0 on success, negative on failure
4554 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004555static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004556{
Josh Hay3d292262012-12-15 03:28:19 +00004557 u32 speed;
4558 bool autoneg, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004559 u32 ret = IXGBE_ERR_LINK_SETUP;
4560
4561 if (hw->mac.ops.check_link)
Josh Hay3d292262012-12-15 03:28:19 +00004562 ret = hw->mac.ops.check_link(hw, &speed, &link_up, false);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004563
4564 if (ret)
4565 goto link_cfg_out;
4566
Josh Hay3d292262012-12-15 03:28:19 +00004567 speed = hw->phy.autoneg_advertised;
4568 if ((!speed) && (hw->mac.ops.get_link_capabilities))
4569 ret = hw->mac.ops.get_link_capabilities(hw, &speed,
4570 &autoneg);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004571 if (ret)
4572 goto link_cfg_out;
4573
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00004574 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00004575 ret = hw->mac.ops.setup_link(hw, speed, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004576link_cfg_out:
4577 return ret;
4578}
4579
Alexander Duycka34bcff2010-08-19 13:39:20 +00004580static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004581{
Auke Kok9a799d72007-09-15 14:07:45 -07004582 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004583 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004584
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004585 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00004586 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
4587 IXGBE_GPIE_OCD;
4588 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004589 /*
4590 * use EIAM to auto-mask when MSI-X interrupt is asserted
4591 * this saves a register write for every interrupt
4592 */
4593 switch (hw->mac.type) {
4594 case ixgbe_mac_82598EB:
4595 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4596 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004597 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004598 case ixgbe_mac_X540:
4599 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004600 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4601 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4602 break;
4603 }
4604 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004605 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4606 * specifically only auto mask tx and rx interrupts */
4607 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004608 }
4609
Alexander Duycka34bcff2010-08-19 13:39:20 +00004610 /* XXX: to interrupt immediately for EICS writes, enable this */
4611 /* gpie |= IXGBE_GPIE_EIMEN; */
4612
4613 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
4614 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00004615
4616 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4617 case IXGBE_82599_VMDQ_8Q_MASK:
4618 gpie |= IXGBE_GPIE_VTMODE_16;
4619 break;
4620 case IXGBE_82599_VMDQ_4Q_MASK:
4621 gpie |= IXGBE_GPIE_VTMODE_32;
4622 break;
4623 default:
4624 gpie |= IXGBE_GPIE_VTMODE_64;
4625 break;
4626 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004627 }
4628
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004629 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00004630 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
4631 switch (adapter->hw.mac.type) {
4632 case ixgbe_mac_82599EB:
4633 gpie |= IXGBE_SDP0_GPIEN;
4634 break;
4635 case ixgbe_mac_X540:
4636 gpie |= IXGBE_EIMS_TS;
4637 break;
4638 default:
4639 break;
4640 }
4641 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004642
Alexander Duycka34bcff2010-08-19 13:39:20 +00004643 /* Enable fan failure interrupt */
4644 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004645 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004646
Don Skidmore2698b202011-04-13 07:01:52 +00004647 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004648 gpie |= IXGBE_SDP1_GPIEN;
4649 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004650 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004651
4652 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4653}
4654
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004655static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004656{
4657 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004658 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004659 u32 ctrl_ext;
4660
4661 ixgbe_get_hw_control(adapter);
4662 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004663
Auke Kok9a799d72007-09-15 14:07:45 -07004664 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4665 ixgbe_configure_msix(adapter);
4666 else
4667 ixgbe_configure_msi_and_legacy(adapter);
4668
Emil Tantilovec74a472012-09-20 03:33:56 +00004669 /* enable the optics for 82599 SFP+ fiber */
4670 if (hw->mac.ops.enable_tx_laser)
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004671 hw->mac.ops.enable_tx_laser(hw);
4672
Mark Rustadc3049c82014-01-14 18:53:12 -08004673 smp_mb__before_clear_bit();
Auke Kok9a799d72007-09-15 14:07:45 -07004674 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004675 ixgbe_napi_enable_all(adapter);
4676
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004677 if (ixgbe_is_sfp(hw)) {
4678 ixgbe_sfp_link_config(adapter);
4679 } else {
4680 err = ixgbe_non_sfp_link_config(hw);
4681 if (err)
4682 e_err(probe, "link_config FAILED %d\n", err);
4683 }
4684
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004685 /* clear any pending interrupts, may auto mask */
4686 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004687 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004688
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004689 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004690 * If this adapter has a fan, check to see if we had a failure
4691 * before we enabled the interrupt.
4692 */
4693 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4694 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4695 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004696 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004697 }
4698
Auke Kok9a799d72007-09-15 14:07:45 -07004699 /* bring the link up in the watchdog, this could race with our first
4700 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004701 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4702 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004703 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004704
4705 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4706 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4707 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4708 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004709}
4710
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004711void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4712{
4713 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004714 /* put off any impending NetWatchDogTimeout */
4715 adapter->netdev->trans_start = jiffies;
4716
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004717 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004718 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004719 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004720 /*
4721 * If SR-IOV enabled then wait a bit before bringing the adapter
4722 * back up to give the VFs time to respond to the reset. The
4723 * two second wait is based upon the watchdog timer cycle in
4724 * the VF driver.
4725 */
4726 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4727 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004728 ixgbe_up(adapter);
4729 clear_bit(__IXGBE_RESETTING, &adapter->state);
4730}
4731
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004732void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004733{
4734 /* hardware has been reset, we need to reload some things */
4735 ixgbe_configure(adapter);
4736
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004737 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004738}
4739
4740void ixgbe_reset(struct ixgbe_adapter *adapter)
4741{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004742 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004743 int err;
4744
Mark Rustadb0483c82014-01-14 18:53:17 -08004745 if (ixgbe_removed(hw->hw_addr))
4746 return;
Alexander Duyck70864002011-04-27 09:13:56 +00004747 /* lock SFP init bit to prevent race conditions with the watchdog */
4748 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4749 usleep_range(1000, 2000);
4750
4751 /* clear all SFP and link config related flags while holding SFP_INIT */
4752 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4753 IXGBE_FLAG2_SFP_NEEDS_RESET);
4754 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4755
Don Skidmore8ca783a2009-05-26 20:40:47 -07004756 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004757 switch (err) {
4758 case 0:
4759 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004760 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004761 break;
4762 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004763 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004764 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004765 case IXGBE_ERR_EEPROM_VERSION:
4766 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004767 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004768 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004769 "your hardware. If you are experiencing problems "
4770 "please contact your Intel or hardware "
4771 "representative who provided you with this "
4772 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004773 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004774 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004775 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004776 }
Auke Kok9a799d72007-09-15 14:07:45 -07004777
Alexander Duyck70864002011-04-27 09:13:56 +00004778 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4779
Auke Kok9a799d72007-09-15 14:07:45 -07004780 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004781 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004782
4783 /* update SAN MAC vmdq pool selection */
4784 if (hw->mac.san_mac_rar_index)
4785 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Jacob Keller1a71ab22012-08-25 03:54:19 +00004786
Jacob Keller8fecf672013-06-21 08:14:32 +00004787 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00004788 ixgbe_ptp_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004789}
4790
Auke Kok9a799d72007-09-15 14:07:45 -07004791/**
Auke Kok9a799d72007-09-15 14:07:45 -07004792 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004793 * @tx_ring: ring to be cleaned
4794 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004795static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004796{
4797 struct ixgbe_tx_buffer *tx_buffer_info;
4798 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004799 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004800
Alexander Duyck84418e32010-08-19 13:40:54 +00004801 /* ring already cleared, nothing to do */
4802 if (!tx_ring->tx_buffer_info)
4803 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004804
Alexander Duyck84418e32010-08-19 13:40:54 +00004805 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004806 for (i = 0; i < tx_ring->count; i++) {
4807 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004808 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004809 }
4810
John Fastabenddad8a3b2012-04-23 12:22:39 +00004811 netdev_tx_reset_queue(txring_txq(tx_ring));
4812
Auke Kok9a799d72007-09-15 14:07:45 -07004813 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4814 memset(tx_ring->tx_buffer_info, 0, size);
4815
4816 /* Zero out the descriptor ring */
4817 memset(tx_ring->desc, 0, tx_ring->size);
4818
4819 tx_ring->next_to_use = 0;
4820 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004821}
4822
4823/**
Auke Kok9a799d72007-09-15 14:07:45 -07004824 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4825 * @adapter: board private structure
4826 **/
4827static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4828{
4829 int i;
4830
4831 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004832 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004833}
4834
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004835/**
4836 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4837 * @adapter: board private structure
4838 **/
4839static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4840{
4841 int i;
4842
4843 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004844 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004845}
4846
Alexander Duycke4911d52011-05-11 07:18:52 +00004847static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4848{
Sasha Levinb67bfe02013-02-27 17:06:00 -08004849 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00004850 struct ixgbe_fdir_filter *filter;
4851
4852 spin_lock(&adapter->fdir_perfect_lock);
4853
Sasha Levinb67bfe02013-02-27 17:06:00 -08004854 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00004855 &adapter->fdir_filter_list, fdir_node) {
4856 hlist_del(&filter->fdir_node);
4857 kfree(filter);
4858 }
4859 adapter->fdir_filter_count = 0;
4860
4861 spin_unlock(&adapter->fdir_perfect_lock);
4862}
4863
Auke Kok9a799d72007-09-15 14:07:45 -07004864void ixgbe_down(struct ixgbe_adapter *adapter)
4865{
4866 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004867 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08004868 struct net_device *upper;
4869 struct list_head *iter;
Auke Kok9a799d72007-09-15 14:07:45 -07004870 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004871 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004872
4873 /* signal that we are down to the interrupt handler */
Mark Rustadc3049c82014-01-14 18:53:12 -08004874 if (test_and_set_bit(__IXGBE_DOWN, &adapter->state))
4875 return; /* do nothing if already down */
Auke Kok9a799d72007-09-15 14:07:45 -07004876
4877 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004878 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4879 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004880
Yi Zou2d39d572011-01-06 14:29:56 +00004881 /* disable all enabled rx queues */
4882 for (i = 0; i < adapter->num_rx_queues; i++)
4883 /* this call also flushes the previous write */
4884 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4885
Don Skidmore032b4322011-03-18 09:32:53 +00004886 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004887
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004888 netif_tx_stop_all_queues(netdev);
4889
Alexander Duyck70864002011-04-27 09:13:56 +00004890 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004891 netif_carrier_off(netdev);
4892 netif_tx_disable(netdev);
4893
John Fastabend2a47fa42013-11-06 09:54:52 -08004894 /* disable any upper devices */
4895 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
4896 if (netif_is_macvlan(upper)) {
4897 struct macvlan_dev *vlan = netdev_priv(upper);
4898
4899 if (vlan->fwd_priv) {
4900 netif_tx_stop_all_queues(upper);
4901 netif_carrier_off(upper);
4902 netif_tx_disable(upper);
4903 }
4904 }
4905 }
4906
John Fastabendc0dfb902010-04-27 02:13:39 +00004907 ixgbe_irq_disable(adapter);
4908
4909 ixgbe_napi_disable_all(adapter);
4910
Alexander Duyckd034acf2011-04-27 09:25:34 +00004911 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4912 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004913 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4914
4915 del_timer_sync(&adapter->service_timer);
4916
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004917 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004918 /* Clear EITR Select mapping */
4919 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4920
4921 /* Mark all the VFs as inactive */
4922 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004923 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004924
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004925 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004926 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004927
Auke Kok9a799d72007-09-15 14:07:45 -07004928 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004929 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004930 }
4931
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004932 /* disable transmits in the hardware now that interrupts are off */
4933 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004934 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004935 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004936 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004937
4938 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004939 switch (hw->mac.type) {
4940 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004941 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004942 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004943 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4944 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004945 break;
4946 default:
4947 break;
4948 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004949
Paul Larson6f4a0e42008-06-24 17:00:56 -07004950 if (!pci_channel_offline(adapter->pdev))
4951 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004952
Emil Tantilovec74a472012-09-20 03:33:56 +00004953 /* power down the optics for 82599 SFP+ fiber */
4954 if (hw->mac.ops.disable_tx_laser)
Don Skidmorec6ecf392010-12-03 03:31:51 +00004955 hw->mac.ops.disable_tx_laser(hw);
4956
Auke Kok9a799d72007-09-15 14:07:45 -07004957 ixgbe_clean_all_tx_rings(adapter);
4958 ixgbe_clean_all_rx_rings(adapter);
4959
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004960#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004961 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004962 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004963#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004964}
4965
Auke Kok9a799d72007-09-15 14:07:45 -07004966/**
Auke Kok9a799d72007-09-15 14:07:45 -07004967 * ixgbe_tx_timeout - Respond to a Tx Hang
4968 * @netdev: network interface device structure
4969 **/
4970static void ixgbe_tx_timeout(struct net_device *netdev)
4971{
4972 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4973
4974 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004975 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004976}
4977
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004978/**
Auke Kok9a799d72007-09-15 14:07:45 -07004979 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4980 * @adapter: board private structure to initialize
4981 *
4982 * ixgbe_sw_init initializes the Adapter private data structure.
4983 * Fields are initialized based on PCI device information and
4984 * OS network device settings (MTU size).
4985 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05004986static int ixgbe_sw_init(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004987{
4988 struct ixgbe_hw *hw = &adapter->hw;
4989 struct pci_dev *pdev = adapter->pdev;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00004990 unsigned int rss, fdir;
Jacob Kellercb6d0f52012-12-04 06:03:14 +00004991 u32 fwsm;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004992#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004993 int j;
4994 struct tc_configuration *tc;
4995#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004996
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004997 /* PCI config space info */
4998
4999 hw->vendor_id = pdev->vendor;
5000 hw->device_id = pdev->device;
5001 hw->revision_id = pdev->revision;
5002 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5003 hw->subsystem_device_id = pdev->subsystem_device;
5004
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005005 /* Set common capability flags and settings */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00005006 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00005007 adapter->ring_feature[RING_F_RSS].limit = rss;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005008 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5009 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005010 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
5011 adapter->atr_sample_rate = 20;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00005012 fdir = min_t(int, IXGBE_MAX_FDIR_INDICES, num_online_cpus());
5013 adapter->ring_feature[RING_F_FDIR].limit = fdir;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005014 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
5015#ifdef CONFIG_IXGBE_DCA
5016 adapter->flags |= IXGBE_FLAG_DCA_CAPABLE;
5017#endif
5018#ifdef IXGBE_FCOE
5019 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5020 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5021#ifdef CONFIG_IXGBE_DCB
5022 /* Default traffic class to use for FCoE */
5023 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
5024#endif /* CONFIG_IXGBE_DCB */
5025#endif /* IXGBE_FCOE */
5026
5027 /* Set MAC specific capability flags and exceptions */
Alexander Duyckbd508172010-11-16 19:27:03 -08005028 switch (hw->mac.type) {
5029 case ixgbe_mac_82598EB:
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005030 adapter->flags2 &= ~IXGBE_FLAG2_RSC_CAPABLE;
5031 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
5032
Don Skidmorebf069c92009-05-07 10:39:54 +00005033 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5034 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005035
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005036 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005037 adapter->ring_feature[RING_F_FDIR].limit = 0;
5038 adapter->atr_sample_rate = 0;
5039 adapter->fdir_pballoc = 0;
5040#ifdef IXGBE_FCOE
5041 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
5042 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5043#ifdef CONFIG_IXGBE_DCB
5044 adapter->fcoe.up = 0;
5045#endif /* IXGBE_DCB */
5046#endif /* IXGBE_FCOE */
5047 break;
5048 case ixgbe_mac_82599EB:
5049 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5050 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08005051 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005052 case ixgbe_mac_X540:
Jacob Kellercb6d0f52012-12-04 06:03:14 +00005053 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM);
5054 if (fwsm & IXGBE_FWSM_TS_ENABLED)
5055 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08005056 break;
5057 default:
5058 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005059 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005060
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005061#ifdef IXGBE_FCOE
5062 /* FCoE support exists, always init the FCoE lock */
5063 spin_lock_init(&adapter->fcoe.lock);
5064
5065#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005066 /* n-tuple support exists, always init our spinlock */
5067 spin_lock_init(&adapter->fdir_perfect_lock);
5068
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005069#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005070 switch (hw->mac.type) {
5071 case ixgbe_mac_X540:
5072 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5073 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5074 break;
5075 default:
5076 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5077 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5078 break;
5079 }
5080
Alexander Duyck2f90b862008-11-20 20:52:10 -08005081 /* Configure DCB traffic classes */
5082 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5083 tc = &adapter->dcb_cfg.tc_config[j];
5084 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5085 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5086 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5087 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5088 tc->dcb_pfc = pfc_disabled;
5089 }
John Fastabend4de2a022011-09-27 03:52:01 +00005090
5091 /* Initialize default user to priority mapping, UPx->TC0 */
5092 tc = &adapter->dcb_cfg.tc_config[0];
5093 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5094 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5095
Alexander Duyck2f90b862008-11-20 20:52:10 -08005096 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5097 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005098 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005099 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005100 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00005101 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
5102 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08005103
5104#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005105
5106 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005107 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005108 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00005109 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005110 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5111 hw->fc.send_xon = true;
Don Skidmore73d80953d2013-07-31 02:19:24 +00005112 hw->fc.disable_fc_autoneg = ixgbe_device_supports_autoneg_fc(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07005113
Alexander Duyck99d74482012-05-09 08:09:25 +00005114#ifdef CONFIG_PCI_IOV
Jacob Keller170e8542013-11-09 04:52:32 -08005115 if (max_vfs > 0)
5116 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 +00005117
Jacob Keller170e8542013-11-09 04:52:32 -08005118 /* assign number of SR-IOV VFs */
5119 if (hw->mac.type != ixgbe_mac_82598EB) {
ethan.zhaodcc23e32014-01-16 19:41:04 -08005120 if (max_vfs > IXGBE_MAX_VFS_DRV_LIMIT) {
Jacob Keller170e8542013-11-09 04:52:32 -08005121 adapter->num_vfs = 0;
5122 e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n");
5123 } else {
5124 adapter->num_vfs = max_vfs;
5125 }
5126 }
5127#endif /* CONFIG_PCI_IOV */
5128
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005129 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005130 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005131 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005132
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005133 /* set default ring sizes */
5134 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5135 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5136
Alexander Duyckbd198052011-06-11 01:45:08 +00005137 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005138 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005139
Auke Kok9a799d72007-09-15 14:07:45 -07005140 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005141 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005142 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005143 return -EIO;
5144 }
5145
John Fastabend2a47fa42013-11-06 09:54:52 -08005146 /* PF holds first pool slot */
5147 set_bit(0, &adapter->fwd_bitmask);
Auke Kok9a799d72007-09-15 14:07:45 -07005148 set_bit(__IXGBE_DOWN, &adapter->state);
5149
5150 return 0;
5151}
5152
5153/**
5154 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005155 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005156 *
5157 * Return 0 on success, negative on failure
5158 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005159int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005160{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005161 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005162 int orig_node = dev_to_node(dev);
5163 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07005164 int size;
5165
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005166 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005167
5168 if (tx_ring->q_vector)
5169 numa_node = tx_ring->q_vector->numa_node;
5170
5171 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005172 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005173 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005174 if (!tx_ring->tx_buffer_info)
5175 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005176
John Stultz827da442013-10-07 15:51:58 -07005177 u64_stats_init(&tx_ring->syncp);
5178
Auke Kok9a799d72007-09-15 14:07:45 -07005179 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005180 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005181 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005182
Alexander Duyckde88eee2012-02-08 07:49:59 +00005183 set_dev_node(dev, numa_node);
5184 tx_ring->desc = dma_alloc_coherent(dev,
5185 tx_ring->size,
5186 &tx_ring->dma,
5187 GFP_KERNEL);
5188 set_dev_node(dev, orig_node);
5189 if (!tx_ring->desc)
5190 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
5191 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005192 if (!tx_ring->desc)
5193 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005194
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005195 tx_ring->next_to_use = 0;
5196 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005197 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005198
5199err:
5200 vfree(tx_ring->tx_buffer_info);
5201 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005202 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005203 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005204}
5205
5206/**
Alexander Duyck69888672008-09-11 20:05:39 -07005207 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5208 * @adapter: board private structure
5209 *
5210 * If this function returns with an error, then it's possible one or
5211 * more of the rings is populated (while the rest are not). It is the
5212 * callers duty to clean those orphaned rings.
5213 *
5214 * Return 0 on success, negative on failure
5215 **/
5216static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5217{
5218 int i, err = 0;
5219
5220 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005221 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005222 if (!err)
5223 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005224
Emil Tantilov396e7992010-07-01 20:05:12 +00005225 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005226 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07005227 }
5228
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005229 return 0;
5230err_setup_tx:
5231 /* rewind the index freeing the rings as we go */
5232 while (i--)
5233 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005234 return err;
5235}
5236
5237/**
Auke Kok9a799d72007-09-15 14:07:45 -07005238 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005239 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005240 *
5241 * Returns 0 on success, negative on failure
5242 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005243int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005244{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005245 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005246 int orig_node = dev_to_node(dev);
5247 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005248 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005249
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005250 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005251
5252 if (rx_ring->q_vector)
5253 numa_node = rx_ring->q_vector->numa_node;
5254
5255 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005256 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005257 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005258 if (!rx_ring->rx_buffer_info)
5259 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005260
John Stultz827da442013-10-07 15:51:58 -07005261 u64_stats_init(&rx_ring->syncp);
5262
Auke Kok9a799d72007-09-15 14:07:45 -07005263 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005264 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5265 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005266
Alexander Duyckde88eee2012-02-08 07:49:59 +00005267 set_dev_node(dev, numa_node);
5268 rx_ring->desc = dma_alloc_coherent(dev,
5269 rx_ring->size,
5270 &rx_ring->dma,
5271 GFP_KERNEL);
5272 set_dev_node(dev, orig_node);
5273 if (!rx_ring->desc)
5274 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
5275 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005276 if (!rx_ring->desc)
5277 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005278
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005279 rx_ring->next_to_clean = 0;
5280 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005281
5282 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005283err:
5284 vfree(rx_ring->rx_buffer_info);
5285 rx_ring->rx_buffer_info = NULL;
5286 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005287 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005288}
5289
5290/**
Alexander Duyck69888672008-09-11 20:05:39 -07005291 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5292 * @adapter: board private structure
5293 *
5294 * If this function returns with an error, then it's possible one or
5295 * more of the rings is populated (while the rest are not). It is the
5296 * callers duty to clean those orphaned rings.
5297 *
5298 * Return 0 on success, negative on failure
5299 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005300static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5301{
5302 int i, err = 0;
5303
5304 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005305 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005306 if (!err)
5307 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005308
Emil Tantilov396e7992010-07-01 20:05:12 +00005309 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005310 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07005311 }
5312
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005313#ifdef IXGBE_FCOE
5314 err = ixgbe_setup_fcoe_ddp_resources(adapter);
5315 if (!err)
5316#endif
5317 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005318err_setup_rx:
5319 /* rewind the index freeing the rings as we go */
5320 while (i--)
5321 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005322 return err;
5323}
5324
5325/**
Auke Kok9a799d72007-09-15 14:07:45 -07005326 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005327 * @tx_ring: Tx descriptor ring for a specific queue
5328 *
5329 * Free all transmit software resources
5330 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005331void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005332{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005333 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005334
5335 vfree(tx_ring->tx_buffer_info);
5336 tx_ring->tx_buffer_info = NULL;
5337
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005338 /* if not set, then don't free */
5339 if (!tx_ring->desc)
5340 return;
5341
5342 dma_free_coherent(tx_ring->dev, tx_ring->size,
5343 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005344
5345 tx_ring->desc = NULL;
5346}
5347
5348/**
5349 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5350 * @adapter: board private structure
5351 *
5352 * Free all transmit software resources
5353 **/
5354static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5355{
5356 int i;
5357
5358 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005359 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005360 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005361}
5362
5363/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005364 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005365 * @rx_ring: ring to clean the resources from
5366 *
5367 * Free all receive software resources
5368 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005369void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005370{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005371 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005372
5373 vfree(rx_ring->rx_buffer_info);
5374 rx_ring->rx_buffer_info = NULL;
5375
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005376 /* if not set, then don't free */
5377 if (!rx_ring->desc)
5378 return;
5379
5380 dma_free_coherent(rx_ring->dev, rx_ring->size,
5381 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005382
5383 rx_ring->desc = NULL;
5384}
5385
5386/**
5387 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5388 * @adapter: board private structure
5389 *
5390 * Free all receive software resources
5391 **/
5392static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5393{
5394 int i;
5395
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005396#ifdef IXGBE_FCOE
5397 ixgbe_free_fcoe_ddp_resources(adapter);
5398
5399#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005400 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005401 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005402 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005403}
5404
5405/**
Auke Kok9a799d72007-09-15 14:07:45 -07005406 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5407 * @netdev: network interface device structure
5408 * @new_mtu: new value for maximum frame size
5409 *
5410 * Returns 0 on success, negative on failure
5411 **/
5412static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5413{
5414 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5415 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5416
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005417 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00005418 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5419 return -EINVAL;
5420
5421 /*
Alexander Duyck872844d2012-08-15 02:10:43 +00005422 * For 82599EB we cannot allow legacy VFs to enable their receive
5423 * paths when MTU greater than 1500 is configured. So display a
5424 * warning that legacy VFs will be disabled.
Alexander Duyck655309e2012-02-08 07:50:35 +00005425 */
5426 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
5427 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
Alexander Duyckc5604512013-01-09 08:50:42 +00005428 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
Alexander Duyck872844d2012-08-15 02:10:43 +00005429 e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005430
Emil Tantilov396e7992010-07-01 20:05:12 +00005431 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00005432
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005433 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005434 netdev->mtu = new_mtu;
5435
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005436 if (netif_running(netdev))
5437 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005438
5439 return 0;
5440}
5441
5442/**
5443 * ixgbe_open - Called when a network interface is made active
5444 * @netdev: network interface device structure
5445 *
5446 * Returns 0 on success, negative value on failure
5447 *
5448 * The open entry point is called when a network interface is made
5449 * active by the system (IFF_UP). At this point all resources needed
5450 * for transmit and receive operations are allocated, the interrupt
5451 * handler is registered with the OS, the watchdog timer is started,
5452 * and the stack is notified that the interface is ready.
5453 **/
5454static int ixgbe_open(struct net_device *netdev)
5455{
5456 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend2a47fa42013-11-06 09:54:52 -08005457 int err, queues;
Auke Kok9a799d72007-09-15 14:07:45 -07005458
Auke Kok4bebfaa2008-02-11 09:26:01 -08005459 /* disallow open during test */
5460 if (test_bit(__IXGBE_TESTING, &adapter->state))
5461 return -EBUSY;
5462
Jesse Brandeburg54386462009-04-17 20:44:27 +00005463 netif_carrier_off(netdev);
5464
Auke Kok9a799d72007-09-15 14:07:45 -07005465 /* allocate transmit descriptors */
5466 err = ixgbe_setup_all_tx_resources(adapter);
5467 if (err)
5468 goto err_setup_tx;
5469
Auke Kok9a799d72007-09-15 14:07:45 -07005470 /* allocate receive descriptors */
5471 err = ixgbe_setup_all_rx_resources(adapter);
5472 if (err)
5473 goto err_setup_rx;
5474
5475 ixgbe_configure(adapter);
5476
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005477 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005478 if (err)
5479 goto err_req_irq;
5480
Alexander Duyckac802f52012-07-12 05:52:53 +00005481 /* Notify the stack of the actual queue counts. */
John Fastabend2a47fa42013-11-06 09:54:52 -08005482 if (adapter->num_rx_pools > 1)
5483 queues = adapter->num_rx_queues_per_pool;
5484 else
5485 queues = adapter->num_tx_queues;
5486
5487 err = netif_set_real_num_tx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00005488 if (err)
5489 goto err_set_queues;
5490
John Fastabend2a47fa42013-11-06 09:54:52 -08005491 if (adapter->num_rx_pools > 1 &&
5492 adapter->num_rx_queues > IXGBE_MAX_L2A_QUEUES)
5493 queues = IXGBE_MAX_L2A_QUEUES;
5494 else
5495 queues = adapter->num_rx_queues;
5496 err = netif_set_real_num_rx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00005497 if (err)
5498 goto err_set_queues;
5499
Jacob Keller1a71ab22012-08-25 03:54:19 +00005500 ixgbe_ptp_init(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00005501
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005502 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005503
5504 return 0;
5505
Alexander Duyckac802f52012-07-12 05:52:53 +00005506err_set_queues:
5507 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005508err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005509 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005510err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005511 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005512err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07005513 ixgbe_reset(adapter);
5514
5515 return err;
5516}
5517
5518/**
5519 * ixgbe_close - Disables a network interface
5520 * @netdev: network interface device structure
5521 *
5522 * Returns 0, this is not allowed to fail
5523 *
5524 * The close entry point is called when an interface is de-activated
5525 * by the OS. The hardware is still under the drivers control, but
5526 * needs to be disabled. A global MAC reset is issued to stop the
5527 * hardware, and all transmit and receive resources are freed.
5528 **/
5529static int ixgbe_close(struct net_device *netdev)
5530{
5531 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005532
Jacob Keller1a71ab22012-08-25 03:54:19 +00005533 ixgbe_ptp_stop(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00005534
Auke Kok9a799d72007-09-15 14:07:45 -07005535 ixgbe_down(adapter);
5536 ixgbe_free_irq(adapter);
5537
Alexander Duycke4911d52011-05-11 07:18:52 +00005538 ixgbe_fdir_filter_exit(adapter);
5539
Auke Kok9a799d72007-09-15 14:07:45 -07005540 ixgbe_free_all_tx_resources(adapter);
5541 ixgbe_free_all_rx_resources(adapter);
5542
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005543 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005544
5545 return 0;
5546}
5547
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005548#ifdef CONFIG_PM
5549static int ixgbe_resume(struct pci_dev *pdev)
5550{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005551 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5552 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005553 u32 err;
5554
Mark Rustad0391bbe2014-02-28 15:48:55 -08005555 adapter->hw.hw_addr = adapter->io_addr;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005556 pci_set_power_state(pdev, PCI_D0);
5557 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005558 /*
5559 * pci_restore_state clears dev->state_saved so call
5560 * pci_save_state to restore it.
5561 */
5562 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005563
5564 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005565 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005566 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005567 return err;
5568 }
5569 pci_set_master(pdev);
5570
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005571 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005572
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005573 ixgbe_reset(adapter);
5574
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005575 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5576
Alexander Duyckac802f52012-07-12 05:52:53 +00005577 rtnl_lock();
5578 err = ixgbe_init_interrupt_scheme(adapter);
5579 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005580 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00005581
5582 rtnl_unlock();
5583
5584 if (err)
5585 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005586
5587 netif_device_attach(netdev);
5588
5589 return 0;
5590}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005591#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005592
5593static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005594{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005595 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5596 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005597 struct ixgbe_hw *hw = &adapter->hw;
5598 u32 ctrl, fctrl;
5599 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005600#ifdef CONFIG_PM
5601 int retval = 0;
5602#endif
5603
5604 netif_device_detach(netdev);
5605
akepner499ab5c2013-03-13 14:54:58 +00005606 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005607 if (netif_running(netdev)) {
5608 ixgbe_down(adapter);
5609 ixgbe_free_irq(adapter);
5610 ixgbe_free_all_tx_resources(adapter);
5611 ixgbe_free_all_rx_resources(adapter);
5612 }
akepner499ab5c2013-03-13 14:54:58 +00005613 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005614
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005615 ixgbe_clear_interrupt_scheme(adapter);
5616
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005617#ifdef CONFIG_PM
5618 retval = pci_save_state(pdev);
5619 if (retval)
5620 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005621
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005622#endif
Jacob Kellerf4f10402013-06-25 07:59:23 +00005623 if (hw->mac.ops.stop_link_on_d3)
5624 hw->mac.ops.stop_link_on_d3(hw);
5625
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005626 if (wufc) {
5627 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005628
Emil Tantilovec74a472012-09-20 03:33:56 +00005629 /* enable the optics for 82599 SFP+ fiber as we can WoL */
5630 if (hw->mac.ops.enable_tx_laser)
Don Skidmorec509e752012-04-05 08:12:05 +00005631 hw->mac.ops.enable_tx_laser(hw);
5632
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005633 /* turn on all-multi mode if wake on multicast is enabled */
5634 if (wufc & IXGBE_WUFC_MC) {
5635 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5636 fctrl |= IXGBE_FCTRL_MPE;
5637 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5638 }
5639
5640 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5641 ctrl |= IXGBE_CTRL_GIO_DIS;
5642 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5643
5644 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5645 } else {
5646 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5647 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5648 }
5649
Alexander Duyckbd508172010-11-16 19:27:03 -08005650 switch (hw->mac.type) {
5651 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005652 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005653 break;
5654 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005655 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005656 pci_wake_from_d3(pdev, !!wufc);
5657 break;
5658 default:
5659 break;
5660 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005661
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005662 *enable_wake = !!wufc;
5663
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005664 ixgbe_release_hw_control(adapter);
5665
5666 pci_disable_device(pdev);
5667
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005668 return 0;
5669}
5670
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005671#ifdef CONFIG_PM
5672static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5673{
5674 int retval;
5675 bool wake;
5676
5677 retval = __ixgbe_shutdown(pdev, &wake);
5678 if (retval)
5679 return retval;
5680
5681 if (wake) {
5682 pci_prepare_to_sleep(pdev);
5683 } else {
5684 pci_wake_from_d3(pdev, false);
5685 pci_set_power_state(pdev, PCI_D3hot);
5686 }
5687
5688 return 0;
5689}
5690#endif /* CONFIG_PM */
5691
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005692static void ixgbe_shutdown(struct pci_dev *pdev)
5693{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005694 bool wake;
5695
5696 __ixgbe_shutdown(pdev, &wake);
5697
5698 if (system_state == SYSTEM_POWER_OFF) {
5699 pci_wake_from_d3(pdev, wake);
5700 pci_set_power_state(pdev, PCI_D3hot);
5701 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005702}
5703
5704/**
Auke Kok9a799d72007-09-15 14:07:45 -07005705 * ixgbe_update_stats - Update the board statistics counters.
5706 * @adapter: board private structure
5707 **/
5708void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5709{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005710 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005711 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005712 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005713 u64 total_mpc = 0;
5714 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005715 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5716 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005717 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005718
Don Skidmored08935c2010-06-11 13:20:29 +00005719 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5720 test_bit(__IXGBE_RESETTING, &adapter->state))
5721 return;
5722
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005723 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005724 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005725 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005726 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005727 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5728 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005729 }
5730 adapter->rsc_total_count = rsc_count;
5731 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005732 }
5733
Alexander Duyck5b7da512010-11-16 19:26:50 -08005734 for (i = 0; i < adapter->num_rx_queues; i++) {
5735 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5736 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5737 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5738 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005739 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005740 bytes += rx_ring->stats.bytes;
5741 packets += rx_ring->stats.packets;
5742 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005743 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005744 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5745 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005746 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005747 netdev->stats.rx_bytes = bytes;
5748 netdev->stats.rx_packets = packets;
5749
5750 bytes = 0;
5751 packets = 0;
5752 /* gather some stats to the adapter struct that are per queue */
5753 for (i = 0; i < adapter->num_tx_queues; i++) {
5754 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5755 restart_queue += tx_ring->tx_stats.restart_queue;
5756 tx_busy += tx_ring->tx_stats.tx_busy;
5757 bytes += tx_ring->stats.bytes;
5758 packets += tx_ring->stats.packets;
5759 }
5760 adapter->restart_queue = restart_queue;
5761 adapter->tx_busy = tx_busy;
5762 netdev->stats.tx_bytes = bytes;
5763 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005764
Joe Perches7ca647b2010-09-07 21:35:40 +00005765 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005766
5767 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005768 for (i = 0; i < 8; i++) {
5769 /* for packet buffers not used, the register should read 0 */
5770 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5771 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005772 hwstats->mpc[i] += mpc;
5773 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005774 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5775 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005776 switch (hw->mac.type) {
5777 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005778 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5779 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5780 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005781 hwstats->pxonrxc[i] +=
5782 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005783 break;
5784 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005785 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005786 hwstats->pxonrxc[i] +=
5787 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005788 break;
5789 default:
5790 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005791 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005792 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005793
5794 /*16 register reads */
5795 for (i = 0; i < 16; i++) {
5796 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5797 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5798 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5799 (hw->mac.type == ixgbe_mac_X540)) {
5800 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5801 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5802 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5803 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5804 }
5805 }
5806
Joe Perches7ca647b2010-09-07 21:35:40 +00005807 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005808 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005809 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005810
John Fastabendc84d3242010-11-16 19:27:12 -08005811 ixgbe_update_xoff_received(adapter);
5812
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005813 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005814 switch (hw->mac.type) {
5815 case ixgbe_mac_82598EB:
5816 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005817 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5818 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5819 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5820 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005821 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005822 /* OS2BMC stats are X540 only*/
5823 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5824 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5825 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5826 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5827 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005828 for (i = 0; i < 16; i++)
5829 adapter->hw_rx_no_dma_resources +=
5830 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005831 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005832 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005833 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005834 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005835 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005836 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005837 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005838 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5839 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005840#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005841 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5842 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5843 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5844 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5845 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5846 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005847 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005848 if (adapter->fcoe.ddp_pool) {
5849 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5850 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5851 unsigned int cpu;
5852 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005853 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005854 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5855 noddp += ddp_pool->noddp;
5856 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005857 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005858 hwstats->fcoe_noddp = noddp;
5859 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005860 }
Yi Zou6d455222009-05-13 13:12:16 +00005861#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005862 break;
5863 default:
5864 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005865 }
Auke Kok9a799d72007-09-15 14:07:45 -07005866 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005867 hwstats->bprc += bprc;
5868 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005869 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005870 hwstats->mprc -= bprc;
5871 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5872 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5873 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5874 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5875 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5876 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5877 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5878 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005879 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005880 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005881 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005882 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005883 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5884 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005885 /*
5886 * 82598 errata - tx of flow control packets is included in tx counters
5887 */
5888 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005889 hwstats->gptc -= xon_off_tot;
5890 hwstats->mptc -= xon_off_tot;
5891 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5892 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5893 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5894 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5895 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5896 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5897 hwstats->ptc64 -= xon_off_tot;
5898 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5899 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5900 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5901 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5902 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5903 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005904
5905 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005906 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005907
5908 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005909 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005910 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005911 netdev->stats.rx_length_errors = hwstats->rlec;
5912 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005913 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005914}
5915
5916/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005917 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005918 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005919 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005920static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005921{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005922 struct ixgbe_hw *hw = &adapter->hw;
5923 int i;
5924
Alexander Duyckd034acf2011-04-27 09:25:34 +00005925 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5926 return;
5927
5928 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5929
5930 /* if interface is down do nothing */
5931 if (test_bit(__IXGBE_DOWN, &adapter->state))
5932 return;
5933
5934 /* do nothing if we are not using signature filters */
5935 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5936 return;
5937
5938 adapter->fdir_overflow++;
5939
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005940 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5941 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005942 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005943 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005944 /* re-enable flow director interrupts */
5945 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005946 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005947 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005948 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005949 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005950}
5951
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005952/**
5953 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005954 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005955 *
5956 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005957 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005958 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005959 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005960 */
5961static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5962{
Auke Kok9a799d72007-09-15 14:07:45 -07005963 struct ixgbe_hw *hw = &adapter->hw;
5964 u64 eics = 0;
5965 int i;
5966
Mark Rustad09f40ae2014-01-14 18:53:11 -08005967 /* If we're down, removing or resetting, just bail */
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005968 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08005969 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005970 test_bit(__IXGBE_RESETTING, &adapter->state))
5971 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005972
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005973 /* Force detection of hung controller */
5974 if (netif_carrier_ok(adapter->netdev)) {
5975 for (i = 0; i < adapter->num_tx_queues; i++)
5976 set_check_for_tx_hang(adapter->tx_ring[i]);
5977 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005978
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005979 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005980 /*
5981 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005982 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005983 * would set *both* EIMS and EICS for any bit in EIAM
5984 */
5985 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5986 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005987 } else {
5988 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005989 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005990 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005991 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005992 eics |= ((u64)1 << i);
5993 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005994 }
5995
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005996 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005997 ixgbe_irq_rearm_queues(adapter, eics);
5998
Alexander Duyckfe49f042009-06-04 16:00:09 +00005999}
6000
6001/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006002 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006003 * @adapter: pointer to the device adapter structure
6004 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006005 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006006static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006007{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006008 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006009 u32 link_speed = adapter->link_speed;
6010 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00006011 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006012
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006013 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6014 return;
6015
6016 if (hw->mac.ops.check_link) {
6017 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006018 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006019 /* always assume link is up, if no check link function */
6020 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6021 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006022 }
Alexander Duyck041441d2012-04-19 17:48:48 +00006023
6024 if (adapter->ixgbe_ieee_pfc)
6025 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
6026
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00006027 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00006028 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00006029 ixgbe_set_rx_drop_en(adapter);
6030 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006031
6032 if (link_up ||
6033 time_after(jiffies, (adapter->link_check_timeout +
6034 IXGBE_TRY_LINK_TIMEOUT))) {
6035 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6036 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6037 IXGBE_WRITE_FLUSH(hw);
6038 }
6039
6040 adapter->link_up = link_up;
6041 adapter->link_speed = link_speed;
6042}
6043
Alexander Duyck107d3012012-10-02 00:17:03 +00006044static void ixgbe_update_default_up(struct ixgbe_adapter *adapter)
6045{
6046#ifdef CONFIG_IXGBE_DCB
6047 struct net_device *netdev = adapter->netdev;
6048 struct dcb_app app = {
6049 .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE,
6050 .protocol = 0,
6051 };
6052 u8 up = 0;
6053
6054 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE)
6055 up = dcb_ieee_getapp_mask(netdev, &app);
6056
6057 adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0;
6058#endif
6059}
6060
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006061/**
6062 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6063 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006064 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006065 **/
6066static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6067{
6068 struct net_device *netdev = adapter->netdev;
6069 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilovcdc04dc2014-03-20 03:47:53 +00006070 struct net_device *upper;
6071 struct list_head *iter;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006072 u32 link_speed = adapter->link_speed;
6073 bool flow_rx, flow_tx;
6074
6075 /* only continue if link was previously down */
6076 if (netif_carrier_ok(netdev))
6077 return;
6078
6079 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6080
6081 switch (hw->mac.type) {
6082 case ixgbe_mac_82598EB: {
6083 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6084 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6085 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6086 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6087 }
6088 break;
6089 case ixgbe_mac_X540:
6090 case ixgbe_mac_82599EB: {
6091 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6092 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6093 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6094 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6095 }
6096 break;
6097 default:
6098 flow_tx = false;
6099 flow_rx = false;
6100 break;
6101 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006102
Jacob Keller6cb562d2012-12-05 07:24:41 +00006103 adapter->last_rx_ptp_check = jiffies;
6104
Jacob Keller8fecf672013-06-21 08:14:32 +00006105 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006106 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006107
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006108 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6109 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6110 "10 Gbps" :
6111 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6112 "1 Gbps" :
6113 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6114 "100 Mbps" :
6115 "unknown speed"))),
6116 ((flow_rx && flow_tx) ? "RX/TX" :
6117 (flow_rx ? "RX" :
6118 (flow_tx ? "TX" : "None"))));
6119
6120 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006121 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006122
Emil Tantilovcdc04dc2014-03-20 03:47:53 +00006123 /* enable transmits */
6124 netif_tx_wake_all_queues(adapter->netdev);
6125
6126 /* enable any upper devices */
6127 rtnl_lock();
6128 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
6129 if (netif_is_macvlan(upper)) {
6130 struct macvlan_dev *vlan = netdev_priv(upper);
6131
6132 if (vlan->fwd_priv)
6133 netif_tx_wake_all_queues(upper);
6134 }
6135 }
6136 rtnl_unlock();
6137
Alexander Duyck107d3012012-10-02 00:17:03 +00006138 /* update the default user priority for VFs */
6139 ixgbe_update_default_up(adapter);
6140
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006141 /* ping all the active vfs to let them know link has changed */
6142 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006143}
6144
6145/**
6146 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6147 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006148 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006149 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00006150static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006151{
6152 struct net_device *netdev = adapter->netdev;
6153 struct ixgbe_hw *hw = &adapter->hw;
6154
6155 adapter->link_up = false;
6156 adapter->link_speed = 0;
6157
6158 /* only continue if link was up previously */
6159 if (!netif_carrier_ok(netdev))
6160 return;
6161
6162 /* poll for SFP+ cable when link is down */
6163 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6164 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6165
Jacob Keller8fecf672013-06-21 08:14:32 +00006166 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006167 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006168
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006169 e_info(drv, "NIC Link is Down\n");
6170 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006171
6172 /* ping all the active vfs to let them know link has changed */
6173 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006174}
6175
6176/**
6177 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006178 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006179 **/
6180static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6181{
6182 int i;
6183 int some_tx_pending = 0;
6184
6185 if (!netif_carrier_ok(adapter->netdev)) {
6186 for (i = 0; i < adapter->num_tx_queues; i++) {
6187 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6188 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6189 some_tx_pending = 1;
6190 break;
6191 }
6192 }
6193
6194 if (some_tx_pending) {
6195 /* We've lost link, so the controller stops DMA,
6196 * but we've got queued Tx work that's never going
6197 * to get done, so reset controller to flush Tx.
6198 * (Do the reset outside of interrupt context).
6199 */
Jacob Keller12ff3f32012-12-01 07:57:17 +00006200 e_warn(drv, "initiating reset to clear Tx work after link loss\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006201 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006202 }
6203 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006204}
6205
Greg Rosea985b6c32010-11-18 03:02:52 +00006206static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6207{
6208 u32 ssvpc;
6209
Greg Rose0584d992012-08-08 00:00:58 +00006210 /* Do not perform spoof check for 82598 or if not in IOV mode */
6211 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
6212 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00006213 return;
6214
6215 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6216
6217 /*
6218 * ssvpc register is cleared on read, if zero then no
6219 * spoofed packets in the last interval.
6220 */
6221 if (!ssvpc)
6222 return;
6223
Emil Tantilovd6ea0752012-08-08 06:28:37 +00006224 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00006225}
6226
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006227/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006228 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006229 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006230 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006231static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006232{
Mark Rustad09f40ae2014-01-14 18:53:11 -08006233 /* if interface is down, removing or resetting, do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006234 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006235 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Emil Tantilov7edebf92011-08-27 07:18:37 +00006236 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006237 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006238
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006239 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006240
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006241 if (adapter->link_up)
6242 ixgbe_watchdog_link_is_up(adapter);
6243 else
6244 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006245
Greg Rosea985b6c32010-11-18 03:02:52 +00006246 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006247 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006248
6249 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006250}
6251
Alexander Duyck70864002011-04-27 09:13:56 +00006252/**
6253 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006254 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00006255 **/
6256static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6257{
6258 struct ixgbe_hw *hw = &adapter->hw;
6259 s32 err;
6260
6261 /* not searching for SFP so there is nothing to do here */
6262 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6263 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6264 return;
6265
6266 /* someone else is in init, wait until next service event */
6267 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6268 return;
6269
6270 err = hw->phy.ops.identify_sfp(hw);
6271 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6272 goto sfp_out;
6273
6274 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6275 /* If no cable is present, then we need to reset
6276 * the next time we find a good cable. */
6277 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6278 }
6279
6280 /* exit on error */
6281 if (err)
6282 goto sfp_out;
6283
6284 /* exit if reset not needed */
6285 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6286 goto sfp_out;
6287
6288 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6289
6290 /*
6291 * A module may be identified correctly, but the EEPROM may not have
6292 * support for that module. setup_sfp() will fail in that case, so
6293 * we should not allow that module to load.
6294 */
6295 if (hw->mac.type == ixgbe_mac_82598EB)
6296 err = hw->phy.ops.reset(hw);
6297 else
6298 err = hw->mac.ops.setup_sfp(hw);
6299
6300 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6301 goto sfp_out;
6302
6303 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6304 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6305
6306sfp_out:
6307 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6308
6309 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6310 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6311 e_dev_err("failed to initialize because an unsupported "
6312 "SFP+ module type was detected.\n");
6313 e_dev_err("Reload the driver after installing a "
6314 "supported module.\n");
6315 unregister_netdev(adapter->netdev);
6316 }
6317}
6318
6319/**
6320 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006321 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00006322 **/
6323static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6324{
6325 struct ixgbe_hw *hw = &adapter->hw;
Josh Hay3d292262012-12-15 03:28:19 +00006326 u32 speed;
6327 bool autoneg = false;
Alexander Duyck70864002011-04-27 09:13:56 +00006328
6329 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6330 return;
6331
6332 /* someone else is in init, wait until next service event */
6333 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6334 return;
6335
6336 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6337
Josh Hay3d292262012-12-15 03:28:19 +00006338 speed = hw->phy.autoneg_advertised;
Emil Tantiloved33ff62013-08-30 07:55:24 +00006339 if ((!speed) && (hw->mac.ops.get_link_capabilities)) {
Josh Hay3d292262012-12-15 03:28:19 +00006340 hw->mac.ops.get_link_capabilities(hw, &speed, &autoneg);
Emil Tantiloved33ff62013-08-30 07:55:24 +00006341
6342 /* setup the highest link when no autoneg */
6343 if (!autoneg) {
6344 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
6345 speed = IXGBE_LINK_SPEED_10GB_FULL;
6346 }
6347 }
6348
Alexander Duyck70864002011-04-27 09:13:56 +00006349 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00006350 hw->mac.ops.setup_link(hw, speed, true);
Alexander Duyck70864002011-04-27 09:13:56 +00006351
6352 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6353 adapter->link_check_timeout = jiffies;
6354 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6355}
6356
Greg Rose83c61fa2011-09-07 05:59:35 +00006357#ifdef CONFIG_PCI_IOV
6358static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6359{
6360 int vf;
6361 struct ixgbe_hw *hw = &adapter->hw;
6362 struct net_device *netdev = adapter->netdev;
6363 u32 gpc;
6364 u32 ciaa, ciad;
6365
6366 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6367 if (gpc) /* If incrementing then no need for the check below */
6368 return;
6369 /*
6370 * Check to see if a bad DMA write target from an errant or
6371 * malicious VF has caused a PCIe error. If so then we can
6372 * issue a VFLR to the offending VF(s) and then resume without
6373 * requesting a full slot reset.
6374 */
6375
6376 for (vf = 0; vf < adapter->num_vfs; vf++) {
6377 ciaa = (vf << 16) | 0x80000000;
6378 /* 32 bit read so align, we really want status at offset 6 */
6379 ciaa |= PCI_COMMAND;
6380 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6381 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
6382 ciaa &= 0x7FFFFFFF;
6383 /* disable debug mode asap after reading data */
6384 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6385 /* Get the upper 16 bits which will be the PCI status reg */
6386 ciad >>= 16;
6387 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
6388 netdev_err(netdev, "VF %d Hung DMA\n", vf);
6389 /* Issue VFLR */
6390 ciaa = (vf << 16) | 0x80000000;
6391 ciaa |= 0xA8;
6392 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6393 ciad = 0x00008000; /* VFLR */
6394 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
6395 ciaa &= 0x7FFFFFFF;
6396 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6397 }
6398 }
6399}
6400
6401#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006402/**
6403 * ixgbe_service_timer - Timer Call-back
6404 * @data: pointer to adapter cast into an unsigned long
6405 **/
6406static void ixgbe_service_timer(unsigned long data)
6407{
6408 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6409 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00006410 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00006411
6412 /* poll faster when waiting for link */
6413 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6414 next_event_offset = HZ / 10;
6415 else
6416 next_event_offset = HZ * 2;
6417
Greg Rose83c61fa2011-09-07 05:59:35 +00006418#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00006419 /*
6420 * don't bother with SR-IOV VF DMA hang check if there are
6421 * no VFs or the link is down
6422 */
6423 if (!adapter->num_vfs ||
6424 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6425 goto normal_timer_service;
6426
6427 /* If we have VFs allocated then we must check for DMA hangs */
6428 ixgbe_check_for_bad_vf(adapter);
6429 next_event_offset = HZ / 50;
6430 adapter->timer_event_accumulator++;
6431
6432 if (adapter->timer_event_accumulator >= 100)
6433 adapter->timer_event_accumulator = 0;
6434 else
6435 ready = false;
6436
6437normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00006438#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006439 /* Reset the timer */
6440 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6441
Greg Rose83c61fa2011-09-07 05:59:35 +00006442 if (ready)
6443 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006444}
6445
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006446static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6447{
6448 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6449 return;
6450
6451 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6452
Mark Rustad09f40ae2014-01-14 18:53:11 -08006453 /* If we're already down, removing or resetting, just bail */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006454 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006455 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006456 test_bit(__IXGBE_RESETTING, &adapter->state))
6457 return;
6458
6459 ixgbe_dump(adapter);
6460 netdev_err(adapter->netdev, "Reset adapter\n");
6461 adapter->tx_timeout_count++;
6462
John Fastabend8f4c5c92014-01-16 02:30:05 -08006463 rtnl_lock();
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006464 ixgbe_reinit_locked(adapter);
John Fastabend8f4c5c92014-01-16 02:30:05 -08006465 rtnl_unlock();
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006466}
6467
Alexander Duyck70864002011-04-27 09:13:56 +00006468/**
6469 * ixgbe_service_task - manages and runs subtasks
6470 * @work: pointer to work_struct containing our data
6471 **/
6472static void ixgbe_service_task(struct work_struct *work)
6473{
6474 struct ixgbe_adapter *adapter = container_of(work,
6475 struct ixgbe_adapter,
6476 service_task);
Mark Rustadb0483c82014-01-14 18:53:17 -08006477 if (ixgbe_removed(adapter->hw.hw_addr)) {
6478 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
6479 rtnl_lock();
6480 ixgbe_down(adapter);
6481 rtnl_unlock();
6482 }
6483 ixgbe_service_event_complete(adapter);
6484 return;
6485 }
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006486 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006487 ixgbe_sfp_detection_subtask(adapter);
6488 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006489 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006490 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006491 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006492 ixgbe_check_hang_subtask(adapter);
Jacob Keller891dc082012-12-05 07:24:46 +00006493
Jacob Keller8fecf672013-06-21 08:14:32 +00006494 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) {
Jacob Keller891dc082012-12-05 07:24:46 +00006495 ixgbe_ptp_overflow_check(adapter);
6496 ixgbe_ptp_rx_hang(adapter);
6497 }
Alexander Duyck70864002011-04-27 09:13:56 +00006498
6499 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006500}
6501
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006502static int ixgbe_tso(struct ixgbe_ring *tx_ring,
6503 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006504 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00006505{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006506 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00006507 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006508 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006509
Alexander Duyck8f4fbb92012-10-30 06:01:40 +00006510 if (skb->ip_summed != CHECKSUM_PARTIAL)
6511 return 0;
6512
Alexander Duyck897ab152011-05-27 05:31:47 +00006513 if (!skb_is_gso(skb))
6514 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006515
Alexander Duyck897ab152011-05-27 05:31:47 +00006516 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006517 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00006518 if (err)
6519 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006520 }
6521
Alexander Duyck897ab152011-05-27 05:31:47 +00006522 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6523 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6524
Joe Perchesa1108ff2014-03-13 05:19:25 +00006525 if (first->protocol == htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00006526 struct iphdr *iph = ip_hdr(skb);
6527 iph->tot_len = 0;
6528 iph->check = 0;
6529 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6530 iph->daddr, 0,
6531 IPPROTO_TCP,
6532 0);
6533 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006534 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
6535 IXGBE_TX_FLAGS_CSUM |
6536 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00006537 } else if (skb_is_gso_v6(skb)) {
6538 ipv6_hdr(skb)->payload_len = 0;
6539 tcp_hdr(skb)->check =
6540 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6541 &ipv6_hdr(skb)->daddr,
6542 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00006543 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
6544 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00006545 }
6546
Alexander Duyck091a6242012-02-08 07:51:01 +00006547 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00006548 l4len = tcp_hdrlen(skb);
6549 *hdr_len = skb_transport_offset(skb) + l4len;
6550
Alexander Duyck091a6242012-02-08 07:51:01 +00006551 /* update gso size and bytecount with header size */
6552 first->gso_segs = skb_shinfo(skb)->gso_segs;
6553 first->bytecount += (first->gso_segs - 1) * *hdr_len;
6554
Alexander Duyckc44f5f52012-10-30 06:01:45 +00006555 /* mss_l4len_id: use 0 as index for TSO */
Alexander Duyck897ab152011-05-27 05:31:47 +00006556 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6557 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +00006558
6559 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6560 vlan_macip_lens = skb_network_header_len(skb);
6561 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006562 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006563
6564 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006565 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00006566
6567 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006568}
6569
Alexander Duyck244e27a2012-02-08 07:51:11 +00006570static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
6571 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07006572{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006573 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00006574 u32 vlan_macip_lens = 0;
6575 u32 mss_l4len_idx = 0;
6576 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006577
Alexander Duyck897ab152011-05-27 05:31:47 +00006578 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck472148c2012-11-07 02:34:28 +00006579 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6580 !(first->tx_flags & IXGBE_TX_FLAGS_CC))
6581 return;
Alexander Duyck897ab152011-05-27 05:31:47 +00006582 } else {
6583 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006584 switch (first->protocol) {
Joe Perchesa1108ff2014-03-13 05:19:25 +00006585 case htons(ETH_P_IP):
Alexander Duyck897ab152011-05-27 05:31:47 +00006586 vlan_macip_lens |= skb_network_header_len(skb);
6587 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6588 l4_hdr = ip_hdr(skb)->protocol;
6589 break;
Joe Perchesa1108ff2014-03-13 05:19:25 +00006590 case htons(ETH_P_IPV6):
Alexander Duyck897ab152011-05-27 05:31:47 +00006591 vlan_macip_lens |= skb_network_header_len(skb);
6592 l4_hdr = ipv6_hdr(skb)->nexthdr;
6593 break;
6594 default:
6595 if (unlikely(net_ratelimit())) {
6596 dev_warn(tx_ring->dev,
6597 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00006598 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00006599 }
6600 break;
6601 }
Auke Kok9a799d72007-09-15 14:07:45 -07006602
Alexander Duyck897ab152011-05-27 05:31:47 +00006603 switch (l4_hdr) {
6604 case IPPROTO_TCP:
6605 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6606 mss_l4len_idx = tcp_hdrlen(skb) <<
6607 IXGBE_ADVTXD_L4LEN_SHIFT;
6608 break;
6609 case IPPROTO_SCTP:
6610 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6611 mss_l4len_idx = sizeof(struct sctphdr) <<
6612 IXGBE_ADVTXD_L4LEN_SHIFT;
6613 break;
6614 case IPPROTO_UDP:
6615 mss_l4len_idx = sizeof(struct udphdr) <<
6616 IXGBE_ADVTXD_L4LEN_SHIFT;
6617 break;
6618 default:
6619 if (unlikely(net_ratelimit())) {
6620 dev_warn(tx_ring->dev,
6621 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00006622 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00006623 }
6624 break;
6625 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00006626
6627 /* update TX checksum flag */
6628 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006629 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006630
Alexander Duyck244e27a2012-02-08 07:51:11 +00006631 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00006632 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006633 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006634
6635 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6636 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07006637}
6638
Alexander Duyck472148c2012-11-07 02:34:28 +00006639#define IXGBE_SET_FLAG(_input, _flag, _result) \
6640 ((_flag <= _result) ? \
6641 ((u32)(_input & _flag) * (_result / _flag)) : \
6642 ((u32)(_input & _flag) / (_flag / _result)))
6643
6644static u32 ixgbe_tx_cmd_type(struct sk_buff *skb, u32 tx_flags)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006645{
6646 /* set type for advanced descriptor with frame checksum insertion */
Alexander Duyck472148c2012-11-07 02:34:28 +00006647 u32 cmd_type = IXGBE_ADVTXD_DTYP_DATA |
6648 IXGBE_ADVTXD_DCMD_DEXT |
6649 IXGBE_ADVTXD_DCMD_IFCS;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006650
6651 /* set HW vlan bit if vlan is present */
Alexander Duyck472148c2012-11-07 02:34:28 +00006652 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_HW_VLAN,
6653 IXGBE_ADVTXD_DCMD_VLE);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006654
Alexander Duyckd3d00232011-07-15 02:31:25 +00006655 /* set segmentation enable bits for TSO/FSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00006656 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSO,
6657 IXGBE_ADVTXD_DCMD_TSE);
6658
6659 /* set timestamp bit if present */
6660 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSTAMP,
6661 IXGBE_ADVTXD_MAC_TSTAMP);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006662
Alexander Duyck62748b72012-07-20 08:09:01 +00006663 /* insert frame checksum */
Alexander Duyck472148c2012-11-07 02:34:28 +00006664 cmd_type ^= IXGBE_SET_FLAG(skb->no_fcs, 1, IXGBE_ADVTXD_DCMD_IFCS);
Alexander Duyck62748b72012-07-20 08:09:01 +00006665
Alexander Duyckd3d00232011-07-15 02:31:25 +00006666 return cmd_type;
6667}
6668
Alexander Duyck729739b2012-02-08 07:51:06 +00006669static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
6670 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006671{
Alexander Duyck472148c2012-11-07 02:34:28 +00006672 u32 olinfo_status = paylen << IXGBE_ADVTXD_PAYLEN_SHIFT;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006673
6674 /* enable L4 checksum for TSO and TX checksum offload */
Alexander Duyck472148c2012-11-07 02:34:28 +00006675 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
6676 IXGBE_TX_FLAGS_CSUM,
6677 IXGBE_ADVTXD_POPTS_TXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006678
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006679 /* enble IPv4 checksum for TSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00006680 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
6681 IXGBE_TX_FLAGS_IPV4,
6682 IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006683
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006684 /*
6685 * Check Context must be set if Tx switch is enabled, which it
6686 * always is for case where virtual functions are running
6687 */
Alexander Duyck472148c2012-11-07 02:34:28 +00006688 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
6689 IXGBE_TX_FLAGS_CC,
6690 IXGBE_ADVTXD_CC);
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006691
Alexander Duyck472148c2012-11-07 02:34:28 +00006692 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006693}
6694
6695#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6696 IXGBE_TXD_CMD_RS)
6697
6698static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006699 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006700 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006701{
Alexander Duyck729739b2012-02-08 07:51:06 +00006702 struct sk_buff *skb = first->skb;
6703 struct ixgbe_tx_buffer *tx_buffer;
6704 union ixgbe_adv_tx_desc *tx_desc;
Alexander Duyckec718252012-10-30 06:01:55 +00006705 struct skb_frag_struct *frag;
6706 dma_addr_t dma;
6707 unsigned int data_len, size;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006708 u32 tx_flags = first->tx_flags;
Alexander Duyck472148c2012-11-07 02:34:28 +00006709 u32 cmd_type = ixgbe_tx_cmd_type(skb, tx_flags);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006710 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006711
Alexander Duyck729739b2012-02-08 07:51:06 +00006712 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6713
Alexander Duyckec718252012-10-30 06:01:55 +00006714 ixgbe_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len);
6715
6716 size = skb_headlen(skb);
6717 data_len = skb->data_len;
Alexander Duyck729739b2012-02-08 07:51:06 +00006718
Alexander Duyckd3d00232011-07-15 02:31:25 +00006719#ifdef IXGBE_FCOE
6720 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006721 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006722 size -= sizeof(struct fcoe_crc_eof) - data_len;
6723 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006724 } else {
6725 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006726 }
Auke Kok9a799d72007-09-15 14:07:45 -07006727 }
6728
Alexander Duyckd3d00232011-07-15 02:31:25 +00006729#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006730 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006731
Alexander Duyckec718252012-10-30 06:01:55 +00006732 tx_buffer = first;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006733
Alexander Duyckec718252012-10-30 06:01:55 +00006734 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
6735 if (dma_mapping_error(tx_ring->dev, dma))
6736 goto dma_error;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006737
Alexander Duyckec718252012-10-30 06:01:55 +00006738 /* record length, and DMA address */
6739 dma_unmap_len_set(tx_buffer, len, size);
6740 dma_unmap_addr_set(tx_buffer, dma, dma);
6741
6742 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6743
Alexander Duyck729739b2012-02-08 07:51:06 +00006744 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006745 tx_desc->read.cmd_type_len =
Alexander Duyck472148c2012-11-07 02:34:28 +00006746 cpu_to_le32(cmd_type ^ IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006747
Alexander Duyckd3d00232011-07-15 02:31:25 +00006748 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006749 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006750 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006751 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006752 i = 0;
6753 }
Alexander Duyckec718252012-10-30 06:01:55 +00006754 tx_desc->read.olinfo_status = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006755
6756 dma += IXGBE_MAX_DATA_PER_TXD;
6757 size -= IXGBE_MAX_DATA_PER_TXD;
6758
6759 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006760 }
6761
Alexander Duyck729739b2012-02-08 07:51:06 +00006762 if (likely(!data_len))
6763 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006764
Alexander Duyck472148c2012-11-07 02:34:28 +00006765 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type ^ size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006766
Alexander Duyck729739b2012-02-08 07:51:06 +00006767 i++;
6768 tx_desc++;
6769 if (i == tx_ring->count) {
6770 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6771 i = 0;
6772 }
Alexander Duyckec718252012-10-30 06:01:55 +00006773 tx_desc->read.olinfo_status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006774
Alexander Duyckd3d00232011-07-15 02:31:25 +00006775#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006776 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006777#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006778 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006779#endif
6780 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006781
Alexander Duyck729739b2012-02-08 07:51:06 +00006782 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6783 DMA_TO_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07006784
Alexander Duyck729739b2012-02-08 07:51:06 +00006785 tx_buffer = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -07006786 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006787
Alexander Duyck729739b2012-02-08 07:51:06 +00006788 /* write last descriptor with RS and EOP bits */
Alexander Duyck472148c2012-11-07 02:34:28 +00006789 cmd_type |= size | IXGBE_TXD_CMD;
6790 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006791
Alexander Duyck091a6242012-02-08 07:51:01 +00006792 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006793
Alexander Duyckd3d00232011-07-15 02:31:25 +00006794 /* set the timestamp */
6795 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006796
6797 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006798 * Force memory writes to complete before letting h/w know there
6799 * are new descriptors to fetch. (Only applicable for weak-ordered
6800 * memory model archs, such as IA-64).
6801 *
6802 * We also need this memory barrier to make certain all of the
6803 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006804 */
6805 wmb();
6806
Alexander Duyckd3d00232011-07-15 02:31:25 +00006807 /* set next_to_watch value indicating a packet is present */
6808 first->next_to_watch = tx_desc;
6809
Alexander Duyck729739b2012-02-08 07:51:06 +00006810 i++;
6811 if (i == tx_ring->count)
6812 i = 0;
6813
6814 tx_ring->next_to_use = i;
6815
Alexander Duyckd3d00232011-07-15 02:31:25 +00006816 /* notify HW of packet */
Mark Rustad84227bc2014-01-14 18:53:13 -08006817 ixgbe_write_tail(tx_ring, i);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006818
6819 return;
6820dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006821 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006822
6823 /* clear dma mappings for failed tx_buffer_info map */
6824 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006825 tx_buffer = &tx_ring->tx_buffer_info[i];
6826 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6827 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006828 break;
6829 if (i == 0)
6830 i = tx_ring->count;
6831 i--;
6832 }
6833
Alexander Duyckd3d00232011-07-15 02:31:25 +00006834 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006835}
6836
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006837static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006838 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006839{
Alexander Duyck69830522011-01-06 14:29:58 +00006840 struct ixgbe_q_vector *q_vector = ring->q_vector;
6841 union ixgbe_atr_hash_dword input = { .dword = 0 };
6842 union ixgbe_atr_hash_dword common = { .dword = 0 };
6843 union {
6844 unsigned char *network;
6845 struct iphdr *ipv4;
6846 struct ipv6hdr *ipv6;
6847 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006848 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006849 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006850
Alexander Duyck69830522011-01-06 14:29:58 +00006851 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6852 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006853 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006854
Alexander Duyck69830522011-01-06 14:29:58 +00006855 /* do nothing if sampling is disabled */
6856 if (!ring->atr_sample_rate)
6857 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006858
Alexander Duyck69830522011-01-06 14:29:58 +00006859 ring->atr_count++;
6860
6861 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006862 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006863
6864 /* Currently only IPv4/IPv6 with TCP is supported */
Joe Perchesa1108ff2014-03-13 05:19:25 +00006865 if ((first->protocol != htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006866 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Joe Perchesa1108ff2014-03-13 05:19:25 +00006867 (first->protocol != htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006868 hdr.ipv4->protocol != IPPROTO_TCP))
6869 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006870
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006871 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006872
Alexander Duyck66f32a82011-06-29 05:43:22 +00006873 /* skip this packet since it is invalid or the socket is closing */
6874 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006875 return;
6876
6877 /* sample on all syn packets or once every atr sample count */
6878 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6879 return;
6880
6881 /* reset sample count */
6882 ring->atr_count = 0;
6883
Alexander Duyck244e27a2012-02-08 07:51:11 +00006884 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006885
6886 /*
6887 * src and dst are inverted, think how the receiver sees them
6888 *
6889 * The input is broken into two sections, a non-compressed section
6890 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6891 * is XORed together and stored in the compressed dword.
6892 */
6893 input.formatted.vlan_id = vlan_id;
6894
6895 /*
6896 * since src port and flex bytes occupy the same word XOR them together
6897 * and write the value to source port portion of compressed dword
6898 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006899 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Joe Perchesa1108ff2014-03-13 05:19:25 +00006900 common.port.src ^= th->dest ^ htons(ETH_P_8021Q);
Alexander Duyck69830522011-01-06 14:29:58 +00006901 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006902 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006903 common.port.dst ^= th->source;
6904
Joe Perchesa1108ff2014-03-13 05:19:25 +00006905 if (first->protocol == htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006906 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6907 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6908 } else {
6909 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6910 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6911 hdr.ipv6->saddr.s6_addr32[1] ^
6912 hdr.ipv6->saddr.s6_addr32[2] ^
6913 hdr.ipv6->saddr.s6_addr32[3] ^
6914 hdr.ipv6->daddr.s6_addr32[0] ^
6915 hdr.ipv6->daddr.s6_addr32[1] ^
6916 hdr.ipv6->daddr.s6_addr32[2] ^
6917 hdr.ipv6->daddr.s6_addr32[3];
6918 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006919
6920 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006921 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6922 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006923}
6924
Alexander Duyck63544e92011-05-27 05:31:42 +00006925static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006926{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006927 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006928 /* Herbert's original patch had:
6929 * smp_mb__after_netif_stop_queue();
6930 * but since that doesn't exist yet, just open code it. */
6931 smp_mb();
6932
6933 /* We need to check again in a case another CPU has just
6934 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006935 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006936 return -EBUSY;
6937
6938 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006939 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006940 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006941 return 0;
6942}
6943
Alexander Duyck82d4e462011-06-11 01:44:58 +00006944static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006945{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006946 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006947 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006948 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006949}
6950
Jason Wangf663dd92014-01-10 16:18:26 +08006951static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +01006952 void *accel_priv, select_queue_fallback_t fallback)
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006953{
Jason Wangf663dd92014-01-10 16:18:26 +08006954 struct ixgbe_fwd_adapter *fwd_adapter = accel_priv;
6955#ifdef IXGBE_FCOE
Alexander Duyck97488bd2013-01-12 06:33:37 +00006956 struct ixgbe_adapter *adapter;
6957 struct ixgbe_ring_feature *f;
6958 int txq;
Jason Wangf663dd92014-01-10 16:18:26 +08006959#endif
6960
6961 if (fwd_adapter)
6962 return skb->queue_mapping + fwd_adapter->tx_base_queue;
6963
6964#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00006965
Alexander Duyck97488bd2013-01-12 06:33:37 +00006966 /*
6967 * only execute the code below if protocol is FCoE
6968 * or FIP and we have FCoE enabled on the adapter
6969 */
6970 switch (vlan_get_protocol(skb)) {
Joe Perchesa1108ff2014-03-13 05:19:25 +00006971 case htons(ETH_P_FCOE):
6972 case htons(ETH_P_FIP):
Alexander Duyck97488bd2013-01-12 06:33:37 +00006973 adapter = netdev_priv(dev);
Alexander Duyckc0876632012-05-10 00:01:46 +00006974
Alexander Duyck97488bd2013-01-12 06:33:37 +00006975 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
6976 break;
6977 default:
Daniel Borkmann99932d42014-02-16 15:55:20 +01006978 return fallback(dev, skb);
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006979 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006980
Alexander Duyck97488bd2013-01-12 06:33:37 +00006981 f = &adapter->ring_feature[RING_F_FCOE];
6982
6983 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6984 smp_processor_id();
6985
6986 while (txq >= f->indices)
6987 txq -= f->indices;
6988
6989 return txq + f->offset;
Jason Wangf663dd92014-01-10 16:18:26 +08006990#else
Daniel Borkmann99932d42014-02-16 15:55:20 +01006991 return fallback(dev, skb);
Jason Wangf663dd92014-01-10 16:18:26 +08006992#endif
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006993}
6994
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006995netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006996 struct ixgbe_adapter *adapter,
6997 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006998{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006999 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00007000 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007001 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00007002 unsigned short f;
Alexander Duycka535c302011-05-27 05:31:52 +00007003 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00007004 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00007005 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00007006
Alexander Duycka535c302011-05-27 05:31:52 +00007007 /*
7008 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00007009 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00007010 * + 2 desc gap to keep tail from touching head,
7011 * + 1 desc for context descriptor,
7012 * otherwise try next time
7013 */
Alexander Duycka535c302011-05-27 05:31:52 +00007014 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
7015 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Alexander Duyck7f661622013-02-09 01:19:55 +00007016
Alexander Duycka535c302011-05-27 05:31:52 +00007017 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
7018 tx_ring->tx_stats.tx_busy++;
7019 return NETDEV_TX_BUSY;
7020 }
7021
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007022 /* record the location of the first descriptor for this packet */
7023 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
7024 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00007025 first->bytecount = skb->len;
7026 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007027
Alexander Duyck66f32a82011-06-29 05:43:22 +00007028 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00007029 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007030 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
7031 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7032 /* else if it is a SW VLAN check the next protocol and store the tag */
Joe Perchesa1108ff2014-03-13 05:19:25 +00007033 } else if (protocol == htons(ETH_P_8021Q)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007034 struct vlan_hdr *vhdr, _vhdr;
7035 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
7036 if (!vhdr)
7037 goto out_drop;
7038
7039 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007040 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
7041 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007042 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07007043 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007044
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007045 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
7046 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7047 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
Jacob Keller891dc082012-12-05 07:24:46 +00007048
7049 /* schedule check for Tx timestamp */
7050 adapter->ptp_tx_skb = skb_get(skb);
7051 adapter->ptp_tx_start = jiffies;
7052 schedule_work(&adapter->ptp_tx_work);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007053 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007054
Jakub Kicinskiff29a862014-03-15 14:55:16 +00007055 skb_tx_timestamp(skb);
7056
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007057#ifdef CONFIG_PCI_IOV
7058 /*
7059 * Use the l2switch_enable flag - would be false if the DMA
7060 * Tx switch had been disabled.
7061 */
7062 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
Alexander Duyck472148c2012-11-07 02:34:28 +00007063 tx_flags |= IXGBE_TX_FLAGS_CC;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007064
7065#endif
John Fastabend32701dc2011-09-27 03:51:56 +00007066 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007067 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00007068 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
7069 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007070 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00007071 tx_flags |= (skb->priority & 0x7) <<
7072 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007073 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
7074 struct vlan_ethhdr *vhdr;
7075 if (skb_header_cloned(skb) &&
7076 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7077 goto out_drop;
7078 vhdr = (struct vlan_ethhdr *)skb->data;
7079 vhdr->h_vlan_TCI = htons(tx_flags >>
7080 IXGBE_TX_FLAGS_VLAN_SHIFT);
7081 } else {
7082 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7083 }
7084 }
Alexander Duycka535c302011-05-27 05:31:52 +00007085
Alexander Duyck244e27a2012-02-08 07:51:11 +00007086 /* record initial flags and protocol */
7087 first->tx_flags = tx_flags;
7088 first->protocol = protocol;
7089
Yi Zoueacd73f2009-05-13 13:11:06 +00007090#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007091 /* setup tx offload for FCoE */
Joe Perchesa1108ff2014-03-13 05:19:25 +00007092 if ((protocol == htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00007093 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00007094 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00007095 if (tso < 0)
7096 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07007097
Alexander Duyck66f32a82011-06-29 05:43:22 +00007098 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007099 }
Auke Kok9a799d72007-09-15 14:07:45 -07007100
Auke Kok9a799d72007-09-15 14:07:45 -07007101#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007102 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007103 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007104 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007105 else if (!tso)
7106 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007107
7108 /* add the ATR filter if ATR is on */
7109 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00007110 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007111
7112#ifdef IXGBE_FCOE
7113xmit_fcoe:
7114#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007115 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007116
7117 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07007118
7119 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007120
7121out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007122 dev_kfree_skb_any(first->skb);
7123 first->skb = NULL;
7124
Alexander Duyck897ab152011-05-27 05:31:47 +00007125 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007126}
7127
John Fastabend2a47fa42013-11-06 09:54:52 -08007128static netdev_tx_t __ixgbe_xmit_frame(struct sk_buff *skb,
7129 struct net_device *netdev,
7130 struct ixgbe_ring *ring)
Auke Kok9a799d72007-09-15 14:07:45 -07007131{
7132 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007133 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07007134
Alexander Duycka50c29d2012-02-08 07:50:40 +00007135 /*
7136 * The minimum packet size for olinfo paylen is 17 so pad the skb
7137 * in order to meet this minimum size requirement.
7138 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00007139 if (unlikely(skb->len < 17)) {
7140 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00007141 return NETDEV_TX_OK;
7142 skb->len = 17;
Tushar Dave71a49f72012-09-14 04:24:49 +00007143 skb_set_tail_pointer(skb, 17);
Alexander Duycka50c29d2012-02-08 07:50:40 +00007144 }
7145
John Fastabend2a47fa42013-11-06 09:54:52 -08007146 tx_ring = ring ? ring : adapter->tx_ring[skb->queue_mapping];
7147
Auke Kok9a799d72007-09-15 14:07:45 -07007148 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7149}
7150
John Fastabend2a47fa42013-11-06 09:54:52 -08007151static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
7152 struct net_device *netdev)
7153{
7154 return __ixgbe_xmit_frame(skb, netdev, NULL);
7155}
7156
Auke Kok9a799d72007-09-15 14:07:45 -07007157/**
7158 * ixgbe_set_mac - Change the Ethernet Address of the NIC
7159 * @netdev: network interface device structure
7160 * @p: pointer to an address structure
7161 *
7162 * Returns 0 on success, negative on failure
7163 **/
7164static int ixgbe_set_mac(struct net_device *netdev, void *p)
7165{
7166 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7167 struct ixgbe_hw *hw = &adapter->hw;
7168 struct sockaddr *addr = p;
7169
7170 if (!is_valid_ether_addr(addr->sa_data))
7171 return -EADDRNOTAVAIL;
7172
7173 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007174 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07007175
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00007176 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07007177
7178 return 0;
7179}
7180
Ben Hutchings6b73e102009-04-29 08:08:58 +00007181static int
7182ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7183{
7184 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7185 struct ixgbe_hw *hw = &adapter->hw;
7186 u16 value;
7187 int rc;
7188
7189 if (prtad != hw->phy.mdio.prtad)
7190 return -EINVAL;
7191 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7192 if (!rc)
7193 rc = value;
7194 return rc;
7195}
7196
7197static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7198 u16 addr, u16 value)
7199{
7200 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7201 struct ixgbe_hw *hw = &adapter->hw;
7202
7203 if (prtad != hw->phy.mdio.prtad)
7204 return -EINVAL;
7205 return hw->phy.ops.write_reg(hw, addr, devad, value);
7206}
7207
7208static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7209{
7210 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7211
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007212 switch (cmd) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007213 case SIOCSHWTSTAMP:
Jacob Keller93501d42014-02-28 15:48:58 -08007214 return ixgbe_ptp_set_ts_config(adapter, req);
7215 case SIOCGHWTSTAMP:
7216 return ixgbe_ptp_get_ts_config(adapter, req);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007217 default:
7218 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7219 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00007220}
7221
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007222/**
7223 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007224 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007225 * @netdev: network interface device structure
7226 *
7227 * Returns non-zero on failure
7228 **/
7229static int ixgbe_add_sanmac_netdev(struct net_device *dev)
7230{
7231 int err = 0;
7232 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007233 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007234
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007235 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007236 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007237 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007238 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007239
7240 /* update SAN MAC vmdq pool selection */
7241 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007242 }
7243 return err;
7244}
7245
7246/**
7247 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007248 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007249 * @netdev: network interface device structure
7250 *
7251 * Returns non-zero on failure
7252 **/
7253static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7254{
7255 int err = 0;
7256 struct ixgbe_adapter *adapter = netdev_priv(dev);
7257 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7258
7259 if (is_valid_ether_addr(mac->san_addr)) {
7260 rtnl_lock();
7261 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7262 rtnl_unlock();
7263 }
7264 return err;
7265}
7266
Auke Kok9a799d72007-09-15 14:07:45 -07007267#ifdef CONFIG_NET_POLL_CONTROLLER
7268/*
7269 * Polling 'interrupt' - used by things like netconsole to send skbs
7270 * without having to re-enable interrupts. It's not called while
7271 * the interrupt routine is executing.
7272 */
7273static void ixgbe_netpoll(struct net_device *netdev)
7274{
7275 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007276 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007277
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007278 /* if interface is down do nothing */
7279 if (test_bit(__IXGBE_DOWN, &adapter->state))
7280 return;
7281
Auke Kok9a799d72007-09-15 14:07:45 -07007282 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007283 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00007284 for (i = 0; i < adapter->num_q_vectors; i++)
7285 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007286 } else {
7287 ixgbe_intr(adapter->pdev->irq, netdev);
7288 }
Auke Kok9a799d72007-09-15 14:07:45 -07007289 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07007290}
Auke Kok9a799d72007-09-15 14:07:45 -07007291
Alexander Duyck581330b2012-02-08 07:51:47 +00007292#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00007293static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7294 struct rtnl_link_stats64 *stats)
7295{
7296 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7297 int i;
7298
Eric Dumazet1a515022010-11-16 19:26:42 -08007299 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007300 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007301 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007302 u64 bytes, packets;
7303 unsigned int start;
7304
Eric Dumazet1a515022010-11-16 19:26:42 -08007305 if (ring) {
7306 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007307 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazet1a515022010-11-16 19:26:42 -08007308 packets = ring->stats.packets;
7309 bytes = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007310 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet1a515022010-11-16 19:26:42 -08007311 stats->rx_packets += packets;
7312 stats->rx_bytes += bytes;
7313 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007314 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007315
7316 for (i = 0; i < adapter->num_tx_queues; i++) {
7317 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7318 u64 bytes, packets;
7319 unsigned int start;
7320
7321 if (ring) {
7322 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07007323 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007324 packets = ring->stats.packets;
7325 bytes = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07007326 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007327 stats->tx_packets += packets;
7328 stats->tx_bytes += bytes;
7329 }
7330 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007331 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007332 /* following stats updated by ixgbe_watchdog_task() */
7333 stats->multicast = netdev->stats.multicast;
7334 stats->rx_errors = netdev->stats.rx_errors;
7335 stats->rx_length_errors = netdev->stats.rx_length_errors;
7336 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7337 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7338 return stats;
7339}
7340
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007341#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007342/**
7343 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7344 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00007345 * @tc: number of traffic classes currently enabled
7346 *
7347 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7348 * 802.1Q priority maps to a packet buffer that exists.
7349 */
7350static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7351{
7352 struct ixgbe_hw *hw = &adapter->hw;
7353 u32 reg, rsave;
7354 int i;
7355
7356 /* 82598 have a static priority to TC mapping that can not
7357 * be changed so no validation is needed.
7358 */
7359 if (hw->mac.type == ixgbe_mac_82598EB)
7360 return;
7361
7362 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7363 rsave = reg;
7364
7365 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7366 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7367
7368 /* If up2tc is out of bounds default to zero */
7369 if (up2tc > tc)
7370 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7371 }
7372
7373 if (reg != rsave)
7374 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7375
7376 return;
7377}
7378
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007379/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00007380 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
7381 * @adapter: Pointer to adapter struct
7382 *
7383 * Populate the netdev user priority to tc map
7384 */
7385static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
7386{
7387 struct net_device *dev = adapter->netdev;
7388 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
7389 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
7390 u8 prio;
7391
7392 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
7393 u8 tc = 0;
7394
7395 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
7396 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
7397 else if (ets)
7398 tc = ets->prio_tc[prio];
7399
7400 netdev_set_prio_tc_map(dev, prio, tc);
7401 }
7402}
7403
Alexander Duyckcca73c52013-01-12 06:33:44 +00007404#endif /* CONFIG_IXGBE_DCB */
Alexander Duyck02debdc2012-05-18 06:33:31 +00007405/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007406 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00007407 *
7408 * @netdev: net device to configure
7409 * @tc: number of traffic classes to enable
7410 */
7411int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7412{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007413 struct ixgbe_adapter *adapter = netdev_priv(dev);
7414 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08007415 bool pools;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007416
John Fastabend8b1c0b22011-05-03 02:26:48 +00007417 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00007418 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00007419 (hw->mac.type == ixgbe_mac_82598EB &&
7420 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00007421 return -EINVAL;
7422
John Fastabend2a47fa42013-11-06 09:54:52 -08007423 pools = (find_first_zero_bit(&adapter->fwd_bitmask, 32) > 1);
7424 if (tc && pools && adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS)
7425 return -EBUSY;
7426
John Fastabend8b1c0b22011-05-03 02:26:48 +00007427 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00007428 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00007429 * hardware is not flexible enough to do this dynamically.
7430 */
7431 if (netif_running(dev))
7432 ixgbe_close(dev);
7433 ixgbe_clear_interrupt_scheme(adapter);
7434
Alexander Duyckcca73c52013-01-12 06:33:44 +00007435#ifdef CONFIG_IXGBE_DCB
John Fastabende7589ea2011-07-18 22:38:36 +00007436 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007437 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00007438 ixgbe_set_prio_tc_map(adapter);
7439
John Fastabende7589ea2011-07-18 22:38:36 +00007440 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00007441
Alexander Duyck943561d2012-05-09 22:14:44 -07007442 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
7443 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00007444 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07007445 }
John Fastabende7589ea2011-07-18 22:38:36 +00007446 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007447 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00007448
Alexander Duyck943561d2012-05-09 22:14:44 -07007449 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
7450 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00007451
7452 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00007453
7454 adapter->temp_dcb_cfg.pfc_mode_enable = false;
7455 adapter->dcb_cfg.pfc_mode_enable = false;
7456 }
7457
John Fastabend8b1c0b22011-05-03 02:26:48 +00007458 ixgbe_validate_rtr(adapter, tc);
Alexander Duyckcca73c52013-01-12 06:33:44 +00007459
7460#endif /* CONFIG_IXGBE_DCB */
7461 ixgbe_init_interrupt_scheme(adapter);
7462
John Fastabend8b1c0b22011-05-03 02:26:48 +00007463 if (netif_running(dev))
Alexander Duyckcca73c52013-01-12 06:33:44 +00007464 return ixgbe_open(dev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00007465
7466 return 0;
7467}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007468
Greg Roseda36b642012-12-11 08:26:43 +00007469#ifdef CONFIG_PCI_IOV
7470void ixgbe_sriov_reinit(struct ixgbe_adapter *adapter)
7471{
7472 struct net_device *netdev = adapter->netdev;
7473
7474 rtnl_lock();
Greg Roseda36b642012-12-11 08:26:43 +00007475 ixgbe_setup_tc(netdev, netdev_get_num_tc(netdev));
Greg Roseda36b642012-12-11 08:26:43 +00007476 rtnl_unlock();
7477}
7478
7479#endif
Don Skidmore082757a2011-07-21 05:55:00 +00007480void ixgbe_do_reset(struct net_device *netdev)
7481{
7482 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7483
7484 if (netif_running(netdev))
7485 ixgbe_reinit_locked(adapter);
7486 else
7487 ixgbe_reset(adapter);
7488}
7489
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007490static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00007491 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00007492{
7493 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7494
Don Skidmore082757a2011-07-21 05:55:00 +00007495 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00007496 if (!(features & NETIF_F_RXCSUM))
7497 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00007498
Alexander Duyck567d2de2012-02-11 07:18:57 +00007499 /* Turn off LRO if not RSC capable */
7500 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
7501 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007502
Alexander Duyck567d2de2012-02-11 07:18:57 +00007503 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00007504}
7505
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007506static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00007507 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00007508{
7509 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00007510 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00007511 bool need_reset = false;
7512
Don Skidmore082757a2011-07-21 05:55:00 +00007513 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00007514 if (!(features & NETIF_F_LRO)) {
7515 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00007516 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00007517 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
7518 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
7519 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7520 if (adapter->rx_itr_setting == 1 ||
7521 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
7522 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
7523 need_reset = true;
7524 } else if ((changed ^ features) & NETIF_F_LRO) {
7525 e_info(probe, "rx-usecs set too low, "
7526 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00007527 }
7528 }
7529
7530 /*
7531 * Check if Flow Director n-tuple support was enabled or disabled. If
7532 * the state changed, we need to reset.
7533 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00007534 switch (features & NETIF_F_NTUPLE) {
7535 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00007536 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00007537 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
7538 need_reset = true;
7539
Alexander Duyck567d2de2012-02-11 07:18:57 +00007540 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7541 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00007542 break;
7543 default:
7544 /* turn off perfect filters, enable ATR and reset */
7545 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
7546 need_reset = true;
7547
7548 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7549
7550 /* We cannot enable ATR if SR-IOV is enabled */
7551 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7552 break;
7553
7554 /* We cannot enable ATR if we have 2 or more traffic classes */
7555 if (netdev_get_num_tc(netdev) > 1)
7556 break;
7557
7558 /* We cannot enable ATR if RSS is disabled */
7559 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
7560 break;
7561
7562 /* A sample rate of 0 indicates ATR disabled */
7563 if (!adapter->atr_sample_rate)
7564 break;
7565
7566 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7567 break;
Don Skidmore082757a2011-07-21 05:55:00 +00007568 }
7569
Patrick McHardyf6469682013-04-19 02:04:27 +00007570 if (features & NETIF_F_HW_VLAN_CTAG_RX)
John Fastabend146d4cc2012-05-15 05:59:26 +00007571 ixgbe_vlan_strip_enable(adapter);
7572 else
7573 ixgbe_vlan_strip_disable(adapter);
7574
Ben Greear3f2d1c02012-03-08 08:28:41 +00007575 if (changed & NETIF_F_RXALL)
7576 need_reset = true;
7577
Alexander Duyck567d2de2012-02-11 07:18:57 +00007578 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00007579 if (need_reset)
7580 ixgbe_do_reset(netdev);
7581
7582 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00007583}
7584
stephen hemmingeredc7d572012-10-01 12:32:33 +00007585static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007586 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00007587 const unsigned char *addr,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007588 u16 flags)
7589{
7590 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00007591 int err;
7592
7593 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
Vlad Yasevichfaaf02d2013-03-06 15:39:43 +00007594 return ndo_dflt_fdb_add(ndm, tb, dev, addr, flags);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007595
John Fastabendb1ac1ef2012-11-01 05:00:44 +00007596 /* Hardware does not support aging addresses so if a
7597 * ndm_state is given only allow permanent addresses
7598 */
7599 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007600 pr_info("%s: FDB only supports static addresses\n",
7601 ixgbe_driver_name);
7602 return -EINVAL;
7603 }
7604
Ben Hutchings46acc462012-11-01 09:11:11 +00007605 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) {
John Fastabend95447462012-05-31 12:42:26 +00007606 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
7607
7608 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007609 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007610 else
John Fastabend95447462012-05-31 12:42:26 +00007611 err = -ENOMEM;
7612 } else if (is_multicast_ether_addr(addr)) {
7613 err = dev_mc_add_excl(dev, addr);
7614 } else {
7615 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007616 }
7617
7618 /* Only return duplicate errors if NLM_F_EXCL is set */
7619 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7620 err = 0;
7621
7622 return err;
7623}
7624
John Fastabend815cccb2012-10-24 08:13:09 +00007625static int ixgbe_ndo_bridge_setlink(struct net_device *dev,
7626 struct nlmsghdr *nlh)
7627{
7628 struct ixgbe_adapter *adapter = netdev_priv(dev);
7629 struct nlattr *attr, *br_spec;
7630 int rem;
7631
7632 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
7633 return -EOPNOTSUPP;
7634
7635 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
7636
7637 nla_for_each_nested(attr, br_spec, rem) {
7638 __u16 mode;
7639 u32 reg = 0;
7640
7641 if (nla_type(attr) != IFLA_BRIDGE_MODE)
7642 continue;
7643
7644 mode = nla_get_u16(attr);
Greg Rose9b735982012-11-08 02:41:35 +00007645 if (mode == BRIDGE_MODE_VEPA) {
John Fastabend815cccb2012-10-24 08:13:09 +00007646 reg = 0;
Greg Rose9b735982012-11-08 02:41:35 +00007647 adapter->flags2 &= ~IXGBE_FLAG2_BRIDGE_MODE_VEB;
7648 } else if (mode == BRIDGE_MODE_VEB) {
John Fastabend815cccb2012-10-24 08:13:09 +00007649 reg = IXGBE_PFDTXGSWC_VT_LBEN;
Greg Rose9b735982012-11-08 02:41:35 +00007650 adapter->flags2 |= IXGBE_FLAG2_BRIDGE_MODE_VEB;
7651 } else
John Fastabend815cccb2012-10-24 08:13:09 +00007652 return -EINVAL;
7653
7654 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, reg);
7655
7656 e_info(drv, "enabling bridge mode: %s\n",
7657 mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
7658 }
7659
7660 return 0;
7661}
7662
7663static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00007664 struct net_device *dev,
7665 u32 filter_mask)
John Fastabend815cccb2012-10-24 08:13:09 +00007666{
7667 struct ixgbe_adapter *adapter = netdev_priv(dev);
7668 u16 mode;
7669
7670 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
7671 return 0;
7672
Greg Rose9b735982012-11-08 02:41:35 +00007673 if (adapter->flags2 & IXGBE_FLAG2_BRIDGE_MODE_VEB)
John Fastabend815cccb2012-10-24 08:13:09 +00007674 mode = BRIDGE_MODE_VEB;
7675 else
7676 mode = BRIDGE_MODE_VEPA;
7677
7678 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, mode);
7679}
7680
John Fastabend2a47fa42013-11-06 09:54:52 -08007681static void *ixgbe_fwd_add(struct net_device *pdev, struct net_device *vdev)
7682{
7683 struct ixgbe_fwd_adapter *fwd_adapter = NULL;
7684 struct ixgbe_adapter *adapter = netdev_priv(pdev);
John Fastabend51f37732013-11-08 00:51:10 -08007685 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08007686 int pool, err;
7687
John Fastabend219354d2013-11-08 00:50:32 -08007688#ifdef CONFIG_RPS
7689 if (vdev->num_rx_queues != vdev->num_tx_queues) {
7690 netdev_info(pdev, "%s: Only supports a single queue count for TX and RX\n",
7691 vdev->name);
7692 return ERR_PTR(-EINVAL);
7693 }
7694#endif
John Fastabend2a47fa42013-11-06 09:54:52 -08007695 /* Check for hardware restriction on number of rx/tx queues */
John Fastabend219354d2013-11-08 00:50:32 -08007696 if (vdev->num_tx_queues > IXGBE_MAX_L2A_QUEUES ||
John Fastabend2a47fa42013-11-06 09:54:52 -08007697 vdev->num_tx_queues == IXGBE_BAD_L2A_QUEUE) {
7698 netdev_info(pdev,
7699 "%s: Supports RX/TX Queue counts 1,2, and 4\n",
7700 pdev->name);
7701 return ERR_PTR(-EINVAL);
7702 }
7703
7704 if (((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
7705 adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS - 1) ||
7706 (adapter->num_rx_pools > IXGBE_MAX_MACVLANS))
7707 return ERR_PTR(-EBUSY);
7708
7709 fwd_adapter = kcalloc(1, sizeof(struct ixgbe_fwd_adapter), GFP_KERNEL);
7710 if (!fwd_adapter)
7711 return ERR_PTR(-ENOMEM);
7712
7713 pool = find_first_zero_bit(&adapter->fwd_bitmask, 32);
7714 adapter->num_rx_pools++;
7715 set_bit(pool, &adapter->fwd_bitmask);
John Fastabend51f37732013-11-08 00:51:10 -08007716 limit = find_last_bit(&adapter->fwd_bitmask, 32);
John Fastabend2a47fa42013-11-06 09:54:52 -08007717
7718 /* Enable VMDq flag so device will be set in VM mode */
7719 adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED | IXGBE_FLAG_SRIOV_ENABLED;
John Fastabend51f37732013-11-08 00:51:10 -08007720 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend219354d2013-11-08 00:50:32 -08007721 adapter->ring_feature[RING_F_RSS].limit = vdev->num_tx_queues;
John Fastabend2a47fa42013-11-06 09:54:52 -08007722
7723 /* Force reinit of ring allocation with VMDQ enabled */
7724 err = ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
7725 if (err)
7726 goto fwd_add_err;
7727 fwd_adapter->pool = pool;
7728 fwd_adapter->real_adapter = adapter;
7729 err = ixgbe_fwd_ring_up(vdev, fwd_adapter);
7730 if (err)
7731 goto fwd_add_err;
7732 netif_tx_start_all_queues(vdev);
7733 return fwd_adapter;
7734fwd_add_err:
7735 /* unwind counter and free adapter struct */
7736 netdev_info(pdev,
7737 "%s: dfwd hardware acceleration failed\n", vdev->name);
7738 clear_bit(pool, &adapter->fwd_bitmask);
7739 adapter->num_rx_pools--;
7740 kfree(fwd_adapter);
7741 return ERR_PTR(err);
7742}
7743
7744static void ixgbe_fwd_del(struct net_device *pdev, void *priv)
7745{
7746 struct ixgbe_fwd_adapter *fwd_adapter = priv;
7747 struct ixgbe_adapter *adapter = fwd_adapter->real_adapter;
John Fastabend51f37732013-11-08 00:51:10 -08007748 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08007749
7750 clear_bit(fwd_adapter->pool, &adapter->fwd_bitmask);
7751 adapter->num_rx_pools--;
7752
John Fastabend51f37732013-11-08 00:51:10 -08007753 limit = find_last_bit(&adapter->fwd_bitmask, 32);
7754 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend2a47fa42013-11-06 09:54:52 -08007755 ixgbe_fwd_ring_down(fwd_adapter->netdev, fwd_adapter);
7756 ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
7757 netdev_dbg(pdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
7758 fwd_adapter->pool, adapter->num_rx_pools,
7759 fwd_adapter->rx_base_queue,
7760 fwd_adapter->rx_base_queue + adapter->num_rx_queues_per_pool,
7761 adapter->fwd_bitmask);
7762 kfree(fwd_adapter);
7763}
7764
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007765static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007766 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007767 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08007768 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007769 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00007770 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007771 .ndo_validate_addr = eth_validate_addr,
7772 .ndo_set_mac_address = ixgbe_set_mac,
7773 .ndo_change_mtu = ixgbe_change_mtu,
7774 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007775 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7776 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007777 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007778 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7779 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7780 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00007781 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007782 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007783 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007784#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00007785 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007786#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007787#ifdef CONFIG_NET_POLL_CONTROLLER
7788 .ndo_poll_controller = ixgbe_netpoll,
7789#endif
Cong Wange0d10952013-08-01 11:10:25 +08007790#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03007791 .ndo_busy_poll = ixgbe_low_latency_recv,
Eliezer Tamir5a85e732013-06-10 11:40:20 +03007792#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007793#ifdef IXGBE_FCOE
7794 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007795 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007796 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007797 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7798 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007799 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007800 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007801#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007802 .ndo_set_features = ixgbe_set_features,
7803 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007804 .ndo_fdb_add = ixgbe_ndo_fdb_add,
John Fastabend815cccb2012-10-24 08:13:09 +00007805 .ndo_bridge_setlink = ixgbe_ndo_bridge_setlink,
7806 .ndo_bridge_getlink = ixgbe_ndo_bridge_getlink,
John Fastabend2a47fa42013-11-06 09:54:52 -08007807 .ndo_dfwd_add_station = ixgbe_fwd_add,
7808 .ndo_dfwd_del_station = ixgbe_fwd_del,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007809};
7810
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007811/**
Jacob Kellere027d1a2013-07-31 06:53:31 +00007812 * ixgbe_enumerate_functions - Get the number of ports this device has
7813 * @adapter: adapter structure
7814 *
7815 * This function enumerates the phsyical functions co-located on a single slot,
7816 * in order to determine how many ports a device has. This is most useful in
7817 * determining the required GT/s of PCIe bandwidth necessary for optimal
7818 * performance.
7819 **/
7820static inline int ixgbe_enumerate_functions(struct ixgbe_adapter *adapter)
7821{
Jacob Kellere027d1a2013-07-31 06:53:31 +00007822 struct list_head *entry;
7823 int physfns = 0;
7824
Jacob Kellerf1f96572013-08-31 02:45:38 +00007825 /* Some cards can not use the generic count PCIe functions method,
7826 * because they are behind a parent switch, so we hardcode these with
7827 * the correct number of functions.
Jacob Kellere027d1a2013-07-31 06:53:31 +00007828 */
Jacob Kellerf1f96572013-08-31 02:45:38 +00007829 if (ixgbe_pcie_from_parent(&adapter->hw)) {
Jacob Kellere027d1a2013-07-31 06:53:31 +00007830 physfns = 4;
Jacob Kellerf1f96572013-08-31 02:45:38 +00007831 } else {
Jacob Kellere027d1a2013-07-31 06:53:31 +00007832 list_for_each(entry, &adapter->pdev->bus_list) {
7833 struct pci_dev *pdev =
7834 list_entry(entry, struct pci_dev, bus_list);
7835 /* don't count virtual functions */
7836 if (!pdev->is_virtfn)
7837 physfns++;
7838 }
7839 }
7840
7841 return physfns;
7842}
7843
7844/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00007845 * ixgbe_wol_supported - Check whether device supports WoL
7846 * @hw: hw specific details
7847 * @device_id: the device ID
7848 * @subdev_id: the subsystem device ID
7849 *
7850 * This function is used by probe and ethtool to determine
7851 * which devices have WoL support
7852 *
7853 **/
7854int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
7855 u16 subdevice_id)
7856{
7857 struct ixgbe_hw *hw = &adapter->hw;
7858 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7859 int is_wol_supported = 0;
7860
7861 switch (device_id) {
7862 case IXGBE_DEV_ID_82599_SFP:
7863 /* Only these subdevices could supports WOL */
7864 switch (subdevice_id) {
Mark Rustad87557442014-02-25 17:58:55 -08007865 case IXGBE_SUBDEV_ID_82599_SFP_WOL0:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007866 case IXGBE_SUBDEV_ID_82599_560FLR:
7867 /* only support first port */
7868 if (hw->bus.func != 0)
7869 break;
Emil Tantilov5700ff22013-04-18 08:18:55 +00007870 case IXGBE_SUBDEV_ID_82599_SP_560FLR:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007871 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00007872 case IXGBE_SUBDEV_ID_82599_RNDC:
Emil Tantilovf8a06c22012-08-16 08:13:07 +00007873 case IXGBE_SUBDEV_ID_82599_ECNA_DP:
Jacob Keller979fe5f2013-04-03 04:41:37 +00007874 case IXGBE_SUBDEV_ID_82599_LOM_SFP:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007875 is_wol_supported = 1;
7876 break;
7877 }
7878 break;
Don Skidmore5daebbb2013-04-05 05:49:34 +00007879 case IXGBE_DEV_ID_82599EN_SFP:
7880 /* Only this subdevice supports WOL */
7881 switch (subdevice_id) {
7882 case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1:
7883 is_wol_supported = 1;
7884 break;
7885 }
7886 break;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007887 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7888 /* All except this subdevice support WOL */
7889 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7890 is_wol_supported = 1;
7891 break;
7892 case IXGBE_DEV_ID_82599_KX4:
7893 is_wol_supported = 1;
7894 break;
7895 case IXGBE_DEV_ID_X540T:
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +00007896 case IXGBE_DEV_ID_X540T1:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007897 /* check eeprom to see if enabled wol */
7898 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7899 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7900 (hw->bus.func == 0))) {
7901 is_wol_supported = 1;
7902 }
7903 break;
7904 }
7905
7906 return is_wol_supported;
7907}
7908
7909/**
Auke Kok9a799d72007-09-15 14:07:45 -07007910 * ixgbe_probe - Device Initialization Routine
7911 * @pdev: PCI device information struct
7912 * @ent: entry in ixgbe_pci_tbl
7913 *
7914 * Returns 0 on success, negative on failure
7915 *
7916 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7917 * The OS initialization, configuring of the adapter private structure,
7918 * and a hardware reset occur.
7919 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00007920static int ixgbe_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007921{
7922 struct net_device *netdev;
7923 struct ixgbe_adapter *adapter = NULL;
7924 struct ixgbe_hw *hw;
7925 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007926 static int cards_found;
Jacob Kellere027d1a2013-07-31 06:53:31 +00007927 int i, err, pci_using_dac, expected_gts;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007928 unsigned int indices = MAX_TX_QUEUES;
Don Skidmore289700db2010-12-03 03:32:58 +00007929 u8 part_str[IXGBE_PBANUM_LENGTH];
Yi Zoueacd73f2009-05-13 13:11:06 +00007930#ifdef IXGBE_FCOE
7931 u16 device_caps;
7932#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007933 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007934
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007935 /* Catch broken hardware that put the wrong VF device ID in
7936 * the PCIe SR-IOV capability.
7937 */
7938 if (pdev->is_virtfn) {
7939 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7940 pci_name(pdev), pdev->vendor, pdev->device);
7941 return -EINVAL;
7942 }
7943
gouji-new9ce77662009-05-06 10:44:45 +00007944 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007945 if (err)
7946 return err;
7947
Russell Kingf5f2eda2013-06-10 12:47:42 +01007948 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007949 pci_using_dac = 1;
7950 } else {
Russell Kingf5f2eda2013-06-10 12:47:42 +01007951 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007952 if (err) {
Russell Kingf5f2eda2013-06-10 12:47:42 +01007953 dev_err(&pdev->dev,
7954 "No usable DMA configuration, aborting\n");
7955 goto err_dma;
Auke Kok9a799d72007-09-15 14:07:45 -07007956 }
7957 pci_using_dac = 0;
7958 }
7959
gouji-new9ce77662009-05-06 10:44:45 +00007960 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007961 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007962 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007963 dev_err(&pdev->dev,
7964 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007965 goto err_pci_reg;
7966 }
7967
Frans Pop19d5afd2009-10-02 10:04:12 -07007968 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007969
Auke Kok9a799d72007-09-15 14:07:45 -07007970 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007971 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007972
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007973 if (ii->mac == ixgbe_mac_82598EB) {
John Fastabende901acd2011-04-26 07:26:08 +00007974#ifdef CONFIG_IXGBE_DCB
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007975 /* 8 TC w/ 4 queues per TC */
7976 indices = 4 * MAX_TRAFFIC_CLASS;
7977#else
7978 indices = IXGBE_MAX_RSS_INDICES;
John Fastabende901acd2011-04-26 07:26:08 +00007979#endif
Alexander Duyckd3cb9862013-01-16 01:35:35 +00007980 }
John Fastabende901acd2011-04-26 07:26:08 +00007981
John Fastabendc85a2612010-02-25 23:15:21 +00007982 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007983 if (!netdev) {
7984 err = -ENOMEM;
7985 goto err_alloc_etherdev;
7986 }
7987
Auke Kok9a799d72007-09-15 14:07:45 -07007988 SET_NETDEV_DEV(netdev, &pdev->dev);
7989
Auke Kok9a799d72007-09-15 14:07:45 -07007990 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007991 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007992
7993 adapter->netdev = netdev;
7994 adapter->pdev = pdev;
7995 hw = &adapter->hw;
7996 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007997 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007998
Jeff Kirsher05857982008-09-11 19:57:00 -07007999 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00008000 pci_resource_len(pdev, 0));
Mark Rustad2a1a0912014-01-14 18:53:15 -08008001 adapter->io_addr = hw->hw_addr;
Auke Kok9a799d72007-09-15 14:07:45 -07008002 if (!hw->hw_addr) {
8003 err = -EIO;
8004 goto err_ioremap;
8005 }
8006
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008007 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07008008 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008009 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00008010 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07008011
Auke Kok9a799d72007-09-15 14:07:45 -07008012 adapter->bd_number = cards_found;
8013
Auke Kok9a799d72007-09-15 14:07:45 -07008014 /* Setup hw api */
8015 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008016 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07008017
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008018 /* EEPROM */
8019 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
8020 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
8021 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
8022 if (!(eec & (1 << 8)))
8023 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
8024
8025 /* PHY */
8026 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08008027 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00008028 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
8029 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
8030 hw->phy.mdio.mmds = 0;
8031 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
8032 hw->phy.mdio.dev = netdev;
8033 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
8034 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08008035
Don Skidmore8ca783a2009-05-26 20:40:47 -07008036 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07008037
8038 /* setup the private structure */
8039 err = ixgbe_sw_init(adapter);
8040 if (err)
8041 goto err_sw_init;
8042
Don Skidmoree86bff02010-02-11 04:14:08 +00008043 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08008044 switch (adapter->hw.mac.type) {
8045 case ixgbe_mac_82599EB:
8046 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00008047 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08008048 break;
8049 default:
8050 break;
8051 }
Don Skidmoree86bff02010-02-11 04:14:08 +00008052
Don Skidmorebf069c92009-05-07 10:39:54 +00008053 /*
8054 * If there is a fan on this device and it has failed log the
8055 * failure.
8056 */
8057 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
8058 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
8059 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00008060 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00008061 }
8062
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00008063 if (allow_unsupported_sfp)
8064 hw->allow_unsupported_sfp = allow_unsupported_sfp;
8065
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008066 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07008067 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008068 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07008069 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07008070 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
8071 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07008072 err = 0;
8073 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Don Skidmore1b1bf312013-07-31 05:27:04 +00008074 e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n");
8075 e_dev_err("Reload the driver after installing a supported module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00008076 goto err_sw_init;
8077 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008078 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008079 goto err_sw_init;
8080 }
8081
Alexander Duyck99d74482012-05-09 08:09:25 +00008082#ifdef CONFIG_PCI_IOV
Greg Rose60a1a682012-12-11 08:26:33 +00008083 /* SR-IOV not supported on the 82598 */
8084 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
8085 goto skip_sriov;
8086 /* Mailbox */
8087 ixgbe_init_mbx_params_pf(hw);
8088 memcpy(&hw->mbx.ops, ii->mbx_ops, sizeof(hw->mbx.ops));
ethan.zhaodcc23e32014-01-16 19:41:04 -08008089 pci_sriov_set_totalvfs(pdev, IXGBE_MAX_VFS_DRV_LIMIT);
ethan.zhao31ac9102014-01-16 19:41:05 -08008090 ixgbe_enable_sriov(adapter);
Greg Rose60a1a682012-12-11 08:26:33 +00008091skip_sriov:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008092
Alexander Duyck99d74482012-05-09 08:09:25 +00008093#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00008094 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00008095 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00008096 NETIF_F_IPV6_CSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00008097 NETIF_F_HW_VLAN_CTAG_TX |
8098 NETIF_F_HW_VLAN_CTAG_RX |
8099 NETIF_F_HW_VLAN_CTAG_FILTER |
Don Skidmore082757a2011-07-21 05:55:00 +00008100 NETIF_F_TSO |
8101 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00008102 NETIF_F_RXHASH |
John Fastabend8bf12642013-11-12 12:13:29 +00008103 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07008104
John Fastabend8bf12642013-11-12 12:13:29 +00008105 netdev->hw_features = netdev->features | NETIF_F_HW_L2FW_DOFFLOAD;
Jeff Kirsherad31c402008-06-05 04:05:30 -07008106
Don Skidmore58be7662011-04-12 09:42:11 +00008107 switch (adapter->hw.mac.type) {
8108 case ixgbe_mac_82599EB:
8109 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00008110 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00008111 netdev->hw_features |= NETIF_F_SCTP_CSUM |
8112 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00008113 break;
8114 default:
8115 break;
8116 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00008117
Ben Greear3f2d1c02012-03-08 08:28:41 +00008118 netdev->hw_features |= NETIF_F_RXALL;
8119
Jeff Kirsherad31c402008-06-05 04:05:30 -07008120 netdev->vlan_features |= NETIF_F_TSO;
8121 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07008122 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00008123 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07008124 netdev->vlan_features |= NETIF_F_SG;
8125
Jiri Pirko01789342011-08-16 06:29:00 +00008126 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00008127 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00008128
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08008129#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08008130 netdev->dcbnl_ops = &dcbnl_ops;
8131#endif
8132
Yi Zoueacd73f2009-05-13 13:11:06 +00008133#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00008134 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Alexander Duyckd3cb9862013-01-16 01:35:35 +00008135 unsigned int fcoe_l;
8136
Yi Zoueacd73f2009-05-13 13:11:06 +00008137 if (hw->mac.ops.get_device_caps) {
8138 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00008139 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
8140 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00008141 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00008142
Alexander Duyckd3cb9862013-01-16 01:35:35 +00008143
8144 fcoe_l = min_t(int, IXGBE_FCRETA_SIZE, num_online_cpus());
8145 adapter->ring_feature[RING_F_FCOE].limit = fcoe_l;
Alexander Duyck7c8ae652012-05-05 05:32:47 +00008146
Alexander Duycka58915c2012-05-25 06:38:18 +00008147 netdev->features |= NETIF_F_FSO |
8148 NETIF_F_FCOE_CRC;
8149
Alexander Duyck7c8ae652012-05-05 05:32:47 +00008150 netdev->vlan_features |= NETIF_F_FSO |
8151 NETIF_F_FCOE_CRC |
8152 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00008153 }
Yi Zoueacd73f2009-05-13 13:11:06 +00008154#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00008155 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07008156 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00008157 netdev->vlan_features |= NETIF_F_HIGHDMA;
8158 }
Auke Kok9a799d72007-09-15 14:07:45 -07008159
Don Skidmore082757a2011-07-21 05:55:00 +00008160 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
8161 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00008162 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00008163 netdev->features |= NETIF_F_LRO;
8164
Auke Kok9a799d72007-09-15 14:07:45 -07008165 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008166 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008167 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07008168 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00008169 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07008170 }
8171
8172 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07008173
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00008174 if (!is_valid_ether_addr(netdev->dev_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008175 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07008176 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00008177 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07008178 }
8179
Alexander Duyck70864002011-04-27 09:13:56 +00008180 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00008181 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008182
Alexander Duyck70864002011-04-27 09:13:56 +00008183 INIT_WORK(&adapter->service_task, ixgbe_service_task);
8184 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07008185
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008186 err = ixgbe_init_interrupt_scheme(adapter);
8187 if (err)
8188 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07008189
Jacob Keller8e2813f2012-04-21 06:05:40 +00008190 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00008191 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00008192 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00008193 hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device,
Don Skidmoreb8f83632013-02-28 08:08:44 +00008194 pdev->subsystem_device);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00008195 if (hw->wol_enabled)
Andy Gospodarek9417c462011-07-16 07:31:33 +00008196 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00008197
PJ Waskiewicze8e26352009-02-27 15:45:05 +00008198 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
8199
Emil Tantilov15e52092011-09-29 05:01:29 +00008200 /* save off EEPROM version number */
8201 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
8202 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
8203
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00008204 /* pick up the PCI bus settings for reporting later */
8205 hw->mac.ops.get_bus_info(hw);
Jacob Kellere027d1a2013-07-31 06:53:31 +00008206 if (ixgbe_pcie_from_parent(hw))
Jacob Kellerb8e82002013-04-09 07:20:09 +00008207 ixgbe_get_parent_bus_info(adapter);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00008208
Jacob Kellere027d1a2013-07-31 06:53:31 +00008209 /* calculate the expected PCIe bandwidth required for optimal
8210 * performance. Note that some older parts will never have enough
8211 * bandwidth due to being older generation PCIe parts. We clamp these
8212 * parts to ensure no warning is displayed if it can't be fixed.
8213 */
8214 switch (hw->mac.type) {
8215 case ixgbe_mac_82598EB:
8216 expected_gts = min(ixgbe_enumerate_functions(adapter) * 10, 16);
8217 break;
8218 default:
8219 expected_gts = ixgbe_enumerate_functions(adapter) * 10;
8220 break;
Auke Kok0c254d82008-02-11 09:25:56 -08008221 }
Jacob Kellere027d1a2013-07-31 06:53:31 +00008222 ixgbe_check_minimum_link(adapter, expected_gts);
Auke Kok0c254d82008-02-11 09:25:56 -08008223
Jacob Keller6a2aae52013-10-18 05:09:24 +00008224 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
8225 if (err)
8226 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
8227 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
8228 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
8229 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
8230 part_str);
8231 else
8232 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
8233 hw->mac.type, hw->phy.type, part_str);
8234
8235 e_dev_info("%pM\n", netdev->dev_addr);
8236
Auke Kok9a799d72007-09-15 14:07:45 -07008237 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00008238 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00008239 if (err == IXGBE_ERR_EEPROM_VERSION) {
8240 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00008241 e_dev_warn("This device is a pre-production adapter/LOM. "
8242 "Please be aware there may be issues associated "
8243 "with your hardware. If you are experiencing "
8244 "problems please contact your Intel or hardware "
8245 "representative who provided you with this "
8246 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00008247 }
Auke Kok9a799d72007-09-15 14:07:45 -07008248 strcpy(netdev->name, "eth%d");
8249 err = register_netdev(netdev);
8250 if (err)
8251 goto err_register;
8252
Emil Tantilovec74a472012-09-20 03:33:56 +00008253 /* power down the optics for 82599 SFP+ fiber */
8254 if (hw->mac.ops.disable_tx_laser)
Emil Tantilov93d3ce82011-10-19 07:59:55 +00008255 hw->mac.ops.disable_tx_laser(hw);
8256
Jesse Brandeburg54386462009-04-17 20:44:27 +00008257 /* carrier off reporting is important to ethtool even BEFORE open */
8258 netif_carrier_off(netdev);
8259
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008260#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03008261 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008262 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008263 ixgbe_setup_dca(adapter);
8264 }
8265#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008266 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008267 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008268 for (i = 0; i < adapter->num_vfs; i++)
8269 ixgbe_vf_configuration(pdev, (i | 0x10000000));
8270 }
8271
Jacob Keller2466dd92011-09-08 03:50:54 +00008272 /* firmware requires driver version to be 0xFFFFFFFF
8273 * since os does not support feature
8274 */
Emil Tantilov9612de92011-05-07 07:40:20 +00008275 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00008276 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
8277 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00008278
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008279 /* add san mac addr to netdev */
8280 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008281
Neerav Parikhea818752012-01-04 20:23:40 +00008282 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07008283 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008284
Don Skidmore12109822012-05-04 06:07:08 +00008285#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008286 if (ixgbe_sysfs_init(adapter))
8287 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00008288#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008289
Catherine Sullivan00949162012-08-10 01:59:10 +00008290 ixgbe_dbg_adapter_init(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00008291
Don Skidmore0b2679d2013-02-21 03:00:04 +00008292 /* Need link setup for MNG FW, else wait for IXGBE_UP */
Don Skidmore7155d052014-02-27 09:03:30 +00008293 if (ixgbe_mng_enabled(hw) && hw->mac.ops.setup_link)
Don Skidmore0b2679d2013-02-21 03:00:04 +00008294 hw->mac.ops.setup_link(hw,
8295 IXGBE_LINK_SPEED_10GB_FULL | IXGBE_LINK_SPEED_1GB_FULL,
8296 true);
8297
Auke Kok9a799d72007-09-15 14:07:45 -07008298 return 0;
8299
8300err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008301 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00008302 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008303err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00008304 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00008305 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Mark Rustad2a1a0912014-01-14 18:53:15 -08008306 iounmap(adapter->io_addr);
Auke Kok9a799d72007-09-15 14:07:45 -07008307err_ioremap:
8308 free_netdev(netdev);
8309err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00008310 pci_release_selected_regions(pdev,
8311 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008312err_pci_reg:
8313err_dma:
8314 pci_disable_device(pdev);
8315 return err;
8316}
8317
8318/**
8319 * ixgbe_remove - Device Removal Routine
8320 * @pdev: PCI device information struct
8321 *
8322 * ixgbe_remove is called by the PCI subsystem to alert the driver
8323 * that it should release a PCI device. The could be caused by a
8324 * Hot-Plug event, or because the driver is going to be removed from
8325 * memory.
8326 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05008327static void ixgbe_remove(struct pci_dev *pdev)
Auke Kok9a799d72007-09-15 14:07:45 -07008328{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008329 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8330 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008331
Catherine Sullivan00949162012-08-10 01:59:10 +00008332 ixgbe_dbg_adapter_exit(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00008333
Mark Rustad09f40ae2014-01-14 18:53:11 -08008334 set_bit(__IXGBE_REMOVING, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00008335 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07008336
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00008337
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008338#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008339 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
8340 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
8341 dca_remove_requester(&pdev->dev);
8342 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
8343 }
8344
8345#endif
Don Skidmore12109822012-05-04 06:07:08 +00008346#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008347 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00008348#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00008349
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008350 /* remove the added san mac */
8351 ixgbe_del_sanmac_netdev(netdev);
8352
Donald Skidmorec4900be2008-11-20 21:11:42 -08008353 if (netdev->reg_state == NETREG_REGISTERED)
8354 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008355
Greg Roseda36b642012-12-11 08:26:43 +00008356#ifdef CONFIG_PCI_IOV
8357 /*
8358 * Only disable SR-IOV on unload if the user specified the now
8359 * deprecated max_vfs module parameter.
8360 */
8361 if (max_vfs)
8362 ixgbe_disable_sriov(adapter);
8363#endif
Alexander Duyck7a921c92009-05-06 10:43:28 +00008364 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008365
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008366 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008367
Alexander Duyck2b1588c2012-03-17 02:39:16 +00008368#ifdef CONFIG_DCB
8369 kfree(adapter->ixgbe_ieee_pfc);
8370 kfree(adapter->ixgbe_ieee_ets);
8371
8372#endif
Mark Rustad2a1a0912014-01-14 18:53:15 -08008373 iounmap(adapter->io_addr);
gouji-new9ce77662009-05-06 10:44:45 +00008374 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008375 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008376
Emil Tantilov849c4542010-06-03 16:53:41 +00008377 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008378
Auke Kok9a799d72007-09-15 14:07:45 -07008379 free_netdev(netdev);
8380
Frans Pop19d5afd2009-10-02 10:04:12 -07008381 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008382
Auke Kok9a799d72007-09-15 14:07:45 -07008383 pci_disable_device(pdev);
8384}
8385
8386/**
8387 * ixgbe_io_error_detected - called when PCI error is detected
8388 * @pdev: Pointer to PCI device
8389 * @state: The current pci connection state
8390 *
8391 * This function is called after a PCI bus error affecting
8392 * this device has been detected.
8393 */
8394static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008395 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07008396{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008397 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8398 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008399
Greg Rose83c61fa2011-09-07 05:59:35 +00008400#ifdef CONFIG_PCI_IOV
Mark Rustad14438462014-02-28 15:48:57 -08008401 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose83c61fa2011-09-07 05:59:35 +00008402 struct pci_dev *bdev, *vfdev;
8403 u32 dw0, dw1, dw2, dw3;
8404 int vf, pos;
8405 u16 req_id, pf_func;
8406
8407 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
8408 adapter->num_vfs == 0)
8409 goto skip_bad_vf_detection;
8410
8411 bdev = pdev->bus->self;
Yijing Wang62f87c02012-07-24 17:20:03 +08008412 while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
Greg Rose83c61fa2011-09-07 05:59:35 +00008413 bdev = bdev->bus->self;
8414
8415 if (!bdev)
8416 goto skip_bad_vf_detection;
8417
8418 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
8419 if (!pos)
8420 goto skip_bad_vf_detection;
8421
Mark Rustad14438462014-02-28 15:48:57 -08008422 dw0 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG);
8423 dw1 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 4);
8424 dw2 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 8);
8425 dw3 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 12);
8426 if (ixgbe_removed(hw->hw_addr))
8427 goto skip_bad_vf_detection;
Greg Rose83c61fa2011-09-07 05:59:35 +00008428
8429 req_id = dw1 >> 16;
8430 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
8431 if (!(req_id & 0x0080))
8432 goto skip_bad_vf_detection;
8433
8434 pf_func = req_id & 0x01;
8435 if ((pf_func & 1) == (pdev->devfn & 1)) {
8436 unsigned int device_id;
8437
8438 vf = (req_id & 0x7F) >> 1;
8439 e_dev_err("VF %d has caused a PCIe error\n", vf);
8440 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
8441 "%8.8x\tdw3: %8.8x\n",
8442 dw0, dw1, dw2, dw3);
8443 switch (adapter->hw.mac.type) {
8444 case ixgbe_mac_82599EB:
8445 device_id = IXGBE_82599_VF_DEVICE_ID;
8446 break;
8447 case ixgbe_mac_X540:
8448 device_id = IXGBE_X540_VF_DEVICE_ID;
8449 break;
8450 default:
8451 device_id = 0;
8452 break;
8453 }
8454
8455 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00008456 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00008457 while (vfdev) {
8458 if (vfdev->devfn == (req_id & 0xFF))
8459 break;
Jon Mason36e90312012-07-19 21:02:09 +00008460 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00008461 device_id, vfdev);
8462 }
8463 /*
8464 * There's a slim chance the VF could have been hot plugged,
8465 * so if it is no longer present we don't need to issue the
8466 * VFLR. Just clean up the AER in that case.
8467 */
8468 if (vfdev) {
8469 e_dev_err("Issuing VFLR to VF %d\n", vf);
8470 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
Greg Roseb4fafbe2012-12-13 01:14:06 +00008471 /* Free device reference count */
8472 pci_dev_put(vfdev);
Greg Rose83c61fa2011-09-07 05:59:35 +00008473 }
8474
8475 pci_cleanup_aer_uncorrect_error_status(pdev);
8476 }
8477
8478 /*
8479 * Even though the error may have occurred on the other port
8480 * we still need to increment the vf error reference count for
8481 * both ports because the I/O resume function will be called
8482 * for both of them.
8483 */
8484 adapter->vferr_refcount++;
8485
8486 return PCI_ERS_RESULT_RECOVERED;
8487
8488skip_bad_vf_detection:
8489#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07008490 netif_device_detach(netdev);
8491
Breno Leitao3044b8d2009-05-06 10:44:26 +00008492 if (state == pci_channel_io_perm_failure)
8493 return PCI_ERS_RESULT_DISCONNECT;
8494
Auke Kok9a799d72007-09-15 14:07:45 -07008495 if (netif_running(netdev))
8496 ixgbe_down(adapter);
8497 pci_disable_device(pdev);
8498
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008499 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07008500 return PCI_ERS_RESULT_NEED_RESET;
8501}
8502
8503/**
8504 * ixgbe_io_slot_reset - called after the pci bus has been reset.
8505 * @pdev: Pointer to PCI device
8506 *
8507 * Restart the card from scratch, as if from a cold-boot.
8508 */
8509static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
8510{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008511 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008512 pci_ers_result_t result;
8513 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07008514
gouji-new9ce77662009-05-06 10:44:45 +00008515 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008516 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008517 result = PCI_ERS_RESULT_DISCONNECT;
8518 } else {
Mark Rustad0391bbe2014-02-28 15:48:55 -08008519 adapter->hw.hw_addr = adapter->io_addr;
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008520 pci_set_master(pdev);
8521 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00008522 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008523
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07008524 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008525
8526 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00008527 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008528 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07008529 }
Auke Kok9a799d72007-09-15 14:07:45 -07008530
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008531 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8532 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008533 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
8534 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008535 /* non-fatal, continue */
8536 }
Auke Kok9a799d72007-09-15 14:07:45 -07008537
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008538 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07008539}
8540
8541/**
8542 * ixgbe_io_resume - called when traffic can start flowing again.
8543 * @pdev: Pointer to PCI device
8544 *
8545 * This callback is called when the error recovery driver tells us that
8546 * its OK to resume normal operation.
8547 */
8548static void ixgbe_io_resume(struct pci_dev *pdev)
8549{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008550 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8551 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008552
Greg Rose83c61fa2011-09-07 05:59:35 +00008553#ifdef CONFIG_PCI_IOV
8554 if (adapter->vferr_refcount) {
8555 e_info(drv, "Resuming after VF err\n");
8556 adapter->vferr_refcount--;
8557 return;
8558 }
8559
8560#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00008561 if (netif_running(netdev))
8562 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008563
8564 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008565}
8566
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07008567static const struct pci_error_handlers ixgbe_err_handler = {
Auke Kok9a799d72007-09-15 14:07:45 -07008568 .error_detected = ixgbe_io_error_detected,
8569 .slot_reset = ixgbe_io_slot_reset,
8570 .resume = ixgbe_io_resume,
8571};
8572
8573static struct pci_driver ixgbe_driver = {
8574 .name = ixgbe_driver_name,
8575 .id_table = ixgbe_pci_tbl,
8576 .probe = ixgbe_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05008577 .remove = ixgbe_remove,
Auke Kok9a799d72007-09-15 14:07:45 -07008578#ifdef CONFIG_PM
8579 .suspend = ixgbe_suspend,
8580 .resume = ixgbe_resume,
8581#endif
8582 .shutdown = ixgbe_shutdown,
Greg Roseda36b642012-12-11 08:26:43 +00008583 .sriov_configure = ixgbe_pci_sriov_configure,
Auke Kok9a799d72007-09-15 14:07:45 -07008584 .err_handler = &ixgbe_err_handler
8585};
8586
8587/**
8588 * ixgbe_init_module - Driver Registration Routine
8589 *
8590 * ixgbe_init_module is the first routine called when the driver is
8591 * loaded. All it does is register with the PCI subsystem.
8592 **/
8593static int __init ixgbe_init_module(void)
8594{
8595 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00008596 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00008597 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07008598
Catherine Sullivan00949162012-08-10 01:59:10 +00008599 ixgbe_dbg_init();
Catherine Sullivan00949162012-08-10 01:59:10 +00008600
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008601 ret = pci_register_driver(&ixgbe_driver);
8602 if (ret) {
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008603 ixgbe_dbg_exit();
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008604 return ret;
8605 }
8606
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008607#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008608 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008609#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008610
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00008611 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07008612}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008613
Auke Kok9a799d72007-09-15 14:07:45 -07008614module_init(ixgbe_init_module);
8615
8616/**
8617 * ixgbe_exit_module - Driver Exit Cleanup Routine
8618 *
8619 * ixgbe_exit_module is called just before the driver is removed
8620 * from memory.
8621 **/
8622static void __exit ixgbe_exit_module(void)
8623{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008624#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008625 dca_unregister_notify(&dca_notifier);
8626#endif
Auke Kok9a799d72007-09-15 14:07:45 -07008627 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +00008628
Catherine Sullivan00949162012-08-10 01:59:10 +00008629 ixgbe_dbg_exit();
Catherine Sullivan00949162012-08-10 01:59:10 +00008630
Eric Dumazet1a515022010-11-16 19:26:42 -08008631 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07008632}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008633
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008634#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008635static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008636 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008637{
8638 int ret_val;
8639
8640 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008641 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008642
8643 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
8644}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008645
Alexander Duyckb4533682009-03-31 21:32:42 +00008646#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00008647
Auke Kok9a799d72007-09-15 14:07:45 -07008648module_exit(ixgbe_exit_module);
8649
8650/* ixgbe_main.c */