blob: ee81618bb9f0942d96664bf9a012b42942233ca5 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad67359c32015-06-15 11:33:25 -07004 Copyright(c) 1999 - 2015 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>
Martin K Petersenc762dff2014-11-15 14:24:51 +000045#include <linux/etherdevice.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000047#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070048#include <linux/if_vlan.h>
John Fastabend2a47fa42013-11-06 09:54:52 -080049#include <linux/if_macvlan.h>
John Fastabend815cccb2012-10-24 08:13:09 +000050#include <linux/if_bridge.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040051#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000052#include <scsi/fc/fc_fcoe.h>
Don Skidmore3f207802014-12-23 07:40:34 +000053#include <net/vxlan.h>
John Fastabendb82b17d2016-02-16 21:18:53 -080054#include <net/pkt_cls.h>
55#include <net/tc_act/tc_gact.h>
Auke Kok9a799d72007-09-15 14:07:45 -070056
Martin K Petersenc762dff2014-11-15 14:24:51 +000057#ifdef CONFIG_OF
58#include <linux/of_net.h>
59#endif
60
61#ifdef CONFIG_SPARC
62#include <asm/idprom.h>
63#include <asm/prom.h>
64#endif
65
Auke Kok9a799d72007-09-15 14:07:45 -070066#include "ixgbe.h"
67#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000068#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000069#include "ixgbe_sriov.h"
John Fastabendb82b17d2016-02-16 21:18:53 -080070#include "ixgbe_model.h"
Auke Kok9a799d72007-09-15 14:07:45 -070071
72char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070073static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000074 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000075#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000076char ixgbe_default_device_descr[] =
77 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000078#else
79static char ixgbe_default_device_descr[] =
80 "Intel(R) 10 Gigabit Network Connection";
81#endif
Mark Rustad21dd5602015-08-11 13:11:58 -070082#define DRV_VERSION "4.2.1-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070083const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000084static const char ixgbe_copyright[] =
Mark Rustad67359c32015-06-15 11:33:25 -070085 "Copyright (c) 1999-2015 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070086
Don Skidmoref44e7512015-06-09 16:36:23 -070087static const char ixgbe_overheat_msg[] = "Network adapter has been stopped because it has over heated. Restart the computer. If the problem persists, power off the system and replace the adapter";
88
Auke Kok9a799d72007-09-15 14:07:45 -070089static const struct ixgbe_info *ixgbe_info_tbl[] = {
Don Skidmore6a14ee02014-12-05 03:59:50 +000090 [board_82598] = &ixgbe_82598_info,
91 [board_82599] = &ixgbe_82599_info,
92 [board_X540] = &ixgbe_X540_info,
93 [board_X550] = &ixgbe_X550_info,
94 [board_X550EM_x] = &ixgbe_X550EM_x_info,
Auke Kok9a799d72007-09-15 14:07:45 -070095};
96
97/* ixgbe_pci_tbl - PCI Device ID Table
98 *
99 * Wildcard entries (PCI_ANY_ID) should come last
100 * Last entry must be all 0s
101 *
102 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
103 * Class, Class Mask, private data (not used) }
104 */
Benoit Taine9baa3c32014-08-08 15:56:03 +0200105static const struct pci_device_id ixgbe_pci_tbl[] = {
Alexander Duyck54239c62011-07-15 03:06:06 +0000106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
117 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
118 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
119 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
120 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
121 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
122 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
123 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
124 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
125 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
126 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
127 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
128 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
129 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
130 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
131 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Don Skidmore8f583322013-07-27 06:25:38 +0000132 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000133 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000134 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +0000135 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
Don Skidmore6a14ee02014-12-05 03:59:50 +0000136 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T), board_X550},
137 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KX4), board_X550EM_x},
138 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KR), board_X550EM_x},
Don Skidmorededa5622015-06-09 17:39:46 -0700139 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_10G_T), board_X550EM_x},
Mark Rustad018d7142015-08-08 16:19:19 -0700140 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_SFP), board_X550EM_x},
Auke Kok9a799d72007-09-15 14:07:45 -0700141 /* required last entry */
142 {0, }
143};
144MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
145
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400146#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800147static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000148 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800149static struct notifier_block dca_notifier = {
150 .notifier_call = ixgbe_notify_dca,
151 .next = NULL,
152 .priority = 0
153};
154#endif
155
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000156#ifdef CONFIG_PCI_IOV
157static unsigned int max_vfs;
158module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000159MODULE_PARM_DESC(max_vfs,
Jacob Keller170e8542013-11-09 04:52:32 -0800160 "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 +0000161#endif /* CONFIG_PCI_IOV */
162
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000163static unsigned int allow_unsupported_sfp;
164module_param(allow_unsupported_sfp, uint, 0);
165MODULE_PARM_DESC(allow_unsupported_sfp,
166 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
167
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000168#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
169static int debug = -1;
170module_param(debug, int, 0);
171MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
172
Auke Kok9a799d72007-09-15 14:07:45 -0700173MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
174MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
175MODULE_LICENSE("GPL");
176MODULE_VERSION(DRV_VERSION);
177
Mark Rustad780484d2015-10-21 17:21:10 -0700178static struct workqueue_struct *ixgbe_wq;
179
Mark Rustad14438462014-02-28 15:48:57 -0800180static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev);
181
Jacob Kellerb8e82002013-04-09 07:20:09 +0000182static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter *adapter,
183 u32 reg, u16 *value)
184{
Jacob Kellerb8e82002013-04-09 07:20:09 +0000185 struct pci_dev *parent_dev;
186 struct pci_bus *parent_bus;
187
188 parent_bus = adapter->pdev->bus->parent;
189 if (!parent_bus)
190 return -1;
191
192 parent_dev = parent_bus->self;
193 if (!parent_dev)
194 return -1;
195
Yijing Wangc0798ed2013-09-04 17:30:08 +0000196 if (!pci_is_pcie(parent_dev))
Jacob Kellerb8e82002013-04-09 07:20:09 +0000197 return -1;
198
Yijing Wangc0798ed2013-09-04 17:30:08 +0000199 pcie_capability_read_word(parent_dev, reg, value);
Mark Rustad14438462014-02-28 15:48:57 -0800200 if (*value == IXGBE_FAILED_READ_CFG_WORD &&
201 ixgbe_check_cfg_remove(&adapter->hw, parent_dev))
202 return -1;
Jacob Kellerb8e82002013-04-09 07:20:09 +0000203 return 0;
204}
205
206static s32 ixgbe_get_parent_bus_info(struct ixgbe_adapter *adapter)
207{
208 struct ixgbe_hw *hw = &adapter->hw;
209 u16 link_status = 0;
210 int err;
211
212 hw->bus.type = ixgbe_bus_type_pci_express;
213
214 /* Get the negotiated link width and speed from PCI config space of the
215 * parent, as this device is behind a switch
216 */
217 err = ixgbe_read_pci_cfg_word_parent(adapter, 18, &link_status);
218
219 /* assume caller will handle error case */
220 if (err)
221 return err;
222
223 hw->bus.width = ixgbe_convert_bus_width(link_status);
224 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
225
226 return 0;
227}
228
Jacob Kellere027d1a2013-07-31 06:53:31 +0000229/**
230 * ixgbe_check_from_parent - Determine whether PCIe info should come from parent
231 * @hw: hw specific details
232 *
233 * This function is used by probe to determine whether a device's PCI-Express
234 * bandwidth details should be gathered from the parent bus instead of from the
235 * device. Used to ensure that various locations all have the correct device ID
236 * checks.
237 */
238static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw *hw)
239{
240 switch (hw->device_id) {
241 case IXGBE_DEV_ID_82599_SFP_SF_QP:
Don Skidmore8f583322013-07-27 06:25:38 +0000242 case IXGBE_DEV_ID_82599_QSFP_SF_QP:
Jacob Kellere027d1a2013-07-31 06:53:31 +0000243 return true;
244 default:
245 return false;
246 }
247}
248
249static void ixgbe_check_minimum_link(struct ixgbe_adapter *adapter,
250 int expected_gts)
251{
Don Skidmoref9328bc2015-06-18 13:24:06 -0400252 struct ixgbe_hw *hw = &adapter->hw;
Jacob Kellere027d1a2013-07-31 06:53:31 +0000253 int max_gts = 0;
254 enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
255 enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
256 struct pci_dev *pdev;
257
Don Skidmoref9328bc2015-06-18 13:24:06 -0400258 /* Some devices are not connected over PCIe and thus do not negotiate
259 * speed. These devices do not have valid bus info, and thus any report
260 * we generate may not be correct.
261 */
262 if (hw->bus.type == ixgbe_bus_type_internal)
263 return;
264
Jacob Keller56d13922015-06-10 11:44:45 -0700265 /* determine whether to use the parent device */
Jacob Kellere027d1a2013-07-31 06:53:31 +0000266 if (ixgbe_pcie_from_parent(&adapter->hw))
267 pdev = adapter->pdev->bus->parent->self;
268 else
269 pdev = adapter->pdev;
270
271 if (pcie_get_minimum_link(pdev, &speed, &width) ||
272 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
273 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
274 return;
275 }
276
277 switch (speed) {
278 case PCIE_SPEED_2_5GT:
279 /* 8b/10b encoding reduces max throughput by 20% */
280 max_gts = 2 * width;
281 break;
282 case PCIE_SPEED_5_0GT:
283 /* 8b/10b encoding reduces max throughput by 20% */
284 max_gts = 4 * width;
285 break;
286 case PCIE_SPEED_8_0GT:
Jacob Keller9f0a4332013-10-18 05:09:19 +0000287 /* 128b/130b encoding reduces throughput by less than 2% */
Jacob Kellere027d1a2013-07-31 06:53:31 +0000288 max_gts = 8 * width;
289 break;
290 default:
291 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
292 return;
293 }
294
295 e_dev_info("PCI Express bandwidth of %dGT/s available\n",
296 max_gts);
297 e_dev_info("(Speed:%s, Width: x%d, Encoding Loss:%s)\n",
298 (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
299 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
300 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
301 "Unknown"),
302 width,
303 (speed == PCIE_SPEED_2_5GT ? "20%" :
304 speed == PCIE_SPEED_5_0GT ? "20%" :
Jacob Keller9f0a4332013-10-18 05:09:19 +0000305 speed == PCIE_SPEED_8_0GT ? "<2%" :
Jacob Kellere027d1a2013-07-31 06:53:31 +0000306 "Unknown"));
307
308 if (max_gts < expected_gts) {
309 e_dev_warn("This is not sufficient for optimal performance of this card.\n");
310 e_dev_warn("For optimal performance, at least %dGT/s of bandwidth is required.\n",
311 expected_gts);
312 e_dev_warn("A slot with more lanes and/or higher speed is suggested.\n");
313 }
314}
315
Alexander Duyck70864002011-04-27 09:13:56 +0000316static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
317{
318 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
Mark Rustad09f40ae2014-01-14 18:53:11 -0800319 !test_bit(__IXGBE_REMOVING, &adapter->state) &&
Alexander Duyck70864002011-04-27 09:13:56 +0000320 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
Mark Rustad780484d2015-10-21 17:21:10 -0700321 queue_work(ixgbe_wq, &adapter->service_task);
Alexander Duyck70864002011-04-27 09:13:56 +0000322}
323
Mark Rustad2a1a0912014-01-14 18:53:15 -0800324static void ixgbe_remove_adapter(struct ixgbe_hw *hw)
325{
326 struct ixgbe_adapter *adapter = hw->back;
327
328 if (!hw->hw_addr)
329 return;
330 hw->hw_addr = NULL;
331 e_dev_err("Adapter removed\n");
Mark Rustad58cf6632014-03-12 00:38:40 +0000332 if (test_bit(__IXGBE_SERVICE_INITED, &adapter->state))
333 ixgbe_service_event_schedule(adapter);
Mark Rustad2a1a0912014-01-14 18:53:15 -0800334}
335
Mark Rustadf8e24722014-03-18 07:03:40 +0000336static void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg)
Mark Rustad2a1a0912014-01-14 18:53:15 -0800337{
338 u32 value;
339
340 /* The following check not only optimizes a bit by not
341 * performing a read on the status register when the
342 * register just read was a status register read that
343 * returned IXGBE_FAILED_READ_REG. It also blocks any
344 * potential recursion.
345 */
346 if (reg == IXGBE_STATUS) {
347 ixgbe_remove_adapter(hw);
348 return;
349 }
350 value = ixgbe_read_reg(hw, IXGBE_STATUS);
351 if (value == IXGBE_FAILED_READ_REG)
352 ixgbe_remove_adapter(hw);
353}
354
Mark Rustadf8e24722014-03-18 07:03:40 +0000355/**
356 * ixgbe_read_reg - Read from device register
357 * @hw: hw specific details
358 * @reg: offset of register to read
359 *
360 * Returns : value read or IXGBE_FAILED_READ_REG if removed
361 *
362 * This function is used to read device registers. It checks for device
363 * removal by confirming any read that returns all ones by checking the
364 * status register value for all ones. This function avoids reading from
365 * the hardware if a removal was previously detected in which case it
366 * returns IXGBE_FAILED_READ_REG (all ones).
367 */
368u32 ixgbe_read_reg(struct ixgbe_hw *hw, u32 reg)
369{
370 u8 __iomem *reg_addr = ACCESS_ONCE(hw->hw_addr);
371 u32 value;
372
373 if (ixgbe_removed(reg_addr))
374 return IXGBE_FAILED_READ_REG;
375 value = readl(reg_addr + reg);
376 if (unlikely(value == IXGBE_FAILED_READ_REG))
377 ixgbe_check_remove(hw, reg);
378 return value;
379}
380
Mark Rustad14438462014-02-28 15:48:57 -0800381static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev)
382{
383 u16 value;
384
385 pci_read_config_word(pdev, PCI_VENDOR_ID, &value);
386 if (value == IXGBE_FAILED_READ_CFG_WORD) {
387 ixgbe_remove_adapter(hw);
388 return true;
389 }
390 return false;
391}
392
393u16 ixgbe_read_pci_cfg_word(struct ixgbe_hw *hw, u32 reg)
394{
395 struct ixgbe_adapter *adapter = hw->back;
396 u16 value;
397
398 if (ixgbe_removed(hw->hw_addr))
399 return IXGBE_FAILED_READ_CFG_WORD;
400 pci_read_config_word(adapter->pdev, reg, &value);
401 if (value == IXGBE_FAILED_READ_CFG_WORD &&
402 ixgbe_check_cfg_remove(hw, adapter->pdev))
403 return IXGBE_FAILED_READ_CFG_WORD;
404 return value;
405}
406
407#ifdef CONFIG_PCI_IOV
408static u32 ixgbe_read_pci_cfg_dword(struct ixgbe_hw *hw, u32 reg)
409{
410 struct ixgbe_adapter *adapter = hw->back;
411 u32 value;
412
413 if (ixgbe_removed(hw->hw_addr))
414 return IXGBE_FAILED_READ_CFG_DWORD;
415 pci_read_config_dword(adapter->pdev, reg, &value);
416 if (value == IXGBE_FAILED_READ_CFG_DWORD &&
417 ixgbe_check_cfg_remove(hw, adapter->pdev))
418 return IXGBE_FAILED_READ_CFG_DWORD;
419 return value;
420}
421#endif /* CONFIG_PCI_IOV */
422
Jacob Kellered192312014-02-22 01:23:53 +0000423void ixgbe_write_pci_cfg_word(struct ixgbe_hw *hw, u32 reg, u16 value)
424{
425 struct ixgbe_adapter *adapter = hw->back;
426
427 if (ixgbe_removed(hw->hw_addr))
428 return;
429 pci_write_config_word(adapter->pdev, reg, value);
430}
431
Alexander Duyck70864002011-04-27 09:13:56 +0000432static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
433{
434 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
435
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000436 /* flush memory to make sure state is correct before next watchdog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100437 smp_mb__before_atomic();
Alexander Duyck70864002011-04-27 09:13:56 +0000438 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
439}
440
Taku Izumidcd79ae2010-04-27 14:39:53 +0000441struct ixgbe_reg_info {
442 u32 ofs;
443 char *name;
444};
445
446static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
447
448 /* General Registers */
449 {IXGBE_CTRL, "CTRL"},
450 {IXGBE_STATUS, "STATUS"},
451 {IXGBE_CTRL_EXT, "CTRL_EXT"},
452
453 /* Interrupt Registers */
454 {IXGBE_EICR, "EICR"},
455
456 /* RX Registers */
457 {IXGBE_SRRCTL(0), "SRRCTL"},
458 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
459 {IXGBE_RDLEN(0), "RDLEN"},
460 {IXGBE_RDH(0), "RDH"},
461 {IXGBE_RDT(0), "RDT"},
462 {IXGBE_RXDCTL(0), "RXDCTL"},
463 {IXGBE_RDBAL(0), "RDBAL"},
464 {IXGBE_RDBAH(0), "RDBAH"},
465
466 /* TX Registers */
467 {IXGBE_TDBAL(0), "TDBAL"},
468 {IXGBE_TDBAH(0), "TDBAH"},
469 {IXGBE_TDLEN(0), "TDLEN"},
470 {IXGBE_TDH(0), "TDH"},
471 {IXGBE_TDT(0), "TDT"},
472 {IXGBE_TXDCTL(0), "TXDCTL"},
473
474 /* List Terminator */
Mark Rustadca8dfe22014-07-24 06:19:24 +0000475 { .name = NULL }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000476};
477
478
479/*
480 * ixgbe_regdump - register printout routine
481 */
482static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
483{
484 int i = 0, j = 0;
485 char rname[16];
486 u32 regs[64];
487
488 switch (reginfo->ofs) {
489 case IXGBE_SRRCTL(0):
490 for (i = 0; i < 64; i++)
491 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
492 break;
493 case IXGBE_DCA_RXCTRL(0):
494 for (i = 0; i < 64; i++)
495 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
496 break;
497 case IXGBE_RDLEN(0):
498 for (i = 0; i < 64; i++)
499 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
500 break;
501 case IXGBE_RDH(0):
502 for (i = 0; i < 64; i++)
503 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
504 break;
505 case IXGBE_RDT(0):
506 for (i = 0; i < 64; i++)
507 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
508 break;
509 case IXGBE_RXDCTL(0):
510 for (i = 0; i < 64; i++)
511 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
512 break;
513 case IXGBE_RDBAL(0):
514 for (i = 0; i < 64; i++)
515 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
516 break;
517 case IXGBE_RDBAH(0):
518 for (i = 0; i < 64; i++)
519 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
520 break;
521 case IXGBE_TDBAL(0):
522 for (i = 0; i < 64; i++)
523 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
524 break;
525 case IXGBE_TDBAH(0):
526 for (i = 0; i < 64; i++)
527 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
528 break;
529 case IXGBE_TDLEN(0):
530 for (i = 0; i < 64; i++)
531 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
532 break;
533 case IXGBE_TDH(0):
534 for (i = 0; i < 64; i++)
535 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
536 break;
537 case IXGBE_TDT(0):
538 for (i = 0; i < 64; i++)
539 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
540 break;
541 case IXGBE_TXDCTL(0):
542 for (i = 0; i < 64; i++)
543 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
544 break;
545 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000546 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000547 IXGBE_READ_REG(hw, reginfo->ofs));
548 return;
549 }
550
551 for (i = 0; i < 8; i++) {
552 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000553 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000554 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000555 pr_cont(" %08x", regs[i*8+j]);
556 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000557 }
558
559}
560
561/*
562 * ixgbe_dump - Print registers, tx-rings and rx-rings
563 */
564static void ixgbe_dump(struct ixgbe_adapter *adapter)
565{
566 struct net_device *netdev = adapter->netdev;
567 struct ixgbe_hw *hw = &adapter->hw;
568 struct ixgbe_reg_info *reginfo;
569 int n = 0;
570 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000571 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000572 union ixgbe_adv_tx_desc *tx_desc;
573 struct my_u0 { u64 a; u64 b; } *u0;
574 struct ixgbe_ring *rx_ring;
575 union ixgbe_adv_rx_desc *rx_desc;
576 struct ixgbe_rx_buffer *rx_buffer_info;
577 u32 staterr;
578 int i = 0;
579
580 if (!netif_msg_hw(adapter))
581 return;
582
583 /* Print netdevice Info */
584 if (netdev) {
585 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000586 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000587 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000588 pr_info("%-15s %016lX %016lX %016lX\n",
589 netdev->name,
590 netdev->state,
591 netdev->trans_start,
592 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000593 }
594
595 /* Print Registers */
596 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000597 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000598 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
599 reginfo->name; reginfo++) {
600 ixgbe_regdump(hw, reginfo);
601 }
602
603 /* Print TX Ring Summary */
604 if (!netdev || !netif_running(netdev))
Mark Rustade90dd262014-07-22 06:51:08 +0000605 return;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000606
607 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000608 pr_info(" %s %s %s %s\n",
609 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
610 "leng", "ntw", "timestamp");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000611 for (n = 0; n < adapter->num_tx_queues; n++) {
612 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000613 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Josh Hay8ad88e32012-09-26 05:59:41 +0000614 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000615 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000616 (u64)dma_unmap_addr(tx_buffer, dma),
617 dma_unmap_len(tx_buffer, len),
618 tx_buffer->next_to_watch,
619 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000620 }
621
622 /* Print TX Rings */
623 if (!netif_msg_tx_done(adapter))
624 goto rx_ring_summary;
625
626 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
627
628 /* Transmit Descriptor Formats
629 *
Josh Hay39ac8682012-09-26 05:59:36 +0000630 * 82598 Advanced Transmit Descriptor
Taku Izumidcd79ae2010-04-27 14:39:53 +0000631 * +--------------------------------------------------------------+
632 * 0 | Buffer Address [63:0] |
633 * +--------------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000634 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000635 * +--------------------------------------------------------------+
636 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000637 *
638 * 82598 Advanced Transmit Descriptor (Write-Back Format)
639 * +--------------------------------------------------------------+
640 * 0 | RSV [63:0] |
641 * +--------------------------------------------------------------+
642 * 8 | RSV | STA | NXTSEQ |
643 * +--------------------------------------------------------------+
644 * 63 36 35 32 31 0
645 *
646 * 82599+ Advanced Transmit Descriptor
647 * +--------------------------------------------------------------+
648 * 0 | Buffer Address [63:0] |
649 * +--------------------------------------------------------------+
650 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
651 * +--------------------------------------------------------------+
652 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
653 *
654 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
655 * +--------------------------------------------------------------+
656 * 0 | RSV [63:0] |
657 * +--------------------------------------------------------------+
658 * 8 | RSV | STA | RSV |
659 * +--------------------------------------------------------------+
660 * 63 36 35 32 31 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000661 */
662
663 for (n = 0; n < adapter->num_tx_queues; n++) {
664 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000665 pr_info("------------------------------------\n");
666 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
667 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000668 pr_info("%s%s %s %s %s %s\n",
669 "T [desc] [address 63:0 ] ",
670 "[PlPOIdStDDt Ln] [bi->dma ] ",
671 "leng", "ntw", "timestamp", "bi->skb");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000672
673 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000674 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000675 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000676 u0 = (struct my_u0 *)tx_desc;
Josh Hay8ad88e32012-09-26 05:59:41 +0000677 if (dma_unmap_len(tx_buffer, len) > 0) {
678 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p",
679 i,
680 le64_to_cpu(u0->a),
681 le64_to_cpu(u0->b),
682 (u64)dma_unmap_addr(tx_buffer, dma),
Alexander Duyck729739b2012-02-08 07:51:06 +0000683 dma_unmap_len(tx_buffer, len),
Josh Hay8ad88e32012-09-26 05:59:41 +0000684 tx_buffer->next_to_watch,
685 (u64)tx_buffer->time_stamp,
686 tx_buffer->skb);
687 if (i == tx_ring->next_to_use &&
688 i == tx_ring->next_to_clean)
689 pr_cont(" NTC/U\n");
690 else if (i == tx_ring->next_to_use)
691 pr_cont(" NTU\n");
692 else if (i == tx_ring->next_to_clean)
693 pr_cont(" NTC\n");
694 else
695 pr_cont("\n");
696
697 if (netif_msg_pktdata(adapter) &&
698 tx_buffer->skb)
699 print_hex_dump(KERN_INFO, "",
700 DUMP_PREFIX_ADDRESS, 16, 1,
701 tx_buffer->skb->data,
702 dma_unmap_len(tx_buffer, len),
703 true);
704 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000705 }
706 }
707
708 /* Print RX Rings Summary */
709rx_ring_summary:
710 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000711 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000712 for (n = 0; n < adapter->num_rx_queues; n++) {
713 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000714 pr_info("%5d %5X %5X\n",
715 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000716 }
717
718 /* Print RX Rings */
719 if (!netif_msg_rx_status(adapter))
Mark Rustade90dd262014-07-22 06:51:08 +0000720 return;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000721
722 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
723
Josh Hay39ac8682012-09-26 05:59:36 +0000724 /* Receive Descriptor Formats
725 *
726 * 82598 Advanced Receive Descriptor (Read) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000727 * 63 1 0
728 * +-----------------------------------------------------+
729 * 0 | Packet Buffer Address [63:1] |A0/NSE|
730 * +----------------------------------------------+------+
731 * 8 | Header Buffer Address [63:1] | DD |
732 * +-----------------------------------------------------+
733 *
734 *
Josh Hay39ac8682012-09-26 05:59:36 +0000735 * 82598 Advanced Receive Descriptor (Write-Back) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000736 *
737 * 63 48 47 32 31 30 21 20 16 15 4 3 0
738 * +------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000739 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
740 * | Packet | IP | | | | Type | Type |
741 * | Checksum | Ident | | | | | |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000742 * +------------------------------------------------------+
743 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
744 * +------------------------------------------------------+
745 * 63 48 47 32 31 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000746 *
747 * 82599+ Advanced Receive Descriptor (Read) Format
748 * 63 1 0
749 * +-----------------------------------------------------+
750 * 0 | Packet Buffer Address [63:1] |A0/NSE|
751 * +----------------------------------------------+------+
752 * 8 | Header Buffer Address [63:1] | DD |
753 * +-----------------------------------------------------+
754 *
755 *
756 * 82599+ Advanced Receive Descriptor (Write-Back) Format
757 *
758 * 63 48 47 32 31 30 21 20 17 16 4 3 0
759 * +------------------------------------------------------+
760 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
761 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
762 * |/ Flow Dir Flt ID | | | | | |
763 * +------------------------------------------------------+
764 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
765 * +------------------------------------------------------+
766 * 63 48 47 32 31 20 19 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000767 */
Josh Hay39ac8682012-09-26 05:59:36 +0000768
Taku Izumidcd79ae2010-04-27 14:39:53 +0000769 for (n = 0; n < adapter->num_rx_queues; n++) {
770 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000771 pr_info("------------------------------------\n");
772 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
773 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000774 pr_info("%s%s%s",
775 "R [desc] [ PktBuf A0] ",
776 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000777 "<-- Adv Rx Read format\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000778 pr_info("%s%s%s",
779 "RWB[desc] [PcsmIpSHl PtRs] ",
780 "[vl er S cks ln] ---------------- [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000781 "<-- Adv Rx Write-Back format\n");
782
783 for (i = 0; i < rx_ring->count; i++) {
784 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000785 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000786 u0 = (struct my_u0 *)rx_desc;
787 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
788 if (staterr & IXGBE_RXD_STAT_DD) {
789 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000790 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000791 "%016llX ---------------- %p", i,
792 le64_to_cpu(u0->a),
793 le64_to_cpu(u0->b),
794 rx_buffer_info->skb);
795 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000796 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000797 "%016llX %016llX %p", i,
798 le64_to_cpu(u0->a),
799 le64_to_cpu(u0->b),
800 (u64)rx_buffer_info->dma,
801 rx_buffer_info->skb);
802
Emil Tantilov9c50c032012-07-26 01:21:24 +0000803 if (netif_msg_pktdata(adapter) &&
804 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000805 print_hex_dump(KERN_INFO, "",
806 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000807 page_address(rx_buffer_info->page) +
808 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000809 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000810 }
811 }
812
813 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000814 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000815 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000816 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000817 else
Joe Perchesc7689572010-09-07 21:35:17 +0000818 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000819
820 }
821 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000822}
823
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800824static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
825{
826 u32 ctrl_ext;
827
828 /* Let firmware take over control of h/w */
829 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
830 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000831 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800832}
833
834static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
835{
836 u32 ctrl_ext;
837
838 /* Let firmware know the driver has taken over */
839 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
840 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000841 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800842}
Auke Kok9a799d72007-09-15 14:07:45 -0700843
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000844/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000845 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
846 * @adapter: pointer to adapter struct
847 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
848 * @queue: queue to map the corresponding interrupt to
849 * @msix_vector: the vector to map to the corresponding queue
850 *
851 */
852static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000853 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700854{
855 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000856 struct ixgbe_hw *hw = &adapter->hw;
857 switch (hw->mac.type) {
858 case ixgbe_mac_82598EB:
859 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
860 if (direction == -1)
861 direction = 0;
862 index = (((direction * 64) + queue) >> 2) & 0x1F;
863 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
864 ivar &= ~(0xFF << (8 * (queue & 0x3)));
865 ivar |= (msix_vector << (8 * (queue & 0x3)));
866 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
867 break;
868 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800869 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000870 case ixgbe_mac_X550:
871 case ixgbe_mac_X550EM_x:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000872 if (direction == -1) {
873 /* other causes */
874 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
875 index = ((queue & 1) * 8);
876 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
877 ivar &= ~(0xFF << index);
878 ivar |= (msix_vector << index);
879 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
880 break;
881 } else {
882 /* tx or rx causes */
883 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
884 index = ((16 * (queue & 1)) + (8 * direction));
885 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
886 ivar &= ~(0xFF << index);
887 ivar |= (msix_vector << index);
888 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
889 break;
890 }
891 default:
892 break;
893 }
Auke Kok9a799d72007-09-15 14:07:45 -0700894}
895
Alexander Duyckfe49f042009-06-04 16:00:09 +0000896static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000897 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000898{
899 u32 mask;
900
Alexander Duyckbd508172010-11-16 19:27:03 -0800901 switch (adapter->hw.mac.type) {
902 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000903 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
904 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800905 break;
906 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800907 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000908 case ixgbe_mac_X550:
909 case ixgbe_mac_X550EM_x:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000910 mask = (qmask & 0xFFFFFFFF);
911 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
912 mask = (qmask >> 32);
913 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800914 break;
915 default:
916 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000917 }
918}
919
Alexander Duyck729739b2012-02-08 07:51:06 +0000920void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
921 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000922{
Alexander Duyck729739b2012-02-08 07:51:06 +0000923 if (tx_buffer->skb) {
924 dev_kfree_skb_any(tx_buffer->skb);
925 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000926 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000927 dma_unmap_addr(tx_buffer, dma),
928 dma_unmap_len(tx_buffer, len),
929 DMA_TO_DEVICE);
930 } else if (dma_unmap_len(tx_buffer, len)) {
931 dma_unmap_page(ring->dev,
932 dma_unmap_addr(tx_buffer, dma),
933 dma_unmap_len(tx_buffer, len),
934 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000935 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000936 tx_buffer->next_to_watch = NULL;
937 tx_buffer->skb = NULL;
938 dma_unmap_len_set(tx_buffer, len, 0);
939 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700940}
941
Alexander Duyck943561d2012-05-09 22:14:44 -0700942static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
943{
944 struct ixgbe_hw *hw = &adapter->hw;
945 struct ixgbe_hw_stats *hwstats = &adapter->stats;
946 int i;
947 u32 data;
948
949 if ((hw->fc.current_mode != ixgbe_fc_full) &&
950 (hw->fc.current_mode != ixgbe_fc_rx_pause))
951 return;
952
953 switch (hw->mac.type) {
954 case ixgbe_mac_82598EB:
955 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
956 break;
957 default:
958 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
959 }
960 hwstats->lxoffrxc += data;
961
962 /* refill credits (no tx hang) if we received xoff */
963 if (!data)
964 return;
965
966 for (i = 0; i < adapter->num_tx_queues; i++)
967 clear_bit(__IXGBE_HANG_CHECK_ARMED,
968 &adapter->tx_ring[i]->state);
969}
970
John Fastabendc84d3242010-11-16 19:27:12 -0800971static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700972{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700973 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800974 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800975 u32 xoff[8] = {0};
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000976 u8 tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800977 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700978 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700979
Alexander Duyck943561d2012-05-09 22:14:44 -0700980 if (adapter->ixgbe_ieee_pfc)
981 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800982
Alexander Duyck943561d2012-05-09 22:14:44 -0700983 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
984 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800985 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700986 }
John Fastabendc84d3242010-11-16 19:27:12 -0800987
988 /* update stats for each tc, only valid with PFC enabled */
989 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000990 u32 pxoffrxc;
991
John Fastabendc84d3242010-11-16 19:27:12 -0800992 switch (hw->mac.type) {
993 case ixgbe_mac_82598EB:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000994 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800995 break;
996 default:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000997 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800998 }
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000999 hwstats->pxoffrxc[i] += pxoffrxc;
1000 /* Get the TC for given UP */
1001 tc = netdev_get_prio_tc_map(adapter->netdev, i);
1002 xoff[tc] += pxoffrxc;
Auke Kok9a799d72007-09-15 14:07:45 -07001003 }
1004
John Fastabendc84d3242010-11-16 19:27:12 -08001005 /* disarm tx queues that have received xoff frames */
1006 for (i = 0; i < adapter->num_tx_queues; i++) {
1007 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendc84d3242010-11-16 19:27:12 -08001008
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001009 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -08001010 if (xoff[tc])
1011 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
1012 }
1013}
1014
1015static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
1016{
Alexander Duyck7d7ce682012-02-08 07:50:51 +00001017 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -08001018}
1019
1020static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
1021{
John Fastabend2a47fa42013-11-06 09:54:52 -08001022 struct ixgbe_adapter *adapter;
1023 struct ixgbe_hw *hw;
1024 u32 head, tail;
John Fastabendc84d3242010-11-16 19:27:12 -08001025
John Fastabend2a47fa42013-11-06 09:54:52 -08001026 if (ring->l2_accel_priv)
1027 adapter = ring->l2_accel_priv->real_adapter;
1028 else
1029 adapter = netdev_priv(ring->netdev);
1030
1031 hw = &adapter->hw;
1032 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
1033 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
John Fastabendc84d3242010-11-16 19:27:12 -08001034
1035 if (head != tail)
1036 return (head < tail) ?
1037 tail - head : (tail + ring->count - head);
1038
1039 return 0;
1040}
1041
1042static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
1043{
1044 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
1045 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
1046 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
John Fastabendc84d3242010-11-16 19:27:12 -08001047
1048 clear_check_for_tx_hang(tx_ring);
1049
1050 /*
1051 * Check for a hung queue, but be thorough. This verifies
1052 * that a transmit has been completed since the previous
1053 * check AND there is at least one packet pending. The
1054 * ARMED bit is set to indicate a potential hang. The
1055 * bit is cleared if a pause frame is received to remove
1056 * false hang detection due to PFC or 802.3x frames. By
1057 * requiring this to fail twice we avoid races with
1058 * pfc clearing the ARMED bit and conditions where we
1059 * run the check_tx_hang logic with a transmit completion
1060 * pending but without time to complete it yet.
1061 */
Mark Rustade90dd262014-07-22 06:51:08 +00001062 if (tx_done_old == tx_done && tx_pending)
John Fastabendc84d3242010-11-16 19:27:12 -08001063 /* make sure it is true for two checks in a row */
Mark Rustade90dd262014-07-22 06:51:08 +00001064 return test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
1065 &tx_ring->state);
1066 /* update completed stats and continue */
1067 tx_ring->tx_stats.tx_done_old = tx_done;
1068 /* reset the countdown */
1069 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
John Fastabendc84d3242010-11-16 19:27:12 -08001070
Mark Rustade90dd262014-07-22 06:51:08 +00001071 return false;
Auke Kok9a799d72007-09-15 14:07:45 -07001072}
1073
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001074/**
1075 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
1076 * @adapter: driver private struct
1077 **/
1078static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
1079{
1080
1081 /* Do the reset outside of interrupt context */
1082 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1083 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Jacob Keller12ff3f32012-12-01 07:57:17 +00001084 e_warn(drv, "initiating reset due to tx timeout\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001085 ixgbe_service_event_schedule(adapter);
1086 }
1087}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001088
Auke Kok9a799d72007-09-15 14:07:45 -07001089/**
1090 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +00001091 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001092 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -07001093 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +00001094static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Jesper Dangaard Brouera3a87492016-02-08 13:15:09 +01001095 struct ixgbe_ring *tx_ring, int napi_budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001096{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001097 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001098 struct ixgbe_tx_buffer *tx_buffer;
1099 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001100 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +00001101 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +00001102 unsigned int i = tx_ring->next_to_clean;
1103
1104 if (test_bit(__IXGBE_DOWN, &adapter->state))
1105 return true;
Auke Kok9a799d72007-09-15 14:07:45 -07001106
Alexander Duyckd3d00232011-07-15 02:31:25 +00001107 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +00001108 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +00001109 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001110
Alexander Duyck729739b2012-02-08 07:51:06 +00001111 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001112 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -07001113
Alexander Duyckd3d00232011-07-15 02:31:25 +00001114 /* if next_to_watch is not set then there is no work pending */
1115 if (!eop_desc)
1116 break;
1117
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001118 /* prevent any other reads prior to eop_desc */
Alexander Duyck7e63bf42013-01-08 07:00:58 +00001119 read_barrier_depends();
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001120
Alexander Duyckd3d00232011-07-15 02:31:25 +00001121 /* if DD is not set pending work has not been completed */
1122 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
1123 break;
1124
Alexander Duyckd3d00232011-07-15 02:31:25 +00001125 /* clear next_to_watch to prevent false hangs */
1126 tx_buffer->next_to_watch = NULL;
1127
Alexander Duyck091a6242012-02-08 07:51:01 +00001128 /* update the statistics for this packet */
1129 total_bytes += tx_buffer->bytecount;
1130 total_packets += tx_buffer->gso_segs;
1131
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001132 /* free the skb */
Jesper Dangaard Brouera3a87492016-02-08 13:15:09 +01001133 napi_consume_skb(tx_buffer->skb, napi_budget);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001134
Alexander Duyck729739b2012-02-08 07:51:06 +00001135 /* unmap skb header data */
1136 dma_unmap_single(tx_ring->dev,
1137 dma_unmap_addr(tx_buffer, dma),
1138 dma_unmap_len(tx_buffer, len),
1139 DMA_TO_DEVICE);
1140
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001141 /* clear tx_buffer data */
1142 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +00001143 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001144
Alexander Duyck729739b2012-02-08 07:51:06 +00001145 /* unmap remaining buffers */
1146 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001147 tx_buffer++;
1148 tx_desc++;
1149 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00001150 if (unlikely(!i)) {
1151 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001152 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +00001153 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00001154 }
1155
Alexander Duyck729739b2012-02-08 07:51:06 +00001156 /* unmap any remaining paged data */
1157 if (dma_unmap_len(tx_buffer, len)) {
1158 dma_unmap_page(tx_ring->dev,
1159 dma_unmap_addr(tx_buffer, dma),
1160 dma_unmap_len(tx_buffer, len),
1161 DMA_TO_DEVICE);
1162 dma_unmap_len_set(tx_buffer, len, 0);
1163 }
1164 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001165
Alexander Duyck729739b2012-02-08 07:51:06 +00001166 /* move us one more past the eop_desc for start of next pkt */
1167 tx_buffer++;
1168 tx_desc++;
1169 i++;
1170 if (unlikely(!i)) {
1171 i -= tx_ring->count;
1172 tx_buffer = tx_ring->tx_buffer_info;
1173 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
1174 }
1175
1176 /* issue prefetch for next Tx descriptor */
1177 prefetch(tx_desc);
1178
1179 /* update budget accounting */
1180 budget--;
1181 } while (likely(budget));
1182
1183 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07001184 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001185 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -08001186 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +00001187 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001188 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001189 q_vector->tx.total_bytes += total_bytes;
1190 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -08001191
John Fastabendc84d3242010-11-16 19:27:12 -08001192 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -08001193 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -08001194 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -08001195 e_err(drv, "Detected Tx Unit Hang\n"
1196 " Tx Queue <%d>\n"
1197 " TDH, TDT <%x>, <%x>\n"
1198 " next_to_use <%x>\n"
1199 " next_to_clean <%x>\n"
1200 "tx_buffer_info[next_to_clean]\n"
1201 " time_stamp <%lx>\n"
1202 " jiffies <%lx>\n",
1203 tx_ring->queue_index,
1204 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
1205 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +00001206 tx_ring->next_to_use, i,
1207 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -08001208
1209 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1210
1211 e_info(probe,
1212 "tx hang %d detected on queue %d, resetting adapter\n",
1213 adapter->tx_timeout_count + 1, tx_ring->queue_index);
1214
1215 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001216 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -08001217
1218 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +00001219 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -08001220 }
Auke Kok9a799d72007-09-15 14:07:45 -07001221
Alexander Duyckb2d96e02012-02-07 08:14:33 +00001222 netdev_tx_completed_queue(txring_txq(tx_ring),
1223 total_packets, total_bytes);
1224
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001225#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +00001226 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001227 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001228 /* Make sure that anybody stopping the queue after this
1229 * sees the new next_to_clean.
1230 */
1231 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +00001232 if (__netif_subqueue_stopped(tx_ring->netdev,
1233 tx_ring->queue_index)
1234 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
1235 netif_wake_subqueue(tx_ring->netdev,
1236 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08001237 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08001238 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001239 }
Auke Kok9a799d72007-09-15 14:07:45 -07001240
Alexander Duyck59224552011-08-31 00:01:06 +00001241 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001242}
1243
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001244#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001245static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001246 struct ixgbe_ring *tx_ring,
1247 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001248{
Don Skidmoreee5f7842009-11-06 12:56:20 +00001249 struct ixgbe_hw *hw = &adapter->hw;
Mark Rustad9de76052015-08-08 16:27:41 -07001250 u32 txctrl = 0;
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001251 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001252
Mark Rustad9de76052015-08-08 16:27:41 -07001253 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1254 txctrl = dca3_get_tag(tx_ring->dev, cpu);
1255
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001256 switch (hw->mac.type) {
1257 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001258 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001259 break;
1260 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001261 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001262 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
1263 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
1264 break;
1265 default:
1266 /* for unknown hardware do not write register */
1267 return;
1268 }
1269
1270 /*
1271 * We can enable relaxed ordering for reads, but not writes when
1272 * DCA is enabled. This is due to a known issue in some chipsets
1273 * which will cause the DCA tag to be cleared.
1274 */
1275 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1276 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
1277 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
1278
1279 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
1280}
1281
1282static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
1283 struct ixgbe_ring *rx_ring,
1284 int cpu)
1285{
1286 struct ixgbe_hw *hw = &adapter->hw;
Mark Rustad9de76052015-08-08 16:27:41 -07001287 u32 rxctrl = 0;
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001288 u8 reg_idx = rx_ring->reg_idx;
1289
Mark Rustad9de76052015-08-08 16:27:41 -07001290 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1291 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001292
1293 switch (hw->mac.type) {
1294 case ixgbe_mac_82599EB:
1295 case ixgbe_mac_X540:
1296 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001297 break;
1298 default:
1299 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001300 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001301
1302 /*
1303 * We can enable relaxed ordering for reads, but not writes when
1304 * DCA is enabled. This is due to a known issue in some chipsets
1305 * which will cause the DCA tag to be cleared.
1306 */
1307 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
Mark Rustad9de76052015-08-08 16:27:41 -07001308 IXGBE_DCA_RXCTRL_DATA_DCA_EN |
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001309 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
1310
1311 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001312}
1313
1314static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
1315{
1316 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001317 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001318 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001319
1320 if (q_vector->cpu == cpu)
1321 goto out_no_update;
1322
Alexander Duycka5579282012-02-08 07:50:04 +00001323 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001324 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001325
Alexander Duycka5579282012-02-08 07:50:04 +00001326 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001327 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001328
1329 q_vector->cpu = cpu;
1330out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001331 put_cpu();
1332}
1333
1334static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1335{
1336 int i;
1337
Alexander Duycke35ec122009-05-21 13:07:12 +00001338 /* always use CB2 mode, difference is masked in the CB driver */
Mark Rustad9de76052015-08-08 16:27:41 -07001339 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1340 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1341 IXGBE_DCA_CTRL_DCA_MODE_CB2);
1342 else
1343 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1344 IXGBE_DCA_CTRL_DCA_DISABLE);
Alexander Duycke35ec122009-05-21 13:07:12 +00001345
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001346 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001347 adapter->q_vector[i]->cpu = -1;
1348 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001349 }
1350}
1351
1352static int __ixgbe_notify_dca(struct device *dev, void *data)
1353{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001354 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001355 unsigned long event = *(unsigned long *)data;
1356
Don Skidmore2a72c312011-07-20 02:27:05 +00001357 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001358 return 0;
1359
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001360 switch (event) {
1361 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001362 /* if we're already enabled, don't do it again */
1363 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1364 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001365 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001366 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Mark Rustad9de76052015-08-08 16:27:41 -07001367 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1368 IXGBE_DCA_CTRL_DCA_MODE_CB2);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001369 break;
1370 }
1371 /* Fall Through since DCA is disabled. */
1372 case DCA_PROVIDER_REMOVE:
1373 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1374 dca_remove_requester(dev);
1375 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
Mark Rustad9de76052015-08-08 16:27:41 -07001376 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1377 IXGBE_DCA_CTRL_DCA_DISABLE);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001378 }
1379 break;
1380 }
1381
Denis V. Lunev652f0932008-03-27 14:39:17 +03001382 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001383}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001384
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001385#endif /* CONFIG_IXGBE_DCA */
Fan Du7edda4b82015-04-29 10:57:39 +08001386
1387#define IXGBE_RSS_L4_TYPES_MASK \
1388 ((1ul << IXGBE_RXDADV_RSSTYPE_IPV4_TCP) | \
1389 (1ul << IXGBE_RXDADV_RSSTYPE_IPV4_UDP) | \
1390 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_TCP) | \
1391 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_UDP))
1392
Alexander Duyck8a0da212012-01-31 02:59:49 +00001393static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1394 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001395 struct sk_buff *skb)
1396{
Fan Du7edda4b82015-04-29 10:57:39 +08001397 u16 rss_type;
1398
1399 if (!(ring->netdev->features & NETIF_F_RXHASH))
1400 return;
1401
1402 rss_type = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.pkt_info) &
1403 IXGBE_RXDADV_RSSTYPE_MASK;
1404
1405 if (!rss_type)
1406 return;
1407
1408 skb_set_hash(skb, le32_to_cpu(rx_desc->wb.lower.hi_dword.rss),
1409 (IXGBE_RSS_L4_TYPES_MASK & (1ul << rss_type)) ?
1410 PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001411}
1412
Alexander Duyckf8003262012-03-03 02:35:52 +00001413#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001414/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001415 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001416 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001417 * @rx_desc: advanced rx descriptor
1418 *
1419 * Returns : true if it is FCoE pkt
1420 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001421static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001422 union ixgbe_adv_rx_desc *rx_desc)
1423{
1424 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1425
Alexander Duyck57efd442012-06-25 21:54:46 +00001426 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001427 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1428 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1429 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1430}
1431
Alexander Duyckf8003262012-03-03 02:35:52 +00001432#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001433/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001434 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001435 * @ring: structure containing ring specific data
1436 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001437 * @skb: skb currently being received and modified
1438 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001439static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001440 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001441 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001442{
Don Skidmore3f207802014-12-23 07:40:34 +00001443 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1444 __le16 hdr_info = rx_desc->wb.lower.lo_dword.hs_rss.hdr_info;
1445 bool encap_pkt = false;
1446
Alexander Duyck8a0da212012-01-31 02:59:49 +00001447 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001448
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001449 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001450 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001451 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001452
Don Skidmore3f207802014-12-23 07:40:34 +00001453 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_VXLAN)) &&
1454 (hdr_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_TUNNEL >> 16))) {
1455 encap_pkt = true;
1456 skb->encapsulation = 1;
Don Skidmore3f207802014-12-23 07:40:34 +00001457 }
1458
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001459 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001460 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1461 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001462 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001463 return;
1464 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001465
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001466 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001467 return;
1468
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001469 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001470 /*
1471 * 82599 errata, UDP frames with a 0 checksum can be marked as
1472 * checksum errors.
1473 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001474 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1475 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001476 return;
1477
Alexander Duyck8a0da212012-01-31 02:59:49 +00001478 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001479 return;
1480 }
1481
Auke Kok9a799d72007-09-15 14:07:45 -07001482 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001483 skb->ip_summed = CHECKSUM_UNNECESSARY;
Don Skidmore3f207802014-12-23 07:40:34 +00001484 if (encap_pkt) {
1485 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_OUTERIPCS))
1486 return;
1487
1488 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_OUTERIPER)) {
Mark Rustadd4692512015-12-04 11:26:43 -08001489 skb->ip_summed = CHECKSUM_NONE;
Don Skidmore3f207802014-12-23 07:40:34 +00001490 return;
1491 }
1492 /* If we checked the outer header let the stack know */
1493 skb->csum_level = 1;
1494 }
Auke Kok9a799d72007-09-15 14:07:45 -07001495}
1496
Alexander Duyckf990b792012-01-31 02:59:34 +00001497static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1498 struct ixgbe_rx_buffer *bi)
1499{
1500 struct page *page = bi->page;
Alexander Duyck18cb6522014-11-14 00:56:29 +00001501 dma_addr_t dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001502
Alexander Duyckf8003262012-03-03 02:35:52 +00001503 /* since we are recycling buffers we should seldom need to alloc */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001504 if (likely(page))
Alexander Duyckf990b792012-01-31 02:59:34 +00001505 return true;
1506
Alexander Duyckf8003262012-03-03 02:35:52 +00001507 /* alloc new page for storage */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001508 page = dev_alloc_pages(ixgbe_rx_pg_order(rx_ring));
1509 if (unlikely(!page)) {
1510 rx_ring->rx_stats.alloc_rx_page_failed++;
1511 return false;
Alexander Duyckf990b792012-01-31 02:59:34 +00001512 }
1513
Alexander Duyckf8003262012-03-03 02:35:52 +00001514 /* map page for use */
1515 dma = dma_map_page(rx_ring->dev, page, 0,
1516 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001517
Alexander Duyckf8003262012-03-03 02:35:52 +00001518 /*
1519 * if mapping failed free memory back to system since
1520 * there isn't much point in holding memory we can't use
1521 */
1522 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001523 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001524
Alexander Duyckf990b792012-01-31 02:59:34 +00001525 rx_ring->rx_stats.alloc_rx_page_failed++;
1526 return false;
1527 }
1528
Alexander Duyckf8003262012-03-03 02:35:52 +00001529 bi->dma = dma;
Alexander Duyck18cb6522014-11-14 00:56:29 +00001530 bi->page = page;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001531 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001532
Alexander Duyckf990b792012-01-31 02:59:34 +00001533 return true;
1534}
1535
Auke Kok9a799d72007-09-15 14:07:45 -07001536/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001537 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001538 * @rx_ring: ring to place buffers on
1539 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001540 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001541void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001542{
Auke Kok9a799d72007-09-15 14:07:45 -07001543 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001544 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001545 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001546
Alexander Duyckf8003262012-03-03 02:35:52 +00001547 /* nothing to do */
1548 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001549 return;
1550
Alexander Duycke4f74022012-01-31 02:59:44 +00001551 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001552 bi = &rx_ring->rx_buffer_info[i];
1553 i -= rx_ring->count;
1554
Alexander Duyckf8003262012-03-03 02:35:52 +00001555 do {
1556 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001557 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001558
Alexander Duyckf8003262012-03-03 02:35:52 +00001559 /*
1560 * Refresh the desc even if buffer_addrs didn't change
1561 * because each write-back erases this info.
1562 */
1563 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001564
Alexander Duyckf990b792012-01-31 02:59:34 +00001565 rx_desc++;
1566 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001567 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001568 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001569 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001570 bi = rx_ring->rx_buffer_info;
1571 i -= rx_ring->count;
1572 }
1573
Alexander Duyck18cb6522014-11-14 00:56:29 +00001574 /* clear the status bits for the next_to_use descriptor */
1575 rx_desc->wb.upper.status_error = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001576
1577 cleaned_count--;
1578 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001579
Alexander Duyckf990b792012-01-31 02:59:34 +00001580 i += rx_ring->count;
1581
Alexander Duyckad435ec2014-11-14 00:56:35 +00001582 if (rx_ring->next_to_use != i) {
1583 rx_ring->next_to_use = i;
1584
1585 /* update next to alloc since we have filled the ring */
1586 rx_ring->next_to_alloc = i;
1587
1588 /* Force memory writes to complete before letting h/w
1589 * know there are new descriptors to fetch. (Only
1590 * applicable for weak-ordered memory model archs,
1591 * such as IA-64).
1592 */
1593 wmb();
1594 writel(i, rx_ring->tail);
1595 }
Auke Kok9a799d72007-09-15 14:07:45 -07001596}
1597
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001598static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1599 struct sk_buff *skb)
1600{
Alexander Duyckf8003262012-03-03 02:35:52 +00001601 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001602
1603 /* set gso_size to avoid messing up TCP MSS */
1604 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1605 IXGBE_CB(skb)->append_cnt);
Alexander Duyck96be80a2013-02-12 09:45:44 +00001606 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001607}
1608
1609static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1610 struct sk_buff *skb)
1611{
1612 /* if append_cnt is 0 then frame is not RSC */
1613 if (!IXGBE_CB(skb)->append_cnt)
1614 return;
1615
1616 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1617 rx_ring->rx_stats.rsc_flush++;
1618
1619 ixgbe_set_rsc_gso_size(rx_ring, skb);
1620
1621 /* gso_size is computed using append_cnt so always clear it last */
1622 IXGBE_CB(skb)->append_cnt = 0;
1623}
1624
Alexander Duyck8a0da212012-01-31 02:59:49 +00001625/**
1626 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1627 * @rx_ring: rx descriptor ring packet is being transacted on
1628 * @rx_desc: pointer to the EOP Rx descriptor
1629 * @skb: pointer to current skb being populated
1630 *
1631 * This function checks the ring, descriptor, and packet information in
1632 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1633 * other fields within the skb.
1634 **/
1635static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1636 union ixgbe_adv_rx_desc *rx_desc,
1637 struct sk_buff *skb)
1638{
John Fastabend43e95f12012-05-15 06:12:17 +00001639 struct net_device *dev = rx_ring->netdev;
Mark Rustada9763f32015-10-27 09:58:07 -07001640 u32 flags = rx_ring->q_vector->adapter->flags;
John Fastabend43e95f12012-05-15 06:12:17 +00001641
Alexander Duyck8a0da212012-01-31 02:59:49 +00001642 ixgbe_update_rsc_stats(rx_ring, skb);
1643
1644 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1645
1646 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1647
Mark Rustada9763f32015-10-27 09:58:07 -07001648 if (unlikely(flags & IXGBE_FLAG_RX_HWTSTAMP_ENABLED))
1649 ixgbe_ptp_rx_hwtstamp(rx_ring, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001650
Patrick McHardyf6469682013-04-19 02:04:27 +00001651 if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
John Fastabend43e95f12012-05-15 06:12:17 +00001652 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001653 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001654 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001655 }
1656
1657 skb_record_rx_queue(skb, rx_ring->queue_index);
1658
John Fastabend43e95f12012-05-15 06:12:17 +00001659 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001660}
1661
1662static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1663 struct sk_buff *skb)
1664{
Eric Dumazet93f93a42015-11-18 06:30:59 -08001665 skb_mark_napi_id(skb, &q_vector->napi);
Jacob Kellerb4640032013-10-01 04:33:54 -07001666 if (ixgbe_qv_busy_polling(q_vector))
Eliezer Tamir5a85e732013-06-10 11:40:20 +03001667 netif_receive_skb(skb);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001668 else
Alexander Duyck856f6062015-02-25 17:45:54 +00001669 napi_gro_receive(&q_vector->napi, skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001670}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001671
Alexander Duyckf8003262012-03-03 02:35:52 +00001672/**
1673 * ixgbe_is_non_eop - process handling of non-EOP buffers
1674 * @rx_ring: Rx ring being processed
1675 * @rx_desc: Rx descriptor for current buffer
1676 * @skb: Current socket buffer containing buffer in progress
1677 *
1678 * This function updates next to clean. If the buffer is an EOP buffer
1679 * this function exits returning false, otherwise it will place the
1680 * sk_buff in the next buffer to be chained and return true indicating
1681 * that this is in fact a non-EOP buffer.
1682 **/
1683static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1684 union ixgbe_adv_rx_desc *rx_desc,
1685 struct sk_buff *skb)
1686{
1687 u32 ntc = rx_ring->next_to_clean + 1;
1688
1689 /* fetch, update, and store next to clean */
1690 ntc = (ntc < rx_ring->count) ? ntc : 0;
1691 rx_ring->next_to_clean = ntc;
1692
1693 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1694
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001695 /* update RSC append count if present */
1696 if (ring_is_rsc_enabled(rx_ring)) {
1697 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1698 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1699
1700 if (unlikely(rsc_enabled)) {
1701 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1702
1703 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1704 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1705
1706 /* update ntc based on RSC value */
1707 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1708 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1709 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1710 }
1711 }
1712
1713 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001714 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1715 return false;
1716
Alexander Duyckf8003262012-03-03 02:35:52 +00001717 /* place skb in next buffer to be received */
1718 rx_ring->rx_buffer_info[ntc].skb = skb;
1719 rx_ring->rx_stats.non_eop_descs++;
1720
1721 return true;
1722}
1723
1724/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001725 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1726 * @rx_ring: rx descriptor ring packet is being transacted on
1727 * @skb: pointer to current skb being adjusted
1728 *
1729 * This function is an ixgbe specific version of __pskb_pull_tail. The
1730 * main difference between this version and the original function is that
1731 * this function can make several assumptions about the state of things
1732 * that allow for significant optimizations versus the standard function.
1733 * As a result we can do things like drop a frag and maintain an accurate
1734 * truesize for the skb.
1735 */
1736static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1737 struct sk_buff *skb)
1738{
1739 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1740 unsigned char *va;
1741 unsigned int pull_len;
1742
1743 /*
1744 * it is valid to use page_address instead of kmap since we are
1745 * working with pages allocated out of the lomem pool per
1746 * alloc_page(GFP_ATOMIC)
1747 */
1748 va = skb_frag_address(frag);
1749
1750 /*
1751 * we need the header to contain the greater of either ETH_HLEN or
1752 * 60 bytes if the skb->len is less than 60 for skb_pad.
1753 */
Alexander Duyck8496e3382014-09-05 19:22:18 -04001754 pull_len = eth_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001755
1756 /* align pull length to size of long to optimize memcpy performance */
1757 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1758
1759 /* update all of the pointers */
1760 skb_frag_size_sub(frag, pull_len);
1761 frag->page_offset += pull_len;
1762 skb->data_len -= pull_len;
1763 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001764}
1765
1766/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001767 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1768 * @rx_ring: rx descriptor ring packet is being transacted on
1769 * @skb: pointer to current skb being updated
1770 *
1771 * This function provides a basic DMA sync up for the first fragment of an
1772 * skb. The reason for doing this is that the first fragment cannot be
1773 * unmapped until we have reached the end of packet descriptor for a buffer
1774 * chain.
1775 */
1776static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1777 struct sk_buff *skb)
1778{
1779 /* if the page was released unmap it, else just sync our portion */
1780 if (unlikely(IXGBE_CB(skb)->page_released)) {
1781 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1782 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1783 IXGBE_CB(skb)->page_released = false;
1784 } else {
1785 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1786
1787 dma_sync_single_range_for_cpu(rx_ring->dev,
1788 IXGBE_CB(skb)->dma,
1789 frag->page_offset,
1790 ixgbe_rx_bufsz(rx_ring),
1791 DMA_FROM_DEVICE);
1792 }
1793 IXGBE_CB(skb)->dma = 0;
1794}
1795
1796/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001797 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1798 * @rx_ring: rx descriptor ring packet is being transacted on
1799 * @rx_desc: pointer to the EOP Rx descriptor
1800 * @skb: pointer to current skb being fixed
1801 *
1802 * Check for corrupted packet headers caused by senders on the local L2
1803 * embedded NIC switch not setting up their Tx Descriptors right. These
1804 * should be very rare.
1805 *
1806 * Also address the case where we are pulling data in on pages only
1807 * and as such no data is present in the skb header.
1808 *
1809 * In addition if skb is not at least 60 bytes we need to pad it so that
1810 * it is large enough to qualify as a valid Ethernet frame.
1811 *
1812 * Returns true if an error was encountered and skb was freed.
1813 **/
1814static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1815 union ixgbe_adv_rx_desc *rx_desc,
1816 struct sk_buff *skb)
1817{
Alexander Duyckf8003262012-03-03 02:35:52 +00001818 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001819
1820 /* verify that the packet does not have any known errors */
1821 if (unlikely(ixgbe_test_staterr(rx_desc,
1822 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1823 !(netdev->features & NETIF_F_RXALL))) {
1824 dev_kfree_skb_any(skb);
1825 return true;
1826 }
1827
Alexander Duyck19861ce2012-07-20 08:08:33 +00001828 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001829 if (skb_is_nonlinear(skb))
1830 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001831
Alexander Duyck57efd442012-06-25 21:54:46 +00001832#ifdef IXGBE_FCOE
1833 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1834 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1835 return false;
1836
1837#endif
Alexander Duycka94d9e22014-12-03 08:17:39 -08001838 /* if eth_skb_pad returns an error the skb was freed */
1839 if (eth_skb_pad(skb))
1840 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001841
1842 return false;
1843}
1844
1845/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001846 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1847 * @rx_ring: rx descriptor ring to store buffers on
1848 * @old_buff: donor buffer to have page reused
1849 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001850 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001851 **/
1852static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1853 struct ixgbe_rx_buffer *old_buff)
1854{
1855 struct ixgbe_rx_buffer *new_buff;
1856 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001857
1858 new_buff = &rx_ring->rx_buffer_info[nta];
1859
1860 /* update, and store next to alloc */
1861 nta++;
1862 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1863
1864 /* transfer page from old buffer to new buffer */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001865 *new_buff = *old_buff;
Alexander Duyckf8003262012-03-03 02:35:52 +00001866
1867 /* sync the buffer for use by the device */
1868 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001869 new_buff->page_offset,
1870 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001871 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001872}
1873
Alexander Duyck18cb6522014-11-14 00:56:29 +00001874static inline bool ixgbe_page_is_reserved(struct page *page)
1875{
Michal Hocko2f064f32015-08-21 14:11:51 -07001876 return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page);
Alexander Duyck18cb6522014-11-14 00:56:29 +00001877}
1878
Alexander Duyckf8003262012-03-03 02:35:52 +00001879/**
1880 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1881 * @rx_ring: rx descriptor ring to transact packets on
1882 * @rx_buffer: buffer containing page to add
1883 * @rx_desc: descriptor containing length of buffer written by hardware
1884 * @skb: sk_buff to place the data into
1885 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001886 * This function will add the data contained in rx_buffer->page to the skb.
1887 * This is done either through a direct copy if the data in the buffer is
1888 * less than the skb header size, otherwise it will just attach the page as
1889 * a frag to the skb.
1890 *
1891 * The function will then update the page offset if necessary and return
1892 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001893 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001894static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001895 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001896 union ixgbe_adv_rx_desc *rx_desc,
1897 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001898{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001899 struct page *page = rx_buffer->page;
1900 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001901#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001902 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001903#else
1904 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1905 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1906 ixgbe_rx_bufsz(rx_ring);
1907#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001908
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001909 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1910 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1911
1912 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1913
Alexander Duyck18cb6522014-11-14 00:56:29 +00001914 /* page is not reserved, we can reuse buffer as-is */
1915 if (likely(!ixgbe_page_is_reserved(page)))
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001916 return true;
1917
1918 /* this page cannot be reused so discard it */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001919 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001920 return false;
1921 }
1922
Alexander Duyck0549ae22012-07-20 08:08:18 +00001923 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1924 rx_buffer->page_offset, size, truesize);
1925
Alexander Duyck09816fb2012-07-20 08:08:23 +00001926 /* avoid re-using remote pages */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001927 if (unlikely(ixgbe_page_is_reserved(page)))
Alexander Duyck09816fb2012-07-20 08:08:23 +00001928 return false;
1929
1930#if (PAGE_SIZE < 8192)
1931 /* if we are only owner of page we can reuse it */
1932 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001933 return false;
1934
1935 /* flip page offset to other buffer */
1936 rx_buffer->page_offset ^= truesize;
Alexander Duyck09816fb2012-07-20 08:08:23 +00001937#else
1938 /* move offset up to the next cache line */
1939 rx_buffer->page_offset += truesize;
1940
1941 if (rx_buffer->page_offset > last_offset)
1942 return false;
Alexander Duyck09816fb2012-07-20 08:08:23 +00001943#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001944
Alexander Duyck18cb6522014-11-14 00:56:29 +00001945 /* Even if we own the page, we are not allowed to use atomic_set()
1946 * This would break get_page_unless_zero() users.
1947 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -07001948 page_ref_inc(page);
Alexander Duyck18cb6522014-11-14 00:56:29 +00001949
Alexander Duyck0549ae22012-07-20 08:08:18 +00001950 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001951}
1952
Alexander Duyck18806c92012-07-20 08:08:44 +00001953static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1954 union ixgbe_adv_rx_desc *rx_desc)
1955{
1956 struct ixgbe_rx_buffer *rx_buffer;
1957 struct sk_buff *skb;
1958 struct page *page;
1959
1960 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1961 page = rx_buffer->page;
1962 prefetchw(page);
1963
1964 skb = rx_buffer->skb;
1965
1966 if (likely(!skb)) {
1967 void *page_addr = page_address(page) +
1968 rx_buffer->page_offset;
1969
1970 /* prefetch first cache line of first page */
1971 prefetch(page_addr);
1972#if L1_CACHE_BYTES < 128
1973 prefetch(page_addr + L1_CACHE_BYTES);
1974#endif
1975
1976 /* allocate a skb to store the frags */
Alexander Duyck67fd8932014-12-09 19:40:56 -08001977 skb = napi_alloc_skb(&rx_ring->q_vector->napi,
1978 IXGBE_RX_HDR_SIZE);
Alexander Duyck18806c92012-07-20 08:08:44 +00001979 if (unlikely(!skb)) {
1980 rx_ring->rx_stats.alloc_rx_buff_failed++;
1981 return NULL;
1982 }
1983
1984 /*
1985 * we will be copying header into skb->data in
1986 * pskb_may_pull so it is in our interest to prefetch
1987 * it now to avoid a possible cache miss
1988 */
1989 prefetchw(skb->data);
1990
1991 /*
1992 * Delay unmapping of the first packet. It carries the
1993 * header information, HW may still access the header
1994 * after the writeback. Only unmap it when EOP is
1995 * reached
1996 */
1997 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1998 goto dma_sync;
1999
2000 IXGBE_CB(skb)->dma = rx_buffer->dma;
2001 } else {
2002 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
2003 ixgbe_dma_sync_frag(rx_ring, skb);
2004
2005dma_sync:
2006 /* we are reusing so sync this buffer for CPU use */
2007 dma_sync_single_range_for_cpu(rx_ring->dev,
2008 rx_buffer->dma,
2009 rx_buffer->page_offset,
2010 ixgbe_rx_bufsz(rx_ring),
2011 DMA_FROM_DEVICE);
Alexander Duyck18cb6522014-11-14 00:56:29 +00002012
2013 rx_buffer->skb = NULL;
Alexander Duyck18806c92012-07-20 08:08:44 +00002014 }
2015
2016 /* pull page into skb */
2017 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
2018 /* hand second half of page back to the ring */
2019 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
2020 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
2021 /* the page has been released from the ring */
2022 IXGBE_CB(skb)->page_released = true;
2023 } else {
2024 /* we are not reusing the buffer so unmap it */
2025 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
2026 ixgbe_rx_pg_size(rx_ring),
2027 DMA_FROM_DEVICE);
2028 }
2029
2030 /* clear contents of buffer_info */
Alexander Duyck18806c92012-07-20 08:08:44 +00002031 rx_buffer->page = NULL;
2032
2033 return skb;
Alexander Duyckf8003262012-03-03 02:35:52 +00002034}
2035
2036/**
2037 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
2038 * @q_vector: structure containing interrupt and ring information
2039 * @rx_ring: rx descriptor ring to transact packets on
2040 * @budget: Total limit on number of packets to process
2041 *
2042 * This function provides a "bounce buffer" approach to Rx interrupt
2043 * processing. The advantage to this is that on systems that have
2044 * expensive overhead for IOMMU access this provides a means of avoiding
2045 * it by maintaining the mapping of the page to the syste.
2046 *
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002047 * Returns amount of work completed
Alexander Duyckf8003262012-03-03 02:35:52 +00002048 **/
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002049static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002050 struct ixgbe_ring *rx_ring,
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002051 const int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07002052{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002053 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00002054#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00002055 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00002056 int ddp_bytes;
2057 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00002058#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00002059 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07002060
Eric W. Biedermanfdabfc8a2014-03-14 18:00:41 -07002061 while (likely(total_rx_packets < budget)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00002062 union ixgbe_adv_rx_desc *rx_desc;
2063 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07002064
Alexander Duyckf8003262012-03-03 02:35:52 +00002065 /* return some buffers to hardware, one at a time is too slow */
2066 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
2067 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2068 cleaned_count = 0;
2069 }
Auke Kok9a799d72007-09-15 14:07:45 -07002070
Alexander Duyck18806c92012-07-20 08:08:44 +00002071 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07002072
Alexander Duyck124b74c2014-12-11 15:02:28 -08002073 if (!rx_desc->wb.upper.status_error)
Alexander Duyckf8003262012-03-03 02:35:52 +00002074 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08002075
Alexander Duyck124b74c2014-12-11 15:02:28 -08002076 /* This memory barrier is needed to keep us from reading
Alexander Duyckf8003262012-03-03 02:35:52 +00002077 * any other fields out of the rx_desc until we know the
Alexander Duyck124b74c2014-12-11 15:02:28 -08002078 * descriptor has been written back
Alexander Duyckf8003262012-03-03 02:35:52 +00002079 */
Alexander Duyck124b74c2014-12-11 15:02:28 -08002080 dma_rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07002081
Alexander Duyck18806c92012-07-20 08:08:44 +00002082 /* retrieve a buffer from the ring */
2083 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00002084
Alexander Duyck18806c92012-07-20 08:08:44 +00002085 /* exit if we failed to retrieve a buffer */
2086 if (!skb)
2087 break;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00002088
Auke Kok9a799d72007-09-15 14:07:45 -07002089 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002090
Alexander Duyckf8003262012-03-03 02:35:52 +00002091 /* place incomplete frames back on ring for completion */
2092 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
2093 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002094
Alexander Duyckf8003262012-03-03 02:35:52 +00002095 /* verify the packet layout is correct */
2096 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
2097 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002098
2099 /* probably a little skewed due to removing CRC */
2100 total_rx_bytes += skb->len;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002101
Alexander Duyck8a0da212012-01-31 02:59:49 +00002102 /* populate checksum, timestamp, VLAN, and protocol */
2103 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
2104
Yi Zou332d4a72009-05-13 13:11:53 +00002105#ifdef IXGBE_FCOE
2106 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00002107 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00002108 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00002109 /* include DDPed FCoE data */
2110 if (ddp_bytes > 0) {
2111 if (!mss) {
2112 mss = rx_ring->netdev->mtu -
2113 sizeof(struct fcoe_hdr) -
2114 sizeof(struct fc_frame_header) -
2115 sizeof(struct fcoe_crc_eof);
2116 if (mss > 512)
2117 mss &= ~511;
2118 }
2119 total_rx_bytes += ddp_bytes;
2120 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
2121 mss);
2122 }
David S. Miller823dcd22011-08-20 10:39:12 -07002123 if (!ddp_bytes) {
2124 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00002125 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07002126 }
Yi Zou3d8fd382009-06-08 14:38:44 +00002127 }
Alexander Duyckf8003262012-03-03 02:35:52 +00002128
Yi Zou332d4a72009-05-13 13:11:53 +00002129#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00002130 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07002131
Alexander Duyckf8003262012-03-03 02:35:52 +00002132 /* update budget accounting */
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002133 total_rx_packets++;
Eric W. Biedermanfdabfc8a2014-03-14 18:00:41 -07002134 }
Auke Kok9a799d72007-09-15 14:07:45 -07002135
Alexander Duyckc267fc12010-11-16 19:27:00 -08002136 u64_stats_update_begin(&rx_ring->syncp);
2137 rx_ring->stats.packets += total_rx_packets;
2138 rx_ring->stats.bytes += total_rx_bytes;
2139 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00002140 q_vector->rx.total_packets += total_rx_packets;
2141 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002142
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002143 return total_rx_packets;
Auke Kok9a799d72007-09-15 14:07:45 -07002144}
2145
Cong Wange0d10952013-08-01 11:10:25 +08002146#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002147/* must be called with local_bh_disable()d */
2148static int ixgbe_low_latency_recv(struct napi_struct *napi)
2149{
2150 struct ixgbe_q_vector *q_vector =
2151 container_of(napi, struct ixgbe_q_vector, napi);
2152 struct ixgbe_adapter *adapter = q_vector->adapter;
2153 struct ixgbe_ring *ring;
2154 int found = 0;
2155
2156 if (test_bit(__IXGBE_DOWN, &adapter->state))
2157 return LL_FLUSH_FAILED;
2158
2159 if (!ixgbe_qv_lock_poll(q_vector))
2160 return LL_FLUSH_BUSY;
2161
2162 ixgbe_for_each_ring(ring, q_vector->rx) {
2163 found = ixgbe_clean_rx_irq(q_vector, ring, 4);
Jacob Kellerb4640032013-10-01 04:33:54 -07002164#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03002165 if (found)
2166 ring->stats.cleaned += found;
2167 else
2168 ring->stats.misses++;
2169#endif
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002170 if (found)
2171 break;
2172 }
2173
2174 ixgbe_qv_unlock_poll(q_vector);
2175
2176 return found;
2177}
Cong Wange0d10952013-08-01 11:10:25 +08002178#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002179
Auke Kok9a799d72007-09-15 14:07:45 -07002180/**
2181 * ixgbe_configure_msix - Configure MSI-X hardware
2182 * @adapter: board private structure
2183 *
2184 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
2185 * interrupts.
2186 **/
2187static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
2188{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002189 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002190 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002191 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07002192
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00002193 /* Populate MSIX to EITR Select */
2194 if (adapter->num_vfs > 32) {
2195 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2196 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2197 }
2198
Jesse Brandeburg4df10462009-03-13 22:15:31 +00002199 /*
2200 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002201 * corresponding register.
2202 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002203 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002204 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002205 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002206
Alexander Duycka5579282012-02-08 07:50:04 +00002207 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002208 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002209
Alexander Duycka5579282012-02-08 07:50:04 +00002210 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002211 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002212
Alexander Duyckfe49f042009-06-04 16:00:09 +00002213 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002214 }
2215
Alexander Duyckbd508172010-11-16 19:27:03 -08002216 switch (adapter->hw.mac.type) {
2217 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002218 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00002219 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002220 break;
2221 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002222 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002223 case ixgbe_mac_X550:
2224 case ixgbe_mac_X550EM_x:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002225 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002226 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08002227 default:
2228 break;
2229 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002230 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07002231
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07002232 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002233 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002234 mask &= ~(IXGBE_EIMS_OTHER |
2235 IXGBE_EIMS_MAILBOX |
2236 IXGBE_EIMS_LSC);
2237
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002238 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07002239}
2240
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002241enum latency_range {
2242 lowest_latency = 0,
2243 low_latency = 1,
2244 bulk_latency = 2,
2245 latency_invalid = 255
2246};
2247
2248/**
2249 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00002250 * @q_vector: structure containing interrupt and ring information
2251 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002252 *
2253 * Stores a new ITR value based on packets and byte
2254 * counts during the last interrupt. The advantage of per interrupt
2255 * computation is faster updates and more accurate ITR for the current
2256 * traffic pattern. Constants in this function were computed
2257 * based on theoretical maximum wire speed and thresholds were set based
2258 * on testing data as well as attempting to minimize response time
2259 * while increasing bulk throughput.
2260 * this functionality is controlled by the InterruptThrottleRate module
2261 * parameter (see ixgbe_param.c)
2262 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00002263static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
2264 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002265{
Alexander Duyckbd198052011-06-11 01:45:08 +00002266 int bytes = ring_container->total_bytes;
2267 int packets = ring_container->total_packets;
2268 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00002269 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00002270 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002271
2272 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00002273 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002274
2275 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00002276 * 0-10MB/s lowest (100000 ints/s)
2277 * 10-20MB/s low (20000 ints/s)
Alexander Duyck8ac34f12015-07-30 15:19:28 -07002278 * 20-1249MB/s bulk (12000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002279 */
2280 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002281 timepassed_us = q_vector->itr >> 2;
Don Skidmorebdbeefe2013-03-02 07:17:37 +00002282 if (timepassed_us == 0)
2283 return;
2284
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002285 bytes_perint = bytes / timepassed_us; /* bytes/usec */
2286
2287 switch (itr_setting) {
2288 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002289 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002290 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002291 break;
2292 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002293 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002294 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002295 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002296 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002297 break;
2298 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002299 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002300 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002301 break;
2302 }
2303
Alexander Duyckbd198052011-06-11 01:45:08 +00002304 /* clear work counters since we have the values we need */
2305 ring_container->total_bytes = 0;
2306 ring_container->total_packets = 0;
2307
2308 /* write updated itr to ring container */
2309 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002310}
2311
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002312/**
2313 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002314 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002315 *
2316 * This function is made to be called by ethtool and by the driver
2317 * when it needs to update EITR registers at runtime. Hardware
2318 * specific quirks/differences are taken care of here.
2319 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002320void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002321{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002322 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002323 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002324 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002325 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002326
Alexander Duyckbd508172010-11-16 19:27:03 -08002327 switch (adapter->hw.mac.type) {
2328 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002329 /* must write high and low 16 bits to reset counter */
2330 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002331 break;
2332 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002333 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002334 case ixgbe_mac_X550:
2335 case ixgbe_mac_X550EM_x:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002336 /*
2337 * set the WDIS bit to not clear the timer bits and cause an
2338 * immediate assertion of the interrupt
2339 */
2340 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002341 break;
2342 default:
2343 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002344 }
2345 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2346}
2347
Alexander Duyckbd198052011-06-11 01:45:08 +00002348static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002349{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002350 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002351 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002352
Alexander Duyckbd198052011-06-11 01:45:08 +00002353 ixgbe_update_itr(q_vector, &q_vector->tx);
2354 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002355
Alexander Duyck08c88332011-06-11 01:45:03 +00002356 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002357
2358 switch (current_itr) {
2359 /* counts and packets in update_itr are dependent on these numbers */
2360 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002361 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002362 break;
2363 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002364 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002365 break;
2366 case bulk_latency:
Alexander Duyck8ac34f12015-07-30 15:19:28 -07002367 new_itr = IXGBE_12K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002368 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002369 default:
2370 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002371 }
2372
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002373 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002374 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002375 new_itr = (10 * new_itr * q_vector->itr) /
2376 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002377
Alexander Duyckbd198052011-06-11 01:45:08 +00002378 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002379 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002380
2381 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002382 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002383}
2384
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002385/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002386 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002387 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002388 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002389static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002390{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002391 struct ixgbe_hw *hw = &adapter->hw;
2392 u32 eicr = adapter->interrupt_event;
2393
Alexander Duyckf0f97782011-04-22 04:08:09 +00002394 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002395 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002396
Alexander Duyckf0f97782011-04-22 04:08:09 +00002397 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2398 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2399 return;
2400
2401 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2402
Joe Perches7ca647b2010-09-07 21:35:40 +00002403 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002404 case IXGBE_DEV_ID_82599_T3_LOM:
2405 /*
2406 * Since the warning interrupt is for both ports
2407 * we don't have to check if:
2408 * - This interrupt wasn't for our port.
2409 * - We may have missed the interrupt so always have to
2410 * check if we got a LSC
2411 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002412 if (!(eicr & IXGBE_EICR_GPI_SDP0_8259X) &&
Alexander Duyckf0f97782011-04-22 04:08:09 +00002413 !(eicr & IXGBE_EICR_LSC))
2414 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002415
Alexander Duyckf0f97782011-04-22 04:08:09 +00002416 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
Josh Hay3d292262012-12-15 03:28:19 +00002417 u32 speed;
Alexander Duyckf0f97782011-04-22 04:08:09 +00002418 bool link_up = false;
2419
Josh Hay3d292262012-12-15 03:28:19 +00002420 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Joe Perches7ca647b2010-09-07 21:35:40 +00002421
Alexander Duyckf0f97782011-04-22 04:08:09 +00002422 if (link_up)
2423 return;
2424 }
2425
2426 /* Check if this is not due to overtemp */
2427 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2428 return;
2429
2430 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002431 default:
Don Skidmore597f22d2015-06-09 16:52:02 -07002432 if (adapter->hw.mac.type >= ixgbe_mac_X540)
2433 return;
Don Skidmore9a900ec2015-06-09 17:15:01 -07002434 if (!(eicr & IXGBE_EICR_GPI_SDP0(hw)))
Joe Perches7ca647b2010-09-07 21:35:40 +00002435 return;
2436 break;
2437 }
Don Skidmoref44e7512015-06-09 16:36:23 -07002438 e_crit(drv, "%s\n", ixgbe_overheat_msg);
Alexander Duyckf0f97782011-04-22 04:08:09 +00002439
2440 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002441}
2442
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002443static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2444{
2445 struct ixgbe_hw *hw = &adapter->hw;
2446
2447 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
Don Skidmore9a900ec2015-06-09 17:15:01 -07002448 (eicr & IXGBE_EICR_GPI_SDP1(hw))) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002449 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002450 /* write to clear the interrupt */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002451 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw));
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002452 }
2453}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002454
Jacob Keller4f51bf72011-08-20 04:49:45 +00002455static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2456{
Don Skidmore9a900ec2015-06-09 17:15:01 -07002457 struct ixgbe_hw *hw = &adapter->hw;
2458
Jacob Keller4f51bf72011-08-20 04:49:45 +00002459 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2460 return;
2461
2462 switch (adapter->hw.mac.type) {
2463 case ixgbe_mac_82599EB:
2464 /*
2465 * Need to check link state so complete overtemp check
2466 * on service task
2467 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002468 if (((eicr & IXGBE_EICR_GPI_SDP0(hw)) ||
2469 (eicr & IXGBE_EICR_LSC)) &&
Jacob Keller4f51bf72011-08-20 04:49:45 +00002470 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2471 adapter->interrupt_event = eicr;
2472 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2473 ixgbe_service_event_schedule(adapter);
2474 return;
2475 }
2476 return;
2477 case ixgbe_mac_X540:
2478 if (!(eicr & IXGBE_EICR_TS))
2479 return;
2480 break;
2481 default:
2482 return;
2483 }
2484
Don Skidmoref44e7512015-06-09 16:36:23 -07002485 e_crit(drv, "%s\n", ixgbe_overheat_msg);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002486}
2487
Don Skidmore45788d22015-06-09 16:59:04 -07002488static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
2489{
2490 switch (hw->mac.type) {
2491 case ixgbe_mac_82598EB:
2492 if (hw->phy.type == ixgbe_phy_nl)
2493 return true;
2494 return false;
2495 case ixgbe_mac_82599EB:
2496 case ixgbe_mac_X550EM_x:
2497 switch (hw->mac.ops.get_media_type(hw)) {
2498 case ixgbe_media_type_fiber:
2499 case ixgbe_media_type_fiber_qsfp:
2500 return true;
2501 default:
2502 return false;
2503 }
2504 default:
2505 return false;
2506 }
2507}
2508
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002509static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2510{
2511 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore4ccc6502015-09-02 13:47:54 -07002512 u32 eicr_mask = IXGBE_EICR_GPI_SDP2(hw);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002513
Don Skidmore4ccc6502015-09-02 13:47:54 -07002514 if (!ixgbe_is_sfp(hw))
2515 return;
2516
2517 /* Later MAC's use different SDP */
2518 if (hw->mac.type >= ixgbe_mac_X540)
2519 eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
2520
2521 if (eicr & eicr_mask) {
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002522 /* Clear the interrupt */
Don Skidmore4ccc6502015-09-02 13:47:54 -07002523 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
Alexander Duyck70864002011-04-27 09:13:56 +00002524 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2525 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
Mark Rustad58e7cd22015-08-08 16:18:48 -07002526 adapter->sfp_poll_time = 0;
Alexander Duyck70864002011-04-27 09:13:56 +00002527 ixgbe_service_event_schedule(adapter);
2528 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002529 }
2530
Don Skidmore4ccc6502015-09-02 13:47:54 -07002531 if (adapter->hw.mac.type == ixgbe_mac_82599EB &&
2532 (eicr & IXGBE_EICR_GPI_SDP1(hw))) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002533 /* Clear the interrupt */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002534 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw));
Alexander Duyck70864002011-04-27 09:13:56 +00002535 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2536 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2537 ixgbe_service_event_schedule(adapter);
2538 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002539 }
2540}
2541
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002542static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2543{
2544 struct ixgbe_hw *hw = &adapter->hw;
2545
2546 adapter->lsc_int++;
2547 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2548 adapter->link_check_timeout = jiffies;
2549 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2550 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002551 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002552 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002553 }
2554}
2555
Alexander Duyckfe49f042009-06-04 16:00:09 +00002556static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2557 u64 qmask)
2558{
2559 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002560 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002561
Alexander Duyckbd508172010-11-16 19:27:03 -08002562 switch (hw->mac.type) {
2563 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002564 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002565 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2566 break;
2567 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002568 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002569 case ixgbe_mac_X550:
2570 case ixgbe_mac_X550EM_x:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002571 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002572 if (mask)
2573 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002574 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002575 if (mask)
2576 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2577 break;
2578 default:
2579 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002580 }
2581 /* skip the flush */
2582}
2583
2584static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002585 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002586{
2587 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002588 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002589
Alexander Duyckbd508172010-11-16 19:27:03 -08002590 switch (hw->mac.type) {
2591 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002592 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002593 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2594 break;
2595 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002596 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002597 case ixgbe_mac_X550:
2598 case ixgbe_mac_X550EM_x:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002599 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002600 if (mask)
2601 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002602 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002603 if (mask)
2604 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2605 break;
2606 default:
2607 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002608 }
2609 /* skip the flush */
2610}
2611
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002612/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002613 * ixgbe_irq_enable - Enable default interrupt generation settings
2614 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002615 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002616static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2617 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002618{
Don Skidmore9a900ec2015-06-09 17:15:01 -07002619 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002620 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002621
Alexander Duyck2c4af692011-07-15 07:29:55 +00002622 /* don't reenable LSC while waiting for link */
2623 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2624 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002625
Alexander Duyck2c4af692011-07-15 07:29:55 +00002626 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002627 switch (adapter->hw.mac.type) {
2628 case ixgbe_mac_82599EB:
Don Skidmore9a900ec2015-06-09 17:15:01 -07002629 mask |= IXGBE_EIMS_GPI_SDP0(hw);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002630 break;
2631 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002632 case ixgbe_mac_X550:
2633 case ixgbe_mac_X550EM_x:
Jacob Keller4f51bf72011-08-20 04:49:45 +00002634 mask |= IXGBE_EIMS_TS;
2635 break;
2636 default:
2637 break;
2638 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002639 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Don Skidmore9a900ec2015-06-09 17:15:01 -07002640 mask |= IXGBE_EIMS_GPI_SDP1(hw);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002641 switch (adapter->hw.mac.type) {
2642 case ixgbe_mac_82599EB:
Don Skidmore9a900ec2015-06-09 17:15:01 -07002643 mask |= IXGBE_EIMS_GPI_SDP1(hw);
2644 mask |= IXGBE_EIMS_GPI_SDP2(hw);
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002645 /* fall through */
Don Skidmore858bc082011-08-04 09:28:30 +00002646 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002647 case ixgbe_mac_X550:
2648 case ixgbe_mac_X550EM_x:
Mark Rustadcbd45ec2015-08-08 16:17:51 -07002649 if (adapter->hw.device_id == IXGBE_DEV_ID_X550EM_X_SFP)
2650 mask |= IXGBE_EIMS_GPI_SDP0(&adapter->hw);
Don Skidmore597f22d2015-06-09 16:52:02 -07002651 if (adapter->hw.phy.type == ixgbe_phy_x550em_ext_t)
2652 mask |= IXGBE_EICR_GPI_SDP0_X540;
Don Skidmore858bc082011-08-04 09:28:30 +00002653 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002654 mask |= IXGBE_EIMS_MAILBOX;
2655 break;
2656 default:
2657 break;
2658 }
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002659
Alexander Duyck2c4af692011-07-15 07:29:55 +00002660 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2661 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2662 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002663
Alexander Duyck2c4af692011-07-15 07:29:55 +00002664 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2665 if (queues)
2666 ixgbe_irq_enable_queues(adapter, ~0);
2667 if (flush)
2668 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002669}
2670
Alexander Duyck2c4af692011-07-15 07:29:55 +00002671static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002672{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002673 struct ixgbe_adapter *adapter = data;
2674 struct ixgbe_hw *hw = &adapter->hw;
2675 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002676
Alexander Duyck2c4af692011-07-15 07:29:55 +00002677 /*
2678 * Workaround for Silicon errata. Use clear-by-write instead
2679 * of clear-by-read. Reading with EICS will return the
2680 * interrupt causes without clearing, which later be done
2681 * with the write to EICR.
2682 */
2683 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
Jacob Kellerd87d8302013-03-02 07:51:42 +00002684
2685 /* The lower 16bits of the EICR register are for the queue interrupts
Joe Perchesdbedd442015-03-06 20:49:12 -08002686 * which should be masked here in order to not accidentally clear them if
Jacob Kellerd87d8302013-03-02 07:51:42 +00002687 * the bits are high when ixgbe_msix_other is called. There is a race
2688 * condition otherwise which results in possible performance loss
2689 * especially if the ixgbe_msix_other interrupt is triggering
2690 * consistently (as it would when PPS is turned on for the X540 device)
2691 */
2692 eicr &= 0xFFFF0000;
2693
Alexander Duyck2c4af692011-07-15 07:29:55 +00002694 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002695
Alexander Duyck2c4af692011-07-15 07:29:55 +00002696 if (eicr & IXGBE_EICR_LSC)
2697 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002698
Alexander Duyck2c4af692011-07-15 07:29:55 +00002699 if (eicr & IXGBE_EICR_MAILBOX)
2700 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002701
Alexander Duyck2c4af692011-07-15 07:29:55 +00002702 switch (hw->mac.type) {
2703 case ixgbe_mac_82599EB:
2704 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002705 case ixgbe_mac_X550:
2706 case ixgbe_mac_X550EM_x:
Don Skidmore597f22d2015-06-09 16:52:02 -07002707 if (hw->phy.type == ixgbe_phy_x550em_ext_t &&
2708 (eicr & IXGBE_EICR_GPI_SDP0_X540)) {
2709 adapter->flags2 |= IXGBE_FLAG2_PHY_INTERRUPT;
2710 ixgbe_service_event_schedule(adapter);
2711 IXGBE_WRITE_REG(hw, IXGBE_EICR,
2712 IXGBE_EICR_GPI_SDP0_X540);
2713 }
Don Skidmored773ce22014-02-25 17:58:53 -08002714 if (eicr & IXGBE_EICR_ECC) {
2715 e_info(link, "Received ECC Err, initiating reset\n");
2716 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
2717 ixgbe_service_event_schedule(adapter);
2718 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
2719 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002720 /* Handle Flow Director Full threshold interrupt */
2721 if (eicr & IXGBE_EICR_FLOW_DIR) {
2722 int reinit_count = 0;
2723 int i;
2724 for (i = 0; i < adapter->num_tx_queues; i++) {
2725 struct ixgbe_ring *ring = adapter->tx_ring[i];
2726 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2727 &ring->state))
2728 reinit_count++;
2729 }
2730 if (reinit_count) {
2731 /* no more flow director interrupts until after init */
2732 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2733 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2734 ixgbe_service_event_schedule(adapter);
2735 }
2736 }
2737 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002738 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002739 break;
2740 default:
2741 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002742 }
2743
Alexander Duyck2c4af692011-07-15 07:29:55 +00002744 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002745
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002746 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
Mark Rustada9763f32015-10-27 09:58:07 -07002747 ixgbe_ptp_check_pps_event(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002748
Alexander Duyck2c4af692011-07-15 07:29:55 +00002749 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002750 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002751 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002752
Alexander Duyck2c4af692011-07-15 07:29:55 +00002753 return IRQ_HANDLED;
2754}
2755
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002756static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002757{
2758 struct ixgbe_q_vector *q_vector = data;
2759
Auke Kok9a799d72007-09-15 14:07:45 -07002760 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002761
2762 if (q_vector->rx.ring || q_vector->tx.ring)
Alexander Duyckef2662b2015-09-29 15:19:43 -07002763 napi_schedule_irqoff(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002764
2765 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002766}
2767
Auke Kok9a799d72007-09-15 14:07:45 -07002768/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002769 * ixgbe_poll - NAPI Rx polling callback
2770 * @napi: structure for representing this polling device
2771 * @budget: how many packets driver is allowed to clean
2772 *
2773 * This function is used for legacy and MSI, NAPI mode
2774 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002775int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002776{
2777 struct ixgbe_q_vector *q_vector =
2778 container_of(napi, struct ixgbe_q_vector, napi);
2779 struct ixgbe_adapter *adapter = q_vector->adapter;
2780 struct ixgbe_ring *ring;
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002781 int per_ring_budget, work_done = 0;
Alexander Duyckeb01b972012-02-08 07:51:27 +00002782 bool clean_complete = true;
2783
2784#ifdef CONFIG_IXGBE_DCA
2785 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2786 ixgbe_update_dca(q_vector);
2787#endif
2788
2789 ixgbe_for_each_ring(ring, q_vector->tx)
Jesper Dangaard Brouera3a87492016-02-08 13:15:09 +01002790 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring, budget);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002791
Alexander Duyck5d6002b2015-09-22 14:35:41 -07002792 /* Exit if we are called by netpoll or busy polling is active */
2793 if ((budget <= 0) || !ixgbe_qv_lock_napi(q_vector))
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002794 return budget;
2795
Alexander Duyckeb01b972012-02-08 07:51:27 +00002796 /* attempt to distribute budget to each queue fairly, but don't allow
2797 * the budget to go below 1 because we'll exit polling */
2798 if (q_vector->rx.count > 1)
2799 per_ring_budget = max(budget/q_vector->rx.count, 1);
2800 else
2801 per_ring_budget = budget;
2802
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002803 ixgbe_for_each_ring(ring, q_vector->rx) {
2804 int cleaned = ixgbe_clean_rx_irq(q_vector, ring,
2805 per_ring_budget);
2806
2807 work_done += cleaned;
2808 clean_complete &= (cleaned < per_ring_budget);
2809 }
Alexander Duyckeb01b972012-02-08 07:51:27 +00002810
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002811 ixgbe_qv_unlock_napi(q_vector);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002812 /* If all work not completed, return budget and keep polling */
2813 if (!clean_complete)
2814 return budget;
2815
2816 /* all work done, exit the polling mode */
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002817 napi_complete_done(napi, work_done);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002818 if (adapter->rx_itr_setting & 1)
2819 ixgbe_set_itr(q_vector);
2820 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2821 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2822
2823 return 0;
2824}
2825
2826/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002827 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2828 * @adapter: board private structure
2829 *
2830 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2831 * interrupts from the kernel.
2832 **/
2833static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2834{
2835 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002836 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002837 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002838
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002839 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002840 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002841 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002842
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002843 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002844 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002845 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002846 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002847 } else if (q_vector->rx.ring) {
2848 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2849 "%s-%s-%d", netdev->name, "rx", ri++);
2850 } else if (q_vector->tx.ring) {
2851 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2852 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002853 } else {
2854 /* skip this unused q_vector */
2855 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002856 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002857 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2858 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002859 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002860 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002861 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002862 goto free_queue_irqs;
2863 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002864 /* If Flow Director is enabled, set interrupt affinity */
2865 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2866 /* assign the mask for this irq */
2867 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002868 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002869 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002870 }
2871
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002872 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002873 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002874 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002875 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002876 goto free_queue_irqs;
2877 }
2878
2879 return 0;
2880
2881free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002882 while (vector) {
2883 vector--;
2884 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2885 NULL);
2886 free_irq(adapter->msix_entries[vector].vector,
2887 adapter->q_vector[vector]);
2888 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002889 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2890 pci_disable_msix(adapter->pdev);
2891 kfree(adapter->msix_entries);
2892 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002893 return err;
2894}
2895
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002896/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002897 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002898 * @irq: interrupt number
2899 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002900 **/
2901static irqreturn_t ixgbe_intr(int irq, void *data)
2902{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002903 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002904 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002905 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002906 u32 eicr;
2907
Don Skidmore54037502009-02-21 15:42:56 -08002908 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002909 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002910 * before the read of EICR.
2911 */
2912 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2913
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002914 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002915 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002916 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002917 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002918 /*
2919 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002920 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002921 * have disabled interrupts due to EIAM
2922 * finish the workaround of silicon errata on 82598. Unmask
2923 * the interrupt that we masked before the EICR read.
2924 */
2925 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2926 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002927 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002928 }
Auke Kok9a799d72007-09-15 14:07:45 -07002929
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002930 if (eicr & IXGBE_EICR_LSC)
2931 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002932
Alexander Duyckbd508172010-11-16 19:27:03 -08002933 switch (hw->mac.type) {
2934 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002935 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002936 /* Fall through */
2937 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002938 case ixgbe_mac_X550:
2939 case ixgbe_mac_X550EM_x:
Don Skidmored773ce22014-02-25 17:58:53 -08002940 if (eicr & IXGBE_EICR_ECC) {
2941 e_info(link, "Received ECC Err, initiating reset\n");
2942 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
2943 ixgbe_service_event_schedule(adapter);
2944 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
2945 }
Jacob Keller4f51bf72011-08-20 04:49:45 +00002946 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002947 break;
2948 default:
2949 break;
2950 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002951
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002952 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002953 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
Mark Rustada9763f32015-10-27 09:58:07 -07002954 ixgbe_ptp_check_pps_event(adapter);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002955
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002956 /* would disable interrupts here but EIAM disabled it */
Alexander Duyckef2662b2015-09-29 15:19:43 -07002957 napi_schedule_irqoff(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002958
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002959 /*
2960 * re-enable link(maybe) and non-queue interrupts, no flush.
2961 * ixgbe_poll will re-enable the queue interrupts
2962 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002963 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2964 ixgbe_irq_enable(adapter, false, false);
2965
Auke Kok9a799d72007-09-15 14:07:45 -07002966 return IRQ_HANDLED;
2967}
2968
2969/**
2970 * ixgbe_request_irq - initialize interrupts
2971 * @adapter: board private structure
2972 *
2973 * Attempts to configure interrupts using the best available
2974 * capabilities of the hardware and kernel.
2975 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002976static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002977{
2978 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002979 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002980
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002981 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002982 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002983 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002984 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002985 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002986 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002987 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002988 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002989
Alexander Duyckde88eee2012-02-08 07:49:59 +00002990 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002991 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002992
Auke Kok9a799d72007-09-15 14:07:45 -07002993 return err;
2994}
2995
2996static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2997{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002998 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002999
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003000 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00003001 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003002 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003003 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003004
3005 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
3006 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
3007 struct msix_entry *entry = &adapter->msix_entries[vector];
3008
3009 /* free only the irqs that were actually requested */
3010 if (!q_vector->rx.ring && !q_vector->tx.ring)
3011 continue;
3012
3013 /* clear the affinity_mask in the IRQ descriptor */
3014 irq_set_affinity_hint(entry->vector, NULL);
3015
3016 free_irq(entry->vector, q_vector);
3017 }
3018
3019 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003020}
3021
3022/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003023 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
3024 * @adapter: board private structure
3025 **/
3026static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
3027{
Alexander Duyckbd508172010-11-16 19:27:03 -08003028 switch (adapter->hw.mac.type) {
3029 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00003030 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08003031 break;
3032 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003033 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003034 case ixgbe_mac_X550:
3035 case ixgbe_mac_X550EM_x:
Nelson, Shannon835462f2009-04-27 22:42:54 +00003036 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
3037 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003038 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08003039 break;
3040 default:
3041 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003042 }
3043 IXGBE_WRITE_FLUSH(&adapter->hw);
3044 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003045 int vector;
3046
3047 for (vector = 0; vector < adapter->num_q_vectors; vector++)
3048 synchronize_irq(adapter->msix_entries[vector].vector);
3049
3050 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003051 } else {
3052 synchronize_irq(adapter->pdev->irq);
3053 }
3054}
3055
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003056/**
Auke Kok9a799d72007-09-15 14:07:45 -07003057 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
3058 *
3059 **/
3060static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
3061{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00003062 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07003063
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00003064 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07003065
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003066 ixgbe_set_ivar(adapter, 0, 0, 0);
3067 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003068
Emil Tantilov396e7992010-07-01 20:05:12 +00003069 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07003070}
3071
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003072/**
3073 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
3074 * @adapter: board private structure
3075 * @ring: structure containing ring specific data
3076 *
3077 * Configure the Tx descriptor ring after a reset.
3078 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00003079void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
3080 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003081{
3082 struct ixgbe_hw *hw = &adapter->hw;
3083 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003084 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003085 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003086 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003087
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003088 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003089 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003090 IXGBE_WRITE_FLUSH(hw);
3091
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003092 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00003093 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003094 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
3095 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
3096 ring->count * sizeof(union ixgbe_adv_tx_desc));
3097 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
3098 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003099 ring->tail = adapter->io_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003100
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003101 /*
3102 * set WTHRESH to encourage burst writeback, it should not be set
Emil Tantilov67da0972013-01-25 06:19:20 +00003103 * higher than 1 when:
3104 * - ITR is 0 as it could cause false TX hangs
3105 * - ITR is set to > 100k int/sec and BQL is enabled
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003106 *
3107 * In order to avoid issues WTHRESH + PTHRESH should always be equal
3108 * to or less than the number of on chip descriptors, which is
3109 * currently 40.
3110 */
Emil Tantilov67da0972013-01-25 06:19:20 +00003111 if (!ring->q_vector || (ring->q_vector->itr < IXGBE_100K_ITR))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003112 txdctl |= (1 << 16); /* WTHRESH = 1 */
3113 else
3114 txdctl |= (8 << 16); /* WTHRESH = 8 */
3115
Alexander Duycke954b372012-02-08 07:49:38 +00003116 /*
3117 * Setting PTHRESH to 32 both improves performance
3118 * and avoids a TX hang with DFP enabled
3119 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003120 txdctl |= (1 << 8) | /* HTHRESH = 1 */
3121 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003122
3123 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00003124 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08003125 ring->atr_sample_rate = adapter->atr_sample_rate;
3126 ring->atr_count = 0;
3127 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
3128 } else {
3129 ring->atr_sample_rate = 0;
3130 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003131
Alexander Duyckfd786b72013-01-12 06:33:31 +00003132 /* initialize XPS */
3133 if (!test_and_set_bit(__IXGBE_TX_XPS_INIT_DONE, &ring->state)) {
3134 struct ixgbe_q_vector *q_vector = ring->q_vector;
3135
3136 if (q_vector)
John Fastabend2a47fa42013-11-06 09:54:52 -08003137 netif_set_xps_queue(ring->netdev,
Alexander Duyckfd786b72013-01-12 06:33:31 +00003138 &q_vector->affinity_mask,
3139 ring->queue_index);
3140 }
3141
John Fastabendc84d3242010-11-16 19:27:12 -08003142 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
3143
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003144 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003145 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
3146
3147 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3148 if (hw->mac.type == ixgbe_mac_82598EB &&
3149 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3150 return;
3151
3152 /* poll to verify queue is enabled */
3153 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003154 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003155 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
3156 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
3157 if (!wait_loop)
3158 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003159}
3160
Alexander Duyck120ff942010-08-19 13:34:50 +00003161static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
3162{
3163 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003164 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003165 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00003166
3167 if (hw->mac.type == ixgbe_mac_82598EB)
3168 return;
3169
3170 /* disable the arbiter while setting MTQC */
3171 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3172 rttdcs |= IXGBE_RTTDCS_ARBDIS;
3173 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3174
3175 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003176 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3177 mtqc = IXGBE_MTQC_VT_ENA;
3178 if (tcs > 4)
3179 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3180 else if (tcs > 1)
3181 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3182 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3183 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003184 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003185 mtqc |= IXGBE_MTQC_64VF;
3186 } else {
3187 if (tcs > 4)
3188 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3189 else if (tcs > 1)
3190 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3191 else
3192 mtqc = IXGBE_MTQC_64Q_1PB;
3193 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00003194
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003195 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003196
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003197 /* Enable Security TX Buffer IFG for multiple pb */
3198 if (tcs) {
3199 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
3200 sectx |= IXGBE_SECTX_DCB;
3201 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00003202 }
3203
3204 /* re-enable the arbiter */
3205 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3206 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3207}
3208
Auke Kok9a799d72007-09-15 14:07:45 -07003209/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07003210 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07003211 * @adapter: board private structure
3212 *
3213 * Configure the Tx unit of the MAC after a reset.
3214 **/
3215static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
3216{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003217 struct ixgbe_hw *hw = &adapter->hw;
3218 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003219 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003220
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003221 ixgbe_setup_mtqc(adapter);
3222
3223 if (hw->mac.type != ixgbe_mac_82598EB) {
3224 /* DMATXCTL.EN must be before Tx queues are enabled */
3225 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3226 dmatxctl |= IXGBE_DMATXCTL_TE;
3227 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3228 }
3229
Auke Kok9a799d72007-09-15 14:07:45 -07003230 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003231 for (i = 0; i < adapter->num_tx_queues; i++)
3232 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07003233}
3234
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00003235static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
3236 struct ixgbe_ring *ring)
3237{
3238 struct ixgbe_hw *hw = &adapter->hw;
3239 u8 reg_idx = ring->reg_idx;
3240 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3241
3242 srrctl |= IXGBE_SRRCTL_DROP_EN;
3243
3244 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3245}
3246
3247static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
3248 struct ixgbe_ring *ring)
3249{
3250 struct ixgbe_hw *hw = &adapter->hw;
3251 u8 reg_idx = ring->reg_idx;
3252 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3253
3254 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
3255
3256 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3257}
3258
3259#ifdef CONFIG_IXGBE_DCB
3260void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3261#else
3262static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3263#endif
3264{
3265 int i;
3266 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
3267
3268 if (adapter->ixgbe_ieee_pfc)
3269 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
3270
3271 /*
3272 * We should set the drop enable bit if:
3273 * SR-IOV is enabled
3274 * or
3275 * Number of Rx queues > 1 and flow control is disabled
3276 *
3277 * This allows us to avoid head of line blocking for security
3278 * and performance reasons.
3279 */
3280 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
3281 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
3282 for (i = 0; i < adapter->num_rx_queues; i++)
3283 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
3284 } else {
3285 for (i = 0; i < adapter->num_rx_queues; i++)
3286 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
3287 }
3288}
3289
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003290#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07003291
Yi Zoua6616b42009-08-06 13:05:23 +00003292static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00003293 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003294{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003295 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003296 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003297 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003298
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003299 if (hw->mac.type == ixgbe_mac_82598EB) {
3300 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
3301
3302 /*
3303 * if VMDq is not active we must program one srrctl register
3304 * per RSS queue since we have enabled RDRXCTL.MVMEN
3305 */
3306 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08003307 }
3308
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003309 /* configure header buffer length, needed for RSC */
3310 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003311
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003312 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00003313 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003314
3315 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00003316 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003317
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003318 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003319}
3320
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003321/**
Jean Sacrena897a2a2015-09-19 05:08:44 -06003322 * ixgbe_rss_indir_tbl_entries - Return RSS indirection table entries
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003323 * @adapter: device handle
3324 *
3325 * - 82598/82599/X540: 128
3326 * - X550(non-SRIOV mode): 512
3327 * - X550(SRIOV mode): 64
3328 */
Vlad Zolotarov7f276ef2015-03-30 21:18:58 +03003329u32 ixgbe_rss_indir_tbl_entries(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003330{
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003331 if (adapter->hw.mac.type < ixgbe_mac_X550)
3332 return 128;
3333 else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3334 return 64;
3335 else
3336 return 512;
3337}
3338
3339/**
Jean Sacrena897a2a2015-09-19 05:08:44 -06003340 * ixgbe_store_reta - Write the RETA table to HW
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003341 * @adapter: device handle
3342 *
3343 * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3344 */
Tom Barbette1c7cf072015-06-26 15:40:18 +02003345void ixgbe_store_reta(struct ixgbe_adapter *adapter)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003346{
3347 u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
Alexander Duyck05abb122010-08-19 13:35:41 +00003348 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmored1b849b2014-11-09 06:42:57 +00003349 u32 reta = 0;
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003350 u32 indices_multi;
3351 u8 *indir_tbl = adapter->rss_indir_tbl;
John Fastabend86b4db32011-04-26 07:26:19 +00003352
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003353 /* Fill out the redirection table as follows:
3354 * - 82598: 8 bit wide entries containing pair of 4 bit RSS
3355 * indices.
3356 * - 82599/X540: 8 bit wide entries containing 4 bit RSS index
3357 * - X550: 8 bit wide entries containing 6 bit RSS index
3358 */
3359 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3360 indices_multi = 0x11;
3361 else
3362 indices_multi = 0x1;
3363
3364 /* Write redirection table to HW */
3365 for (i = 0; i < reta_entries; i++) {
3366 reta |= indices_multi * indir_tbl[i] << (i & 0x3) * 8;
3367 if ((i & 3) == 3) {
3368 if (i < 128)
3369 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3370 else
3371 IXGBE_WRITE_REG(hw, IXGBE_ERETA((i >> 2) - 32),
3372 reta);
3373 reta = 0;
3374 }
3375 }
3376}
3377
3378/**
Jean Sacrena897a2a2015-09-19 05:08:44 -06003379 * ixgbe_store_vfreta - Write the RETA table to HW (x550 devices in SRIOV mode)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003380 * @adapter: device handle
3381 *
3382 * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3383 */
3384static void ixgbe_store_vfreta(struct ixgbe_adapter *adapter)
3385{
3386 u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3387 struct ixgbe_hw *hw = &adapter->hw;
3388 u32 vfreta = 0;
3389 unsigned int pf_pool = adapter->num_vfs;
3390
3391 /* Write redirection table to HW */
3392 for (i = 0; i < reta_entries; i++) {
3393 vfreta |= (u32)adapter->rss_indir_tbl[i] << (i & 0x3) * 8;
3394 if ((i & 3) == 3) {
3395 IXGBE_WRITE_REG(hw, IXGBE_PFVFRETA(i >> 2, pf_pool),
3396 vfreta);
3397 vfreta = 0;
3398 }
3399 }
3400}
3401
3402static void ixgbe_setup_reta(struct ixgbe_adapter *adapter)
3403{
3404 struct ixgbe_hw *hw = &adapter->hw;
3405 u32 i, j;
3406 u32 reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3407 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
3408
3409 /* Program table for at least 2 queues w/ SR-IOV so that VFs can
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003410 * make full use of any rings they may have. We will use the
3411 * PSRTYPE register to control how many rings we use within the PF.
3412 */
3413 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
3414 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003415
Alexander Duyck05abb122010-08-19 13:35:41 +00003416 /* Fill out hash function seeds */
3417 for (i = 0; i < 10; i++)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003418 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), adapter->rss_key[i]);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003419
Alexander Duyck05abb122010-08-19 13:35:41 +00003420 /* Fill out redirection table */
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003421 memset(adapter->rss_indir_tbl, 0, sizeof(adapter->rss_indir_tbl));
3422
Don Skidmore0f9b2322014-11-18 09:35:08 +00003423 for (i = 0, j = 0; i < reta_entries; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003424 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00003425 j = 0;
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003426
3427 adapter->rss_indir_tbl[i] = j;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003428 }
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003429
3430 ixgbe_store_reta(adapter);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003431}
3432
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003433static void ixgbe_setup_vfreta(struct ixgbe_adapter *adapter)
Don Skidmore0f9b2322014-11-18 09:35:08 +00003434{
3435 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003436 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
3437 unsigned int pf_pool = adapter->num_vfs;
3438 int i, j;
3439
3440 /* Fill out hash function seeds */
3441 for (i = 0; i < 10; i++)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003442 IXGBE_WRITE_REG(hw, IXGBE_PFVFRSSRK(i, pf_pool),
3443 adapter->rss_key[i]);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003444
3445 /* Fill out the redirection table */
3446 for (i = 0, j = 0; i < 64; i++, j++) {
3447 if (j == rss_i)
3448 j = 0;
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003449
3450 adapter->rss_indir_tbl[i] = j;
Alexander Duyck05abb122010-08-19 13:35:41 +00003451 }
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003452
3453 ixgbe_store_vfreta(adapter);
Don Skidmored1b849b2014-11-09 06:42:57 +00003454}
3455
3456static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
3457{
3458 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003459 u32 mrqc = 0, rss_field = 0, vfmrqc = 0;
Don Skidmored1b849b2014-11-09 06:42:57 +00003460 u32 rxcsum;
Alexander Duyck05abb122010-08-19 13:35:41 +00003461
3462 /* Disable indicating checksum in descriptor, enables RSS hash */
3463 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3464 rxcsum |= IXGBE_RXCSUM_PCSD;
3465 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3466
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003467 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003468 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003469 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003470 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003471 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003472
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003473 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3474 if (tcs > 4)
3475 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3476 else if (tcs > 1)
3477 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
3478 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3479 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3480 else
3481 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3482 } else {
3483 if (tcs > 4)
3484 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3485 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003486 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3487 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003488 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003489 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003490 }
3491
Alexander Duyck05abb122010-08-19 13:35:41 +00003492 /* Perform hash on these packet types */
Don Skidmored1b849b2014-11-09 06:42:57 +00003493 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3494 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3495 IXGBE_MRQC_RSS_FIELD_IPV6 |
3496 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003497
Alexander Duyckef6afc02012-02-08 07:51:53 +00003498 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
Don Skidmored1b849b2014-11-09 06:42:57 +00003499 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
Alexander Duyckef6afc02012-02-08 07:51:53 +00003500 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
Don Skidmored1b849b2014-11-09 06:42:57 +00003501 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
Alexander Duyckef6afc02012-02-08 07:51:53 +00003502
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003503 netdev_rss_key_fill(adapter->rss_key, sizeof(adapter->rss_key));
Don Skidmore0f9b2322014-11-18 09:35:08 +00003504 if ((hw->mac.type >= ixgbe_mac_X550) &&
3505 (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) {
3506 unsigned int pf_pool = adapter->num_vfs;
3507
3508 /* Enable VF RSS mode */
3509 mrqc |= IXGBE_MRQC_MULTIPLE_RSS;
3510 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3511
3512 /* Setup RSS through the VF registers */
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003513 ixgbe_setup_vfreta(adapter);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003514 vfmrqc = IXGBE_MRQC_RSSEN;
3515 vfmrqc |= rss_field;
3516 IXGBE_WRITE_REG(hw, IXGBE_PFVFMRQC(pf_pool), vfmrqc);
3517 } else {
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003518 ixgbe_setup_reta(adapter);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003519 mrqc |= rss_field;
3520 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3521 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003522}
3523
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003524/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003525 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3526 * @adapter: address of board private structure
3527 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003528 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003529static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003530 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003531{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003532 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003533 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003534 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003535
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003536 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003537 return;
3538
Alexander Duyck73670962010-08-19 13:38:34 +00003539 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003540 rscctrl |= IXGBE_RSCCTL_RSCEN;
3541 /*
3542 * we must limit the number of descriptors so that the
3543 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003544 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003545 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003546 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003547 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003548}
3549
Alexander Duyck9e10e042010-08-19 13:40:06 +00003550#define IXGBE_MAX_RX_DESC_POLL 10
3551static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3552 struct ixgbe_ring *ring)
3553{
3554 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003555 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3556 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003557 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003558
Mark Rustadb0483c82014-01-14 18:53:17 -08003559 if (ixgbe_removed(hw->hw_addr))
3560 return;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003561 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3562 if (hw->mac.type == ixgbe_mac_82598EB &&
3563 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3564 return;
3565
3566 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003567 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003568 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3569 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3570
3571 if (!wait_loop) {
3572 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3573 "the polling period\n", reg_idx);
3574 }
3575}
3576
Yi Zou2d39d572011-01-06 14:29:56 +00003577void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3578 struct ixgbe_ring *ring)
3579{
3580 struct ixgbe_hw *hw = &adapter->hw;
3581 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3582 u32 rxdctl;
3583 u8 reg_idx = ring->reg_idx;
3584
Mark Rustadb0483c82014-01-14 18:53:17 -08003585 if (ixgbe_removed(hw->hw_addr))
3586 return;
Yi Zou2d39d572011-01-06 14:29:56 +00003587 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3588 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3589
3590 /* write value back with RXDCTL.ENABLE bit cleared */
3591 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3592
3593 if (hw->mac.type == ixgbe_mac_82598EB &&
3594 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3595 return;
3596
3597 /* the hardware may take up to 100us to really disable the rx queue */
3598 do {
3599 udelay(10);
3600 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3601 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3602
3603 if (!wait_loop) {
3604 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3605 "the polling period\n", reg_idx);
3606 }
3607}
3608
Alexander Duyck84418e32010-08-19 13:40:54 +00003609void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3610 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003611{
3612 struct ixgbe_hw *hw = &adapter->hw;
3613 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003614 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003615 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003616
Alexander Duyck9e10e042010-08-19 13:40:06 +00003617 /* disable queue to avoid issues while updating state */
3618 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003619 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003620
Alexander Duyckacd37172010-08-19 13:36:05 +00003621 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3622 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3623 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3624 ring->count * sizeof(union ixgbe_adv_rx_desc));
Neerav Parikh8b754512015-12-08 22:13:58 -08003625 /* Force flushing of IXGBE_RDLEN to prevent MDD */
3626 IXGBE_WRITE_FLUSH(hw);
3627
Alexander Duyckacd37172010-08-19 13:36:05 +00003628 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3629 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003630 ring->tail = adapter->io_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003631
3632 ixgbe_configure_srrctl(adapter, ring);
3633 ixgbe_configure_rscctl(adapter, ring);
3634
3635 if (hw->mac.type == ixgbe_mac_82598EB) {
3636 /*
3637 * enable cache line friendly hardware writes:
3638 * PTHRESH=32 descriptors (half the internal cache),
3639 * this also removes ugly rx_no_buffer_count increment
3640 * HTHRESH=4 descriptors (to minimize latency on fetch)
3641 * WTHRESH=8 burst writeback up to two cache lines
3642 */
3643 rxdctl &= ~0x3FFFFF;
3644 rxdctl |= 0x080420;
3645 }
3646
3647 /* enable receive descriptor ring */
3648 rxdctl |= IXGBE_RXDCTL_ENABLE;
3649 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3650
3651 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003652 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003653}
3654
Alexander Duyck48654522010-08-19 13:36:27 +00003655static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3656{
3657 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003658 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend2a47fa42013-11-06 09:54:52 -08003659 u16 pool;
Alexander Duyck48654522010-08-19 13:36:27 +00003660
3661 /* PSRTYPE must be initialized in non 82598 adapters */
3662 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003663 IXGBE_PSRTYPE_UDPHDR |
3664 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003665 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003666 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003667
3668 if (hw->mac.type == ixgbe_mac_82598EB)
3669 return;
3670
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003671 if (rss_i > 3)
3672 psrtype |= 2 << 29;
3673 else if (rss_i > 1)
3674 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003675
John Fastabend2a47fa42013-11-06 09:54:52 -08003676 for_each_set_bit(pool, &adapter->fwd_bitmask, 32)
3677 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
Alexander Duyck48654522010-08-19 13:36:27 +00003678}
3679
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003680static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3681{
3682 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003683 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003684 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003685 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003686
3687 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3688 return;
3689
3690 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003691 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3692 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003693 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003694 vmdctl |= IXGBE_VT_CTL_REPLEN;
3695 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003696
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003697 vf_shift = VMDQ_P(0) % 32;
3698 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003699
3700 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003701 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3702 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3703 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3704 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Don Skidmoreaa2bacb2015-04-09 22:03:22 -07003705 if (adapter->bridge_mode == BRIDGE_MODE_VEB)
Greg Rose9b735982012-11-08 02:41:35 +00003706 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003707
3708 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003709 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003710
Alexander Duyck16369562015-11-02 17:10:13 -08003711 /* clear VLAN promisc flag so VFTA will be updated if necessary */
3712 adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC;
3713
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003714 /*
3715 * Set up VF register offsets for selected VT Mode,
3716 * i.e. 32 or 64 VFs for SR-IOV
3717 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003718 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3719 case IXGBE_82599_VMDQ_8Q_MASK:
3720 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3721 break;
3722 case IXGBE_82599_VMDQ_4Q_MASK:
3723 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3724 break;
3725 default:
3726 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3727 break;
3728 }
3729
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003730 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3731
Alexander Duyck435b19f2012-05-18 06:34:08 +00003732
Greg Rosea985b6c32010-11-18 03:02:52 +00003733 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003734 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003735 adapter->num_vfs);
Don Skidmore5b7f0002015-01-28 07:03:38 +00003736
Emil Tantilovf079fa02015-08-20 15:31:20 -07003737 /* Ensure LLDP and FC is set for Ethertype Antispoofing if we will be
Don Skidmore5b7f0002015-01-28 07:03:38 +00003738 * calling set_ethertype_anti_spoofing for each VF in loop below
3739 */
Emil Tantilovf079fa02015-08-20 15:31:20 -07003740 if (hw->mac.ops.set_ethertype_anti_spoofing) {
Don Skidmore5b7f0002015-01-28 07:03:38 +00003741 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_LLDP),
Emil Tantilovf079fa02015-08-20 15:31:20 -07003742 (IXGBE_ETQF_FILTER_EN |
3743 IXGBE_ETQF_TX_ANTISPOOF |
3744 IXGBE_ETH_P_LLDP));
3745
3746 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FC),
3747 (IXGBE_ETQF_FILTER_EN |
3748 IXGBE_ETQF_TX_ANTISPOOF |
3749 ETH_P_PAUSE));
3750 }
Don Skidmore5b7f0002015-01-28 07:03:38 +00003751
Greg Rosede4c7f62011-09-29 05:57:33 +00003752 /* For VFs that have spoof checking turned off */
3753 for (i = 0; i < adapter->num_vfs; i++) {
3754 if (!adapter->vfinfo[i].spoofchk_enabled)
3755 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
Don Skidmore5b7f0002015-01-28 07:03:38 +00003756
3757 /* enable ethertype anti spoofing if hw supports it */
3758 if (hw->mac.ops.set_ethertype_anti_spoofing)
3759 hw->mac.ops.set_ethertype_anti_spoofing(hw, true, i);
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03003760
3761 /* Enable/Disable RSS query feature */
3762 ixgbe_ndo_set_vf_rss_query_en(adapter->netdev, i,
3763 adapter->vfinfo[i].rss_query_enabled);
Greg Rosede4c7f62011-09-29 05:57:33 +00003764 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003765}
3766
Alexander Duyck477de6e2010-08-19 13:38:11 +00003767static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003768{
Auke Kok9a799d72007-09-15 14:07:45 -07003769 struct ixgbe_hw *hw = &adapter->hw;
3770 struct net_device *netdev = adapter->netdev;
3771 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003772 struct ixgbe_ring *rx_ring;
3773 int i;
3774 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003775
Alexander Duyck477de6e2010-08-19 13:38:11 +00003776#ifdef IXGBE_FCOE
3777 /* adjust max frame to be able to do baby jumbo for FCoE */
3778 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3779 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3780 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3781
3782#endif /* IXGBE_FCOE */
Alexander Duyck872844d2012-08-15 02:10:43 +00003783
3784 /* adjust max frame to be at least the size of a standard frame */
3785 if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN))
3786 max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN);
3787
Alexander Duyck477de6e2010-08-19 13:38:11 +00003788 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3789 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3790 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3791 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3792
3793 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003794 }
3795
Auke Kok9a799d72007-09-15 14:07:45 -07003796 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003797 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3798 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003799 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3800
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003801 /*
3802 * Setup the HW Rx Head and Tail Descriptor Pointers and
3803 * the Base and Length of the Rx Descriptor Ring
3804 */
Auke Kok9a799d72007-09-15 14:07:45 -07003805 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003806 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003807 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3808 set_ring_rsc_enabled(rx_ring);
3809 else
3810 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003811 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003812}
3813
Alexander Duyck73670962010-08-19 13:38:34 +00003814static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3815{
3816 struct ixgbe_hw *hw = &adapter->hw;
3817 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3818
3819 switch (hw->mac.type) {
3820 case ixgbe_mac_82598EB:
3821 /*
3822 * For VMDq support of different descriptor types or
3823 * buffer sizes through the use of multiple SRRCTL
3824 * registers, RDRXCTL.MVMEN must be set to 1
3825 *
3826 * also, the manual doesn't mention it clearly but DCA hints
3827 * will only use queue 0's tags unless this bit is set. Side
3828 * effects of setting this bit are only that SRRCTL must be
3829 * fully programmed [0..15]
3830 */
3831 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3832 break;
Mark Rustad052a1a72015-08-08 16:19:04 -07003833 case ixgbe_mac_X550:
3834 case ixgbe_mac_X550EM_x:
Mark Rustadf961dda2015-08-08 16:19:09 -07003835 if (adapter->num_vfs)
3836 rdrxctl |= IXGBE_RDRXCTL_PSP;
3837 /* fall through for older HW */
Alexander Duyck73670962010-08-19 13:38:34 +00003838 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003839 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003840 /* Disable RSC for ACK packets */
3841 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3842 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3843 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3844 /* hardware requires some bits to be set by default */
3845 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3846 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3847 break;
3848 default:
3849 /* We should do nothing since we don't know this hardware */
3850 return;
3851 }
3852
3853 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3854}
3855
Alexander Duyck477de6e2010-08-19 13:38:11 +00003856/**
3857 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3858 * @adapter: board private structure
3859 *
3860 * Configure the Rx unit of the MAC after a reset.
3861 **/
3862static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3863{
3864 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003865 int i;
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003866 u32 rxctrl, rfctl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003867
3868 /* disable receives while setting up the descriptors */
Don Skidmore1f9ac572015-03-13 13:54:30 -07003869 hw->mac.ops.disable_rx(hw);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003870
3871 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003872 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003873
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003874 /* RSC Setup */
3875 rfctl = IXGBE_READ_REG(hw, IXGBE_RFCTL);
3876 rfctl &= ~IXGBE_RFCTL_RSC_DIS;
3877 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
3878 rfctl |= IXGBE_RFCTL_RSC_DIS;
3879 IXGBE_WRITE_REG(hw, IXGBE_RFCTL, rfctl);
3880
Alexander Duyck9e10e042010-08-19 13:40:06 +00003881 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003882 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003883
Alexander Duyck477de6e2010-08-19 13:38:11 +00003884 /* set_rx_buffer_len must be called before ring initialization */
3885 ixgbe_set_rx_buffer_len(adapter);
3886
3887 /*
3888 * Setup the HW Rx Head and Tail Descriptor Pointers and
3889 * the Base and Length of the Rx Descriptor Ring
3890 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003891 for (i = 0; i < adapter->num_rx_queues; i++)
3892 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003893
Don Skidmore1f9ac572015-03-13 13:54:30 -07003894 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003895 /* disable drop enable for 82598 parts */
3896 if (hw->mac.type == ixgbe_mac_82598EB)
3897 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3898
3899 /* enable all receives */
3900 rxctrl |= IXGBE_RXCTRL_RXEN;
3901 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003902}
3903
Patrick McHardy80d5c362013-04-19 02:04:28 +00003904static int ixgbe_vlan_rx_add_vid(struct net_device *netdev,
3905 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003906{
3907 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003908 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003909
3910 /* add VID to filter table */
Alexander Duyckb6488b62015-11-02 17:10:01 -08003911 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003912 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003913
3914 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003915}
3916
Alexander Duycke1d0a2a2015-11-02 17:10:19 -08003917static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
3918{
3919 u32 vlvf;
3920 int idx;
3921
3922 /* short cut the special case */
3923 if (vlan == 0)
3924 return 0;
3925
3926 /* Search for the vlan id in the VLVF entries */
3927 for (idx = IXGBE_VLVF_ENTRIES; --idx;) {
3928 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(idx));
3929 if ((vlvf & VLAN_VID_MASK) == vlan)
3930 break;
3931 }
3932
3933 return idx;
3934}
3935
3936void ixgbe_update_pf_promisc_vlvf(struct ixgbe_adapter *adapter, u32 vid)
3937{
3938 struct ixgbe_hw *hw = &adapter->hw;
3939 u32 bits, word;
3940 int idx;
3941
3942 idx = ixgbe_find_vlvf_entry(hw, vid);
3943 if (!idx)
3944 return;
3945
3946 /* See if any other pools are set for this VLAN filter
3947 * entry other than the PF.
3948 */
3949 word = idx * 2 + (VMDQ_P(0) / 32);
3950 bits = ~(1 << (VMDQ_P(0)) % 32);
3951 bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
3952
3953 /* Disable the filter so this falls into the default pool. */
3954 if (!bits && !IXGBE_READ_REG(hw, IXGBE_VLVFB(word ^ 1))) {
3955 if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
3956 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), 0);
3957 IXGBE_WRITE_REG(hw, IXGBE_VLVF(idx), 0);
3958 }
3959}
3960
Patrick McHardy80d5c362013-04-19 02:04:28 +00003961static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev,
3962 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003963{
3964 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003965 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003966
Auke Kok9a799d72007-09-15 14:07:45 -07003967 /* remove VID from filter table */
Alexander Duycke1d0a2a2015-11-02 17:10:19 -08003968 if (adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)
3969 ixgbe_update_pf_promisc_vlvf(adapter, vid);
3970 else
3971 hw->mac.ops.set_vfta(hw, vid, VMDQ_P(0), false, true);
3972
Jesse Grossf62bbb52010-10-20 13:56:10 +00003973 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003974
3975 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003976}
3977
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003978/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003979 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3980 * @adapter: driver data
3981 */
3982static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3983{
3984 struct ixgbe_hw *hw = &adapter->hw;
3985 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003986 int i, j;
3987
3988 switch (hw->mac.type) {
3989 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003990 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3991 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003992 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3993 break;
3994 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003995 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003996 case ixgbe_mac_X550:
3997 case ixgbe_mac_X550EM_x:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003998 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08003999 struct ixgbe_ring *ring = adapter->rx_ring[i];
4000
4001 if (ring->l2_accel_priv)
4002 continue;
4003 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004004 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
4005 vlnctrl &= ~IXGBE_RXDCTL_VME;
4006 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
4007 }
4008 break;
4009 default:
4010 break;
4011 }
4012}
4013
4014/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00004015 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004016 * @adapter: driver data
4017 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00004018static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004019{
4020 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00004021 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004022 int i, j;
4023
4024 switch (hw->mac.type) {
4025 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00004026 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4027 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004028 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4029 break;
4030 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004031 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004032 case ixgbe_mac_X550:
4033 case ixgbe_mac_X550EM_x:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004034 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08004035 struct ixgbe_ring *ring = adapter->rx_ring[i];
4036
4037 if (ring->l2_accel_priv)
4038 continue;
4039 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004040 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
4041 vlnctrl |= IXGBE_RXDCTL_VME;
4042 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
4043 }
4044 break;
4045 default:
4046 break;
4047 }
4048}
4049
Alexander Duyck16369562015-11-02 17:10:13 -08004050static void ixgbe_vlan_promisc_enable(struct ixgbe_adapter *adapter)
4051{
4052 struct ixgbe_hw *hw = &adapter->hw;
4053 u32 vlnctrl, i;
4054
4055 switch (hw->mac.type) {
4056 case ixgbe_mac_82599EB:
4057 case ixgbe_mac_X540:
4058 case ixgbe_mac_X550:
4059 case ixgbe_mac_X550EM_x:
4060 default:
4061 if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED)
4062 break;
4063 /* fall through */
4064 case ixgbe_mac_82598EB:
4065 /* legacy case, we can just disable VLAN filtering */
4066 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4067 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
4068 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4069 return;
4070 }
4071
4072 /* We are already in VLAN promisc, nothing to do */
4073 if (adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)
4074 return;
4075
4076 /* Set flag so we don't redo unnecessary work */
4077 adapter->flags2 |= IXGBE_FLAG2_VLAN_PROMISC;
4078
4079 /* Add PF to all active pools */
4080 for (i = IXGBE_VLVF_ENTRIES; --i;) {
4081 u32 reg_offset = IXGBE_VLVFB(i * 2 + VMDQ_P(0) / 32);
4082 u32 vlvfb = IXGBE_READ_REG(hw, reg_offset);
4083
4084 vlvfb |= 1 << (VMDQ_P(0) % 32);
4085 IXGBE_WRITE_REG(hw, reg_offset, vlvfb);
4086 }
4087
4088 /* Set all bits in the VLAN filter table array */
4089 for (i = hw->mac.vft_size; i--;)
4090 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), ~0U);
4091}
4092
4093#define VFTA_BLOCK_SIZE 8
4094static void ixgbe_scrub_vfta(struct ixgbe_adapter *adapter, u32 vfta_offset)
4095{
4096 struct ixgbe_hw *hw = &adapter->hw;
4097 u32 vfta[VFTA_BLOCK_SIZE] = { 0 };
4098 u32 vid_start = vfta_offset * 32;
4099 u32 vid_end = vid_start + (VFTA_BLOCK_SIZE * 32);
4100 u32 i, vid, word, bits;
4101
4102 for (i = IXGBE_VLVF_ENTRIES; --i;) {
4103 u32 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(i));
4104
4105 /* pull VLAN ID from VLVF */
4106 vid = vlvf & VLAN_VID_MASK;
4107
4108 /* only concern outselves with a certain range */
4109 if (vid < vid_start || vid >= vid_end)
4110 continue;
4111
4112 if (vlvf) {
4113 /* record VLAN ID in VFTA */
4114 vfta[(vid - vid_start) / 32] |= 1 << (vid % 32);
4115
4116 /* if PF is part of this then continue */
4117 if (test_bit(vid, adapter->active_vlans))
4118 continue;
4119 }
4120
4121 /* remove PF from the pool */
4122 word = i * 2 + VMDQ_P(0) / 32;
4123 bits = ~(1 << (VMDQ_P(0) % 32));
4124 bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
4125 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), bits);
4126 }
4127
4128 /* extract values from active_vlans and write back to VFTA */
4129 for (i = VFTA_BLOCK_SIZE; i--;) {
4130 vid = (vfta_offset + i) * 32;
4131 word = vid / BITS_PER_LONG;
4132 bits = vid % BITS_PER_LONG;
4133
4134 vfta[i] |= adapter->active_vlans[word] >> bits;
4135
4136 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vfta_offset + i), vfta[i]);
4137 }
4138}
4139
4140static void ixgbe_vlan_promisc_disable(struct ixgbe_adapter *adapter)
4141{
4142 struct ixgbe_hw *hw = &adapter->hw;
4143 u32 vlnctrl, i;
4144
4145 switch (hw->mac.type) {
4146 case ixgbe_mac_82599EB:
4147 case ixgbe_mac_X540:
4148 case ixgbe_mac_X550:
4149 case ixgbe_mac_X550EM_x:
4150 default:
4151 if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED)
4152 break;
4153 /* fall through */
4154 case ixgbe_mac_82598EB:
4155 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4156 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
4157 vlnctrl |= IXGBE_VLNCTRL_VFE;
4158 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4159 return;
4160 }
4161
4162 /* We are not in VLAN promisc, nothing to do */
4163 if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4164 return;
4165
4166 /* Set flag so we don't redo unnecessary work */
4167 adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC;
4168
4169 for (i = 0; i < hw->mac.vft_size; i += VFTA_BLOCK_SIZE)
4170 ixgbe_scrub_vfta(adapter, i);
4171}
4172
Auke Kok9a799d72007-09-15 14:07:45 -07004173static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
4174{
Jesse Grossf62bbb52010-10-20 13:56:10 +00004175 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07004176
Patrick McHardy80d5c362013-04-19 02:04:28 +00004177 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004178
4179 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00004180 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kok9a799d72007-09-15 14:07:45 -07004181}
4182
4183/**
Jacob Kellerb335e752014-03-25 07:45:27 +00004184 * ixgbe_write_mc_addr_list - write multicast addresses to MTA
4185 * @netdev: network interface device structure
4186 *
4187 * Writes multicast address list to the MTA hash table.
4188 * Returns: -ENOMEM on failure
4189 * 0 on no addresses written
4190 * X on writing X addresses to MTA
4191 **/
4192static int ixgbe_write_mc_addr_list(struct net_device *netdev)
4193{
4194 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4195 struct ixgbe_hw *hw = &adapter->hw;
4196
4197 if (!netif_running(netdev))
4198 return 0;
4199
4200 if (hw->mac.ops.update_mc_addr_list)
4201 hw->mac.ops.update_mc_addr_list(hw, netdev);
4202 else
4203 return -ENOMEM;
4204
4205#ifdef CONFIG_PCI_IOV
Jacob Keller5d7daa32014-03-29 06:51:25 +00004206 ixgbe_restore_vf_multicasts(adapter);
Jacob Kellerb335e752014-03-25 07:45:27 +00004207#endif
4208
4209 return netdev_mc_count(netdev);
4210}
4211
Jacob Keller5d7daa32014-03-29 06:51:25 +00004212#ifdef CONFIG_PCI_IOV
4213void ixgbe_full_sync_mac_table(struct ixgbe_adapter *adapter)
4214{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004215 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004216 struct ixgbe_hw *hw = &adapter->hw;
4217 int i;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004218
4219 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4220 mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED;
4221
4222 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4223 hw->mac.ops.set_rar(hw, i,
4224 mac_table->addr,
4225 mac_table->pool,
Jacob Keller5d7daa32014-03-29 06:51:25 +00004226 IXGBE_RAH_AV);
4227 else
4228 hw->mac.ops.clear_rar(hw, i);
Jacob Keller5d7daa32014-03-29 06:51:25 +00004229 }
4230}
Jacob Keller5d7daa32014-03-29 06:51:25 +00004231
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004232#endif
Jacob Keller5d7daa32014-03-29 06:51:25 +00004233static void ixgbe_sync_mac_table(struct ixgbe_adapter *adapter)
4234{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004235 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004236 struct ixgbe_hw *hw = &adapter->hw;
4237 int i;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004238
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004239 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4240 if (!(mac_table->state & IXGBE_MAC_STATE_MODIFIED))
4241 continue;
4242
4243 mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED;
4244
4245 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4246 hw->mac.ops.set_rar(hw, i,
4247 mac_table->addr,
4248 mac_table->pool,
4249 IXGBE_RAH_AV);
4250 else
4251 hw->mac.ops.clear_rar(hw, i);
Jacob Keller5d7daa32014-03-29 06:51:25 +00004252 }
4253}
4254
4255static void ixgbe_flush_sw_mac_table(struct ixgbe_adapter *adapter)
4256{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004257 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004258 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004259 int i;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004260
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004261 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4262 mac_table->state |= IXGBE_MAC_STATE_MODIFIED;
4263 mac_table->state &= ~IXGBE_MAC_STATE_IN_USE;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004264 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004265
Jacob Keller5d7daa32014-03-29 06:51:25 +00004266 ixgbe_sync_mac_table(adapter);
4267}
4268
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004269static int ixgbe_available_rars(struct ixgbe_adapter *adapter, u16 pool)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004270{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004271 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004272 struct ixgbe_hw *hw = &adapter->hw;
4273 int i, count = 0;
4274
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004275 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4276 /* do not count default RAR as available */
4277 if (mac_table->state & IXGBE_MAC_STATE_DEFAULT)
4278 continue;
4279
4280 /* only count unused and addresses that belong to us */
4281 if (mac_table->state & IXGBE_MAC_STATE_IN_USE) {
4282 if (mac_table->pool != pool)
4283 continue;
4284 }
4285
4286 count++;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004287 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004288
Jacob Keller5d7daa32014-03-29 06:51:25 +00004289 return count;
4290}
4291
4292/* this function destroys the first RAR entry */
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004293static void ixgbe_mac_set_default_filter(struct ixgbe_adapter *adapter)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004294{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004295 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004296 struct ixgbe_hw *hw = &adapter->hw;
4297
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004298 memcpy(&mac_table->addr, hw->mac.addr, ETH_ALEN);
4299 mac_table->pool = VMDQ_P(0);
4300
4301 mac_table->state = IXGBE_MAC_STATE_DEFAULT | IXGBE_MAC_STATE_IN_USE;
4302
4303 hw->mac.ops.set_rar(hw, 0, mac_table->addr, mac_table->pool,
Jacob Keller5d7daa32014-03-29 06:51:25 +00004304 IXGBE_RAH_AV);
4305}
4306
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004307int ixgbe_add_mac_filter(struct ixgbe_adapter *adapter,
4308 const u8 *addr, u16 pool)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004309{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004310 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004311 struct ixgbe_hw *hw = &adapter->hw;
4312 int i;
4313
4314 if (is_zero_ether_addr(addr))
4315 return -EINVAL;
4316
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004317 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4318 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004319 continue;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004320
4321 ether_addr_copy(mac_table->addr, addr);
4322 mac_table->pool = pool;
4323
4324 mac_table->state |= IXGBE_MAC_STATE_MODIFIED |
4325 IXGBE_MAC_STATE_IN_USE;
4326
Jacob Keller5d7daa32014-03-29 06:51:25 +00004327 ixgbe_sync_mac_table(adapter);
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004328
Jacob Keller5d7daa32014-03-29 06:51:25 +00004329 return i;
4330 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004331
Jacob Keller5d7daa32014-03-29 06:51:25 +00004332 return -ENOMEM;
4333}
4334
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004335int ixgbe_del_mac_filter(struct ixgbe_adapter *adapter,
4336 const u8 *addr, u16 pool)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004337{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004338 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004339 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004340 int i;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004341
4342 if (is_zero_ether_addr(addr))
4343 return -EINVAL;
4344
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004345 /* search table for addr, if found clear IN_USE flag and sync */
4346 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4347 /* we can only delete an entry if it is in use */
4348 if (!(mac_table->state & IXGBE_MAC_STATE_IN_USE))
4349 continue;
4350 /* we only care about entries that belong to the given pool */
4351 if (mac_table->pool != pool)
4352 continue;
4353 /* we only care about a specific MAC address */
4354 if (!ether_addr_equal(addr, mac_table->addr))
4355 continue;
4356
4357 mac_table->state |= IXGBE_MAC_STATE_MODIFIED;
4358 mac_table->state &= ~IXGBE_MAC_STATE_IN_USE;
4359
4360 ixgbe_sync_mac_table(adapter);
4361
4362 return 0;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004363 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004364
Jacob Keller5d7daa32014-03-29 06:51:25 +00004365 return -ENOMEM;
4366}
Jacob Kellerb335e752014-03-25 07:45:27 +00004367/**
Alexander Duyck28500622010-06-15 09:25:48 +00004368 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
4369 * @netdev: network interface device structure
4370 *
4371 * Writes unicast address list to the RAR table.
4372 * Returns: -ENOMEM on failure/insufficient address space
4373 * 0 on no addresses written
4374 * X on writing X addresses to the RAR table
4375 **/
Jacob Keller5d7daa32014-03-29 06:51:25 +00004376static int ixgbe_write_uc_addr_list(struct net_device *netdev, int vfn)
Alexander Duyck28500622010-06-15 09:25:48 +00004377{
4378 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck28500622010-06-15 09:25:48 +00004379 int count = 0;
4380
4381 /* return ENOMEM indicating insufficient memory for addresses */
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004382 if (netdev_uc_count(netdev) > ixgbe_available_rars(adapter, vfn))
Alexander Duyck28500622010-06-15 09:25:48 +00004383 return -ENOMEM;
4384
John Fastabend95447462012-05-31 12:42:26 +00004385 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00004386 struct netdev_hw_addr *ha;
Alexander Duyck28500622010-06-15 09:25:48 +00004387 netdev_for_each_uc_addr(ha, netdev) {
Jacob Keller5d7daa32014-03-29 06:51:25 +00004388 ixgbe_del_mac_filter(adapter, ha->addr, vfn);
4389 ixgbe_add_mac_filter(adapter, ha->addr, vfn);
Alexander Duyck28500622010-06-15 09:25:48 +00004390 count++;
4391 }
4392 }
Alexander Duyck28500622010-06-15 09:25:48 +00004393 return count;
4394}
4395
Alexander Duyck0f079d22015-10-22 16:26:36 -07004396static int ixgbe_uc_sync(struct net_device *netdev, const unsigned char *addr)
4397{
4398 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4399 int ret;
4400
4401 ret = ixgbe_add_mac_filter(adapter, addr, VMDQ_P(0));
4402
4403 return min_t(int, ret, 0);
4404}
4405
4406static int ixgbe_uc_unsync(struct net_device *netdev, const unsigned char *addr)
4407{
4408 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4409
4410 ixgbe_del_mac_filter(adapter, addr, VMDQ_P(0));
4411
4412 return 0;
4413}
4414
Alexander Duyck28500622010-06-15 09:25:48 +00004415/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07004416 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07004417 * @netdev: network interface device structure
4418 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07004419 * The set_rx_method entry point is called whenever the unicast/multicast
4420 * address list or the network interface flags are updated. This routine is
4421 * responsible for configuring the hardware for proper unicast, multicast and
4422 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07004423 **/
Greg Rose7f870472010-01-09 02:25:29 +00004424void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07004425{
4426 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4427 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00004428 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
4429 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07004430
4431 /* Check for Promiscuous and All Multicast modes */
Auke Kok9a799d72007-09-15 14:07:45 -07004432 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4433
Alexander Duyckf5dc4422010-08-19 13:36:49 +00004434 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00004435 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00004436 fctrl |= IXGBE_FCTRL_BAM;
4437 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
4438 fctrl |= IXGBE_FCTRL_PMCF;
4439
Alexander Duyck28500622010-06-15 09:25:48 +00004440 /* clear the bits we are changing the status of */
4441 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Auke Kok9a799d72007-09-15 14:07:45 -07004442 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00004443 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07004444 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Jacob Kellerb335e752014-03-25 07:45:27 +00004445 vmolr |= IXGBE_VMOLR_MPE;
Alexander Duyck16369562015-11-02 17:10:13 -08004446 ixgbe_vlan_promisc_enable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004447 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07004448 if (netdev->flags & IFF_ALLMULTI) {
4449 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00004450 vmolr |= IXGBE_VMOLR_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07004451 }
Emil Tantilove433ea12010-05-13 17:33:00 +00004452 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck16369562015-11-02 17:10:13 -08004453 ixgbe_vlan_promisc_disable(adapter);
John Fastabend9dcb3732012-04-15 06:44:25 +00004454 }
4455
4456 /*
4457 * Write addresses to available RAR registers, if there is not
4458 * sufficient space to store all the addresses then enable
4459 * unicast promiscuous mode
4460 */
Alexander Duyck0f079d22015-10-22 16:26:36 -07004461 if (__dev_uc_sync(netdev, ixgbe_uc_sync, ixgbe_uc_unsync)) {
John Fastabend9dcb3732012-04-15 06:44:25 +00004462 fctrl |= IXGBE_FCTRL_UPE;
4463 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00004464 }
4465
Emil Tantilovcf789592013-10-26 08:13:20 +00004466 /* Write addresses to the MTA, if the attempt fails
4467 * then we should just turn on promiscuous mode so
4468 * that we can at least receive multicast traffic
4469 */
Jacob Kellerb335e752014-03-25 07:45:27 +00004470 count = ixgbe_write_mc_addr_list(netdev);
4471 if (count < 0) {
4472 fctrl |= IXGBE_FCTRL_MPE;
4473 vmolr |= IXGBE_VMOLR_MPE;
4474 } else if (count) {
4475 vmolr |= IXGBE_VMOLR_ROMPE;
4476 }
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004477
4478 if (hw->mac.type != ixgbe_mac_82598EB) {
4479 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00004480 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
4481 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004482 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07004483 }
4484
Ben Greear3f2d1c02012-03-08 08:28:41 +00004485 /* This is useful for sniffing bad packets. */
4486 if (adapter->netdev->features & NETIF_F_RXALL) {
4487 /* UPE and MPE will be handled by normal PROMISC logic
4488 * in e1000e_set_rx_mode */
4489 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
4490 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
4491 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
4492
4493 fctrl &= ~(IXGBE_FCTRL_DPF);
4494 /* NOTE: VLAN filtering is disabled by setting PROMISC */
4495 }
4496
Auke Kok9a799d72007-09-15 14:07:45 -07004497 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004498
Patrick McHardyf6469682013-04-19 02:04:27 +00004499 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Jesse Grossf62bbb52010-10-20 13:56:10 +00004500 ixgbe_vlan_strip_enable(adapter);
4501 else
4502 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004503}
4504
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004505static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
4506{
4507 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004508
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004509 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
4510 ixgbe_qv_init_lock(adapter->q_vector[q_idx]);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004511 napi_enable(&adapter->q_vector[q_idx]->napi);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004512 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004513}
4514
4515static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
4516{
4517 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004518
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004519 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004520 napi_disable(&adapter->q_vector[q_idx]->napi);
Jacob Keller27d9ce42013-09-21 05:05:44 +00004521 while (!ixgbe_qv_disable(adapter->q_vector[q_idx])) {
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004522 pr_info("QV %d locked\n", q_idx);
Jacob Keller27d9ce42013-09-21 05:05:44 +00004523 usleep_range(1000, 20000);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004524 }
4525 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004526}
4527
Mark Rustad67359c32015-06-15 11:33:25 -07004528static void ixgbe_clear_vxlan_port(struct ixgbe_adapter *adapter)
4529{
4530 switch (adapter->hw.mac.type) {
4531 case ixgbe_mac_X550:
4532 case ixgbe_mac_X550EM_x:
4533 IXGBE_WRITE_REG(&adapter->hw, IXGBE_VXLANCTRL, 0);
Mark Rustad67359c32015-06-15 11:33:25 -07004534 adapter->vxlan_port = 0;
Mark Rustad67359c32015-06-15 11:33:25 -07004535 break;
4536 default:
4537 break;
4538 }
4539}
4540
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004541#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004542/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08004543 * ixgbe_configure_dcb - Configure DCB hardware
4544 * @adapter: ixgbe adapter struct
4545 *
4546 * This is called by the driver on open to configure the DCB hardware.
4547 * This is also called by the gennetlink interface when reconfiguring
4548 * the DCB state.
4549 */
4550static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
4551{
4552 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00004553 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004554
Alexander Duyck67ebd792010-08-19 13:34:04 +00004555 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
4556 if (hw->mac.type == ixgbe_mac_82598EB)
4557 netif_set_gso_max_size(adapter->netdev, 65536);
4558 return;
4559 }
4560
4561 if (hw->mac.type == ixgbe_mac_82598EB)
4562 netif_set_gso_max_size(adapter->netdev, 32768);
4563
John Fastabendb1208182011-10-15 05:00:10 +00004564#ifdef IXGBE_FCOE
4565 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
4566 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
4567#endif
4568
Alexander Duyck01fa7d92010-11-16 19:26:53 -08004569 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00004570 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00004571 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
4572 DCB_TX_CONFIG);
4573 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
4574 DCB_RX_CONFIG);
4575 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00004576 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
4577 ixgbe_dcb_hw_ets(&adapter->hw,
4578 adapter->ixgbe_ieee_ets,
4579 max_frame);
4580 ixgbe_dcb_hw_pfc_config(&adapter->hw,
4581 adapter->ixgbe_ieee_pfc->pfc_en,
4582 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00004583 }
John Fastabend8187cd42011-02-23 05:58:08 +00004584
4585 /* Enable RSS Hash per TC */
4586 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00004587 u32 msb = 0;
4588 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00004589
Alexander Duyckd411a932012-06-30 00:14:01 +00004590 while (rss_i) {
4591 msb++;
4592 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00004593 }
Alexander Duyckd411a932012-06-30 00:14:01 +00004594
Alexander Duyck4ae63732012-06-22 06:46:33 +00004595 /* write msb to all 8 TCs in one write */
4596 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00004597 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004598}
John Fastabend9da712d2011-08-23 03:14:22 +00004599#endif
4600
4601/* Additional bittime to account for IXGBE framing */
4602#define IXGBE_ETH_FRAMING 20
4603
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004604/**
John Fastabend9da712d2011-08-23 03:14:22 +00004605 * ixgbe_hpbthresh - calculate high water mark for flow control
4606 *
4607 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004608 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004609 */
4610static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
4611{
4612 struct ixgbe_hw *hw = &adapter->hw;
4613 struct net_device *dev = adapter->netdev;
4614 int link, tc, kb, marker;
4615 u32 dv_id, rx_pba;
4616
4617 /* Calculate max LAN frame size */
4618 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
4619
4620#ifdef IXGBE_FCOE
4621 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00004622 if ((dev->features & NETIF_F_FCOE_MTU) &&
4623 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
4624 (pb == ixgbe_fcoe_get_tc(adapter)))
4625 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004626#endif
Jacob Kellere5776622014-04-05 02:35:52 +00004627
John Fastabend9da712d2011-08-23 03:14:22 +00004628 /* Calculate delay value for device */
4629 switch (hw->mac.type) {
4630 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004631 case ixgbe_mac_X550:
4632 case ixgbe_mac_X550EM_x:
John Fastabend9da712d2011-08-23 03:14:22 +00004633 dv_id = IXGBE_DV_X540(link, tc);
4634 break;
4635 default:
4636 dv_id = IXGBE_DV(link, tc);
4637 break;
4638 }
4639
4640 /* Loopback switch introduces additional latency */
4641 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4642 dv_id += IXGBE_B2BT(tc);
4643
4644 /* Delay value is calculated in bit times convert to KB */
4645 kb = IXGBE_BT2KB(dv_id);
4646 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
4647
4648 marker = rx_pba - kb;
4649
4650 /* It is possible that the packet buffer is not large enough
4651 * to provide required headroom. In this case throw an error
4652 * to user and a do the best we can.
4653 */
4654 if (marker < 0) {
4655 e_warn(drv, "Packet Buffer(%i) can not provide enough"
4656 "headroom to support flow control."
4657 "Decrease MTU or number of traffic classes\n", pb);
4658 marker = tc + 1;
4659 }
4660
4661 return marker;
4662}
4663
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004664/**
John Fastabend9da712d2011-08-23 03:14:22 +00004665 * ixgbe_lpbthresh - calculate low water mark for for flow control
4666 *
4667 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004668 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004669 */
Jacob Kellere5776622014-04-05 02:35:52 +00004670static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter, int pb)
John Fastabend9da712d2011-08-23 03:14:22 +00004671{
4672 struct ixgbe_hw *hw = &adapter->hw;
4673 struct net_device *dev = adapter->netdev;
4674 int tc;
4675 u32 dv_id;
4676
4677 /* Calculate max LAN frame size */
4678 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
4679
Jacob Kellere5776622014-04-05 02:35:52 +00004680#ifdef IXGBE_FCOE
4681 /* FCoE traffic class uses FCOE jumbo frames */
4682 if ((dev->features & NETIF_F_FCOE_MTU) &&
4683 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
4684 (pb == netdev_get_prio_tc_map(dev, adapter->fcoe.up)))
4685 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
4686#endif
4687
John Fastabend9da712d2011-08-23 03:14:22 +00004688 /* Calculate delay value for device */
4689 switch (hw->mac.type) {
4690 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004691 case ixgbe_mac_X550:
4692 case ixgbe_mac_X550EM_x:
John Fastabend9da712d2011-08-23 03:14:22 +00004693 dv_id = IXGBE_LOW_DV_X540(tc);
4694 break;
4695 default:
4696 dv_id = IXGBE_LOW_DV(tc);
4697 break;
4698 }
4699
4700 /* Delay value is calculated in bit times convert to KB */
4701 return IXGBE_BT2KB(dv_id);
4702}
4703
4704/*
4705 * ixgbe_pbthresh_setup - calculate and setup high low water marks
4706 */
4707static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
4708{
4709 struct ixgbe_hw *hw = &adapter->hw;
4710 int num_tc = netdev_get_num_tc(adapter->netdev);
4711 int i;
4712
4713 if (!num_tc)
4714 num_tc = 1;
4715
John Fastabend9da712d2011-08-23 03:14:22 +00004716 for (i = 0; i < num_tc; i++) {
4717 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
Jacob Kellere5776622014-04-05 02:35:52 +00004718 hw->fc.low_water[i] = ixgbe_lpbthresh(adapter, i);
John Fastabend9da712d2011-08-23 03:14:22 +00004719
4720 /* Low water marks must not be larger than high water marks */
Jacob Kellere5776622014-04-05 02:35:52 +00004721 if (hw->fc.low_water[i] > hw->fc.high_water[i])
4722 hw->fc.low_water[i] = 0;
John Fastabend9da712d2011-08-23 03:14:22 +00004723 }
Jacob Kellere5776622014-04-05 02:35:52 +00004724
4725 for (; i < MAX_TRAFFIC_CLASS; i++)
4726 hw->fc.high_water[i] = 0;
John Fastabend9da712d2011-08-23 03:14:22 +00004727}
John Fastabend80605c652011-05-02 12:34:10 +00004728
4729static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
4730{
John Fastabend80605c652011-05-02 12:34:10 +00004731 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00004732 int hdrm;
4733 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00004734
4735 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4736 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00004737 hdrm = 32 << adapter->fdir_pballoc;
4738 else
4739 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00004740
Alexander Duyckf7e10272011-07-21 00:40:35 +00004741 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00004742 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00004743}
4744
Alexander Duycke4911d52011-05-11 07:18:52 +00004745static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
4746{
4747 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004748 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00004749 struct ixgbe_fdir_filter *filter;
4750
4751 spin_lock(&adapter->fdir_perfect_lock);
4752
4753 if (!hlist_empty(&adapter->fdir_filter_list))
4754 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
4755
Sasha Levinb67bfe02013-02-27 17:06:00 -08004756 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00004757 &adapter->fdir_filter_list, fdir_node) {
4758 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00004759 &filter->filter,
4760 filter->sw_idx,
4761 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
4762 IXGBE_FDIR_DROP_QUEUE :
4763 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00004764 }
4765
4766 spin_unlock(&adapter->fdir_perfect_lock);
4767}
4768
John Fastabend2a47fa42013-11-06 09:54:52 -08004769static void ixgbe_macvlan_set_rx_mode(struct net_device *dev, unsigned int pool,
4770 struct ixgbe_adapter *adapter)
4771{
4772 struct ixgbe_hw *hw = &adapter->hw;
4773 u32 vmolr;
4774
4775 /* No unicast promiscuous support for VMDQ devices. */
4776 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
4777 vmolr |= (IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
4778
4779 /* clear the affected bit */
4780 vmolr &= ~IXGBE_VMOLR_MPE;
4781
4782 if (dev->flags & IFF_ALLMULTI) {
4783 vmolr |= IXGBE_VMOLR_MPE;
4784 } else {
4785 vmolr |= IXGBE_VMOLR_ROMPE;
4786 hw->mac.ops.update_mc_addr_list(hw, dev);
4787 }
Jacob Keller5d7daa32014-03-29 06:51:25 +00004788 ixgbe_write_uc_addr_list(adapter->netdev, pool);
John Fastabend2a47fa42013-11-06 09:54:52 -08004789 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
4790}
4791
John Fastabend2a47fa42013-11-06 09:54:52 -08004792static void ixgbe_fwd_psrtype(struct ixgbe_fwd_adapter *vadapter)
4793{
4794 struct ixgbe_adapter *adapter = vadapter->real_adapter;
John Fastabend219354d2013-11-08 00:50:32 -08004795 int rss_i = adapter->num_rx_queues_per_pool;
John Fastabend2a47fa42013-11-06 09:54:52 -08004796 struct ixgbe_hw *hw = &adapter->hw;
4797 u16 pool = vadapter->pool;
4798 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
4799 IXGBE_PSRTYPE_UDPHDR |
4800 IXGBE_PSRTYPE_IPV4HDR |
4801 IXGBE_PSRTYPE_L2HDR |
4802 IXGBE_PSRTYPE_IPV6HDR;
4803
4804 if (hw->mac.type == ixgbe_mac_82598EB)
4805 return;
4806
4807 if (rss_i > 3)
4808 psrtype |= 2 << 29;
4809 else if (rss_i > 1)
4810 psrtype |= 1 << 29;
4811
4812 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
4813}
4814
4815/**
4816 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
4817 * @rx_ring: ring to free buffers from
4818 **/
4819static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
4820{
4821 struct device *dev = rx_ring->dev;
4822 unsigned long size;
4823 u16 i;
4824
4825 /* ring already cleared, nothing to do */
4826 if (!rx_ring->rx_buffer_info)
4827 return;
4828
4829 /* Free all the Rx ring sk_buffs */
4830 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyck18cb6522014-11-14 00:56:29 +00004831 struct ixgbe_rx_buffer *rx_buffer = &rx_ring->rx_buffer_info[i];
John Fastabend2a47fa42013-11-06 09:54:52 -08004832
John Fastabend2a47fa42013-11-06 09:54:52 -08004833 if (rx_buffer->skb) {
4834 struct sk_buff *skb = rx_buffer->skb;
Alexander Duyck18cb6522014-11-14 00:56:29 +00004835 if (IXGBE_CB(skb)->page_released)
John Fastabend2a47fa42013-11-06 09:54:52 -08004836 dma_unmap_page(dev,
4837 IXGBE_CB(skb)->dma,
4838 ixgbe_rx_bufsz(rx_ring),
4839 DMA_FROM_DEVICE);
John Fastabend2a47fa42013-11-06 09:54:52 -08004840 dev_kfree_skb(skb);
Junwei Zhang4d2fcfb2014-10-22 15:29:03 +00004841 rx_buffer->skb = NULL;
John Fastabend2a47fa42013-11-06 09:54:52 -08004842 }
Alexander Duyck18cb6522014-11-14 00:56:29 +00004843
4844 if (!rx_buffer->page)
4845 continue;
4846
4847 dma_unmap_page(dev, rx_buffer->dma,
4848 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
4849 __free_pages(rx_buffer->page, ixgbe_rx_pg_order(rx_ring));
4850
John Fastabend2a47fa42013-11-06 09:54:52 -08004851 rx_buffer->page = NULL;
4852 }
4853
4854 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4855 memset(rx_ring->rx_buffer_info, 0, size);
4856
4857 /* Zero out the descriptor ring */
4858 memset(rx_ring->desc, 0, rx_ring->size);
4859
4860 rx_ring->next_to_alloc = 0;
4861 rx_ring->next_to_clean = 0;
4862 rx_ring->next_to_use = 0;
4863}
4864
4865static void ixgbe_disable_fwd_ring(struct ixgbe_fwd_adapter *vadapter,
4866 struct ixgbe_ring *rx_ring)
4867{
4868 struct ixgbe_adapter *adapter = vadapter->real_adapter;
4869 int index = rx_ring->queue_index + vadapter->rx_base_queue;
4870
4871 /* shutdown specific queue receive and wait for dma to settle */
4872 ixgbe_disable_rx_queue(adapter, rx_ring);
4873 usleep_range(10000, 20000);
4874 ixgbe_irq_disable_queues(adapter, ((u64)1 << index));
4875 ixgbe_clean_rx_ring(rx_ring);
4876 rx_ring->l2_accel_priv = NULL;
4877}
4878
John Fastabendae72c8d2013-11-09 07:11:26 +00004879static int ixgbe_fwd_ring_down(struct net_device *vdev,
4880 struct ixgbe_fwd_adapter *accel)
John Fastabend2a47fa42013-11-06 09:54:52 -08004881{
4882 struct ixgbe_adapter *adapter = accel->real_adapter;
4883 unsigned int rxbase = accel->rx_base_queue;
4884 unsigned int txbase = accel->tx_base_queue;
4885 int i;
4886
4887 netif_tx_stop_all_queues(vdev);
4888
4889 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4890 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4891 adapter->rx_ring[rxbase + i]->netdev = adapter->netdev;
4892 }
4893
4894 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4895 adapter->tx_ring[txbase + i]->l2_accel_priv = NULL;
4896 adapter->tx_ring[txbase + i]->netdev = adapter->netdev;
4897 }
4898
4899
4900 return 0;
4901}
4902
4903static int ixgbe_fwd_ring_up(struct net_device *vdev,
4904 struct ixgbe_fwd_adapter *accel)
4905{
4906 struct ixgbe_adapter *adapter = accel->real_adapter;
4907 unsigned int rxbase, txbase, queues;
4908 int i, baseq, err = 0;
4909
4910 if (!test_bit(accel->pool, &adapter->fwd_bitmask))
4911 return 0;
4912
4913 baseq = accel->pool * adapter->num_rx_queues_per_pool;
4914 netdev_dbg(vdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
4915 accel->pool, adapter->num_rx_pools,
4916 baseq, baseq + adapter->num_rx_queues_per_pool,
4917 adapter->fwd_bitmask);
4918
4919 accel->netdev = vdev;
4920 accel->rx_base_queue = rxbase = baseq;
4921 accel->tx_base_queue = txbase = baseq;
4922
4923 for (i = 0; i < adapter->num_rx_queues_per_pool; i++)
4924 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4925
4926 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4927 adapter->rx_ring[rxbase + i]->netdev = vdev;
4928 adapter->rx_ring[rxbase + i]->l2_accel_priv = accel;
4929 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[rxbase + i]);
4930 }
4931
4932 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4933 adapter->tx_ring[txbase + i]->netdev = vdev;
4934 adapter->tx_ring[txbase + i]->l2_accel_priv = accel;
4935 }
4936
4937 queues = min_t(unsigned int,
4938 adapter->num_rx_queues_per_pool, vdev->num_tx_queues);
4939 err = netif_set_real_num_tx_queues(vdev, queues);
4940 if (err)
4941 goto fwd_queue_err;
4942
John Fastabend2a47fa42013-11-06 09:54:52 -08004943 err = netif_set_real_num_rx_queues(vdev, queues);
4944 if (err)
4945 goto fwd_queue_err;
4946
4947 if (is_valid_ether_addr(vdev->dev_addr))
4948 ixgbe_add_mac_filter(adapter, vdev->dev_addr, accel->pool);
4949
4950 ixgbe_fwd_psrtype(accel);
4951 ixgbe_macvlan_set_rx_mode(vdev, accel->pool, adapter);
4952 return err;
4953fwd_queue_err:
4954 ixgbe_fwd_ring_down(vdev, accel);
4955 return err;
4956}
4957
4958static void ixgbe_configure_dfwd(struct ixgbe_adapter *adapter)
4959{
4960 struct net_device *upper;
4961 struct list_head *iter;
4962 int err;
4963
4964 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
4965 if (netif_is_macvlan(upper)) {
4966 struct macvlan_dev *dfwd = netdev_priv(upper);
4967 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
4968
4969 if (dfwd->fwd_priv) {
4970 err = ixgbe_fwd_ring_up(upper, vadapter);
4971 if (err)
4972 continue;
4973 }
4974 }
4975 }
4976}
4977
Auke Kok9a799d72007-09-15 14:07:45 -07004978static void ixgbe_configure(struct ixgbe_adapter *adapter)
4979{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004980 struct ixgbe_hw *hw = &adapter->hw;
4981
John Fastabend80605c652011-05-02 12:34:10 +00004982 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004983#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00004984 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08004985#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00004986 /*
4987 * We must restore virtualization before VLANs or else
4988 * the VLVF registers will not be populated
4989 */
4990 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004991
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00004992 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004993 ixgbe_restore_vlan(adapter);
4994
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00004995 switch (hw->mac.type) {
4996 case ixgbe_mac_82599EB:
4997 case ixgbe_mac_X540:
4998 hw->mac.ops.disable_rx_buff(hw);
4999 break;
5000 default:
5001 break;
5002 }
5003
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005004 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00005005 ixgbe_init_fdir_signature_82599(&adapter->hw,
5006 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00005007 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
5008 ixgbe_init_fdir_perfect_82599(&adapter->hw,
5009 adapter->fdir_pballoc);
5010 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005011 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00005012
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00005013 switch (hw->mac.type) {
5014 case ixgbe_mac_82599EB:
5015 case ixgbe_mac_X540:
5016 hw->mac.ops.enable_rx_buff(hw);
5017 break;
5018 default:
5019 break;
5020 }
5021
Mark Rustad9de76052015-08-08 16:27:41 -07005022#ifdef CONFIG_IXGBE_DCA
5023 /* configure DCA */
5024 if (adapter->flags & IXGBE_FLAG_DCA_CAPABLE)
5025 ixgbe_setup_dca(adapter);
5026#endif /* CONFIG_IXGBE_DCA */
5027
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005028#ifdef IXGBE_FCOE
5029 /* configure FCoE L2 filters, redirection table, and Rx control */
5030 ixgbe_configure_fcoe(adapter);
5031
5032#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07005033 ixgbe_configure_tx(adapter);
5034 ixgbe_configure_rx(adapter);
John Fastabend2a47fa42013-11-06 09:54:52 -08005035 ixgbe_configure_dfwd(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005036}
5037
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005038/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005039 * ixgbe_sfp_link_config - set up SFP+ link
5040 * @adapter: pointer to private adapter struct
5041 **/
5042static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
5043{
Alexander Duyck70864002011-04-27 09:13:56 +00005044 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005045 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00005046 * is that an SFP was inserted/removed after the reset
5047 * but before SFP detection was enabled. As such the best
5048 * solution is to just start searching as soon as we start
5049 */
5050 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5051 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005052
Alexander Duyck70864002011-04-27 09:13:56 +00005053 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
Mark Rustad58e7cd22015-08-08 16:18:48 -07005054 adapter->sfp_poll_time = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005055}
5056
5057/**
5058 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005059 * @hw: pointer to private hardware struct
5060 *
5061 * Returns 0 on success, negative on failure
5062 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005063static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005064{
Josh Hay3d292262012-12-15 03:28:19 +00005065 u32 speed;
5066 bool autoneg, link_up = false;
Mark Rustada1e869d2015-04-10 10:36:36 -07005067 int ret = IXGBE_ERR_LINK_SETUP;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005068
5069 if (hw->mac.ops.check_link)
Josh Hay3d292262012-12-15 03:28:19 +00005070 ret = hw->mac.ops.check_link(hw, &speed, &link_up, false);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005071
5072 if (ret)
Mark Rustade90dd262014-07-22 06:51:08 +00005073 return ret;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005074
Josh Hay3d292262012-12-15 03:28:19 +00005075 speed = hw->phy.autoneg_advertised;
5076 if ((!speed) && (hw->mac.ops.get_link_capabilities))
5077 ret = hw->mac.ops.get_link_capabilities(hw, &speed,
5078 &autoneg);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005079 if (ret)
Mark Rustade90dd262014-07-22 06:51:08 +00005080 return ret;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005081
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005082 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00005083 ret = hw->mac.ops.setup_link(hw, speed, link_up);
Mark Rustade90dd262014-07-22 06:51:08 +00005084
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005085 return ret;
5086}
5087
Alexander Duycka34bcff2010-08-19 13:39:20 +00005088static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005089{
Auke Kok9a799d72007-09-15 14:07:45 -07005090 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00005091 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005092
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005093 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00005094 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
5095 IXGBE_GPIE_OCD;
5096 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005097 /*
5098 * use EIAM to auto-mask when MSI-X interrupt is asserted
5099 * this saves a register write for every interrupt
5100 */
5101 switch (hw->mac.type) {
5102 case ixgbe_mac_82598EB:
5103 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5104 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005105 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005106 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005107 case ixgbe_mac_X550:
5108 case ixgbe_mac_X550EM_x:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005109 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005110 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5111 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5112 break;
5113 }
5114 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005115 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
5116 * specifically only auto mask tx and rx interrupts */
5117 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07005118 }
5119
Alexander Duycka34bcff2010-08-19 13:39:20 +00005120 /* XXX: to interrupt immediately for EICS writes, enable this */
5121 /* gpie |= IXGBE_GPIE_EIMEN; */
5122
5123 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
5124 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00005125
5126 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
5127 case IXGBE_82599_VMDQ_8Q_MASK:
5128 gpie |= IXGBE_GPIE_VTMODE_16;
5129 break;
5130 case IXGBE_82599_VMDQ_4Q_MASK:
5131 gpie |= IXGBE_GPIE_VTMODE_32;
5132 break;
5133 default:
5134 gpie |= IXGBE_GPIE_VTMODE_64;
5135 break;
5136 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005137 }
5138
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00005139 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00005140 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
5141 switch (adapter->hw.mac.type) {
5142 case ixgbe_mac_82599EB:
Don Skidmore9a900ec2015-06-09 17:15:01 -07005143 gpie |= IXGBE_SDP0_GPIEN_8259X;
Don Skidmoref3df98e2011-08-17 10:15:21 +00005144 break;
Don Skidmoref3df98e2011-08-17 10:15:21 +00005145 default:
5146 break;
5147 }
5148 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00005149
Alexander Duycka34bcff2010-08-19 13:39:20 +00005150 /* Enable fan failure interrupt */
5151 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Don Skidmore9a900ec2015-06-09 17:15:01 -07005152 gpie |= IXGBE_SDP1_GPIEN(hw);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07005153
Don Skidmorea023bbd2015-06-24 16:38:53 -04005154 switch (hw->mac.type) {
5155 case ixgbe_mac_82599EB:
5156 gpie |= IXGBE_SDP1_GPIEN_8259X | IXGBE_SDP2_GPIEN_8259X;
5157 break;
5158 case ixgbe_mac_X550EM_x:
5159 gpie |= IXGBE_SDP0_GPIEN_X540;
5160 break;
5161 default:
5162 break;
Don Skidmore2698b202011-04-13 07:01:52 +00005163 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00005164
5165 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
5166}
5167
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005168static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00005169{
5170 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00005171 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00005172 u32 ctrl_ext;
5173
5174 ixgbe_get_hw_control(adapter);
5175 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005176
Auke Kok9a799d72007-09-15 14:07:45 -07005177 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
5178 ixgbe_configure_msix(adapter);
5179 else
5180 ixgbe_configure_msi_and_legacy(adapter);
5181
Emil Tantilovec74a472012-09-20 03:33:56 +00005182 /* enable the optics for 82599 SFP+ fiber */
5183 if (hw->mac.ops.enable_tx_laser)
Peter Waskiewicz61fac742010-04-27 00:38:15 +00005184 hw->mac.ops.enable_tx_laser(hw);
5185
Don Skidmore961fac82015-06-09 16:09:47 -07005186 if (hw->phy.ops.set_phy_power)
5187 hw->phy.ops.set_phy_power(hw, true);
5188
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005189 smp_mb__before_atomic();
Auke Kok9a799d72007-09-15 14:07:45 -07005190 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005191 ixgbe_napi_enable_all(adapter);
5192
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08005193 if (ixgbe_is_sfp(hw)) {
5194 ixgbe_sfp_link_config(adapter);
5195 } else {
5196 err = ixgbe_non_sfp_link_config(hw);
5197 if (err)
5198 e_err(probe, "link_config FAILED %d\n", err);
5199 }
5200
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005201 /* clear any pending interrupts, may auto mask */
5202 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00005203 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07005204
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005205 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00005206 * If this adapter has a fan, check to see if we had a failure
5207 * before we enabled the interrupt.
5208 */
5209 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
5210 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
5211 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00005212 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00005213 }
5214
Auke Kok9a799d72007-09-15 14:07:45 -07005215 /* bring the link up in the watchdog, this could race with our first
5216 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005217 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5218 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00005219 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00005220
5221 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
5222 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
5223 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
5224 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07005225}
5226
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005227void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
5228{
5229 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00005230 /* put off any impending NetWatchDogTimeout */
5231 adapter->netdev->trans_start = jiffies;
5232
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005233 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00005234 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005235 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00005236 /*
5237 * If SR-IOV enabled then wait a bit before bringing the adapter
5238 * back up to give the VFs time to respond to the reset. The
5239 * two second wait is based upon the watchdog timer cycle in
5240 * the VF driver.
5241 */
5242 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
5243 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005244 ixgbe_up(adapter);
5245 clear_bit(__IXGBE_RESETTING, &adapter->state);
5246}
5247
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005248void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005249{
5250 /* hardware has been reset, we need to reload some things */
5251 ixgbe_configure(adapter);
5252
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005253 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005254}
5255
5256void ixgbe_reset(struct ixgbe_adapter *adapter)
5257{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005258 struct ixgbe_hw *hw = &adapter->hw;
Jacob Keller5d7daa32014-03-29 06:51:25 +00005259 struct net_device *netdev = adapter->netdev;
Don Skidmore8ca783a2009-05-26 20:40:47 -07005260 int err;
5261
Mark Rustadb0483c82014-01-14 18:53:17 -08005262 if (ixgbe_removed(hw->hw_addr))
5263 return;
Alexander Duyck70864002011-04-27 09:13:56 +00005264 /* lock SFP init bit to prevent race conditions with the watchdog */
5265 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5266 usleep_range(1000, 2000);
5267
5268 /* clear all SFP and link config related flags while holding SFP_INIT */
5269 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
5270 IXGBE_FLAG2_SFP_NEEDS_RESET);
5271 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5272
Don Skidmore8ca783a2009-05-26 20:40:47 -07005273 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005274 switch (err) {
5275 case 0:
5276 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00005277 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005278 break;
5279 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00005280 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005281 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00005282 case IXGBE_ERR_EEPROM_VERSION:
5283 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00005284 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005285 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00005286 "your hardware. If you are experiencing problems "
5287 "please contact your Intel or hardware "
5288 "representative who provided you with this "
5289 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00005290 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005291 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00005292 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005293 }
Auke Kok9a799d72007-09-15 14:07:45 -07005294
Alexander Duyck70864002011-04-27 09:13:56 +00005295 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
Alexander Duyck0f079d22015-10-22 16:26:36 -07005296
5297 /* flush entries out of MAC table */
Jacob Keller5d7daa32014-03-29 06:51:25 +00005298 ixgbe_flush_sw_mac_table(adapter);
Alexander Duyck0f079d22015-10-22 16:26:36 -07005299 __dev_uc_unsync(netdev, NULL);
5300
5301 /* do not flush user set addresses */
Alexander Duyckc9f53e62015-10-22 16:26:30 -07005302 ixgbe_mac_set_default_filter(adapter);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00005303
5304 /* update SAN MAC vmdq pool selection */
5305 if (hw->mac.san_mac_rar_index)
5306 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Jacob Keller1a71ab22012-08-25 03:54:19 +00005307
Jacob Keller8fecf672013-06-21 08:14:32 +00005308 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00005309 ixgbe_ptp_reset(adapter);
Don Skidmore961fac82015-06-09 16:09:47 -07005310
5311 if (hw->phy.ops.set_phy_power) {
5312 if (!netif_running(adapter->netdev) && !adapter->wol)
5313 hw->phy.ops.set_phy_power(hw, false);
5314 else
5315 hw->phy.ops.set_phy_power(hw, true);
5316 }
Auke Kok9a799d72007-09-15 14:07:45 -07005317}
5318
Auke Kok9a799d72007-09-15 14:07:45 -07005319/**
Auke Kok9a799d72007-09-15 14:07:45 -07005320 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07005321 * @tx_ring: ring to be cleaned
5322 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005323static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005324{
5325 struct ixgbe_tx_buffer *tx_buffer_info;
5326 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005327 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07005328
Alexander Duyck84418e32010-08-19 13:40:54 +00005329 /* ring already cleared, nothing to do */
5330 if (!tx_ring->tx_buffer_info)
5331 return;
Auke Kok9a799d72007-09-15 14:07:45 -07005332
Alexander Duyck84418e32010-08-19 13:40:54 +00005333 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07005334 for (i = 0; i < tx_ring->count; i++) {
5335 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005336 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07005337 }
5338
John Fastabenddad8a3b2012-04-23 12:22:39 +00005339 netdev_tx_reset_queue(txring_txq(tx_ring));
5340
Auke Kok9a799d72007-09-15 14:07:45 -07005341 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
5342 memset(tx_ring->tx_buffer_info, 0, size);
5343
5344 /* Zero out the descriptor ring */
5345 memset(tx_ring->desc, 0, tx_ring->size);
5346
5347 tx_ring->next_to_use = 0;
5348 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005349}
5350
5351/**
Auke Kok9a799d72007-09-15 14:07:45 -07005352 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
5353 * @adapter: board private structure
5354 **/
5355static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
5356{
5357 int i;
5358
5359 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005360 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005361}
5362
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005363/**
5364 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
5365 * @adapter: board private structure
5366 **/
5367static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
5368{
5369 int i;
5370
5371 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005372 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005373}
5374
Alexander Duycke4911d52011-05-11 07:18:52 +00005375static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
5376{
Sasha Levinb67bfe02013-02-27 17:06:00 -08005377 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00005378 struct ixgbe_fdir_filter *filter;
5379
5380 spin_lock(&adapter->fdir_perfect_lock);
5381
Sasha Levinb67bfe02013-02-27 17:06:00 -08005382 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00005383 &adapter->fdir_filter_list, fdir_node) {
5384 hlist_del(&filter->fdir_node);
5385 kfree(filter);
5386 }
5387 adapter->fdir_filter_count = 0;
5388
5389 spin_unlock(&adapter->fdir_perfect_lock);
5390}
5391
Auke Kok9a799d72007-09-15 14:07:45 -07005392void ixgbe_down(struct ixgbe_adapter *adapter)
5393{
5394 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005395 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08005396 struct net_device *upper;
5397 struct list_head *iter;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08005398 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07005399
5400 /* signal that we are down to the interrupt handler */
Mark Rustadc3049c82014-01-14 18:53:12 -08005401 if (test_and_set_bit(__IXGBE_DOWN, &adapter->state))
5402 return; /* do nothing if already down */
Auke Kok9a799d72007-09-15 14:07:45 -07005403
5404 /* disable receives */
Don Skidmore1f9ac572015-03-13 13:54:30 -07005405 hw->mac.ops.disable_rx(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07005406
Yi Zou2d39d572011-01-06 14:29:56 +00005407 /* disable all enabled rx queues */
5408 for (i = 0; i < adapter->num_rx_queues; i++)
5409 /* this call also flushes the previous write */
5410 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
5411
Don Skidmore032b4322011-03-18 09:32:53 +00005412 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07005413
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005414 netif_tx_stop_all_queues(netdev);
5415
Alexander Duyck70864002011-04-27 09:13:56 +00005416 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00005417 netif_carrier_off(netdev);
5418 netif_tx_disable(netdev);
5419
John Fastabend2a47fa42013-11-06 09:54:52 -08005420 /* disable any upper devices */
5421 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
5422 if (netif_is_macvlan(upper)) {
5423 struct macvlan_dev *vlan = netdev_priv(upper);
5424
5425 if (vlan->fwd_priv) {
5426 netif_tx_stop_all_queues(upper);
5427 netif_carrier_off(upper);
5428 netif_tx_disable(upper);
5429 }
5430 }
5431 }
5432
John Fastabendc0dfb902010-04-27 02:13:39 +00005433 ixgbe_irq_disable(adapter);
5434
5435 ixgbe_napi_disable_all(adapter);
5436
Alexander Duyckd034acf2011-04-27 09:25:34 +00005437 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
5438 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00005439 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5440
5441 del_timer_sync(&adapter->service_timer);
5442
Don Skidmore0a1f87c2009-09-18 09:45:43 +00005443 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00005444 /* Clear EITR Select mapping */
5445 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
5446
5447 /* Mark all the VFs as inactive */
5448 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00005449 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00005450
Don Skidmore0a1f87c2009-09-18 09:45:43 +00005451 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07005452 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005453
Auke Kok9a799d72007-09-15 14:07:45 -07005454 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00005455 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00005456 }
5457
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005458 /* disable transmits in the hardware now that interrupts are off */
5459 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08005460 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00005461 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005462 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00005463
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005464 /* Disable the Tx DMA engine on 82599 and later MAC */
Alexander Duyckbd508172010-11-16 19:27:03 -08005465 switch (hw->mac.type) {
5466 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005467 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005468 case ixgbe_mac_X550:
5469 case ixgbe_mac_X550EM_x:
PJ Waskiewicz88512532009-03-13 22:15:10 +00005470 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00005471 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
5472 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08005473 break;
5474 default:
5475 break;
5476 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005477
Paul Larson6f4a0e42008-06-24 17:00:56 -07005478 if (!pci_channel_offline(adapter->pdev))
5479 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00005480
Emil Tantilovec74a472012-09-20 03:33:56 +00005481 /* power down the optics for 82599 SFP+ fiber */
5482 if (hw->mac.ops.disable_tx_laser)
Don Skidmorec6ecf392010-12-03 03:31:51 +00005483 hw->mac.ops.disable_tx_laser(hw);
5484
Auke Kok9a799d72007-09-15 14:07:45 -07005485 ixgbe_clean_all_tx_rings(adapter);
5486 ixgbe_clean_all_rx_rings(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005487}
5488
Auke Kok9a799d72007-09-15 14:07:45 -07005489/**
Auke Kok9a799d72007-09-15 14:07:45 -07005490 * ixgbe_tx_timeout - Respond to a Tx Hang
5491 * @netdev: network interface device structure
5492 **/
5493static void ixgbe_tx_timeout(struct net_device *netdev)
5494{
5495 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5496
5497 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005498 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005499}
5500
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005501/**
Auke Kok9a799d72007-09-15 14:07:45 -07005502 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5503 * @adapter: board private structure to initialize
5504 *
5505 * ixgbe_sw_init initializes the Adapter private data structure.
5506 * Fields are initialized based on PCI device information and
5507 * OS network device settings (MTU size).
5508 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05005509static int ixgbe_sw_init(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005510{
5511 struct ixgbe_hw *hw = &adapter->hw;
5512 struct pci_dev *pdev = adapter->pdev;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00005513 unsigned int rss, fdir;
Jacob Kellercb6d0f52012-12-04 06:03:14 +00005514 u32 fwsm;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005515#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005516 int j;
5517 struct tc_configuration *tc;
5518#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005519
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005520 /* PCI config space info */
5521
5522 hw->vendor_id = pdev->vendor;
5523 hw->device_id = pdev->device;
5524 hw->revision_id = pdev->revision;
5525 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5526 hw->subsystem_device_id = pdev->subsystem_device;
5527
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005528 /* Set common capability flags and settings */
Don Skidmore0f9b2322014-11-18 09:35:08 +00005529 rss = min_t(int, ixgbe_max_rss_indices(adapter), num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00005530 adapter->ring_feature[RING_F_RSS].limit = rss;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005531 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005532 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
5533 adapter->atr_sample_rate = 20;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00005534 fdir = min_t(int, IXGBE_MAX_FDIR_INDICES, num_online_cpus());
5535 adapter->ring_feature[RING_F_FDIR].limit = fdir;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005536 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
5537#ifdef CONFIG_IXGBE_DCA
5538 adapter->flags |= IXGBE_FLAG_DCA_CAPABLE;
5539#endif
5540#ifdef IXGBE_FCOE
5541 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5542 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5543#ifdef CONFIG_IXGBE_DCB
5544 /* Default traffic class to use for FCoE */
5545 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
5546#endif /* CONFIG_IXGBE_DCB */
5547#endif /* IXGBE_FCOE */
5548
John Fastabendb82b17d2016-02-16 21:18:53 -08005549 /* initialize static ixgbe jump table entries */
5550 adapter->jump_tables[0] = ixgbe_ipv4_fields;
5551
Jacob Keller5d7daa32014-03-29 06:51:25 +00005552 adapter->mac_table = kzalloc(sizeof(struct ixgbe_mac_addr) *
5553 hw->mac.num_rar_entries,
5554 GFP_ATOMIC);
Alexander Duyck530fd822015-11-02 17:09:29 -08005555 if (!adapter->mac_table)
5556 return -ENOMEM;
Jacob Keller5d7daa32014-03-29 06:51:25 +00005557
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005558 /* Set MAC specific capability flags and exceptions */
Alexander Duyckbd508172010-11-16 19:27:03 -08005559 switch (hw->mac.type) {
5560 case ixgbe_mac_82598EB:
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005561 adapter->flags2 &= ~IXGBE_FLAG2_RSC_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005562
Don Skidmorebf069c92009-05-07 10:39:54 +00005563 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5564 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005565
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005566 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005567 adapter->ring_feature[RING_F_FDIR].limit = 0;
5568 adapter->atr_sample_rate = 0;
5569 adapter->fdir_pballoc = 0;
5570#ifdef IXGBE_FCOE
5571 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
5572 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5573#ifdef CONFIG_IXGBE_DCB
5574 adapter->fcoe.up = 0;
5575#endif /* IXGBE_DCB */
5576#endif /* IXGBE_FCOE */
5577 break;
5578 case ixgbe_mac_82599EB:
5579 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5580 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08005581 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005582 case ixgbe_mac_X540:
Don Skidmore9a900ec2015-06-09 17:15:01 -07005583 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
Jacob Kellercb6d0f52012-12-04 06:03:14 +00005584 if (fwsm & IXGBE_FWSM_TS_ENABLED)
5585 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08005586 break;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005587 case ixgbe_mac_X550EM_x:
5588 case ixgbe_mac_X550:
5589#ifdef CONFIG_IXGBE_DCA
5590 adapter->flags &= ~IXGBE_FLAG_DCA_CAPABLE;
5591#endif
Mark Rustad67359c32015-06-15 11:33:25 -07005592#ifdef CONFIG_IXGBE_VXLAN
5593 adapter->flags |= IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE;
5594#endif
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005595 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08005596 default:
5597 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005598 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005599
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005600#ifdef IXGBE_FCOE
5601 /* FCoE support exists, always init the FCoE lock */
5602 spin_lock_init(&adapter->fcoe.lock);
5603
5604#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005605 /* n-tuple support exists, always init our spinlock */
5606 spin_lock_init(&adapter->fdir_perfect_lock);
5607
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005608#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005609 switch (hw->mac.type) {
5610 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005611 case ixgbe_mac_X550:
5612 case ixgbe_mac_X550EM_x:
John Fastabend4de2a022011-09-27 03:52:01 +00005613 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5614 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5615 break;
5616 default:
5617 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5618 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5619 break;
5620 }
5621
Alexander Duyck2f90b862008-11-20 20:52:10 -08005622 /* Configure DCB traffic classes */
5623 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5624 tc = &adapter->dcb_cfg.tc_config[j];
5625 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5626 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5627 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5628 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5629 tc->dcb_pfc = pfc_disabled;
5630 }
John Fastabend4de2a022011-09-27 03:52:01 +00005631
5632 /* Initialize default user to priority mapping, UPx->TC0 */
5633 tc = &adapter->dcb_cfg.tc_config[0];
5634 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5635 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5636
Alexander Duyck2f90b862008-11-20 20:52:10 -08005637 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5638 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005639 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005640 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005641 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00005642 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
5643 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08005644
5645#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005646
5647 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005648 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005649 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00005650 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005651 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5652 hw->fc.send_xon = true;
Don Skidmore73d80953d2013-07-31 02:19:24 +00005653 hw->fc.disable_fc_autoneg = ixgbe_device_supports_autoneg_fc(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07005654
Alexander Duyck99d74482012-05-09 08:09:25 +00005655#ifdef CONFIG_PCI_IOV
Jacob Keller170e8542013-11-09 04:52:32 -08005656 if (max_vfs > 0)
5657 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 +00005658
Jacob Keller170e8542013-11-09 04:52:32 -08005659 /* assign number of SR-IOV VFs */
5660 if (hw->mac.type != ixgbe_mac_82598EB) {
ethan.zhaodcc23e32014-01-16 19:41:04 -08005661 if (max_vfs > IXGBE_MAX_VFS_DRV_LIMIT) {
Jacob Keller170e8542013-11-09 04:52:32 -08005662 adapter->num_vfs = 0;
5663 e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n");
5664 } else {
5665 adapter->num_vfs = max_vfs;
5666 }
5667 }
5668#endif /* CONFIG_PCI_IOV */
5669
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005670 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005671 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005672 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005673
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005674 /* set default ring sizes */
5675 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5676 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5677
Alexander Duyckbd198052011-06-11 01:45:08 +00005678 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005679 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005680
Auke Kok9a799d72007-09-15 14:07:45 -07005681 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005682 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005683 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005684 return -EIO;
5685 }
5686
John Fastabend2a47fa42013-11-06 09:54:52 -08005687 /* PF holds first pool slot */
5688 set_bit(0, &adapter->fwd_bitmask);
Auke Kok9a799d72007-09-15 14:07:45 -07005689 set_bit(__IXGBE_DOWN, &adapter->state);
5690
5691 return 0;
5692}
5693
5694/**
5695 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005696 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005697 *
5698 * Return 0 on success, negative on failure
5699 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005700int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005701{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005702 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005703 int orig_node = dev_to_node(dev);
Mark Rustadca8dfe22014-07-24 06:19:24 +00005704 int ring_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07005705 int size;
5706
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005707 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005708
5709 if (tx_ring->q_vector)
Mark Rustadca8dfe22014-07-24 06:19:24 +00005710 ring_node = tx_ring->q_vector->numa_node;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005711
Mark Rustadca8dfe22014-07-24 06:19:24 +00005712 tx_ring->tx_buffer_info = vzalloc_node(size, ring_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005713 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005714 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005715 if (!tx_ring->tx_buffer_info)
5716 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005717
John Stultz827da442013-10-07 15:51:58 -07005718 u64_stats_init(&tx_ring->syncp);
5719
Auke Kok9a799d72007-09-15 14:07:45 -07005720 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005721 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005722 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005723
Mark Rustadca8dfe22014-07-24 06:19:24 +00005724 set_dev_node(dev, ring_node);
Alexander Duyckde88eee2012-02-08 07:49:59 +00005725 tx_ring->desc = dma_alloc_coherent(dev,
5726 tx_ring->size,
5727 &tx_ring->dma,
5728 GFP_KERNEL);
5729 set_dev_node(dev, orig_node);
5730 if (!tx_ring->desc)
5731 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
5732 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005733 if (!tx_ring->desc)
5734 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005735
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005736 tx_ring->next_to_use = 0;
5737 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005738 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005739
5740err:
5741 vfree(tx_ring->tx_buffer_info);
5742 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005743 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005744 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005745}
5746
5747/**
Alexander Duyck69888672008-09-11 20:05:39 -07005748 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5749 * @adapter: board private structure
5750 *
5751 * If this function returns with an error, then it's possible one or
5752 * more of the rings is populated (while the rest are not). It is the
5753 * callers duty to clean those orphaned rings.
5754 *
5755 * Return 0 on success, negative on failure
5756 **/
5757static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5758{
5759 int i, err = 0;
5760
5761 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005762 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005763 if (!err)
5764 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005765
Emil Tantilov396e7992010-07-01 20:05:12 +00005766 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005767 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07005768 }
5769
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005770 return 0;
5771err_setup_tx:
5772 /* rewind the index freeing the rings as we go */
5773 while (i--)
5774 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005775 return err;
5776}
5777
5778/**
Auke Kok9a799d72007-09-15 14:07:45 -07005779 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005780 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005781 *
5782 * Returns 0 on success, negative on failure
5783 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005784int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005785{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005786 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005787 int orig_node = dev_to_node(dev);
Mark Rustadca8dfe22014-07-24 06:19:24 +00005788 int ring_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005789 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005790
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005791 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005792
5793 if (rx_ring->q_vector)
Mark Rustadca8dfe22014-07-24 06:19:24 +00005794 ring_node = rx_ring->q_vector->numa_node;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005795
Mark Rustadca8dfe22014-07-24 06:19:24 +00005796 rx_ring->rx_buffer_info = vzalloc_node(size, ring_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005797 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005798 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005799 if (!rx_ring->rx_buffer_info)
5800 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005801
John Stultz827da442013-10-07 15:51:58 -07005802 u64_stats_init(&rx_ring->syncp);
5803
Auke Kok9a799d72007-09-15 14:07:45 -07005804 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005805 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5806 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005807
Mark Rustadca8dfe22014-07-24 06:19:24 +00005808 set_dev_node(dev, ring_node);
Alexander Duyckde88eee2012-02-08 07:49:59 +00005809 rx_ring->desc = dma_alloc_coherent(dev,
5810 rx_ring->size,
5811 &rx_ring->dma,
5812 GFP_KERNEL);
5813 set_dev_node(dev, orig_node);
5814 if (!rx_ring->desc)
5815 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
5816 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005817 if (!rx_ring->desc)
5818 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005819
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005820 rx_ring->next_to_clean = 0;
5821 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005822
5823 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005824err:
5825 vfree(rx_ring->rx_buffer_info);
5826 rx_ring->rx_buffer_info = NULL;
5827 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005828 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005829}
5830
5831/**
Alexander Duyck69888672008-09-11 20:05:39 -07005832 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5833 * @adapter: board private structure
5834 *
5835 * If this function returns with an error, then it's possible one or
5836 * more of the rings is populated (while the rest are not). It is the
5837 * callers duty to clean those orphaned rings.
5838 *
5839 * Return 0 on success, negative on failure
5840 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005841static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5842{
5843 int i, err = 0;
5844
5845 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005846 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005847 if (!err)
5848 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005849
Emil Tantilov396e7992010-07-01 20:05:12 +00005850 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005851 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07005852 }
5853
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005854#ifdef IXGBE_FCOE
5855 err = ixgbe_setup_fcoe_ddp_resources(adapter);
5856 if (!err)
5857#endif
5858 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005859err_setup_rx:
5860 /* rewind the index freeing the rings as we go */
5861 while (i--)
5862 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005863 return err;
5864}
5865
5866/**
Auke Kok9a799d72007-09-15 14:07:45 -07005867 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005868 * @tx_ring: Tx descriptor ring for a specific queue
5869 *
5870 * Free all transmit software resources
5871 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005872void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005873{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005874 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005875
5876 vfree(tx_ring->tx_buffer_info);
5877 tx_ring->tx_buffer_info = NULL;
5878
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005879 /* if not set, then don't free */
5880 if (!tx_ring->desc)
5881 return;
5882
5883 dma_free_coherent(tx_ring->dev, tx_ring->size,
5884 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005885
5886 tx_ring->desc = NULL;
5887}
5888
5889/**
5890 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5891 * @adapter: board private structure
5892 *
5893 * Free all transmit software resources
5894 **/
5895static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5896{
5897 int i;
5898
5899 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005900 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005901 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005902}
5903
5904/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005905 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005906 * @rx_ring: ring to clean the resources from
5907 *
5908 * Free all receive software resources
5909 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005910void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005911{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005912 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005913
5914 vfree(rx_ring->rx_buffer_info);
5915 rx_ring->rx_buffer_info = NULL;
5916
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005917 /* if not set, then don't free */
5918 if (!rx_ring->desc)
5919 return;
5920
5921 dma_free_coherent(rx_ring->dev, rx_ring->size,
5922 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005923
5924 rx_ring->desc = NULL;
5925}
5926
5927/**
5928 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5929 * @adapter: board private structure
5930 *
5931 * Free all receive software resources
5932 **/
5933static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5934{
5935 int i;
5936
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005937#ifdef IXGBE_FCOE
5938 ixgbe_free_fcoe_ddp_resources(adapter);
5939
5940#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005941 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005942 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005943 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005944}
5945
5946/**
Auke Kok9a799d72007-09-15 14:07:45 -07005947 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5948 * @netdev: network interface device structure
5949 * @new_mtu: new value for maximum frame size
5950 *
5951 * Returns 0 on success, negative on failure
5952 **/
5953static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5954{
5955 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5956 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5957
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005958 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00005959 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5960 return -EINVAL;
5961
5962 /*
Alexander Duyck872844d2012-08-15 02:10:43 +00005963 * For 82599EB we cannot allow legacy VFs to enable their receive
5964 * paths when MTU greater than 1500 is configured. So display a
5965 * warning that legacy VFs will be disabled.
Alexander Duyck655309e2012-02-08 07:50:35 +00005966 */
5967 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
5968 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
Alexander Duyckc5604512013-01-09 08:50:42 +00005969 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
Alexander Duyck872844d2012-08-15 02:10:43 +00005970 e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005971
Emil Tantilov396e7992010-07-01 20:05:12 +00005972 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00005973
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005974 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005975 netdev->mtu = new_mtu;
5976
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005977 if (netif_running(netdev))
5978 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005979
5980 return 0;
5981}
5982
5983/**
5984 * ixgbe_open - Called when a network interface is made active
5985 * @netdev: network interface device structure
5986 *
5987 * Returns 0 on success, negative value on failure
5988 *
5989 * The open entry point is called when a network interface is made
5990 * active by the system (IFF_UP). At this point all resources needed
5991 * for transmit and receive operations are allocated, the interrupt
5992 * handler is registered with the OS, the watchdog timer is started,
5993 * and the stack is notified that the interface is ready.
5994 **/
5995static int ixgbe_open(struct net_device *netdev)
5996{
5997 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Don Skidmore961fac82015-06-09 16:09:47 -07005998 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08005999 int err, queues;
Auke Kok9a799d72007-09-15 14:07:45 -07006000
Auke Kok4bebfaa2008-02-11 09:26:01 -08006001 /* disallow open during test */
6002 if (test_bit(__IXGBE_TESTING, &adapter->state))
6003 return -EBUSY;
6004
Jesse Brandeburg54386462009-04-17 20:44:27 +00006005 netif_carrier_off(netdev);
6006
Auke Kok9a799d72007-09-15 14:07:45 -07006007 /* allocate transmit descriptors */
6008 err = ixgbe_setup_all_tx_resources(adapter);
6009 if (err)
6010 goto err_setup_tx;
6011
Auke Kok9a799d72007-09-15 14:07:45 -07006012 /* allocate receive descriptors */
6013 err = ixgbe_setup_all_rx_resources(adapter);
6014 if (err)
6015 goto err_setup_rx;
6016
6017 ixgbe_configure(adapter);
6018
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08006019 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006020 if (err)
6021 goto err_req_irq;
6022
Alexander Duyckac802f52012-07-12 05:52:53 +00006023 /* Notify the stack of the actual queue counts. */
John Fastabend2a47fa42013-11-06 09:54:52 -08006024 if (adapter->num_rx_pools > 1)
6025 queues = adapter->num_rx_queues_per_pool;
6026 else
6027 queues = adapter->num_tx_queues;
6028
6029 err = netif_set_real_num_tx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00006030 if (err)
6031 goto err_set_queues;
6032
John Fastabend2a47fa42013-11-06 09:54:52 -08006033 if (adapter->num_rx_pools > 1 &&
6034 adapter->num_rx_queues > IXGBE_MAX_L2A_QUEUES)
6035 queues = IXGBE_MAX_L2A_QUEUES;
6036 else
6037 queues = adapter->num_rx_queues;
6038 err = netif_set_real_num_rx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00006039 if (err)
6040 goto err_set_queues;
6041
Jacob Keller1a71ab22012-08-25 03:54:19 +00006042 ixgbe_ptp_init(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00006043
Alexander Duyckc7ccde02011-07-21 00:40:40 +00006044 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006045
Mark Rustad67359c32015-06-15 11:33:25 -07006046 ixgbe_clear_vxlan_port(adapter);
6047#ifdef CONFIG_IXGBE_VXLAN
Don Skidmore3f207802014-12-23 07:40:34 +00006048 vxlan_get_rx_port(netdev);
Don Skidmore3f207802014-12-23 07:40:34 +00006049#endif
Mark Rustad67359c32015-06-15 11:33:25 -07006050
Auke Kok9a799d72007-09-15 14:07:45 -07006051 return 0;
6052
Alexander Duyckac802f52012-07-12 05:52:53 +00006053err_set_queues:
6054 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006055err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00006056 ixgbe_free_all_rx_resources(adapter);
Don Skidmore961fac82015-06-09 16:09:47 -07006057 if (hw->phy.ops.set_phy_power && !adapter->wol)
6058 hw->phy.ops.set_phy_power(&adapter->hw, false);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00006059err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00006060 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00006061err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07006062 ixgbe_reset(adapter);
6063
6064 return err;
6065}
6066
Jacob Kellera0cccce2014-05-16 05:12:29 +00006067static void ixgbe_close_suspend(struct ixgbe_adapter *adapter)
6068{
6069 ixgbe_ptp_suspend(adapter);
6070
Don Skidmore6ac74392015-06-17 17:34:31 -04006071 if (adapter->hw.phy.ops.enter_lplu) {
6072 adapter->hw.phy.reset_disable = true;
6073 ixgbe_down(adapter);
6074 adapter->hw.phy.ops.enter_lplu(&adapter->hw);
6075 adapter->hw.phy.reset_disable = false;
6076 } else {
6077 ixgbe_down(adapter);
6078 }
6079
Jacob Kellera0cccce2014-05-16 05:12:29 +00006080 ixgbe_free_irq(adapter);
6081
6082 ixgbe_free_all_tx_resources(adapter);
6083 ixgbe_free_all_rx_resources(adapter);
6084}
6085
Auke Kok9a799d72007-09-15 14:07:45 -07006086/**
6087 * ixgbe_close - Disables a network interface
6088 * @netdev: network interface device structure
6089 *
6090 * Returns 0, this is not allowed to fail
6091 *
6092 * The close entry point is called when an interface is de-activated
6093 * by the OS. The hardware is still under the drivers control, but
6094 * needs to be disabled. A global MAC reset is issued to stop the
6095 * hardware, and all transmit and receive resources are freed.
6096 **/
6097static int ixgbe_close(struct net_device *netdev)
6098{
6099 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006100
Jacob Keller1a71ab22012-08-25 03:54:19 +00006101 ixgbe_ptp_stop(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00006102
Jacob Kellera0cccce2014-05-16 05:12:29 +00006103 ixgbe_close_suspend(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006104
Alexander Duycke4911d52011-05-11 07:18:52 +00006105 ixgbe_fdir_filter_exit(adapter);
6106
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08006107 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006108
6109 return 0;
6110}
6111
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006112#ifdef CONFIG_PM
6113static int ixgbe_resume(struct pci_dev *pdev)
6114{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006115 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
6116 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006117 u32 err;
6118
Mark Rustad0391bbe2014-02-28 15:48:55 -08006119 adapter->hw.hw_addr = adapter->io_addr;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006120 pci_set_power_state(pdev, PCI_D0);
6121 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08006122 /*
6123 * pci_restore_state clears dev->state_saved so call
6124 * pci_save_state to restore it.
6125 */
6126 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00006127
6128 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006129 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00006130 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006131 return err;
6132 }
Peter Zijlstra4e857c52014-03-17 18:06:10 +01006133 smp_mb__before_atomic();
Mark Rustad41c62842014-03-12 00:38:35 +00006134 clear_bit(__IXGBE_DISABLED, &adapter->state);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006135 pci_set_master(pdev);
6136
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07006137 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006138
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006139 ixgbe_reset(adapter);
6140
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00006141 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
6142
Alexander Duyckac802f52012-07-12 05:52:53 +00006143 rtnl_lock();
6144 err = ixgbe_init_interrupt_scheme(adapter);
6145 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006146 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00006147
6148 rtnl_unlock();
6149
6150 if (err)
6151 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006152
6153 netif_device_attach(netdev);
6154
6155 return 0;
6156}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006157#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006158
6159static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006160{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006161 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
6162 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006163 struct ixgbe_hw *hw = &adapter->hw;
6164 u32 ctrl, fctrl;
6165 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006166#ifdef CONFIG_PM
6167 int retval = 0;
6168#endif
6169
6170 netif_device_detach(netdev);
6171
akepner499ab5c2013-03-13 14:54:58 +00006172 rtnl_lock();
Jacob Kellera0cccce2014-05-16 05:12:29 +00006173 if (netif_running(netdev))
6174 ixgbe_close_suspend(adapter);
akepner499ab5c2013-03-13 14:54:58 +00006175 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006176
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08006177 ixgbe_clear_interrupt_scheme(adapter);
6178
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006179#ifdef CONFIG_PM
6180 retval = pci_save_state(pdev);
6181 if (retval)
6182 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00006183
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006184#endif
Jacob Kellerf4f10402013-06-25 07:59:23 +00006185 if (hw->mac.ops.stop_link_on_d3)
6186 hw->mac.ops.stop_link_on_d3(hw);
6187
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006188 if (wufc) {
6189 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006190
Emil Tantilovec74a472012-09-20 03:33:56 +00006191 /* enable the optics for 82599 SFP+ fiber as we can WoL */
6192 if (hw->mac.ops.enable_tx_laser)
Don Skidmorec509e752012-04-05 08:12:05 +00006193 hw->mac.ops.enable_tx_laser(hw);
6194
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006195 /* turn on all-multi mode if wake on multicast is enabled */
6196 if (wufc & IXGBE_WUFC_MC) {
6197 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6198 fctrl |= IXGBE_FCTRL_MPE;
6199 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
6200 }
6201
6202 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
6203 ctrl |= IXGBE_CTRL_GIO_DIS;
6204 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
6205
6206 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
6207 } else {
6208 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
6209 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
6210 }
6211
Alexander Duyckbd508172010-11-16 19:27:03 -08006212 switch (hw->mac.type) {
6213 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07006214 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08006215 break;
6216 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08006217 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006218 case ixgbe_mac_X550:
6219 case ixgbe_mac_X550EM_x:
Alexander Duyckbd508172010-11-16 19:27:03 -08006220 pci_wake_from_d3(pdev, !!wufc);
6221 break;
6222 default:
6223 break;
6224 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006225
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006226 *enable_wake = !!wufc;
Don Skidmore961fac82015-06-09 16:09:47 -07006227 if (hw->phy.ops.set_phy_power && !*enable_wake)
6228 hw->phy.ops.set_phy_power(hw, false);
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006229
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006230 ixgbe_release_hw_control(adapter);
6231
Mark Rustad41c62842014-03-12 00:38:35 +00006232 if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state))
6233 pci_disable_device(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006234
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006235 return 0;
6236}
6237
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006238#ifdef CONFIG_PM
6239static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
6240{
6241 int retval;
6242 bool wake;
6243
6244 retval = __ixgbe_shutdown(pdev, &wake);
6245 if (retval)
6246 return retval;
6247
6248 if (wake) {
6249 pci_prepare_to_sleep(pdev);
6250 } else {
6251 pci_wake_from_d3(pdev, false);
6252 pci_set_power_state(pdev, PCI_D3hot);
6253 }
6254
6255 return 0;
6256}
6257#endif /* CONFIG_PM */
6258
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006259static void ixgbe_shutdown(struct pci_dev *pdev)
6260{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006261 bool wake;
6262
6263 __ixgbe_shutdown(pdev, &wake);
6264
6265 if (system_state == SYSTEM_POWER_OFF) {
6266 pci_wake_from_d3(pdev, wake);
6267 pci_set_power_state(pdev, PCI_D3hot);
6268 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006269}
6270
6271/**
Auke Kok9a799d72007-09-15 14:07:45 -07006272 * ixgbe_update_stats - Update the board statistics counters.
6273 * @adapter: board private structure
6274 **/
6275void ixgbe_update_stats(struct ixgbe_adapter *adapter)
6276{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00006277 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07006278 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006279 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006280 u64 total_mpc = 0;
6281 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006282 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
6283 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00006284 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006285
Don Skidmored08935c2010-06-11 13:20:29 +00006286 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6287 test_bit(__IXGBE_RESETTING, &adapter->state))
6288 return;
6289
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006290 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00006291 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006292 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006293 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08006294 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
6295 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006296 }
6297 adapter->rsc_total_count = rsc_count;
6298 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00006299 }
6300
Alexander Duyck5b7da512010-11-16 19:26:50 -08006301 for (i = 0; i < adapter->num_rx_queues; i++) {
6302 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
6303 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
6304 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
6305 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00006306 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006307 bytes += rx_ring->stats.bytes;
6308 packets += rx_ring->stats.packets;
6309 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00006310 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006311 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
6312 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00006313 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006314 netdev->stats.rx_bytes = bytes;
6315 netdev->stats.rx_packets = packets;
6316
6317 bytes = 0;
6318 packets = 0;
6319 /* gather some stats to the adapter struct that are per queue */
6320 for (i = 0; i < adapter->num_tx_queues; i++) {
6321 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6322 restart_queue += tx_ring->tx_stats.restart_queue;
6323 tx_busy += tx_ring->tx_stats.tx_busy;
6324 bytes += tx_ring->stats.bytes;
6325 packets += tx_ring->stats.packets;
6326 }
6327 adapter->restart_queue = restart_queue;
6328 adapter->tx_busy = tx_busy;
6329 netdev->stats.tx_bytes = bytes;
6330 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00006331
Joe Perches7ca647b2010-09-07 21:35:40 +00006332 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006333
6334 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006335 for (i = 0; i < 8; i++) {
6336 /* for packet buffers not used, the register should read 0 */
6337 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
6338 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00006339 hwstats->mpc[i] += mpc;
6340 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006341 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
6342 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08006343 switch (hw->mac.type) {
6344 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006345 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
6346 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
6347 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00006348 hwstats->pxonrxc[i] +=
6349 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08006350 break;
6351 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08006352 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006353 case ixgbe_mac_X550:
6354 case ixgbe_mac_X550EM_x:
Alexander Duyckbd508172010-11-16 19:27:03 -08006355 hwstats->pxonrxc[i] +=
6356 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08006357 break;
6358 default:
6359 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006360 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006361 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006362
6363 /*16 register reads */
6364 for (i = 0; i < 16; i++) {
6365 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
6366 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
6367 if ((hw->mac.type == ixgbe_mac_82599EB) ||
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006368 (hw->mac.type == ixgbe_mac_X540) ||
6369 (hw->mac.type == ixgbe_mac_X550) ||
6370 (hw->mac.type == ixgbe_mac_X550EM_x)) {
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006371 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
6372 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
6373 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
6374 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
6375 }
6376 }
6377
Joe Perches7ca647b2010-09-07 21:35:40 +00006378 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006379 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00006380 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07006381
John Fastabendc84d3242010-11-16 19:27:12 -08006382 ixgbe_update_xoff_received(adapter);
6383
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006384 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08006385 switch (hw->mac.type) {
6386 case ixgbe_mac_82598EB:
6387 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08006388 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
6389 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
6390 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
6391 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08006392 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006393 case ixgbe_mac_X550:
6394 case ixgbe_mac_X550EM_x:
6395 /* OS2BMC stats are X540 and later */
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00006396 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
6397 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
6398 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
6399 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
6400 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00006401 for (i = 0; i < 16; i++)
6402 adapter->hw_rx_no_dma_resources +=
6403 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00006404 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08006405 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00006406 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08006407 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00006408 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08006409 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00006410 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00006411 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
6412 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00006413#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00006414 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
6415 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
6416 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
6417 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
6418 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
6419 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00006420 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00006421 if (adapter->fcoe.ddp_pool) {
6422 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
6423 struct ixgbe_fcoe_ddp_pool *ddp_pool;
6424 unsigned int cpu;
6425 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00006426 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00006427 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
6428 noddp += ddp_pool->noddp;
6429 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00006430 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00006431 hwstats->fcoe_noddp = noddp;
6432 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00006433 }
Yi Zou6d455222009-05-13 13:12:16 +00006434#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08006435 break;
6436 default:
6437 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006438 }
Auke Kok9a799d72007-09-15 14:07:45 -07006439 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00006440 hwstats->bprc += bprc;
6441 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006442 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00006443 hwstats->mprc -= bprc;
6444 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
6445 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
6446 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
6447 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
6448 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
6449 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
6450 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
6451 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006452 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00006453 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006454 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00006455 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00006456 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
6457 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006458 /*
6459 * 82598 errata - tx of flow control packets is included in tx counters
6460 */
6461 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00006462 hwstats->gptc -= xon_off_tot;
6463 hwstats->mptc -= xon_off_tot;
6464 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
6465 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
6466 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
6467 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
6468 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
6469 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
6470 hwstats->ptc64 -= xon_off_tot;
6471 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
6472 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
6473 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
6474 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
6475 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
6476 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07006477
6478 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00006479 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07006480
6481 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00006482 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00006483 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00006484 netdev->stats.rx_length_errors = hwstats->rlec;
6485 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00006486 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07006487}
6488
6489/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00006490 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006491 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07006492 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00006493static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07006494{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006495 struct ixgbe_hw *hw = &adapter->hw;
6496 int i;
6497
Alexander Duyckd034acf2011-04-27 09:25:34 +00006498 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
6499 return;
6500
6501 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
6502
6503 /* if interface is down do nothing */
6504 if (test_bit(__IXGBE_DOWN, &adapter->state))
6505 return;
6506
6507 /* do nothing if we are not using signature filters */
6508 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
6509 return;
6510
6511 adapter->fdir_overflow++;
6512
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006513 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
6514 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08006515 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Jacob Kellere7cf7452014-04-09 06:03:10 +00006516 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00006517 /* re-enable flow director interrupts */
6518 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006519 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00006520 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00006521 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006522 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006523}
6524
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006525/**
6526 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006527 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006528 *
6529 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006530 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006531 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006532 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006533 */
6534static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
6535{
Auke Kok9a799d72007-09-15 14:07:45 -07006536 struct ixgbe_hw *hw = &adapter->hw;
6537 u64 eics = 0;
6538 int i;
6539
Mark Rustad09f40ae2014-01-14 18:53:11 -08006540 /* If we're down, removing or resetting, just bail */
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006541 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006542 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006543 test_bit(__IXGBE_RESETTING, &adapter->state))
6544 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00006545
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006546 /* Force detection of hung controller */
6547 if (netif_carrier_ok(adapter->netdev)) {
6548 for (i = 0; i < adapter->num_tx_queues; i++)
6549 set_check_for_tx_hang(adapter->tx_ring[i]);
6550 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006551
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006552 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00006553 /*
6554 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006555 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00006556 * would set *both* EIMS and EICS for any bit in EIAM
6557 */
6558 IXGBE_WRITE_REG(hw, IXGBE_EICS,
6559 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006560 } else {
6561 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006562 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006563 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00006564 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006565 eics |= ((u64)1 << i);
6566 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006567 }
6568
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006569 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00006570 ixgbe_irq_rearm_queues(adapter, eics);
Alexander Duyckfe49f042009-06-04 16:00:09 +00006571}
6572
6573/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006574 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006575 * @adapter: pointer to the device adapter structure
6576 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006577 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006578static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006579{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006580 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006581 u32 link_speed = adapter->link_speed;
6582 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00006583 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006584
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006585 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6586 return;
6587
6588 if (hw->mac.ops.check_link) {
6589 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006590 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006591 /* always assume link is up, if no check link function */
6592 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6593 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006594 }
Alexander Duyck041441d2012-04-19 17:48:48 +00006595
6596 if (adapter->ixgbe_ieee_pfc)
6597 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
6598
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00006599 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00006600 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00006601 ixgbe_set_rx_drop_en(adapter);
6602 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006603
6604 if (link_up ||
6605 time_after(jiffies, (adapter->link_check_timeout +
6606 IXGBE_TRY_LINK_TIMEOUT))) {
6607 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6608 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6609 IXGBE_WRITE_FLUSH(hw);
6610 }
6611
6612 adapter->link_up = link_up;
6613 adapter->link_speed = link_speed;
6614}
6615
Alexander Duyck107d3012012-10-02 00:17:03 +00006616static void ixgbe_update_default_up(struct ixgbe_adapter *adapter)
6617{
6618#ifdef CONFIG_IXGBE_DCB
6619 struct net_device *netdev = adapter->netdev;
6620 struct dcb_app app = {
6621 .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE,
6622 .protocol = 0,
6623 };
6624 u8 up = 0;
6625
6626 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE)
6627 up = dcb_ieee_getapp_mask(netdev, &app);
6628
6629 adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0;
6630#endif
6631}
6632
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006633/**
6634 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6635 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006636 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006637 **/
6638static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6639{
6640 struct net_device *netdev = adapter->netdev;
6641 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilovcdc04dc2014-03-20 03:47:53 +00006642 struct net_device *upper;
6643 struct list_head *iter;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006644 u32 link_speed = adapter->link_speed;
Mark Rustad454adb02015-07-10 14:19:22 -07006645 const char *speed_str;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006646 bool flow_rx, flow_tx;
6647
6648 /* only continue if link was previously down */
6649 if (netif_carrier_ok(netdev))
6650 return;
6651
6652 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6653
6654 switch (hw->mac.type) {
6655 case ixgbe_mac_82598EB: {
6656 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6657 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6658 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6659 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6660 }
6661 break;
6662 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006663 case ixgbe_mac_X550:
6664 case ixgbe_mac_X550EM_x:
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006665 case ixgbe_mac_82599EB: {
6666 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6667 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6668 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6669 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6670 }
6671 break;
6672 default:
6673 flow_tx = false;
6674 flow_rx = false;
6675 break;
6676 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006677
Jacob Keller6cb562d2012-12-05 07:24:41 +00006678 adapter->last_rx_ptp_check = jiffies;
6679
Jacob Keller8fecf672013-06-21 08:14:32 +00006680 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006681 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006682
Mark Rustad454adb02015-07-10 14:19:22 -07006683 switch (link_speed) {
6684 case IXGBE_LINK_SPEED_10GB_FULL:
6685 speed_str = "10 Gbps";
6686 break;
6687 case IXGBE_LINK_SPEED_2_5GB_FULL:
6688 speed_str = "2.5 Gbps";
6689 break;
6690 case IXGBE_LINK_SPEED_1GB_FULL:
6691 speed_str = "1 Gbps";
6692 break;
6693 case IXGBE_LINK_SPEED_100_FULL:
6694 speed_str = "100 Mbps";
6695 break;
6696 default:
6697 speed_str = "unknown speed";
6698 break;
6699 }
6700 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n", speed_str,
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006701 ((flow_rx && flow_tx) ? "RX/TX" :
6702 (flow_rx ? "RX" :
6703 (flow_tx ? "TX" : "None"))));
6704
6705 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006706 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006707
Emil Tantilovcdc04dc2014-03-20 03:47:53 +00006708 /* enable transmits */
6709 netif_tx_wake_all_queues(adapter->netdev);
6710
6711 /* enable any upper devices */
6712 rtnl_lock();
6713 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
6714 if (netif_is_macvlan(upper)) {
6715 struct macvlan_dev *vlan = netdev_priv(upper);
6716
6717 if (vlan->fwd_priv)
6718 netif_tx_wake_all_queues(upper);
6719 }
6720 }
6721 rtnl_unlock();
6722
Alexander Duyck107d3012012-10-02 00:17:03 +00006723 /* update the default user priority for VFs */
6724 ixgbe_update_default_up(adapter);
6725
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006726 /* ping all the active vfs to let them know link has changed */
6727 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006728}
6729
6730/**
6731 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6732 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006733 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006734 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00006735static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006736{
6737 struct net_device *netdev = adapter->netdev;
6738 struct ixgbe_hw *hw = &adapter->hw;
6739
6740 adapter->link_up = false;
6741 adapter->link_speed = 0;
6742
6743 /* only continue if link was up previously */
6744 if (!netif_carrier_ok(netdev))
6745 return;
6746
6747 /* poll for SFP+ cable when link is down */
6748 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6749 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6750
Jacob Keller8fecf672013-06-21 08:14:32 +00006751 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006752 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006753
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006754 e_info(drv, "NIC Link is Down\n");
6755 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006756
6757 /* ping all the active vfs to let them know link has changed */
6758 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006759}
6760
Emil Tantilov07923c12014-08-12 07:12:08 +00006761static bool ixgbe_ring_tx_pending(struct ixgbe_adapter *adapter)
6762{
6763 int i;
6764
6765 for (i = 0; i < adapter->num_tx_queues; i++) {
6766 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6767
6768 if (tx_ring->next_to_use != tx_ring->next_to_clean)
6769 return true;
6770 }
6771
6772 return false;
6773}
6774
6775static bool ixgbe_vf_tx_pending(struct ixgbe_adapter *adapter)
6776{
6777 struct ixgbe_hw *hw = &adapter->hw;
6778 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
6779 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
6780
6781 int i, j;
6782
6783 if (!adapter->num_vfs)
6784 return false;
6785
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006786 /* resetting the PF is only needed for MAC before X550 */
6787 if (hw->mac.type >= ixgbe_mac_X550)
6788 return false;
6789
Emil Tantilov07923c12014-08-12 07:12:08 +00006790 for (i = 0; i < adapter->num_vfs; i++) {
6791 for (j = 0; j < q_per_pool; j++) {
6792 u32 h, t;
6793
6794 h = IXGBE_READ_REG(hw, IXGBE_PVFTDHN(q_per_pool, i, j));
6795 t = IXGBE_READ_REG(hw, IXGBE_PVFTDTN(q_per_pool, i, j));
6796
6797 if (h != t)
6798 return true;
6799 }
6800 }
6801
6802 return false;
6803}
6804
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006805/**
6806 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006807 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006808 **/
6809static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6810{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006811 if (!netif_carrier_ok(adapter->netdev)) {
Emil Tantilov07923c12014-08-12 07:12:08 +00006812 if (ixgbe_ring_tx_pending(adapter) ||
6813 ixgbe_vf_tx_pending(adapter)) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006814 /* We've lost link, so the controller stops DMA,
6815 * but we've got queued Tx work that's never going
6816 * to get done, so reset controller to flush Tx.
6817 * (Do the reset outside of interrupt context).
6818 */
Jacob Keller12ff3f32012-12-01 07:57:17 +00006819 e_warn(drv, "initiating reset to clear Tx work after link loss\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006820 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006821 }
6822 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006823}
6824
Emil Tantilov9079e412014-11-19 03:18:19 +00006825#ifdef CONFIG_PCI_IOV
6826static inline void ixgbe_issue_vf_flr(struct ixgbe_adapter *adapter,
6827 struct pci_dev *vfdev)
6828{
6829 if (!pci_wait_for_pending_transaction(vfdev))
6830 e_dev_warn("Issuing VFLR with pending transactions\n");
6831
6832 e_dev_err("Issuing VFLR for VF %s\n", pci_name(vfdev));
6833 pcie_capability_set_word(vfdev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
6834
6835 msleep(100);
6836}
6837
6838static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6839{
6840 struct ixgbe_hw *hw = &adapter->hw;
6841 struct pci_dev *pdev = adapter->pdev;
Mark Rustad988d1302015-10-30 15:29:34 -07006842 unsigned int vf;
Emil Tantilov9079e412014-11-19 03:18:19 +00006843 u32 gpc;
Emil Tantilov9079e412014-11-19 03:18:19 +00006844
6845 if (!(netif_carrier_ok(adapter->netdev)))
6846 return;
6847
6848 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6849 if (gpc) /* If incrementing then no need for the check below */
6850 return;
6851 /* Check to see if a bad DMA write target from an errant or
6852 * malicious VF has caused a PCIe error. If so then we can
6853 * issue a VFLR to the offending VF(s) and then resume without
6854 * requesting a full slot reset.
6855 */
6856
6857 if (!pdev)
6858 return;
6859
Emil Tantilov9079e412014-11-19 03:18:19 +00006860 /* check status reg for all VFs owned by this PF */
Mark Rustad988d1302015-10-30 15:29:34 -07006861 for (vf = 0; vf < adapter->num_vfs; ++vf) {
6862 struct pci_dev *vfdev = adapter->vfinfo[vf].vfdev;
6863 u16 status_reg;
Emil Tantilov9079e412014-11-19 03:18:19 +00006864
Mark Rustad988d1302015-10-30 15:29:34 -07006865 if (!vfdev)
6866 continue;
6867 pci_read_config_word(vfdev, PCI_STATUS, &status_reg);
6868 if (status_reg != IXGBE_FAILED_READ_CFG_WORD &&
6869 status_reg & PCI_STATUS_REC_MASTER_ABORT)
6870 ixgbe_issue_vf_flr(adapter, vfdev);
Emil Tantilov9079e412014-11-19 03:18:19 +00006871 }
6872}
6873
Greg Rosea985b6c32010-11-18 03:02:52 +00006874static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6875{
6876 u32 ssvpc;
6877
Greg Rose0584d992012-08-08 00:00:58 +00006878 /* Do not perform spoof check for 82598 or if not in IOV mode */
6879 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
6880 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00006881 return;
6882
6883 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6884
6885 /*
6886 * ssvpc register is cleared on read, if zero then no
6887 * spoofed packets in the last interval.
6888 */
6889 if (!ssvpc)
6890 return;
6891
Emil Tantilovd6ea0752012-08-08 06:28:37 +00006892 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00006893}
Emil Tantilov9079e412014-11-19 03:18:19 +00006894#else
6895static void ixgbe_spoof_check(struct ixgbe_adapter __always_unused *adapter)
6896{
6897}
6898
6899static void
6900ixgbe_check_for_bad_vf(struct ixgbe_adapter __always_unused *adapter)
6901{
6902}
6903#endif /* CONFIG_PCI_IOV */
6904
Greg Rosea985b6c32010-11-18 03:02:52 +00006905
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006906/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006907 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006908 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006909 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006910static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006911{
Mark Rustad09f40ae2014-01-14 18:53:11 -08006912 /* if interface is down, removing or resetting, do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006913 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006914 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Emil Tantilov7edebf92011-08-27 07:18:37 +00006915 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006916 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006917
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006918 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006919
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006920 if (adapter->link_up)
6921 ixgbe_watchdog_link_is_up(adapter);
6922 else
6923 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006924
Emil Tantilov9079e412014-11-19 03:18:19 +00006925 ixgbe_check_for_bad_vf(adapter);
Greg Rosea985b6c32010-11-18 03:02:52 +00006926 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006927 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006928
6929 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006930}
6931
Alexander Duyck70864002011-04-27 09:13:56 +00006932/**
6933 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006934 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00006935 **/
6936static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6937{
6938 struct ixgbe_hw *hw = &adapter->hw;
6939 s32 err;
6940
6941 /* not searching for SFP so there is nothing to do here */
6942 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6943 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6944 return;
6945
Mark Rustad58e7cd22015-08-08 16:18:48 -07006946 if (adapter->sfp_poll_time &&
6947 time_after(adapter->sfp_poll_time, jiffies))
6948 return; /* If not yet time to poll for SFP */
6949
Alexander Duyck70864002011-04-27 09:13:56 +00006950 /* someone else is in init, wait until next service event */
6951 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6952 return;
6953
Mark Rustad58e7cd22015-08-08 16:18:48 -07006954 adapter->sfp_poll_time = jiffies + IXGBE_SFP_POLL_JIFFIES - 1;
6955
Alexander Duyck70864002011-04-27 09:13:56 +00006956 err = hw->phy.ops.identify_sfp(hw);
6957 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6958 goto sfp_out;
6959
6960 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6961 /* If no cable is present, then we need to reset
6962 * the next time we find a good cable. */
6963 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6964 }
6965
6966 /* exit on error */
6967 if (err)
6968 goto sfp_out;
6969
6970 /* exit if reset not needed */
6971 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6972 goto sfp_out;
6973
6974 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6975
6976 /*
6977 * A module may be identified correctly, but the EEPROM may not have
6978 * support for that module. setup_sfp() will fail in that case, so
6979 * we should not allow that module to load.
6980 */
6981 if (hw->mac.type == ixgbe_mac_82598EB)
6982 err = hw->phy.ops.reset(hw);
6983 else
6984 err = hw->mac.ops.setup_sfp(hw);
6985
6986 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6987 goto sfp_out;
6988
6989 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6990 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6991
6992sfp_out:
6993 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6994
6995 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6996 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6997 e_dev_err("failed to initialize because an unsupported "
6998 "SFP+ module type was detected.\n");
6999 e_dev_err("Reload the driver after installing a "
7000 "supported module.\n");
7001 unregister_netdev(adapter->netdev);
7002 }
7003}
7004
7005/**
7006 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007007 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00007008 **/
7009static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
7010{
7011 struct ixgbe_hw *hw = &adapter->hw;
Josh Hay3d292262012-12-15 03:28:19 +00007012 u32 speed;
7013 bool autoneg = false;
Alexander Duyck70864002011-04-27 09:13:56 +00007014
7015 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
7016 return;
7017
7018 /* someone else is in init, wait until next service event */
7019 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
7020 return;
7021
7022 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
7023
Josh Hay3d292262012-12-15 03:28:19 +00007024 speed = hw->phy.autoneg_advertised;
Emil Tantiloved33ff62013-08-30 07:55:24 +00007025 if ((!speed) && (hw->mac.ops.get_link_capabilities)) {
Josh Hay3d292262012-12-15 03:28:19 +00007026 hw->mac.ops.get_link_capabilities(hw, &speed, &autoneg);
Emil Tantiloved33ff62013-08-30 07:55:24 +00007027
7028 /* setup the highest link when no autoneg */
7029 if (!autoneg) {
7030 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
7031 speed = IXGBE_LINK_SPEED_10GB_FULL;
7032 }
7033 }
7034
Alexander Duyck70864002011-04-27 09:13:56 +00007035 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00007036 hw->mac.ops.setup_link(hw, speed, true);
Alexander Duyck70864002011-04-27 09:13:56 +00007037
7038 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
7039 adapter->link_check_timeout = jiffies;
7040 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
7041}
7042
7043/**
7044 * ixgbe_service_timer - Timer Call-back
7045 * @data: pointer to adapter cast into an unsigned long
7046 **/
7047static void ixgbe_service_timer(unsigned long data)
7048{
7049 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
7050 unsigned long next_event_offset;
7051
7052 /* poll faster when waiting for link */
7053 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
7054 next_event_offset = HZ / 10;
7055 else
7056 next_event_offset = HZ * 2;
7057
7058 /* Reset the timer */
7059 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
7060
Emil Tantilov9079e412014-11-19 03:18:19 +00007061 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007062}
7063
Don Skidmore597f22d2015-06-09 16:52:02 -07007064static void ixgbe_phy_interrupt_subtask(struct ixgbe_adapter *adapter)
7065{
7066 struct ixgbe_hw *hw = &adapter->hw;
7067 u32 status;
7068
7069 if (!(adapter->flags2 & IXGBE_FLAG2_PHY_INTERRUPT))
7070 return;
7071
7072 adapter->flags2 &= ~IXGBE_FLAG2_PHY_INTERRUPT;
7073
7074 if (!hw->phy.ops.handle_lasi)
7075 return;
7076
7077 status = hw->phy.ops.handle_lasi(&adapter->hw);
7078 if (status != IXGBE_ERR_OVERTEMP)
7079 return;
7080
7081 e_crit(drv, "%s\n", ixgbe_overheat_msg);
7082}
7083
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007084static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
7085{
7086 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
7087 return;
7088
7089 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
7090
Mark Rustad09f40ae2014-01-14 18:53:11 -08007091 /* If we're already down, removing or resetting, just bail */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007092 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08007093 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007094 test_bit(__IXGBE_RESETTING, &adapter->state))
7095 return;
7096
7097 ixgbe_dump(adapter);
7098 netdev_err(adapter->netdev, "Reset adapter\n");
7099 adapter->tx_timeout_count++;
7100
John Fastabend8f4c5c92014-01-16 02:30:05 -08007101 rtnl_lock();
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007102 ixgbe_reinit_locked(adapter);
John Fastabend8f4c5c92014-01-16 02:30:05 -08007103 rtnl_unlock();
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007104}
7105
Alexander Duyck70864002011-04-27 09:13:56 +00007106/**
7107 * ixgbe_service_task - manages and runs subtasks
7108 * @work: pointer to work_struct containing our data
7109 **/
7110static void ixgbe_service_task(struct work_struct *work)
7111{
7112 struct ixgbe_adapter *adapter = container_of(work,
7113 struct ixgbe_adapter,
7114 service_task);
Mark Rustadb0483c82014-01-14 18:53:17 -08007115 if (ixgbe_removed(adapter->hw.hw_addr)) {
7116 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
7117 rtnl_lock();
7118 ixgbe_down(adapter);
7119 rtnl_unlock();
7120 }
7121 ixgbe_service_event_complete(adapter);
7122 return;
7123 }
Mark Rustad67359c32015-06-15 11:33:25 -07007124#ifdef CONFIG_IXGBE_VXLAN
7125 if (adapter->flags2 & IXGBE_FLAG2_VXLAN_REREG_NEEDED) {
7126 adapter->flags2 &= ~IXGBE_FLAG2_VXLAN_REREG_NEEDED;
7127 vxlan_get_rx_port(adapter->netdev);
7128 }
7129#endif /* CONFIG_IXGBE_VXLAN */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007130 ixgbe_reset_subtask(adapter);
Don Skidmore597f22d2015-06-09 16:52:02 -07007131 ixgbe_phy_interrupt_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007132 ixgbe_sfp_detection_subtask(adapter);
7133 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00007134 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007135 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00007136 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007137 ixgbe_check_hang_subtask(adapter);
Jacob Keller891dc082012-12-05 07:24:46 +00007138
Jacob Keller8fecf672013-06-21 08:14:32 +00007139 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) {
Jacob Keller891dc082012-12-05 07:24:46 +00007140 ixgbe_ptp_overflow_check(adapter);
7141 ixgbe_ptp_rx_hang(adapter);
7142 }
Alexander Duyck70864002011-04-27 09:13:56 +00007143
7144 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007145}
7146
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007147static int ixgbe_tso(struct ixgbe_ring *tx_ring,
7148 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00007149 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00007150{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007151 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00007152 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07007153 u32 mss_l4len_idx, l4len;
Francois Romieu2049e1f2014-03-30 03:14:27 +00007154 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007155
Alexander Duyck8f4fbb92012-10-30 06:01:40 +00007156 if (skb->ip_summed != CHECKSUM_PARTIAL)
7157 return 0;
7158
Alexander Duyck897ab152011-05-27 05:31:47 +00007159 if (!skb_is_gso(skb))
7160 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007161
Francois Romieu2049e1f2014-03-30 03:14:27 +00007162 err = skb_cow_head(skb, 0);
7163 if (err < 0)
7164 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00007165
Alexander Duyck897ab152011-05-27 05:31:47 +00007166 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
7167 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
7168
Joe Perchesa1108ff2014-03-13 05:19:25 +00007169 if (first->protocol == htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00007170 struct iphdr *iph = ip_hdr(skb);
7171 iph->tot_len = 0;
7172 iph->check = 0;
7173 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
7174 iph->daddr, 0,
7175 IPPROTO_TCP,
7176 0);
7177 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007178 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
7179 IXGBE_TX_FLAGS_CSUM |
7180 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00007181 } else if (skb_is_gso_v6(skb)) {
7182 ipv6_hdr(skb)->payload_len = 0;
7183 tcp_hdr(skb)->check =
7184 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
7185 &ipv6_hdr(skb)->daddr,
7186 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00007187 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
7188 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00007189 }
7190
Alexander Duyck091a6242012-02-08 07:51:01 +00007191 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00007192 l4len = tcp_hdrlen(skb);
7193 *hdr_len = skb_transport_offset(skb) + l4len;
7194
Alexander Duyck091a6242012-02-08 07:51:01 +00007195 /* update gso size and bytecount with header size */
7196 first->gso_segs = skb_shinfo(skb)->gso_segs;
7197 first->bytecount += (first->gso_segs - 1) * *hdr_len;
7198
Alexander Duyckc44f5f52012-10-30 06:01:45 +00007199 /* mss_l4len_id: use 0 as index for TSO */
Alexander Duyck897ab152011-05-27 05:31:47 +00007200 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
7201 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +00007202
7203 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
7204 vlan_macip_lens = skb_network_header_len(skb);
7205 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007206 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007207
7208 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00007209 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00007210
7211 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00007212}
7213
Alexander Duyck244e27a2012-02-08 07:51:11 +00007214static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
7215 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07007216{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007217 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00007218 u32 vlan_macip_lens = 0;
7219 u32 mss_l4len_idx = 0;
7220 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007221
Alexander Duyck897ab152011-05-27 05:31:47 +00007222 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck472148c2012-11-07 02:34:28 +00007223 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
7224 !(first->tx_flags & IXGBE_TX_FLAGS_CC))
7225 return;
Mark Rustadf467bc02015-06-15 11:33:20 -07007226 vlan_macip_lens = skb_network_offset(skb) <<
7227 IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +00007228 } else {
7229 u8 l4_hdr = 0;
Mark Rustadf467bc02015-06-15 11:33:20 -07007230 union {
7231 struct iphdr *ipv4;
7232 struct ipv6hdr *ipv6;
7233 u8 *raw;
7234 } network_hdr;
7235 union {
7236 struct tcphdr *tcphdr;
7237 u8 *raw;
7238 } transport_hdr;
Mark Rustad36a92d72015-11-18 09:21:28 -08007239 __be16 frag_off;
Mark Rustadf467bc02015-06-15 11:33:20 -07007240
7241 if (skb->encapsulation) {
7242 network_hdr.raw = skb_inner_network_header(skb);
7243 transport_hdr.raw = skb_inner_transport_header(skb);
7244 vlan_macip_lens = skb_inner_network_offset(skb) <<
7245 IXGBE_ADVTXD_MACLEN_SHIFT;
7246 } else {
7247 network_hdr.raw = skb_network_header(skb);
7248 transport_hdr.raw = skb_transport_header(skb);
7249 vlan_macip_lens = skb_network_offset(skb) <<
7250 IXGBE_ADVTXD_MACLEN_SHIFT;
7251 }
7252
7253 /* use first 4 bits to determine IP version */
7254 switch (network_hdr.ipv4->version) {
7255 case IPVERSION:
7256 vlan_macip_lens |= transport_hdr.raw - network_hdr.raw;
Alexander Duyck897ab152011-05-27 05:31:47 +00007257 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Mark Rustadf467bc02015-06-15 11:33:20 -07007258 l4_hdr = network_hdr.ipv4->protocol;
Alexander Duyck897ab152011-05-27 05:31:47 +00007259 break;
Mark Rustadf467bc02015-06-15 11:33:20 -07007260 case 6:
7261 vlan_macip_lens |= transport_hdr.raw - network_hdr.raw;
7262 l4_hdr = network_hdr.ipv6->nexthdr;
Mark Rustad36a92d72015-11-18 09:21:28 -08007263 if (likely((transport_hdr.raw - network_hdr.raw) ==
7264 sizeof(struct ipv6hdr)))
7265 break;
7266 ipv6_skip_exthdr(skb, network_hdr.raw - skb->data +
7267 sizeof(struct ipv6hdr),
7268 &l4_hdr, &frag_off);
7269 if (unlikely(frag_off))
7270 l4_hdr = NEXTHDR_FRAGMENT;
Alexander Duyck897ab152011-05-27 05:31:47 +00007271 break;
7272 default:
Mark Rustad36a92d72015-11-18 09:21:28 -08007273 break;
Alexander Duyck897ab152011-05-27 05:31:47 +00007274 }
Auke Kok9a799d72007-09-15 14:07:45 -07007275
Alexander Duyck897ab152011-05-27 05:31:47 +00007276 switch (l4_hdr) {
7277 case IPPROTO_TCP:
7278 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
Mark Rustadf467bc02015-06-15 11:33:20 -07007279 mss_l4len_idx = (transport_hdr.tcphdr->doff * 4) <<
Alexander Duyck897ab152011-05-27 05:31:47 +00007280 IXGBE_ADVTXD_L4LEN_SHIFT;
7281 break;
7282 case IPPROTO_SCTP:
7283 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
7284 mss_l4len_idx = sizeof(struct sctphdr) <<
7285 IXGBE_ADVTXD_L4LEN_SHIFT;
7286 break;
7287 case IPPROTO_UDP:
7288 mss_l4len_idx = sizeof(struct udphdr) <<
7289 IXGBE_ADVTXD_L4LEN_SHIFT;
7290 break;
7291 default:
7292 if (unlikely(net_ratelimit())) {
7293 dev_warn(tx_ring->dev,
Mark Rustad36a92d72015-11-18 09:21:28 -08007294 "partial checksum, version=%d, l4 proto=%x\n",
7295 network_hdr.ipv4->version, l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00007296 }
Mark Rustad36a92d72015-11-18 09:21:28 -08007297 skb_checksum_help(skb);
7298 goto no_csum;
Alexander Duyck897ab152011-05-27 05:31:47 +00007299 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00007300
7301 /* update TX checksum flag */
7302 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007303 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07007304
Mark Rustad36a92d72015-11-18 09:21:28 -08007305no_csum:
Alexander Duyck244e27a2012-02-08 07:51:11 +00007306 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007307 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007308
7309 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
7310 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07007311}
7312
Alexander Duyck472148c2012-11-07 02:34:28 +00007313#define IXGBE_SET_FLAG(_input, _flag, _result) \
7314 ((_flag <= _result) ? \
7315 ((u32)(_input & _flag) * (_result / _flag)) : \
7316 ((u32)(_input & _flag) / (_flag / _result)))
7317
7318static u32 ixgbe_tx_cmd_type(struct sk_buff *skb, u32 tx_flags)
Alexander Duyckd3d00232011-07-15 02:31:25 +00007319{
7320 /* set type for advanced descriptor with frame checksum insertion */
Alexander Duyck472148c2012-11-07 02:34:28 +00007321 u32 cmd_type = IXGBE_ADVTXD_DTYP_DATA |
7322 IXGBE_ADVTXD_DCMD_DEXT |
7323 IXGBE_ADVTXD_DCMD_IFCS;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007324
7325 /* set HW vlan bit if vlan is present */
Alexander Duyck472148c2012-11-07 02:34:28 +00007326 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_HW_VLAN,
7327 IXGBE_ADVTXD_DCMD_VLE);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007328
Alexander Duyckd3d00232011-07-15 02:31:25 +00007329 /* set segmentation enable bits for TSO/FSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00007330 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSO,
7331 IXGBE_ADVTXD_DCMD_TSE);
7332
7333 /* set timestamp bit if present */
7334 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSTAMP,
7335 IXGBE_ADVTXD_MAC_TSTAMP);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007336
Alexander Duyck62748b72012-07-20 08:09:01 +00007337 /* insert frame checksum */
Alexander Duyck472148c2012-11-07 02:34:28 +00007338 cmd_type ^= IXGBE_SET_FLAG(skb->no_fcs, 1, IXGBE_ADVTXD_DCMD_IFCS);
Alexander Duyck62748b72012-07-20 08:09:01 +00007339
Alexander Duyckd3d00232011-07-15 02:31:25 +00007340 return cmd_type;
7341}
7342
Alexander Duyck729739b2012-02-08 07:51:06 +00007343static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
7344 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00007345{
Alexander Duyck472148c2012-11-07 02:34:28 +00007346 u32 olinfo_status = paylen << IXGBE_ADVTXD_PAYLEN_SHIFT;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007347
7348 /* enable L4 checksum for TSO and TX checksum offload */
Alexander Duyck472148c2012-11-07 02:34:28 +00007349 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7350 IXGBE_TX_FLAGS_CSUM,
7351 IXGBE_ADVTXD_POPTS_TXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007352
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00007353 /* enble IPv4 checksum for TSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00007354 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7355 IXGBE_TX_FLAGS_IPV4,
7356 IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007357
Alexander Duyck7f9643f2011-06-29 05:43:27 +00007358 /*
7359 * Check Context must be set if Tx switch is enabled, which it
7360 * always is for case where virtual functions are running
7361 */
Alexander Duyck472148c2012-11-07 02:34:28 +00007362 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7363 IXGBE_TX_FLAGS_CC,
7364 IXGBE_ADVTXD_CC);
Alexander Duyck7f9643f2011-06-29 05:43:27 +00007365
Alexander Duyck472148c2012-11-07 02:34:28 +00007366 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007367}
7368
Daniel Borkmann2367a172014-08-26 19:34:18 +02007369static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
7370{
7371 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
7372
7373 /* Herbert's original patch had:
7374 * smp_mb__after_netif_stop_queue();
7375 * but since that doesn't exist yet, just open code it.
7376 */
7377 smp_mb();
7378
7379 /* We need to check again in a case another CPU has just
7380 * made room available.
7381 */
7382 if (likely(ixgbe_desc_unused(tx_ring) < size))
7383 return -EBUSY;
7384
7385 /* A reprieve! - use start_queue because it doesn't call schedule */
7386 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
7387 ++tx_ring->tx_stats.restart_queue;
7388 return 0;
7389}
7390
7391static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
7392{
7393 if (likely(ixgbe_desc_unused(tx_ring) >= size))
7394 return 0;
7395
7396 return __ixgbe_maybe_stop_tx(tx_ring, size);
7397}
7398
Alexander Duyckd3d00232011-07-15 02:31:25 +00007399#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
7400 IXGBE_TXD_CMD_RS)
7401
7402static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00007403 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00007404 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07007405{
Alexander Duyck729739b2012-02-08 07:51:06 +00007406 struct sk_buff *skb = first->skb;
7407 struct ixgbe_tx_buffer *tx_buffer;
7408 union ixgbe_adv_tx_desc *tx_desc;
Alexander Duyckec718252012-10-30 06:01:55 +00007409 struct skb_frag_struct *frag;
7410 dma_addr_t dma;
7411 unsigned int data_len, size;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007412 u32 tx_flags = first->tx_flags;
Alexander Duyck472148c2012-11-07 02:34:28 +00007413 u32 cmd_type = ixgbe_tx_cmd_type(skb, tx_flags);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007414 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07007415
Alexander Duyck729739b2012-02-08 07:51:06 +00007416 tx_desc = IXGBE_TX_DESC(tx_ring, i);
7417
Alexander Duyckec718252012-10-30 06:01:55 +00007418 ixgbe_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len);
7419
7420 size = skb_headlen(skb);
7421 data_len = skb->data_len;
Alexander Duyck729739b2012-02-08 07:51:06 +00007422
Alexander Duyckd3d00232011-07-15 02:31:25 +00007423#ifdef IXGBE_FCOE
7424 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00007425 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00007426 size -= sizeof(struct fcoe_crc_eof) - data_len;
7427 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00007428 } else {
7429 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00007430 }
Auke Kok9a799d72007-09-15 14:07:45 -07007431 }
7432
Alexander Duyckd3d00232011-07-15 02:31:25 +00007433#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00007434 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007435
Alexander Duyckec718252012-10-30 06:01:55 +00007436 tx_buffer = first;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007437
Alexander Duyckec718252012-10-30 06:01:55 +00007438 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
7439 if (dma_mapping_error(tx_ring->dev, dma))
7440 goto dma_error;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007441
Alexander Duyckec718252012-10-30 06:01:55 +00007442 /* record length, and DMA address */
7443 dma_unmap_len_set(tx_buffer, len, size);
7444 dma_unmap_addr_set(tx_buffer, dma, dma);
7445
7446 tx_desc->read.buffer_addr = cpu_to_le64(dma);
7447
Alexander Duyck729739b2012-02-08 07:51:06 +00007448 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00007449 tx_desc->read.cmd_type_len =
Alexander Duyck472148c2012-11-07 02:34:28 +00007450 cpu_to_le32(cmd_type ^ IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007451
Alexander Duyckd3d00232011-07-15 02:31:25 +00007452 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00007453 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007454 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00007455 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007456 i = 0;
7457 }
Alexander Duyckec718252012-10-30 06:01:55 +00007458 tx_desc->read.olinfo_status = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00007459
7460 dma += IXGBE_MAX_DATA_PER_TXD;
7461 size -= IXGBE_MAX_DATA_PER_TXD;
7462
7463 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007464 }
7465
Alexander Duyck729739b2012-02-08 07:51:06 +00007466 if (likely(!data_len))
7467 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007468
Alexander Duyck472148c2012-11-07 02:34:28 +00007469 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type ^ size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007470
Alexander Duyck729739b2012-02-08 07:51:06 +00007471 i++;
7472 tx_desc++;
7473 if (i == tx_ring->count) {
7474 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
7475 i = 0;
7476 }
Alexander Duyckec718252012-10-30 06:01:55 +00007477 tx_desc->read.olinfo_status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007478
Alexander Duyckd3d00232011-07-15 02:31:25 +00007479#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00007480 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00007481#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00007482 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007483#endif
7484 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07007485
Alexander Duyck729739b2012-02-08 07:51:06 +00007486 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
7487 DMA_TO_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07007488
Alexander Duyck729739b2012-02-08 07:51:06 +00007489 tx_buffer = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -07007490 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00007491
Alexander Duyck729739b2012-02-08 07:51:06 +00007492 /* write last descriptor with RS and EOP bits */
Alexander Duyck472148c2012-11-07 02:34:28 +00007493 cmd_type |= size | IXGBE_TXD_CMD;
7494 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007495
Alexander Duyck091a6242012-02-08 07:51:01 +00007496 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00007497
Alexander Duyckd3d00232011-07-15 02:31:25 +00007498 /* set the timestamp */
7499 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07007500
7501 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00007502 * Force memory writes to complete before letting h/w know there
7503 * are new descriptors to fetch. (Only applicable for weak-ordered
7504 * memory model archs, such as IA-64).
7505 *
7506 * We also need this memory barrier to make certain all of the
7507 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07007508 */
7509 wmb();
7510
Alexander Duyckd3d00232011-07-15 02:31:25 +00007511 /* set next_to_watch value indicating a packet is present */
7512 first->next_to_watch = tx_desc;
7513
Alexander Duyck729739b2012-02-08 07:51:06 +00007514 i++;
7515 if (i == tx_ring->count)
7516 i = 0;
7517
7518 tx_ring->next_to_use = i;
7519
Daniel Borkmann2367a172014-08-26 19:34:18 +02007520 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
7521
7522 if (netif_xmit_stopped(txring_txq(tx_ring)) || !skb->xmit_more) {
Alexander Duyckad435ec2014-11-14 00:56:35 +00007523 writel(i, tx_ring->tail);
7524
7525 /* we need this if more than one processor can write to our tail
7526 * at a time, it synchronizes IO on IA64/Altix systems
7527 */
7528 mmiowb();
Daniel Borkmann9c938cd2014-08-24 15:42:16 +02007529 }
Daniel Borkmann2367a172014-08-26 19:34:18 +02007530
Alexander Duyckd3d00232011-07-15 02:31:25 +00007531 return;
7532dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00007533 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00007534
7535 /* clear dma mappings for failed tx_buffer_info map */
7536 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00007537 tx_buffer = &tx_ring->tx_buffer_info[i];
7538 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
7539 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00007540 break;
7541 if (i == 0)
7542 i = tx_ring->count;
7543 i--;
7544 }
7545
Alexander Duyckd3d00232011-07-15 02:31:25 +00007546 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07007547}
7548
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007549static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00007550 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007551{
Alexander Duyck69830522011-01-06 14:29:58 +00007552 struct ixgbe_q_vector *q_vector = ring->q_vector;
7553 union ixgbe_atr_hash_dword input = { .dword = 0 };
7554 union ixgbe_atr_hash_dword common = { .dword = 0 };
7555 union {
7556 unsigned char *network;
7557 struct iphdr *ipv4;
7558 struct ipv6hdr *ipv6;
7559 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08007560 struct tcphdr *th;
Alexander Duycke2873d42016-01-25 19:39:40 -08007561 unsigned int hlen;
Mark Rustad67359c32015-06-15 11:33:25 -07007562 struct sk_buff *skb;
Alexander Duyck905e4a42011-01-06 14:29:57 +00007563 __be16 vlan_id;
Alexander Duycke2873d42016-01-25 19:39:40 -08007564 int l4_proto;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007565
Alexander Duyck69830522011-01-06 14:29:58 +00007566 /* if ring doesn't have a interrupt vector, cannot perform ATR */
7567 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00007568 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007569
Alexander Duyck69830522011-01-06 14:29:58 +00007570 /* do nothing if sampling is disabled */
7571 if (!ring->atr_sample_rate)
7572 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007573
Alexander Duyck69830522011-01-06 14:29:58 +00007574 ring->atr_count++;
7575
Alexander Duycke2873d42016-01-25 19:39:40 -08007576 /* currently only IPv4/IPv6 with TCP is supported */
7577 if ((first->protocol != htons(ETH_P_IP)) &&
7578 (first->protocol != htons(ETH_P_IPV6)))
7579 return;
7580
Alexander Duyck69830522011-01-06 14:29:58 +00007581 /* snag network header to get L4 type and address */
Mark Rustad67359c32015-06-15 11:33:25 -07007582 skb = first->skb;
7583 hdr.network = skb_network_header(skb);
Mark Rustad67359c32015-06-15 11:33:25 -07007584#ifdef CONFIG_IXGBE_VXLAN
Alexander Duyck9f12df92016-01-25 19:36:29 -08007585 if (skb->encapsulation &&
7586 first->protocol == htons(ETH_P_IP) &&
7587 hdr.ipv4->protocol != IPPROTO_UDP) {
Mark Rustad67359c32015-06-15 11:33:25 -07007588 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck69830522011-01-06 14:29:58 +00007589
Alexander Duyck9f12df92016-01-25 19:36:29 -08007590 /* verify the port is recognized as VXLAN */
7591 if (adapter->vxlan_port &&
Alexander Duycke2873d42016-01-25 19:39:40 -08007592 udp_hdr(skb)->dest == adapter->vxlan_port)
Alexander Duyck9f12df92016-01-25 19:36:29 -08007593 hdr.network = skb_inner_network_header(skb);
Mark Rustade19dcde2015-12-09 14:55:37 -08007594 }
Alexander Duyck9f12df92016-01-25 19:36:29 -08007595#endif /* CONFIG_IXGBE_VXLAN */
Mark Rustade19dcde2015-12-09 14:55:37 -08007596
7597 /* Currently only IPv4/IPv6 with TCP is supported */
7598 switch (hdr.ipv4->version) {
7599 case IPVERSION:
Alexander Duycke2873d42016-01-25 19:39:40 -08007600 /* access ihl as u8 to avoid unaligned access on ia64 */
7601 hlen = (hdr.network[0] & 0x0F) << 2;
7602 l4_proto = hdr.ipv4->protocol;
Mark Rustade19dcde2015-12-09 14:55:37 -08007603 break;
7604 case 6:
Alexander Duycke2873d42016-01-25 19:39:40 -08007605 hlen = hdr.network - skb->data;
7606 l4_proto = ipv6_find_hdr(skb, &hlen, IPPROTO_TCP, NULL, NULL);
7607 hlen -= hdr.network - skb->data;
Mark Rustade19dcde2015-12-09 14:55:37 -08007608 break;
7609 default:
7610 return;
Mark Rustad67359c32015-06-15 11:33:25 -07007611 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007612
Alexander Duycke2873d42016-01-25 19:39:40 -08007613 if (l4_proto != IPPROTO_TCP)
7614 return;
7615
7616 th = (struct tcphdr *)(hdr.network + hlen);
7617
7618 /* skip this packet since the socket is closing */
7619 if (th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00007620 return;
7621
7622 /* sample on all syn packets or once every atr sample count */
7623 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
7624 return;
7625
7626 /* reset sample count */
7627 ring->atr_count = 0;
7628
Alexander Duyck244e27a2012-02-08 07:51:11 +00007629 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00007630
7631 /*
7632 * src and dst are inverted, think how the receiver sees them
7633 *
7634 * The input is broken into two sections, a non-compressed section
7635 * containing vm_pool, vlan_id, and flow_type. The rest of the data
7636 * is XORed together and stored in the compressed dword.
7637 */
7638 input.formatted.vlan_id = vlan_id;
7639
7640 /*
7641 * since src port and flex bytes occupy the same word XOR them together
7642 * and write the value to source port portion of compressed dword
7643 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007644 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Joe Perchesa1108ff2014-03-13 05:19:25 +00007645 common.port.src ^= th->dest ^ htons(ETH_P_8021Q);
Alexander Duyck69830522011-01-06 14:29:58 +00007646 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00007647 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00007648 common.port.dst ^= th->source;
7649
Mark Rustade19dcde2015-12-09 14:55:37 -08007650 switch (hdr.ipv4->version) {
7651 case IPVERSION:
Alexander Duyck69830522011-01-06 14:29:58 +00007652 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
7653 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
Mark Rustade19dcde2015-12-09 14:55:37 -08007654 break;
7655 case 6:
Alexander Duyck69830522011-01-06 14:29:58 +00007656 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
7657 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
7658 hdr.ipv6->saddr.s6_addr32[1] ^
7659 hdr.ipv6->saddr.s6_addr32[2] ^
7660 hdr.ipv6->saddr.s6_addr32[3] ^
7661 hdr.ipv6->daddr.s6_addr32[0] ^
7662 hdr.ipv6->daddr.s6_addr32[1] ^
7663 hdr.ipv6->daddr.s6_addr32[2] ^
7664 hdr.ipv6->daddr.s6_addr32[3];
Mark Rustade19dcde2015-12-09 14:55:37 -08007665 break;
7666 default:
7667 break;
Alexander Duyck69830522011-01-06 14:29:58 +00007668 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007669
Alexander Duyck9f12df92016-01-25 19:36:29 -08007670 if (hdr.network != skb_network_header(skb))
Mark Rustad67359c32015-06-15 11:33:25 -07007671 input.formatted.flow_type |= IXGBE_ATR_L4TYPE_TUNNEL_MASK;
Mark Rustad67359c32015-06-15 11:33:25 -07007672
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007673 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00007674 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
7675 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007676}
7677
Jason Wangf663dd92014-01-10 16:18:26 +08007678static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +01007679 void *accel_priv, select_queue_fallback_t fallback)
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007680{
Jason Wangf663dd92014-01-10 16:18:26 +08007681 struct ixgbe_fwd_adapter *fwd_adapter = accel_priv;
7682#ifdef IXGBE_FCOE
Alexander Duyck97488bd2013-01-12 06:33:37 +00007683 struct ixgbe_adapter *adapter;
7684 struct ixgbe_ring_feature *f;
7685 int txq;
Jason Wangf663dd92014-01-10 16:18:26 +08007686#endif
7687
7688 if (fwd_adapter)
7689 return skb->queue_mapping + fwd_adapter->tx_base_queue;
7690
7691#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00007692
Alexander Duyck97488bd2013-01-12 06:33:37 +00007693 /*
7694 * only execute the code below if protocol is FCoE
7695 * or FIP and we have FCoE enabled on the adapter
7696 */
7697 switch (vlan_get_protocol(skb)) {
Joe Perchesa1108ff2014-03-13 05:19:25 +00007698 case htons(ETH_P_FCOE):
7699 case htons(ETH_P_FIP):
Alexander Duyck97488bd2013-01-12 06:33:37 +00007700 adapter = netdev_priv(dev);
Alexander Duyckc0876632012-05-10 00:01:46 +00007701
Alexander Duyck97488bd2013-01-12 06:33:37 +00007702 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7703 break;
7704 default:
Daniel Borkmann99932d42014-02-16 15:55:20 +01007705 return fallback(dev, skb);
Krishna Kumarfdd3d632010-02-03 13:13:10 +00007706 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007707
Alexander Duyck97488bd2013-01-12 06:33:37 +00007708 f = &adapter->ring_feature[RING_F_FCOE];
7709
7710 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
7711 smp_processor_id();
7712
7713 while (txq >= f->indices)
7714 txq -= f->indices;
7715
7716 return txq + f->offset;
Jason Wangf663dd92014-01-10 16:18:26 +08007717#else
Daniel Borkmann99932d42014-02-16 15:55:20 +01007718 return fallback(dev, skb);
Jason Wangf663dd92014-01-10 16:18:26 +08007719#endif
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007720}
7721
Alexander Duyckfc77dc32010-11-16 19:26:51 -08007722netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00007723 struct ixgbe_adapter *adapter,
7724 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07007725{
Alexander Duyckd3d00232011-07-15 02:31:25 +00007726 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00007727 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007728 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00007729 unsigned short f;
Alexander Duycka535c302011-05-27 05:31:52 +00007730 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00007731 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00007732 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00007733
Alexander Duycka535c302011-05-27 05:31:52 +00007734 /*
7735 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00007736 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00007737 * + 2 desc gap to keep tail from touching head,
7738 * + 1 desc for context descriptor,
7739 * otherwise try next time
7740 */
Alexander Duycka535c302011-05-27 05:31:52 +00007741 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
7742 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Alexander Duyck7f661622013-02-09 01:19:55 +00007743
Alexander Duycka535c302011-05-27 05:31:52 +00007744 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
7745 tx_ring->tx_stats.tx_busy++;
7746 return NETDEV_TX_BUSY;
7747 }
7748
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007749 /* record the location of the first descriptor for this packet */
7750 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
7751 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00007752 first->bytecount = skb->len;
7753 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007754
Alexander Duyck66f32a82011-06-29 05:43:22 +00007755 /* if we have a HW VLAN tag being added default to the HW one */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01007756 if (skb_vlan_tag_present(skb)) {
7757 tx_flags |= skb_vlan_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007758 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7759 /* else if it is a SW VLAN check the next protocol and store the tag */
Joe Perchesa1108ff2014-03-13 05:19:25 +00007760 } else if (protocol == htons(ETH_P_8021Q)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007761 struct vlan_hdr *vhdr, _vhdr;
7762 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
7763 if (!vhdr)
7764 goto out_drop;
7765
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007766 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
7767 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007768 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07007769 }
Toshiaki Makita02136682015-01-29 20:37:09 +09007770 protocol = vlan_get_protocol(skb);
Yi Zoueacd73f2009-05-13 13:11:06 +00007771
Mark Rustadd5234932014-08-09 07:02:09 +00007772 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
7773 adapter->ptp_clock &&
7774 !test_and_set_bit_lock(__IXGBE_PTP_TX_IN_PROGRESS,
7775 &adapter->state)) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007776 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7777 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
Jacob Keller891dc082012-12-05 07:24:46 +00007778
7779 /* schedule check for Tx timestamp */
7780 adapter->ptp_tx_skb = skb_get(skb);
7781 adapter->ptp_tx_start = jiffies;
7782 schedule_work(&adapter->ptp_tx_work);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007783 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007784
Jakub Kicinskiff29a862014-03-15 14:55:16 +00007785 skb_tx_timestamp(skb);
7786
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007787#ifdef CONFIG_PCI_IOV
7788 /*
7789 * Use the l2switch_enable flag - would be false if the DMA
7790 * Tx switch had been disabled.
7791 */
7792 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
Alexander Duyck472148c2012-11-07 02:34:28 +00007793 tx_flags |= IXGBE_TX_FLAGS_CC;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007794
7795#endif
John Fastabend32701dc2011-09-27 03:51:56 +00007796 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007797 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00007798 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
7799 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007800 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00007801 tx_flags |= (skb->priority & 0x7) <<
7802 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007803 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
7804 struct vlan_ethhdr *vhdr;
Francois Romieu2049e1f2014-03-30 03:14:27 +00007805
7806 if (skb_cow_head(skb, 0))
Alexander Duyck66f32a82011-06-29 05:43:22 +00007807 goto out_drop;
7808 vhdr = (struct vlan_ethhdr *)skb->data;
7809 vhdr->h_vlan_TCI = htons(tx_flags >>
7810 IXGBE_TX_FLAGS_VLAN_SHIFT);
7811 } else {
7812 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7813 }
7814 }
Alexander Duycka535c302011-05-27 05:31:52 +00007815
Alexander Duyck244e27a2012-02-08 07:51:11 +00007816 /* record initial flags and protocol */
7817 first->tx_flags = tx_flags;
7818 first->protocol = protocol;
7819
Yi Zoueacd73f2009-05-13 13:11:06 +00007820#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007821 /* setup tx offload for FCoE */
Joe Perchesa1108ff2014-03-13 05:19:25 +00007822 if ((protocol == htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00007823 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00007824 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00007825 if (tso < 0)
7826 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07007827
Alexander Duyck66f32a82011-06-29 05:43:22 +00007828 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007829 }
Auke Kok9a799d72007-09-15 14:07:45 -07007830
Auke Kok9a799d72007-09-15 14:07:45 -07007831#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007832 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007833 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007834 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007835 else if (!tso)
7836 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007837
7838 /* add the ATR filter if ATR is on */
7839 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00007840 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007841
7842#ifdef IXGBE_FCOE
7843xmit_fcoe:
7844#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007845 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007846
Auke Kok9a799d72007-09-15 14:07:45 -07007847 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007848
7849out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007850 dev_kfree_skb_any(first->skb);
7851 first->skb = NULL;
7852
Alexander Duyck897ab152011-05-27 05:31:47 +00007853 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007854}
7855
John Fastabend2a47fa42013-11-06 09:54:52 -08007856static netdev_tx_t __ixgbe_xmit_frame(struct sk_buff *skb,
7857 struct net_device *netdev,
7858 struct ixgbe_ring *ring)
Auke Kok9a799d72007-09-15 14:07:45 -07007859{
7860 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007861 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07007862
Alexander Duycka50c29d2012-02-08 07:50:40 +00007863 /*
7864 * The minimum packet size for olinfo paylen is 17 so pad the skb
7865 * in order to meet this minimum size requirement.
7866 */
Alexander Duycka94d9e22014-12-03 08:17:39 -08007867 if (skb_put_padto(skb, 17))
7868 return NETDEV_TX_OK;
Alexander Duycka50c29d2012-02-08 07:50:40 +00007869
John Fastabend2a47fa42013-11-06 09:54:52 -08007870 tx_ring = ring ? ring : adapter->tx_ring[skb->queue_mapping];
7871
Auke Kok9a799d72007-09-15 14:07:45 -07007872 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7873}
7874
John Fastabend2a47fa42013-11-06 09:54:52 -08007875static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
7876 struct net_device *netdev)
7877{
7878 return __ixgbe_xmit_frame(skb, netdev, NULL);
7879}
7880
Auke Kok9a799d72007-09-15 14:07:45 -07007881/**
7882 * ixgbe_set_mac - Change the Ethernet Address of the NIC
7883 * @netdev: network interface device structure
7884 * @p: pointer to an address structure
7885 *
7886 * Returns 0 on success, negative on failure
7887 **/
7888static int ixgbe_set_mac(struct net_device *netdev, void *p)
7889{
7890 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7891 struct ixgbe_hw *hw = &adapter->hw;
7892 struct sockaddr *addr = p;
7893
7894 if (!is_valid_ether_addr(addr->sa_data))
7895 return -EADDRNOTAVAIL;
7896
7897 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007898 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07007899
Alexander Duyckc9f53e62015-10-22 16:26:30 -07007900 ixgbe_mac_set_default_filter(adapter);
7901
7902 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007903}
7904
Ben Hutchings6b73e102009-04-29 08:08:58 +00007905static int
7906ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7907{
7908 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7909 struct ixgbe_hw *hw = &adapter->hw;
7910 u16 value;
7911 int rc;
7912
7913 if (prtad != hw->phy.mdio.prtad)
7914 return -EINVAL;
7915 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7916 if (!rc)
7917 rc = value;
7918 return rc;
7919}
7920
7921static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7922 u16 addr, u16 value)
7923{
7924 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7925 struct ixgbe_hw *hw = &adapter->hw;
7926
7927 if (prtad != hw->phy.mdio.prtad)
7928 return -EINVAL;
7929 return hw->phy.ops.write_reg(hw, addr, devad, value);
7930}
7931
7932static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7933{
7934 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7935
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007936 switch (cmd) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007937 case SIOCSHWTSTAMP:
Jacob Keller93501d42014-02-28 15:48:58 -08007938 return ixgbe_ptp_set_ts_config(adapter, req);
7939 case SIOCGHWTSTAMP:
7940 return ixgbe_ptp_get_ts_config(adapter, req);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007941 default:
7942 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7943 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00007944}
7945
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007946/**
7947 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007948 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007949 * @netdev: network interface device structure
7950 *
7951 * Returns non-zero on failure
7952 **/
7953static int ixgbe_add_sanmac_netdev(struct net_device *dev)
7954{
7955 int err = 0;
7956 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007957 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007958
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007959 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007960 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007961 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007962 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00007963
7964 /* update SAN MAC vmdq pool selection */
7965 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007966 }
7967 return err;
7968}
7969
7970/**
7971 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007972 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007973 * @netdev: network interface device structure
7974 *
7975 * Returns non-zero on failure
7976 **/
7977static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7978{
7979 int err = 0;
7980 struct ixgbe_adapter *adapter = netdev_priv(dev);
7981 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7982
7983 if (is_valid_ether_addr(mac->san_addr)) {
7984 rtnl_lock();
7985 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7986 rtnl_unlock();
7987 }
7988 return err;
7989}
7990
Auke Kok9a799d72007-09-15 14:07:45 -07007991#ifdef CONFIG_NET_POLL_CONTROLLER
7992/*
7993 * Polling 'interrupt' - used by things like netconsole to send skbs
7994 * without having to re-enable interrupts. It's not called while
7995 * the interrupt routine is executing.
7996 */
7997static void ixgbe_netpoll(struct net_device *netdev)
7998{
7999 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00008000 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07008001
Alexander Duyck1a647bd2010-01-13 01:49:13 +00008002 /* if interface is down do nothing */
8003 if (test_bit(__IXGBE_DOWN, &adapter->state))
8004 return;
8005
Alexander Duyck856f6062015-02-25 17:45:54 +00008006 /* loop through and schedule all active queues */
8007 for (i = 0; i < adapter->num_q_vectors; i++)
8008 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07008009}
Auke Kok9a799d72007-09-15 14:07:45 -07008010
Alexander Duyck581330b2012-02-08 07:51:47 +00008011#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00008012static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
8013 struct rtnl_link_stats64 *stats)
8014{
8015 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8016 int i;
8017
Eric Dumazet1a515022010-11-16 19:26:42 -08008018 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00008019 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08008020 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00008021 u64 bytes, packets;
8022 unsigned int start;
8023
Eric Dumazet1a515022010-11-16 19:26:42 -08008024 if (ring) {
8025 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07008026 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazet1a515022010-11-16 19:26:42 -08008027 packets = ring->stats.packets;
8028 bytes = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07008029 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet1a515022010-11-16 19:26:42 -08008030 stats->rx_packets += packets;
8031 stats->rx_bytes += bytes;
8032 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00008033 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00008034
8035 for (i = 0; i < adapter->num_tx_queues; i++) {
8036 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
8037 u64 bytes, packets;
8038 unsigned int start;
8039
8040 if (ring) {
8041 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07008042 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00008043 packets = ring->stats.packets;
8044 bytes = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07008045 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00008046 stats->tx_packets += packets;
8047 stats->tx_bytes += bytes;
8048 }
8049 }
Eric Dumazet1a515022010-11-16 19:26:42 -08008050 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00008051 /* following stats updated by ixgbe_watchdog_task() */
8052 stats->multicast = netdev->stats.multicast;
8053 stats->rx_errors = netdev->stats.rx_errors;
8054 stats->rx_length_errors = netdev->stats.rx_length_errors;
8055 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
8056 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
8057 return stats;
8058}
8059
Jeff Kirsher8af3c332012-02-18 07:08:14 +00008060#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00008061/**
8062 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
8063 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00008064 * @tc: number of traffic classes currently enabled
8065 *
8066 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
8067 * 802.1Q priority maps to a packet buffer that exists.
8068 */
8069static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
8070{
8071 struct ixgbe_hw *hw = &adapter->hw;
8072 u32 reg, rsave;
8073 int i;
8074
8075 /* 82598 have a static priority to TC mapping that can not
8076 * be changed so no validation is needed.
8077 */
8078 if (hw->mac.type == ixgbe_mac_82598EB)
8079 return;
8080
8081 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
8082 rsave = reg;
8083
8084 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
8085 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
8086
8087 /* If up2tc is out of bounds default to zero */
8088 if (up2tc > tc)
8089 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
8090 }
8091
8092 if (reg != rsave)
8093 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
8094
8095 return;
8096}
8097
Ben Hutchings49ce9c22012-07-10 10:56:00 +00008098/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00008099 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
8100 * @adapter: Pointer to adapter struct
8101 *
8102 * Populate the netdev user priority to tc map
8103 */
8104static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
8105{
8106 struct net_device *dev = adapter->netdev;
8107 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
8108 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
8109 u8 prio;
8110
8111 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
8112 u8 tc = 0;
8113
8114 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
8115 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
8116 else if (ets)
8117 tc = ets->prio_tc[prio];
8118
8119 netdev_set_prio_tc_map(dev, prio, tc);
8120 }
8121}
8122
Alexander Duyckcca73c52013-01-12 06:33:44 +00008123#endif /* CONFIG_IXGBE_DCB */
Alexander Duyck02debdc2012-05-18 06:33:31 +00008124/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00008125 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00008126 *
8127 * @netdev: net device to configure
8128 * @tc: number of traffic classes to enable
8129 */
8130int ixgbe_setup_tc(struct net_device *dev, u8 tc)
8131{
John Fastabend8b1c0b22011-05-03 02:26:48 +00008132 struct ixgbe_adapter *adapter = netdev_priv(dev);
8133 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08008134 bool pools;
John Fastabend8b1c0b22011-05-03 02:26:48 +00008135
John Fastabend8b1c0b22011-05-03 02:26:48 +00008136 /* Hardware supports up to 8 traffic classes */
Emil Tantilov7e3f5c82015-07-09 12:28:59 -07008137 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs)
8138 return -EINVAL;
8139
8140 if (hw->mac.type == ixgbe_mac_82598EB && tc && tc < MAX_TRAFFIC_CLASS)
John Fastabend8b1c0b22011-05-03 02:26:48 +00008141 return -EINVAL;
8142
John Fastabend2a47fa42013-11-06 09:54:52 -08008143 pools = (find_first_zero_bit(&adapter->fwd_bitmask, 32) > 1);
8144 if (tc && pools && adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS)
8145 return -EBUSY;
8146
John Fastabend8b1c0b22011-05-03 02:26:48 +00008147 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00008148 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00008149 * hardware is not flexible enough to do this dynamically.
8150 */
8151 if (netif_running(dev))
8152 ixgbe_close(dev);
Alexander Duyckbf4d67d2015-10-20 13:28:17 -07008153 else
8154 ixgbe_reset(adapter);
8155
John Fastabend8b1c0b22011-05-03 02:26:48 +00008156 ixgbe_clear_interrupt_scheme(adapter);
8157
Alexander Duyckcca73c52013-01-12 06:33:44 +00008158#ifdef CONFIG_IXGBE_DCB
John Fastabende7589ea2011-07-18 22:38:36 +00008159 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00008160 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00008161 ixgbe_set_prio_tc_map(adapter);
8162
John Fastabende7589ea2011-07-18 22:38:36 +00008163 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00008164
Alexander Duyck943561d2012-05-09 22:14:44 -07008165 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
8166 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00008167 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07008168 }
John Fastabende7589ea2011-07-18 22:38:36 +00008169 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00008170 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00008171
Alexander Duyck943561d2012-05-09 22:14:44 -07008172 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
8173 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00008174
8175 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00008176
8177 adapter->temp_dcb_cfg.pfc_mode_enable = false;
8178 adapter->dcb_cfg.pfc_mode_enable = false;
8179 }
8180
John Fastabend8b1c0b22011-05-03 02:26:48 +00008181 ixgbe_validate_rtr(adapter, tc);
Alexander Duyckcca73c52013-01-12 06:33:44 +00008182
8183#endif /* CONFIG_IXGBE_DCB */
8184 ixgbe_init_interrupt_scheme(adapter);
8185
John Fastabend8b1c0b22011-05-03 02:26:48 +00008186 if (netif_running(dev))
Alexander Duyckcca73c52013-01-12 06:33:44 +00008187 return ixgbe_open(dev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00008188
8189 return 0;
8190}
Eric Dumazetde1036b2010-10-20 23:00:04 +00008191
John Fastabendb82b17d2016-02-16 21:18:53 -08008192static int ixgbe_delete_clsu32(struct ixgbe_adapter *adapter,
8193 struct tc_cls_u32_offload *cls)
8194{
8195 int err;
8196
8197 spin_lock(&adapter->fdir_perfect_lock);
8198 err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, cls->knode.handle);
8199 spin_unlock(&adapter->fdir_perfect_lock);
8200 return err;
8201}
8202
John Fastabenddb956ae2016-02-16 21:19:19 -08008203static int ixgbe_configure_clsu32_add_hnode(struct ixgbe_adapter *adapter,
8204 __be16 protocol,
8205 struct tc_cls_u32_offload *cls)
8206{
8207 /* This ixgbe devices do not support hash tables at the moment
8208 * so abort when given hash tables.
8209 */
8210 if (cls->hnode.divisor > 0)
8211 return -EINVAL;
8212
8213 set_bit(TC_U32_USERHTID(cls->hnode.handle), &adapter->tables);
8214 return 0;
8215}
8216
8217static int ixgbe_configure_clsu32_del_hnode(struct ixgbe_adapter *adapter,
8218 struct tc_cls_u32_offload *cls)
8219{
8220 clear_bit(TC_U32_USERHTID(cls->hnode.handle), &adapter->tables);
8221 return 0;
8222}
8223
John Fastabendb82b17d2016-02-16 21:18:53 -08008224static int ixgbe_configure_clsu32(struct ixgbe_adapter *adapter,
8225 __be16 protocol,
8226 struct tc_cls_u32_offload *cls)
8227{
8228 u32 loc = cls->knode.handle & 0xfffff;
8229 struct ixgbe_hw *hw = &adapter->hw;
8230 struct ixgbe_mat_field *field_ptr;
8231 struct ixgbe_fdir_filter *input;
8232 union ixgbe_atr_input mask;
8233#ifdef CONFIG_NET_CLS_ACT
8234 const struct tc_action *a;
8235#endif
8236 int i, err = 0;
8237 u8 queue;
8238 u32 handle;
8239
8240 memset(&mask, 0, sizeof(union ixgbe_atr_input));
8241 handle = cls->knode.handle;
8242
8243 /* At the moment cls_u32 jumps to transport layer and skips past
8244 * L2 headers. The canonical method to match L2 frames is to use
8245 * negative values. However this is error prone at best but really
8246 * just broken because there is no way to "know" what sort of hdr
8247 * is in front of the transport layer. Fix cls_u32 to support L2
8248 * headers when needed.
8249 */
8250 if (protocol != htons(ETH_P_IP))
8251 return -EINVAL;
8252
8253 if (cls->knode.link_handle ||
8254 cls->knode.link_handle >= IXGBE_MAX_LINK_HANDLE) {
8255 struct ixgbe_nexthdr *nexthdr = ixgbe_ipv4_jumps;
8256 u32 uhtid = TC_U32_USERHTID(cls->knode.link_handle);
8257
John Fastabenddb956ae2016-02-16 21:19:19 -08008258 if (!test_bit(uhtid, &adapter->tables))
8259 return -EINVAL;
8260
John Fastabendb82b17d2016-02-16 21:18:53 -08008261 for (i = 0; nexthdr[i].jump; i++) {
8262 if (nexthdr->o != cls->knode.sel->offoff ||
8263 nexthdr->s != cls->knode.sel->offshift ||
8264 nexthdr->m != cls->knode.sel->offmask ||
8265 /* do not support multiple key jumps its just mad */
8266 cls->knode.sel->nkeys > 1)
8267 return -EINVAL;
8268
8269 if (nexthdr->off != cls->knode.sel->keys[0].off ||
8270 nexthdr->val != cls->knode.sel->keys[0].val ||
8271 nexthdr->mask != cls->knode.sel->keys[0].mask)
8272 return -EINVAL;
8273
8274 if (uhtid >= IXGBE_MAX_LINK_HANDLE)
8275 return -EINVAL;
8276
8277 adapter->jump_tables[uhtid] = nexthdr->jump;
8278 }
8279 return 0;
8280 }
8281
8282 if (loc >= ((1024 << adapter->fdir_pballoc) - 2)) {
8283 e_err(drv, "Location out of range\n");
8284 return -EINVAL;
8285 }
8286
8287 /* cls u32 is a graph starting at root node 0x800. The driver tracks
8288 * links and also the fields used to advance the parser across each
8289 * link (e.g. nexthdr/eat parameters from 'tc'). This way we can map
8290 * the u32 graph onto the hardware parse graph denoted in ixgbe_model.h
8291 * To add support for new nodes update ixgbe_model.h parse structures
8292 * this function _should_ be generic try not to hardcode values here.
8293 */
8294 if (TC_U32_USERHTID(handle) == 0x800) {
8295 field_ptr = adapter->jump_tables[0];
8296 } else {
8297 if (TC_U32_USERHTID(handle) >= ARRAY_SIZE(adapter->jump_tables))
8298 return -EINVAL;
8299
8300 field_ptr = adapter->jump_tables[TC_U32_USERHTID(handle)];
8301 }
8302
8303 if (!field_ptr)
8304 return -EINVAL;
8305
8306 input = kzalloc(sizeof(*input), GFP_KERNEL);
8307 if (!input)
8308 return -ENOMEM;
8309
8310 for (i = 0; i < cls->knode.sel->nkeys; i++) {
8311 int off = cls->knode.sel->keys[i].off;
8312 __be32 val = cls->knode.sel->keys[i].val;
8313 __be32 m = cls->knode.sel->keys[i].mask;
8314 bool found_entry = false;
8315 int j;
8316
8317 for (j = 0; field_ptr[j].val; j++) {
8318 if (field_ptr[j].off == off &&
8319 field_ptr[j].mask == m) {
8320 field_ptr[j].val(input, &mask, val, m);
8321 input->filter.formatted.flow_type |=
8322 field_ptr[j].type;
8323 found_entry = true;
8324 break;
8325 }
8326 }
8327
8328 if (!found_entry)
8329 goto err_out;
8330 }
8331
8332 mask.formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK |
8333 IXGBE_ATR_L4TYPE_MASK;
8334
8335 if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4)
8336 mask.formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK;
8337
8338#ifdef CONFIG_NET_CLS_ACT
8339 if (list_empty(&cls->knode.exts->actions))
8340 goto err_out;
8341
8342 list_for_each_entry(a, &cls->knode.exts->actions, list) {
8343 if (!is_tcf_gact_shot(a))
8344 goto err_out;
8345 }
8346#endif
8347
8348 input->action = IXGBE_FDIR_DROP_QUEUE;
8349 queue = IXGBE_FDIR_DROP_QUEUE;
8350 input->sw_idx = loc;
8351
8352 spin_lock(&adapter->fdir_perfect_lock);
8353
8354 if (hlist_empty(&adapter->fdir_filter_list)) {
8355 memcpy(&adapter->fdir_mask, &mask, sizeof(mask));
8356 err = ixgbe_fdir_set_input_mask_82599(hw, &mask);
8357 if (err)
8358 goto err_out_w_lock;
8359 } else if (memcmp(&adapter->fdir_mask, &mask, sizeof(mask))) {
8360 err = -EINVAL;
8361 goto err_out_w_lock;
8362 }
8363
8364 ixgbe_atr_compute_perfect_hash_82599(&input->filter, &mask);
8365 err = ixgbe_fdir_write_perfect_filter_82599(hw, &input->filter,
8366 input->sw_idx, queue);
8367 if (!err)
8368 ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx);
8369 spin_unlock(&adapter->fdir_perfect_lock);
8370
8371 return err;
8372err_out_w_lock:
8373 spin_unlock(&adapter->fdir_perfect_lock);
8374err_out:
8375 kfree(input);
8376 return -EINVAL;
8377}
8378
John Fastabend16e5cc62016-02-16 21:16:43 -08008379int __ixgbe_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
8380 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08008381{
John Fastabendb82b17d2016-02-16 21:18:53 -08008382 struct ixgbe_adapter *adapter = netdev_priv(dev);
8383
8384 if (TC_H_MAJ(handle) == TC_H_MAJ(TC_H_INGRESS) &&
8385 tc->type == TC_SETUP_CLSU32) {
John Fastabendb82b17d2016-02-16 21:18:53 -08008386 switch (tc->cls_u32->command) {
8387 case TC_CLSU32_NEW_KNODE:
8388 case TC_CLSU32_REPLACE_KNODE:
8389 return ixgbe_configure_clsu32(adapter,
8390 proto, tc->cls_u32);
8391 case TC_CLSU32_DELETE_KNODE:
8392 return ixgbe_delete_clsu32(adapter, tc->cls_u32);
John Fastabenddb956ae2016-02-16 21:19:19 -08008393 case TC_CLSU32_NEW_HNODE:
8394 case TC_CLSU32_REPLACE_HNODE:
8395 return ixgbe_configure_clsu32_add_hnode(adapter, proto,
8396 tc->cls_u32);
8397 case TC_CLSU32_DELETE_HNODE:
8398 return ixgbe_configure_clsu32_del_hnode(adapter,
8399 tc->cls_u32);
John Fastabendb82b17d2016-02-16 21:18:53 -08008400 default:
8401 return -EINVAL;
8402 }
8403 }
8404
John Fastabend5eb4dce2016-02-29 11:26:13 -08008405 if (tc->type != TC_SETUP_MQPRIO)
John Fastabende4c67342016-02-16 21:16:15 -08008406 return -EINVAL;
8407
John Fastabend16e5cc62016-02-16 21:16:43 -08008408 return ixgbe_setup_tc(dev, tc->tc);
John Fastabende4c67342016-02-16 21:16:15 -08008409}
8410
Greg Roseda36b642012-12-11 08:26:43 +00008411#ifdef CONFIG_PCI_IOV
8412void ixgbe_sriov_reinit(struct ixgbe_adapter *adapter)
8413{
8414 struct net_device *netdev = adapter->netdev;
8415
8416 rtnl_lock();
Greg Roseda36b642012-12-11 08:26:43 +00008417 ixgbe_setup_tc(netdev, netdev_get_num_tc(netdev));
Greg Roseda36b642012-12-11 08:26:43 +00008418 rtnl_unlock();
8419}
8420
8421#endif
Don Skidmore082757a2011-07-21 05:55:00 +00008422void ixgbe_do_reset(struct net_device *netdev)
8423{
8424 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8425
8426 if (netif_running(netdev))
8427 ixgbe_reinit_locked(adapter);
8428 else
8429 ixgbe_reset(adapter);
8430}
8431
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008432static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00008433 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00008434{
8435 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8436
Don Skidmore082757a2011-07-21 05:55:00 +00008437 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00008438 if (!(features & NETIF_F_RXCSUM))
8439 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00008440
Alexander Duyck567d2de2012-02-11 07:18:57 +00008441 /* Turn off LRO if not RSC capable */
8442 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
8443 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00008444
Alexander Duyck567d2de2012-02-11 07:18:57 +00008445 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00008446}
8447
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008448static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00008449 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00008450{
8451 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00008452 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00008453 bool need_reset = false;
8454
Don Skidmore082757a2011-07-21 05:55:00 +00008455 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00008456 if (!(features & NETIF_F_LRO)) {
8457 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00008458 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00008459 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
8460 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
8461 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
8462 if (adapter->rx_itr_setting == 1 ||
8463 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
8464 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
8465 need_reset = true;
8466 } else if ((changed ^ features) & NETIF_F_LRO) {
8467 e_info(probe, "rx-usecs set too low, "
8468 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00008469 }
8470 }
8471
8472 /*
John Fastabendb82b17d2016-02-16 21:18:53 -08008473 * Check if Flow Director n-tuple support or hw_tc support was
8474 * enabled or disabled. If the state changed, we need to reset.
Don Skidmore082757a2011-07-21 05:55:00 +00008475 */
John Fastabendb82b17d2016-02-16 21:18:53 -08008476 if ((features & NETIF_F_NTUPLE) || (features & NETIF_F_HW_TC)) {
Alexander Duyck567d2de2012-02-11 07:18:57 +00008477 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00008478 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
8479 need_reset = true;
8480
Alexander Duyck567d2de2012-02-11 07:18:57 +00008481 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
8482 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
John Fastabendb82b17d2016-02-16 21:18:53 -08008483 } else {
Alexander Duyck39cb6812012-06-06 05:38:20 +00008484 /* turn off perfect filters, enable ATR and reset */
8485 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
8486 need_reset = true;
8487
8488 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
8489
8490 /* We cannot enable ATR if SR-IOV is enabled */
John Fastabendb82b17d2016-02-16 21:18:53 -08008491 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED ||
8492 /* We cannot enable ATR if we have 2 or more tcs */
8493 (netdev_get_num_tc(netdev) > 1) ||
8494 /* We cannot enable ATR if RSS is disabled */
8495 (adapter->ring_feature[RING_F_RSS].limit <= 1) ||
8496 /* A sample rate of 0 indicates ATR disabled */
8497 (!adapter->atr_sample_rate))
8498 ; /* do nothing not supported */
8499 else /* otherwise supported and set the flag */
8500 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
Don Skidmore082757a2011-07-21 05:55:00 +00008501 }
8502
Patrick McHardyf6469682013-04-19 02:04:27 +00008503 if (features & NETIF_F_HW_VLAN_CTAG_RX)
John Fastabend146d4cc2012-05-15 05:59:26 +00008504 ixgbe_vlan_strip_enable(adapter);
8505 else
8506 ixgbe_vlan_strip_disable(adapter);
8507
Ben Greear3f2d1c02012-03-08 08:28:41 +00008508 if (changed & NETIF_F_RXALL)
8509 need_reset = true;
8510
Alexander Duyck567d2de2012-02-11 07:18:57 +00008511 netdev->features = features;
Mark Rustad67359c32015-06-15 11:33:25 -07008512
8513#ifdef CONFIG_IXGBE_VXLAN
8514 if ((adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE)) {
8515 if (features & NETIF_F_RXCSUM)
8516 adapter->flags2 |= IXGBE_FLAG2_VXLAN_REREG_NEEDED;
8517 else
8518 ixgbe_clear_vxlan_port(adapter);
8519 }
8520#endif /* CONFIG_IXGBE_VXLAN */
8521
Don Skidmore082757a2011-07-21 05:55:00 +00008522 if (need_reset)
8523 ixgbe_do_reset(netdev);
8524
8525 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00008526}
8527
Mark Rustad67359c32015-06-15 11:33:25 -07008528#ifdef CONFIG_IXGBE_VXLAN
Don Skidmore3f207802014-12-23 07:40:34 +00008529/**
8530 * ixgbe_add_vxlan_port - Get notifications about VXLAN ports that come up
8531 * @dev: The port's netdev
8532 * @sa_family: Socket Family that VXLAN is notifiying us about
8533 * @port: New UDP port number that VXLAN started listening to
8534 **/
8535static void ixgbe_add_vxlan_port(struct net_device *dev, sa_family_t sa_family,
8536 __be16 port)
8537{
8538 struct ixgbe_adapter *adapter = netdev_priv(dev);
8539 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore3f207802014-12-23 07:40:34 +00008540
Mark Rustad67359c32015-06-15 11:33:25 -07008541 if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE))
8542 return;
8543
Don Skidmore3f207802014-12-23 07:40:34 +00008544 if (sa_family == AF_INET6)
8545 return;
8546
Alexander Duyck9f12df92016-01-25 19:36:29 -08008547 if (adapter->vxlan_port == port)
Don Skidmore3f207802014-12-23 07:40:34 +00008548 return;
Don Skidmore3f207802014-12-23 07:40:34 +00008549
8550 if (adapter->vxlan_port) {
8551 netdev_info(dev,
Mark Rustad67359c32015-06-15 11:33:25 -07008552 "Hit Max num of VXLAN ports, not adding port %d\n",
Alexander Duyck9f12df92016-01-25 19:36:29 -08008553 ntohs(port));
Don Skidmore3f207802014-12-23 07:40:34 +00008554 return;
8555 }
8556
Alexander Duyck9f12df92016-01-25 19:36:29 -08008557 adapter->vxlan_port = port;
8558 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, ntohs(port));
Don Skidmore3f207802014-12-23 07:40:34 +00008559}
8560
8561/**
8562 * ixgbe_del_vxlan_port - Get notifications about VXLAN ports that go away
8563 * @dev: The port's netdev
8564 * @sa_family: Socket Family that VXLAN is notifying us about
8565 * @port: UDP port number that VXLAN stopped listening to
8566 **/
8567static void ixgbe_del_vxlan_port(struct net_device *dev, sa_family_t sa_family,
8568 __be16 port)
8569{
8570 struct ixgbe_adapter *adapter = netdev_priv(dev);
Don Skidmore3f207802014-12-23 07:40:34 +00008571
Mark Rustad67359c32015-06-15 11:33:25 -07008572 if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE))
8573 return;
8574
Don Skidmore3f207802014-12-23 07:40:34 +00008575 if (sa_family == AF_INET6)
8576 return;
8577
Alexander Duyck9f12df92016-01-25 19:36:29 -08008578 if (adapter->vxlan_port != port) {
Don Skidmore3f207802014-12-23 07:40:34 +00008579 netdev_info(dev, "Port %d was not found, not deleting\n",
Alexander Duyck9f12df92016-01-25 19:36:29 -08008580 ntohs(port));
Don Skidmore3f207802014-12-23 07:40:34 +00008581 return;
8582 }
8583
Mark Rustad67359c32015-06-15 11:33:25 -07008584 ixgbe_clear_vxlan_port(adapter);
8585 adapter->flags2 |= IXGBE_FLAG2_VXLAN_REREG_NEEDED;
Don Skidmore3f207802014-12-23 07:40:34 +00008586}
Mark Rustad67359c32015-06-15 11:33:25 -07008587#endif /* CONFIG_IXGBE_VXLAN */
Don Skidmore3f207802014-12-23 07:40:34 +00008588
stephen hemmingeredc7d572012-10-01 12:32:33 +00008589static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008590 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008591 const unsigned char *addr, u16 vid,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008592 u16 flags)
8593{
Alexander Duyckbcfd3432014-07-17 02:11:22 +00008594 /* guarantee we can provide a unique filter for the unicast address */
Ben Hutchings46acc462012-11-01 09:11:11 +00008595 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) {
Alexander Duyck2f9be162015-10-22 16:26:42 -07008596 struct ixgbe_adapter *adapter = netdev_priv(dev);
8597 u16 pool = VMDQ_P(0);
8598
8599 if (netdev_uc_count(dev) >= ixgbe_available_rars(adapter, pool))
Alexander Duyckbcfd3432014-07-17 02:11:22 +00008600 return -ENOMEM;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008601 }
8602
Jiri Pirkof6f64242014-11-28 14:34:15 +01008603 return ndo_dflt_fdb_add(ndm, tb, dev, addr, vid, flags);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008604}
8605
Don Skidmore219efe92015-04-09 22:03:22 -07008606/**
8607 * ixgbe_configure_bridge_mode - set various bridge modes
8608 * @adapter - the private structure
8609 * @mode - requested bridge mode
8610 *
8611 * Configure some settings require for various bridge modes.
8612 **/
8613static int ixgbe_configure_bridge_mode(struct ixgbe_adapter *adapter,
8614 __u16 mode)
8615{
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008616 struct ixgbe_hw *hw = &adapter->hw;
8617 unsigned int p, num_pools;
8618 u32 vmdctl;
8619
Don Skidmore219efe92015-04-09 22:03:22 -07008620 switch (mode) {
8621 case BRIDGE_MODE_VEPA:
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008622 /* disable Tx loopback, rely on switch hairpin mode */
Don Skidmore219efe92015-04-09 22:03:22 -07008623 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, 0);
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008624
8625 /* must enable Rx switching replication to allow multicast
8626 * packet reception on all VFs, and to enable source address
8627 * pruning.
8628 */
8629 vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
8630 vmdctl |= IXGBE_VT_CTL_REPLEN;
8631 IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl);
8632
8633 /* enable Rx source address pruning. Note, this requires
8634 * replication to be enabled or else it does nothing.
8635 */
8636 num_pools = adapter->num_vfs + adapter->num_rx_pools;
8637 for (p = 0; p < num_pools; p++) {
8638 if (hw->mac.ops.set_source_address_pruning)
8639 hw->mac.ops.set_source_address_pruning(hw,
8640 true,
8641 p);
8642 }
Don Skidmore219efe92015-04-09 22:03:22 -07008643 break;
8644 case BRIDGE_MODE_VEB:
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008645 /* enable Tx loopback for internal VF/PF communication */
Don Skidmore219efe92015-04-09 22:03:22 -07008646 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC,
8647 IXGBE_PFDTXGSWC_VT_LBEN);
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008648
8649 /* disable Rx switching replication unless we have SR-IOV
8650 * virtual functions
8651 */
8652 vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
8653 if (!adapter->num_vfs)
8654 vmdctl &= ~IXGBE_VT_CTL_REPLEN;
8655 IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl);
8656
8657 /* disable Rx source address pruning, since we don't expect to
8658 * be receiving external loopback of our transmitted frames.
8659 */
8660 num_pools = adapter->num_vfs + adapter->num_rx_pools;
8661 for (p = 0; p < num_pools; p++) {
8662 if (hw->mac.ops.set_source_address_pruning)
8663 hw->mac.ops.set_source_address_pruning(hw,
8664 false,
8665 p);
8666 }
Don Skidmore219efe92015-04-09 22:03:22 -07008667 break;
8668 default:
8669 return -EINVAL;
8670 }
8671
8672 adapter->bridge_mode = mode;
8673
8674 e_info(drv, "enabling bridge mode: %s\n",
8675 mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
8676
8677 return 0;
8678}
8679
John Fastabend815cccb2012-10-24 08:13:09 +00008680static int ixgbe_ndo_bridge_setlink(struct net_device *dev,
Roopa Prabhuadd511b2015-01-29 22:40:12 -08008681 struct nlmsghdr *nlh, u16 flags)
John Fastabend815cccb2012-10-24 08:13:09 +00008682{
8683 struct ixgbe_adapter *adapter = netdev_priv(dev);
8684 struct nlattr *attr, *br_spec;
8685 int rem;
8686
8687 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
8688 return -EOPNOTSUPP;
8689
8690 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Thomas Graf4ea85e82014-11-26 13:42:18 +01008691 if (!br_spec)
8692 return -EINVAL;
John Fastabend815cccb2012-10-24 08:13:09 +00008693
8694 nla_for_each_nested(attr, br_spec, rem) {
Mark Rustada1e869d2015-04-10 10:36:36 -07008695 int status;
John Fastabend815cccb2012-10-24 08:13:09 +00008696 __u16 mode;
John Fastabend815cccb2012-10-24 08:13:09 +00008697
8698 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8699 continue;
8700
Thomas Grafb7c1a312014-11-26 13:42:17 +01008701 if (nla_len(attr) < sizeof(mode))
8702 return -EINVAL;
8703
John Fastabend815cccb2012-10-24 08:13:09 +00008704 mode = nla_get_u16(attr);
Don Skidmore219efe92015-04-09 22:03:22 -07008705 status = ixgbe_configure_bridge_mode(adapter, mode);
8706 if (status)
8707 return status;
Don Skidmoreaa2bacb2015-04-09 22:03:22 -07008708
8709 break;
John Fastabend815cccb2012-10-24 08:13:09 +00008710 }
8711
8712 return 0;
8713}
8714
8715static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00008716 struct net_device *dev,
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02008717 u32 filter_mask, int nlflags)
John Fastabend815cccb2012-10-24 08:13:09 +00008718{
8719 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend815cccb2012-10-24 08:13:09 +00008720
8721 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
8722 return 0;
8723
Don Skidmoreaa2bacb2015-04-09 22:03:22 -07008724 return ndo_dflt_bridge_getlink(skb, pid, seq, dev,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07008725 adapter->bridge_mode, 0, 0, nlflags,
8726 filter_mask, NULL);
John Fastabend815cccb2012-10-24 08:13:09 +00008727}
8728
John Fastabend2a47fa42013-11-06 09:54:52 -08008729static void *ixgbe_fwd_add(struct net_device *pdev, struct net_device *vdev)
8730{
8731 struct ixgbe_fwd_adapter *fwd_adapter = NULL;
8732 struct ixgbe_adapter *adapter = netdev_priv(pdev);
Jacob Kelleraac2f1b2014-08-21 06:17:59 +00008733 int used_pools = adapter->num_vfs + adapter->num_rx_pools;
John Fastabend51f37732013-11-08 00:51:10 -08008734 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08008735 int pool, err;
8736
Jacob Kelleraac2f1b2014-08-21 06:17:59 +00008737 /* Hardware has a limited number of available pools. Each VF, and the
8738 * PF require a pool. Check to ensure we don't attempt to use more
8739 * then the available number of pools.
8740 */
8741 if (used_pools >= IXGBE_MAX_VF_FUNCTIONS)
8742 return ERR_PTR(-EINVAL);
8743
John Fastabend219354d2013-11-08 00:50:32 -08008744#ifdef CONFIG_RPS
8745 if (vdev->num_rx_queues != vdev->num_tx_queues) {
8746 netdev_info(pdev, "%s: Only supports a single queue count for TX and RX\n",
8747 vdev->name);
8748 return ERR_PTR(-EINVAL);
8749 }
8750#endif
John Fastabend2a47fa42013-11-06 09:54:52 -08008751 /* Check for hardware restriction on number of rx/tx queues */
John Fastabend219354d2013-11-08 00:50:32 -08008752 if (vdev->num_tx_queues > IXGBE_MAX_L2A_QUEUES ||
John Fastabend2a47fa42013-11-06 09:54:52 -08008753 vdev->num_tx_queues == IXGBE_BAD_L2A_QUEUE) {
8754 netdev_info(pdev,
8755 "%s: Supports RX/TX Queue counts 1,2, and 4\n",
8756 pdev->name);
8757 return ERR_PTR(-EINVAL);
8758 }
8759
8760 if (((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
8761 adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS - 1) ||
8762 (adapter->num_rx_pools > IXGBE_MAX_MACVLANS))
8763 return ERR_PTR(-EBUSY);
8764
Maninder Singhbc52f952015-06-19 09:37:55 +05308765 fwd_adapter = kzalloc(sizeof(*fwd_adapter), GFP_KERNEL);
John Fastabend2a47fa42013-11-06 09:54:52 -08008766 if (!fwd_adapter)
8767 return ERR_PTR(-ENOMEM);
8768
8769 pool = find_first_zero_bit(&adapter->fwd_bitmask, 32);
8770 adapter->num_rx_pools++;
8771 set_bit(pool, &adapter->fwd_bitmask);
John Fastabend51f37732013-11-08 00:51:10 -08008772 limit = find_last_bit(&adapter->fwd_bitmask, 32);
John Fastabend2a47fa42013-11-06 09:54:52 -08008773
8774 /* Enable VMDq flag so device will be set in VM mode */
8775 adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED | IXGBE_FLAG_SRIOV_ENABLED;
John Fastabend51f37732013-11-08 00:51:10 -08008776 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend219354d2013-11-08 00:50:32 -08008777 adapter->ring_feature[RING_F_RSS].limit = vdev->num_tx_queues;
John Fastabend2a47fa42013-11-06 09:54:52 -08008778
8779 /* Force reinit of ring allocation with VMDQ enabled */
8780 err = ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
8781 if (err)
8782 goto fwd_add_err;
8783 fwd_adapter->pool = pool;
8784 fwd_adapter->real_adapter = adapter;
8785 err = ixgbe_fwd_ring_up(vdev, fwd_adapter);
8786 if (err)
8787 goto fwd_add_err;
8788 netif_tx_start_all_queues(vdev);
8789 return fwd_adapter;
8790fwd_add_err:
8791 /* unwind counter and free adapter struct */
8792 netdev_info(pdev,
8793 "%s: dfwd hardware acceleration failed\n", vdev->name);
8794 clear_bit(pool, &adapter->fwd_bitmask);
8795 adapter->num_rx_pools--;
8796 kfree(fwd_adapter);
8797 return ERR_PTR(err);
8798}
8799
8800static void ixgbe_fwd_del(struct net_device *pdev, void *priv)
8801{
8802 struct ixgbe_fwd_adapter *fwd_adapter = priv;
8803 struct ixgbe_adapter *adapter = fwd_adapter->real_adapter;
John Fastabend51f37732013-11-08 00:51:10 -08008804 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08008805
8806 clear_bit(fwd_adapter->pool, &adapter->fwd_bitmask);
8807 adapter->num_rx_pools--;
8808
John Fastabend51f37732013-11-08 00:51:10 -08008809 limit = find_last_bit(&adapter->fwd_bitmask, 32);
8810 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend2a47fa42013-11-06 09:54:52 -08008811 ixgbe_fwd_ring_down(fwd_adapter->netdev, fwd_adapter);
8812 ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
8813 netdev_dbg(pdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
8814 fwd_adapter->pool, adapter->num_rx_pools,
8815 fwd_adapter->rx_base_queue,
8816 fwd_adapter->rx_base_queue + adapter->num_rx_queues_per_pool,
8817 adapter->fwd_bitmask);
8818 kfree(fwd_adapter);
8819}
8820
Mark Rustadf467bc02015-06-15 11:33:20 -07008821#define IXGBE_MAX_TUNNEL_HDR_LEN 80
8822static netdev_features_t
8823ixgbe_features_check(struct sk_buff *skb, struct net_device *dev,
8824 netdev_features_t features)
8825{
8826 if (!skb->encapsulation)
8827 return features;
8828
8829 if (unlikely(skb_inner_mac_header(skb) - skb_transport_header(skb) >
8830 IXGBE_MAX_TUNNEL_HDR_LEN))
Tom Herberta1882222015-12-14 11:19:43 -08008831 return features & ~NETIF_F_CSUM_MASK;
Mark Rustadf467bc02015-06-15 11:33:20 -07008832
8833 return features;
8834}
8835
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008836static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00008837 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008838 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08008839 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07008840 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00008841 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008842 .ndo_validate_addr = eth_validate_addr,
8843 .ndo_set_mac_address = ixgbe_set_mac,
8844 .ndo_change_mtu = ixgbe_change_mtu,
8845 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008846 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
8847 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00008848 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00008849 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
8850 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04008851 .ndo_set_vf_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00008852 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03008853 .ndo_set_vf_rss_query_en = ixgbe_ndo_set_vf_rss_query_en,
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00008854 .ndo_set_vf_trust = ixgbe_ndo_set_vf_trust,
Greg Rose7f016482010-05-04 22:12:06 +00008855 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00008856 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabende4c67342016-02-16 21:16:15 -08008857 .ndo_setup_tc = __ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008858#ifdef CONFIG_NET_POLL_CONTROLLER
8859 .ndo_poll_controller = ixgbe_netpoll,
8860#endif
Cong Wange0d10952013-08-01 11:10:25 +08008861#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03008862 .ndo_busy_poll = ixgbe_low_latency_recv,
Eliezer Tamir5a85e732013-06-10 11:40:20 +03008863#endif
Yi Zou332d4a72009-05-13 13:11:53 +00008864#ifdef IXGBE_FCOE
8865 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00008866 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00008867 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00008868 .ndo_fcoe_enable = ixgbe_fcoe_enable,
8869 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00008870 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00008871 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00008872#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00008873 .ndo_set_features = ixgbe_set_features,
8874 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008875 .ndo_fdb_add = ixgbe_ndo_fdb_add,
John Fastabend815cccb2012-10-24 08:13:09 +00008876 .ndo_bridge_setlink = ixgbe_ndo_bridge_setlink,
8877 .ndo_bridge_getlink = ixgbe_ndo_bridge_getlink,
John Fastabend2a47fa42013-11-06 09:54:52 -08008878 .ndo_dfwd_add_station = ixgbe_fwd_add,
8879 .ndo_dfwd_del_station = ixgbe_fwd_del,
Mark Rustad67359c32015-06-15 11:33:25 -07008880#ifdef CONFIG_IXGBE_VXLAN
Don Skidmore3f207802014-12-23 07:40:34 +00008881 .ndo_add_vxlan_port = ixgbe_add_vxlan_port,
8882 .ndo_del_vxlan_port = ixgbe_del_vxlan_port,
Mark Rustad67359c32015-06-15 11:33:25 -07008883#endif /* CONFIG_IXGBE_VXLAN */
Mark Rustadf467bc02015-06-15 11:33:20 -07008884 .ndo_features_check = ixgbe_features_check,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08008885};
8886
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07008887/**
Jacob Kellere027d1a2013-07-31 06:53:31 +00008888 * ixgbe_enumerate_functions - Get the number of ports this device has
8889 * @adapter: adapter structure
8890 *
8891 * This function enumerates the phsyical functions co-located on a single slot,
8892 * in order to determine how many ports a device has. This is most useful in
8893 * determining the required GT/s of PCIe bandwidth necessary for optimal
8894 * performance.
8895 **/
8896static inline int ixgbe_enumerate_functions(struct ixgbe_adapter *adapter)
8897{
Jacob Kellercaafb952014-07-19 07:17:17 +00008898 struct pci_dev *entry, *pdev = adapter->pdev;
Jacob Kellere027d1a2013-07-31 06:53:31 +00008899 int physfns = 0;
8900
Jacob Kellerf1f96572013-08-31 02:45:38 +00008901 /* Some cards can not use the generic count PCIe functions method,
8902 * because they are behind a parent switch, so we hardcode these with
8903 * the correct number of functions.
Jacob Kellere027d1a2013-07-31 06:53:31 +00008904 */
Jacob Keller88189702014-07-19 07:17:16 +00008905 if (ixgbe_pcie_from_parent(&adapter->hw))
Jacob Kellere027d1a2013-07-31 06:53:31 +00008906 physfns = 4;
Jacob Keller88189702014-07-19 07:17:16 +00008907
8908 list_for_each_entry(entry, &adapter->pdev->bus->devices, bus_list) {
8909 /* don't count virtual functions */
Jacob Kellercaafb952014-07-19 07:17:17 +00008910 if (entry->is_virtfn)
8911 continue;
8912
8913 /* When the devices on the bus don't all match our device ID,
8914 * we can't reliably determine the correct number of
8915 * functions. This can occur if a function has been direct
8916 * attached to a virtual machine using VT-d, for example. In
8917 * this case, simply return -1 to indicate this.
8918 */
8919 if ((entry->vendor != pdev->vendor) ||
8920 (entry->device != pdev->device))
8921 return -1;
8922
8923 physfns++;
Jacob Kellere027d1a2013-07-31 06:53:31 +00008924 }
8925
8926 return physfns;
8927}
8928
8929/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00008930 * ixgbe_wol_supported - Check whether device supports WoL
8931 * @hw: hw specific details
8932 * @device_id: the device ID
8933 * @subdev_id: the subsystem device ID
8934 *
8935 * This function is used by probe and ethtool to determine
8936 * which devices have WoL support
8937 *
8938 **/
8939int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
8940 u16 subdevice_id)
8941{
8942 struct ixgbe_hw *hw = &adapter->hw;
8943 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
8944 int is_wol_supported = 0;
8945
8946 switch (device_id) {
8947 case IXGBE_DEV_ID_82599_SFP:
8948 /* Only these subdevices could supports WOL */
8949 switch (subdevice_id) {
Mark Rustad87557442014-02-25 17:58:55 -08008950 case IXGBE_SUBDEV_ID_82599_SFP_WOL0:
Jacob Keller8e2813f2012-04-21 06:05:40 +00008951 case IXGBE_SUBDEV_ID_82599_560FLR:
8952 /* only support first port */
8953 if (hw->bus.func != 0)
8954 break;
Emil Tantilov5700ff22013-04-18 08:18:55 +00008955 case IXGBE_SUBDEV_ID_82599_SP_560FLR:
Jacob Keller8e2813f2012-04-21 06:05:40 +00008956 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00008957 case IXGBE_SUBDEV_ID_82599_RNDC:
Emil Tantilovf8a06c22012-08-16 08:13:07 +00008958 case IXGBE_SUBDEV_ID_82599_ECNA_DP:
Jacob Keller979fe5f2013-04-03 04:41:37 +00008959 case IXGBE_SUBDEV_ID_82599_LOM_SFP:
Jacob Keller8e2813f2012-04-21 06:05:40 +00008960 is_wol_supported = 1;
8961 break;
8962 }
8963 break;
Don Skidmore5daebbb2013-04-05 05:49:34 +00008964 case IXGBE_DEV_ID_82599EN_SFP:
8965 /* Only this subdevice supports WOL */
8966 switch (subdevice_id) {
8967 case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1:
8968 is_wol_supported = 1;
8969 break;
8970 }
8971 break;
Jacob Keller8e2813f2012-04-21 06:05:40 +00008972 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
8973 /* All except this subdevice support WOL */
8974 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
8975 is_wol_supported = 1;
8976 break;
8977 case IXGBE_DEV_ID_82599_KX4:
8978 is_wol_supported = 1;
8979 break;
8980 case IXGBE_DEV_ID_X540T:
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +00008981 case IXGBE_DEV_ID_X540T1:
Don Skidmoredf8c26f2015-06-09 16:00:17 -07008982 case IXGBE_DEV_ID_X550T:
8983 case IXGBE_DEV_ID_X550EM_X_KX4:
8984 case IXGBE_DEV_ID_X550EM_X_KR:
8985 case IXGBE_DEV_ID_X550EM_X_10G_T:
Jacob Keller8e2813f2012-04-21 06:05:40 +00008986 /* check eeprom to see if enabled wol */
8987 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
8988 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
8989 (hw->bus.func == 0))) {
8990 is_wol_supported = 1;
8991 }
8992 break;
8993 }
8994
8995 return is_wol_supported;
8996}
8997
8998/**
Martin K Petersenc762dff2014-11-15 14:24:51 +00008999 * ixgbe_get_platform_mac_addr - Look up MAC address in Open Firmware / IDPROM
9000 * @adapter: Pointer to adapter struct
9001 */
9002static void ixgbe_get_platform_mac_addr(struct ixgbe_adapter *adapter)
9003{
9004#ifdef CONFIG_OF
9005 struct device_node *dp = pci_device_to_OF_node(adapter->pdev);
9006 struct ixgbe_hw *hw = &adapter->hw;
9007 const unsigned char *addr;
9008
9009 addr = of_get_mac_address(dp);
9010 if (addr) {
9011 ether_addr_copy(hw->mac.perm_addr, addr);
9012 return;
9013 }
9014#endif /* CONFIG_OF */
9015
9016#ifdef CONFIG_SPARC
9017 ether_addr_copy(hw->mac.perm_addr, idprom->id_ethaddr);
9018#endif /* CONFIG_SPARC */
9019}
9020
9021/**
Auke Kok9a799d72007-09-15 14:07:45 -07009022 * ixgbe_probe - Device Initialization Routine
9023 * @pdev: PCI device information struct
9024 * @ent: entry in ixgbe_pci_tbl
9025 *
9026 * Returns 0 on success, negative on failure
9027 *
9028 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
9029 * The OS initialization, configuring of the adapter private structure,
9030 * and a hardware reset occur.
9031 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00009032static int ixgbe_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07009033{
9034 struct net_device *netdev;
9035 struct ixgbe_adapter *adapter = NULL;
9036 struct ixgbe_hw *hw;
9037 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Jacob Kellere027d1a2013-07-31 06:53:31 +00009038 int i, err, pci_using_dac, expected_gts;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009039 unsigned int indices = MAX_TX_QUEUES;
Don Skidmore289700db2010-12-03 03:32:58 +00009040 u8 part_str[IXGBE_PBANUM_LENGTH];
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009041 bool disable_dev = false;
Yi Zoueacd73f2009-05-13 13:11:06 +00009042#ifdef IXGBE_FCOE
9043 u16 device_caps;
9044#endif
Don Skidmore289700db2010-12-03 03:32:58 +00009045 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07009046
Andy Gospodarekbded64a2010-07-21 06:40:31 +00009047 /* Catch broken hardware that put the wrong VF device ID in
9048 * the PCIe SR-IOV capability.
9049 */
9050 if (pdev->is_virtfn) {
9051 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
9052 pci_name(pdev), pdev->vendor, pdev->device);
9053 return -EINVAL;
9054 }
9055
gouji-new9ce77662009-05-06 10:44:45 +00009056 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009057 if (err)
9058 return err;
9059
Russell Kingf5f2eda2013-06-10 12:47:42 +01009060 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07009061 pci_using_dac = 1;
9062 } else {
Russell Kingf5f2eda2013-06-10 12:47:42 +01009063 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07009064 if (err) {
Russell Kingf5f2eda2013-06-10 12:47:42 +01009065 dev_err(&pdev->dev,
9066 "No usable DMA configuration, aborting\n");
9067 goto err_dma;
Auke Kok9a799d72007-09-15 14:07:45 -07009068 }
9069 pci_using_dac = 0;
9070 }
9071
gouji-new9ce77662009-05-06 10:44:45 +00009072 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00009073 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07009074 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00009075 dev_err(&pdev->dev,
9076 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07009077 goto err_pci_reg;
9078 }
9079
Frans Pop19d5afd2009-10-02 10:04:12 -07009080 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009081
Auke Kok9a799d72007-09-15 14:07:45 -07009082 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07009083 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009084
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009085 if (ii->mac == ixgbe_mac_82598EB) {
John Fastabende901acd2011-04-26 07:26:08 +00009086#ifdef CONFIG_IXGBE_DCB
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009087 /* 8 TC w/ 4 queues per TC */
9088 indices = 4 * MAX_TRAFFIC_CLASS;
9089#else
9090 indices = IXGBE_MAX_RSS_INDICES;
John Fastabende901acd2011-04-26 07:26:08 +00009091#endif
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009092 }
John Fastabende901acd2011-04-26 07:26:08 +00009093
John Fastabendc85a2612010-02-25 23:15:21 +00009094 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07009095 if (!netdev) {
9096 err = -ENOMEM;
9097 goto err_alloc_etherdev;
9098 }
9099
Auke Kok9a799d72007-09-15 14:07:45 -07009100 SET_NETDEV_DEV(netdev, &pdev->dev);
9101
Auke Kok9a799d72007-09-15 14:07:45 -07009102 adapter = netdev_priv(netdev);
9103
9104 adapter->netdev = netdev;
9105 adapter->pdev = pdev;
9106 hw = &adapter->hw;
9107 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00009108 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07009109
Jeff Kirsher05857982008-09-11 19:57:00 -07009110 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00009111 pci_resource_len(pdev, 0));
Mark Rustad2a1a0912014-01-14 18:53:15 -08009112 adapter->io_addr = hw->hw_addr;
Auke Kok9a799d72007-09-15 14:07:45 -07009113 if (!hw->hw_addr) {
9114 err = -EIO;
9115 goto err_ioremap;
9116 }
9117
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009118 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07009119 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009120 netdev->watchdog_timeo = 5 * HZ;
Mark Rustad339de302014-06-06 01:57:06 +00009121 strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name));
Auke Kok9a799d72007-09-15 14:07:45 -07009122
Auke Kok9a799d72007-09-15 14:07:45 -07009123 /* Setup hw api */
9124 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009125 hw->mac.type = ii->mac;
Don Skidmore9a900ec2015-06-09 17:15:01 -07009126 hw->mvals = ii->mvals;
Auke Kok9a799d72007-09-15 14:07:45 -07009127
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009128 /* EEPROM */
9129 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
Don Skidmore9a900ec2015-06-09 17:15:01 -07009130 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Mark Rustad58cf6632014-03-12 00:38:40 +00009131 if (ixgbe_removed(hw->hw_addr)) {
9132 err = -EIO;
9133 goto err_ioremap;
9134 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009135 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
9136 if (!(eec & (1 << 8)))
9137 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
9138
9139 /* PHY */
9140 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08009141 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00009142 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
9143 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
9144 hw->phy.mdio.mmds = 0;
9145 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
9146 hw->phy.mdio.dev = netdev;
9147 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
9148 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08009149
Don Skidmore8ca783a2009-05-26 20:40:47 -07009150 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07009151
9152 /* setup the private structure */
9153 err = ixgbe_sw_init(adapter);
9154 if (err)
9155 goto err_sw_init;
9156
Don Skidmoree86bff02010-02-11 04:14:08 +00009157 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08009158 switch (adapter->hw.mac.type) {
9159 case ixgbe_mac_82599EB:
9160 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00009161 case ixgbe_mac_X550:
9162 case ixgbe_mac_X550EM_x:
Don Skidmoree86bff02010-02-11 04:14:08 +00009163 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08009164 break;
9165 default:
9166 break;
9167 }
Don Skidmoree86bff02010-02-11 04:14:08 +00009168
Don Skidmorebf069c92009-05-07 10:39:54 +00009169 /*
9170 * If there is a fan on this device and it has failed log the
9171 * failure.
9172 */
9173 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
9174 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
9175 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00009176 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00009177 }
9178
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00009179 if (allow_unsupported_sfp)
9180 hw->allow_unsupported_sfp = allow_unsupported_sfp;
9181
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009182 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07009183 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009184 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07009185 hw->phy.reset_if_overtemp = false;
Mark Rustad29a8dca2015-08-08 16:17:46 -07009186 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07009187 err = 0;
9188 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Don Skidmore1b1bf312013-07-31 05:27:04 +00009189 e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n");
9190 e_dev_err("Reload the driver after installing a supported module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00009191 goto err_sw_init;
9192 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009193 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009194 goto err_sw_init;
9195 }
9196
Alexander Duyck99d74482012-05-09 08:09:25 +00009197#ifdef CONFIG_PCI_IOV
Greg Rose60a1a682012-12-11 08:26:33 +00009198 /* SR-IOV not supported on the 82598 */
9199 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
9200 goto skip_sriov;
9201 /* Mailbox */
9202 ixgbe_init_mbx_params_pf(hw);
9203 memcpy(&hw->mbx.ops, ii->mbx_ops, sizeof(hw->mbx.ops));
ethan.zhaodcc23e32014-01-16 19:41:04 -08009204 pci_sriov_set_totalvfs(pdev, IXGBE_MAX_VFS_DRV_LIMIT);
ethan.zhao31ac9102014-01-16 19:41:05 -08009205 ixgbe_enable_sriov(adapter);
Greg Rose60a1a682012-12-11 08:26:33 +00009206skip_sriov:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00009207
Alexander Duyck99d74482012-05-09 08:09:25 +00009208#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00009209 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00009210 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00009211 NETIF_F_IPV6_CSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00009212 NETIF_F_HW_VLAN_CTAG_TX |
9213 NETIF_F_HW_VLAN_CTAG_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00009214 NETIF_F_TSO |
9215 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00009216 NETIF_F_RXHASH |
John Fastabend8bf12642013-11-12 12:13:29 +00009217 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07009218
John Fastabend8bf12642013-11-12 12:13:29 +00009219 netdev->hw_features = netdev->features | NETIF_F_HW_L2FW_DOFFLOAD;
Jeff Kirsherad31c402008-06-05 04:05:30 -07009220
Don Skidmore58be7662011-04-12 09:42:11 +00009221 switch (adapter->hw.mac.type) {
9222 case ixgbe_mac_82599EB:
9223 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00009224 case ixgbe_mac_X550:
9225 case ixgbe_mac_X550EM_x:
Tom Herbert53692b12015-12-14 11:19:41 -08009226 netdev->features |= NETIF_F_SCTP_CRC;
9227 netdev->hw_features |= NETIF_F_SCTP_CRC |
John Fastabendb82b17d2016-02-16 21:18:53 -08009228 NETIF_F_NTUPLE |
9229 NETIF_F_HW_TC;
Don Skidmore58be7662011-04-12 09:42:11 +00009230 break;
9231 default:
9232 break;
9233 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00009234
Ben Greear3f2d1c02012-03-08 08:28:41 +00009235 netdev->hw_features |= NETIF_F_RXALL;
Alexander Duyck87031c02015-04-09 22:03:24 -07009236 netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Ben Greear3f2d1c02012-03-08 08:28:41 +00009237
Jeff Kirsherad31c402008-06-05 04:05:30 -07009238 netdev->vlan_features |= NETIF_F_TSO;
9239 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07009240 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00009241 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07009242 netdev->vlan_features |= NETIF_F_SG;
9243
Mark Rustadfb8ad4a2015-11-18 15:37:04 -08009244 netdev->hw_enc_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
Mark Rustadf467bc02015-06-15 11:33:20 -07009245
Jiri Pirko01789342011-08-16 06:29:00 +00009246 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00009247 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00009248
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08009249#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08009250 netdev->dcbnl_ops = &dcbnl_ops;
9251#endif
9252
Yi Zoueacd73f2009-05-13 13:11:06 +00009253#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00009254 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009255 unsigned int fcoe_l;
9256
Yi Zoueacd73f2009-05-13 13:11:06 +00009257 if (hw->mac.ops.get_device_caps) {
9258 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00009259 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
9260 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00009261 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00009262
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009263
9264 fcoe_l = min_t(int, IXGBE_FCRETA_SIZE, num_online_cpus());
9265 adapter->ring_feature[RING_F_FCOE].limit = fcoe_l;
Alexander Duyck7c8ae652012-05-05 05:32:47 +00009266
Alexander Duycka58915c2012-05-25 06:38:18 +00009267 netdev->features |= NETIF_F_FSO |
9268 NETIF_F_FCOE_CRC;
9269
Alexander Duyck7c8ae652012-05-05 05:32:47 +00009270 netdev->vlan_features |= NETIF_F_FSO |
9271 NETIF_F_FCOE_CRC |
9272 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00009273 }
Yi Zoueacd73f2009-05-13 13:11:06 +00009274#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00009275 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07009276 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00009277 netdev->vlan_features |= NETIF_F_HIGHDMA;
9278 }
Auke Kok9a799d72007-09-15 14:07:45 -07009279
Don Skidmore082757a2011-07-21 05:55:00 +00009280 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
9281 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00009282 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00009283 netdev->features |= NETIF_F_LRO;
9284
Auke Kok9a799d72007-09-15 14:07:45 -07009285 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009286 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009287 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07009288 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00009289 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07009290 }
9291
Martin K Petersenc762dff2014-11-15 14:24:51 +00009292 ixgbe_get_platform_mac_addr(adapter);
9293
Auke Kok9a799d72007-09-15 14:07:45 -07009294 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07009295
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00009296 if (!is_valid_ether_addr(netdev->dev_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009297 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07009298 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00009299 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07009300 }
9301
Tushar Dave56768042016-01-07 14:17:03 -08009302 /* Set hw->mac.addr to permanent MAC address */
9303 ether_addr_copy(hw->mac.addr, hw->mac.perm_addr);
Alexander Duyckc9f53e62015-10-22 16:26:30 -07009304 ixgbe_mac_set_default_filter(adapter);
Jacob Keller5d7daa32014-03-29 06:51:25 +00009305
Alexander Duyck70864002011-04-27 09:13:56 +00009306 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00009307 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009308
Mark Rustad58cf6632014-03-12 00:38:40 +00009309 if (ixgbe_removed(hw->hw_addr)) {
9310 err = -EIO;
9311 goto err_sw_init;
9312 }
Alexander Duyck70864002011-04-27 09:13:56 +00009313 INIT_WORK(&adapter->service_task, ixgbe_service_task);
Mark Rustad58cf6632014-03-12 00:38:40 +00009314 set_bit(__IXGBE_SERVICE_INITED, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00009315 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07009316
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009317 err = ixgbe_init_interrupt_scheme(adapter);
9318 if (err)
9319 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07009320
Jacob Keller8e2813f2012-04-21 06:05:40 +00009321 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00009322 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009323 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00009324 hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device,
Don Skidmoreb8f83632013-02-28 08:08:44 +00009325 pdev->subsystem_device);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00009326 if (hw->wol_enabled)
Andy Gospodarek9417c462011-07-16 07:31:33 +00009327 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00009328
PJ Waskiewicze8e26352009-02-27 15:45:05 +00009329 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
9330
Emil Tantilov15e52092011-09-29 05:01:29 +00009331 /* save off EEPROM version number */
9332 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
9333 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
9334
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00009335 /* pick up the PCI bus settings for reporting later */
Jacob Kellere027d1a2013-07-31 06:53:31 +00009336 if (ixgbe_pcie_from_parent(hw))
Jacob Kellerb8e82002013-04-09 07:20:09 +00009337 ixgbe_get_parent_bus_info(adapter);
Don Skidmoref9328bc2015-06-18 13:24:06 -04009338 else
9339 hw->mac.ops.get_bus_info(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00009340
Jacob Kellere027d1a2013-07-31 06:53:31 +00009341 /* calculate the expected PCIe bandwidth required for optimal
9342 * performance. Note that some older parts will never have enough
9343 * bandwidth due to being older generation PCIe parts. We clamp these
9344 * parts to ensure no warning is displayed if it can't be fixed.
9345 */
9346 switch (hw->mac.type) {
9347 case ixgbe_mac_82598EB:
9348 expected_gts = min(ixgbe_enumerate_functions(adapter) * 10, 16);
9349 break;
9350 default:
9351 expected_gts = ixgbe_enumerate_functions(adapter) * 10;
9352 break;
Auke Kok0c254d82008-02-11 09:25:56 -08009353 }
Jacob Kellercaafb952014-07-19 07:17:17 +00009354
9355 /* don't check link if we failed to enumerate functions */
9356 if (expected_gts > 0)
9357 ixgbe_check_minimum_link(adapter, expected_gts);
Auke Kok0c254d82008-02-11 09:25:56 -08009358
Mark Rustad339de302014-06-06 01:57:06 +00009359 err = ixgbe_read_pba_string_generic(hw, part_str, sizeof(part_str));
Jacob Keller6a2aae52013-10-18 05:09:24 +00009360 if (err)
Mark Rustad339de302014-06-06 01:57:06 +00009361 strlcpy(part_str, "Unknown", sizeof(part_str));
Jacob Keller6a2aae52013-10-18 05:09:24 +00009362 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
9363 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
9364 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Jacob Kellere7cf7452014-04-09 06:03:10 +00009365 part_str);
Jacob Keller6a2aae52013-10-18 05:09:24 +00009366 else
9367 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
9368 hw->mac.type, hw->phy.type, part_str);
9369
9370 e_dev_info("%pM\n", netdev->dev_addr);
9371
Auke Kok9a799d72007-09-15 14:07:45 -07009372 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00009373 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00009374 if (err == IXGBE_ERR_EEPROM_VERSION) {
9375 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00009376 e_dev_warn("This device is a pre-production adapter/LOM. "
9377 "Please be aware there may be issues associated "
9378 "with your hardware. If you are experiencing "
9379 "problems please contact your Intel or hardware "
9380 "representative who provided you with this "
9381 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00009382 }
Auke Kok9a799d72007-09-15 14:07:45 -07009383 strcpy(netdev->name, "eth%d");
9384 err = register_netdev(netdev);
9385 if (err)
9386 goto err_register;
9387
Emil Tantilov0fb6a552014-12-04 03:03:38 +00009388 pci_set_drvdata(pdev, adapter);
9389
Emil Tantilovec74a472012-09-20 03:33:56 +00009390 /* power down the optics for 82599 SFP+ fiber */
9391 if (hw->mac.ops.disable_tx_laser)
Emil Tantilov93d3ce82011-10-19 07:59:55 +00009392 hw->mac.ops.disable_tx_laser(hw);
9393
Jesse Brandeburg54386462009-04-17 20:44:27 +00009394 /* carrier off reporting is important to ethtool even BEFORE open */
9395 netif_carrier_off(netdev);
9396
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009397#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03009398 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009399 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009400 ixgbe_setup_dca(adapter);
9401 }
9402#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00009403 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00009404 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00009405 for (i = 0; i < adapter->num_vfs; i++)
9406 ixgbe_vf_configuration(pdev, (i | 0x10000000));
9407 }
9408
Jacob Keller2466dd92011-09-08 03:50:54 +00009409 /* firmware requires driver version to be 0xFFFFFFFF
9410 * since os does not support feature
9411 */
Emil Tantilov9612de92011-05-07 07:40:20 +00009412 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00009413 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
9414 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00009415
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00009416 /* add san mac addr to netdev */
9417 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009418
Neerav Parikhea818752012-01-04 20:23:40 +00009419 e_dev_info("%s\n", ixgbe_default_device_descr);
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009420
Don Skidmore12109822012-05-04 06:07:08 +00009421#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009422 if (ixgbe_sysfs_init(adapter))
9423 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00009424#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009425
Catherine Sullivan00949162012-08-10 01:59:10 +00009426 ixgbe_dbg_adapter_init(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00009427
Emil Tantilovd1a35ee2014-05-13 08:24:00 +00009428 /* setup link for SFP devices with MNG FW, else wait for IXGBE_UP */
9429 if (ixgbe_mng_enabled(hw) && ixgbe_is_sfp(hw) && hw->mac.ops.setup_link)
Don Skidmore0b2679d2013-02-21 03:00:04 +00009430 hw->mac.ops.setup_link(hw,
9431 IXGBE_LINK_SPEED_10GB_FULL | IXGBE_LINK_SPEED_1GB_FULL,
9432 true);
9433
Auke Kok9a799d72007-09-15 14:07:45 -07009434 return 0;
9435
9436err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08009437 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00009438 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009439err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00009440 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00009441 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Mark Rustad2a1a0912014-01-14 18:53:15 -08009442 iounmap(adapter->io_addr);
Jacob Keller5d7daa32014-03-29 06:51:25 +00009443 kfree(adapter->mac_table);
Auke Kok9a799d72007-09-15 14:07:45 -07009444err_ioremap:
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009445 disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07009446 free_netdev(netdev);
9447err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00009448 pci_release_selected_regions(pdev,
9449 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07009450err_pci_reg:
9451err_dma:
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009452 if (!adapter || disable_dev)
Mark Rustad41c62842014-03-12 00:38:35 +00009453 pci_disable_device(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009454 return err;
9455}
9456
9457/**
9458 * ixgbe_remove - Device Removal Routine
9459 * @pdev: PCI device information struct
9460 *
9461 * ixgbe_remove is called by the PCI subsystem to alert the driver
9462 * that it should release a PCI device. The could be caused by a
9463 * Hot-Plug event, or because the driver is going to be removed from
9464 * memory.
9465 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05009466static void ixgbe_remove(struct pci_dev *pdev)
Auke Kok9a799d72007-09-15 14:07:45 -07009467{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08009468 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Emil Tantilov0fb6a552014-12-04 03:03:38 +00009469 struct net_device *netdev;
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009470 bool disable_dev;
Auke Kok9a799d72007-09-15 14:07:45 -07009471
Emil Tantilov0fb6a552014-12-04 03:03:38 +00009472 /* if !adapter then we already cleaned up in probe */
9473 if (!adapter)
9474 return;
9475
9476 netdev = adapter->netdev;
Catherine Sullivan00949162012-08-10 01:59:10 +00009477 ixgbe_dbg_adapter_exit(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00009478
Mark Rustad09f40ae2014-01-14 18:53:11 -08009479 set_bit(__IXGBE_REMOVING, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00009480 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07009481
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00009482
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009483#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009484 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
9485 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
9486 dca_remove_requester(&pdev->dev);
Mark Rustad9de76052015-08-08 16:27:41 -07009487 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
9488 IXGBE_DCA_CTRL_DCA_DISABLE);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009489 }
9490
9491#endif
Don Skidmore12109822012-05-04 06:07:08 +00009492#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009493 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00009494#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009495
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00009496 /* remove the added san mac */
9497 ixgbe_del_sanmac_netdev(netdev);
9498
Greg Roseda36b642012-12-11 08:26:43 +00009499#ifdef CONFIG_PCI_IOV
Alex Williamson7837e282015-07-10 15:31:34 -06009500 ixgbe_disable_sriov(adapter);
Greg Roseda36b642012-12-11 08:26:43 +00009501#endif
Alex Williamson6b010e92015-07-29 14:38:21 -06009502 if (netdev->reg_state == NETREG_REGISTERED)
9503 unregister_netdev(netdev);
9504
Alexander Duyck7a921c92009-05-06 10:43:28 +00009505 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08009506
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009507 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009508
Alexander Duyck2b1588c2012-03-17 02:39:16 +00009509#ifdef CONFIG_DCB
9510 kfree(adapter->ixgbe_ieee_pfc);
9511 kfree(adapter->ixgbe_ieee_ets);
9512
9513#endif
Mark Rustad2a1a0912014-01-14 18:53:15 -08009514 iounmap(adapter->io_addr);
gouji-new9ce77662009-05-06 10:44:45 +00009515 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00009516 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07009517
Emil Tantilov849c4542010-06-03 16:53:41 +00009518 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009519
Jacob Keller5d7daa32014-03-29 06:51:25 +00009520 kfree(adapter->mac_table);
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009521 disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07009522 free_netdev(netdev);
9523
Frans Pop19d5afd2009-10-02 10:04:12 -07009524 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009525
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009526 if (disable_dev)
Mark Rustad41c62842014-03-12 00:38:35 +00009527 pci_disable_device(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009528}
9529
9530/**
9531 * ixgbe_io_error_detected - called when PCI error is detected
9532 * @pdev: Pointer to PCI device
9533 * @state: The current pci connection state
9534 *
9535 * This function is called after a PCI bus error affecting
9536 * this device has been detected.
9537 */
9538static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00009539 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07009540{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08009541 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
9542 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07009543
Greg Rose83c61fa2011-09-07 05:59:35 +00009544#ifdef CONFIG_PCI_IOV
Mark Rustad14438462014-02-28 15:48:57 -08009545 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose83c61fa2011-09-07 05:59:35 +00009546 struct pci_dev *bdev, *vfdev;
9547 u32 dw0, dw1, dw2, dw3;
9548 int vf, pos;
9549 u16 req_id, pf_func;
9550
9551 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
9552 adapter->num_vfs == 0)
9553 goto skip_bad_vf_detection;
9554
9555 bdev = pdev->bus->self;
Yijing Wang62f87c02012-07-24 17:20:03 +08009556 while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
Greg Rose83c61fa2011-09-07 05:59:35 +00009557 bdev = bdev->bus->self;
9558
9559 if (!bdev)
9560 goto skip_bad_vf_detection;
9561
9562 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
9563 if (!pos)
9564 goto skip_bad_vf_detection;
9565
Mark Rustad14438462014-02-28 15:48:57 -08009566 dw0 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG);
9567 dw1 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 4);
9568 dw2 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 8);
9569 dw3 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 12);
9570 if (ixgbe_removed(hw->hw_addr))
9571 goto skip_bad_vf_detection;
Greg Rose83c61fa2011-09-07 05:59:35 +00009572
9573 req_id = dw1 >> 16;
9574 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
9575 if (!(req_id & 0x0080))
9576 goto skip_bad_vf_detection;
9577
9578 pf_func = req_id & 0x01;
9579 if ((pf_func & 1) == (pdev->devfn & 1)) {
9580 unsigned int device_id;
9581
9582 vf = (req_id & 0x7F) >> 1;
9583 e_dev_err("VF %d has caused a PCIe error\n", vf);
9584 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
9585 "%8.8x\tdw3: %8.8x\n",
9586 dw0, dw1, dw2, dw3);
9587 switch (adapter->hw.mac.type) {
9588 case ixgbe_mac_82599EB:
9589 device_id = IXGBE_82599_VF_DEVICE_ID;
9590 break;
9591 case ixgbe_mac_X540:
9592 device_id = IXGBE_X540_VF_DEVICE_ID;
9593 break;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00009594 case ixgbe_mac_X550:
9595 device_id = IXGBE_DEV_ID_X550_VF;
9596 break;
9597 case ixgbe_mac_X550EM_x:
9598 device_id = IXGBE_DEV_ID_X550EM_X_VF;
9599 break;
Greg Rose83c61fa2011-09-07 05:59:35 +00009600 default:
9601 device_id = 0;
9602 break;
9603 }
9604
9605 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00009606 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00009607 while (vfdev) {
9608 if (vfdev->devfn == (req_id & 0xFF))
9609 break;
Jon Mason36e90312012-07-19 21:02:09 +00009610 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00009611 device_id, vfdev);
9612 }
9613 /*
9614 * There's a slim chance the VF could have been hot plugged,
9615 * so if it is no longer present we don't need to issue the
9616 * VFLR. Just clean up the AER in that case.
9617 */
9618 if (vfdev) {
Emil Tantilov9079e412014-11-19 03:18:19 +00009619 ixgbe_issue_vf_flr(adapter, vfdev);
Greg Roseb4fafbe2012-12-13 01:14:06 +00009620 /* Free device reference count */
9621 pci_dev_put(vfdev);
Greg Rose83c61fa2011-09-07 05:59:35 +00009622 }
9623
9624 pci_cleanup_aer_uncorrect_error_status(pdev);
9625 }
9626
9627 /*
9628 * Even though the error may have occurred on the other port
9629 * we still need to increment the vf error reference count for
9630 * both ports because the I/O resume function will be called
9631 * for both of them.
9632 */
9633 adapter->vferr_refcount++;
9634
9635 return PCI_ERS_RESULT_RECOVERED;
9636
9637skip_bad_vf_detection:
9638#endif /* CONFIG_PCI_IOV */
Mark Rustad58cf6632014-03-12 00:38:40 +00009639 if (!test_bit(__IXGBE_SERVICE_INITED, &adapter->state))
9640 return PCI_ERS_RESULT_DISCONNECT;
9641
Mark Rustad41c62842014-03-12 00:38:35 +00009642 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07009643 netif_device_detach(netdev);
9644
Mark Rustad41c62842014-03-12 00:38:35 +00009645 if (state == pci_channel_io_perm_failure) {
9646 rtnl_unlock();
Breno Leitao3044b8d2009-05-06 10:44:26 +00009647 return PCI_ERS_RESULT_DISCONNECT;
Mark Rustad41c62842014-03-12 00:38:35 +00009648 }
Breno Leitao3044b8d2009-05-06 10:44:26 +00009649
Auke Kok9a799d72007-09-15 14:07:45 -07009650 if (netif_running(netdev))
9651 ixgbe_down(adapter);
Mark Rustad41c62842014-03-12 00:38:35 +00009652
9653 if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state))
9654 pci_disable_device(pdev);
9655 rtnl_unlock();
Auke Kok9a799d72007-09-15 14:07:45 -07009656
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07009657 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07009658 return PCI_ERS_RESULT_NEED_RESET;
9659}
9660
9661/**
9662 * ixgbe_io_slot_reset - called after the pci bus has been reset.
9663 * @pdev: Pointer to PCI device
9664 *
9665 * Restart the card from scratch, as if from a cold-boot.
9666 */
9667static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
9668{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08009669 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009670 pci_ers_result_t result;
9671 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07009672
gouji-new9ce77662009-05-06 10:44:45 +00009673 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00009674 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009675 result = PCI_ERS_RESULT_DISCONNECT;
9676 } else {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01009677 smp_mb__before_atomic();
Mark Rustad41c62842014-03-12 00:38:35 +00009678 clear_bit(__IXGBE_DISABLED, &adapter->state);
Mark Rustad0391bbe2014-02-28 15:48:55 -08009679 adapter->hw.hw_addr = adapter->io_addr;
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009680 pci_set_master(pdev);
9681 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00009682 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009683
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07009684 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009685
9686 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00009687 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009688 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07009689 }
Auke Kok9a799d72007-09-15 14:07:45 -07009690
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009691 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9692 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009693 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
9694 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009695 /* non-fatal, continue */
9696 }
Auke Kok9a799d72007-09-15 14:07:45 -07009697
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009698 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07009699}
9700
9701/**
9702 * ixgbe_io_resume - called when traffic can start flowing again.
9703 * @pdev: Pointer to PCI device
9704 *
9705 * This callback is called when the error recovery driver tells us that
9706 * its OK to resume normal operation.
9707 */
9708static void ixgbe_io_resume(struct pci_dev *pdev)
9709{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08009710 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
9711 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07009712
Greg Rose83c61fa2011-09-07 05:59:35 +00009713#ifdef CONFIG_PCI_IOV
9714 if (adapter->vferr_refcount) {
9715 e_info(drv, "Resuming after VF err\n");
9716 adapter->vferr_refcount--;
9717 return;
9718 }
9719
9720#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00009721 if (netif_running(netdev))
9722 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009723
9724 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009725}
9726
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07009727static const struct pci_error_handlers ixgbe_err_handler = {
Auke Kok9a799d72007-09-15 14:07:45 -07009728 .error_detected = ixgbe_io_error_detected,
9729 .slot_reset = ixgbe_io_slot_reset,
9730 .resume = ixgbe_io_resume,
9731};
9732
9733static struct pci_driver ixgbe_driver = {
9734 .name = ixgbe_driver_name,
9735 .id_table = ixgbe_pci_tbl,
9736 .probe = ixgbe_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05009737 .remove = ixgbe_remove,
Auke Kok9a799d72007-09-15 14:07:45 -07009738#ifdef CONFIG_PM
9739 .suspend = ixgbe_suspend,
9740 .resume = ixgbe_resume,
9741#endif
9742 .shutdown = ixgbe_shutdown,
Greg Roseda36b642012-12-11 08:26:43 +00009743 .sriov_configure = ixgbe_pci_sriov_configure,
Auke Kok9a799d72007-09-15 14:07:45 -07009744 .err_handler = &ixgbe_err_handler
9745};
9746
9747/**
9748 * ixgbe_init_module - Driver Registration Routine
9749 *
9750 * ixgbe_init_module is the first routine called when the driver is
9751 * loaded. All it does is register with the PCI subsystem.
9752 **/
9753static int __init ixgbe_init_module(void)
9754{
9755 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00009756 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00009757 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07009758
Mark Rustad780484d2015-10-21 17:21:10 -07009759 ixgbe_wq = create_singlethread_workqueue(ixgbe_driver_name);
9760 if (!ixgbe_wq) {
9761 pr_err("%s: Failed to create workqueue\n", ixgbe_driver_name);
9762 return -ENOMEM;
9763 }
9764
Catherine Sullivan00949162012-08-10 01:59:10 +00009765 ixgbe_dbg_init();
Catherine Sullivan00949162012-08-10 01:59:10 +00009766
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00009767 ret = pci_register_driver(&ixgbe_driver);
9768 if (ret) {
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00009769 ixgbe_dbg_exit();
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00009770 return ret;
9771 }
9772
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009773#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009774 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009775#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009776
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +00009777 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07009778}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07009779
Auke Kok9a799d72007-09-15 14:07:45 -07009780module_init(ixgbe_init_module);
9781
9782/**
9783 * ixgbe_exit_module - Driver Exit Cleanup Routine
9784 *
9785 * ixgbe_exit_module is called just before the driver is removed
9786 * from memory.
9787 **/
9788static void __exit ixgbe_exit_module(void)
9789{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009790#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009791 dca_unregister_notify(&dca_notifier);
9792#endif
Auke Kok9a799d72007-09-15 14:07:45 -07009793 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +00009794
Catherine Sullivan00949162012-08-10 01:59:10 +00009795 ixgbe_dbg_exit();
Mark Rustad780484d2015-10-21 17:21:10 -07009796 if (ixgbe_wq) {
9797 destroy_workqueue(ixgbe_wq);
9798 ixgbe_wq = NULL;
9799 }
Auke Kok9a799d72007-09-15 14:07:45 -07009800}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009801
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009802#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009803static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00009804 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009805{
9806 int ret_val;
9807
9808 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00009809 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009810
9811 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
9812}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009813
Alexander Duyckb4533682009-03-31 21:32:42 +00009814#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00009815
Auke Kok9a799d72007-09-15 14:07:45 -07009816module_exit(ixgbe_exit_module);
9817
9818/* ixgbe_main.c */