blob: 7dfde209b0e01963ab37145577e912fb26e65256 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad37689012016-01-07 10:13:03 -08004 Copyright(c) 1999 - 2016 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>
Alexander Duyckb3a49552016-06-16 12:22:19 -070053#include <net/udp_tunnel.h>
John Fastabendb82b17d2016-02-16 21:18:53 -080054#include <net/pkt_cls.h>
55#include <net/tc_act/tc_gact.h>
Sridhar Samudrala947f8a42016-04-05 10:39:07 -070056#include <net/tc_act/tc_mirred.h>
Auke Kok9a799d72007-09-15 14:07:45 -070057
58#include "ixgbe.h"
59#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000060#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000061#include "ixgbe_sriov.h"
John Fastabendb82b17d2016-02-16 21:18:53 -080062#include "ixgbe_model.h"
Auke Kok9a799d72007-09-15 14:07:45 -070063
64char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070065static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000066 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000067#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000068char ixgbe_default_device_descr[] =
69 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000070#else
71static char ixgbe_default_device_descr[] =
72 "Intel(R) 10 Gigabit Network Connection";
73#endif
Mark Rustad10ef00f2016-04-01 12:18:51 -070074#define DRV_VERSION "4.4.0-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070075const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000076static const char ixgbe_copyright[] =
Mark Rustad49425df2016-04-01 12:18:09 -070077 "Copyright (c) 1999-2016 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070078
Don Skidmoref44e7512015-06-09 16:36:23 -070079static 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";
80
Auke Kok9a799d72007-09-15 14:07:45 -070081static const struct ixgbe_info *ixgbe_info_tbl[] = {
Don Skidmore6a14ee02014-12-05 03:59:50 +000082 [board_82598] = &ixgbe_82598_info,
83 [board_82599] = &ixgbe_82599_info,
84 [board_X540] = &ixgbe_X540_info,
85 [board_X550] = &ixgbe_X550_info,
86 [board_X550EM_x] = &ixgbe_X550EM_x_info,
Mark Rustad49425df2016-04-01 12:18:09 -070087 [board_x550em_a] = &ixgbe_x550em_a_info,
Auke Kok9a799d72007-09-15 14:07:45 -070088};
89
90/* ixgbe_pci_tbl - PCI Device ID Table
91 *
92 * Wildcard entries (PCI_ANY_ID) should come last
93 * Last entry must be all 0s
94 *
95 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
96 * Class, Class Mask, private data (not used) }
97 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020098static const struct pci_device_id ixgbe_pci_tbl[] = {
Alexander Duyck54239c62011-07-15 03:06:06 +000099 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
117 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
118 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
119 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
120 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
121 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
122 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
123 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
124 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Don Skidmore8f583322013-07-27 06:25:38 +0000125 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000126 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000127 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +0000128 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
Don Skidmore6a14ee02014-12-05 03:59:50 +0000129 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T), board_X550},
Mark Rustada711ad82016-03-21 11:21:31 -0700130 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T1), board_X550},
Don Skidmore6a14ee02014-12-05 03:59:50 +0000131 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KX4), board_X550EM_x},
132 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KR), board_X550EM_x},
Don Skidmorededa5622015-06-09 17:39:46 -0700133 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_10G_T), board_X550EM_x},
Mark Rustad018d7142015-08-08 16:19:19 -0700134 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_SFP), board_X550EM_x},
Mark Rustadf572b2c2016-04-01 12:18:46 -0700135 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_KR), board_x550em_a },
136 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_KR_L), board_x550em_a },
Mark Rustad49425df2016-04-01 12:18:09 -0700137 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SFP_N), board_x550em_a },
Mark Rustad200157c2016-04-01 12:18:40 -0700138 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SGMII), board_x550em_a },
139 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SGMII_L), board_x550em_a },
Don Skidmore92ed8432016-08-17 20:34:40 -0400140 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_10G_T), board_x550em_a},
Mark Rustad2d40cd12016-04-01 12:18:35 -0700141 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SFP), board_x550em_a },
Auke Kok9a799d72007-09-15 14:07:45 -0700142 /* required last entry */
143 {0, }
144};
145MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
146
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400147#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800148static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000149 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800150static struct notifier_block dca_notifier = {
151 .notifier_call = ixgbe_notify_dca,
152 .next = NULL,
153 .priority = 0
154};
155#endif
156
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000157#ifdef CONFIG_PCI_IOV
158static unsigned int max_vfs;
159module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000160MODULE_PARM_DESC(max_vfs,
Jacob Keller170e8542013-11-09 04:52:32 -0800161 "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 +0000162#endif /* CONFIG_PCI_IOV */
163
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000164static unsigned int allow_unsupported_sfp;
165module_param(allow_unsupported_sfp, uint, 0);
166MODULE_PARM_DESC(allow_unsupported_sfp,
167 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
168
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000169#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
170static int debug = -1;
171module_param(debug, int, 0);
172MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
173
Auke Kok9a799d72007-09-15 14:07:45 -0700174MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
175MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
176MODULE_LICENSE("GPL");
177MODULE_VERSION(DRV_VERSION);
178
Mark Rustad780484d2015-10-21 17:21:10 -0700179static struct workqueue_struct *ixgbe_wq;
180
Mark Rustad14438462014-02-28 15:48:57 -0800181static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev);
182
Jacob Kellerb8e82002013-04-09 07:20:09 +0000183static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter *adapter,
184 u32 reg, u16 *value)
185{
Jacob Kellerb8e82002013-04-09 07:20:09 +0000186 struct pci_dev *parent_dev;
187 struct pci_bus *parent_bus;
188
189 parent_bus = adapter->pdev->bus->parent;
190 if (!parent_bus)
191 return -1;
192
193 parent_dev = parent_bus->self;
194 if (!parent_dev)
195 return -1;
196
Yijing Wangc0798ed2013-09-04 17:30:08 +0000197 if (!pci_is_pcie(parent_dev))
Jacob Kellerb8e82002013-04-09 07:20:09 +0000198 return -1;
199
Yijing Wangc0798ed2013-09-04 17:30:08 +0000200 pcie_capability_read_word(parent_dev, reg, value);
Mark Rustad14438462014-02-28 15:48:57 -0800201 if (*value == IXGBE_FAILED_READ_CFG_WORD &&
202 ixgbe_check_cfg_remove(&adapter->hw, parent_dev))
203 return -1;
Jacob Kellerb8e82002013-04-09 07:20:09 +0000204 return 0;
205}
206
207static s32 ixgbe_get_parent_bus_info(struct ixgbe_adapter *adapter)
208{
209 struct ixgbe_hw *hw = &adapter->hw;
210 u16 link_status = 0;
211 int err;
212
213 hw->bus.type = ixgbe_bus_type_pci_express;
214
215 /* Get the negotiated link width and speed from PCI config space of the
216 * parent, as this device is behind a switch
217 */
218 err = ixgbe_read_pci_cfg_word_parent(adapter, 18, &link_status);
219
220 /* assume caller will handle error case */
221 if (err)
222 return err;
223
224 hw->bus.width = ixgbe_convert_bus_width(link_status);
225 hw->bus.speed = ixgbe_convert_bus_speed(link_status);
226
227 return 0;
228}
229
Jacob Kellere027d1a2013-07-31 06:53:31 +0000230/**
231 * ixgbe_check_from_parent - Determine whether PCIe info should come from parent
232 * @hw: hw specific details
233 *
234 * This function is used by probe to determine whether a device's PCI-Express
235 * bandwidth details should be gathered from the parent bus instead of from the
236 * device. Used to ensure that various locations all have the correct device ID
237 * checks.
238 */
239static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw *hw)
240{
241 switch (hw->device_id) {
242 case IXGBE_DEV_ID_82599_SFP_SF_QP:
Don Skidmore8f583322013-07-27 06:25:38 +0000243 case IXGBE_DEV_ID_82599_QSFP_SF_QP:
Jacob Kellere027d1a2013-07-31 06:53:31 +0000244 return true;
245 default:
246 return false;
247 }
248}
249
250static void ixgbe_check_minimum_link(struct ixgbe_adapter *adapter,
251 int expected_gts)
252{
Don Skidmoref9328bc2015-06-18 13:24:06 -0400253 struct ixgbe_hw *hw = &adapter->hw;
Jacob Kellere027d1a2013-07-31 06:53:31 +0000254 int max_gts = 0;
255 enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
256 enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
257 struct pci_dev *pdev;
258
Don Skidmoref9328bc2015-06-18 13:24:06 -0400259 /* Some devices are not connected over PCIe and thus do not negotiate
260 * speed. These devices do not have valid bus info, and thus any report
261 * we generate may not be correct.
262 */
263 if (hw->bus.type == ixgbe_bus_type_internal)
264 return;
265
Jacob Keller56d13922015-06-10 11:44:45 -0700266 /* determine whether to use the parent device */
Jacob Kellere027d1a2013-07-31 06:53:31 +0000267 if (ixgbe_pcie_from_parent(&adapter->hw))
268 pdev = adapter->pdev->bus->parent->self;
269 else
270 pdev = adapter->pdev;
271
272 if (pcie_get_minimum_link(pdev, &speed, &width) ||
273 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
274 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
275 return;
276 }
277
278 switch (speed) {
279 case PCIE_SPEED_2_5GT:
280 /* 8b/10b encoding reduces max throughput by 20% */
281 max_gts = 2 * width;
282 break;
283 case PCIE_SPEED_5_0GT:
284 /* 8b/10b encoding reduces max throughput by 20% */
285 max_gts = 4 * width;
286 break;
287 case PCIE_SPEED_8_0GT:
Jacob Keller9f0a4332013-10-18 05:09:19 +0000288 /* 128b/130b encoding reduces throughput by less than 2% */
Jacob Kellere027d1a2013-07-31 06:53:31 +0000289 max_gts = 8 * width;
290 break;
291 default:
292 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
293 return;
294 }
295
296 e_dev_info("PCI Express bandwidth of %dGT/s available\n",
297 max_gts);
298 e_dev_info("(Speed:%s, Width: x%d, Encoding Loss:%s)\n",
299 (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
300 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
301 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
302 "Unknown"),
303 width,
304 (speed == PCIE_SPEED_2_5GT ? "20%" :
305 speed == PCIE_SPEED_5_0GT ? "20%" :
Jacob Keller9f0a4332013-10-18 05:09:19 +0000306 speed == PCIE_SPEED_8_0GT ? "<2%" :
Jacob Kellere027d1a2013-07-31 06:53:31 +0000307 "Unknown"));
308
309 if (max_gts < expected_gts) {
310 e_dev_warn("This is not sufficient for optimal performance of this card.\n");
311 e_dev_warn("For optimal performance, at least %dGT/s of bandwidth is required.\n",
312 expected_gts);
313 e_dev_warn("A slot with more lanes and/or higher speed is suggested.\n");
314 }
315}
316
Alexander Duyck70864002011-04-27 09:13:56 +0000317static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
318{
319 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
Mark Rustad09f40ae2014-01-14 18:53:11 -0800320 !test_bit(__IXGBE_REMOVING, &adapter->state) &&
Alexander Duyck70864002011-04-27 09:13:56 +0000321 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
Mark Rustad780484d2015-10-21 17:21:10 -0700322 queue_work(ixgbe_wq, &adapter->service_task);
Alexander Duyck70864002011-04-27 09:13:56 +0000323}
324
Mark Rustad2a1a0912014-01-14 18:53:15 -0800325static void ixgbe_remove_adapter(struct ixgbe_hw *hw)
326{
327 struct ixgbe_adapter *adapter = hw->back;
328
329 if (!hw->hw_addr)
330 return;
331 hw->hw_addr = NULL;
332 e_dev_err("Adapter removed\n");
Mark Rustad58cf6632014-03-12 00:38:40 +0000333 if (test_bit(__IXGBE_SERVICE_INITED, &adapter->state))
334 ixgbe_service_event_schedule(adapter);
Mark Rustad2a1a0912014-01-14 18:53:15 -0800335}
336
Mark Rustadf8e24722014-03-18 07:03:40 +0000337static void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg)
Mark Rustad2a1a0912014-01-14 18:53:15 -0800338{
339 u32 value;
340
341 /* The following check not only optimizes a bit by not
342 * performing a read on the status register when the
343 * register just read was a status register read that
344 * returned IXGBE_FAILED_READ_REG. It also blocks any
345 * potential recursion.
346 */
347 if (reg == IXGBE_STATUS) {
348 ixgbe_remove_adapter(hw);
349 return;
350 }
351 value = ixgbe_read_reg(hw, IXGBE_STATUS);
352 if (value == IXGBE_FAILED_READ_REG)
353 ixgbe_remove_adapter(hw);
354}
355
Mark Rustadf8e24722014-03-18 07:03:40 +0000356/**
357 * ixgbe_read_reg - Read from device register
358 * @hw: hw specific details
359 * @reg: offset of register to read
360 *
361 * Returns : value read or IXGBE_FAILED_READ_REG if removed
362 *
363 * This function is used to read device registers. It checks for device
364 * removal by confirming any read that returns all ones by checking the
365 * status register value for all ones. This function avoids reading from
366 * the hardware if a removal was previously detected in which case it
367 * returns IXGBE_FAILED_READ_REG (all ones).
368 */
369u32 ixgbe_read_reg(struct ixgbe_hw *hw, u32 reg)
370{
371 u8 __iomem *reg_addr = ACCESS_ONCE(hw->hw_addr);
372 u32 value;
373
374 if (ixgbe_removed(reg_addr))
375 return IXGBE_FAILED_READ_REG;
Mark Rustad2f2219b2016-04-07 10:43:50 -0700376 if (unlikely(hw->phy.nw_mng_if_sel &
377 IXGBE_NW_MNG_IF_SEL_ENABLE_10_100M)) {
378 struct ixgbe_adapter *adapter;
379 int i;
380
381 for (i = 0; i < 200; ++i) {
382 value = readl(reg_addr + IXGBE_MAC_SGMII_BUSY);
383 if (likely(!value))
384 goto writes_completed;
385 if (value == IXGBE_FAILED_READ_REG) {
386 ixgbe_remove_adapter(hw);
387 return IXGBE_FAILED_READ_REG;
388 }
389 udelay(5);
390 }
391
392 adapter = hw->back;
393 e_warn(hw, "register writes incomplete %08x\n", value);
394 }
395
396writes_completed:
Mark Rustadf8e24722014-03-18 07:03:40 +0000397 value = readl(reg_addr + reg);
398 if (unlikely(value == IXGBE_FAILED_READ_REG))
399 ixgbe_check_remove(hw, reg);
400 return value;
401}
402
Mark Rustad14438462014-02-28 15:48:57 -0800403static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev)
404{
405 u16 value;
406
407 pci_read_config_word(pdev, PCI_VENDOR_ID, &value);
408 if (value == IXGBE_FAILED_READ_CFG_WORD) {
409 ixgbe_remove_adapter(hw);
410 return true;
411 }
412 return false;
413}
414
415u16 ixgbe_read_pci_cfg_word(struct ixgbe_hw *hw, u32 reg)
416{
417 struct ixgbe_adapter *adapter = hw->back;
418 u16 value;
419
420 if (ixgbe_removed(hw->hw_addr))
421 return IXGBE_FAILED_READ_CFG_WORD;
422 pci_read_config_word(adapter->pdev, reg, &value);
423 if (value == IXGBE_FAILED_READ_CFG_WORD &&
424 ixgbe_check_cfg_remove(hw, adapter->pdev))
425 return IXGBE_FAILED_READ_CFG_WORD;
426 return value;
427}
428
429#ifdef CONFIG_PCI_IOV
430static u32 ixgbe_read_pci_cfg_dword(struct ixgbe_hw *hw, u32 reg)
431{
432 struct ixgbe_adapter *adapter = hw->back;
433 u32 value;
434
435 if (ixgbe_removed(hw->hw_addr))
436 return IXGBE_FAILED_READ_CFG_DWORD;
437 pci_read_config_dword(adapter->pdev, reg, &value);
438 if (value == IXGBE_FAILED_READ_CFG_DWORD &&
439 ixgbe_check_cfg_remove(hw, adapter->pdev))
440 return IXGBE_FAILED_READ_CFG_DWORD;
441 return value;
442}
443#endif /* CONFIG_PCI_IOV */
444
Jacob Kellered192312014-02-22 01:23:53 +0000445void ixgbe_write_pci_cfg_word(struct ixgbe_hw *hw, u32 reg, u16 value)
446{
447 struct ixgbe_adapter *adapter = hw->back;
448
449 if (ixgbe_removed(hw->hw_addr))
450 return;
451 pci_write_config_word(adapter->pdev, reg, value);
452}
453
Alexander Duyck70864002011-04-27 09:13:56 +0000454static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
455{
456 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
457
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000458 /* flush memory to make sure state is correct before next watchdog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100459 smp_mb__before_atomic();
Alexander Duyck70864002011-04-27 09:13:56 +0000460 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
461}
462
Taku Izumidcd79ae2010-04-27 14:39:53 +0000463struct ixgbe_reg_info {
464 u32 ofs;
465 char *name;
466};
467
468static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
469
470 /* General Registers */
471 {IXGBE_CTRL, "CTRL"},
472 {IXGBE_STATUS, "STATUS"},
473 {IXGBE_CTRL_EXT, "CTRL_EXT"},
474
475 /* Interrupt Registers */
476 {IXGBE_EICR, "EICR"},
477
478 /* RX Registers */
479 {IXGBE_SRRCTL(0), "SRRCTL"},
480 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
481 {IXGBE_RDLEN(0), "RDLEN"},
482 {IXGBE_RDH(0), "RDH"},
483 {IXGBE_RDT(0), "RDT"},
484 {IXGBE_RXDCTL(0), "RXDCTL"},
485 {IXGBE_RDBAL(0), "RDBAL"},
486 {IXGBE_RDBAH(0), "RDBAH"},
487
488 /* TX Registers */
489 {IXGBE_TDBAL(0), "TDBAL"},
490 {IXGBE_TDBAH(0), "TDBAH"},
491 {IXGBE_TDLEN(0), "TDLEN"},
492 {IXGBE_TDH(0), "TDH"},
493 {IXGBE_TDT(0), "TDT"},
494 {IXGBE_TXDCTL(0), "TXDCTL"},
495
496 /* List Terminator */
Mark Rustadca8dfe22014-07-24 06:19:24 +0000497 { .name = NULL }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000498};
499
500
501/*
502 * ixgbe_regdump - register printout routine
503 */
504static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
505{
506 int i = 0, j = 0;
507 char rname[16];
508 u32 regs[64];
509
510 switch (reginfo->ofs) {
511 case IXGBE_SRRCTL(0):
512 for (i = 0; i < 64; i++)
513 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
514 break;
515 case IXGBE_DCA_RXCTRL(0):
516 for (i = 0; i < 64; i++)
517 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
518 break;
519 case IXGBE_RDLEN(0):
520 for (i = 0; i < 64; i++)
521 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
522 break;
523 case IXGBE_RDH(0):
524 for (i = 0; i < 64; i++)
525 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
526 break;
527 case IXGBE_RDT(0):
528 for (i = 0; i < 64; i++)
529 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
530 break;
531 case IXGBE_RXDCTL(0):
532 for (i = 0; i < 64; i++)
533 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
534 break;
535 case IXGBE_RDBAL(0):
536 for (i = 0; i < 64; i++)
537 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
538 break;
539 case IXGBE_RDBAH(0):
540 for (i = 0; i < 64; i++)
541 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
542 break;
543 case IXGBE_TDBAL(0):
544 for (i = 0; i < 64; i++)
545 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
546 break;
547 case IXGBE_TDBAH(0):
548 for (i = 0; i < 64; i++)
549 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
550 break;
551 case IXGBE_TDLEN(0):
552 for (i = 0; i < 64; i++)
553 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
554 break;
555 case IXGBE_TDH(0):
556 for (i = 0; i < 64; i++)
557 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
558 break;
559 case IXGBE_TDT(0):
560 for (i = 0; i < 64; i++)
561 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
562 break;
563 case IXGBE_TXDCTL(0):
564 for (i = 0; i < 64; i++)
565 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
566 break;
567 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000568 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000569 IXGBE_READ_REG(hw, reginfo->ofs));
570 return;
571 }
572
573 for (i = 0; i < 8; i++) {
574 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000575 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000576 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000577 pr_cont(" %08x", regs[i*8+j]);
578 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000579 }
580
581}
582
583/*
584 * ixgbe_dump - Print registers, tx-rings and rx-rings
585 */
586static void ixgbe_dump(struct ixgbe_adapter *adapter)
587{
588 struct net_device *netdev = adapter->netdev;
589 struct ixgbe_hw *hw = &adapter->hw;
590 struct ixgbe_reg_info *reginfo;
591 int n = 0;
592 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000593 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000594 union ixgbe_adv_tx_desc *tx_desc;
595 struct my_u0 { u64 a; u64 b; } *u0;
596 struct ixgbe_ring *rx_ring;
597 union ixgbe_adv_rx_desc *rx_desc;
598 struct ixgbe_rx_buffer *rx_buffer_info;
599 u32 staterr;
600 int i = 0;
601
602 if (!netif_msg_hw(adapter))
603 return;
604
605 /* Print netdevice Info */
606 if (netdev) {
607 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000608 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000609 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000610 pr_info("%-15s %016lX %016lX %016lX\n",
611 netdev->name,
612 netdev->state,
Florian Westphal4d0e9652016-05-03 16:30:59 +0200613 dev_trans_start(netdev),
Joe Perchesc7689572010-09-07 21:35:17 +0000614 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000615 }
616
617 /* Print Registers */
618 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000619 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000620 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
621 reginfo->name; reginfo++) {
622 ixgbe_regdump(hw, reginfo);
623 }
624
625 /* Print TX Ring Summary */
626 if (!netdev || !netif_running(netdev))
Mark Rustade90dd262014-07-22 06:51:08 +0000627 return;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000628
629 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000630 pr_info(" %s %s %s %s\n",
631 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
632 "leng", "ntw", "timestamp");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000633 for (n = 0; n < adapter->num_tx_queues; n++) {
634 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000635 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Josh Hay8ad88e32012-09-26 05:59:41 +0000636 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000637 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000638 (u64)dma_unmap_addr(tx_buffer, dma),
639 dma_unmap_len(tx_buffer, len),
640 tx_buffer->next_to_watch,
641 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000642 }
643
644 /* Print TX Rings */
645 if (!netif_msg_tx_done(adapter))
646 goto rx_ring_summary;
647
648 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
649
650 /* Transmit Descriptor Formats
651 *
Josh Hay39ac8682012-09-26 05:59:36 +0000652 * 82598 Advanced Transmit Descriptor
Taku Izumidcd79ae2010-04-27 14:39:53 +0000653 * +--------------------------------------------------------------+
654 * 0 | Buffer Address [63:0] |
655 * +--------------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000656 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000657 * +--------------------------------------------------------------+
658 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000659 *
660 * 82598 Advanced Transmit Descriptor (Write-Back Format)
661 * +--------------------------------------------------------------+
662 * 0 | RSV [63:0] |
663 * +--------------------------------------------------------------+
664 * 8 | RSV | STA | NXTSEQ |
665 * +--------------------------------------------------------------+
666 * 63 36 35 32 31 0
667 *
668 * 82599+ Advanced Transmit Descriptor
669 * +--------------------------------------------------------------+
670 * 0 | Buffer Address [63:0] |
671 * +--------------------------------------------------------------+
672 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
673 * +--------------------------------------------------------------+
674 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
675 *
676 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
677 * +--------------------------------------------------------------+
678 * 0 | RSV [63:0] |
679 * +--------------------------------------------------------------+
680 * 8 | RSV | STA | RSV |
681 * +--------------------------------------------------------------+
682 * 63 36 35 32 31 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000683 */
684
685 for (n = 0; n < adapter->num_tx_queues; n++) {
686 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000687 pr_info("------------------------------------\n");
688 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
689 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000690 pr_info("%s%s %s %s %s %s\n",
691 "T [desc] [address 63:0 ] ",
692 "[PlPOIdStDDt Ln] [bi->dma ] ",
693 "leng", "ntw", "timestamp", "bi->skb");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000694
695 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000696 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000697 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000698 u0 = (struct my_u0 *)tx_desc;
Josh Hay8ad88e32012-09-26 05:59:41 +0000699 if (dma_unmap_len(tx_buffer, len) > 0) {
700 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p",
701 i,
702 le64_to_cpu(u0->a),
703 le64_to_cpu(u0->b),
704 (u64)dma_unmap_addr(tx_buffer, dma),
Alexander Duyck729739b2012-02-08 07:51:06 +0000705 dma_unmap_len(tx_buffer, len),
Josh Hay8ad88e32012-09-26 05:59:41 +0000706 tx_buffer->next_to_watch,
707 (u64)tx_buffer->time_stamp,
708 tx_buffer->skb);
709 if (i == tx_ring->next_to_use &&
710 i == tx_ring->next_to_clean)
711 pr_cont(" NTC/U\n");
712 else if (i == tx_ring->next_to_use)
713 pr_cont(" NTU\n");
714 else if (i == tx_ring->next_to_clean)
715 pr_cont(" NTC\n");
716 else
717 pr_cont("\n");
718
719 if (netif_msg_pktdata(adapter) &&
720 tx_buffer->skb)
721 print_hex_dump(KERN_INFO, "",
722 DUMP_PREFIX_ADDRESS, 16, 1,
723 tx_buffer->skb->data,
724 dma_unmap_len(tx_buffer, len),
725 true);
726 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000727 }
728 }
729
730 /* Print RX Rings Summary */
731rx_ring_summary:
732 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000733 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000734 for (n = 0; n < adapter->num_rx_queues; n++) {
735 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000736 pr_info("%5d %5X %5X\n",
737 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000738 }
739
740 /* Print RX Rings */
741 if (!netif_msg_rx_status(adapter))
Mark Rustade90dd262014-07-22 06:51:08 +0000742 return;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000743
744 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
745
Josh Hay39ac8682012-09-26 05:59:36 +0000746 /* Receive Descriptor Formats
747 *
748 * 82598 Advanced Receive Descriptor (Read) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000749 * 63 1 0
750 * +-----------------------------------------------------+
751 * 0 | Packet Buffer Address [63:1] |A0/NSE|
752 * +----------------------------------------------+------+
753 * 8 | Header Buffer Address [63:1] | DD |
754 * +-----------------------------------------------------+
755 *
756 *
Josh Hay39ac8682012-09-26 05:59:36 +0000757 * 82598 Advanced Receive Descriptor (Write-Back) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000758 *
759 * 63 48 47 32 31 30 21 20 16 15 4 3 0
760 * +------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000761 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
762 * | Packet | IP | | | | Type | Type |
763 * | Checksum | Ident | | | | | |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000764 * +------------------------------------------------------+
765 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
766 * +------------------------------------------------------+
767 * 63 48 47 32 31 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000768 *
769 * 82599+ Advanced Receive Descriptor (Read) Format
770 * 63 1 0
771 * +-----------------------------------------------------+
772 * 0 | Packet Buffer Address [63:1] |A0/NSE|
773 * +----------------------------------------------+------+
774 * 8 | Header Buffer Address [63:1] | DD |
775 * +-----------------------------------------------------+
776 *
777 *
778 * 82599+ Advanced Receive Descriptor (Write-Back) Format
779 *
780 * 63 48 47 32 31 30 21 20 17 16 4 3 0
781 * +------------------------------------------------------+
782 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
783 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
784 * |/ Flow Dir Flt ID | | | | | |
785 * +------------------------------------------------------+
786 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
787 * +------------------------------------------------------+
788 * 63 48 47 32 31 20 19 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000789 */
Josh Hay39ac8682012-09-26 05:59:36 +0000790
Taku Izumidcd79ae2010-04-27 14:39:53 +0000791 for (n = 0; n < adapter->num_rx_queues; n++) {
792 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000793 pr_info("------------------------------------\n");
794 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
795 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000796 pr_info("%s%s%s",
797 "R [desc] [ PktBuf A0] ",
798 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000799 "<-- Adv Rx Read format\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000800 pr_info("%s%s%s",
801 "RWB[desc] [PcsmIpSHl PtRs] ",
802 "[vl er S cks ln] ---------------- [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000803 "<-- Adv Rx Write-Back format\n");
804
805 for (i = 0; i < rx_ring->count; i++) {
806 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000807 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000808 u0 = (struct my_u0 *)rx_desc;
809 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
810 if (staterr & IXGBE_RXD_STAT_DD) {
811 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000812 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000813 "%016llX ---------------- %p", i,
814 le64_to_cpu(u0->a),
815 le64_to_cpu(u0->b),
816 rx_buffer_info->skb);
817 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000818 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000819 "%016llX %016llX %p", i,
820 le64_to_cpu(u0->a),
821 le64_to_cpu(u0->b),
822 (u64)rx_buffer_info->dma,
823 rx_buffer_info->skb);
824
Emil Tantilov9c50c032012-07-26 01:21:24 +0000825 if (netif_msg_pktdata(adapter) &&
826 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000827 print_hex_dump(KERN_INFO, "",
828 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000829 page_address(rx_buffer_info->page) +
830 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000831 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000832 }
833 }
834
835 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000836 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000837 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000838 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000839 else
Joe Perchesc7689572010-09-07 21:35:17 +0000840 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000841
842 }
843 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000844}
845
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800846static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
847{
848 u32 ctrl_ext;
849
850 /* Let firmware take over control of h/w */
851 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
852 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000853 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800854}
855
856static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
857{
858 u32 ctrl_ext;
859
860 /* Let firmware know the driver has taken over */
861 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
862 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000863 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800864}
Auke Kok9a799d72007-09-15 14:07:45 -0700865
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000866/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000867 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
868 * @adapter: pointer to adapter struct
869 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
870 * @queue: queue to map the corresponding interrupt to
871 * @msix_vector: the vector to map to the corresponding queue
872 *
873 */
874static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000875 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700876{
877 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000878 struct ixgbe_hw *hw = &adapter->hw;
879 switch (hw->mac.type) {
880 case ixgbe_mac_82598EB:
881 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
882 if (direction == -1)
883 direction = 0;
884 index = (((direction * 64) + queue) >> 2) & 0x1F;
885 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
886 ivar &= ~(0xFF << (8 * (queue & 0x3)));
887 ivar |= (msix_vector << (8 * (queue & 0x3)));
888 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
889 break;
890 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800891 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000892 case ixgbe_mac_X550:
893 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -0700894 case ixgbe_mac_x550em_a:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000895 if (direction == -1) {
896 /* other causes */
897 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
898 index = ((queue & 1) * 8);
899 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
900 ivar &= ~(0xFF << index);
901 ivar |= (msix_vector << index);
902 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
903 break;
904 } else {
905 /* tx or rx causes */
906 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
907 index = ((16 * (queue & 1)) + (8 * direction));
908 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
909 ivar &= ~(0xFF << index);
910 ivar |= (msix_vector << index);
911 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
912 break;
913 }
914 default:
915 break;
916 }
Auke Kok9a799d72007-09-15 14:07:45 -0700917}
918
Alexander Duyckfe49f042009-06-04 16:00:09 +0000919static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000920 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000921{
922 u32 mask;
923
Alexander Duyckbd508172010-11-16 19:27:03 -0800924 switch (adapter->hw.mac.type) {
925 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000926 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
927 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800928 break;
929 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800930 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000931 case ixgbe_mac_X550:
932 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -0700933 case ixgbe_mac_x550em_a:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000934 mask = (qmask & 0xFFFFFFFF);
935 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
936 mask = (qmask >> 32);
937 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800938 break;
939 default:
940 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000941 }
942}
943
Alexander Duyck729739b2012-02-08 07:51:06 +0000944void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
945 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000946{
Alexander Duyck729739b2012-02-08 07:51:06 +0000947 if (tx_buffer->skb) {
948 dev_kfree_skb_any(tx_buffer->skb);
949 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000950 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000951 dma_unmap_addr(tx_buffer, dma),
952 dma_unmap_len(tx_buffer, len),
953 DMA_TO_DEVICE);
954 } else if (dma_unmap_len(tx_buffer, len)) {
955 dma_unmap_page(ring->dev,
956 dma_unmap_addr(tx_buffer, dma),
957 dma_unmap_len(tx_buffer, len),
958 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000959 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000960 tx_buffer->next_to_watch = NULL;
961 tx_buffer->skb = NULL;
962 dma_unmap_len_set(tx_buffer, len, 0);
963 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700964}
965
Alexander Duyck943561d2012-05-09 22:14:44 -0700966static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
967{
968 struct ixgbe_hw *hw = &adapter->hw;
969 struct ixgbe_hw_stats *hwstats = &adapter->stats;
970 int i;
971 u32 data;
972
973 if ((hw->fc.current_mode != ixgbe_fc_full) &&
974 (hw->fc.current_mode != ixgbe_fc_rx_pause))
975 return;
976
977 switch (hw->mac.type) {
978 case ixgbe_mac_82598EB:
979 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
980 break;
981 default:
982 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
983 }
984 hwstats->lxoffrxc += data;
985
986 /* refill credits (no tx hang) if we received xoff */
987 if (!data)
988 return;
989
990 for (i = 0; i < adapter->num_tx_queues; i++)
991 clear_bit(__IXGBE_HANG_CHECK_ARMED,
992 &adapter->tx_ring[i]->state);
993}
994
John Fastabendc84d3242010-11-16 19:27:12 -0800995static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700996{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700997 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800998 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800999 u32 xoff[8] = {0};
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001000 u8 tc;
John Fastabendc84d3242010-11-16 19:27:12 -08001001 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -07001002 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001003
Alexander Duyck943561d2012-05-09 22:14:44 -07001004 if (adapter->ixgbe_ieee_pfc)
1005 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -08001006
Alexander Duyck943561d2012-05-09 22:14:44 -07001007 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
1008 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -08001009 return;
Alexander Duyck943561d2012-05-09 22:14:44 -07001010 }
John Fastabendc84d3242010-11-16 19:27:12 -08001011
1012 /* update stats for each tc, only valid with PFC enabled */
1013 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001014 u32 pxoffrxc;
1015
John Fastabendc84d3242010-11-16 19:27:12 -08001016 switch (hw->mac.type) {
1017 case ixgbe_mac_82598EB:
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001018 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
John Fastabendc84d3242010-11-16 19:27:12 -08001019 break;
1020 default:
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001021 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
John Fastabendc84d3242010-11-16 19:27:12 -08001022 }
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001023 hwstats->pxoffrxc[i] += pxoffrxc;
1024 /* Get the TC for given UP */
1025 tc = netdev_get_prio_tc_map(adapter->netdev, i);
1026 xoff[tc] += pxoffrxc;
Auke Kok9a799d72007-09-15 14:07:45 -07001027 }
1028
John Fastabendc84d3242010-11-16 19:27:12 -08001029 /* disarm tx queues that have received xoff frames */
1030 for (i = 0; i < adapter->num_tx_queues; i++) {
1031 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendc84d3242010-11-16 19:27:12 -08001032
Parikh, Neerav2afaa002012-09-27 12:02:22 +00001033 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -08001034 if (xoff[tc])
1035 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
1036 }
1037}
1038
1039static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
1040{
Alexander Duyck7d7ce682012-02-08 07:50:51 +00001041 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -08001042}
1043
1044static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
1045{
John Fastabend2a47fa42013-11-06 09:54:52 -08001046 struct ixgbe_adapter *adapter;
1047 struct ixgbe_hw *hw;
1048 u32 head, tail;
John Fastabendc84d3242010-11-16 19:27:12 -08001049
John Fastabend2a47fa42013-11-06 09:54:52 -08001050 if (ring->l2_accel_priv)
1051 adapter = ring->l2_accel_priv->real_adapter;
1052 else
1053 adapter = netdev_priv(ring->netdev);
1054
1055 hw = &adapter->hw;
1056 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
1057 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
John Fastabendc84d3242010-11-16 19:27:12 -08001058
1059 if (head != tail)
1060 return (head < tail) ?
1061 tail - head : (tail + ring->count - head);
1062
1063 return 0;
1064}
1065
1066static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
1067{
1068 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
1069 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
1070 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
John Fastabendc84d3242010-11-16 19:27:12 -08001071
1072 clear_check_for_tx_hang(tx_ring);
1073
1074 /*
1075 * Check for a hung queue, but be thorough. This verifies
1076 * that a transmit has been completed since the previous
1077 * check AND there is at least one packet pending. The
1078 * ARMED bit is set to indicate a potential hang. The
1079 * bit is cleared if a pause frame is received to remove
1080 * false hang detection due to PFC or 802.3x frames. By
1081 * requiring this to fail twice we avoid races with
1082 * pfc clearing the ARMED bit and conditions where we
1083 * run the check_tx_hang logic with a transmit completion
1084 * pending but without time to complete it yet.
1085 */
Mark Rustade90dd262014-07-22 06:51:08 +00001086 if (tx_done_old == tx_done && tx_pending)
John Fastabendc84d3242010-11-16 19:27:12 -08001087 /* make sure it is true for two checks in a row */
Mark Rustade90dd262014-07-22 06:51:08 +00001088 return test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
1089 &tx_ring->state);
1090 /* update completed stats and continue */
1091 tx_ring->tx_stats.tx_done_old = tx_done;
1092 /* reset the countdown */
1093 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
John Fastabendc84d3242010-11-16 19:27:12 -08001094
Mark Rustade90dd262014-07-22 06:51:08 +00001095 return false;
Auke Kok9a799d72007-09-15 14:07:45 -07001096}
1097
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001098/**
1099 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
1100 * @adapter: driver private struct
1101 **/
1102static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
1103{
1104
1105 /* Do the reset outside of interrupt context */
1106 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
Emil Tantilov57ca2a42016-07-29 14:46:31 -07001107 set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
Jacob Keller12ff3f32012-12-01 07:57:17 +00001108 e_warn(drv, "initiating reset due to tx timeout\n");
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001109 ixgbe_service_event_schedule(adapter);
1110 }
1111}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001112
Auke Kok9a799d72007-09-15 14:07:45 -07001113/**
Rostislav Pehlivanovc04f90e2016-01-27 18:33:30 +00001114 * ixgbe_tx_maxrate - callback to set the maximum per-queue bitrate
1115 **/
1116static int ixgbe_tx_maxrate(struct net_device *netdev,
1117 int queue_index, u32 maxrate)
1118{
1119 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1120 struct ixgbe_hw *hw = &adapter->hw;
1121 u32 bcnrc_val = ixgbe_link_mbps(adapter);
1122
1123 if (!maxrate)
1124 return 0;
1125
1126 /* Calculate the rate factor values to set */
1127 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1128 bcnrc_val /= maxrate;
1129
1130 /* clear everything but the rate factor */
1131 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1132 IXGBE_RTTBCNRC_RF_DEC_MASK;
1133
1134 /* enable the rate scheduler */
1135 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
1136
1137 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_index);
1138 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1139
1140 return 0;
1141}
1142
1143/**
Auke Kok9a799d72007-09-15 14:07:45 -07001144 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +00001145 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001146 * @tx_ring: tx ring to clean
Alexander Duyck8220bbc2016-03-07 09:30:09 -08001147 * @napi_budget: Used to determine if we are in netpoll
Auke Kok9a799d72007-09-15 14:07:45 -07001148 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +00001149static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Jesper Dangaard Brouera3a87492016-02-08 13:15:09 +01001150 struct ixgbe_ring *tx_ring, int napi_budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001151{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001152 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001153 struct ixgbe_tx_buffer *tx_buffer;
1154 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07001155 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +00001156 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +00001157 unsigned int i = tx_ring->next_to_clean;
1158
1159 if (test_bit(__IXGBE_DOWN, &adapter->state))
1160 return true;
Auke Kok9a799d72007-09-15 14:07:45 -07001161
Alexander Duyckd3d00232011-07-15 02:31:25 +00001162 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +00001163 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +00001164 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001165
Alexander Duyck729739b2012-02-08 07:51:06 +00001166 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001167 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -07001168
Alexander Duyckd3d00232011-07-15 02:31:25 +00001169 /* if next_to_watch is not set then there is no work pending */
1170 if (!eop_desc)
1171 break;
1172
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001173 /* prevent any other reads prior to eop_desc */
Alexander Duyck7e63bf42013-01-08 07:00:58 +00001174 read_barrier_depends();
Alexander Duyck7f83a9e2012-02-08 07:49:23 +00001175
Alexander Duyckd3d00232011-07-15 02:31:25 +00001176 /* if DD is not set pending work has not been completed */
1177 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
1178 break;
1179
Alexander Duyckd3d00232011-07-15 02:31:25 +00001180 /* clear next_to_watch to prevent false hangs */
1181 tx_buffer->next_to_watch = NULL;
1182
Alexander Duyck091a6242012-02-08 07:51:01 +00001183 /* update the statistics for this packet */
1184 total_bytes += tx_buffer->bytecount;
1185 total_packets += tx_buffer->gso_segs;
1186
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001187 /* free the skb */
Jesper Dangaard Brouera3a87492016-02-08 13:15:09 +01001188 napi_consume_skb(tx_buffer->skb, napi_budget);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001189
Alexander Duyck729739b2012-02-08 07:51:06 +00001190 /* unmap skb header data */
1191 dma_unmap_single(tx_ring->dev,
1192 dma_unmap_addr(tx_buffer, dma),
1193 dma_unmap_len(tx_buffer, len),
1194 DMA_TO_DEVICE);
1195
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001196 /* clear tx_buffer data */
1197 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +00001198 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00001199
Alexander Duyck729739b2012-02-08 07:51:06 +00001200 /* unmap remaining buffers */
1201 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00001202 tx_buffer++;
1203 tx_desc++;
1204 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00001205 if (unlikely(!i)) {
1206 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001207 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +00001208 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00001209 }
1210
Alexander Duyck729739b2012-02-08 07:51:06 +00001211 /* unmap any remaining paged data */
1212 if (dma_unmap_len(tx_buffer, len)) {
1213 dma_unmap_page(tx_ring->dev,
1214 dma_unmap_addr(tx_buffer, dma),
1215 dma_unmap_len(tx_buffer, len),
1216 DMA_TO_DEVICE);
1217 dma_unmap_len_set(tx_buffer, len, 0);
1218 }
1219 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08001220
Alexander Duyck729739b2012-02-08 07:51:06 +00001221 /* move us one more past the eop_desc for start of next pkt */
1222 tx_buffer++;
1223 tx_desc++;
1224 i++;
1225 if (unlikely(!i)) {
1226 i -= tx_ring->count;
1227 tx_buffer = tx_ring->tx_buffer_info;
1228 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
1229 }
1230
1231 /* issue prefetch for next Tx descriptor */
1232 prefetch(tx_desc);
1233
1234 /* update budget accounting */
1235 budget--;
1236 } while (likely(budget));
1237
1238 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07001239 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001240 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -08001241 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +00001242 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +00001243 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001244 q_vector->tx.total_bytes += total_bytes;
1245 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -08001246
John Fastabendc84d3242010-11-16 19:27:12 -08001247 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -08001248 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -08001249 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -08001250 e_err(drv, "Detected Tx Unit Hang\n"
1251 " Tx Queue <%d>\n"
1252 " TDH, TDT <%x>, <%x>\n"
1253 " next_to_use <%x>\n"
1254 " next_to_clean <%x>\n"
1255 "tx_buffer_info[next_to_clean]\n"
1256 " time_stamp <%lx>\n"
1257 " jiffies <%lx>\n",
1258 tx_ring->queue_index,
1259 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
1260 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +00001261 tx_ring->next_to_use, i,
1262 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -08001263
1264 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1265
1266 e_info(probe,
1267 "tx hang %d detected on queue %d, resetting adapter\n",
1268 adapter->tx_timeout_count + 1, tx_ring->queue_index);
1269
1270 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00001271 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -08001272
1273 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +00001274 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -08001275 }
Auke Kok9a799d72007-09-15 14:07:45 -07001276
Alexander Duyckb2d96e02012-02-07 08:14:33 +00001277 netdev_tx_completed_queue(txring_txq(tx_ring),
1278 total_packets, total_bytes);
1279
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001280#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +00001281 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001282 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001283 /* Make sure that anybody stopping the queue after this
1284 * sees the new next_to_clean.
1285 */
1286 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +00001287 if (__netif_subqueue_stopped(tx_ring->netdev,
1288 tx_ring->queue_index)
1289 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
1290 netif_wake_subqueue(tx_ring->netdev,
1291 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08001292 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08001293 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08001294 }
Auke Kok9a799d72007-09-15 14:07:45 -07001295
Alexander Duyck59224552011-08-31 00:01:06 +00001296 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001297}
1298
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001299#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001300static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001301 struct ixgbe_ring *tx_ring,
1302 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001303{
Don Skidmoreee5f7842009-11-06 12:56:20 +00001304 struct ixgbe_hw *hw = &adapter->hw;
Mark Rustad9de76052015-08-08 16:27:41 -07001305 u32 txctrl = 0;
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001306 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001307
Mark Rustad9de76052015-08-08 16:27:41 -07001308 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1309 txctrl = dca3_get_tag(tx_ring->dev, cpu);
1310
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001311 switch (hw->mac.type) {
1312 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001313 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001314 break;
1315 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001316 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001317 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
1318 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
1319 break;
1320 default:
1321 /* for unknown hardware do not write register */
1322 return;
1323 }
1324
1325 /*
1326 * We can enable relaxed ordering for reads, but not writes when
1327 * DCA is enabled. This is due to a known issue in some chipsets
1328 * which will cause the DCA tag to be cleared.
1329 */
1330 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1331 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
1332 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
1333
1334 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
1335}
1336
1337static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
1338 struct ixgbe_ring *rx_ring,
1339 int cpu)
1340{
1341 struct ixgbe_hw *hw = &adapter->hw;
Mark Rustad9de76052015-08-08 16:27:41 -07001342 u32 rxctrl = 0;
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001343 u8 reg_idx = rx_ring->reg_idx;
1344
Mark Rustad9de76052015-08-08 16:27:41 -07001345 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1346 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001347
1348 switch (hw->mac.type) {
1349 case ixgbe_mac_82599EB:
1350 case ixgbe_mac_X540:
1351 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001352 break;
1353 default:
1354 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001355 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001356
1357 /*
1358 * We can enable relaxed ordering for reads, but not writes when
1359 * DCA is enabled. This is due to a known issue in some chipsets
1360 * which will cause the DCA tag to be cleared.
1361 */
1362 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
Mark Rustad9de76052015-08-08 16:27:41 -07001363 IXGBE_DCA_RXCTRL_DATA_DCA_EN |
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001364 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
1365
1366 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001367}
1368
1369static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
1370{
1371 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001372 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001373 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001374
1375 if (q_vector->cpu == cpu)
1376 goto out_no_update;
1377
Alexander Duycka5579282012-02-08 07:50:04 +00001378 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001379 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001380
Alexander Duycka5579282012-02-08 07:50:04 +00001381 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001382 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001383
1384 q_vector->cpu = cpu;
1385out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001386 put_cpu();
1387}
1388
1389static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1390{
1391 int i;
1392
Alexander Duycke35ec122009-05-21 13:07:12 +00001393 /* always use CB2 mode, difference is masked in the CB driver */
Mark Rustad9de76052015-08-08 16:27:41 -07001394 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1395 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1396 IXGBE_DCA_CTRL_DCA_MODE_CB2);
1397 else
1398 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1399 IXGBE_DCA_CTRL_DCA_DISABLE);
Alexander Duycke35ec122009-05-21 13:07:12 +00001400
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001401 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001402 adapter->q_vector[i]->cpu = -1;
1403 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001404 }
1405}
1406
1407static int __ixgbe_notify_dca(struct device *dev, void *data)
1408{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001409 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001410 unsigned long event = *(unsigned long *)data;
1411
Don Skidmore2a72c312011-07-20 02:27:05 +00001412 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001413 return 0;
1414
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001415 switch (event) {
1416 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001417 /* if we're already enabled, don't do it again */
1418 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1419 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001420 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001421 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Mark Rustad9de76052015-08-08 16:27:41 -07001422 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1423 IXGBE_DCA_CTRL_DCA_MODE_CB2);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001424 break;
1425 }
1426 /* Fall Through since DCA is disabled. */
1427 case DCA_PROVIDER_REMOVE:
1428 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1429 dca_remove_requester(dev);
1430 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
Mark Rustad9de76052015-08-08 16:27:41 -07001431 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1432 IXGBE_DCA_CTRL_DCA_DISABLE);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001433 }
1434 break;
1435 }
1436
Denis V. Lunev652f0932008-03-27 14:39:17 +03001437 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001438}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001439
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001440#endif /* CONFIG_IXGBE_DCA */
Fan Du7edda4b82015-04-29 10:57:39 +08001441
1442#define IXGBE_RSS_L4_TYPES_MASK \
1443 ((1ul << IXGBE_RXDADV_RSSTYPE_IPV4_TCP) | \
1444 (1ul << IXGBE_RXDADV_RSSTYPE_IPV4_UDP) | \
1445 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_TCP) | \
1446 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_UDP))
1447
Alexander Duyck8a0da212012-01-31 02:59:49 +00001448static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1449 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001450 struct sk_buff *skb)
1451{
Fan Du7edda4b82015-04-29 10:57:39 +08001452 u16 rss_type;
1453
1454 if (!(ring->netdev->features & NETIF_F_RXHASH))
1455 return;
1456
1457 rss_type = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.pkt_info) &
1458 IXGBE_RXDADV_RSSTYPE_MASK;
1459
1460 if (!rss_type)
1461 return;
1462
1463 skb_set_hash(skb, le32_to_cpu(rx_desc->wb.lower.hi_dword.rss),
1464 (IXGBE_RSS_L4_TYPES_MASK & (1ul << rss_type)) ?
1465 PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001466}
1467
Alexander Duyckf8003262012-03-03 02:35:52 +00001468#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001469/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001470 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001471 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001472 * @rx_desc: advanced rx descriptor
1473 *
1474 * Returns : true if it is FCoE pkt
1475 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001476static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001477 union ixgbe_adv_rx_desc *rx_desc)
1478{
1479 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1480
Alexander Duyck57efd442012-06-25 21:54:46 +00001481 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001482 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1483 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1484 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1485}
1486
Alexander Duyckf8003262012-03-03 02:35:52 +00001487#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001488/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001489 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001490 * @ring: structure containing ring specific data
1491 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001492 * @skb: skb currently being received and modified
1493 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001494static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001495 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001496 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001497{
Don Skidmore3f207802014-12-23 07:40:34 +00001498 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore3f207802014-12-23 07:40:34 +00001499 bool encap_pkt = false;
1500
Alexander Duyck8a0da212012-01-31 02:59:49 +00001501 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001502
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001503 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001504 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001505 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001506
Emil Tantilova21d0822016-08-10 11:19:23 -07001507 /* check for VXLAN and Geneve packets */
1508 if (pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_VXLAN)) {
Don Skidmore3f207802014-12-23 07:40:34 +00001509 encap_pkt = true;
1510 skb->encapsulation = 1;
Don Skidmore3f207802014-12-23 07:40:34 +00001511 }
1512
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001513 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001514 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1515 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001516 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001517 return;
1518 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001519
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001520 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001521 return;
1522
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001523 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001524 /*
1525 * 82599 errata, UDP frames with a 0 checksum can be marked as
1526 * checksum errors.
1527 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001528 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1529 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001530 return;
1531
Alexander Duyck8a0da212012-01-31 02:59:49 +00001532 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001533 return;
1534 }
1535
Auke Kok9a799d72007-09-15 14:07:45 -07001536 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001537 skb->ip_summed = CHECKSUM_UNNECESSARY;
Don Skidmore3f207802014-12-23 07:40:34 +00001538 if (encap_pkt) {
1539 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_OUTERIPCS))
1540 return;
1541
1542 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_OUTERIPER)) {
Mark Rustadd4692512015-12-04 11:26:43 -08001543 skb->ip_summed = CHECKSUM_NONE;
Don Skidmore3f207802014-12-23 07:40:34 +00001544 return;
1545 }
1546 /* If we checked the outer header let the stack know */
1547 skb->csum_level = 1;
1548 }
Auke Kok9a799d72007-09-15 14:07:45 -07001549}
1550
Alexander Duyckf990b792012-01-31 02:59:34 +00001551static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1552 struct ixgbe_rx_buffer *bi)
1553{
1554 struct page *page = bi->page;
Alexander Duyck18cb6522014-11-14 00:56:29 +00001555 dma_addr_t dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001556
Alexander Duyckf8003262012-03-03 02:35:52 +00001557 /* since we are recycling buffers we should seldom need to alloc */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001558 if (likely(page))
Alexander Duyckf990b792012-01-31 02:59:34 +00001559 return true;
1560
Alexander Duyckf8003262012-03-03 02:35:52 +00001561 /* alloc new page for storage */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001562 page = dev_alloc_pages(ixgbe_rx_pg_order(rx_ring));
1563 if (unlikely(!page)) {
1564 rx_ring->rx_stats.alloc_rx_page_failed++;
1565 return false;
Alexander Duyckf990b792012-01-31 02:59:34 +00001566 }
1567
Alexander Duyckf8003262012-03-03 02:35:52 +00001568 /* map page for use */
1569 dma = dma_map_page(rx_ring->dev, page, 0,
1570 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001571
Alexander Duyckf8003262012-03-03 02:35:52 +00001572 /*
1573 * if mapping failed free memory back to system since
1574 * there isn't much point in holding memory we can't use
1575 */
1576 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001577 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001578
Alexander Duyckf990b792012-01-31 02:59:34 +00001579 rx_ring->rx_stats.alloc_rx_page_failed++;
1580 return false;
1581 }
1582
Alexander Duyckf8003262012-03-03 02:35:52 +00001583 bi->dma = dma;
Alexander Duyck18cb6522014-11-14 00:56:29 +00001584 bi->page = page;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001585 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001586
Alexander Duyckf990b792012-01-31 02:59:34 +00001587 return true;
1588}
1589
Auke Kok9a799d72007-09-15 14:07:45 -07001590/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001591 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001592 * @rx_ring: ring to place buffers on
1593 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001594 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001595void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001596{
Auke Kok9a799d72007-09-15 14:07:45 -07001597 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001598 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001599 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001600
Alexander Duyckf8003262012-03-03 02:35:52 +00001601 /* nothing to do */
1602 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001603 return;
1604
Alexander Duycke4f74022012-01-31 02:59:44 +00001605 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001606 bi = &rx_ring->rx_buffer_info[i];
1607 i -= rx_ring->count;
1608
Alexander Duyckf8003262012-03-03 02:35:52 +00001609 do {
1610 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001611 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001612
Alexander Duyckf8003262012-03-03 02:35:52 +00001613 /*
1614 * Refresh the desc even if buffer_addrs didn't change
1615 * because each write-back erases this info.
1616 */
1617 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001618
Alexander Duyckf990b792012-01-31 02:59:34 +00001619 rx_desc++;
1620 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001621 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001622 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001623 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001624 bi = rx_ring->rx_buffer_info;
1625 i -= rx_ring->count;
1626 }
1627
Alexander Duyck18cb6522014-11-14 00:56:29 +00001628 /* clear the status bits for the next_to_use descriptor */
1629 rx_desc->wb.upper.status_error = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001630
1631 cleaned_count--;
1632 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001633
Alexander Duyckf990b792012-01-31 02:59:34 +00001634 i += rx_ring->count;
1635
Alexander Duyckad435ec2014-11-14 00:56:35 +00001636 if (rx_ring->next_to_use != i) {
1637 rx_ring->next_to_use = i;
1638
1639 /* update next to alloc since we have filled the ring */
1640 rx_ring->next_to_alloc = i;
1641
1642 /* Force memory writes to complete before letting h/w
1643 * know there are new descriptors to fetch. (Only
1644 * applicable for weak-ordered memory model archs,
1645 * such as IA-64).
1646 */
1647 wmb();
1648 writel(i, rx_ring->tail);
1649 }
Auke Kok9a799d72007-09-15 14:07:45 -07001650}
1651
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001652static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1653 struct sk_buff *skb)
1654{
Alexander Duyckf8003262012-03-03 02:35:52 +00001655 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001656
1657 /* set gso_size to avoid messing up TCP MSS */
1658 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1659 IXGBE_CB(skb)->append_cnt);
Alexander Duyck96be80a2013-02-12 09:45:44 +00001660 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001661}
1662
1663static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1664 struct sk_buff *skb)
1665{
1666 /* if append_cnt is 0 then frame is not RSC */
1667 if (!IXGBE_CB(skb)->append_cnt)
1668 return;
1669
1670 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1671 rx_ring->rx_stats.rsc_flush++;
1672
1673 ixgbe_set_rsc_gso_size(rx_ring, skb);
1674
1675 /* gso_size is computed using append_cnt so always clear it last */
1676 IXGBE_CB(skb)->append_cnt = 0;
1677}
1678
Alexander Duyck8a0da212012-01-31 02:59:49 +00001679/**
1680 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1681 * @rx_ring: rx descriptor ring packet is being transacted on
1682 * @rx_desc: pointer to the EOP Rx descriptor
1683 * @skb: pointer to current skb being populated
1684 *
1685 * This function checks the ring, descriptor, and packet information in
1686 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1687 * other fields within the skb.
1688 **/
1689static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1690 union ixgbe_adv_rx_desc *rx_desc,
1691 struct sk_buff *skb)
1692{
John Fastabend43e95f12012-05-15 06:12:17 +00001693 struct net_device *dev = rx_ring->netdev;
Mark Rustada9763f32015-10-27 09:58:07 -07001694 u32 flags = rx_ring->q_vector->adapter->flags;
John Fastabend43e95f12012-05-15 06:12:17 +00001695
Alexander Duyck8a0da212012-01-31 02:59:49 +00001696 ixgbe_update_rsc_stats(rx_ring, skb);
1697
1698 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1699
1700 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1701
Mark Rustada9763f32015-10-27 09:58:07 -07001702 if (unlikely(flags & IXGBE_FLAG_RX_HWTSTAMP_ENABLED))
1703 ixgbe_ptp_rx_hwtstamp(rx_ring, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001704
Patrick McHardyf6469682013-04-19 02:04:27 +00001705 if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
John Fastabend43e95f12012-05-15 06:12:17 +00001706 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001707 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001708 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001709 }
1710
1711 skb_record_rx_queue(skb, rx_ring->queue_index);
1712
John Fastabend43e95f12012-05-15 06:12:17 +00001713 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001714}
1715
1716static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1717 struct sk_buff *skb)
1718{
Eric Dumazet93f93a42015-11-18 06:30:59 -08001719 skb_mark_napi_id(skb, &q_vector->napi);
Jacob Kellerb4640032013-10-01 04:33:54 -07001720 if (ixgbe_qv_busy_polling(q_vector))
Eliezer Tamir5a85e732013-06-10 11:40:20 +03001721 netif_receive_skb(skb);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001722 else
Alexander Duyck856f6062015-02-25 17:45:54 +00001723 napi_gro_receive(&q_vector->napi, skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001724}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001725
Alexander Duyckf8003262012-03-03 02:35:52 +00001726/**
1727 * ixgbe_is_non_eop - process handling of non-EOP buffers
1728 * @rx_ring: Rx ring being processed
1729 * @rx_desc: Rx descriptor for current buffer
1730 * @skb: Current socket buffer containing buffer in progress
1731 *
1732 * This function updates next to clean. If the buffer is an EOP buffer
1733 * this function exits returning false, otherwise it will place the
1734 * sk_buff in the next buffer to be chained and return true indicating
1735 * that this is in fact a non-EOP buffer.
1736 **/
1737static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1738 union ixgbe_adv_rx_desc *rx_desc,
1739 struct sk_buff *skb)
1740{
1741 u32 ntc = rx_ring->next_to_clean + 1;
1742
1743 /* fetch, update, and store next to clean */
1744 ntc = (ntc < rx_ring->count) ? ntc : 0;
1745 rx_ring->next_to_clean = ntc;
1746
1747 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1748
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001749 /* update RSC append count if present */
1750 if (ring_is_rsc_enabled(rx_ring)) {
1751 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1752 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1753
1754 if (unlikely(rsc_enabled)) {
1755 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1756
1757 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1758 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1759
1760 /* update ntc based on RSC value */
1761 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1762 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1763 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1764 }
1765 }
1766
1767 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001768 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1769 return false;
1770
Alexander Duyckf8003262012-03-03 02:35:52 +00001771 /* place skb in next buffer to be received */
1772 rx_ring->rx_buffer_info[ntc].skb = skb;
1773 rx_ring->rx_stats.non_eop_descs++;
1774
1775 return true;
1776}
1777
1778/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001779 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1780 * @rx_ring: rx descriptor ring packet is being transacted on
1781 * @skb: pointer to current skb being adjusted
1782 *
1783 * This function is an ixgbe specific version of __pskb_pull_tail. The
1784 * main difference between this version and the original function is that
1785 * this function can make several assumptions about the state of things
1786 * that allow for significant optimizations versus the standard function.
1787 * As a result we can do things like drop a frag and maintain an accurate
1788 * truesize for the skb.
1789 */
1790static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1791 struct sk_buff *skb)
1792{
1793 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1794 unsigned char *va;
1795 unsigned int pull_len;
1796
1797 /*
1798 * it is valid to use page_address instead of kmap since we are
1799 * working with pages allocated out of the lomem pool per
1800 * alloc_page(GFP_ATOMIC)
1801 */
1802 va = skb_frag_address(frag);
1803
1804 /*
1805 * we need the header to contain the greater of either ETH_HLEN or
1806 * 60 bytes if the skb->len is less than 60 for skb_pad.
1807 */
Alexander Duyck8496e3382014-09-05 19:22:18 -04001808 pull_len = eth_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001809
1810 /* align pull length to size of long to optimize memcpy performance */
1811 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1812
1813 /* update all of the pointers */
1814 skb_frag_size_sub(frag, pull_len);
1815 frag->page_offset += pull_len;
1816 skb->data_len -= pull_len;
1817 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001818}
1819
1820/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001821 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1822 * @rx_ring: rx descriptor ring packet is being transacted on
1823 * @skb: pointer to current skb being updated
1824 *
1825 * This function provides a basic DMA sync up for the first fragment of an
1826 * skb. The reason for doing this is that the first fragment cannot be
1827 * unmapped until we have reached the end of packet descriptor for a buffer
1828 * chain.
1829 */
1830static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1831 struct sk_buff *skb)
1832{
1833 /* if the page was released unmap it, else just sync our portion */
1834 if (unlikely(IXGBE_CB(skb)->page_released)) {
1835 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1836 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1837 IXGBE_CB(skb)->page_released = false;
1838 } else {
1839 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1840
1841 dma_sync_single_range_for_cpu(rx_ring->dev,
1842 IXGBE_CB(skb)->dma,
1843 frag->page_offset,
1844 ixgbe_rx_bufsz(rx_ring),
1845 DMA_FROM_DEVICE);
1846 }
1847 IXGBE_CB(skb)->dma = 0;
1848}
1849
1850/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001851 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1852 * @rx_ring: rx descriptor ring packet is being transacted on
1853 * @rx_desc: pointer to the EOP Rx descriptor
1854 * @skb: pointer to current skb being fixed
1855 *
1856 * Check for corrupted packet headers caused by senders on the local L2
1857 * embedded NIC switch not setting up their Tx Descriptors right. These
1858 * should be very rare.
1859 *
1860 * Also address the case where we are pulling data in on pages only
1861 * and as such no data is present in the skb header.
1862 *
1863 * In addition if skb is not at least 60 bytes we need to pad it so that
1864 * it is large enough to qualify as a valid Ethernet frame.
1865 *
1866 * Returns true if an error was encountered and skb was freed.
1867 **/
1868static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1869 union ixgbe_adv_rx_desc *rx_desc,
1870 struct sk_buff *skb)
1871{
Alexander Duyckf8003262012-03-03 02:35:52 +00001872 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001873
1874 /* verify that the packet does not have any known errors */
1875 if (unlikely(ixgbe_test_staterr(rx_desc,
1876 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1877 !(netdev->features & NETIF_F_RXALL))) {
1878 dev_kfree_skb_any(skb);
1879 return true;
1880 }
1881
Alexander Duyck19861ce2012-07-20 08:08:33 +00001882 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001883 if (skb_is_nonlinear(skb))
1884 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001885
Alexander Duyck57efd442012-06-25 21:54:46 +00001886#ifdef IXGBE_FCOE
1887 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1888 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1889 return false;
1890
1891#endif
Alexander Duycka94d9e22014-12-03 08:17:39 -08001892 /* if eth_skb_pad returns an error the skb was freed */
1893 if (eth_skb_pad(skb))
1894 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001895
1896 return false;
1897}
1898
1899/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001900 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1901 * @rx_ring: rx descriptor ring to store buffers on
1902 * @old_buff: donor buffer to have page reused
1903 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001904 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001905 **/
1906static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1907 struct ixgbe_rx_buffer *old_buff)
1908{
1909 struct ixgbe_rx_buffer *new_buff;
1910 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001911
1912 new_buff = &rx_ring->rx_buffer_info[nta];
1913
1914 /* update, and store next to alloc */
1915 nta++;
1916 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1917
1918 /* transfer page from old buffer to new buffer */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001919 *new_buff = *old_buff;
Alexander Duyckf8003262012-03-03 02:35:52 +00001920
1921 /* sync the buffer for use by the device */
1922 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001923 new_buff->page_offset,
1924 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001925 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001926}
1927
Alexander Duyck18cb6522014-11-14 00:56:29 +00001928static inline bool ixgbe_page_is_reserved(struct page *page)
1929{
Michal Hocko2f064f32015-08-21 14:11:51 -07001930 return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page);
Alexander Duyck18cb6522014-11-14 00:56:29 +00001931}
1932
Alexander Duyckf8003262012-03-03 02:35:52 +00001933/**
1934 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1935 * @rx_ring: rx descriptor ring to transact packets on
1936 * @rx_buffer: buffer containing page to add
1937 * @rx_desc: descriptor containing length of buffer written by hardware
1938 * @skb: sk_buff to place the data into
1939 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001940 * This function will add the data contained in rx_buffer->page to the skb.
1941 * This is done either through a direct copy if the data in the buffer is
1942 * less than the skb header size, otherwise it will just attach the page as
1943 * a frag to the skb.
1944 *
1945 * The function will then update the page offset if necessary and return
1946 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001947 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001948static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001949 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001950 union ixgbe_adv_rx_desc *rx_desc,
1951 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001952{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001953 struct page *page = rx_buffer->page;
1954 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001955#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001956 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001957#else
1958 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1959 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1960 ixgbe_rx_bufsz(rx_ring);
1961#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001962
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001963 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1964 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1965
1966 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1967
Alexander Duyck18cb6522014-11-14 00:56:29 +00001968 /* page is not reserved, we can reuse buffer as-is */
1969 if (likely(!ixgbe_page_is_reserved(page)))
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001970 return true;
1971
1972 /* this page cannot be reused so discard it */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001973 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001974 return false;
1975 }
1976
Alexander Duyck0549ae22012-07-20 08:08:18 +00001977 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1978 rx_buffer->page_offset, size, truesize);
1979
Alexander Duyck09816fb2012-07-20 08:08:23 +00001980 /* avoid re-using remote pages */
Alexander Duyck18cb6522014-11-14 00:56:29 +00001981 if (unlikely(ixgbe_page_is_reserved(page)))
Alexander Duyck09816fb2012-07-20 08:08:23 +00001982 return false;
1983
1984#if (PAGE_SIZE < 8192)
1985 /* if we are only owner of page we can reuse it */
1986 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001987 return false;
1988
1989 /* flip page offset to other buffer */
1990 rx_buffer->page_offset ^= truesize;
Alexander Duyck09816fb2012-07-20 08:08:23 +00001991#else
1992 /* move offset up to the next cache line */
1993 rx_buffer->page_offset += truesize;
1994
1995 if (rx_buffer->page_offset > last_offset)
1996 return false;
Alexander Duyck09816fb2012-07-20 08:08:23 +00001997#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001998
Alexander Duyck18cb6522014-11-14 00:56:29 +00001999 /* Even if we own the page, we are not allowed to use atomic_set()
2000 * This would break get_page_unless_zero() users.
2001 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -07002002 page_ref_inc(page);
Alexander Duyck18cb6522014-11-14 00:56:29 +00002003
Alexander Duyck0549ae22012-07-20 08:08:18 +00002004 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00002005}
2006
Alexander Duyck18806c92012-07-20 08:08:44 +00002007static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
2008 union ixgbe_adv_rx_desc *rx_desc)
2009{
2010 struct ixgbe_rx_buffer *rx_buffer;
2011 struct sk_buff *skb;
2012 struct page *page;
2013
2014 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
2015 page = rx_buffer->page;
2016 prefetchw(page);
2017
2018 skb = rx_buffer->skb;
2019
2020 if (likely(!skb)) {
2021 void *page_addr = page_address(page) +
2022 rx_buffer->page_offset;
2023
2024 /* prefetch first cache line of first page */
2025 prefetch(page_addr);
2026#if L1_CACHE_BYTES < 128
2027 prefetch(page_addr + L1_CACHE_BYTES);
2028#endif
2029
2030 /* allocate a skb to store the frags */
Alexander Duyck67fd8932014-12-09 19:40:56 -08002031 skb = napi_alloc_skb(&rx_ring->q_vector->napi,
2032 IXGBE_RX_HDR_SIZE);
Alexander Duyck18806c92012-07-20 08:08:44 +00002033 if (unlikely(!skb)) {
2034 rx_ring->rx_stats.alloc_rx_buff_failed++;
2035 return NULL;
2036 }
2037
2038 /*
2039 * we will be copying header into skb->data in
2040 * pskb_may_pull so it is in our interest to prefetch
2041 * it now to avoid a possible cache miss
2042 */
2043 prefetchw(skb->data);
2044
2045 /*
2046 * Delay unmapping of the first packet. It carries the
2047 * header information, HW may still access the header
2048 * after the writeback. Only unmap it when EOP is
2049 * reached
2050 */
2051 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
2052 goto dma_sync;
2053
2054 IXGBE_CB(skb)->dma = rx_buffer->dma;
2055 } else {
2056 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
2057 ixgbe_dma_sync_frag(rx_ring, skb);
2058
2059dma_sync:
2060 /* we are reusing so sync this buffer for CPU use */
2061 dma_sync_single_range_for_cpu(rx_ring->dev,
2062 rx_buffer->dma,
2063 rx_buffer->page_offset,
2064 ixgbe_rx_bufsz(rx_ring),
2065 DMA_FROM_DEVICE);
Alexander Duyck18cb6522014-11-14 00:56:29 +00002066
2067 rx_buffer->skb = NULL;
Alexander Duyck18806c92012-07-20 08:08:44 +00002068 }
2069
2070 /* pull page into skb */
2071 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
2072 /* hand second half of page back to the ring */
2073 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
2074 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
2075 /* the page has been released from the ring */
2076 IXGBE_CB(skb)->page_released = true;
2077 } else {
2078 /* we are not reusing the buffer so unmap it */
2079 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
2080 ixgbe_rx_pg_size(rx_ring),
2081 DMA_FROM_DEVICE);
2082 }
2083
2084 /* clear contents of buffer_info */
Alexander Duyck18806c92012-07-20 08:08:44 +00002085 rx_buffer->page = NULL;
2086
2087 return skb;
Alexander Duyckf8003262012-03-03 02:35:52 +00002088}
2089
2090/**
2091 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
2092 * @q_vector: structure containing interrupt and ring information
2093 * @rx_ring: rx descriptor ring to transact packets on
2094 * @budget: Total limit on number of packets to process
2095 *
2096 * This function provides a "bounce buffer" approach to Rx interrupt
2097 * processing. The advantage to this is that on systems that have
2098 * expensive overhead for IOMMU access this provides a means of avoiding
2099 * it by maintaining the mapping of the page to the syste.
2100 *
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002101 * Returns amount of work completed
Alexander Duyckf8003262012-03-03 02:35:52 +00002102 **/
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002103static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002104 struct ixgbe_ring *rx_ring,
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002105 const int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07002106{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002107 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00002108#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00002109 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00002110 int ddp_bytes;
2111 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00002112#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00002113 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07002114
Eric W. Biedermanfdabfc8a2014-03-14 18:00:41 -07002115 while (likely(total_rx_packets < budget)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00002116 union ixgbe_adv_rx_desc *rx_desc;
2117 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07002118
Alexander Duyckf8003262012-03-03 02:35:52 +00002119 /* return some buffers to hardware, one at a time is too slow */
2120 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
2121 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2122 cleaned_count = 0;
2123 }
Auke Kok9a799d72007-09-15 14:07:45 -07002124
Alexander Duyck18806c92012-07-20 08:08:44 +00002125 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07002126
Alexander Duyck124b74c2014-12-11 15:02:28 -08002127 if (!rx_desc->wb.upper.status_error)
Alexander Duyckf8003262012-03-03 02:35:52 +00002128 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08002129
Alexander Duyck124b74c2014-12-11 15:02:28 -08002130 /* This memory barrier is needed to keep us from reading
Alexander Duyckf8003262012-03-03 02:35:52 +00002131 * any other fields out of the rx_desc until we know the
Alexander Duyck124b74c2014-12-11 15:02:28 -08002132 * descriptor has been written back
Alexander Duyckf8003262012-03-03 02:35:52 +00002133 */
Alexander Duyck124b74c2014-12-11 15:02:28 -08002134 dma_rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07002135
Alexander Duyck18806c92012-07-20 08:08:44 +00002136 /* retrieve a buffer from the ring */
2137 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00002138
Alexander Duyck18806c92012-07-20 08:08:44 +00002139 /* exit if we failed to retrieve a buffer */
2140 if (!skb)
2141 break;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00002142
Auke Kok9a799d72007-09-15 14:07:45 -07002143 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002144
Alexander Duyckf8003262012-03-03 02:35:52 +00002145 /* place incomplete frames back on ring for completion */
2146 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
2147 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00002148
Alexander Duyckf8003262012-03-03 02:35:52 +00002149 /* verify the packet layout is correct */
2150 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
2151 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002152
2153 /* probably a little skewed due to removing CRC */
2154 total_rx_bytes += skb->len;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08002155
Alexander Duyck8a0da212012-01-31 02:59:49 +00002156 /* populate checksum, timestamp, VLAN, and protocol */
2157 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
2158
Yi Zou332d4a72009-05-13 13:11:53 +00002159#ifdef IXGBE_FCOE
2160 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00002161 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00002162 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00002163 /* include DDPed FCoE data */
2164 if (ddp_bytes > 0) {
2165 if (!mss) {
2166 mss = rx_ring->netdev->mtu -
2167 sizeof(struct fcoe_hdr) -
2168 sizeof(struct fc_frame_header) -
2169 sizeof(struct fcoe_crc_eof);
2170 if (mss > 512)
2171 mss &= ~511;
2172 }
2173 total_rx_bytes += ddp_bytes;
2174 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
2175 mss);
2176 }
David S. Miller823dcd22011-08-20 10:39:12 -07002177 if (!ddp_bytes) {
2178 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00002179 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07002180 }
Yi Zou3d8fd382009-06-08 14:38:44 +00002181 }
Alexander Duyckf8003262012-03-03 02:35:52 +00002182
Yi Zou332d4a72009-05-13 13:11:53 +00002183#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00002184 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07002185
Alexander Duyckf8003262012-03-03 02:35:52 +00002186 /* update budget accounting */
Alexander Duyckf4de00e2012-09-25 00:29:37 +00002187 total_rx_packets++;
Eric W. Biedermanfdabfc8a2014-03-14 18:00:41 -07002188 }
Auke Kok9a799d72007-09-15 14:07:45 -07002189
Alexander Duyckc267fc12010-11-16 19:27:00 -08002190 u64_stats_update_begin(&rx_ring->syncp);
2191 rx_ring->stats.packets += total_rx_packets;
2192 rx_ring->stats.bytes += total_rx_bytes;
2193 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00002194 q_vector->rx.total_packets += total_rx_packets;
2195 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002196
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002197 return total_rx_packets;
Auke Kok9a799d72007-09-15 14:07:45 -07002198}
2199
Cong Wange0d10952013-08-01 11:10:25 +08002200#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002201/* must be called with local_bh_disable()d */
2202static int ixgbe_low_latency_recv(struct napi_struct *napi)
2203{
2204 struct ixgbe_q_vector *q_vector =
2205 container_of(napi, struct ixgbe_q_vector, napi);
2206 struct ixgbe_adapter *adapter = q_vector->adapter;
2207 struct ixgbe_ring *ring;
2208 int found = 0;
2209
2210 if (test_bit(__IXGBE_DOWN, &adapter->state))
2211 return LL_FLUSH_FAILED;
2212
2213 if (!ixgbe_qv_lock_poll(q_vector))
2214 return LL_FLUSH_BUSY;
2215
2216 ixgbe_for_each_ring(ring, q_vector->rx) {
2217 found = ixgbe_clean_rx_irq(q_vector, ring, 4);
Jacob Kellerb4640032013-10-01 04:33:54 -07002218#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03002219 if (found)
2220 ring->stats.cleaned += found;
2221 else
2222 ring->stats.misses++;
2223#endif
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002224 if (found)
2225 break;
2226 }
2227
2228 ixgbe_qv_unlock_poll(q_vector);
2229
2230 return found;
2231}
Cong Wange0d10952013-08-01 11:10:25 +08002232#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002233
Auke Kok9a799d72007-09-15 14:07:45 -07002234/**
2235 * ixgbe_configure_msix - Configure MSI-X hardware
2236 * @adapter: board private structure
2237 *
2238 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
2239 * interrupts.
2240 **/
2241static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
2242{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002243 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002244 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002245 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07002246
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00002247 /* Populate MSIX to EITR Select */
2248 if (adapter->num_vfs > 32) {
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002249 u32 eitrsel = BIT(adapter->num_vfs - 32) - 1;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00002250 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2251 }
2252
Jesse Brandeburg4df10462009-03-13 22:15:31 +00002253 /*
2254 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002255 * corresponding register.
2256 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002257 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002258 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002259 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260
Alexander Duycka5579282012-02-08 07:50:04 +00002261 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002262 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263
Alexander Duycka5579282012-02-08 07:50:04 +00002264 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002265 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002266
Alexander Duyckfe49f042009-06-04 16:00:09 +00002267 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002268 }
2269
Alexander Duyckbd508172010-11-16 19:27:03 -08002270 switch (adapter->hw.mac.type) {
2271 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002272 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00002273 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002274 break;
2275 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002276 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002277 case ixgbe_mac_X550:
2278 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002279 case ixgbe_mac_x550em_a:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002280 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08002281 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08002282 default:
2283 break;
2284 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002285 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07002286
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07002287 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002288 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002289 mask &= ~(IXGBE_EIMS_OTHER |
2290 IXGBE_EIMS_MAILBOX |
2291 IXGBE_EIMS_LSC);
2292
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002293 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07002294}
2295
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002296enum latency_range {
2297 lowest_latency = 0,
2298 low_latency = 1,
2299 bulk_latency = 2,
2300 latency_invalid = 255
2301};
2302
2303/**
2304 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00002305 * @q_vector: structure containing interrupt and ring information
2306 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002307 *
2308 * Stores a new ITR value based on packets and byte
2309 * counts during the last interrupt. The advantage of per interrupt
2310 * computation is faster updates and more accurate ITR for the current
2311 * traffic pattern. Constants in this function were computed
2312 * based on theoretical maximum wire speed and thresholds were set based
2313 * on testing data as well as attempting to minimize response time
2314 * while increasing bulk throughput.
2315 * this functionality is controlled by the InterruptThrottleRate module
2316 * parameter (see ixgbe_param.c)
2317 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00002318static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
2319 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002320{
Alexander Duyckbd198052011-06-11 01:45:08 +00002321 int bytes = ring_container->total_bytes;
2322 int packets = ring_container->total_packets;
2323 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00002324 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00002325 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002326
2327 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00002328 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002329
2330 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00002331 * 0-10MB/s lowest (100000 ints/s)
2332 * 10-20MB/s low (20000 ints/s)
Alexander Duyck8ac34f12015-07-30 15:19:28 -07002333 * 20-1249MB/s bulk (12000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002334 */
2335 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002336 timepassed_us = q_vector->itr >> 2;
Don Skidmorebdbeefe2013-03-02 07:17:37 +00002337 if (timepassed_us == 0)
2338 return;
2339
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002340 bytes_perint = bytes / timepassed_us; /* bytes/usec */
2341
2342 switch (itr_setting) {
2343 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002344 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002345 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002346 break;
2347 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002348 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002349 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002350 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002351 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002352 break;
2353 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002354 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002355 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002356 break;
2357 }
2358
Alexander Duyckbd198052011-06-11 01:45:08 +00002359 /* clear work counters since we have the values we need */
2360 ring_container->total_bytes = 0;
2361 ring_container->total_packets = 0;
2362
2363 /* write updated itr to ring container */
2364 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002365}
2366
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002367/**
2368 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002369 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002370 *
2371 * This function is made to be called by ethtool and by the driver
2372 * when it needs to update EITR registers at runtime. Hardware
2373 * specific quirks/differences are taken care of here.
2374 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002375void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002376{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002377 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002378 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002379 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002380 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002381
Alexander Duyckbd508172010-11-16 19:27:03 -08002382 switch (adapter->hw.mac.type) {
2383 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002384 /* must write high and low 16 bits to reset counter */
2385 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002386 break;
2387 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002388 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002389 case ixgbe_mac_X550:
2390 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002391 case ixgbe_mac_x550em_a:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002392 /*
2393 * set the WDIS bit to not clear the timer bits and cause an
2394 * immediate assertion of the interrupt
2395 */
2396 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002397 break;
2398 default:
2399 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002400 }
2401 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2402}
2403
Alexander Duyckbd198052011-06-11 01:45:08 +00002404static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002405{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002406 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002407 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002408
Alexander Duyckbd198052011-06-11 01:45:08 +00002409 ixgbe_update_itr(q_vector, &q_vector->tx);
2410 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002411
Alexander Duyck08c88332011-06-11 01:45:03 +00002412 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002413
2414 switch (current_itr) {
2415 /* counts and packets in update_itr are dependent on these numbers */
2416 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002417 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002418 break;
2419 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002420 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002421 break;
2422 case bulk_latency:
Alexander Duyck8ac34f12015-07-30 15:19:28 -07002423 new_itr = IXGBE_12K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002424 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002425 default:
2426 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002427 }
2428
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002429 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002430 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002431 new_itr = (10 * new_itr * q_vector->itr) /
2432 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002433
Alexander Duyckbd198052011-06-11 01:45:08 +00002434 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002435 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002436
2437 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002438 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002439}
2440
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002441/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002442 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002443 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002444 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002445static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002446{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002447 struct ixgbe_hw *hw = &adapter->hw;
2448 u32 eicr = adapter->interrupt_event;
2449
Alexander Duyckf0f97782011-04-22 04:08:09 +00002450 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002451 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002452
Alexander Duyckf0f97782011-04-22 04:08:09 +00002453 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2454 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2455 return;
2456
2457 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2458
Joe Perches7ca647b2010-09-07 21:35:40 +00002459 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002460 case IXGBE_DEV_ID_82599_T3_LOM:
2461 /*
2462 * Since the warning interrupt is for both ports
2463 * we don't have to check if:
2464 * - This interrupt wasn't for our port.
2465 * - We may have missed the interrupt so always have to
2466 * check if we got a LSC
2467 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002468 if (!(eicr & IXGBE_EICR_GPI_SDP0_8259X) &&
Alexander Duyckf0f97782011-04-22 04:08:09 +00002469 !(eicr & IXGBE_EICR_LSC))
2470 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002471
Alexander Duyckf0f97782011-04-22 04:08:09 +00002472 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
Josh Hay3d292262012-12-15 03:28:19 +00002473 u32 speed;
Alexander Duyckf0f97782011-04-22 04:08:09 +00002474 bool link_up = false;
2475
Josh Hay3d292262012-12-15 03:28:19 +00002476 hw->mac.ops.check_link(hw, &speed, &link_up, false);
Joe Perches7ca647b2010-09-07 21:35:40 +00002477
Alexander Duyckf0f97782011-04-22 04:08:09 +00002478 if (link_up)
2479 return;
2480 }
2481
2482 /* Check if this is not due to overtemp */
2483 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2484 return;
2485
2486 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002487 default:
Don Skidmore597f22d2015-06-09 16:52:02 -07002488 if (adapter->hw.mac.type >= ixgbe_mac_X540)
2489 return;
Don Skidmore9a900ec2015-06-09 17:15:01 -07002490 if (!(eicr & IXGBE_EICR_GPI_SDP0(hw)))
Joe Perches7ca647b2010-09-07 21:35:40 +00002491 return;
2492 break;
2493 }
Don Skidmoref44e7512015-06-09 16:36:23 -07002494 e_crit(drv, "%s\n", ixgbe_overheat_msg);
Alexander Duyckf0f97782011-04-22 04:08:09 +00002495
2496 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002497}
2498
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002499static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2500{
2501 struct ixgbe_hw *hw = &adapter->hw;
2502
2503 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
Don Skidmore9a900ec2015-06-09 17:15:01 -07002504 (eicr & IXGBE_EICR_GPI_SDP1(hw))) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002505 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002506 /* write to clear the interrupt */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002507 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw));
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002508 }
2509}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002510
Jacob Keller4f51bf72011-08-20 04:49:45 +00002511static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2512{
Don Skidmore9a900ec2015-06-09 17:15:01 -07002513 struct ixgbe_hw *hw = &adapter->hw;
2514
Jacob Keller4f51bf72011-08-20 04:49:45 +00002515 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2516 return;
2517
2518 switch (adapter->hw.mac.type) {
2519 case ixgbe_mac_82599EB:
2520 /*
2521 * Need to check link state so complete overtemp check
2522 * on service task
2523 */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002524 if (((eicr & IXGBE_EICR_GPI_SDP0(hw)) ||
2525 (eicr & IXGBE_EICR_LSC)) &&
Jacob Keller4f51bf72011-08-20 04:49:45 +00002526 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2527 adapter->interrupt_event = eicr;
2528 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2529 ixgbe_service_event_schedule(adapter);
2530 return;
2531 }
2532 return;
2533 case ixgbe_mac_X540:
2534 if (!(eicr & IXGBE_EICR_TS))
2535 return;
2536 break;
2537 default:
2538 return;
2539 }
2540
Don Skidmoref44e7512015-06-09 16:36:23 -07002541 e_crit(drv, "%s\n", ixgbe_overheat_msg);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002542}
2543
Don Skidmore45788d22015-06-09 16:59:04 -07002544static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
2545{
2546 switch (hw->mac.type) {
2547 case ixgbe_mac_82598EB:
2548 if (hw->phy.type == ixgbe_phy_nl)
2549 return true;
2550 return false;
2551 case ixgbe_mac_82599EB:
2552 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002553 case ixgbe_mac_x550em_a:
Don Skidmore45788d22015-06-09 16:59:04 -07002554 switch (hw->mac.ops.get_media_type(hw)) {
2555 case ixgbe_media_type_fiber:
2556 case ixgbe_media_type_fiber_qsfp:
2557 return true;
2558 default:
2559 return false;
2560 }
2561 default:
2562 return false;
2563 }
2564}
2565
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002566static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2567{
2568 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore4ccc6502015-09-02 13:47:54 -07002569 u32 eicr_mask = IXGBE_EICR_GPI_SDP2(hw);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002570
Don Skidmore4ccc6502015-09-02 13:47:54 -07002571 if (!ixgbe_is_sfp(hw))
2572 return;
2573
2574 /* Later MAC's use different SDP */
2575 if (hw->mac.type >= ixgbe_mac_X540)
2576 eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
2577
2578 if (eicr & eicr_mask) {
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002579 /* Clear the interrupt */
Don Skidmore4ccc6502015-09-02 13:47:54 -07002580 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
Alexander Duyck70864002011-04-27 09:13:56 +00002581 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2582 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
Mark Rustad58e7cd22015-08-08 16:18:48 -07002583 adapter->sfp_poll_time = 0;
Alexander Duyck70864002011-04-27 09:13:56 +00002584 ixgbe_service_event_schedule(adapter);
2585 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002586 }
2587
Don Skidmore4ccc6502015-09-02 13:47:54 -07002588 if (adapter->hw.mac.type == ixgbe_mac_82599EB &&
2589 (eicr & IXGBE_EICR_GPI_SDP1(hw))) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002590 /* Clear the interrupt */
Don Skidmore9a900ec2015-06-09 17:15:01 -07002591 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw));
Alexander Duyck70864002011-04-27 09:13:56 +00002592 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2593 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2594 ixgbe_service_event_schedule(adapter);
2595 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002596 }
2597}
2598
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002599static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2600{
2601 struct ixgbe_hw *hw = &adapter->hw;
2602
2603 adapter->lsc_int++;
2604 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2605 adapter->link_check_timeout = jiffies;
2606 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2607 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002608 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002609 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002610 }
2611}
2612
Alexander Duyckfe49f042009-06-04 16:00:09 +00002613static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2614 u64 qmask)
2615{
2616 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002617 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002618
Alexander Duyckbd508172010-11-16 19:27:03 -08002619 switch (hw->mac.type) {
2620 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002621 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002622 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2623 break;
2624 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002625 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002626 case ixgbe_mac_X550:
2627 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002628 case ixgbe_mac_x550em_a:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002629 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002630 if (mask)
2631 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002632 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002633 if (mask)
2634 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2635 break;
2636 default:
2637 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002638 }
2639 /* skip the flush */
2640}
2641
2642static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002643 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002644{
2645 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002646 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002647
Alexander Duyckbd508172010-11-16 19:27:03 -08002648 switch (hw->mac.type) {
2649 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002650 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002651 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2652 break;
2653 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002654 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002655 case ixgbe_mac_X550:
2656 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002657 case ixgbe_mac_x550em_a:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002658 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002659 if (mask)
2660 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002661 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002662 if (mask)
2663 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2664 break;
2665 default:
2666 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002667 }
2668 /* skip the flush */
2669}
2670
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002671/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002672 * ixgbe_irq_enable - Enable default interrupt generation settings
2673 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002674 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002675static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2676 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002677{
Don Skidmore9a900ec2015-06-09 17:15:01 -07002678 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002679 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002680
Alexander Duyck2c4af692011-07-15 07:29:55 +00002681 /* don't reenable LSC while waiting for link */
2682 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2683 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002684
Alexander Duyck2c4af692011-07-15 07:29:55 +00002685 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002686 switch (adapter->hw.mac.type) {
2687 case ixgbe_mac_82599EB:
Don Skidmore9a900ec2015-06-09 17:15:01 -07002688 mask |= IXGBE_EIMS_GPI_SDP0(hw);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002689 break;
2690 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002691 case ixgbe_mac_X550:
2692 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002693 case ixgbe_mac_x550em_a:
Jacob Keller4f51bf72011-08-20 04:49:45 +00002694 mask |= IXGBE_EIMS_TS;
2695 break;
2696 default:
2697 break;
2698 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002699 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Don Skidmore9a900ec2015-06-09 17:15:01 -07002700 mask |= IXGBE_EIMS_GPI_SDP1(hw);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002701 switch (adapter->hw.mac.type) {
2702 case ixgbe_mac_82599EB:
Don Skidmore9a900ec2015-06-09 17:15:01 -07002703 mask |= IXGBE_EIMS_GPI_SDP1(hw);
2704 mask |= IXGBE_EIMS_GPI_SDP2(hw);
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002705 /* fall through */
Don Skidmore858bc082011-08-04 09:28:30 +00002706 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002707 case ixgbe_mac_X550:
2708 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002709 case ixgbe_mac_x550em_a:
2710 if (adapter->hw.device_id == IXGBE_DEV_ID_X550EM_X_SFP ||
Mark Rustad2d40cd12016-04-01 12:18:35 -07002711 adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_SFP ||
Mark Rustad49425df2016-04-01 12:18:09 -07002712 adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_SFP_N)
Mark Rustadcbd45ec2015-08-08 16:17:51 -07002713 mask |= IXGBE_EIMS_GPI_SDP0(&adapter->hw);
Don Skidmore597f22d2015-06-09 16:52:02 -07002714 if (adapter->hw.phy.type == ixgbe_phy_x550em_ext_t)
2715 mask |= IXGBE_EICR_GPI_SDP0_X540;
Don Skidmore858bc082011-08-04 09:28:30 +00002716 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002717 mask |= IXGBE_EIMS_MAILBOX;
2718 break;
2719 default:
2720 break;
2721 }
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002722
Alexander Duyck2c4af692011-07-15 07:29:55 +00002723 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2724 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2725 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002726
Alexander Duyck2c4af692011-07-15 07:29:55 +00002727 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2728 if (queues)
2729 ixgbe_irq_enable_queues(adapter, ~0);
2730 if (flush)
2731 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002732}
2733
Alexander Duyck2c4af692011-07-15 07:29:55 +00002734static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002735{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002736 struct ixgbe_adapter *adapter = data;
2737 struct ixgbe_hw *hw = &adapter->hw;
2738 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002739
Alexander Duyck2c4af692011-07-15 07:29:55 +00002740 /*
2741 * Workaround for Silicon errata. Use clear-by-write instead
2742 * of clear-by-read. Reading with EICS will return the
2743 * interrupt causes without clearing, which later be done
2744 * with the write to EICR.
2745 */
2746 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
Jacob Kellerd87d8302013-03-02 07:51:42 +00002747
2748 /* The lower 16bits of the EICR register are for the queue interrupts
Joe Perchesdbedd442015-03-06 20:49:12 -08002749 * which should be masked here in order to not accidentally clear them if
Jacob Kellerd87d8302013-03-02 07:51:42 +00002750 * the bits are high when ixgbe_msix_other is called. There is a race
2751 * condition otherwise which results in possible performance loss
2752 * especially if the ixgbe_msix_other interrupt is triggering
2753 * consistently (as it would when PPS is turned on for the X540 device)
2754 */
2755 eicr &= 0xFFFF0000;
2756
Alexander Duyck2c4af692011-07-15 07:29:55 +00002757 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002758
Alexander Duyck2c4af692011-07-15 07:29:55 +00002759 if (eicr & IXGBE_EICR_LSC)
2760 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002761
Alexander Duyck2c4af692011-07-15 07:29:55 +00002762 if (eicr & IXGBE_EICR_MAILBOX)
2763 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002764
Alexander Duyck2c4af692011-07-15 07:29:55 +00002765 switch (hw->mac.type) {
2766 case ixgbe_mac_82599EB:
2767 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002768 case ixgbe_mac_X550:
2769 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07002770 case ixgbe_mac_x550em_a:
Don Skidmore597f22d2015-06-09 16:52:02 -07002771 if (hw->phy.type == ixgbe_phy_x550em_ext_t &&
2772 (eicr & IXGBE_EICR_GPI_SDP0_X540)) {
2773 adapter->flags2 |= IXGBE_FLAG2_PHY_INTERRUPT;
2774 ixgbe_service_event_schedule(adapter);
2775 IXGBE_WRITE_REG(hw, IXGBE_EICR,
2776 IXGBE_EICR_GPI_SDP0_X540);
2777 }
Don Skidmored773ce22014-02-25 17:58:53 -08002778 if (eicr & IXGBE_EICR_ECC) {
2779 e_info(link, "Received ECC Err, initiating reset\n");
Emil Tantilov57ca2a42016-07-29 14:46:31 -07002780 set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
Don Skidmored773ce22014-02-25 17:58:53 -08002781 ixgbe_service_event_schedule(adapter);
2782 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
2783 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002784 /* Handle Flow Director Full threshold interrupt */
2785 if (eicr & IXGBE_EICR_FLOW_DIR) {
2786 int reinit_count = 0;
2787 int i;
2788 for (i = 0; i < adapter->num_tx_queues; i++) {
2789 struct ixgbe_ring *ring = adapter->tx_ring[i];
2790 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2791 &ring->state))
2792 reinit_count++;
2793 }
2794 if (reinit_count) {
2795 /* no more flow director interrupts until after init */
2796 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2797 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2798 ixgbe_service_event_schedule(adapter);
2799 }
2800 }
2801 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002802 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002803 break;
2804 default:
2805 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002806 }
2807
Alexander Duyck2c4af692011-07-15 07:29:55 +00002808 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002809
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002810 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
Mark Rustada9763f32015-10-27 09:58:07 -07002811 ixgbe_ptp_check_pps_event(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002812
Alexander Duyck2c4af692011-07-15 07:29:55 +00002813 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002814 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002815 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002816
Alexander Duyck2c4af692011-07-15 07:29:55 +00002817 return IRQ_HANDLED;
2818}
2819
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002820static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002821{
2822 struct ixgbe_q_vector *q_vector = data;
2823
Auke Kok9a799d72007-09-15 14:07:45 -07002824 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002825
2826 if (q_vector->rx.ring || q_vector->tx.ring)
Alexander Duyckef2662b2015-09-29 15:19:43 -07002827 napi_schedule_irqoff(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002828
2829 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002830}
2831
Auke Kok9a799d72007-09-15 14:07:45 -07002832/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002833 * ixgbe_poll - NAPI Rx polling callback
2834 * @napi: structure for representing this polling device
2835 * @budget: how many packets driver is allowed to clean
2836 *
2837 * This function is used for legacy and MSI, NAPI mode
2838 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002839int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002840{
2841 struct ixgbe_q_vector *q_vector =
2842 container_of(napi, struct ixgbe_q_vector, napi);
2843 struct ixgbe_adapter *adapter = q_vector->adapter;
2844 struct ixgbe_ring *ring;
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002845 int per_ring_budget, work_done = 0;
Alexander Duyckeb01b972012-02-08 07:51:27 +00002846 bool clean_complete = true;
2847
2848#ifdef CONFIG_IXGBE_DCA
2849 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2850 ixgbe_update_dca(q_vector);
2851#endif
2852
Alexander Duyck8220bbc2016-03-07 09:30:09 -08002853 ixgbe_for_each_ring(ring, q_vector->tx) {
2854 if (!ixgbe_clean_tx_irq(q_vector, ring, budget))
2855 clean_complete = false;
2856 }
Alexander Duyckeb01b972012-02-08 07:51:27 +00002857
Alexander Duyck5d6002b2015-09-22 14:35:41 -07002858 /* Exit if we are called by netpoll or busy polling is active */
2859 if ((budget <= 0) || !ixgbe_qv_lock_napi(q_vector))
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002860 return budget;
2861
Alexander Duyckeb01b972012-02-08 07:51:27 +00002862 /* attempt to distribute budget to each queue fairly, but don't allow
2863 * the budget to go below 1 because we'll exit polling */
2864 if (q_vector->rx.count > 1)
2865 per_ring_budget = max(budget/q_vector->rx.count, 1);
2866 else
2867 per_ring_budget = budget;
2868
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002869 ixgbe_for_each_ring(ring, q_vector->rx) {
2870 int cleaned = ixgbe_clean_rx_irq(q_vector, ring,
2871 per_ring_budget);
2872
2873 work_done += cleaned;
Alexander Duyck8220bbc2016-03-07 09:30:09 -08002874 if (cleaned >= per_ring_budget)
2875 clean_complete = false;
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002876 }
Alexander Duyckeb01b972012-02-08 07:51:27 +00002877
Eliezer Tamir5a85e732013-06-10 11:40:20 +03002878 ixgbe_qv_unlock_napi(q_vector);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002879 /* If all work not completed, return budget and keep polling */
2880 if (!clean_complete)
2881 return budget;
2882
2883 /* all work done, exit the polling mode */
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07002884 napi_complete_done(napi, work_done);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002885 if (adapter->rx_itr_setting & 1)
2886 ixgbe_set_itr(q_vector);
2887 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Jacob Kellerb4f47a42016-04-13 16:08:22 -07002888 ixgbe_irq_enable_queues(adapter, BIT_ULL(q_vector->v_idx));
Alexander Duyckeb01b972012-02-08 07:51:27 +00002889
Paolo Abeni4b732cd2016-06-15 15:37:59 +02002890 return min(work_done, budget - 1);
Alexander Duyckeb01b972012-02-08 07:51:27 +00002891}
2892
2893/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002894 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2895 * @adapter: board private structure
2896 *
2897 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2898 * interrupts from the kernel.
2899 **/
2900static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2901{
2902 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002903 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002904 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002905
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002906 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002907 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002908 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002909
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002910 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002911 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002912 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002913 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002914 } else if (q_vector->rx.ring) {
2915 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2916 "%s-%s-%d", netdev->name, "rx", ri++);
2917 } else if (q_vector->tx.ring) {
2918 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2919 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002920 } else {
2921 /* skip this unused q_vector */
2922 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002923 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002924 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2925 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002926 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002927 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002928 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002929 goto free_queue_irqs;
2930 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002931 /* If Flow Director is enabled, set interrupt affinity */
2932 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2933 /* assign the mask for this irq */
2934 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002935 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002936 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002937 }
2938
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002939 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002940 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002941 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002942 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002943 goto free_queue_irqs;
2944 }
2945
2946 return 0;
2947
2948free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002949 while (vector) {
2950 vector--;
2951 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2952 NULL);
2953 free_irq(adapter->msix_entries[vector].vector,
2954 adapter->q_vector[vector]);
2955 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002956 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2957 pci_disable_msix(adapter->pdev);
2958 kfree(adapter->msix_entries);
2959 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002960 return err;
2961}
2962
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002963/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002964 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002965 * @irq: interrupt number
2966 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002967 **/
2968static irqreturn_t ixgbe_intr(int irq, void *data)
2969{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002970 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002971 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002972 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002973 u32 eicr;
2974
Don Skidmore54037502009-02-21 15:42:56 -08002975 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002976 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002977 * before the read of EICR.
2978 */
2979 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2980
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002981 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002982 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002983 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002984 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002985 /*
2986 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002987 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002988 * have disabled interrupts due to EIAM
2989 * finish the workaround of silicon errata on 82598. Unmask
2990 * the interrupt that we masked before the EICR read.
2991 */
2992 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2993 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002994 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002995 }
Auke Kok9a799d72007-09-15 14:07:45 -07002996
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002997 if (eicr & IXGBE_EICR_LSC)
2998 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002999
Alexander Duyckbd508172010-11-16 19:27:03 -08003000 switch (hw->mac.type) {
3001 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003002 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00003003 /* Fall through */
3004 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003005 case ixgbe_mac_X550:
3006 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07003007 case ixgbe_mac_x550em_a:
Don Skidmored773ce22014-02-25 17:58:53 -08003008 if (eicr & IXGBE_EICR_ECC) {
3009 e_info(link, "Received ECC Err, initiating reset\n");
Emil Tantilov57ca2a42016-07-29 14:46:31 -07003010 set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
Don Skidmored773ce22014-02-25 17:58:53 -08003011 ixgbe_service_event_schedule(adapter);
3012 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
3013 }
Jacob Keller4f51bf72011-08-20 04:49:45 +00003014 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08003015 break;
3016 default:
3017 break;
3018 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003019
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003020 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00003021 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
Mark Rustada9763f32015-10-27 09:58:07 -07003022 ixgbe_ptp_check_pps_event(adapter);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003023
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00003024 /* would disable interrupts here but EIAM disabled it */
Alexander Duyckef2662b2015-09-29 15:19:43 -07003025 napi_schedule_irqoff(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07003026
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003027 /*
3028 * re-enable link(maybe) and non-queue interrupts, no flush.
3029 * ixgbe_poll will re-enable the queue interrupts
3030 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003031 if (!test_bit(__IXGBE_DOWN, &adapter->state))
3032 ixgbe_irq_enable(adapter, false, false);
3033
Auke Kok9a799d72007-09-15 14:07:45 -07003034 return IRQ_HANDLED;
3035}
3036
3037/**
3038 * ixgbe_request_irq - initialize interrupts
3039 * @adapter: board private structure
3040 *
3041 * Attempts to configure interrupts using the best available
3042 * capabilities of the hardware and kernel.
3043 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003044static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003045{
3046 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003047 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07003048
Alexander Duyck4cc6df22011-07-15 03:05:51 +00003049 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003050 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00003051 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08003052 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00003053 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00003054 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08003055 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00003056 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003057
Alexander Duyckde88eee2012-02-08 07:49:59 +00003058 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00003059 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07003060
Auke Kok9a799d72007-09-15 14:07:45 -07003061 return err;
3062}
3063
3064static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
3065{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003066 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07003067
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003068 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00003069 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003070 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003071 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003072
3073 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
3074 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
3075 struct msix_entry *entry = &adapter->msix_entries[vector];
3076
3077 /* free only the irqs that were actually requested */
3078 if (!q_vector->rx.ring && !q_vector->tx.ring)
3079 continue;
3080
3081 /* clear the affinity_mask in the IRQ descriptor */
3082 irq_set_affinity_hint(entry->vector, NULL);
3083
3084 free_irq(entry->vector, q_vector);
3085 }
3086
Babu Moger90c6f872016-06-18 17:40:47 -07003087 free_irq(adapter->msix_entries[vector].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003088}
3089
3090/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003091 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
3092 * @adapter: board private structure
3093 **/
3094static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
3095{
Alexander Duyckbd508172010-11-16 19:27:03 -08003096 switch (adapter->hw.mac.type) {
3097 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00003098 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08003099 break;
3100 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003101 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00003102 case ixgbe_mac_X550:
3103 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07003104 case ixgbe_mac_x550em_a:
Nelson, Shannon835462f2009-04-27 22:42:54 +00003105 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
3106 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003107 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08003108 break;
3109 default:
3110 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003111 }
3112 IXGBE_WRITE_FLUSH(&adapter->hw);
3113 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003114 int vector;
3115
3116 for (vector = 0; vector < adapter->num_q_vectors; vector++)
3117 synchronize_irq(adapter->msix_entries[vector].vector);
3118
3119 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003120 } else {
3121 synchronize_irq(adapter->pdev->irq);
3122 }
3123}
3124
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00003125/**
Auke Kok9a799d72007-09-15 14:07:45 -07003126 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
3127 *
3128 **/
3129static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
3130{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00003131 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07003132
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00003133 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07003134
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003135 ixgbe_set_ivar(adapter, 0, 0, 0);
3136 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003137
Emil Tantilov396e7992010-07-01 20:05:12 +00003138 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07003139}
3140
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003141/**
3142 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
3143 * @adapter: board private structure
3144 * @ring: structure containing ring specific data
3145 *
3146 * Configure the Tx descriptor ring after a reset.
3147 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00003148void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
3149 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003150{
3151 struct ixgbe_hw *hw = &adapter->hw;
3152 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003153 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003154 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003155 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003156
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003157 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003158 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003159 IXGBE_WRITE_FLUSH(hw);
3160
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003161 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00003162 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003163 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
3164 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
3165 ring->count * sizeof(union ixgbe_adv_tx_desc));
3166 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
3167 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003168 ring->tail = adapter->io_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003169
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003170 /*
3171 * set WTHRESH to encourage burst writeback, it should not be set
Emil Tantilov67da0972013-01-25 06:19:20 +00003172 * higher than 1 when:
3173 * - ITR is 0 as it could cause false TX hangs
3174 * - ITR is set to > 100k int/sec and BQL is enabled
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003175 *
3176 * In order to avoid issues WTHRESH + PTHRESH should always be equal
3177 * to or less than the number of on chip descriptors, which is
3178 * currently 40.
3179 */
Emil Tantilov67da0972013-01-25 06:19:20 +00003180 if (!ring->q_vector || (ring->q_vector->itr < IXGBE_100K_ITR))
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003181 txdctl |= 1u << 16; /* WTHRESH = 1 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003182 else
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003183 txdctl |= 8u << 16; /* WTHRESH = 8 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003184
Alexander Duycke954b372012-02-08 07:49:38 +00003185 /*
3186 * Setting PTHRESH to 32 both improves performance
3187 * and avoids a TX hang with DFP enabled
3188 */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003189 txdctl |= (1u << 8) | /* HTHRESH = 1 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00003190 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003191
3192 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00003193 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08003194 ring->atr_sample_rate = adapter->atr_sample_rate;
3195 ring->atr_count = 0;
3196 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
3197 } else {
3198 ring->atr_sample_rate = 0;
3199 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003200
Alexander Duyckfd786b72013-01-12 06:33:31 +00003201 /* initialize XPS */
3202 if (!test_and_set_bit(__IXGBE_TX_XPS_INIT_DONE, &ring->state)) {
3203 struct ixgbe_q_vector *q_vector = ring->q_vector;
3204
3205 if (q_vector)
John Fastabend2a47fa42013-11-06 09:54:52 -08003206 netif_set_xps_queue(ring->netdev,
Alexander Duyckfd786b72013-01-12 06:33:31 +00003207 &q_vector->affinity_mask,
3208 ring->queue_index);
3209 }
3210
John Fastabendc84d3242010-11-16 19:27:12 -08003211 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
3212
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003213 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003214 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
3215
3216 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3217 if (hw->mac.type == ixgbe_mac_82598EB &&
3218 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3219 return;
3220
3221 /* poll to verify queue is enabled */
3222 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003223 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003224 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
3225 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
3226 if (!wait_loop)
Emil Tantilova55defd2016-07-29 10:30:06 -07003227 hw_dbg(hw, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003228}
3229
Alexander Duyck120ff942010-08-19 13:34:50 +00003230static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
3231{
3232 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003233 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003234 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00003235
3236 if (hw->mac.type == ixgbe_mac_82598EB)
3237 return;
3238
3239 /* disable the arbiter while setting MTQC */
3240 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3241 rttdcs |= IXGBE_RTTDCS_ARBDIS;
3242 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3243
3244 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003245 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3246 mtqc = IXGBE_MTQC_VT_ENA;
3247 if (tcs > 4)
3248 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3249 else if (tcs > 1)
3250 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
Alexander Duycke24fcf22016-09-07 20:28:24 -07003251 else if (adapter->ring_feature[RING_F_VMDQ].mask ==
3252 IXGBE_82599_VMDQ_4Q_MASK)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003253 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003254 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003255 mtqc |= IXGBE_MTQC_64VF;
3256 } else {
3257 if (tcs > 4)
3258 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3259 else if (tcs > 1)
3260 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3261 else
3262 mtqc = IXGBE_MTQC_64Q_1PB;
3263 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00003264
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003265 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003266
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003267 /* Enable Security TX Buffer IFG for multiple pb */
3268 if (tcs) {
3269 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
3270 sectx |= IXGBE_SECTX_DCB;
3271 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00003272 }
3273
3274 /* re-enable the arbiter */
3275 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3276 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3277}
3278
Auke Kok9a799d72007-09-15 14:07:45 -07003279/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07003280 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07003281 * @adapter: board private structure
3282 *
3283 * Configure the Tx unit of the MAC after a reset.
3284 **/
3285static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
3286{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003287 struct ixgbe_hw *hw = &adapter->hw;
3288 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003289 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003290
Alexander Duyck2f1860b2010-08-19 13:39:43 +00003291 ixgbe_setup_mtqc(adapter);
3292
3293 if (hw->mac.type != ixgbe_mac_82598EB) {
3294 /* DMATXCTL.EN must be before Tx queues are enabled */
3295 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3296 dmatxctl |= IXGBE_DMATXCTL_TE;
3297 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3298 }
3299
Auke Kok9a799d72007-09-15 14:07:45 -07003300 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00003301 for (i = 0; i < adapter->num_tx_queues; i++)
3302 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07003303}
3304
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00003305static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
3306 struct ixgbe_ring *ring)
3307{
3308 struct ixgbe_hw *hw = &adapter->hw;
3309 u8 reg_idx = ring->reg_idx;
3310 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3311
3312 srrctl |= IXGBE_SRRCTL_DROP_EN;
3313
3314 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3315}
3316
3317static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
3318 struct ixgbe_ring *ring)
3319{
3320 struct ixgbe_hw *hw = &adapter->hw;
3321 u8 reg_idx = ring->reg_idx;
3322 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3323
3324 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
3325
3326 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3327}
3328
3329#ifdef CONFIG_IXGBE_DCB
3330void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3331#else
3332static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3333#endif
3334{
3335 int i;
3336 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
3337
3338 if (adapter->ixgbe_ieee_pfc)
3339 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
3340
3341 /*
3342 * We should set the drop enable bit if:
3343 * SR-IOV is enabled
3344 * or
3345 * Number of Rx queues > 1 and flow control is disabled
3346 *
3347 * This allows us to avoid head of line blocking for security
3348 * and performance reasons.
3349 */
3350 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
3351 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
3352 for (i = 0; i < adapter->num_rx_queues; i++)
3353 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
3354 } else {
3355 for (i = 0; i < adapter->num_rx_queues; i++)
3356 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
3357 }
3358}
3359
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003360#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07003361
Yi Zoua6616b42009-08-06 13:05:23 +00003362static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00003363 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003364{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003365 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003366 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003367 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003368
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003369 if (hw->mac.type == ixgbe_mac_82598EB) {
3370 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
3371
3372 /*
3373 * if VMDq is not active we must program one srrctl register
3374 * per RSS queue since we have enabled RDRXCTL.MVMEN
3375 */
3376 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08003377 }
3378
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003379 /* configure header buffer length, needed for RSC */
3380 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003381
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003382 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00003383 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003384
3385 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00003386 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003387
Alexander Duyck45e9baa2012-05-05 05:30:59 +00003388 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003389}
3390
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003391/**
Jean Sacrena897a2a2015-09-19 05:08:44 -06003392 * ixgbe_rss_indir_tbl_entries - Return RSS indirection table entries
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003393 * @adapter: device handle
3394 *
3395 * - 82598/82599/X540: 128
3396 * - X550(non-SRIOV mode): 512
3397 * - X550(SRIOV mode): 64
3398 */
Vlad Zolotarov7f276ef2015-03-30 21:18:58 +03003399u32 ixgbe_rss_indir_tbl_entries(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003400{
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003401 if (adapter->hw.mac.type < ixgbe_mac_X550)
3402 return 128;
3403 else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3404 return 64;
3405 else
3406 return 512;
3407}
3408
3409/**
Jean Sacrena897a2a2015-09-19 05:08:44 -06003410 * ixgbe_store_reta - Write the RETA table to HW
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003411 * @adapter: device handle
3412 *
3413 * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3414 */
Tom Barbette1c7cf072015-06-26 15:40:18 +02003415void ixgbe_store_reta(struct ixgbe_adapter *adapter)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003416{
3417 u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
Alexander Duyck05abb122010-08-19 13:35:41 +00003418 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmored1b849b2014-11-09 06:42:57 +00003419 u32 reta = 0;
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003420 u32 indices_multi;
3421 u8 *indir_tbl = adapter->rss_indir_tbl;
John Fastabend86b4db32011-04-26 07:26:19 +00003422
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003423 /* Fill out the redirection table as follows:
3424 * - 82598: 8 bit wide entries containing pair of 4 bit RSS
3425 * indices.
3426 * - 82599/X540: 8 bit wide entries containing 4 bit RSS index
3427 * - X550: 8 bit wide entries containing 6 bit RSS index
3428 */
3429 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3430 indices_multi = 0x11;
3431 else
3432 indices_multi = 0x1;
3433
3434 /* Write redirection table to HW */
3435 for (i = 0; i < reta_entries; i++) {
3436 reta |= indices_multi * indir_tbl[i] << (i & 0x3) * 8;
3437 if ((i & 3) == 3) {
3438 if (i < 128)
3439 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3440 else
3441 IXGBE_WRITE_REG(hw, IXGBE_ERETA((i >> 2) - 32),
3442 reta);
3443 reta = 0;
3444 }
3445 }
3446}
3447
3448/**
Jean Sacrena897a2a2015-09-19 05:08:44 -06003449 * ixgbe_store_vfreta - Write the RETA table to HW (x550 devices in SRIOV mode)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003450 * @adapter: device handle
3451 *
3452 * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3453 */
3454static void ixgbe_store_vfreta(struct ixgbe_adapter *adapter)
3455{
3456 u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3457 struct ixgbe_hw *hw = &adapter->hw;
3458 u32 vfreta = 0;
3459 unsigned int pf_pool = adapter->num_vfs;
3460
3461 /* Write redirection table to HW */
3462 for (i = 0; i < reta_entries; i++) {
3463 vfreta |= (u32)adapter->rss_indir_tbl[i] << (i & 0x3) * 8;
3464 if ((i & 3) == 3) {
3465 IXGBE_WRITE_REG(hw, IXGBE_PFVFRETA(i >> 2, pf_pool),
3466 vfreta);
3467 vfreta = 0;
3468 }
3469 }
3470}
3471
3472static void ixgbe_setup_reta(struct ixgbe_adapter *adapter)
3473{
3474 struct ixgbe_hw *hw = &adapter->hw;
3475 u32 i, j;
3476 u32 reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3477 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
3478
Alexander Duycke24fcf22016-09-07 20:28:24 -07003479 /* Program table for at least 4 queues w/ SR-IOV so that VFs can
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003480 * make full use of any rings they may have. We will use the
3481 * PSRTYPE register to control how many rings we use within the PF.
3482 */
Alexander Duycke24fcf22016-09-07 20:28:24 -07003483 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 4))
3484 rss_i = 4;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003485
Alexander Duyck05abb122010-08-19 13:35:41 +00003486 /* Fill out hash function seeds */
3487 for (i = 0; i < 10; i++)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003488 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), adapter->rss_key[i]);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003489
Alexander Duyck05abb122010-08-19 13:35:41 +00003490 /* Fill out redirection table */
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003491 memset(adapter->rss_indir_tbl, 0, sizeof(adapter->rss_indir_tbl));
3492
Don Skidmore0f9b2322014-11-18 09:35:08 +00003493 for (i = 0, j = 0; i < reta_entries; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003494 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00003495 j = 0;
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003496
3497 adapter->rss_indir_tbl[i] = j;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003498 }
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003499
3500 ixgbe_store_reta(adapter);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003501}
3502
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003503static void ixgbe_setup_vfreta(struct ixgbe_adapter *adapter)
Don Skidmore0f9b2322014-11-18 09:35:08 +00003504{
3505 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003506 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
3507 unsigned int pf_pool = adapter->num_vfs;
3508 int i, j;
3509
3510 /* Fill out hash function seeds */
3511 for (i = 0; i < 10; i++)
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003512 IXGBE_WRITE_REG(hw, IXGBE_PFVFRSSRK(i, pf_pool),
3513 adapter->rss_key[i]);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003514
3515 /* Fill out the redirection table */
3516 for (i = 0, j = 0; i < 64; i++, j++) {
3517 if (j == rss_i)
3518 j = 0;
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003519
3520 adapter->rss_indir_tbl[i] = j;
Alexander Duyck05abb122010-08-19 13:35:41 +00003521 }
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003522
3523 ixgbe_store_vfreta(adapter);
Don Skidmored1b849b2014-11-09 06:42:57 +00003524}
3525
3526static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
3527{
3528 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003529 u32 mrqc = 0, rss_field = 0, vfmrqc = 0;
Don Skidmored1b849b2014-11-09 06:42:57 +00003530 u32 rxcsum;
Alexander Duyck05abb122010-08-19 13:35:41 +00003531
3532 /* Disable indicating checksum in descriptor, enables RSS hash */
3533 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3534 rxcsum |= IXGBE_RXCSUM_PCSD;
3535 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3536
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003537 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003538 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003539 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003540 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003541 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003542
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003543 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3544 if (tcs > 4)
3545 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3546 else if (tcs > 1)
3547 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
Alexander Duycke24fcf22016-09-07 20:28:24 -07003548 else if (adapter->ring_feature[RING_F_VMDQ].mask ==
3549 IXGBE_82599_VMDQ_4Q_MASK)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003550 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3551 else
3552 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3553 } else {
3554 if (tcs > 4)
3555 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3556 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003557 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3558 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003559 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003560 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003561 }
3562
Alexander Duyck05abb122010-08-19 13:35:41 +00003563 /* Perform hash on these packet types */
Don Skidmored1b849b2014-11-09 06:42:57 +00003564 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3565 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3566 IXGBE_MRQC_RSS_FIELD_IPV6 |
3567 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003568
Alexander Duyckef6afc02012-02-08 07:51:53 +00003569 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
Don Skidmored1b849b2014-11-09 06:42:57 +00003570 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
Alexander Duyckef6afc02012-02-08 07:51:53 +00003571 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
Don Skidmored1b849b2014-11-09 06:42:57 +00003572 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
Alexander Duyckef6afc02012-02-08 07:51:53 +00003573
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003574 netdev_rss_key_fill(adapter->rss_key, sizeof(adapter->rss_key));
Don Skidmore0f9b2322014-11-18 09:35:08 +00003575 if ((hw->mac.type >= ixgbe_mac_X550) &&
3576 (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) {
3577 unsigned int pf_pool = adapter->num_vfs;
3578
3579 /* Enable VF RSS mode */
3580 mrqc |= IXGBE_MRQC_MULTIPLE_RSS;
3581 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3582
3583 /* Setup RSS through the VF registers */
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003584 ixgbe_setup_vfreta(adapter);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003585 vfmrqc = IXGBE_MRQC_RSSEN;
3586 vfmrqc |= rss_field;
3587 IXGBE_WRITE_REG(hw, IXGBE_PFVFMRQC(pf_pool), vfmrqc);
3588 } else {
Vlad Zolotarovdfaf8912015-03-30 21:18:57 +03003589 ixgbe_setup_reta(adapter);
Don Skidmore0f9b2322014-11-18 09:35:08 +00003590 mrqc |= rss_field;
3591 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3592 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003593}
3594
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003595/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003596 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3597 * @adapter: address of board private structure
3598 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003599 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003600static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003601 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003602{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003603 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003604 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003605 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003606
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003607 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003608 return;
3609
Alexander Duyck73670962010-08-19 13:38:34 +00003610 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003611 rscctrl |= IXGBE_RSCCTL_RSCEN;
3612 /*
3613 * we must limit the number of descriptors so that the
3614 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003615 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003616 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003617 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003618 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003619}
3620
Alexander Duyck9e10e042010-08-19 13:40:06 +00003621#define IXGBE_MAX_RX_DESC_POLL 10
3622static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3623 struct ixgbe_ring *ring)
3624{
3625 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003626 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3627 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003628 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003629
Mark Rustadb0483c82014-01-14 18:53:17 -08003630 if (ixgbe_removed(hw->hw_addr))
3631 return;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003632 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3633 if (hw->mac.type == ixgbe_mac_82598EB &&
3634 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3635 return;
3636
3637 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003638 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003639 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3640 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3641
3642 if (!wait_loop) {
3643 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3644 "the polling period\n", reg_idx);
3645 }
3646}
3647
Yi Zou2d39d572011-01-06 14:29:56 +00003648void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3649 struct ixgbe_ring *ring)
3650{
3651 struct ixgbe_hw *hw = &adapter->hw;
3652 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3653 u32 rxdctl;
3654 u8 reg_idx = ring->reg_idx;
3655
Mark Rustadb0483c82014-01-14 18:53:17 -08003656 if (ixgbe_removed(hw->hw_addr))
3657 return;
Yi Zou2d39d572011-01-06 14:29:56 +00003658 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3659 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3660
3661 /* write value back with RXDCTL.ENABLE bit cleared */
3662 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3663
3664 if (hw->mac.type == ixgbe_mac_82598EB &&
3665 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3666 return;
3667
3668 /* the hardware may take up to 100us to really disable the rx queue */
3669 do {
3670 udelay(10);
3671 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3672 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3673
3674 if (!wait_loop) {
3675 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3676 "the polling period\n", reg_idx);
3677 }
3678}
3679
Alexander Duyck84418e32010-08-19 13:40:54 +00003680void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3681 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003682{
3683 struct ixgbe_hw *hw = &adapter->hw;
3684 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003685 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003686 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003687
Alexander Duyck9e10e042010-08-19 13:40:06 +00003688 /* disable queue to avoid issues while updating state */
3689 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003690 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003691
Alexander Duyckacd37172010-08-19 13:36:05 +00003692 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3693 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3694 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3695 ring->count * sizeof(union ixgbe_adv_rx_desc));
Neerav Parikh8b754512015-12-08 22:13:58 -08003696 /* Force flushing of IXGBE_RDLEN to prevent MDD */
3697 IXGBE_WRITE_FLUSH(hw);
3698
Alexander Duyckacd37172010-08-19 13:36:05 +00003699 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3700 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Mark Rustad2a1a0912014-01-14 18:53:15 -08003701 ring->tail = adapter->io_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003702
3703 ixgbe_configure_srrctl(adapter, ring);
3704 ixgbe_configure_rscctl(adapter, ring);
3705
3706 if (hw->mac.type == ixgbe_mac_82598EB) {
3707 /*
3708 * enable cache line friendly hardware writes:
3709 * PTHRESH=32 descriptors (half the internal cache),
3710 * this also removes ugly rx_no_buffer_count increment
3711 * HTHRESH=4 descriptors (to minimize latency on fetch)
3712 * WTHRESH=8 burst writeback up to two cache lines
3713 */
3714 rxdctl &= ~0x3FFFFF;
3715 rxdctl |= 0x080420;
3716 }
3717
3718 /* enable receive descriptor ring */
3719 rxdctl |= IXGBE_RXDCTL_ENABLE;
3720 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3721
3722 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003723 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003724}
3725
Alexander Duyck48654522010-08-19 13:36:27 +00003726static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3727{
3728 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003729 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend2a47fa42013-11-06 09:54:52 -08003730 u16 pool;
Alexander Duyck48654522010-08-19 13:36:27 +00003731
3732 /* PSRTYPE must be initialized in non 82598 adapters */
3733 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003734 IXGBE_PSRTYPE_UDPHDR |
3735 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003736 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003737 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003738
3739 if (hw->mac.type == ixgbe_mac_82598EB)
3740 return;
3741
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003742 if (rss_i > 3)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003743 psrtype |= 2u << 29;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003744 else if (rss_i > 1)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07003745 psrtype |= 1u << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003746
John Fastabend2a47fa42013-11-06 09:54:52 -08003747 for_each_set_bit(pool, &adapter->fwd_bitmask, 32)
3748 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
Alexander Duyck48654522010-08-19 13:36:27 +00003749}
3750
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003751static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3752{
3753 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003754 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003755 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003756 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003757
3758 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3759 return;
3760
3761 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003762 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3763 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003764 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003765 vmdctl |= IXGBE_VT_CTL_REPLEN;
3766 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003767
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003768 vf_shift = VMDQ_P(0) % 32;
3769 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003770
3771 /* Enable only the PF's pool for Tx/Rx */
Emil Tantilov11f2b492016-05-04 15:01:27 -07003772 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), GENMASK(31, vf_shift));
Alexander Duyck435b19f2012-05-18 06:34:08 +00003773 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
Emil Tantilov11f2b492016-05-04 15:01:27 -07003774 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), GENMASK(31, vf_shift));
Alexander Duyck435b19f2012-05-18 06:34:08 +00003775 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Don Skidmoreaa2bacb2015-04-09 22:03:22 -07003776 if (adapter->bridge_mode == BRIDGE_MODE_VEB)
Greg Rose9b735982012-11-08 02:41:35 +00003777 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003778
3779 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003780 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003781
Alexander Duyck16369562015-11-02 17:10:13 -08003782 /* clear VLAN promisc flag so VFTA will be updated if necessary */
3783 adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC;
3784
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003785 /*
3786 * Set up VF register offsets for selected VT Mode,
3787 * i.e. 32 or 64 VFs for SR-IOV
3788 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003789 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3790 case IXGBE_82599_VMDQ_8Q_MASK:
3791 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3792 break;
3793 case IXGBE_82599_VMDQ_4Q_MASK:
3794 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3795 break;
3796 default:
3797 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3798 break;
3799 }
3800
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003801 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3802
Greg Rosede4c7f62011-09-29 05:57:33 +00003803 for (i = 0; i < adapter->num_vfs; i++) {
Emil Tantilov77f192a2016-03-18 16:11:14 -07003804 /* configure spoof checking */
3805 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i,
3806 adapter->vfinfo[i].spoofchk_enabled);
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03003807
3808 /* Enable/Disable RSS query feature */
3809 ixgbe_ndo_set_vf_rss_query_en(adapter->netdev, i,
3810 adapter->vfinfo[i].rss_query_enabled);
Greg Rosede4c7f62011-09-29 05:57:33 +00003811 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003812}
3813
Alexander Duyck477de6e2010-08-19 13:38:11 +00003814static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003815{
Auke Kok9a799d72007-09-15 14:07:45 -07003816 struct ixgbe_hw *hw = &adapter->hw;
3817 struct net_device *netdev = adapter->netdev;
3818 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003819 struct ixgbe_ring *rx_ring;
3820 int i;
3821 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003822
Alexander Duyck477de6e2010-08-19 13:38:11 +00003823#ifdef IXGBE_FCOE
3824 /* adjust max frame to be able to do baby jumbo for FCoE */
3825 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3826 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3827 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3828
3829#endif /* IXGBE_FCOE */
Alexander Duyck872844d2012-08-15 02:10:43 +00003830
3831 /* adjust max frame to be at least the size of a standard frame */
3832 if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN))
3833 max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN);
3834
Alexander Duyck477de6e2010-08-19 13:38:11 +00003835 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3836 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3837 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3838 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3839
3840 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003841 }
3842
Auke Kok9a799d72007-09-15 14:07:45 -07003843 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003844 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3845 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003846 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3847
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003848 /*
3849 * Setup the HW Rx Head and Tail Descriptor Pointers and
3850 * the Base and Length of the Rx Descriptor Ring
3851 */
Auke Kok9a799d72007-09-15 14:07:45 -07003852 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003853 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003854 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3855 set_ring_rsc_enabled(rx_ring);
3856 else
3857 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003858 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003859}
3860
Alexander Duyck73670962010-08-19 13:38:34 +00003861static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3862{
3863 struct ixgbe_hw *hw = &adapter->hw;
3864 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3865
3866 switch (hw->mac.type) {
3867 case ixgbe_mac_82598EB:
3868 /*
3869 * For VMDq support of different descriptor types or
3870 * buffer sizes through the use of multiple SRRCTL
3871 * registers, RDRXCTL.MVMEN must be set to 1
3872 *
3873 * also, the manual doesn't mention it clearly but DCA hints
3874 * will only use queue 0's tags unless this bit is set. Side
3875 * effects of setting this bit are only that SRRCTL must be
3876 * fully programmed [0..15]
3877 */
3878 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3879 break;
Mark Rustad052a1a72015-08-08 16:19:04 -07003880 case ixgbe_mac_X550:
3881 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07003882 case ixgbe_mac_x550em_a:
Mark Rustadf961dda2015-08-08 16:19:09 -07003883 if (adapter->num_vfs)
3884 rdrxctl |= IXGBE_RDRXCTL_PSP;
3885 /* fall through for older HW */
Alexander Duyck73670962010-08-19 13:38:34 +00003886 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003887 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003888 /* Disable RSC for ACK packets */
3889 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3890 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3891 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3892 /* hardware requires some bits to be set by default */
3893 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3894 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3895 break;
3896 default:
3897 /* We should do nothing since we don't know this hardware */
3898 return;
3899 }
3900
3901 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3902}
3903
Alexander Duyck477de6e2010-08-19 13:38:11 +00003904/**
3905 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3906 * @adapter: board private structure
3907 *
3908 * Configure the Rx unit of the MAC after a reset.
3909 **/
3910static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3911{
3912 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003913 int i;
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003914 u32 rxctrl, rfctl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003915
3916 /* disable receives while setting up the descriptors */
Don Skidmore1f9ac572015-03-13 13:54:30 -07003917 hw->mac.ops.disable_rx(hw);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003918
3919 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003920 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003921
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003922 /* RSC Setup */
3923 rfctl = IXGBE_READ_REG(hw, IXGBE_RFCTL);
3924 rfctl &= ~IXGBE_RFCTL_RSC_DIS;
3925 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
3926 rfctl |= IXGBE_RFCTL_RSC_DIS;
Emil Tantilova21d0822016-08-10 11:19:23 -07003927
3928 /* disable NFS filtering */
3929 rfctl |= (IXGBE_RFCTL_NFSW_DIS | IXGBE_RFCTL_NFSR_DIS);
Jacob Keller6dcc28b2013-07-17 02:53:23 +00003930 IXGBE_WRITE_REG(hw, IXGBE_RFCTL, rfctl);
3931
Alexander Duyck9e10e042010-08-19 13:40:06 +00003932 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003933 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003934
Alexander Duyck477de6e2010-08-19 13:38:11 +00003935 /* set_rx_buffer_len must be called before ring initialization */
3936 ixgbe_set_rx_buffer_len(adapter);
3937
3938 /*
3939 * Setup the HW Rx Head and Tail Descriptor Pointers and
3940 * the Base and Length of the Rx Descriptor Ring
3941 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003942 for (i = 0; i < adapter->num_rx_queues; i++)
3943 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003944
Don Skidmore1f9ac572015-03-13 13:54:30 -07003945 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003946 /* disable drop enable for 82598 parts */
3947 if (hw->mac.type == ixgbe_mac_82598EB)
3948 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3949
3950 /* enable all receives */
3951 rxctrl |= IXGBE_RXCTRL_RXEN;
3952 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003953}
3954
Patrick McHardy80d5c362013-04-19 02:04:28 +00003955static int ixgbe_vlan_rx_add_vid(struct net_device *netdev,
3956 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003957{
3958 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003959 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003960
3961 /* add VID to filter table */
Alexander Duyck18be4fc2016-01-06 22:48:44 -08003962 if (!vid || !(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
3963 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true, !!vid);
3964
Jesse Grossf62bbb52010-10-20 13:56:10 +00003965 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003966
3967 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003968}
3969
Alexander Duycke1d0a2a2015-11-02 17:10:19 -08003970static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
3971{
3972 u32 vlvf;
3973 int idx;
3974
3975 /* short cut the special case */
3976 if (vlan == 0)
3977 return 0;
3978
3979 /* Search for the vlan id in the VLVF entries */
3980 for (idx = IXGBE_VLVF_ENTRIES; --idx;) {
3981 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(idx));
3982 if ((vlvf & VLAN_VID_MASK) == vlan)
3983 break;
3984 }
3985
3986 return idx;
3987}
3988
3989void ixgbe_update_pf_promisc_vlvf(struct ixgbe_adapter *adapter, u32 vid)
3990{
3991 struct ixgbe_hw *hw = &adapter->hw;
3992 u32 bits, word;
3993 int idx;
3994
3995 idx = ixgbe_find_vlvf_entry(hw, vid);
3996 if (!idx)
3997 return;
3998
3999 /* See if any other pools are set for this VLAN filter
4000 * entry other than the PF.
4001 */
4002 word = idx * 2 + (VMDQ_P(0) / 32);
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004003 bits = ~BIT(VMDQ_P(0) % 32);
Alexander Duycke1d0a2a2015-11-02 17:10:19 -08004004 bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
4005
4006 /* Disable the filter so this falls into the default pool. */
4007 if (!bits && !IXGBE_READ_REG(hw, IXGBE_VLVFB(word ^ 1))) {
4008 if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4009 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), 0);
4010 IXGBE_WRITE_REG(hw, IXGBE_VLVF(idx), 0);
4011 }
4012}
4013
Patrick McHardy80d5c362013-04-19 02:04:28 +00004014static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev,
4015 __be16 proto, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07004016{
4017 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004018 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004019
Auke Kok9a799d72007-09-15 14:07:45 -07004020 /* remove VID from filter table */
Alexander Duyck18be4fc2016-01-06 22:48:44 -08004021 if (vid && !(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
Alexander Duycke1d0a2a2015-11-02 17:10:19 -08004022 hw->mac.ops.set_vfta(hw, vid, VMDQ_P(0), false, true);
4023
Jesse Grossf62bbb52010-10-20 13:56:10 +00004024 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05004025
4026 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004027}
4028
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004029/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00004030 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
4031 * @adapter: driver data
4032 */
4033static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
4034{
4035 struct ixgbe_hw *hw = &adapter->hw;
4036 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004037 int i, j;
4038
4039 switch (hw->mac.type) {
4040 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00004041 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4042 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004043 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4044 break;
4045 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004046 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004047 case ixgbe_mac_X550:
4048 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07004049 case ixgbe_mac_x550em_a:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004050 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08004051 struct ixgbe_ring *ring = adapter->rx_ring[i];
4052
4053 if (ring->l2_accel_priv)
4054 continue;
4055 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004056 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
4057 vlnctrl &= ~IXGBE_RXDCTL_VME;
4058 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
4059 }
4060 break;
4061 default:
4062 break;
4063 }
4064}
4065
4066/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00004067 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004068 * @adapter: driver data
4069 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00004070static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004071{
4072 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00004073 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004074 int i, j;
4075
4076 switch (hw->mac.type) {
4077 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00004078 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4079 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004080 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4081 break;
4082 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004083 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004084 case ixgbe_mac_X550:
4085 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07004086 case ixgbe_mac_x550em_a:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004087 for (i = 0; i < adapter->num_rx_queues; i++) {
John Fastabend2a47fa42013-11-06 09:54:52 -08004088 struct ixgbe_ring *ring = adapter->rx_ring[i];
4089
4090 if (ring->l2_accel_priv)
4091 continue;
4092 j = ring->reg_idx;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07004093 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
4094 vlnctrl |= IXGBE_RXDCTL_VME;
4095 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
4096 }
4097 break;
4098 default:
4099 break;
4100 }
4101}
4102
Alexander Duyck16369562015-11-02 17:10:13 -08004103static void ixgbe_vlan_promisc_enable(struct ixgbe_adapter *adapter)
4104{
4105 struct ixgbe_hw *hw = &adapter->hw;
4106 u32 vlnctrl, i;
4107
Alexander Duyckf60439b2016-08-11 14:51:56 -07004108 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4109
Emil Tantilov691e4122016-08-22 16:17:46 -07004110 if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) {
4111 /* For VMDq and SR-IOV we must leave VLAN filtering enabled */
4112 vlnctrl |= IXGBE_VLNCTRL_VFE;
4113 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4114 } else {
Alexander Duyckf60439b2016-08-11 14:51:56 -07004115 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
Alexander Duyck16369562015-11-02 17:10:13 -08004116 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4117 return;
4118 }
4119
Emil Tantilov691e4122016-08-22 16:17:46 -07004120 /* Nothing to do for 82598 */
4121 if (hw->mac.type == ixgbe_mac_82598EB)
4122 return;
4123
Alexander Duyck16369562015-11-02 17:10:13 -08004124 /* We are already in VLAN promisc, nothing to do */
4125 if (adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)
4126 return;
4127
4128 /* Set flag so we don't redo unnecessary work */
4129 adapter->flags2 |= IXGBE_FLAG2_VLAN_PROMISC;
4130
4131 /* Add PF to all active pools */
4132 for (i = IXGBE_VLVF_ENTRIES; --i;) {
4133 u32 reg_offset = IXGBE_VLVFB(i * 2 + VMDQ_P(0) / 32);
4134 u32 vlvfb = IXGBE_READ_REG(hw, reg_offset);
4135
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004136 vlvfb |= BIT(VMDQ_P(0) % 32);
Alexander Duyck16369562015-11-02 17:10:13 -08004137 IXGBE_WRITE_REG(hw, reg_offset, vlvfb);
4138 }
4139
4140 /* Set all bits in the VLAN filter table array */
4141 for (i = hw->mac.vft_size; i--;)
4142 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), ~0U);
4143}
4144
4145#define VFTA_BLOCK_SIZE 8
4146static void ixgbe_scrub_vfta(struct ixgbe_adapter *adapter, u32 vfta_offset)
4147{
4148 struct ixgbe_hw *hw = &adapter->hw;
4149 u32 vfta[VFTA_BLOCK_SIZE] = { 0 };
4150 u32 vid_start = vfta_offset * 32;
4151 u32 vid_end = vid_start + (VFTA_BLOCK_SIZE * 32);
4152 u32 i, vid, word, bits;
4153
4154 for (i = IXGBE_VLVF_ENTRIES; --i;) {
4155 u32 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(i));
4156
4157 /* pull VLAN ID from VLVF */
4158 vid = vlvf & VLAN_VID_MASK;
4159
4160 /* only concern outselves with a certain range */
4161 if (vid < vid_start || vid >= vid_end)
4162 continue;
4163
4164 if (vlvf) {
4165 /* record VLAN ID in VFTA */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004166 vfta[(vid - vid_start) / 32] |= BIT(vid % 32);
Alexander Duyck16369562015-11-02 17:10:13 -08004167
4168 /* if PF is part of this then continue */
4169 if (test_bit(vid, adapter->active_vlans))
4170 continue;
4171 }
4172
4173 /* remove PF from the pool */
4174 word = i * 2 + VMDQ_P(0) / 32;
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004175 bits = ~BIT(VMDQ_P(0) % 32);
Alexander Duyck16369562015-11-02 17:10:13 -08004176 bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
4177 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), bits);
4178 }
4179
4180 /* extract values from active_vlans and write back to VFTA */
4181 for (i = VFTA_BLOCK_SIZE; i--;) {
4182 vid = (vfta_offset + i) * 32;
4183 word = vid / BITS_PER_LONG;
4184 bits = vid % BITS_PER_LONG;
4185
4186 vfta[i] |= adapter->active_vlans[word] >> bits;
4187
4188 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vfta_offset + i), vfta[i]);
4189 }
4190}
4191
4192static void ixgbe_vlan_promisc_disable(struct ixgbe_adapter *adapter)
4193{
4194 struct ixgbe_hw *hw = &adapter->hw;
4195 u32 vlnctrl, i;
4196
Alexander Duyckf60439b2016-08-11 14:51:56 -07004197 /* Set VLAN filtering to enabled */
4198 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4199 vlnctrl |= IXGBE_VLNCTRL_VFE;
4200 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4201
Emil Tantilov691e4122016-08-22 16:17:46 -07004202 if (!(adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) ||
4203 hw->mac.type == ixgbe_mac_82598EB)
Alexander Duyck16369562015-11-02 17:10:13 -08004204 return;
Alexander Duyck16369562015-11-02 17:10:13 -08004205
4206 /* We are not in VLAN promisc, nothing to do */
4207 if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4208 return;
4209
4210 /* Set flag so we don't redo unnecessary work */
4211 adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC;
4212
4213 for (i = 0; i < hw->mac.vft_size; i += VFTA_BLOCK_SIZE)
4214 ixgbe_scrub_vfta(adapter, i);
4215}
4216
Auke Kok9a799d72007-09-15 14:07:45 -07004217static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
4218{
Alexander Duyck06bb1c32016-01-06 22:48:50 -08004219 u16 vid = 1;
Auke Kok9a799d72007-09-15 14:07:45 -07004220
Patrick McHardy80d5c362013-04-19 02:04:28 +00004221 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004222
Alexander Duyck06bb1c32016-01-06 22:48:50 -08004223 for_each_set_bit_from(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00004224 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kok9a799d72007-09-15 14:07:45 -07004225}
4226
4227/**
Jacob Kellerb335e752014-03-25 07:45:27 +00004228 * ixgbe_write_mc_addr_list - write multicast addresses to MTA
4229 * @netdev: network interface device structure
4230 *
4231 * Writes multicast address list to the MTA hash table.
4232 * Returns: -ENOMEM on failure
4233 * 0 on no addresses written
4234 * X on writing X addresses to MTA
4235 **/
4236static int ixgbe_write_mc_addr_list(struct net_device *netdev)
4237{
4238 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4239 struct ixgbe_hw *hw = &adapter->hw;
4240
4241 if (!netif_running(netdev))
4242 return 0;
4243
4244 if (hw->mac.ops.update_mc_addr_list)
4245 hw->mac.ops.update_mc_addr_list(hw, netdev);
4246 else
4247 return -ENOMEM;
4248
4249#ifdef CONFIG_PCI_IOV
Jacob Keller5d7daa32014-03-29 06:51:25 +00004250 ixgbe_restore_vf_multicasts(adapter);
Jacob Kellerb335e752014-03-25 07:45:27 +00004251#endif
4252
4253 return netdev_mc_count(netdev);
4254}
4255
Jacob Keller5d7daa32014-03-29 06:51:25 +00004256#ifdef CONFIG_PCI_IOV
4257void ixgbe_full_sync_mac_table(struct ixgbe_adapter *adapter)
4258{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004259 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004260 struct ixgbe_hw *hw = &adapter->hw;
4261 int i;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004262
4263 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4264 mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED;
4265
4266 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4267 hw->mac.ops.set_rar(hw, i,
4268 mac_table->addr,
4269 mac_table->pool,
Jacob Keller5d7daa32014-03-29 06:51:25 +00004270 IXGBE_RAH_AV);
4271 else
4272 hw->mac.ops.clear_rar(hw, i);
Jacob Keller5d7daa32014-03-29 06:51:25 +00004273 }
4274}
Jacob Keller5d7daa32014-03-29 06:51:25 +00004275
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004276#endif
Jacob Keller5d7daa32014-03-29 06:51:25 +00004277static void ixgbe_sync_mac_table(struct ixgbe_adapter *adapter)
4278{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004279 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004280 struct ixgbe_hw *hw = &adapter->hw;
4281 int i;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004282
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004283 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4284 if (!(mac_table->state & IXGBE_MAC_STATE_MODIFIED))
4285 continue;
4286
4287 mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED;
4288
4289 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4290 hw->mac.ops.set_rar(hw, i,
4291 mac_table->addr,
4292 mac_table->pool,
4293 IXGBE_RAH_AV);
4294 else
4295 hw->mac.ops.clear_rar(hw, i);
Jacob Keller5d7daa32014-03-29 06:51:25 +00004296 }
4297}
4298
4299static void ixgbe_flush_sw_mac_table(struct ixgbe_adapter *adapter)
4300{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004301 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004302 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004303 int i;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004304
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004305 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4306 mac_table->state |= IXGBE_MAC_STATE_MODIFIED;
4307 mac_table->state &= ~IXGBE_MAC_STATE_IN_USE;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004308 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004309
Jacob Keller5d7daa32014-03-29 06:51:25 +00004310 ixgbe_sync_mac_table(adapter);
4311}
4312
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004313static int ixgbe_available_rars(struct ixgbe_adapter *adapter, u16 pool)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004314{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004315 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004316 struct ixgbe_hw *hw = &adapter->hw;
4317 int i, count = 0;
4318
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004319 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4320 /* do not count default RAR as available */
4321 if (mac_table->state & IXGBE_MAC_STATE_DEFAULT)
4322 continue;
4323
4324 /* only count unused and addresses that belong to us */
4325 if (mac_table->state & IXGBE_MAC_STATE_IN_USE) {
4326 if (mac_table->pool != pool)
4327 continue;
4328 }
4329
4330 count++;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004331 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004332
Jacob Keller5d7daa32014-03-29 06:51:25 +00004333 return count;
4334}
4335
4336/* this function destroys the first RAR entry */
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004337static void ixgbe_mac_set_default_filter(struct ixgbe_adapter *adapter)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004338{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004339 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004340 struct ixgbe_hw *hw = &adapter->hw;
4341
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004342 memcpy(&mac_table->addr, hw->mac.addr, ETH_ALEN);
4343 mac_table->pool = VMDQ_P(0);
4344
4345 mac_table->state = IXGBE_MAC_STATE_DEFAULT | IXGBE_MAC_STATE_IN_USE;
4346
4347 hw->mac.ops.set_rar(hw, 0, mac_table->addr, mac_table->pool,
Jacob Keller5d7daa32014-03-29 06:51:25 +00004348 IXGBE_RAH_AV);
4349}
4350
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004351int ixgbe_add_mac_filter(struct ixgbe_adapter *adapter,
4352 const u8 *addr, u16 pool)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004353{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004354 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004355 struct ixgbe_hw *hw = &adapter->hw;
4356 int i;
4357
4358 if (is_zero_ether_addr(addr))
4359 return -EINVAL;
4360
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004361 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4362 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004363 continue;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004364
4365 ether_addr_copy(mac_table->addr, addr);
4366 mac_table->pool = pool;
4367
4368 mac_table->state |= IXGBE_MAC_STATE_MODIFIED |
4369 IXGBE_MAC_STATE_IN_USE;
4370
Jacob Keller5d7daa32014-03-29 06:51:25 +00004371 ixgbe_sync_mac_table(adapter);
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004372
Jacob Keller5d7daa32014-03-29 06:51:25 +00004373 return i;
4374 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004375
Jacob Keller5d7daa32014-03-29 06:51:25 +00004376 return -ENOMEM;
4377}
4378
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004379int ixgbe_del_mac_filter(struct ixgbe_adapter *adapter,
4380 const u8 *addr, u16 pool)
Jacob Keller5d7daa32014-03-29 06:51:25 +00004381{
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004382 struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
Jacob Keller5d7daa32014-03-29 06:51:25 +00004383 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004384 int i;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004385
4386 if (is_zero_ether_addr(addr))
4387 return -EINVAL;
4388
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004389 /* search table for addr, if found clear IN_USE flag and sync */
4390 for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4391 /* we can only delete an entry if it is in use */
4392 if (!(mac_table->state & IXGBE_MAC_STATE_IN_USE))
4393 continue;
4394 /* we only care about entries that belong to the given pool */
4395 if (mac_table->pool != pool)
4396 continue;
4397 /* we only care about a specific MAC address */
4398 if (!ether_addr_equal(addr, mac_table->addr))
4399 continue;
4400
4401 mac_table->state |= IXGBE_MAC_STATE_MODIFIED;
4402 mac_table->state &= ~IXGBE_MAC_STATE_IN_USE;
4403
4404 ixgbe_sync_mac_table(adapter);
4405
4406 return 0;
Jacob Keller5d7daa32014-03-29 06:51:25 +00004407 }
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004408
Jacob Keller5d7daa32014-03-29 06:51:25 +00004409 return -ENOMEM;
4410}
Jacob Kellerb335e752014-03-25 07:45:27 +00004411/**
Alexander Duyck28500622010-06-15 09:25:48 +00004412 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
4413 * @netdev: network interface device structure
4414 *
4415 * Writes unicast address list to the RAR table.
4416 * Returns: -ENOMEM on failure/insufficient address space
4417 * 0 on no addresses written
4418 * X on writing X addresses to the RAR table
4419 **/
Jacob Keller5d7daa32014-03-29 06:51:25 +00004420static int ixgbe_write_uc_addr_list(struct net_device *netdev, int vfn)
Alexander Duyck28500622010-06-15 09:25:48 +00004421{
4422 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck28500622010-06-15 09:25:48 +00004423 int count = 0;
4424
4425 /* return ENOMEM indicating insufficient memory for addresses */
Alexander Duyckc9f53e62015-10-22 16:26:30 -07004426 if (netdev_uc_count(netdev) > ixgbe_available_rars(adapter, vfn))
Alexander Duyck28500622010-06-15 09:25:48 +00004427 return -ENOMEM;
4428
John Fastabend95447462012-05-31 12:42:26 +00004429 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00004430 struct netdev_hw_addr *ha;
Alexander Duyck28500622010-06-15 09:25:48 +00004431 netdev_for_each_uc_addr(ha, netdev) {
Jacob Keller5d7daa32014-03-29 06:51:25 +00004432 ixgbe_del_mac_filter(adapter, ha->addr, vfn);
4433 ixgbe_add_mac_filter(adapter, ha->addr, vfn);
Alexander Duyck28500622010-06-15 09:25:48 +00004434 count++;
4435 }
4436 }
Alexander Duyck28500622010-06-15 09:25:48 +00004437 return count;
4438}
4439
Alexander Duyck0f079d22015-10-22 16:26:36 -07004440static int ixgbe_uc_sync(struct net_device *netdev, const unsigned char *addr)
4441{
4442 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4443 int ret;
4444
4445 ret = ixgbe_add_mac_filter(adapter, addr, VMDQ_P(0));
4446
4447 return min_t(int, ret, 0);
4448}
4449
4450static int ixgbe_uc_unsync(struct net_device *netdev, const unsigned char *addr)
4451{
4452 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4453
4454 ixgbe_del_mac_filter(adapter, addr, VMDQ_P(0));
4455
4456 return 0;
4457}
4458
Alexander Duyck28500622010-06-15 09:25:48 +00004459/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07004460 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07004461 * @netdev: network interface device structure
4462 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07004463 * The set_rx_method entry point is called whenever the unicast/multicast
4464 * address list or the network interface flags are updated. This routine is
4465 * responsible for configuring the hardware for proper unicast, multicast and
4466 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07004467 **/
Greg Rose7f870472010-01-09 02:25:29 +00004468void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07004469{
4470 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4471 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00004472 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
Alexander Duyck0c5a6162016-03-10 10:01:10 -08004473 netdev_features_t features = netdev->features;
Alexander Duyck28500622010-06-15 09:25:48 +00004474 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07004475
4476 /* Check for Promiscuous and All Multicast modes */
Auke Kok9a799d72007-09-15 14:07:45 -07004477 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4478
Alexander Duyckf5dc4422010-08-19 13:36:49 +00004479 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00004480 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00004481 fctrl |= IXGBE_FCTRL_BAM;
4482 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
4483 fctrl |= IXGBE_FCTRL_PMCF;
4484
Alexander Duyck28500622010-06-15 09:25:48 +00004485 /* clear the bits we are changing the status of */
4486 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Auke Kok9a799d72007-09-15 14:07:45 -07004487 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00004488 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07004489 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Jacob Kellerb335e752014-03-25 07:45:27 +00004490 vmolr |= IXGBE_VMOLR_MPE;
Alexander Duyck0c5a6162016-03-10 10:01:10 -08004491 features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
Auke Kok9a799d72007-09-15 14:07:45 -07004492 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07004493 if (netdev->flags & IFF_ALLMULTI) {
4494 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00004495 vmolr |= IXGBE_VMOLR_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07004496 }
Emil Tantilove433ea12010-05-13 17:33:00 +00004497 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00004498 }
4499
4500 /*
4501 * Write addresses to available RAR registers, if there is not
4502 * sufficient space to store all the addresses then enable
4503 * unicast promiscuous mode
4504 */
Alexander Duyck0f079d22015-10-22 16:26:36 -07004505 if (__dev_uc_sync(netdev, ixgbe_uc_sync, ixgbe_uc_unsync)) {
John Fastabend9dcb3732012-04-15 06:44:25 +00004506 fctrl |= IXGBE_FCTRL_UPE;
4507 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00004508 }
4509
Emil Tantilovcf789592013-10-26 08:13:20 +00004510 /* Write addresses to the MTA, if the attempt fails
4511 * then we should just turn on promiscuous mode so
4512 * that we can at least receive multicast traffic
4513 */
Jacob Kellerb335e752014-03-25 07:45:27 +00004514 count = ixgbe_write_mc_addr_list(netdev);
4515 if (count < 0) {
4516 fctrl |= IXGBE_FCTRL_MPE;
4517 vmolr |= IXGBE_VMOLR_MPE;
4518 } else if (count) {
4519 vmolr |= IXGBE_VMOLR_ROMPE;
4520 }
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004521
4522 if (hw->mac.type != ixgbe_mac_82598EB) {
4523 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00004524 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
4525 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004526 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07004527 }
4528
Ben Greear3f2d1c02012-03-08 08:28:41 +00004529 /* This is useful for sniffing bad packets. */
Alexander Duyck0c5a6162016-03-10 10:01:10 -08004530 if (features & NETIF_F_RXALL) {
Ben Greear3f2d1c02012-03-08 08:28:41 +00004531 /* UPE and MPE will be handled by normal PROMISC logic
4532 * in e1000e_set_rx_mode */
4533 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
4534 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
4535 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
4536
4537 fctrl &= ~(IXGBE_FCTRL_DPF);
4538 /* NOTE: VLAN filtering is disabled by setting PROMISC */
4539 }
4540
Auke Kok9a799d72007-09-15 14:07:45 -07004541 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00004542
Alexander Duyck0c5a6162016-03-10 10:01:10 -08004543 if (features & NETIF_F_HW_VLAN_CTAG_RX)
Jesse Grossf62bbb52010-10-20 13:56:10 +00004544 ixgbe_vlan_strip_enable(adapter);
4545 else
4546 ixgbe_vlan_strip_disable(adapter);
Alexander Duyck0c5a6162016-03-10 10:01:10 -08004547
4548 if (features & NETIF_F_HW_VLAN_CTAG_FILTER)
4549 ixgbe_vlan_promisc_disable(adapter);
4550 else
4551 ixgbe_vlan_promisc_enable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004552}
4553
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004554static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
4555{
4556 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004557
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004558 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
4559 ixgbe_qv_init_lock(adapter->q_vector[q_idx]);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004560 napi_enable(&adapter->q_vector[q_idx]->napi);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004561 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004562}
4563
4564static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
4565{
4566 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004567
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004568 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004569 napi_disable(&adapter->q_vector[q_idx]->napi);
Jacob Keller27d9ce42013-09-21 05:05:44 +00004570 while (!ixgbe_qv_disable(adapter->q_vector[q_idx])) {
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004571 pr_info("QV %d locked\n", q_idx);
Jacob Keller27d9ce42013-09-21 05:05:44 +00004572 usleep_range(1000, 20000);
Eliezer Tamir5a85e732013-06-10 11:40:20 +03004573 }
4574 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004575}
4576
Emil Tantilova21d0822016-08-10 11:19:23 -07004577static void ixgbe_clear_udp_tunnel_port(struct ixgbe_adapter *adapter, u32 mask)
Mark Rustad67359c32015-06-15 11:33:25 -07004578{
Emil Tantilova21d0822016-08-10 11:19:23 -07004579 struct ixgbe_hw *hw = &adapter->hw;
4580 u32 vxlanctrl;
4581
4582 if (!(adapter->flags & (IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE |
4583 IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)))
4584 return;
4585
4586 vxlanctrl = IXGBE_READ_REG(hw, IXGBE_VXLANCTRL) && ~mask;
4587 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, vxlanctrl);
4588
4589 if (mask & IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK)
Mark Rustad67359c32015-06-15 11:33:25 -07004590 adapter->vxlan_port = 0;
Emil Tantilova21d0822016-08-10 11:19:23 -07004591
4592 if (mask & IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK)
4593 adapter->geneve_port = 0;
Mark Rustad67359c32015-06-15 11:33:25 -07004594}
4595
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004596#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004597/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08004598 * ixgbe_configure_dcb - Configure DCB hardware
4599 * @adapter: ixgbe adapter struct
4600 *
4601 * This is called by the driver on open to configure the DCB hardware.
4602 * This is also called by the gennetlink interface when reconfiguring
4603 * the DCB state.
4604 */
4605static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
4606{
4607 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00004608 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004609
Alexander Duyck67ebd792010-08-19 13:34:04 +00004610 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
4611 if (hw->mac.type == ixgbe_mac_82598EB)
4612 netif_set_gso_max_size(adapter->netdev, 65536);
4613 return;
4614 }
4615
4616 if (hw->mac.type == ixgbe_mac_82598EB)
4617 netif_set_gso_max_size(adapter->netdev, 32768);
4618
John Fastabendb1208182011-10-15 05:00:10 +00004619#ifdef IXGBE_FCOE
4620 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
4621 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
4622#endif
4623
Alexander Duyck01fa7d92010-11-16 19:26:53 -08004624 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00004625 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00004626 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
4627 DCB_TX_CONFIG);
4628 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
4629 DCB_RX_CONFIG);
4630 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00004631 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
4632 ixgbe_dcb_hw_ets(&adapter->hw,
4633 adapter->ixgbe_ieee_ets,
4634 max_frame);
4635 ixgbe_dcb_hw_pfc_config(&adapter->hw,
4636 adapter->ixgbe_ieee_pfc->pfc_en,
4637 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00004638 }
John Fastabend8187cd42011-02-23 05:58:08 +00004639
4640 /* Enable RSS Hash per TC */
4641 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00004642 u32 msb = 0;
4643 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00004644
Alexander Duyckd411a932012-06-30 00:14:01 +00004645 while (rss_i) {
4646 msb++;
4647 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00004648 }
Alexander Duyckd411a932012-06-30 00:14:01 +00004649
Alexander Duyck4ae63732012-06-22 06:46:33 +00004650 /* write msb to all 8 TCs in one write */
4651 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00004652 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004653}
John Fastabend9da712d2011-08-23 03:14:22 +00004654#endif
4655
4656/* Additional bittime to account for IXGBE framing */
4657#define IXGBE_ETH_FRAMING 20
4658
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004659/**
John Fastabend9da712d2011-08-23 03:14:22 +00004660 * ixgbe_hpbthresh - calculate high water mark for flow control
4661 *
4662 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004663 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004664 */
4665static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
4666{
4667 struct ixgbe_hw *hw = &adapter->hw;
4668 struct net_device *dev = adapter->netdev;
4669 int link, tc, kb, marker;
4670 u32 dv_id, rx_pba;
4671
4672 /* Calculate max LAN frame size */
4673 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
4674
4675#ifdef IXGBE_FCOE
4676 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00004677 if ((dev->features & NETIF_F_FCOE_MTU) &&
4678 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
4679 (pb == ixgbe_fcoe_get_tc(adapter)))
4680 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004681#endif
Jacob Kellere5776622014-04-05 02:35:52 +00004682
John Fastabend9da712d2011-08-23 03:14:22 +00004683 /* Calculate delay value for device */
4684 switch (hw->mac.type) {
4685 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004686 case ixgbe_mac_X550:
4687 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07004688 case ixgbe_mac_x550em_a:
John Fastabend9da712d2011-08-23 03:14:22 +00004689 dv_id = IXGBE_DV_X540(link, tc);
4690 break;
4691 default:
4692 dv_id = IXGBE_DV(link, tc);
4693 break;
4694 }
4695
4696 /* Loopback switch introduces additional latency */
4697 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4698 dv_id += IXGBE_B2BT(tc);
4699
4700 /* Delay value is calculated in bit times convert to KB */
4701 kb = IXGBE_BT2KB(dv_id);
4702 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
4703
4704 marker = rx_pba - kb;
4705
4706 /* It is possible that the packet buffer is not large enough
4707 * to provide required headroom. In this case throw an error
4708 * to user and a do the best we can.
4709 */
4710 if (marker < 0) {
4711 e_warn(drv, "Packet Buffer(%i) can not provide enough"
4712 "headroom to support flow control."
4713 "Decrease MTU or number of traffic classes\n", pb);
4714 marker = tc + 1;
4715 }
4716
4717 return marker;
4718}
4719
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004720/**
John Fastabend9da712d2011-08-23 03:14:22 +00004721 * ixgbe_lpbthresh - calculate low water mark for for flow control
4722 *
4723 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00004724 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00004725 */
Jacob Kellere5776622014-04-05 02:35:52 +00004726static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter, int pb)
John Fastabend9da712d2011-08-23 03:14:22 +00004727{
4728 struct ixgbe_hw *hw = &adapter->hw;
4729 struct net_device *dev = adapter->netdev;
4730 int tc;
4731 u32 dv_id;
4732
4733 /* Calculate max LAN frame size */
4734 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
4735
Jacob Kellere5776622014-04-05 02:35:52 +00004736#ifdef IXGBE_FCOE
4737 /* FCoE traffic class uses FCOE jumbo frames */
4738 if ((dev->features & NETIF_F_FCOE_MTU) &&
4739 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
4740 (pb == netdev_get_prio_tc_map(dev, adapter->fcoe.up)))
4741 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
4742#endif
4743
John Fastabend9da712d2011-08-23 03:14:22 +00004744 /* Calculate delay value for device */
4745 switch (hw->mac.type) {
4746 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00004747 case ixgbe_mac_X550:
4748 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07004749 case ixgbe_mac_x550em_a:
John Fastabend9da712d2011-08-23 03:14:22 +00004750 dv_id = IXGBE_LOW_DV_X540(tc);
4751 break;
4752 default:
4753 dv_id = IXGBE_LOW_DV(tc);
4754 break;
4755 }
4756
4757 /* Delay value is calculated in bit times convert to KB */
4758 return IXGBE_BT2KB(dv_id);
4759}
4760
4761/*
4762 * ixgbe_pbthresh_setup - calculate and setup high low water marks
4763 */
4764static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
4765{
4766 struct ixgbe_hw *hw = &adapter->hw;
4767 int num_tc = netdev_get_num_tc(adapter->netdev);
4768 int i;
4769
4770 if (!num_tc)
4771 num_tc = 1;
4772
John Fastabend9da712d2011-08-23 03:14:22 +00004773 for (i = 0; i < num_tc; i++) {
4774 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
Jacob Kellere5776622014-04-05 02:35:52 +00004775 hw->fc.low_water[i] = ixgbe_lpbthresh(adapter, i);
John Fastabend9da712d2011-08-23 03:14:22 +00004776
4777 /* Low water marks must not be larger than high water marks */
Jacob Kellere5776622014-04-05 02:35:52 +00004778 if (hw->fc.low_water[i] > hw->fc.high_water[i])
4779 hw->fc.low_water[i] = 0;
John Fastabend9da712d2011-08-23 03:14:22 +00004780 }
Jacob Kellere5776622014-04-05 02:35:52 +00004781
4782 for (; i < MAX_TRAFFIC_CLASS; i++)
4783 hw->fc.high_water[i] = 0;
John Fastabend9da712d2011-08-23 03:14:22 +00004784}
John Fastabend80605c652011-05-02 12:34:10 +00004785
4786static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
4787{
John Fastabend80605c652011-05-02 12:34:10 +00004788 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00004789 int hdrm;
4790 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00004791
4792 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4793 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00004794 hdrm = 32 << adapter->fdir_pballoc;
4795 else
4796 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00004797
Alexander Duyckf7e10272011-07-21 00:40:35 +00004798 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00004799 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00004800}
4801
Alexander Duycke4911d52011-05-11 07:18:52 +00004802static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
4803{
4804 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004805 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00004806 struct ixgbe_fdir_filter *filter;
4807
4808 spin_lock(&adapter->fdir_perfect_lock);
4809
4810 if (!hlist_empty(&adapter->fdir_filter_list))
4811 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
4812
Sasha Levinb67bfe02013-02-27 17:06:00 -08004813 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00004814 &adapter->fdir_filter_list, fdir_node) {
4815 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00004816 &filter->filter,
4817 filter->sw_idx,
4818 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
4819 IXGBE_FDIR_DROP_QUEUE :
4820 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00004821 }
4822
4823 spin_unlock(&adapter->fdir_perfect_lock);
4824}
4825
John Fastabend2a47fa42013-11-06 09:54:52 -08004826static void ixgbe_macvlan_set_rx_mode(struct net_device *dev, unsigned int pool,
4827 struct ixgbe_adapter *adapter)
4828{
4829 struct ixgbe_hw *hw = &adapter->hw;
4830 u32 vmolr;
4831
4832 /* No unicast promiscuous support for VMDQ devices. */
4833 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
4834 vmolr |= (IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
4835
4836 /* clear the affected bit */
4837 vmolr &= ~IXGBE_VMOLR_MPE;
4838
4839 if (dev->flags & IFF_ALLMULTI) {
4840 vmolr |= IXGBE_VMOLR_MPE;
4841 } else {
4842 vmolr |= IXGBE_VMOLR_ROMPE;
4843 hw->mac.ops.update_mc_addr_list(hw, dev);
4844 }
Jacob Keller5d7daa32014-03-29 06:51:25 +00004845 ixgbe_write_uc_addr_list(adapter->netdev, pool);
John Fastabend2a47fa42013-11-06 09:54:52 -08004846 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
4847}
4848
John Fastabend2a47fa42013-11-06 09:54:52 -08004849static void ixgbe_fwd_psrtype(struct ixgbe_fwd_adapter *vadapter)
4850{
4851 struct ixgbe_adapter *adapter = vadapter->real_adapter;
John Fastabend219354d2013-11-08 00:50:32 -08004852 int rss_i = adapter->num_rx_queues_per_pool;
John Fastabend2a47fa42013-11-06 09:54:52 -08004853 struct ixgbe_hw *hw = &adapter->hw;
4854 u16 pool = vadapter->pool;
4855 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
4856 IXGBE_PSRTYPE_UDPHDR |
4857 IXGBE_PSRTYPE_IPV4HDR |
4858 IXGBE_PSRTYPE_L2HDR |
4859 IXGBE_PSRTYPE_IPV6HDR;
4860
4861 if (hw->mac.type == ixgbe_mac_82598EB)
4862 return;
4863
4864 if (rss_i > 3)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004865 psrtype |= 2u << 29;
John Fastabend2a47fa42013-11-06 09:54:52 -08004866 else if (rss_i > 1)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004867 psrtype |= 1u << 29;
John Fastabend2a47fa42013-11-06 09:54:52 -08004868
4869 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
4870}
4871
4872/**
4873 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
4874 * @rx_ring: ring to free buffers from
4875 **/
4876static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
4877{
4878 struct device *dev = rx_ring->dev;
4879 unsigned long size;
4880 u16 i;
4881
4882 /* ring already cleared, nothing to do */
4883 if (!rx_ring->rx_buffer_info)
4884 return;
4885
4886 /* Free all the Rx ring sk_buffs */
4887 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyck18cb6522014-11-14 00:56:29 +00004888 struct ixgbe_rx_buffer *rx_buffer = &rx_ring->rx_buffer_info[i];
John Fastabend2a47fa42013-11-06 09:54:52 -08004889
John Fastabend2a47fa42013-11-06 09:54:52 -08004890 if (rx_buffer->skb) {
4891 struct sk_buff *skb = rx_buffer->skb;
Alexander Duyck18cb6522014-11-14 00:56:29 +00004892 if (IXGBE_CB(skb)->page_released)
John Fastabend2a47fa42013-11-06 09:54:52 -08004893 dma_unmap_page(dev,
4894 IXGBE_CB(skb)->dma,
4895 ixgbe_rx_bufsz(rx_ring),
4896 DMA_FROM_DEVICE);
John Fastabend2a47fa42013-11-06 09:54:52 -08004897 dev_kfree_skb(skb);
Junwei Zhang4d2fcfb2014-10-22 15:29:03 +00004898 rx_buffer->skb = NULL;
John Fastabend2a47fa42013-11-06 09:54:52 -08004899 }
Alexander Duyck18cb6522014-11-14 00:56:29 +00004900
4901 if (!rx_buffer->page)
4902 continue;
4903
4904 dma_unmap_page(dev, rx_buffer->dma,
4905 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
4906 __free_pages(rx_buffer->page, ixgbe_rx_pg_order(rx_ring));
4907
John Fastabend2a47fa42013-11-06 09:54:52 -08004908 rx_buffer->page = NULL;
4909 }
4910
4911 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4912 memset(rx_ring->rx_buffer_info, 0, size);
4913
4914 /* Zero out the descriptor ring */
4915 memset(rx_ring->desc, 0, rx_ring->size);
4916
4917 rx_ring->next_to_alloc = 0;
4918 rx_ring->next_to_clean = 0;
4919 rx_ring->next_to_use = 0;
4920}
4921
4922static void ixgbe_disable_fwd_ring(struct ixgbe_fwd_adapter *vadapter,
4923 struct ixgbe_ring *rx_ring)
4924{
4925 struct ixgbe_adapter *adapter = vadapter->real_adapter;
4926 int index = rx_ring->queue_index + vadapter->rx_base_queue;
4927
4928 /* shutdown specific queue receive and wait for dma to settle */
4929 ixgbe_disable_rx_queue(adapter, rx_ring);
4930 usleep_range(10000, 20000);
Jacob Kellerb4f47a42016-04-13 16:08:22 -07004931 ixgbe_irq_disable_queues(adapter, BIT_ULL(index));
John Fastabend2a47fa42013-11-06 09:54:52 -08004932 ixgbe_clean_rx_ring(rx_ring);
4933 rx_ring->l2_accel_priv = NULL;
4934}
4935
John Fastabendae72c8d2013-11-09 07:11:26 +00004936static int ixgbe_fwd_ring_down(struct net_device *vdev,
4937 struct ixgbe_fwd_adapter *accel)
John Fastabend2a47fa42013-11-06 09:54:52 -08004938{
4939 struct ixgbe_adapter *adapter = accel->real_adapter;
4940 unsigned int rxbase = accel->rx_base_queue;
4941 unsigned int txbase = accel->tx_base_queue;
4942 int i;
4943
4944 netif_tx_stop_all_queues(vdev);
4945
4946 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4947 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4948 adapter->rx_ring[rxbase + i]->netdev = adapter->netdev;
4949 }
4950
4951 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4952 adapter->tx_ring[txbase + i]->l2_accel_priv = NULL;
4953 adapter->tx_ring[txbase + i]->netdev = adapter->netdev;
4954 }
4955
4956
4957 return 0;
4958}
4959
4960static int ixgbe_fwd_ring_up(struct net_device *vdev,
4961 struct ixgbe_fwd_adapter *accel)
4962{
4963 struct ixgbe_adapter *adapter = accel->real_adapter;
4964 unsigned int rxbase, txbase, queues;
4965 int i, baseq, err = 0;
4966
4967 if (!test_bit(accel->pool, &adapter->fwd_bitmask))
4968 return 0;
4969
4970 baseq = accel->pool * adapter->num_rx_queues_per_pool;
4971 netdev_dbg(vdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
4972 accel->pool, adapter->num_rx_pools,
4973 baseq, baseq + adapter->num_rx_queues_per_pool,
4974 adapter->fwd_bitmask);
4975
4976 accel->netdev = vdev;
4977 accel->rx_base_queue = rxbase = baseq;
4978 accel->tx_base_queue = txbase = baseq;
4979
4980 for (i = 0; i < adapter->num_rx_queues_per_pool; i++)
4981 ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]);
4982
4983 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4984 adapter->rx_ring[rxbase + i]->netdev = vdev;
4985 adapter->rx_ring[rxbase + i]->l2_accel_priv = accel;
4986 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[rxbase + i]);
4987 }
4988
4989 for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
4990 adapter->tx_ring[txbase + i]->netdev = vdev;
4991 adapter->tx_ring[txbase + i]->l2_accel_priv = accel;
4992 }
4993
4994 queues = min_t(unsigned int,
4995 adapter->num_rx_queues_per_pool, vdev->num_tx_queues);
4996 err = netif_set_real_num_tx_queues(vdev, queues);
4997 if (err)
4998 goto fwd_queue_err;
4999
John Fastabend2a47fa42013-11-06 09:54:52 -08005000 err = netif_set_real_num_rx_queues(vdev, queues);
5001 if (err)
5002 goto fwd_queue_err;
5003
5004 if (is_valid_ether_addr(vdev->dev_addr))
5005 ixgbe_add_mac_filter(adapter, vdev->dev_addr, accel->pool);
5006
5007 ixgbe_fwd_psrtype(accel);
5008 ixgbe_macvlan_set_rx_mode(vdev, accel->pool, adapter);
5009 return err;
5010fwd_queue_err:
5011 ixgbe_fwd_ring_down(vdev, accel);
5012 return err;
5013}
5014
5015static void ixgbe_configure_dfwd(struct ixgbe_adapter *adapter)
5016{
5017 struct net_device *upper;
5018 struct list_head *iter;
5019 int err;
5020
5021 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
5022 if (netif_is_macvlan(upper)) {
5023 struct macvlan_dev *dfwd = netdev_priv(upper);
5024 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
5025
5026 if (dfwd->fwd_priv) {
5027 err = ixgbe_fwd_ring_up(upper, vadapter);
5028 if (err)
5029 continue;
5030 }
5031 }
5032 }
5033}
5034
Auke Kok9a799d72007-09-15 14:07:45 -07005035static void ixgbe_configure(struct ixgbe_adapter *adapter)
5036{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00005037 struct ixgbe_hw *hw = &adapter->hw;
5038
John Fastabend80605c652011-05-02 12:34:10 +00005039 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005040#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00005041 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005042#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00005043 /*
5044 * We must restore virtualization before VLANs or else
5045 * the VLVF registers will not be populated
5046 */
5047 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005048
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00005049 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00005050 ixgbe_restore_vlan(adapter);
5051
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00005052 switch (hw->mac.type) {
5053 case ixgbe_mac_82599EB:
5054 case ixgbe_mac_X540:
5055 hw->mac.ops.disable_rx_buff(hw);
5056 break;
5057 default:
5058 break;
5059 }
5060
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005061 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00005062 ixgbe_init_fdir_signature_82599(&adapter->hw,
5063 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00005064 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
5065 ixgbe_init_fdir_perfect_82599(&adapter->hw,
5066 adapter->fdir_pballoc);
5067 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005068 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00005069
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00005070 switch (hw->mac.type) {
5071 case ixgbe_mac_82599EB:
5072 case ixgbe_mac_X540:
5073 hw->mac.ops.enable_rx_buff(hw);
5074 break;
5075 default:
5076 break;
5077 }
5078
Mark Rustad9de76052015-08-08 16:27:41 -07005079#ifdef CONFIG_IXGBE_DCA
5080 /* configure DCA */
5081 if (adapter->flags & IXGBE_FLAG_DCA_CAPABLE)
5082 ixgbe_setup_dca(adapter);
5083#endif /* CONFIG_IXGBE_DCA */
5084
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005085#ifdef IXGBE_FCOE
5086 /* configure FCoE L2 filters, redirection table, and Rx control */
5087 ixgbe_configure_fcoe(adapter);
5088
5089#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07005090 ixgbe_configure_tx(adapter);
5091 ixgbe_configure_rx(adapter);
John Fastabend2a47fa42013-11-06 09:54:52 -08005092 ixgbe_configure_dfwd(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005093}
5094
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005095/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005096 * ixgbe_sfp_link_config - set up SFP+ link
5097 * @adapter: pointer to private adapter struct
5098 **/
5099static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
5100{
Alexander Duyck70864002011-04-27 09:13:56 +00005101 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005102 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00005103 * is that an SFP was inserted/removed after the reset
5104 * but before SFP detection was enabled. As such the best
5105 * solution is to just start searching as soon as we start
5106 */
5107 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5108 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005109
Alexander Duyck70864002011-04-27 09:13:56 +00005110 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
Mark Rustad58e7cd22015-08-08 16:18:48 -07005111 adapter->sfp_poll_time = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005112}
5113
5114/**
5115 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005116 * @hw: pointer to private hardware struct
5117 *
5118 * Returns 0 on success, negative on failure
5119 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005120static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005121{
Josh Hay3d292262012-12-15 03:28:19 +00005122 u32 speed;
5123 bool autoneg, link_up = false;
Mark Rustada1e869d2015-04-10 10:36:36 -07005124 int ret = IXGBE_ERR_LINK_SETUP;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005125
5126 if (hw->mac.ops.check_link)
Josh Hay3d292262012-12-15 03:28:19 +00005127 ret = hw->mac.ops.check_link(hw, &speed, &link_up, false);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005128
5129 if (ret)
Mark Rustade90dd262014-07-22 06:51:08 +00005130 return ret;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005131
Josh Hay3d292262012-12-15 03:28:19 +00005132 speed = hw->phy.autoneg_advertised;
5133 if ((!speed) && (hw->mac.ops.get_link_capabilities))
5134 ret = hw->mac.ops.get_link_capabilities(hw, &speed,
5135 &autoneg);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005136 if (ret)
Mark Rustade90dd262014-07-22 06:51:08 +00005137 return ret;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005138
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005139 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00005140 ret = hw->mac.ops.setup_link(hw, speed, link_up);
Mark Rustade90dd262014-07-22 06:51:08 +00005141
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08005142 return ret;
5143}
5144
Alexander Duycka34bcff2010-08-19 13:39:20 +00005145static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005146{
Auke Kok9a799d72007-09-15 14:07:45 -07005147 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00005148 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005149
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005150 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00005151 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
5152 IXGBE_GPIE_OCD;
5153 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005154 /*
5155 * use EIAM to auto-mask when MSI-X interrupt is asserted
5156 * this saves a register write for every interrupt
5157 */
5158 switch (hw->mac.type) {
5159 case ixgbe_mac_82598EB:
5160 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5161 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005162 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005163 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005164 case ixgbe_mac_X550:
5165 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07005166 case ixgbe_mac_x550em_a:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005167 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00005168 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5169 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5170 break;
5171 }
5172 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005173 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
5174 * specifically only auto mask tx and rx interrupts */
5175 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07005176 }
5177
Alexander Duycka34bcff2010-08-19 13:39:20 +00005178 /* XXX: to interrupt immediately for EICS writes, enable this */
5179 /* gpie |= IXGBE_GPIE_EIMEN; */
5180
5181 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
5182 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00005183
5184 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
5185 case IXGBE_82599_VMDQ_8Q_MASK:
5186 gpie |= IXGBE_GPIE_VTMODE_16;
5187 break;
5188 case IXGBE_82599_VMDQ_4Q_MASK:
5189 gpie |= IXGBE_GPIE_VTMODE_32;
5190 break;
5191 default:
5192 gpie |= IXGBE_GPIE_VTMODE_64;
5193 break;
5194 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005195 }
5196
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00005197 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00005198 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
5199 switch (adapter->hw.mac.type) {
5200 case ixgbe_mac_82599EB:
Don Skidmore9a900ec2015-06-09 17:15:01 -07005201 gpie |= IXGBE_SDP0_GPIEN_8259X;
Don Skidmoref3df98e2011-08-17 10:15:21 +00005202 break;
Don Skidmoref3df98e2011-08-17 10:15:21 +00005203 default:
5204 break;
5205 }
5206 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00005207
Alexander Duycka34bcff2010-08-19 13:39:20 +00005208 /* Enable fan failure interrupt */
5209 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Don Skidmore9a900ec2015-06-09 17:15:01 -07005210 gpie |= IXGBE_SDP1_GPIEN(hw);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07005211
Don Skidmorea023bbd2015-06-24 16:38:53 -04005212 switch (hw->mac.type) {
5213 case ixgbe_mac_82599EB:
5214 gpie |= IXGBE_SDP1_GPIEN_8259X | IXGBE_SDP2_GPIEN_8259X;
5215 break;
5216 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07005217 case ixgbe_mac_x550em_a:
Don Skidmorea023bbd2015-06-24 16:38:53 -04005218 gpie |= IXGBE_SDP0_GPIEN_X540;
5219 break;
5220 default:
5221 break;
Don Skidmore2698b202011-04-13 07:01:52 +00005222 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00005223
5224 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
5225}
5226
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005227static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00005228{
5229 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00005230 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00005231 u32 ctrl_ext;
5232
5233 ixgbe_get_hw_control(adapter);
5234 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005235
Auke Kok9a799d72007-09-15 14:07:45 -07005236 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
5237 ixgbe_configure_msix(adapter);
5238 else
5239 ixgbe_configure_msi_and_legacy(adapter);
5240
Emil Tantilovec74a472012-09-20 03:33:56 +00005241 /* enable the optics for 82599 SFP+ fiber */
5242 if (hw->mac.ops.enable_tx_laser)
Peter Waskiewicz61fac742010-04-27 00:38:15 +00005243 hw->mac.ops.enable_tx_laser(hw);
5244
Don Skidmore961fac82015-06-09 16:09:47 -07005245 if (hw->phy.ops.set_phy_power)
5246 hw->phy.ops.set_phy_power(hw, true);
5247
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005248 smp_mb__before_atomic();
Auke Kok9a799d72007-09-15 14:07:45 -07005249 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005250 ixgbe_napi_enable_all(adapter);
5251
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08005252 if (ixgbe_is_sfp(hw)) {
5253 ixgbe_sfp_link_config(adapter);
5254 } else {
5255 err = ixgbe_non_sfp_link_config(hw);
5256 if (err)
5257 e_err(probe, "link_config FAILED %d\n", err);
5258 }
5259
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005260 /* clear any pending interrupts, may auto mask */
5261 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00005262 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07005263
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005264 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00005265 * If this adapter has a fan, check to see if we had a failure
5266 * before we enabled the interrupt.
5267 */
5268 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
5269 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
5270 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00005271 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00005272 }
5273
Auke Kok9a799d72007-09-15 14:07:45 -07005274 /* bring the link up in the watchdog, this could race with our first
5275 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005276 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5277 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00005278 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00005279
5280 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
5281 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
5282 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
5283 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07005284}
5285
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005286void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
5287{
5288 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00005289 /* put off any impending NetWatchDogTimeout */
Florian Westphal860e9532016-05-03 16:33:13 +02005290 netif_trans_update(adapter->netdev);
Alexander Duyck70864002011-04-27 09:13:56 +00005291
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005292 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00005293 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005294 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00005295 /*
5296 * If SR-IOV enabled then wait a bit before bringing the adapter
5297 * back up to give the VFs time to respond to the reset. The
5298 * two second wait is based upon the watchdog timer cycle in
5299 * the VF driver.
5300 */
5301 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
5302 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005303 ixgbe_up(adapter);
5304 clear_bit(__IXGBE_RESETTING, &adapter->state);
5305}
5306
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005307void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005308{
5309 /* hardware has been reset, we need to reload some things */
5310 ixgbe_configure(adapter);
5311
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005312 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005313}
5314
5315void ixgbe_reset(struct ixgbe_adapter *adapter)
5316{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005317 struct ixgbe_hw *hw = &adapter->hw;
Jacob Keller5d7daa32014-03-29 06:51:25 +00005318 struct net_device *netdev = adapter->netdev;
Don Skidmore8ca783a2009-05-26 20:40:47 -07005319 int err;
5320
Mark Rustadb0483c82014-01-14 18:53:17 -08005321 if (ixgbe_removed(hw->hw_addr))
5322 return;
Alexander Duyck70864002011-04-27 09:13:56 +00005323 /* lock SFP init bit to prevent race conditions with the watchdog */
5324 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5325 usleep_range(1000, 2000);
5326
5327 /* clear all SFP and link config related flags while holding SFP_INIT */
5328 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
5329 IXGBE_FLAG2_SFP_NEEDS_RESET);
5330 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5331
Don Skidmore8ca783a2009-05-26 20:40:47 -07005332 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005333 switch (err) {
5334 case 0:
5335 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00005336 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005337 break;
5338 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00005339 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005340 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00005341 case IXGBE_ERR_EEPROM_VERSION:
5342 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00005343 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005344 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00005345 "your hardware. If you are experiencing problems "
5346 "please contact your Intel or hardware "
5347 "representative who provided you with this "
5348 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00005349 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005350 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00005351 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00005352 }
Auke Kok9a799d72007-09-15 14:07:45 -07005353
Alexander Duyck70864002011-04-27 09:13:56 +00005354 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
Alexander Duyck0f079d22015-10-22 16:26:36 -07005355
5356 /* flush entries out of MAC table */
Jacob Keller5d7daa32014-03-29 06:51:25 +00005357 ixgbe_flush_sw_mac_table(adapter);
Alexander Duyck0f079d22015-10-22 16:26:36 -07005358 __dev_uc_unsync(netdev, NULL);
5359
5360 /* do not flush user set addresses */
Alexander Duyckc9f53e62015-10-22 16:26:30 -07005361 ixgbe_mac_set_default_filter(adapter);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00005362
5363 /* update SAN MAC vmdq pool selection */
5364 if (hw->mac.san_mac_rar_index)
5365 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Jacob Keller1a71ab22012-08-25 03:54:19 +00005366
Jacob Keller8fecf672013-06-21 08:14:32 +00005367 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00005368 ixgbe_ptp_reset(adapter);
Don Skidmore961fac82015-06-09 16:09:47 -07005369
5370 if (hw->phy.ops.set_phy_power) {
5371 if (!netif_running(adapter->netdev) && !adapter->wol)
5372 hw->phy.ops.set_phy_power(hw, false);
5373 else
5374 hw->phy.ops.set_phy_power(hw, true);
5375 }
Auke Kok9a799d72007-09-15 14:07:45 -07005376}
5377
Auke Kok9a799d72007-09-15 14:07:45 -07005378/**
Auke Kok9a799d72007-09-15 14:07:45 -07005379 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07005380 * @tx_ring: ring to be cleaned
5381 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005382static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005383{
5384 struct ixgbe_tx_buffer *tx_buffer_info;
5385 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005386 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07005387
Alexander Duyck84418e32010-08-19 13:40:54 +00005388 /* ring already cleared, nothing to do */
5389 if (!tx_ring->tx_buffer_info)
5390 return;
Auke Kok9a799d72007-09-15 14:07:45 -07005391
Alexander Duyck84418e32010-08-19 13:40:54 +00005392 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07005393 for (i = 0; i < tx_ring->count; i++) {
5394 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005395 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07005396 }
5397
John Fastabenddad8a3b2012-04-23 12:22:39 +00005398 netdev_tx_reset_queue(txring_txq(tx_ring));
5399
Auke Kok9a799d72007-09-15 14:07:45 -07005400 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
5401 memset(tx_ring->tx_buffer_info, 0, size);
5402
5403 /* Zero out the descriptor ring */
5404 memset(tx_ring->desc, 0, tx_ring->size);
5405
5406 tx_ring->next_to_use = 0;
5407 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005408}
5409
5410/**
Auke Kok9a799d72007-09-15 14:07:45 -07005411 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
5412 * @adapter: board private structure
5413 **/
5414static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
5415{
5416 int i;
5417
5418 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005419 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005420}
5421
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005422/**
5423 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
5424 * @adapter: board private structure
5425 **/
5426static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
5427{
5428 int i;
5429
5430 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005431 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005432}
5433
Alexander Duycke4911d52011-05-11 07:18:52 +00005434static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
5435{
Sasha Levinb67bfe02013-02-27 17:06:00 -08005436 struct hlist_node *node2;
Alexander Duycke4911d52011-05-11 07:18:52 +00005437 struct ixgbe_fdir_filter *filter;
5438
5439 spin_lock(&adapter->fdir_perfect_lock);
5440
Sasha Levinb67bfe02013-02-27 17:06:00 -08005441 hlist_for_each_entry_safe(filter, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00005442 &adapter->fdir_filter_list, fdir_node) {
5443 hlist_del(&filter->fdir_node);
5444 kfree(filter);
5445 }
5446 adapter->fdir_filter_count = 0;
5447
5448 spin_unlock(&adapter->fdir_perfect_lock);
5449}
5450
Auke Kok9a799d72007-09-15 14:07:45 -07005451void ixgbe_down(struct ixgbe_adapter *adapter)
5452{
5453 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005454 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08005455 struct net_device *upper;
5456 struct list_head *iter;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08005457 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07005458
5459 /* signal that we are down to the interrupt handler */
Mark Rustadc3049c82014-01-14 18:53:12 -08005460 if (test_and_set_bit(__IXGBE_DOWN, &adapter->state))
5461 return; /* do nothing if already down */
Auke Kok9a799d72007-09-15 14:07:45 -07005462
5463 /* disable receives */
Don Skidmore1f9ac572015-03-13 13:54:30 -07005464 hw->mac.ops.disable_rx(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07005465
Yi Zou2d39d572011-01-06 14:29:56 +00005466 /* disable all enabled rx queues */
5467 for (i = 0; i < adapter->num_rx_queues; i++)
5468 /* this call also flushes the previous write */
5469 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
5470
Don Skidmore032b4322011-03-18 09:32:53 +00005471 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07005472
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005473 netif_tx_stop_all_queues(netdev);
5474
Alexander Duyck70864002011-04-27 09:13:56 +00005475 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00005476 netif_carrier_off(netdev);
5477 netif_tx_disable(netdev);
5478
John Fastabend2a47fa42013-11-06 09:54:52 -08005479 /* disable any upper devices */
5480 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
5481 if (netif_is_macvlan(upper)) {
5482 struct macvlan_dev *vlan = netdev_priv(upper);
5483
5484 if (vlan->fwd_priv) {
5485 netif_tx_stop_all_queues(upper);
5486 netif_carrier_off(upper);
5487 netif_tx_disable(upper);
5488 }
5489 }
5490 }
5491
John Fastabendc0dfb902010-04-27 02:13:39 +00005492 ixgbe_irq_disable(adapter);
5493
5494 ixgbe_napi_disable_all(adapter);
5495
Emil Tantilov57ca2a42016-07-29 14:46:31 -07005496 clear_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
5497 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
Alexander Duyck70864002011-04-27 09:13:56 +00005498 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5499
5500 del_timer_sync(&adapter->service_timer);
5501
Don Skidmore0a1f87c2009-09-18 09:45:43 +00005502 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00005503 /* Clear EITR Select mapping */
5504 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
5505
5506 /* Mark all the VFs as inactive */
5507 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00005508 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00005509
Don Skidmore0a1f87c2009-09-18 09:45:43 +00005510 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07005511 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005512
Auke Kok9a799d72007-09-15 14:07:45 -07005513 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00005514 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00005515 }
5516
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005517 /* disable transmits in the hardware now that interrupts are off */
5518 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08005519 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00005520 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005521 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00005522
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005523 /* Disable the Tx DMA engine on 82599 and later MAC */
Alexander Duyckbd508172010-11-16 19:27:03 -08005524 switch (hw->mac.type) {
5525 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005526 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005527 case ixgbe_mac_X550:
5528 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07005529 case ixgbe_mac_x550em_a:
PJ Waskiewicz88512532009-03-13 22:15:10 +00005530 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00005531 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
5532 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08005533 break;
5534 default:
5535 break;
5536 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07005537
Paul Larson6f4a0e42008-06-24 17:00:56 -07005538 if (!pci_channel_offline(adapter->pdev))
5539 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00005540
Emil Tantilovec74a472012-09-20 03:33:56 +00005541 /* power down the optics for 82599 SFP+ fiber */
5542 if (hw->mac.ops.disable_tx_laser)
Don Skidmorec6ecf392010-12-03 03:31:51 +00005543 hw->mac.ops.disable_tx_laser(hw);
5544
Auke Kok9a799d72007-09-15 14:07:45 -07005545 ixgbe_clean_all_tx_rings(adapter);
5546 ixgbe_clean_all_rx_rings(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005547}
5548
Auke Kok9a799d72007-09-15 14:07:45 -07005549/**
Auke Kok9a799d72007-09-15 14:07:45 -07005550 * ixgbe_tx_timeout - Respond to a Tx Hang
5551 * @netdev: network interface device structure
5552 **/
5553static void ixgbe_tx_timeout(struct net_device *netdev)
5554{
5555 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5556
5557 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005558 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005559}
5560
Usha Ketineni88290092016-04-26 05:00:26 -07005561#ifdef CONFIG_IXGBE_DCB
5562static void ixgbe_init_dcb(struct ixgbe_adapter *adapter)
5563{
5564 struct ixgbe_hw *hw = &adapter->hw;
5565 struct tc_configuration *tc;
5566 int j;
5567
5568 switch (hw->mac.type) {
5569 case ixgbe_mac_82598EB:
5570 case ixgbe_mac_82599EB:
5571 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5572 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5573 break;
5574 case ixgbe_mac_X540:
5575 case ixgbe_mac_X550:
5576 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5577 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5578 break;
5579 case ixgbe_mac_X550EM_x:
5580 case ixgbe_mac_x550em_a:
5581 default:
5582 adapter->dcb_cfg.num_tcs.pg_tcs = DEF_TRAFFIC_CLASS;
5583 adapter->dcb_cfg.num_tcs.pfc_tcs = DEF_TRAFFIC_CLASS;
5584 break;
5585 }
5586
5587 /* Configure DCB traffic classes */
5588 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5589 tc = &adapter->dcb_cfg.tc_config[j];
5590 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5591 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5592 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5593 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5594 tc->dcb_pfc = pfc_disabled;
5595 }
5596
5597 /* Initialize default user to priority mapping, UPx->TC0 */
5598 tc = &adapter->dcb_cfg.tc_config[0];
5599 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5600 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5601
5602 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5603 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
5604 adapter->dcb_cfg.pfc_mode_enable = false;
5605 adapter->dcb_set_bitmap = 0x00;
5606 if (adapter->flags & IXGBE_FLAG_DCB_CAPABLE)
5607 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
5608 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
5609 sizeof(adapter->temp_dcb_cfg));
5610}
5611#endif
5612
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005613/**
Auke Kok9a799d72007-09-15 14:07:45 -07005614 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5615 * @adapter: board private structure to initialize
5616 *
5617 * ixgbe_sw_init initializes the Adapter private data structure.
5618 * Fields are initialized based on PCI device information and
5619 * OS network device settings (MTU size).
5620 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05005621static int ixgbe_sw_init(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005622{
5623 struct ixgbe_hw *hw = &adapter->hw;
5624 struct pci_dev *pdev = adapter->pdev;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00005625 unsigned int rss, fdir;
Jacob Kellercb6d0f52012-12-04 06:03:14 +00005626 u32 fwsm;
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04005627 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005628
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005629 /* PCI config space info */
5630
5631 hw->vendor_id = pdev->vendor;
5632 hw->device_id = pdev->device;
5633 hw->revision_id = pdev->revision;
5634 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5635 hw->subsystem_device_id = pdev->subsystem_device;
5636
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005637 /* Set common capability flags and settings */
Don Skidmore0f9b2322014-11-18 09:35:08 +00005638 rss = min_t(int, ixgbe_max_rss_indices(adapter), num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00005639 adapter->ring_feature[RING_F_RSS].limit = rss;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005640 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005641 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
5642 adapter->atr_sample_rate = 20;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00005643 fdir = min_t(int, IXGBE_MAX_FDIR_INDICES, num_online_cpus());
5644 adapter->ring_feature[RING_F_FDIR].limit = fdir;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005645 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
5646#ifdef CONFIG_IXGBE_DCA
5647 adapter->flags |= IXGBE_FLAG_DCA_CAPABLE;
5648#endif
Usha Ketineni88290092016-04-26 05:00:26 -07005649#ifdef CONFIG_IXGBE_DCB
5650 adapter->flags |= IXGBE_FLAG_DCB_CAPABLE;
5651 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
5652#endif
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005653#ifdef IXGBE_FCOE
5654 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5655 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5656#ifdef CONFIG_IXGBE_DCB
5657 /* Default traffic class to use for FCoE */
5658 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
5659#endif /* CONFIG_IXGBE_DCB */
5660#endif /* IXGBE_FCOE */
5661
John Fastabendb82b17d2016-02-16 21:18:53 -08005662 /* initialize static ixgbe jump table entries */
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04005663 adapter->jump_tables[0] = kzalloc(sizeof(*adapter->jump_tables[0]),
5664 GFP_KERNEL);
5665 if (!adapter->jump_tables[0])
5666 return -ENOMEM;
5667 adapter->jump_tables[0]->mat = ixgbe_ipv4_fields;
5668
5669 for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++)
5670 adapter->jump_tables[i] = NULL;
John Fastabendb82b17d2016-02-16 21:18:53 -08005671
Jacob Keller5d7daa32014-03-29 06:51:25 +00005672 adapter->mac_table = kzalloc(sizeof(struct ixgbe_mac_addr) *
5673 hw->mac.num_rar_entries,
5674 GFP_ATOMIC);
Alexander Duyck530fd822015-11-02 17:09:29 -08005675 if (!adapter->mac_table)
5676 return -ENOMEM;
Jacob Keller5d7daa32014-03-29 06:51:25 +00005677
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005678 /* Set MAC specific capability flags and exceptions */
Alexander Duyckbd508172010-11-16 19:27:03 -08005679 switch (hw->mac.type) {
5680 case ixgbe_mac_82598EB:
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005681 adapter->flags2 &= ~IXGBE_FLAG2_RSC_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005682
Don Skidmorebf069c92009-05-07 10:39:54 +00005683 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5684 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005685
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005686 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Emil Tantilov8fc3bb62013-01-08 04:23:53 +00005687 adapter->ring_feature[RING_F_FDIR].limit = 0;
5688 adapter->atr_sample_rate = 0;
5689 adapter->fdir_pballoc = 0;
5690#ifdef IXGBE_FCOE
5691 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
5692 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5693#ifdef CONFIG_IXGBE_DCB
5694 adapter->fcoe.up = 0;
5695#endif /* IXGBE_DCB */
5696#endif /* IXGBE_FCOE */
5697 break;
5698 case ixgbe_mac_82599EB:
5699 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5700 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08005701 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005702 case ixgbe_mac_X540:
Don Skidmore9a900ec2015-06-09 17:15:01 -07005703 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
Jacob Kellercb6d0f52012-12-04 06:03:14 +00005704 if (fwsm & IXGBE_FWSM_TS_ENABLED)
5705 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyckbd508172010-11-16 19:27:03 -08005706 break;
Mark Rustad49425df2016-04-01 12:18:09 -07005707 case ixgbe_mac_x550em_a:
Emil Tantilova21d0822016-08-10 11:19:23 -07005708 adapter->flags |= IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE;
5709 /* fall through */
5710 case ixgbe_mac_X550EM_x:
Usha Ketineni88290092016-04-26 05:00:26 -07005711#ifdef CONFIG_IXGBE_DCB
5712 adapter->flags &= ~IXGBE_FLAG_DCB_CAPABLE;
5713#endif
5714#ifdef IXGBE_FCOE
5715 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
5716#ifdef CONFIG_IXGBE_DCB
5717 adapter->fcoe.up = 0;
5718#endif /* IXGBE_DCB */
5719#endif /* IXGBE_FCOE */
5720 /* Fall Through */
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005721 case ixgbe_mac_X550:
5722#ifdef CONFIG_IXGBE_DCA
5723 adapter->flags &= ~IXGBE_FLAG_DCA_CAPABLE;
5724#endif
Mark Rustad67359c32015-06-15 11:33:25 -07005725 adapter->flags |= IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00005726 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08005727 default:
5728 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005729 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005730
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005731#ifdef IXGBE_FCOE
5732 /* FCoE support exists, always init the FCoE lock */
5733 spin_lock_init(&adapter->fcoe.lock);
5734
5735#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005736 /* n-tuple support exists, always init our spinlock */
5737 spin_lock_init(&adapter->fdir_perfect_lock);
5738
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005739#ifdef CONFIG_IXGBE_DCB
Usha Ketineni88290092016-04-26 05:00:26 -07005740 ixgbe_init_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005741#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005742
5743 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005744 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005745 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00005746 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005747 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5748 hw->fc.send_xon = true;
Don Skidmore73d80953d2013-07-31 02:19:24 +00005749 hw->fc.disable_fc_autoneg = ixgbe_device_supports_autoneg_fc(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07005750
Alexander Duyck99d74482012-05-09 08:09:25 +00005751#ifdef CONFIG_PCI_IOV
Jacob Keller170e8542013-11-09 04:52:32 -08005752 if (max_vfs > 0)
5753 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 +00005754
Jacob Keller170e8542013-11-09 04:52:32 -08005755 /* assign number of SR-IOV VFs */
5756 if (hw->mac.type != ixgbe_mac_82598EB) {
ethan.zhaodcc23e32014-01-16 19:41:04 -08005757 if (max_vfs > IXGBE_MAX_VFS_DRV_LIMIT) {
Jacob Keller170e8542013-11-09 04:52:32 -08005758 adapter->num_vfs = 0;
5759 e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n");
5760 } else {
5761 adapter->num_vfs = max_vfs;
5762 }
5763 }
5764#endif /* CONFIG_PCI_IOV */
5765
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005766 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005767 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005768 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005769
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005770 /* set default ring sizes */
5771 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5772 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5773
Alexander Duyckbd198052011-06-11 01:45:08 +00005774 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005775 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005776
Auke Kok9a799d72007-09-15 14:07:45 -07005777 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005778 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005779 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005780 return -EIO;
5781 }
5782
John Fastabend2a47fa42013-11-06 09:54:52 -08005783 /* PF holds first pool slot */
5784 set_bit(0, &adapter->fwd_bitmask);
Auke Kok9a799d72007-09-15 14:07:45 -07005785 set_bit(__IXGBE_DOWN, &adapter->state);
5786
5787 return 0;
5788}
5789
5790/**
5791 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005792 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005793 *
5794 * Return 0 on success, negative on failure
5795 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005796int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005797{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005798 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005799 int orig_node = dev_to_node(dev);
Mark Rustadca8dfe22014-07-24 06:19:24 +00005800 int ring_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07005801 int size;
5802
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005803 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005804
5805 if (tx_ring->q_vector)
Mark Rustadca8dfe22014-07-24 06:19:24 +00005806 ring_node = tx_ring->q_vector->numa_node;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005807
Mark Rustadca8dfe22014-07-24 06:19:24 +00005808 tx_ring->tx_buffer_info = vzalloc_node(size, ring_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005809 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005810 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005811 if (!tx_ring->tx_buffer_info)
5812 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005813
John Stultz827da442013-10-07 15:51:58 -07005814 u64_stats_init(&tx_ring->syncp);
5815
Auke Kok9a799d72007-09-15 14:07:45 -07005816 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005817 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005818 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005819
Mark Rustadca8dfe22014-07-24 06:19:24 +00005820 set_dev_node(dev, ring_node);
Alexander Duyckde88eee2012-02-08 07:49:59 +00005821 tx_ring->desc = dma_alloc_coherent(dev,
5822 tx_ring->size,
5823 &tx_ring->dma,
5824 GFP_KERNEL);
5825 set_dev_node(dev, orig_node);
5826 if (!tx_ring->desc)
5827 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
5828 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005829 if (!tx_ring->desc)
5830 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005831
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005832 tx_ring->next_to_use = 0;
5833 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005834 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005835
5836err:
5837 vfree(tx_ring->tx_buffer_info);
5838 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005839 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005840 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005841}
5842
5843/**
Alexander Duyck69888672008-09-11 20:05:39 -07005844 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5845 * @adapter: board private structure
5846 *
5847 * If this function returns with an error, then it's possible one or
5848 * more of the rings is populated (while the rest are not). It is the
5849 * callers duty to clean those orphaned rings.
5850 *
5851 * Return 0 on success, negative on failure
5852 **/
5853static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5854{
5855 int i, err = 0;
5856
5857 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005858 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005859 if (!err)
5860 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005861
Emil Tantilov396e7992010-07-01 20:05:12 +00005862 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005863 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07005864 }
5865
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005866 return 0;
5867err_setup_tx:
5868 /* rewind the index freeing the rings as we go */
5869 while (i--)
5870 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005871 return err;
5872}
5873
5874/**
Auke Kok9a799d72007-09-15 14:07:45 -07005875 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005876 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005877 *
5878 * Returns 0 on success, negative on failure
5879 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005880int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005881{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005882 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005883 int orig_node = dev_to_node(dev);
Mark Rustadca8dfe22014-07-24 06:19:24 +00005884 int ring_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005885 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005886
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005887 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005888
5889 if (rx_ring->q_vector)
Mark Rustadca8dfe22014-07-24 06:19:24 +00005890 ring_node = rx_ring->q_vector->numa_node;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005891
Mark Rustadca8dfe22014-07-24 06:19:24 +00005892 rx_ring->rx_buffer_info = vzalloc_node(size, ring_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005893 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005894 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005895 if (!rx_ring->rx_buffer_info)
5896 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005897
John Stultz827da442013-10-07 15:51:58 -07005898 u64_stats_init(&rx_ring->syncp);
5899
Auke Kok9a799d72007-09-15 14:07:45 -07005900 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005901 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5902 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005903
Mark Rustadca8dfe22014-07-24 06:19:24 +00005904 set_dev_node(dev, ring_node);
Alexander Duyckde88eee2012-02-08 07:49:59 +00005905 rx_ring->desc = dma_alloc_coherent(dev,
5906 rx_ring->size,
5907 &rx_ring->dma,
5908 GFP_KERNEL);
5909 set_dev_node(dev, orig_node);
5910 if (!rx_ring->desc)
5911 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
5912 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005913 if (!rx_ring->desc)
5914 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005915
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005916 rx_ring->next_to_clean = 0;
5917 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005918
5919 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005920err:
5921 vfree(rx_ring->rx_buffer_info);
5922 rx_ring->rx_buffer_info = NULL;
5923 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005924 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005925}
5926
5927/**
Alexander Duyck69888672008-09-11 20:05:39 -07005928 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5929 * @adapter: board private structure
5930 *
5931 * If this function returns with an error, then it's possible one or
5932 * more of the rings is populated (while the rest are not). It is the
5933 * callers duty to clean those orphaned rings.
5934 *
5935 * Return 0 on success, negative on failure
5936 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005937static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5938{
5939 int i, err = 0;
5940
5941 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005942 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005943 if (!err)
5944 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005945
Emil Tantilov396e7992010-07-01 20:05:12 +00005946 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005947 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07005948 }
5949
Alexander Duyck7c8ae652012-05-05 05:32:47 +00005950#ifdef IXGBE_FCOE
5951 err = ixgbe_setup_fcoe_ddp_resources(adapter);
5952 if (!err)
5953#endif
5954 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00005955err_setup_rx:
5956 /* rewind the index freeing the rings as we go */
5957 while (i--)
5958 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005959 return err;
5960}
5961
5962/**
Auke Kok9a799d72007-09-15 14:07:45 -07005963 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005964 * @tx_ring: Tx descriptor ring for a specific queue
5965 *
5966 * Free all transmit software resources
5967 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005968void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005969{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005970 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005971
5972 vfree(tx_ring->tx_buffer_info);
5973 tx_ring->tx_buffer_info = NULL;
5974
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005975 /* if not set, then don't free */
5976 if (!tx_ring->desc)
5977 return;
5978
5979 dma_free_coherent(tx_ring->dev, tx_ring->size,
5980 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005981
5982 tx_ring->desc = NULL;
5983}
5984
5985/**
5986 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5987 * @adapter: board private structure
5988 *
5989 * Free all transmit software resources
5990 **/
5991static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5992{
5993 int i;
5994
5995 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005996 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005997 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005998}
5999
6000/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006001 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07006002 * @rx_ring: ring to clean the resources from
6003 *
6004 * Free all receive software resources
6005 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006006void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006007{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006008 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07006009
6010 vfree(rx_ring->rx_buffer_info);
6011 rx_ring->rx_buffer_info = NULL;
6012
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006013 /* if not set, then don't free */
6014 if (!rx_ring->desc)
6015 return;
6016
6017 dma_free_coherent(rx_ring->dev, rx_ring->size,
6018 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07006019
6020 rx_ring->desc = NULL;
6021}
6022
6023/**
6024 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
6025 * @adapter: board private structure
6026 *
6027 * Free all receive software resources
6028 **/
6029static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
6030{
6031 int i;
6032
Alexander Duyck7c8ae652012-05-05 05:32:47 +00006033#ifdef IXGBE_FCOE
6034 ixgbe_free_fcoe_ddp_resources(adapter);
6035
6036#endif
Auke Kok9a799d72007-09-15 14:07:45 -07006037 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00006038 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006039 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07006040}
6041
6042/**
Auke Kok9a799d72007-09-15 14:07:45 -07006043 * ixgbe_change_mtu - Change the Maximum Transfer Unit
6044 * @netdev: network interface device structure
6045 * @new_mtu: new value for maximum frame size
6046 *
6047 * Returns 0 on success, negative on failure
6048 **/
6049static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
6050{
6051 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck655309e2012-02-08 07:50:35 +00006052
6053 /*
Alexander Duyck872844d2012-08-15 02:10:43 +00006054 * For 82599EB we cannot allow legacy VFs to enable their receive
6055 * paths when MTU greater than 1500 is configured. So display a
6056 * warning that legacy VFs will be disabled.
Alexander Duyck655309e2012-02-08 07:50:35 +00006057 */
6058 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
6059 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
Jarod Wilson91c527a2016-10-17 15:54:05 -04006060 (new_mtu > ETH_DATA_LEN))
Alexander Duyck872844d2012-08-15 02:10:43 +00006061 e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n");
Auke Kok9a799d72007-09-15 14:07:45 -07006062
Emil Tantilov396e7992010-07-01 20:05:12 +00006063 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00006064
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08006065 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07006066 netdev->mtu = new_mtu;
6067
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08006068 if (netif_running(netdev))
6069 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006070
6071 return 0;
6072}
6073
6074/**
6075 * ixgbe_open - Called when a network interface is made active
6076 * @netdev: network interface device structure
6077 *
6078 * Returns 0 on success, negative value on failure
6079 *
6080 * The open entry point is called when a network interface is made
6081 * active by the system (IFF_UP). At this point all resources needed
6082 * for transmit and receive operations are allocated, the interrupt
6083 * handler is registered with the OS, the watchdog timer is started,
6084 * and the stack is notified that the interface is ready.
6085 **/
Stefan Assmann6c211fe12016-02-03 09:20:48 +01006086int ixgbe_open(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006087{
6088 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Don Skidmore961fac82015-06-09 16:09:47 -07006089 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08006090 int err, queues;
Auke Kok9a799d72007-09-15 14:07:45 -07006091
Auke Kok4bebfaa2008-02-11 09:26:01 -08006092 /* disallow open during test */
6093 if (test_bit(__IXGBE_TESTING, &adapter->state))
6094 return -EBUSY;
6095
Jesse Brandeburg54386462009-04-17 20:44:27 +00006096 netif_carrier_off(netdev);
6097
Auke Kok9a799d72007-09-15 14:07:45 -07006098 /* allocate transmit descriptors */
6099 err = ixgbe_setup_all_tx_resources(adapter);
6100 if (err)
6101 goto err_setup_tx;
6102
Auke Kok9a799d72007-09-15 14:07:45 -07006103 /* allocate receive descriptors */
6104 err = ixgbe_setup_all_rx_resources(adapter);
6105 if (err)
6106 goto err_setup_rx;
6107
6108 ixgbe_configure(adapter);
6109
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08006110 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006111 if (err)
6112 goto err_req_irq;
6113
Alexander Duyckac802f52012-07-12 05:52:53 +00006114 /* Notify the stack of the actual queue counts. */
John Fastabend2a47fa42013-11-06 09:54:52 -08006115 if (adapter->num_rx_pools > 1)
6116 queues = adapter->num_rx_queues_per_pool;
6117 else
6118 queues = adapter->num_tx_queues;
6119
6120 err = netif_set_real_num_tx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00006121 if (err)
6122 goto err_set_queues;
6123
John Fastabend2a47fa42013-11-06 09:54:52 -08006124 if (adapter->num_rx_pools > 1 &&
6125 adapter->num_rx_queues > IXGBE_MAX_L2A_QUEUES)
6126 queues = IXGBE_MAX_L2A_QUEUES;
6127 else
6128 queues = adapter->num_rx_queues;
6129 err = netif_set_real_num_rx_queues(netdev, queues);
Alexander Duyckac802f52012-07-12 05:52:53 +00006130 if (err)
6131 goto err_set_queues;
6132
Jacob Keller1a71ab22012-08-25 03:54:19 +00006133 ixgbe_ptp_init(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00006134
Alexander Duyckc7ccde02011-07-21 00:40:40 +00006135 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006136
Emil Tantilova21d0822016-08-10 11:19:23 -07006137 ixgbe_clear_udp_tunnel_port(adapter, IXGBE_VXLANCTRL_ALL_UDPPORT_MASK);
Alexander Duyckb3a49552016-06-16 12:22:19 -07006138 udp_tunnel_get_rx_info(netdev);
Mark Rustad67359c32015-06-15 11:33:25 -07006139
Auke Kok9a799d72007-09-15 14:07:45 -07006140 return 0;
6141
Alexander Duyckac802f52012-07-12 05:52:53 +00006142err_set_queues:
6143 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006144err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00006145 ixgbe_free_all_rx_resources(adapter);
Don Skidmore961fac82015-06-09 16:09:47 -07006146 if (hw->phy.ops.set_phy_power && !adapter->wol)
6147 hw->phy.ops.set_phy_power(&adapter->hw, false);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00006148err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00006149 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00006150err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07006151 ixgbe_reset(adapter);
6152
6153 return err;
6154}
6155
Jacob Kellera0cccce2014-05-16 05:12:29 +00006156static void ixgbe_close_suspend(struct ixgbe_adapter *adapter)
6157{
6158 ixgbe_ptp_suspend(adapter);
6159
Don Skidmore6ac74392015-06-17 17:34:31 -04006160 if (adapter->hw.phy.ops.enter_lplu) {
6161 adapter->hw.phy.reset_disable = true;
6162 ixgbe_down(adapter);
6163 adapter->hw.phy.ops.enter_lplu(&adapter->hw);
6164 adapter->hw.phy.reset_disable = false;
6165 } else {
6166 ixgbe_down(adapter);
6167 }
6168
Jacob Kellera0cccce2014-05-16 05:12:29 +00006169 ixgbe_free_irq(adapter);
6170
6171 ixgbe_free_all_tx_resources(adapter);
6172 ixgbe_free_all_rx_resources(adapter);
6173}
6174
Auke Kok9a799d72007-09-15 14:07:45 -07006175/**
6176 * ixgbe_close - Disables a network interface
6177 * @netdev: network interface device structure
6178 *
6179 * Returns 0, this is not allowed to fail
6180 *
6181 * The close entry point is called when an interface is de-activated
6182 * by the OS. The hardware is still under the drivers control, but
6183 * needs to be disabled. A global MAC reset is issued to stop the
6184 * hardware, and all transmit and receive resources are freed.
6185 **/
Stefan Assmann6c211fe12016-02-03 09:20:48 +01006186int ixgbe_close(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006187{
6188 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006189
Jacob Keller1a71ab22012-08-25 03:54:19 +00006190 ixgbe_ptp_stop(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00006191
Jacob Kellera0cccce2014-05-16 05:12:29 +00006192 ixgbe_close_suspend(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006193
Alexander Duycke4911d52011-05-11 07:18:52 +00006194 ixgbe_fdir_filter_exit(adapter);
6195
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08006196 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006197
6198 return 0;
6199}
6200
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006201#ifdef CONFIG_PM
6202static int ixgbe_resume(struct pci_dev *pdev)
6203{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006204 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
6205 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006206 u32 err;
6207
Mark Rustad0391bbe2014-02-28 15:48:55 -08006208 adapter->hw.hw_addr = adapter->io_addr;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006209 pci_set_power_state(pdev, PCI_D0);
6210 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08006211 /*
6212 * pci_restore_state clears dev->state_saved so call
6213 * pci_save_state to restore it.
6214 */
6215 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00006216
6217 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006218 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00006219 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006220 return err;
6221 }
Peter Zijlstra4e857c52014-03-17 18:06:10 +01006222 smp_mb__before_atomic();
Mark Rustad41c62842014-03-12 00:38:35 +00006223 clear_bit(__IXGBE_DISABLED, &adapter->state);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006224 pci_set_master(pdev);
6225
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07006226 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006227
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006228 ixgbe_reset(adapter);
6229
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00006230 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
6231
Alexander Duyckac802f52012-07-12 05:52:53 +00006232 rtnl_lock();
6233 err = ixgbe_init_interrupt_scheme(adapter);
6234 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006235 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00006236
6237 rtnl_unlock();
6238
6239 if (err)
6240 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006241
6242 netif_device_attach(netdev);
6243
6244 return 0;
6245}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006246#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006247
6248static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006249{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006250 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
6251 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006252 struct ixgbe_hw *hw = &adapter->hw;
6253 u32 ctrl, fctrl;
6254 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006255#ifdef CONFIG_PM
6256 int retval = 0;
6257#endif
6258
6259 netif_device_detach(netdev);
6260
akepner499ab5c2013-03-13 14:54:58 +00006261 rtnl_lock();
Jacob Kellera0cccce2014-05-16 05:12:29 +00006262 if (netif_running(netdev))
6263 ixgbe_close_suspend(adapter);
akepner499ab5c2013-03-13 14:54:58 +00006264 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006265
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08006266 ixgbe_clear_interrupt_scheme(adapter);
6267
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006268#ifdef CONFIG_PM
6269 retval = pci_save_state(pdev);
6270 if (retval)
6271 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00006272
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006273#endif
Jacob Kellerf4f10402013-06-25 07:59:23 +00006274 if (hw->mac.ops.stop_link_on_d3)
6275 hw->mac.ops.stop_link_on_d3(hw);
6276
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006277 if (wufc) {
6278 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006279
Emil Tantilovec74a472012-09-20 03:33:56 +00006280 /* enable the optics for 82599 SFP+ fiber as we can WoL */
6281 if (hw->mac.ops.enable_tx_laser)
Don Skidmorec509e752012-04-05 08:12:05 +00006282 hw->mac.ops.enable_tx_laser(hw);
6283
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006284 /* turn on all-multi mode if wake on multicast is enabled */
6285 if (wufc & IXGBE_WUFC_MC) {
6286 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6287 fctrl |= IXGBE_FCTRL_MPE;
6288 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
6289 }
6290
6291 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
6292 ctrl |= IXGBE_CTRL_GIO_DIS;
6293 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
6294
6295 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
6296 } else {
6297 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
6298 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
6299 }
6300
Alexander Duyckbd508172010-11-16 19:27:03 -08006301 switch (hw->mac.type) {
6302 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07006303 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08006304 break;
6305 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08006306 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006307 case ixgbe_mac_X550:
6308 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07006309 case ixgbe_mac_x550em_a:
Alexander Duyckbd508172010-11-16 19:27:03 -08006310 pci_wake_from_d3(pdev, !!wufc);
6311 break;
6312 default:
6313 break;
6314 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006315
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006316 *enable_wake = !!wufc;
Don Skidmore961fac82015-06-09 16:09:47 -07006317 if (hw->phy.ops.set_phy_power && !*enable_wake)
6318 hw->phy.ops.set_phy_power(hw, false);
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006319
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006320 ixgbe_release_hw_control(adapter);
6321
Mark Rustad41c62842014-03-12 00:38:35 +00006322 if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state))
6323 pci_disable_device(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006324
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006325 return 0;
6326}
6327
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006328#ifdef CONFIG_PM
6329static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
6330{
6331 int retval;
6332 bool wake;
6333
6334 retval = __ixgbe_shutdown(pdev, &wake);
6335 if (retval)
6336 return retval;
6337
6338 if (wake) {
6339 pci_prepare_to_sleep(pdev);
6340 } else {
6341 pci_wake_from_d3(pdev, false);
6342 pci_set_power_state(pdev, PCI_D3hot);
6343 }
6344
6345 return 0;
6346}
6347#endif /* CONFIG_PM */
6348
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006349static void ixgbe_shutdown(struct pci_dev *pdev)
6350{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00006351 bool wake;
6352
6353 __ixgbe_shutdown(pdev, &wake);
6354
6355 if (system_state == SYSTEM_POWER_OFF) {
6356 pci_wake_from_d3(pdev, wake);
6357 pci_set_power_state(pdev, PCI_D3hot);
6358 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07006359}
6360
6361/**
Auke Kok9a799d72007-09-15 14:07:45 -07006362 * ixgbe_update_stats - Update the board statistics counters.
6363 * @adapter: board private structure
6364 **/
6365void ixgbe_update_stats(struct ixgbe_adapter *adapter)
6366{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00006367 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07006368 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006369 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006370 u64 total_mpc = 0;
6371 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006372 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
6373 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00006374 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006375
Don Skidmored08935c2010-06-11 13:20:29 +00006376 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6377 test_bit(__IXGBE_RESETTING, &adapter->state))
6378 return;
6379
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006380 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00006381 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006382 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006383 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08006384 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
6385 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00006386 }
6387 adapter->rsc_total_count = rsc_count;
6388 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00006389 }
6390
Alexander Duyck5b7da512010-11-16 19:26:50 -08006391 for (i = 0; i < adapter->num_rx_queues; i++) {
6392 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
6393 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
6394 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
6395 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00006396 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006397 bytes += rx_ring->stats.bytes;
6398 packets += rx_ring->stats.packets;
6399 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00006400 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006401 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
6402 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00006403 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08006404 netdev->stats.rx_bytes = bytes;
6405 netdev->stats.rx_packets = packets;
6406
6407 bytes = 0;
6408 packets = 0;
6409 /* gather some stats to the adapter struct that are per queue */
6410 for (i = 0; i < adapter->num_tx_queues; i++) {
6411 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6412 restart_queue += tx_ring->tx_stats.restart_queue;
6413 tx_busy += tx_ring->tx_stats.tx_busy;
6414 bytes += tx_ring->stats.bytes;
6415 packets += tx_ring->stats.packets;
6416 }
6417 adapter->restart_queue = restart_queue;
6418 adapter->tx_busy = tx_busy;
6419 netdev->stats.tx_bytes = bytes;
6420 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00006421
Joe Perches7ca647b2010-09-07 21:35:40 +00006422 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006423
6424 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006425 for (i = 0; i < 8; i++) {
6426 /* for packet buffers not used, the register should read 0 */
6427 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
6428 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00006429 hwstats->mpc[i] += mpc;
6430 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006431 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
6432 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08006433 switch (hw->mac.type) {
6434 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006435 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
6436 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
6437 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00006438 hwstats->pxonrxc[i] +=
6439 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08006440 break;
6441 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08006442 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006443 case ixgbe_mac_X550:
6444 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07006445 case ixgbe_mac_x550em_a:
Alexander Duyckbd508172010-11-16 19:27:03 -08006446 hwstats->pxonrxc[i] +=
6447 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08006448 break;
6449 default:
6450 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006451 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006452 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006453
6454 /*16 register reads */
6455 for (i = 0; i < 16; i++) {
6456 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
6457 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
6458 if ((hw->mac.type == ixgbe_mac_82599EB) ||
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006459 (hw->mac.type == ixgbe_mac_X540) ||
6460 (hw->mac.type == ixgbe_mac_X550) ||
Mark Rustad49425df2016-04-01 12:18:09 -07006461 (hw->mac.type == ixgbe_mac_X550EM_x) ||
6462 (hw->mac.type == ixgbe_mac_x550em_a)) {
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00006463 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
6464 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
6465 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
6466 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
6467 }
6468 }
6469
Joe Perches7ca647b2010-09-07 21:35:40 +00006470 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006471 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00006472 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07006473
John Fastabendc84d3242010-11-16 19:27:12 -08006474 ixgbe_update_xoff_received(adapter);
6475
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006476 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08006477 switch (hw->mac.type) {
6478 case ixgbe_mac_82598EB:
6479 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08006480 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
6481 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
6482 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
6483 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08006484 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006485 case ixgbe_mac_X550:
6486 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07006487 case ixgbe_mac_x550em_a:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006488 /* OS2BMC stats are X540 and later */
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00006489 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
6490 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
6491 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
6492 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
6493 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00006494 for (i = 0; i < 16; i++)
6495 adapter->hw_rx_no_dma_resources +=
6496 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00006497 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08006498 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00006499 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08006500 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00006501 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08006502 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00006503 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00006504 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
6505 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00006506#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00006507 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
6508 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
6509 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
6510 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
6511 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
6512 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00006513 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00006514 if (adapter->fcoe.ddp_pool) {
6515 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
6516 struct ixgbe_fcoe_ddp_pool *ddp_pool;
6517 unsigned int cpu;
6518 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00006519 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00006520 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
6521 noddp += ddp_pool->noddp;
6522 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00006523 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00006524 hwstats->fcoe_noddp = noddp;
6525 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00006526 }
Yi Zou6d455222009-05-13 13:12:16 +00006527#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08006528 break;
6529 default:
6530 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006531 }
Auke Kok9a799d72007-09-15 14:07:45 -07006532 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00006533 hwstats->bprc += bprc;
6534 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006535 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00006536 hwstats->mprc -= bprc;
6537 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
6538 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
6539 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
6540 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
6541 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
6542 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
6543 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
6544 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006545 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00006546 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006547 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00006548 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00006549 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
6550 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08006551 /*
6552 * 82598 errata - tx of flow control packets is included in tx counters
6553 */
6554 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00006555 hwstats->gptc -= xon_off_tot;
6556 hwstats->mptc -= xon_off_tot;
6557 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
6558 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
6559 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
6560 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
6561 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
6562 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
6563 hwstats->ptc64 -= xon_off_tot;
6564 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
6565 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
6566 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
6567 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
6568 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
6569 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07006570
6571 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00006572 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07006573
6574 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00006575 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00006576 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00006577 netdev->stats.rx_length_errors = hwstats->rlec;
6578 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00006579 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07006580}
6581
6582/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00006583 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006584 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07006585 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00006586static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07006587{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006588 struct ixgbe_hw *hw = &adapter->hw;
6589 int i;
6590
Alexander Duyckd034acf2011-04-27 09:25:34 +00006591 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
6592 return;
6593
6594 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
6595
6596 /* if interface is down do nothing */
6597 if (test_bit(__IXGBE_DOWN, &adapter->state))
6598 return;
6599
6600 /* do nothing if we are not using signature filters */
6601 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
6602 return;
6603
6604 adapter->fdir_overflow++;
6605
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006606 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
6607 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08006608 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Jacob Kellere7cf7452014-04-09 06:03:10 +00006609 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00006610 /* re-enable flow director interrupts */
6611 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006612 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00006613 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00006614 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006615 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006616}
6617
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006618/**
6619 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006620 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006621 *
6622 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006623 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006624 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006625 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006626 */
6627static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
6628{
Auke Kok9a799d72007-09-15 14:07:45 -07006629 struct ixgbe_hw *hw = &adapter->hw;
6630 u64 eics = 0;
6631 int i;
6632
Mark Rustad09f40ae2014-01-14 18:53:11 -08006633 /* If we're down, removing or resetting, just bail */
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006634 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08006635 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006636 test_bit(__IXGBE_RESETTING, &adapter->state))
6637 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00006638
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006639 /* Force detection of hung controller */
6640 if (netif_carrier_ok(adapter->netdev)) {
6641 for (i = 0; i < adapter->num_tx_queues; i++)
6642 set_check_for_tx_hang(adapter->tx_ring[i]);
6643 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006644
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006645 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00006646 /*
6647 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006648 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00006649 * would set *both* EIMS and EICS for any bit in EIAM
6650 */
6651 IXGBE_WRITE_REG(hw, IXGBE_EICS,
6652 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006653 } else {
6654 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006655 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006656 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00006657 if (qv->rx.ring || qv->tx.ring)
Jacob Kellerb4f47a42016-04-13 16:08:22 -07006658 eics |= BIT_ULL(i);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006659 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006660 }
6661
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006662 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00006663 ixgbe_irq_rearm_queues(adapter, eics);
Alexander Duyckfe49f042009-06-04 16:00:09 +00006664}
6665
6666/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006667 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006668 * @adapter: pointer to the device adapter structure
6669 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006670 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006671static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006672{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006673 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006674 u32 link_speed = adapter->link_speed;
6675 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00006676 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006677
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006678 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6679 return;
6680
6681 if (hw->mac.ops.check_link) {
6682 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006683 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006684 /* always assume link is up, if no check link function */
6685 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6686 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006687 }
Alexander Duyck041441d2012-04-19 17:48:48 +00006688
6689 if (adapter->ixgbe_ieee_pfc)
6690 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
6691
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00006692 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00006693 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00006694 ixgbe_set_rx_drop_en(adapter);
6695 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006696
6697 if (link_up ||
6698 time_after(jiffies, (adapter->link_check_timeout +
6699 IXGBE_TRY_LINK_TIMEOUT))) {
6700 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6701 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6702 IXGBE_WRITE_FLUSH(hw);
6703 }
6704
6705 adapter->link_up = link_up;
6706 adapter->link_speed = link_speed;
6707}
6708
Alexander Duyck107d3012012-10-02 00:17:03 +00006709static void ixgbe_update_default_up(struct ixgbe_adapter *adapter)
6710{
6711#ifdef CONFIG_IXGBE_DCB
6712 struct net_device *netdev = adapter->netdev;
6713 struct dcb_app app = {
6714 .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE,
6715 .protocol = 0,
6716 };
6717 u8 up = 0;
6718
6719 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE)
6720 up = dcb_ieee_getapp_mask(netdev, &app);
6721
6722 adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0;
6723#endif
6724}
6725
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006726/**
6727 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6728 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006729 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006730 **/
6731static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6732{
6733 struct net_device *netdev = adapter->netdev;
6734 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilovcdc04dc2014-03-20 03:47:53 +00006735 struct net_device *upper;
6736 struct list_head *iter;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006737 u32 link_speed = adapter->link_speed;
Mark Rustad454adb02015-07-10 14:19:22 -07006738 const char *speed_str;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006739 bool flow_rx, flow_tx;
6740
6741 /* only continue if link was previously down */
6742 if (netif_carrier_ok(netdev))
6743 return;
6744
6745 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6746
6747 switch (hw->mac.type) {
6748 case ixgbe_mac_82598EB: {
6749 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6750 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6751 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6752 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6753 }
6754 break;
6755 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006756 case ixgbe_mac_X550:
6757 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07006758 case ixgbe_mac_x550em_a:
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006759 case ixgbe_mac_82599EB: {
6760 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6761 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6762 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6763 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6764 }
6765 break;
6766 default:
6767 flow_tx = false;
6768 flow_rx = false;
6769 break;
6770 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006771
Jacob Keller6cb562d2012-12-05 07:24:41 +00006772 adapter->last_rx_ptp_check = jiffies;
6773
Jacob Keller8fecf672013-06-21 08:14:32 +00006774 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006775 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006776
Mark Rustad454adb02015-07-10 14:19:22 -07006777 switch (link_speed) {
6778 case IXGBE_LINK_SPEED_10GB_FULL:
6779 speed_str = "10 Gbps";
6780 break;
6781 case IXGBE_LINK_SPEED_2_5GB_FULL:
6782 speed_str = "2.5 Gbps";
6783 break;
6784 case IXGBE_LINK_SPEED_1GB_FULL:
6785 speed_str = "1 Gbps";
6786 break;
6787 case IXGBE_LINK_SPEED_100_FULL:
6788 speed_str = "100 Mbps";
6789 break;
6790 default:
6791 speed_str = "unknown speed";
6792 break;
6793 }
6794 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n", speed_str,
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006795 ((flow_rx && flow_tx) ? "RX/TX" :
6796 (flow_rx ? "RX" :
6797 (flow_tx ? "TX" : "None"))));
6798
6799 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006800 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006801
Emil Tantilovcdc04dc2014-03-20 03:47:53 +00006802 /* enable transmits */
6803 netif_tx_wake_all_queues(adapter->netdev);
6804
6805 /* enable any upper devices */
6806 rtnl_lock();
6807 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
6808 if (netif_is_macvlan(upper)) {
6809 struct macvlan_dev *vlan = netdev_priv(upper);
6810
6811 if (vlan->fwd_priv)
6812 netif_tx_wake_all_queues(upper);
6813 }
6814 }
6815 rtnl_unlock();
6816
Alexander Duyck107d3012012-10-02 00:17:03 +00006817 /* update the default user priority for VFs */
6818 ixgbe_update_default_up(adapter);
6819
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006820 /* ping all the active vfs to let them know link has changed */
6821 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006822}
6823
6824/**
6825 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6826 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006827 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006828 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00006829static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006830{
6831 struct net_device *netdev = adapter->netdev;
6832 struct ixgbe_hw *hw = &adapter->hw;
6833
6834 adapter->link_up = false;
6835 adapter->link_speed = 0;
6836
6837 /* only continue if link was up previously */
6838 if (!netif_carrier_ok(netdev))
6839 return;
6840
6841 /* poll for SFP+ cable when link is down */
6842 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6843 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6844
Jacob Keller8fecf672013-06-21 08:14:32 +00006845 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
Jacob Keller1a71ab22012-08-25 03:54:19 +00006846 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006847
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006848 e_info(drv, "NIC Link is Down\n");
6849 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00006850
6851 /* ping all the active vfs to let them know link has changed */
6852 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006853}
6854
Emil Tantilov07923c12014-08-12 07:12:08 +00006855static bool ixgbe_ring_tx_pending(struct ixgbe_adapter *adapter)
6856{
6857 int i;
6858
6859 for (i = 0; i < adapter->num_tx_queues; i++) {
6860 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6861
6862 if (tx_ring->next_to_use != tx_ring->next_to_clean)
6863 return true;
6864 }
6865
6866 return false;
6867}
6868
6869static bool ixgbe_vf_tx_pending(struct ixgbe_adapter *adapter)
6870{
6871 struct ixgbe_hw *hw = &adapter->hw;
6872 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
6873 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
6874
6875 int i, j;
6876
6877 if (!adapter->num_vfs)
6878 return false;
6879
Don Skidmore9a75a1a2014-11-07 03:53:35 +00006880 /* resetting the PF is only needed for MAC before X550 */
6881 if (hw->mac.type >= ixgbe_mac_X550)
6882 return false;
6883
Emil Tantilov07923c12014-08-12 07:12:08 +00006884 for (i = 0; i < adapter->num_vfs; i++) {
6885 for (j = 0; j < q_per_pool; j++) {
6886 u32 h, t;
6887
6888 h = IXGBE_READ_REG(hw, IXGBE_PVFTDHN(q_per_pool, i, j));
6889 t = IXGBE_READ_REG(hw, IXGBE_PVFTDTN(q_per_pool, i, j));
6890
6891 if (h != t)
6892 return true;
6893 }
6894 }
6895
6896 return false;
6897}
6898
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006899/**
6900 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006901 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006902 **/
6903static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6904{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006905 if (!netif_carrier_ok(adapter->netdev)) {
Emil Tantilov07923c12014-08-12 07:12:08 +00006906 if (ixgbe_ring_tx_pending(adapter) ||
6907 ixgbe_vf_tx_pending(adapter)) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006908 /* We've lost link, so the controller stops DMA,
6909 * but we've got queued Tx work that's never going
6910 * to get done, so reset controller to flush Tx.
6911 * (Do the reset outside of interrupt context).
6912 */
Jacob Keller12ff3f32012-12-01 07:57:17 +00006913 e_warn(drv, "initiating reset to clear Tx work after link loss\n");
Emil Tantilov57ca2a42016-07-29 14:46:31 -07006914 set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006915 }
6916 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006917}
6918
Emil Tantilov9079e412014-11-19 03:18:19 +00006919#ifdef CONFIG_PCI_IOV
6920static inline void ixgbe_issue_vf_flr(struct ixgbe_adapter *adapter,
6921 struct pci_dev *vfdev)
6922{
6923 if (!pci_wait_for_pending_transaction(vfdev))
6924 e_dev_warn("Issuing VFLR with pending transactions\n");
6925
6926 e_dev_err("Issuing VFLR for VF %s\n", pci_name(vfdev));
6927 pcie_capability_set_word(vfdev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR);
6928
6929 msleep(100);
6930}
6931
6932static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6933{
6934 struct ixgbe_hw *hw = &adapter->hw;
6935 struct pci_dev *pdev = adapter->pdev;
Mark Rustad988d1302015-10-30 15:29:34 -07006936 unsigned int vf;
Emil Tantilov9079e412014-11-19 03:18:19 +00006937 u32 gpc;
Emil Tantilov9079e412014-11-19 03:18:19 +00006938
6939 if (!(netif_carrier_ok(adapter->netdev)))
6940 return;
6941
6942 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6943 if (gpc) /* If incrementing then no need for the check below */
6944 return;
6945 /* Check to see if a bad DMA write target from an errant or
6946 * malicious VF has caused a PCIe error. If so then we can
6947 * issue a VFLR to the offending VF(s) and then resume without
6948 * requesting a full slot reset.
6949 */
6950
6951 if (!pdev)
6952 return;
6953
Emil Tantilov9079e412014-11-19 03:18:19 +00006954 /* check status reg for all VFs owned by this PF */
Mark Rustad988d1302015-10-30 15:29:34 -07006955 for (vf = 0; vf < adapter->num_vfs; ++vf) {
6956 struct pci_dev *vfdev = adapter->vfinfo[vf].vfdev;
6957 u16 status_reg;
Emil Tantilov9079e412014-11-19 03:18:19 +00006958
Mark Rustad988d1302015-10-30 15:29:34 -07006959 if (!vfdev)
6960 continue;
6961 pci_read_config_word(vfdev, PCI_STATUS, &status_reg);
6962 if (status_reg != IXGBE_FAILED_READ_CFG_WORD &&
6963 status_reg & PCI_STATUS_REC_MASTER_ABORT)
6964 ixgbe_issue_vf_flr(adapter, vfdev);
Emil Tantilov9079e412014-11-19 03:18:19 +00006965 }
6966}
6967
Greg Rosea985b6c32010-11-18 03:02:52 +00006968static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6969{
6970 u32 ssvpc;
6971
Greg Rose0584d992012-08-08 00:00:58 +00006972 /* Do not perform spoof check for 82598 or if not in IOV mode */
6973 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
6974 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00006975 return;
6976
6977 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6978
6979 /*
6980 * ssvpc register is cleared on read, if zero then no
6981 * spoofed packets in the last interval.
6982 */
6983 if (!ssvpc)
6984 return;
6985
Emil Tantilovd6ea0752012-08-08 06:28:37 +00006986 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00006987}
Emil Tantilov9079e412014-11-19 03:18:19 +00006988#else
6989static void ixgbe_spoof_check(struct ixgbe_adapter __always_unused *adapter)
6990{
6991}
6992
6993static void
6994ixgbe_check_for_bad_vf(struct ixgbe_adapter __always_unused *adapter)
6995{
6996}
6997#endif /* CONFIG_PCI_IOV */
6998
Greg Rosea985b6c32010-11-18 03:02:52 +00006999
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007000/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007001 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007002 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07007003 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007004static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07007005{
Mark Rustad09f40ae2014-01-14 18:53:11 -08007006 /* if interface is down, removing or resetting, do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00007007 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08007008 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Emil Tantilov7edebf92011-08-27 07:18:37 +00007009 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007010 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07007011
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007012 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00007013
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007014 if (adapter->link_up)
7015 ixgbe_watchdog_link_is_up(adapter);
7016 else
7017 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00007018
Emil Tantilov9079e412014-11-19 03:18:19 +00007019 ixgbe_check_for_bad_vf(adapter);
Greg Rosea985b6c32010-11-18 03:02:52 +00007020 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007021 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007022
7023 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007024}
7025
Alexander Duyck70864002011-04-27 09:13:56 +00007026/**
7027 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007028 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00007029 **/
7030static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
7031{
7032 struct ixgbe_hw *hw = &adapter->hw;
7033 s32 err;
7034
7035 /* not searching for SFP so there is nothing to do here */
7036 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
7037 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
7038 return;
7039
Mark Rustad58e7cd22015-08-08 16:18:48 -07007040 if (adapter->sfp_poll_time &&
7041 time_after(adapter->sfp_poll_time, jiffies))
7042 return; /* If not yet time to poll for SFP */
7043
Alexander Duyck70864002011-04-27 09:13:56 +00007044 /* someone else is in init, wait until next service event */
7045 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
7046 return;
7047
Mark Rustad58e7cd22015-08-08 16:18:48 -07007048 adapter->sfp_poll_time = jiffies + IXGBE_SFP_POLL_JIFFIES - 1;
7049
Alexander Duyck70864002011-04-27 09:13:56 +00007050 err = hw->phy.ops.identify_sfp(hw);
7051 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
7052 goto sfp_out;
7053
7054 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
7055 /* If no cable is present, then we need to reset
7056 * the next time we find a good cable. */
7057 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
7058 }
7059
7060 /* exit on error */
7061 if (err)
7062 goto sfp_out;
7063
7064 /* exit if reset not needed */
7065 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
7066 goto sfp_out;
7067
7068 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
7069
7070 /*
7071 * A module may be identified correctly, but the EEPROM may not have
7072 * support for that module. setup_sfp() will fail in that case, so
7073 * we should not allow that module to load.
7074 */
7075 if (hw->mac.type == ixgbe_mac_82598EB)
7076 err = hw->phy.ops.reset(hw);
7077 else
7078 err = hw->mac.ops.setup_sfp(hw);
7079
7080 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
7081 goto sfp_out;
7082
7083 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
7084 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
7085
7086sfp_out:
7087 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
7088
7089 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
7090 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
7091 e_dev_err("failed to initialize because an unsupported "
7092 "SFP+ module type was detected.\n");
7093 e_dev_err("Reload the driver after installing a "
7094 "supported module.\n");
7095 unregister_netdev(adapter->netdev);
7096 }
7097}
7098
7099/**
7100 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00007101 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00007102 **/
7103static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
7104{
7105 struct ixgbe_hw *hw = &adapter->hw;
Josh Hay3d292262012-12-15 03:28:19 +00007106 u32 speed;
7107 bool autoneg = false;
Alexander Duyck70864002011-04-27 09:13:56 +00007108
7109 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
7110 return;
7111
7112 /* someone else is in init, wait until next service event */
7113 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
7114 return;
7115
7116 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
7117
Josh Hay3d292262012-12-15 03:28:19 +00007118 speed = hw->phy.autoneg_advertised;
Emil Tantiloved33ff62013-08-30 07:55:24 +00007119 if ((!speed) && (hw->mac.ops.get_link_capabilities)) {
Josh Hay3d292262012-12-15 03:28:19 +00007120 hw->mac.ops.get_link_capabilities(hw, &speed, &autoneg);
Emil Tantiloved33ff62013-08-30 07:55:24 +00007121
7122 /* setup the highest link when no autoneg */
7123 if (!autoneg) {
7124 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
7125 speed = IXGBE_LINK_SPEED_10GB_FULL;
7126 }
7127 }
7128
Alexander Duyck70864002011-04-27 09:13:56 +00007129 if (hw->mac.ops.setup_link)
Josh Hayfd0326f2012-12-15 03:28:30 +00007130 hw->mac.ops.setup_link(hw, speed, true);
Alexander Duyck70864002011-04-27 09:13:56 +00007131
7132 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
7133 adapter->link_check_timeout = jiffies;
7134 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
7135}
7136
7137/**
7138 * ixgbe_service_timer - Timer Call-back
7139 * @data: pointer to adapter cast into an unsigned long
7140 **/
7141static void ixgbe_service_timer(unsigned long data)
7142{
7143 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
7144 unsigned long next_event_offset;
7145
7146 /* poll faster when waiting for link */
7147 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
7148 next_event_offset = HZ / 10;
7149 else
7150 next_event_offset = HZ * 2;
7151
7152 /* Reset the timer */
7153 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
7154
Emil Tantilov9079e412014-11-19 03:18:19 +00007155 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007156}
7157
Don Skidmore597f22d2015-06-09 16:52:02 -07007158static void ixgbe_phy_interrupt_subtask(struct ixgbe_adapter *adapter)
7159{
7160 struct ixgbe_hw *hw = &adapter->hw;
7161 u32 status;
7162
7163 if (!(adapter->flags2 & IXGBE_FLAG2_PHY_INTERRUPT))
7164 return;
7165
7166 adapter->flags2 &= ~IXGBE_FLAG2_PHY_INTERRUPT;
7167
7168 if (!hw->phy.ops.handle_lasi)
7169 return;
7170
7171 status = hw->phy.ops.handle_lasi(&adapter->hw);
7172 if (status != IXGBE_ERR_OVERTEMP)
7173 return;
7174
7175 e_crit(drv, "%s\n", ixgbe_overheat_msg);
7176}
7177
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007178static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
7179{
Emil Tantilov57ca2a42016-07-29 14:46:31 -07007180 if (!test_and_clear_bit(__IXGBE_RESET_REQUESTED, &adapter->state))
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007181 return;
7182
Mark Rustad09f40ae2014-01-14 18:53:11 -08007183 /* If we're already down, removing or resetting, just bail */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007184 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
Mark Rustad09f40ae2014-01-14 18:53:11 -08007185 test_bit(__IXGBE_REMOVING, &adapter->state) ||
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007186 test_bit(__IXGBE_RESETTING, &adapter->state))
7187 return;
7188
7189 ixgbe_dump(adapter);
7190 netdev_err(adapter->netdev, "Reset adapter\n");
7191 adapter->tx_timeout_count++;
7192
John Fastabend8f4c5c92014-01-16 02:30:05 -08007193 rtnl_lock();
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007194 ixgbe_reinit_locked(adapter);
John Fastabend8f4c5c92014-01-16 02:30:05 -08007195 rtnl_unlock();
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007196}
7197
Alexander Duyck70864002011-04-27 09:13:56 +00007198/**
7199 * ixgbe_service_task - manages and runs subtasks
7200 * @work: pointer to work_struct containing our data
7201 **/
7202static void ixgbe_service_task(struct work_struct *work)
7203{
7204 struct ixgbe_adapter *adapter = container_of(work,
7205 struct ixgbe_adapter,
7206 service_task);
Mark Rustadb0483c82014-01-14 18:53:17 -08007207 if (ixgbe_removed(adapter->hw.hw_addr)) {
7208 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
7209 rtnl_lock();
7210 ixgbe_down(adapter);
7211 rtnl_unlock();
7212 }
7213 ixgbe_service_event_complete(adapter);
7214 return;
7215 }
Emil Tantilova21d0822016-08-10 11:19:23 -07007216 if (adapter->flags2 & IXGBE_FLAG2_UDP_TUN_REREG_NEEDED) {
Alexander Duyckb3a49552016-06-16 12:22:19 -07007217 rtnl_lock();
Emil Tantilova21d0822016-08-10 11:19:23 -07007218 adapter->flags2 &= ~IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
Alexander Duyckb3a49552016-06-16 12:22:19 -07007219 udp_tunnel_get_rx_info(adapter->netdev);
7220 rtnl_unlock();
Mark Rustad67359c32015-06-15 11:33:25 -07007221 }
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00007222 ixgbe_reset_subtask(adapter);
Don Skidmore597f22d2015-06-09 16:52:02 -07007223 ixgbe_phy_interrupt_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007224 ixgbe_sfp_detection_subtask(adapter);
7225 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00007226 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007227 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00007228 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00007229 ixgbe_check_hang_subtask(adapter);
Jacob Keller891dc082012-12-05 07:24:46 +00007230
Jacob Keller8fecf672013-06-21 08:14:32 +00007231 if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) {
Jacob Keller891dc082012-12-05 07:24:46 +00007232 ixgbe_ptp_overflow_check(adapter);
7233 ixgbe_ptp_rx_hang(adapter);
7234 }
Alexander Duyck70864002011-04-27 09:13:56 +00007235
7236 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007237}
7238
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007239static int ixgbe_tso(struct ixgbe_ring *tx_ring,
7240 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00007241 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00007242{
Alexander Duyckb83e3012016-04-14 17:19:31 -04007243 u32 vlan_macip_lens, type_tucmd, mss_l4len_idx;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007244 struct sk_buff *skb = first->skb;
Alexander Duyckb83e3012016-04-14 17:19:31 -04007245 union {
7246 struct iphdr *v4;
7247 struct ipv6hdr *v6;
7248 unsigned char *hdr;
7249 } ip;
7250 union {
7251 struct tcphdr *tcp;
7252 unsigned char *hdr;
7253 } l4;
7254 u32 paylen, l4_offset;
Francois Romieu2049e1f2014-03-30 03:14:27 +00007255 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007256
Alexander Duyck8f4fbb92012-10-30 06:01:40 +00007257 if (skb->ip_summed != CHECKSUM_PARTIAL)
7258 return 0;
7259
Alexander Duyck897ab152011-05-27 05:31:47 +00007260 if (!skb_is_gso(skb))
7261 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007262
Francois Romieu2049e1f2014-03-30 03:14:27 +00007263 err = skb_cow_head(skb, 0);
7264 if (err < 0)
7265 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00007266
Alexander Duyckb83e3012016-04-14 17:19:31 -04007267 ip.hdr = skb_network_header(skb);
7268 l4.hdr = skb_checksum_start(skb);
7269
Alexander Duyck897ab152011-05-27 05:31:47 +00007270 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
7271 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
7272
Alexander Duyckb83e3012016-04-14 17:19:31 -04007273 /* initialize outer IP header fields */
7274 if (ip.v4->version == 4) {
7275 /* IP header will have to cancel out any data that
7276 * is not a part of the outer IP header
7277 */
7278 ip.v4->check = csum_fold(csum_add(lco_csum(skb),
7279 csum_unfold(l4.tcp->check)));
Alexander Duyck897ab152011-05-27 05:31:47 +00007280 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyckb83e3012016-04-14 17:19:31 -04007281
7282 ip.v4->tot_len = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007283 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
7284 IXGBE_TX_FLAGS_CSUM |
7285 IXGBE_TX_FLAGS_IPV4;
Alexander Duyckb83e3012016-04-14 17:19:31 -04007286 } else {
7287 ip.v6->payload_len = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007288 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
7289 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00007290 }
7291
Alexander Duyckb83e3012016-04-14 17:19:31 -04007292 /* determine offset of inner transport header */
7293 l4_offset = l4.hdr - skb->data;
7294
7295 /* compute length of segmentation header */
7296 *hdr_len = (l4.tcp->doff * 4) + l4_offset;
7297
7298 /* remove payload length from inner checksum */
7299 paylen = skb->len - l4_offset;
7300 csum_replace_by_diff(&l4.tcp->check, htonl(paylen));
Alexander Duyck897ab152011-05-27 05:31:47 +00007301
Alexander Duyck091a6242012-02-08 07:51:01 +00007302 /* update gso size and bytecount with header size */
7303 first->gso_segs = skb_shinfo(skb)->gso_segs;
7304 first->bytecount += (first->gso_segs - 1) * *hdr_len;
7305
Alexander Duyckc44f5f52012-10-30 06:01:45 +00007306 /* mss_l4len_id: use 0 as index for TSO */
Alexander Duyckb83e3012016-04-14 17:19:31 -04007307 mss_l4len_idx = (*hdr_len - l4_offset) << IXGBE_ADVTXD_L4LEN_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +00007308 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +00007309
7310 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
Alexander Duyckb83e3012016-04-14 17:19:31 -04007311 vlan_macip_lens = l4.hdr - ip.hdr;
7312 vlan_macip_lens |= (ip.hdr - skb->data) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007313 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007314
7315 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00007316 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00007317
7318 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00007319}
7320
Alexander Duyck49763de2016-01-13 07:31:11 -08007321static inline bool ixgbe_ipv6_csum_is_sctp(struct sk_buff *skb)
7322{
7323 unsigned int offset = 0;
7324
7325 ipv6_find_hdr(skb, &offset, IPPROTO_SCTP, NULL, NULL);
7326
7327 return offset == skb_checksum_start_offset(skb);
7328}
7329
Alexander Duyck244e27a2012-02-08 07:51:11 +00007330static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
7331 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07007332{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007333 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00007334 u32 vlan_macip_lens = 0;
Alexander Duyck897ab152011-05-27 05:31:47 +00007335 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007336
Alexander Duyck897ab152011-05-27 05:31:47 +00007337 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck49763de2016-01-13 07:31:11 -08007338csum_failed:
7339 if (!(first->tx_flags & (IXGBE_TX_FLAGS_HW_VLAN |
7340 IXGBE_TX_FLAGS_CC)))
Alexander Duyck472148c2012-11-07 02:34:28 +00007341 return;
Alexander Duyck49763de2016-01-13 07:31:11 -08007342 goto no_csum;
Auke Kok9a799d72007-09-15 14:07:45 -07007343 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07007344
Alexander Duyck49763de2016-01-13 07:31:11 -08007345 switch (skb->csum_offset) {
7346 case offsetof(struct tcphdr, check):
7347 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
7348 /* fall through */
7349 case offsetof(struct udphdr, check):
7350 break;
7351 case offsetof(struct sctphdr, checksum):
7352 /* validate that this is actually an SCTP request */
7353 if (((first->protocol == htons(ETH_P_IP)) &&
7354 (ip_hdr(skb)->protocol == IPPROTO_SCTP)) ||
7355 ((first->protocol == htons(ETH_P_IPV6)) &&
7356 ixgbe_ipv6_csum_is_sctp(skb))) {
7357 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_SCTP;
7358 break;
7359 }
7360 /* fall through */
7361 default:
7362 skb_checksum_help(skb);
7363 goto csum_failed;
7364 }
7365
7366 /* update TX checksum flag */
7367 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
7368 vlan_macip_lens = skb_checksum_start_offset(skb) -
7369 skb_network_offset(skb);
Mark Rustad36a92d72015-11-18 09:21:28 -08007370no_csum:
Alexander Duyck244e27a2012-02-08 07:51:11 +00007371 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck49763de2016-01-13 07:31:11 -08007372 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007373 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007374
Alexander Duyck49763de2016-01-13 07:31:11 -08007375 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd, 0);
Auke Kok9a799d72007-09-15 14:07:45 -07007376}
7377
Alexander Duyck472148c2012-11-07 02:34:28 +00007378#define IXGBE_SET_FLAG(_input, _flag, _result) \
7379 ((_flag <= _result) ? \
7380 ((u32)(_input & _flag) * (_result / _flag)) : \
7381 ((u32)(_input & _flag) / (_flag / _result)))
7382
7383static u32 ixgbe_tx_cmd_type(struct sk_buff *skb, u32 tx_flags)
Alexander Duyckd3d00232011-07-15 02:31:25 +00007384{
7385 /* set type for advanced descriptor with frame checksum insertion */
Alexander Duyck472148c2012-11-07 02:34:28 +00007386 u32 cmd_type = IXGBE_ADVTXD_DTYP_DATA |
7387 IXGBE_ADVTXD_DCMD_DEXT |
7388 IXGBE_ADVTXD_DCMD_IFCS;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007389
7390 /* set HW vlan bit if vlan is present */
Alexander Duyck472148c2012-11-07 02:34:28 +00007391 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_HW_VLAN,
7392 IXGBE_ADVTXD_DCMD_VLE);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007393
Alexander Duyckd3d00232011-07-15 02:31:25 +00007394 /* set segmentation enable bits for TSO/FSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00007395 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSO,
7396 IXGBE_ADVTXD_DCMD_TSE);
7397
7398 /* set timestamp bit if present */
7399 cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSTAMP,
7400 IXGBE_ADVTXD_MAC_TSTAMP);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007401
Alexander Duyck62748b72012-07-20 08:09:01 +00007402 /* insert frame checksum */
Alexander Duyck472148c2012-11-07 02:34:28 +00007403 cmd_type ^= IXGBE_SET_FLAG(skb->no_fcs, 1, IXGBE_ADVTXD_DCMD_IFCS);
Alexander Duyck62748b72012-07-20 08:09:01 +00007404
Alexander Duyckd3d00232011-07-15 02:31:25 +00007405 return cmd_type;
7406}
7407
Alexander Duyck729739b2012-02-08 07:51:06 +00007408static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
7409 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00007410{
Alexander Duyck472148c2012-11-07 02:34:28 +00007411 u32 olinfo_status = paylen << IXGBE_ADVTXD_PAYLEN_SHIFT;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007412
7413 /* enable L4 checksum for TSO and TX checksum offload */
Alexander Duyck472148c2012-11-07 02:34:28 +00007414 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7415 IXGBE_TX_FLAGS_CSUM,
7416 IXGBE_ADVTXD_POPTS_TXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007417
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00007418 /* enble IPv4 checksum for TSO */
Alexander Duyck472148c2012-11-07 02:34:28 +00007419 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7420 IXGBE_TX_FLAGS_IPV4,
7421 IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007422
Alexander Duyck7f9643f2011-06-29 05:43:27 +00007423 /*
7424 * Check Context must be set if Tx switch is enabled, which it
7425 * always is for case where virtual functions are running
7426 */
Alexander Duyck472148c2012-11-07 02:34:28 +00007427 olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7428 IXGBE_TX_FLAGS_CC,
7429 IXGBE_ADVTXD_CC);
Alexander Duyck7f9643f2011-06-29 05:43:27 +00007430
Alexander Duyck472148c2012-11-07 02:34:28 +00007431 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007432}
7433
Daniel Borkmann2367a172014-08-26 19:34:18 +02007434static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
7435{
7436 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
7437
7438 /* Herbert's original patch had:
7439 * smp_mb__after_netif_stop_queue();
7440 * but since that doesn't exist yet, just open code it.
7441 */
7442 smp_mb();
7443
7444 /* We need to check again in a case another CPU has just
7445 * made room available.
7446 */
7447 if (likely(ixgbe_desc_unused(tx_ring) < size))
7448 return -EBUSY;
7449
7450 /* A reprieve! - use start_queue because it doesn't call schedule */
7451 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
7452 ++tx_ring->tx_stats.restart_queue;
7453 return 0;
7454}
7455
7456static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
7457{
7458 if (likely(ixgbe_desc_unused(tx_ring) >= size))
7459 return 0;
7460
7461 return __ixgbe_maybe_stop_tx(tx_ring, size);
7462}
7463
Alexander Duyckd3d00232011-07-15 02:31:25 +00007464#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
7465 IXGBE_TXD_CMD_RS)
7466
7467static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00007468 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00007469 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07007470{
Alexander Duyck729739b2012-02-08 07:51:06 +00007471 struct sk_buff *skb = first->skb;
7472 struct ixgbe_tx_buffer *tx_buffer;
7473 union ixgbe_adv_tx_desc *tx_desc;
Alexander Duyckec718252012-10-30 06:01:55 +00007474 struct skb_frag_struct *frag;
7475 dma_addr_t dma;
7476 unsigned int data_len, size;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007477 u32 tx_flags = first->tx_flags;
Alexander Duyck472148c2012-11-07 02:34:28 +00007478 u32 cmd_type = ixgbe_tx_cmd_type(skb, tx_flags);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007479 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07007480
Alexander Duyck729739b2012-02-08 07:51:06 +00007481 tx_desc = IXGBE_TX_DESC(tx_ring, i);
7482
Alexander Duyckec718252012-10-30 06:01:55 +00007483 ixgbe_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len);
7484
7485 size = skb_headlen(skb);
7486 data_len = skb->data_len;
Alexander Duyck729739b2012-02-08 07:51:06 +00007487
Alexander Duyckd3d00232011-07-15 02:31:25 +00007488#ifdef IXGBE_FCOE
7489 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00007490 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00007491 size -= sizeof(struct fcoe_crc_eof) - data_len;
7492 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00007493 } else {
7494 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00007495 }
Auke Kok9a799d72007-09-15 14:07:45 -07007496 }
7497
Alexander Duyckd3d00232011-07-15 02:31:25 +00007498#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00007499 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007500
Alexander Duyckec718252012-10-30 06:01:55 +00007501 tx_buffer = first;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007502
Alexander Duyckec718252012-10-30 06:01:55 +00007503 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
7504 if (dma_mapping_error(tx_ring->dev, dma))
7505 goto dma_error;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007506
Alexander Duyckec718252012-10-30 06:01:55 +00007507 /* record length, and DMA address */
7508 dma_unmap_len_set(tx_buffer, len, size);
7509 dma_unmap_addr_set(tx_buffer, dma, dma);
7510
7511 tx_desc->read.buffer_addr = cpu_to_le64(dma);
7512
Alexander Duyck729739b2012-02-08 07:51:06 +00007513 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00007514 tx_desc->read.cmd_type_len =
Alexander Duyck472148c2012-11-07 02:34:28 +00007515 cpu_to_le32(cmd_type ^ IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007516
Alexander Duyckd3d00232011-07-15 02:31:25 +00007517 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00007518 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007519 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00007520 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007521 i = 0;
7522 }
Alexander Duyckec718252012-10-30 06:01:55 +00007523 tx_desc->read.olinfo_status = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00007524
7525 dma += IXGBE_MAX_DATA_PER_TXD;
7526 size -= IXGBE_MAX_DATA_PER_TXD;
7527
7528 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007529 }
7530
Alexander Duyck729739b2012-02-08 07:51:06 +00007531 if (likely(!data_len))
7532 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007533
Alexander Duyck472148c2012-11-07 02:34:28 +00007534 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type ^ size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007535
Alexander Duyck729739b2012-02-08 07:51:06 +00007536 i++;
7537 tx_desc++;
7538 if (i == tx_ring->count) {
7539 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
7540 i = 0;
7541 }
Alexander Duyckec718252012-10-30 06:01:55 +00007542 tx_desc->read.olinfo_status = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007543
Alexander Duyckd3d00232011-07-15 02:31:25 +00007544#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00007545 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00007546#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00007547 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007548#endif
7549 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07007550
Alexander Duyck729739b2012-02-08 07:51:06 +00007551 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
7552 DMA_TO_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07007553
Alexander Duyck729739b2012-02-08 07:51:06 +00007554 tx_buffer = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -07007555 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00007556
Alexander Duyck729739b2012-02-08 07:51:06 +00007557 /* write last descriptor with RS and EOP bits */
Alexander Duyck472148c2012-11-07 02:34:28 +00007558 cmd_type |= size | IXGBE_TXD_CMD;
7559 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007560
Alexander Duyck091a6242012-02-08 07:51:01 +00007561 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00007562
Alexander Duyckd3d00232011-07-15 02:31:25 +00007563 /* set the timestamp */
7564 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07007565
7566 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00007567 * Force memory writes to complete before letting h/w know there
7568 * are new descriptors to fetch. (Only applicable for weak-ordered
7569 * memory model archs, such as IA-64).
7570 *
7571 * We also need this memory barrier to make certain all of the
7572 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07007573 */
7574 wmb();
7575
Alexander Duyckd3d00232011-07-15 02:31:25 +00007576 /* set next_to_watch value indicating a packet is present */
7577 first->next_to_watch = tx_desc;
7578
Alexander Duyck729739b2012-02-08 07:51:06 +00007579 i++;
7580 if (i == tx_ring->count)
7581 i = 0;
7582
7583 tx_ring->next_to_use = i;
7584
Daniel Borkmann2367a172014-08-26 19:34:18 +02007585 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
7586
7587 if (netif_xmit_stopped(txring_txq(tx_ring)) || !skb->xmit_more) {
Alexander Duyckad435ec2014-11-14 00:56:35 +00007588 writel(i, tx_ring->tail);
7589
7590 /* we need this if more than one processor can write to our tail
7591 * at a time, it synchronizes IO on IA64/Altix systems
7592 */
7593 mmiowb();
Daniel Borkmann9c938cd2014-08-24 15:42:16 +02007594 }
Daniel Borkmann2367a172014-08-26 19:34:18 +02007595
Alexander Duyckd3d00232011-07-15 02:31:25 +00007596 return;
7597dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00007598 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00007599
7600 /* clear dma mappings for failed tx_buffer_info map */
7601 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00007602 tx_buffer = &tx_ring->tx_buffer_info[i];
7603 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
7604 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00007605 break;
7606 if (i == 0)
7607 i = tx_ring->count;
7608 i--;
7609 }
7610
Alexander Duyckd3d00232011-07-15 02:31:25 +00007611 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07007612}
7613
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007614static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00007615 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007616{
Alexander Duyck69830522011-01-06 14:29:58 +00007617 struct ixgbe_q_vector *q_vector = ring->q_vector;
7618 union ixgbe_atr_hash_dword input = { .dword = 0 };
7619 union ixgbe_atr_hash_dword common = { .dword = 0 };
7620 union {
7621 unsigned char *network;
7622 struct iphdr *ipv4;
7623 struct ipv6hdr *ipv6;
7624 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08007625 struct tcphdr *th;
Alexander Duycke2873d42016-01-25 19:39:40 -08007626 unsigned int hlen;
Mark Rustad67359c32015-06-15 11:33:25 -07007627 struct sk_buff *skb;
Alexander Duyck905e4a42011-01-06 14:29:57 +00007628 __be16 vlan_id;
Alexander Duycke2873d42016-01-25 19:39:40 -08007629 int l4_proto;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007630
Alexander Duyck69830522011-01-06 14:29:58 +00007631 /* if ring doesn't have a interrupt vector, cannot perform ATR */
7632 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00007633 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007634
Alexander Duyck69830522011-01-06 14:29:58 +00007635 /* do nothing if sampling is disabled */
7636 if (!ring->atr_sample_rate)
7637 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007638
Alexander Duyck69830522011-01-06 14:29:58 +00007639 ring->atr_count++;
7640
Alexander Duycke2873d42016-01-25 19:39:40 -08007641 /* currently only IPv4/IPv6 with TCP is supported */
7642 if ((first->protocol != htons(ETH_P_IP)) &&
7643 (first->protocol != htons(ETH_P_IPV6)))
7644 return;
7645
Alexander Duyck69830522011-01-06 14:29:58 +00007646 /* snag network header to get L4 type and address */
Mark Rustad67359c32015-06-15 11:33:25 -07007647 skb = first->skb;
7648 hdr.network = skb_network_header(skb);
Alexander Duyck9f12df92016-01-25 19:36:29 -08007649 if (skb->encapsulation &&
7650 first->protocol == htons(ETH_P_IP) &&
7651 hdr.ipv4->protocol != IPPROTO_UDP) {
Mark Rustad67359c32015-06-15 11:33:25 -07007652 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck69830522011-01-06 14:29:58 +00007653
Alexander Duyck9f12df92016-01-25 19:36:29 -08007654 /* verify the port is recognized as VXLAN */
7655 if (adapter->vxlan_port &&
Alexander Duycke2873d42016-01-25 19:39:40 -08007656 udp_hdr(skb)->dest == adapter->vxlan_port)
Alexander Duyck9f12df92016-01-25 19:36:29 -08007657 hdr.network = skb_inner_network_header(skb);
Emil Tantilova21d0822016-08-10 11:19:23 -07007658
7659 if (adapter->geneve_port &&
7660 udp_hdr(skb)->dest == adapter->geneve_port)
7661 hdr.network = skb_inner_network_header(skb);
Mark Rustade19dcde2015-12-09 14:55:37 -08007662 }
7663
7664 /* Currently only IPv4/IPv6 with TCP is supported */
7665 switch (hdr.ipv4->version) {
7666 case IPVERSION:
Alexander Duycke2873d42016-01-25 19:39:40 -08007667 /* access ihl as u8 to avoid unaligned access on ia64 */
7668 hlen = (hdr.network[0] & 0x0F) << 2;
7669 l4_proto = hdr.ipv4->protocol;
Mark Rustade19dcde2015-12-09 14:55:37 -08007670 break;
7671 case 6:
Alexander Duycke2873d42016-01-25 19:39:40 -08007672 hlen = hdr.network - skb->data;
7673 l4_proto = ipv6_find_hdr(skb, &hlen, IPPROTO_TCP, NULL, NULL);
7674 hlen -= hdr.network - skb->data;
Mark Rustade19dcde2015-12-09 14:55:37 -08007675 break;
7676 default:
7677 return;
Mark Rustad67359c32015-06-15 11:33:25 -07007678 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007679
Alexander Duycke2873d42016-01-25 19:39:40 -08007680 if (l4_proto != IPPROTO_TCP)
7681 return;
7682
7683 th = (struct tcphdr *)(hdr.network + hlen);
7684
7685 /* skip this packet since the socket is closing */
7686 if (th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00007687 return;
7688
7689 /* sample on all syn packets or once every atr sample count */
7690 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
7691 return;
7692
7693 /* reset sample count */
7694 ring->atr_count = 0;
7695
Alexander Duyck244e27a2012-02-08 07:51:11 +00007696 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00007697
7698 /*
7699 * src and dst are inverted, think how the receiver sees them
7700 *
7701 * The input is broken into two sections, a non-compressed section
7702 * containing vm_pool, vlan_id, and flow_type. The rest of the data
7703 * is XORed together and stored in the compressed dword.
7704 */
7705 input.formatted.vlan_id = vlan_id;
7706
7707 /*
7708 * since src port and flex bytes occupy the same word XOR them together
7709 * and write the value to source port portion of compressed dword
7710 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007711 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Joe Perchesa1108ff2014-03-13 05:19:25 +00007712 common.port.src ^= th->dest ^ htons(ETH_P_8021Q);
Alexander Duyck69830522011-01-06 14:29:58 +00007713 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00007714 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00007715 common.port.dst ^= th->source;
7716
Mark Rustade19dcde2015-12-09 14:55:37 -08007717 switch (hdr.ipv4->version) {
7718 case IPVERSION:
Alexander Duyck69830522011-01-06 14:29:58 +00007719 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
7720 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
Mark Rustade19dcde2015-12-09 14:55:37 -08007721 break;
7722 case 6:
Alexander Duyck69830522011-01-06 14:29:58 +00007723 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
7724 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
7725 hdr.ipv6->saddr.s6_addr32[1] ^
7726 hdr.ipv6->saddr.s6_addr32[2] ^
7727 hdr.ipv6->saddr.s6_addr32[3] ^
7728 hdr.ipv6->daddr.s6_addr32[0] ^
7729 hdr.ipv6->daddr.s6_addr32[1] ^
7730 hdr.ipv6->daddr.s6_addr32[2] ^
7731 hdr.ipv6->daddr.s6_addr32[3];
Mark Rustade19dcde2015-12-09 14:55:37 -08007732 break;
7733 default:
7734 break;
Alexander Duyck69830522011-01-06 14:29:58 +00007735 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007736
Alexander Duyck9f12df92016-01-25 19:36:29 -08007737 if (hdr.network != skb_network_header(skb))
Mark Rustad67359c32015-06-15 11:33:25 -07007738 input.formatted.flow_type |= IXGBE_ATR_L4TYPE_TUNNEL_MASK;
Mark Rustad67359c32015-06-15 11:33:25 -07007739
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007740 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00007741 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
7742 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007743}
7744
Jason Wangf663dd92014-01-10 16:18:26 +08007745static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +01007746 void *accel_priv, select_queue_fallback_t fallback)
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007747{
Jason Wangf663dd92014-01-10 16:18:26 +08007748 struct ixgbe_fwd_adapter *fwd_adapter = accel_priv;
7749#ifdef IXGBE_FCOE
Alexander Duyck97488bd2013-01-12 06:33:37 +00007750 struct ixgbe_adapter *adapter;
7751 struct ixgbe_ring_feature *f;
7752 int txq;
Jason Wangf663dd92014-01-10 16:18:26 +08007753#endif
7754
7755 if (fwd_adapter)
7756 return skb->queue_mapping + fwd_adapter->tx_base_queue;
7757
7758#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00007759
Alexander Duyck97488bd2013-01-12 06:33:37 +00007760 /*
7761 * only execute the code below if protocol is FCoE
7762 * or FIP and we have FCoE enabled on the adapter
7763 */
7764 switch (vlan_get_protocol(skb)) {
Joe Perchesa1108ff2014-03-13 05:19:25 +00007765 case htons(ETH_P_FCOE):
7766 case htons(ETH_P_FIP):
Alexander Duyck97488bd2013-01-12 06:33:37 +00007767 adapter = netdev_priv(dev);
Alexander Duyckc0876632012-05-10 00:01:46 +00007768
Alexander Duyck97488bd2013-01-12 06:33:37 +00007769 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7770 break;
7771 default:
Daniel Borkmann99932d42014-02-16 15:55:20 +01007772 return fallback(dev, skb);
Krishna Kumarfdd3d632010-02-03 13:13:10 +00007773 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007774
Alexander Duyck97488bd2013-01-12 06:33:37 +00007775 f = &adapter->ring_feature[RING_F_FCOE];
7776
7777 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
7778 smp_processor_id();
7779
7780 while (txq >= f->indices)
7781 txq -= f->indices;
7782
7783 return txq + f->offset;
Jason Wangf663dd92014-01-10 16:18:26 +08007784#else
Daniel Borkmann99932d42014-02-16 15:55:20 +01007785 return fallback(dev, skb);
Jason Wangf663dd92014-01-10 16:18:26 +08007786#endif
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007787}
7788
Alexander Duyckfc77dc32010-11-16 19:26:51 -08007789netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00007790 struct ixgbe_adapter *adapter,
7791 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07007792{
Alexander Duyckd3d00232011-07-15 02:31:25 +00007793 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00007794 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007795 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00007796 unsigned short f;
Alexander Duycka535c302011-05-27 05:31:52 +00007797 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00007798 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00007799 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00007800
Alexander Duycka535c302011-05-27 05:31:52 +00007801 /*
7802 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00007803 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00007804 * + 2 desc gap to keep tail from touching head,
7805 * + 1 desc for context descriptor,
7806 * otherwise try next time
7807 */
Alexander Duycka535c302011-05-27 05:31:52 +00007808 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
7809 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Alexander Duyck7f661622013-02-09 01:19:55 +00007810
Alexander Duycka535c302011-05-27 05:31:52 +00007811 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
7812 tx_ring->tx_stats.tx_busy++;
7813 return NETDEV_TX_BUSY;
7814 }
7815
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007816 /* record the location of the first descriptor for this packet */
7817 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
7818 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00007819 first->bytecount = skb->len;
7820 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007821
Alexander Duyck66f32a82011-06-29 05:43:22 +00007822 /* if we have a HW VLAN tag being added default to the HW one */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01007823 if (skb_vlan_tag_present(skb)) {
7824 tx_flags |= skb_vlan_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007825 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7826 /* else if it is a SW VLAN check the next protocol and store the tag */
Joe Perchesa1108ff2014-03-13 05:19:25 +00007827 } else if (protocol == htons(ETH_P_8021Q)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007828 struct vlan_hdr *vhdr, _vhdr;
7829 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
7830 if (!vhdr)
7831 goto out_drop;
7832
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007833 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
7834 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007835 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07007836 }
Toshiaki Makita02136682015-01-29 20:37:09 +09007837 protocol = vlan_get_protocol(skb);
Yi Zoueacd73f2009-05-13 13:11:06 +00007838
Mark Rustadd5234932014-08-09 07:02:09 +00007839 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
7840 adapter->ptp_clock &&
7841 !test_and_set_bit_lock(__IXGBE_PTP_TX_IN_PROGRESS,
7842 &adapter->state)) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007843 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
7844 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
Jacob Keller891dc082012-12-05 07:24:46 +00007845
7846 /* schedule check for Tx timestamp */
7847 adapter->ptp_tx_skb = skb_get(skb);
7848 adapter->ptp_tx_start = jiffies;
7849 schedule_work(&adapter->ptp_tx_work);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007850 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007851
Jakub Kicinskiff29a862014-03-15 14:55:16 +00007852 skb_tx_timestamp(skb);
7853
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007854#ifdef CONFIG_PCI_IOV
7855 /*
7856 * Use the l2switch_enable flag - would be false if the DMA
7857 * Tx switch had been disabled.
7858 */
7859 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
Alexander Duyck472148c2012-11-07 02:34:28 +00007860 tx_flags |= IXGBE_TX_FLAGS_CC;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007861
7862#endif
John Fastabend32701dc2011-09-27 03:51:56 +00007863 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007864 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00007865 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
7866 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007867 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00007868 tx_flags |= (skb->priority & 0x7) <<
7869 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007870 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
7871 struct vlan_ethhdr *vhdr;
Francois Romieu2049e1f2014-03-30 03:14:27 +00007872
7873 if (skb_cow_head(skb, 0))
Alexander Duyck66f32a82011-06-29 05:43:22 +00007874 goto out_drop;
7875 vhdr = (struct vlan_ethhdr *)skb->data;
7876 vhdr->h_vlan_TCI = htons(tx_flags >>
7877 IXGBE_TX_FLAGS_VLAN_SHIFT);
7878 } else {
7879 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7880 }
7881 }
Alexander Duycka535c302011-05-27 05:31:52 +00007882
Alexander Duyck244e27a2012-02-08 07:51:11 +00007883 /* record initial flags and protocol */
7884 first->tx_flags = tx_flags;
7885 first->protocol = protocol;
7886
Yi Zoueacd73f2009-05-13 13:11:06 +00007887#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007888 /* setup tx offload for FCoE */
Joe Perchesa1108ff2014-03-13 05:19:25 +00007889 if ((protocol == htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00007890 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00007891 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00007892 if (tso < 0)
7893 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07007894
Alexander Duyck66f32a82011-06-29 05:43:22 +00007895 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007896 }
Auke Kok9a799d72007-09-15 14:07:45 -07007897
Auke Kok9a799d72007-09-15 14:07:45 -07007898#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007899 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007900 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007901 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00007902 else if (!tso)
7903 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007904
7905 /* add the ATR filter if ATR is on */
7906 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00007907 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00007908
7909#ifdef IXGBE_FCOE
7910xmit_fcoe:
7911#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00007912 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00007913
Auke Kok9a799d72007-09-15 14:07:45 -07007914 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007915
7916out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00007917 dev_kfree_skb_any(first->skb);
7918 first->skb = NULL;
7919
Alexander Duyck897ab152011-05-27 05:31:47 +00007920 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007921}
7922
John Fastabend2a47fa42013-11-06 09:54:52 -08007923static netdev_tx_t __ixgbe_xmit_frame(struct sk_buff *skb,
7924 struct net_device *netdev,
7925 struct ixgbe_ring *ring)
Auke Kok9a799d72007-09-15 14:07:45 -07007926{
7927 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007928 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07007929
Alexander Duycka50c29d2012-02-08 07:50:40 +00007930 /*
7931 * The minimum packet size for olinfo paylen is 17 so pad the skb
7932 * in order to meet this minimum size requirement.
7933 */
Alexander Duycka94d9e22014-12-03 08:17:39 -08007934 if (skb_put_padto(skb, 17))
7935 return NETDEV_TX_OK;
Alexander Duycka50c29d2012-02-08 07:50:40 +00007936
John Fastabend2a47fa42013-11-06 09:54:52 -08007937 tx_ring = ring ? ring : adapter->tx_ring[skb->queue_mapping];
7938
Auke Kok9a799d72007-09-15 14:07:45 -07007939 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7940}
7941
John Fastabend2a47fa42013-11-06 09:54:52 -08007942static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
7943 struct net_device *netdev)
7944{
7945 return __ixgbe_xmit_frame(skb, netdev, NULL);
7946}
7947
Auke Kok9a799d72007-09-15 14:07:45 -07007948/**
7949 * ixgbe_set_mac - Change the Ethernet Address of the NIC
7950 * @netdev: network interface device structure
7951 * @p: pointer to an address structure
7952 *
7953 * Returns 0 on success, negative on failure
7954 **/
7955static int ixgbe_set_mac(struct net_device *netdev, void *p)
7956{
7957 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7958 struct ixgbe_hw *hw = &adapter->hw;
7959 struct sockaddr *addr = p;
7960
7961 if (!is_valid_ether_addr(addr->sa_data))
7962 return -EADDRNOTAVAIL;
7963
7964 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007965 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07007966
Alexander Duyckc9f53e62015-10-22 16:26:30 -07007967 ixgbe_mac_set_default_filter(adapter);
7968
7969 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07007970}
7971
Ben Hutchings6b73e102009-04-29 08:08:58 +00007972static int
7973ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7974{
7975 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7976 struct ixgbe_hw *hw = &adapter->hw;
7977 u16 value;
7978 int rc;
7979
7980 if (prtad != hw->phy.mdio.prtad)
7981 return -EINVAL;
7982 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7983 if (!rc)
7984 rc = value;
7985 return rc;
7986}
7987
7988static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7989 u16 addr, u16 value)
7990{
7991 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7992 struct ixgbe_hw *hw = &adapter->hw;
7993
7994 if (prtad != hw->phy.mdio.prtad)
7995 return -EINVAL;
7996 return hw->phy.ops.write_reg(hw, addr, devad, value);
7997}
7998
7999static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
8000{
8001 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8002
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00008003 switch (cmd) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00008004 case SIOCSHWTSTAMP:
Jacob Keller93501d42014-02-28 15:48:58 -08008005 return ixgbe_ptp_set_ts_config(adapter, req);
8006 case SIOCGHWTSTAMP:
8007 return ixgbe_ptp_get_ts_config(adapter, req);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00008008 default:
8009 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
8010 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00008011}
8012
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008013/**
8014 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00008015 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008016 * @netdev: network interface device structure
8017 *
8018 * Returns non-zero on failure
8019 **/
8020static int ixgbe_add_sanmac_netdev(struct net_device *dev)
8021{
8022 int err = 0;
8023 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00008024 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008025
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00008026 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008027 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00008028 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008029 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00008030
8031 /* update SAN MAC vmdq pool selection */
8032 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008033 }
8034 return err;
8035}
8036
8037/**
8038 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00008039 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008040 * @netdev: network interface device structure
8041 *
8042 * Returns non-zero on failure
8043 **/
8044static int ixgbe_del_sanmac_netdev(struct net_device *dev)
8045{
8046 int err = 0;
8047 struct ixgbe_adapter *adapter = netdev_priv(dev);
8048 struct ixgbe_mac_info *mac = &adapter->hw.mac;
8049
8050 if (is_valid_ether_addr(mac->san_addr)) {
8051 rtnl_lock();
8052 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
8053 rtnl_unlock();
8054 }
8055 return err;
8056}
8057
Auke Kok9a799d72007-09-15 14:07:45 -07008058#ifdef CONFIG_NET_POLL_CONTROLLER
8059/*
8060 * Polling 'interrupt' - used by things like netconsole to send skbs
8061 * without having to re-enable interrupts. It's not called while
8062 * the interrupt routine is executing.
8063 */
8064static void ixgbe_netpoll(struct net_device *netdev)
8065{
8066 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00008067 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07008068
Alexander Duyck1a647bd2010-01-13 01:49:13 +00008069 /* if interface is down do nothing */
8070 if (test_bit(__IXGBE_DOWN, &adapter->state))
8071 return;
8072
Alexander Duyck856f6062015-02-25 17:45:54 +00008073 /* loop through and schedule all active queues */
8074 for (i = 0; i < adapter->num_q_vectors; i++)
8075 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07008076}
Auke Kok9a799d72007-09-15 14:07:45 -07008077
Alexander Duyck581330b2012-02-08 07:51:47 +00008078#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00008079static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
8080 struct rtnl_link_stats64 *stats)
8081{
8082 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8083 int i;
8084
Eric Dumazet1a515022010-11-16 19:26:42 -08008085 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00008086 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08008087 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00008088 u64 bytes, packets;
8089 unsigned int start;
8090
Eric Dumazet1a515022010-11-16 19:26:42 -08008091 if (ring) {
8092 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07008093 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazet1a515022010-11-16 19:26:42 -08008094 packets = ring->stats.packets;
8095 bytes = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07008096 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet1a515022010-11-16 19:26:42 -08008097 stats->rx_packets += packets;
8098 stats->rx_bytes += bytes;
8099 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00008100 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00008101
8102 for (i = 0; i < adapter->num_tx_queues; i++) {
8103 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
8104 u64 bytes, packets;
8105 unsigned int start;
8106
8107 if (ring) {
8108 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07008109 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00008110 packets = ring->stats.packets;
8111 bytes = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07008112 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00008113 stats->tx_packets += packets;
8114 stats->tx_bytes += bytes;
8115 }
8116 }
Eric Dumazet1a515022010-11-16 19:26:42 -08008117 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00008118 /* following stats updated by ixgbe_watchdog_task() */
8119 stats->multicast = netdev->stats.multicast;
8120 stats->rx_errors = netdev->stats.rx_errors;
8121 stats->rx_length_errors = netdev->stats.rx_length_errors;
8122 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
8123 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
8124 return stats;
8125}
8126
Jeff Kirsher8af3c332012-02-18 07:08:14 +00008127#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00008128/**
8129 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
8130 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00008131 * @tc: number of traffic classes currently enabled
8132 *
8133 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
8134 * 802.1Q priority maps to a packet buffer that exists.
8135 */
8136static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
8137{
8138 struct ixgbe_hw *hw = &adapter->hw;
8139 u32 reg, rsave;
8140 int i;
8141
8142 /* 82598 have a static priority to TC mapping that can not
8143 * be changed so no validation is needed.
8144 */
8145 if (hw->mac.type == ixgbe_mac_82598EB)
8146 return;
8147
8148 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
8149 rsave = reg;
8150
8151 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
8152 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
8153
8154 /* If up2tc is out of bounds default to zero */
8155 if (up2tc > tc)
8156 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
8157 }
8158
8159 if (reg != rsave)
8160 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
8161
8162 return;
8163}
8164
Ben Hutchings49ce9c22012-07-10 10:56:00 +00008165/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00008166 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
8167 * @adapter: Pointer to adapter struct
8168 *
8169 * Populate the netdev user priority to tc map
8170 */
8171static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
8172{
8173 struct net_device *dev = adapter->netdev;
8174 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
8175 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
8176 u8 prio;
8177
8178 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
8179 u8 tc = 0;
8180
8181 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
8182 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
8183 else if (ets)
8184 tc = ets->prio_tc[prio];
8185
8186 netdev_set_prio_tc_map(dev, prio, tc);
8187 }
8188}
8189
Alexander Duyckcca73c52013-01-12 06:33:44 +00008190#endif /* CONFIG_IXGBE_DCB */
Alexander Duyck02debdc2012-05-18 06:33:31 +00008191/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00008192 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00008193 *
8194 * @netdev: net device to configure
8195 * @tc: number of traffic classes to enable
8196 */
8197int ixgbe_setup_tc(struct net_device *dev, u8 tc)
8198{
John Fastabend8b1c0b22011-05-03 02:26:48 +00008199 struct ixgbe_adapter *adapter = netdev_priv(dev);
8200 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend2a47fa42013-11-06 09:54:52 -08008201 bool pools;
John Fastabend8b1c0b22011-05-03 02:26:48 +00008202
John Fastabend8b1c0b22011-05-03 02:26:48 +00008203 /* Hardware supports up to 8 traffic classes */
Emil Tantilov7e3f5c82015-07-09 12:28:59 -07008204 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs)
8205 return -EINVAL;
8206
8207 if (hw->mac.type == ixgbe_mac_82598EB && tc && tc < MAX_TRAFFIC_CLASS)
John Fastabend8b1c0b22011-05-03 02:26:48 +00008208 return -EINVAL;
8209
John Fastabend2a47fa42013-11-06 09:54:52 -08008210 pools = (find_first_zero_bit(&adapter->fwd_bitmask, 32) > 1);
8211 if (tc && pools && adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS)
8212 return -EBUSY;
8213
John Fastabend8b1c0b22011-05-03 02:26:48 +00008214 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00008215 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00008216 * hardware is not flexible enough to do this dynamically.
8217 */
8218 if (netif_running(dev))
8219 ixgbe_close(dev);
Alexander Duyckbf4d67d2015-10-20 13:28:17 -07008220 else
8221 ixgbe_reset(adapter);
8222
John Fastabend8b1c0b22011-05-03 02:26:48 +00008223 ixgbe_clear_interrupt_scheme(adapter);
8224
Alexander Duyckcca73c52013-01-12 06:33:44 +00008225#ifdef CONFIG_IXGBE_DCB
John Fastabende7589ea2011-07-18 22:38:36 +00008226 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00008227 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00008228 ixgbe_set_prio_tc_map(adapter);
8229
John Fastabende7589ea2011-07-18 22:38:36 +00008230 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00008231
Alexander Duyck943561d2012-05-09 22:14:44 -07008232 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
8233 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00008234 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07008235 }
John Fastabende7589ea2011-07-18 22:38:36 +00008236 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00008237 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00008238
Alexander Duyck943561d2012-05-09 22:14:44 -07008239 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
8240 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00008241
8242 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00008243
8244 adapter->temp_dcb_cfg.pfc_mode_enable = false;
8245 adapter->dcb_cfg.pfc_mode_enable = false;
8246 }
8247
John Fastabend8b1c0b22011-05-03 02:26:48 +00008248 ixgbe_validate_rtr(adapter, tc);
Alexander Duyckcca73c52013-01-12 06:33:44 +00008249
8250#endif /* CONFIG_IXGBE_DCB */
8251 ixgbe_init_interrupt_scheme(adapter);
8252
John Fastabend8b1c0b22011-05-03 02:26:48 +00008253 if (netif_running(dev))
Alexander Duyckcca73c52013-01-12 06:33:44 +00008254 return ixgbe_open(dev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00008255
8256 return 0;
8257}
Eric Dumazetde1036b2010-10-20 23:00:04 +00008258
John Fastabendb82b17d2016-02-16 21:18:53 -08008259static int ixgbe_delete_clsu32(struct ixgbe_adapter *adapter,
8260 struct tc_cls_u32_offload *cls)
8261{
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008262 u32 hdl = cls->knode.handle;
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008263 u32 uhtid = TC_U32_USERHTID(cls->knode.handle);
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008264 u32 loc = cls->knode.handle & 0xfffff;
8265 int err = 0, i, j;
8266 struct ixgbe_jump_table *jump = NULL;
8267
8268 if (loc > IXGBE_MAX_HW_ENTRIES)
8269 return -EINVAL;
John Fastabendb82b17d2016-02-16 21:18:53 -08008270
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008271 if ((uhtid != 0x800) && (uhtid >= IXGBE_MAX_LINK_HANDLE))
8272 return -EINVAL;
8273
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008274 /* Clear this filter in the link data it is associated with */
8275 if (uhtid != 0x800) {
8276 jump = adapter->jump_tables[uhtid];
Amritha Nambiar12746fd2016-05-16 18:33:20 -07008277 if (!jump)
8278 return -EINVAL;
8279 if (!test_bit(loc - 1, jump->child_loc_map))
8280 return -EINVAL;
8281 clear_bit(loc - 1, jump->child_loc_map);
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008282 }
8283
8284 /* Check if the filter being deleted is a link */
8285 for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) {
8286 jump = adapter->jump_tables[i];
8287 if (jump && jump->link_hdl == hdl) {
8288 /* Delete filters in the hardware in the child hash
8289 * table associated with this link
8290 */
8291 for (j = 0; j < IXGBE_MAX_HW_ENTRIES; j++) {
8292 if (!test_bit(j, jump->child_loc_map))
8293 continue;
8294 spin_lock(&adapter->fdir_perfect_lock);
8295 err = ixgbe_update_ethtool_fdir_entry(adapter,
8296 NULL,
8297 j + 1);
8298 spin_unlock(&adapter->fdir_perfect_lock);
8299 clear_bit(j, jump->child_loc_map);
8300 }
8301 /* Remove resources for this link */
8302 kfree(jump->input);
8303 kfree(jump->mask);
8304 kfree(jump);
8305 adapter->jump_tables[i] = NULL;
8306 return err;
8307 }
8308 }
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008309
John Fastabendb82b17d2016-02-16 21:18:53 -08008310 spin_lock(&adapter->fdir_perfect_lock);
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008311 err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, loc);
John Fastabendb82b17d2016-02-16 21:18:53 -08008312 spin_unlock(&adapter->fdir_perfect_lock);
8313 return err;
8314}
8315
John Fastabenddb956ae2016-02-16 21:19:19 -08008316static int ixgbe_configure_clsu32_add_hnode(struct ixgbe_adapter *adapter,
8317 __be16 protocol,
8318 struct tc_cls_u32_offload *cls)
8319{
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008320 u32 uhtid = TC_U32_USERHTID(cls->hnode.handle);
8321
8322 if (uhtid >= IXGBE_MAX_LINK_HANDLE)
8323 return -EINVAL;
8324
John Fastabenddb956ae2016-02-16 21:19:19 -08008325 /* This ixgbe devices do not support hash tables at the moment
8326 * so abort when given hash tables.
8327 */
8328 if (cls->hnode.divisor > 0)
8329 return -EINVAL;
8330
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008331 set_bit(uhtid - 1, &adapter->tables);
John Fastabenddb956ae2016-02-16 21:19:19 -08008332 return 0;
8333}
8334
8335static int ixgbe_configure_clsu32_del_hnode(struct ixgbe_adapter *adapter,
8336 struct tc_cls_u32_offload *cls)
8337{
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008338 u32 uhtid = TC_U32_USERHTID(cls->hnode.handle);
8339
8340 if (uhtid >= IXGBE_MAX_LINK_HANDLE)
8341 return -EINVAL;
8342
8343 clear_bit(uhtid - 1, &adapter->tables);
John Fastabenddb956ae2016-02-16 21:19:19 -08008344 return 0;
8345}
8346
Sridhar Samudrala947f8a42016-04-05 10:39:07 -07008347#ifdef CONFIG_NET_CLS_ACT
8348static int handle_redirect_action(struct ixgbe_adapter *adapter, int ifindex,
8349 u8 *queue, u64 *action)
8350{
8351 unsigned int num_vfs = adapter->num_vfs, vf;
8352 struct net_device *upper;
8353 struct list_head *iter;
8354
8355 /* redirect to a SRIOV VF */
8356 for (vf = 0; vf < num_vfs; ++vf) {
8357 upper = pci_get_drvdata(adapter->vfinfo[vf].vfdev);
8358 if (upper->ifindex == ifindex) {
8359 if (adapter->num_rx_pools > 1)
8360 *queue = vf * 2;
8361 else
8362 *queue = vf * adapter->num_rx_queues_per_pool;
8363
8364 *action = vf + 1;
8365 *action <<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF;
8366 return 0;
8367 }
8368 }
8369
8370 /* redirect to a offloaded macvlan netdev */
8371 netdev_for_each_all_upper_dev_rcu(adapter->netdev, upper, iter) {
8372 if (netif_is_macvlan(upper)) {
8373 struct macvlan_dev *dfwd = netdev_priv(upper);
8374 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
8375
8376 if (vadapter && vadapter->netdev->ifindex == ifindex) {
8377 *queue = adapter->rx_ring[vadapter->rx_base_queue]->reg_idx;
8378 *action = *queue;
8379 return 0;
8380 }
8381 }
8382 }
8383
8384 return -EINVAL;
8385}
8386
8387static int parse_tc_actions(struct ixgbe_adapter *adapter,
8388 struct tcf_exts *exts, u64 *action, u8 *queue)
8389{
8390 const struct tc_action *a;
WANG Cong22dc13c2016-08-13 22:35:00 -07008391 LIST_HEAD(actions);
Sridhar Samudrala947f8a42016-04-05 10:39:07 -07008392 int err;
8393
8394 if (tc_no_actions(exts))
8395 return -EINVAL;
8396
WANG Cong22dc13c2016-08-13 22:35:00 -07008397 tcf_exts_to_list(exts, &actions);
8398 list_for_each_entry(a, &actions, list) {
Sridhar Samudrala947f8a42016-04-05 10:39:07 -07008399
8400 /* Drop action */
8401 if (is_tcf_gact_shot(a)) {
8402 *action = IXGBE_FDIR_DROP_QUEUE;
8403 *queue = IXGBE_FDIR_DROP_QUEUE;
8404 return 0;
8405 }
8406
8407 /* Redirect to a VF or a offloaded macvlan */
Shmulik Ladkani5724b8b2016-10-13 09:06:43 +03008408 if (is_tcf_mirred_egress_redirect(a)) {
Sridhar Samudrala947f8a42016-04-05 10:39:07 -07008409 int ifindex = tcf_mirred_ifindex(a);
8410
8411 err = handle_redirect_action(adapter, ifindex, queue,
8412 action);
8413 if (err == 0)
8414 return err;
8415 }
8416 }
8417
8418 return -EINVAL;
8419}
8420#else
8421static int parse_tc_actions(struct ixgbe_adapter *adapter,
8422 struct tcf_exts *exts, u64 *action, u8 *queue)
8423{
8424 return -EINVAL;
8425}
8426#endif /* CONFIG_NET_CLS_ACT */
8427
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008428static int ixgbe_clsu32_build_input(struct ixgbe_fdir_filter *input,
8429 union ixgbe_atr_input *mask,
8430 struct tc_cls_u32_offload *cls,
8431 struct ixgbe_mat_field *field_ptr,
8432 struct ixgbe_nexthdr *nexthdr)
8433{
8434 int i, j, off;
8435 __be32 val, m;
8436 bool found_entry = false, found_jump_field = false;
8437
8438 for (i = 0; i < cls->knode.sel->nkeys; i++) {
8439 off = cls->knode.sel->keys[i].off;
8440 val = cls->knode.sel->keys[i].val;
8441 m = cls->knode.sel->keys[i].mask;
8442
8443 for (j = 0; field_ptr[j].val; j++) {
8444 if (field_ptr[j].off == off) {
8445 field_ptr[j].val(input, mask, val, m);
8446 input->filter.formatted.flow_type |=
8447 field_ptr[j].type;
8448 found_entry = true;
8449 break;
8450 }
8451 }
8452 if (nexthdr) {
8453 if (nexthdr->off == cls->knode.sel->keys[i].off &&
8454 nexthdr->val == cls->knode.sel->keys[i].val &&
8455 nexthdr->mask == cls->knode.sel->keys[i].mask)
8456 found_jump_field = true;
8457 else
8458 continue;
8459 }
8460 }
8461
8462 if (nexthdr && !found_jump_field)
8463 return -EINVAL;
8464
8465 if (!found_entry)
8466 return 0;
8467
8468 mask->formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK |
8469 IXGBE_ATR_L4TYPE_MASK;
8470
8471 if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4)
8472 mask->formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK;
8473
8474 return 0;
8475}
8476
John Fastabendb82b17d2016-02-16 21:18:53 -08008477static int ixgbe_configure_clsu32(struct ixgbe_adapter *adapter,
8478 __be16 protocol,
8479 struct tc_cls_u32_offload *cls)
8480{
8481 u32 loc = cls->knode.handle & 0xfffff;
8482 struct ixgbe_hw *hw = &adapter->hw;
8483 struct ixgbe_mat_field *field_ptr;
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008484 struct ixgbe_fdir_filter *input = NULL;
8485 union ixgbe_atr_input *mask = NULL;
8486 struct ixgbe_jump_table *jump = NULL;
8487 int i, err = -EINVAL;
John Fastabendb82b17d2016-02-16 21:18:53 -08008488 u8 queue;
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008489 u32 uhtid, link_uhtid;
John Fastabendb82b17d2016-02-16 21:18:53 -08008490
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008491 uhtid = TC_U32_USERHTID(cls->knode.handle);
8492 link_uhtid = TC_U32_USERHTID(cls->knode.link_handle);
John Fastabendb82b17d2016-02-16 21:18:53 -08008493
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008494 /* At the moment cls_u32 jumps to network layer and skips past
John Fastabendb82b17d2016-02-16 21:18:53 -08008495 * L2 headers. The canonical method to match L2 frames is to use
8496 * negative values. However this is error prone at best but really
8497 * just broken because there is no way to "know" what sort of hdr
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008498 * is in front of the network layer. Fix cls_u32 to support L2
John Fastabendb82b17d2016-02-16 21:18:53 -08008499 * headers when needed.
8500 */
8501 if (protocol != htons(ETH_P_IP))
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008502 return err;
John Fastabendb82b17d2016-02-16 21:18:53 -08008503
8504 if (loc >= ((1024 << adapter->fdir_pballoc) - 2)) {
8505 e_err(drv, "Location out of range\n");
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008506 return err;
John Fastabendb82b17d2016-02-16 21:18:53 -08008507 }
8508
8509 /* cls u32 is a graph starting at root node 0x800. The driver tracks
8510 * links and also the fields used to advance the parser across each
8511 * link (e.g. nexthdr/eat parameters from 'tc'). This way we can map
8512 * the u32 graph onto the hardware parse graph denoted in ixgbe_model.h
8513 * To add support for new nodes update ixgbe_model.h parse structures
8514 * this function _should_ be generic try not to hardcode values here.
8515 */
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008516 if (uhtid == 0x800) {
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008517 field_ptr = (adapter->jump_tables[0])->mat;
John Fastabendb82b17d2016-02-16 21:18:53 -08008518 } else {
Sridhar Samudrala176621c2016-03-07 09:41:47 -08008519 if (uhtid >= IXGBE_MAX_LINK_HANDLE)
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008520 return err;
8521 if (!adapter->jump_tables[uhtid])
8522 return err;
8523 field_ptr = (adapter->jump_tables[uhtid])->mat;
John Fastabendb82b17d2016-02-16 21:18:53 -08008524 }
8525
8526 if (!field_ptr)
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008527 return err;
8528
8529 /* At this point we know the field_ptr is valid and need to either
8530 * build cls_u32 link or attach filter. Because adding a link to
8531 * a handle that does not exist is invalid and the same for adding
8532 * rules to handles that don't exist.
8533 */
8534
8535 if (link_uhtid) {
8536 struct ixgbe_nexthdr *nexthdr = ixgbe_ipv4_jumps;
8537
8538 if (link_uhtid >= IXGBE_MAX_LINK_HANDLE)
8539 return err;
8540
8541 if (!test_bit(link_uhtid - 1, &adapter->tables))
8542 return err;
8543
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008544 /* Multiple filters as links to the same hash table are not
8545 * supported. To add a new filter with the same next header
8546 * but different match/jump conditions, create a new hash table
8547 * and link to it.
8548 */
8549 if (adapter->jump_tables[link_uhtid] &&
8550 (adapter->jump_tables[link_uhtid])->link_hdl) {
8551 e_err(drv, "Link filter exists for link: %x\n",
8552 link_uhtid);
8553 return err;
8554 }
8555
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008556 for (i = 0; nexthdr[i].jump; i++) {
8557 if (nexthdr[i].o != cls->knode.sel->offoff ||
8558 nexthdr[i].s != cls->knode.sel->offshift ||
8559 nexthdr[i].m != cls->knode.sel->offmask)
8560 return err;
8561
8562 jump = kzalloc(sizeof(*jump), GFP_KERNEL);
8563 if (!jump)
8564 return -ENOMEM;
8565 input = kzalloc(sizeof(*input), GFP_KERNEL);
8566 if (!input) {
8567 err = -ENOMEM;
8568 goto free_jump;
8569 }
8570 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
8571 if (!mask) {
8572 err = -ENOMEM;
Amritha Nambiar12746fd2016-05-16 18:33:20 -07008573 goto free_input;
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008574 }
8575 jump->input = input;
8576 jump->mask = mask;
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008577 jump->link_hdl = cls->knode.handle;
8578
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008579 err = ixgbe_clsu32_build_input(input, mask, cls,
8580 field_ptr, &nexthdr[i]);
8581 if (!err) {
8582 jump->mat = nexthdr[i].jump;
8583 adapter->jump_tables[link_uhtid] = jump;
8584 break;
8585 }
8586 }
8587 return 0;
8588 }
John Fastabendb82b17d2016-02-16 21:18:53 -08008589
8590 input = kzalloc(sizeof(*input), GFP_KERNEL);
8591 if (!input)
8592 return -ENOMEM;
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008593 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
8594 if (!mask) {
8595 err = -ENOMEM;
Amritha Nambiar12746fd2016-05-16 18:33:20 -07008596 goto free_input;
John Fastabendb82b17d2016-02-16 21:18:53 -08008597 }
8598
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008599 if ((uhtid != 0x800) && (adapter->jump_tables[uhtid])) {
8600 if ((adapter->jump_tables[uhtid])->input)
8601 memcpy(input, (adapter->jump_tables[uhtid])->input,
8602 sizeof(*input));
8603 if ((adapter->jump_tables[uhtid])->mask)
8604 memcpy(mask, (adapter->jump_tables[uhtid])->mask,
8605 sizeof(*mask));
Amritha Nambiar12746fd2016-05-16 18:33:20 -07008606
8607 /* Lookup in all child hash tables if this location is already
8608 * filled with a filter
8609 */
8610 for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) {
8611 struct ixgbe_jump_table *link = adapter->jump_tables[i];
8612
8613 if (link && (test_bit(loc - 1, link->child_loc_map))) {
8614 e_err(drv, "Filter exists in location: %x\n",
8615 loc);
8616 err = -EINVAL;
8617 goto err_out;
8618 }
8619 }
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008620 }
8621 err = ixgbe_clsu32_build_input(input, mask, cls, field_ptr, NULL);
8622 if (err)
John Fastabendb82b17d2016-02-16 21:18:53 -08008623 goto err_out;
8624
Sridhar Samudrala947f8a42016-04-05 10:39:07 -07008625 err = parse_tc_actions(adapter, cls->knode.exts, &input->action,
8626 &queue);
8627 if (err < 0)
John Fastabendb82b17d2016-02-16 21:18:53 -08008628 goto err_out;
John Fastabendb82b17d2016-02-16 21:18:53 -08008629
John Fastabendb82b17d2016-02-16 21:18:53 -08008630 input->sw_idx = loc;
8631
8632 spin_lock(&adapter->fdir_perfect_lock);
8633
8634 if (hlist_empty(&adapter->fdir_filter_list)) {
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008635 memcpy(&adapter->fdir_mask, mask, sizeof(*mask));
8636 err = ixgbe_fdir_set_input_mask_82599(hw, mask);
John Fastabendb82b17d2016-02-16 21:18:53 -08008637 if (err)
8638 goto err_out_w_lock;
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008639 } else if (memcmp(&adapter->fdir_mask, mask, sizeof(*mask))) {
John Fastabendb82b17d2016-02-16 21:18:53 -08008640 err = -EINVAL;
8641 goto err_out_w_lock;
8642 }
8643
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008644 ixgbe_atr_compute_perfect_hash_82599(&input->filter, mask);
John Fastabendb82b17d2016-02-16 21:18:53 -08008645 err = ixgbe_fdir_write_perfect_filter_82599(hw, &input->filter,
8646 input->sw_idx, queue);
8647 if (!err)
8648 ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx);
8649 spin_unlock(&adapter->fdir_perfect_lock);
8650
Amritha Nambiar12746fd2016-05-16 18:33:20 -07008651 if ((uhtid != 0x800) && (adapter->jump_tables[uhtid]))
8652 set_bit(loc - 1, (adapter->jump_tables[uhtid])->child_loc_map);
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008653
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008654 kfree(mask);
John Fastabendb82b17d2016-02-16 21:18:53 -08008655 return err;
8656err_out_w_lock:
8657 spin_unlock(&adapter->fdir_perfect_lock);
8658err_out:
Amritha Nambiar1ecedc92016-05-06 19:09:51 -07008659 kfree(mask);
Amritha Nambiar12746fd2016-05-16 18:33:20 -07008660free_input:
8661 kfree(input);
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04008662free_jump:
8663 kfree(jump);
8664 return err;
John Fastabendb82b17d2016-02-16 21:18:53 -08008665}
8666
Emil Tantilov6e2a60b2016-02-17 15:55:06 -08008667static int __ixgbe_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
8668 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08008669{
John Fastabendb82b17d2016-02-16 21:18:53 -08008670 struct ixgbe_adapter *adapter = netdev_priv(dev);
8671
8672 if (TC_H_MAJ(handle) == TC_H_MAJ(TC_H_INGRESS) &&
8673 tc->type == TC_SETUP_CLSU32) {
John Fastabendb82b17d2016-02-16 21:18:53 -08008674 switch (tc->cls_u32->command) {
8675 case TC_CLSU32_NEW_KNODE:
8676 case TC_CLSU32_REPLACE_KNODE:
8677 return ixgbe_configure_clsu32(adapter,
8678 proto, tc->cls_u32);
8679 case TC_CLSU32_DELETE_KNODE:
8680 return ixgbe_delete_clsu32(adapter, tc->cls_u32);
John Fastabenddb956ae2016-02-16 21:19:19 -08008681 case TC_CLSU32_NEW_HNODE:
8682 case TC_CLSU32_REPLACE_HNODE:
8683 return ixgbe_configure_clsu32_add_hnode(adapter, proto,
8684 tc->cls_u32);
8685 case TC_CLSU32_DELETE_HNODE:
8686 return ixgbe_configure_clsu32_del_hnode(adapter,
8687 tc->cls_u32);
John Fastabendb82b17d2016-02-16 21:18:53 -08008688 default:
8689 return -EINVAL;
8690 }
8691 }
8692
John Fastabend5eb4dce2016-02-29 11:26:13 -08008693 if (tc->type != TC_SETUP_MQPRIO)
John Fastabende4c67342016-02-16 21:16:15 -08008694 return -EINVAL;
8695
John Fastabend16e5cc62016-02-16 21:16:43 -08008696 return ixgbe_setup_tc(dev, tc->tc);
John Fastabende4c67342016-02-16 21:16:15 -08008697}
8698
Greg Roseda36b642012-12-11 08:26:43 +00008699#ifdef CONFIG_PCI_IOV
8700void ixgbe_sriov_reinit(struct ixgbe_adapter *adapter)
8701{
8702 struct net_device *netdev = adapter->netdev;
8703
8704 rtnl_lock();
Greg Roseda36b642012-12-11 08:26:43 +00008705 ixgbe_setup_tc(netdev, netdev_get_num_tc(netdev));
Greg Roseda36b642012-12-11 08:26:43 +00008706 rtnl_unlock();
8707}
8708
8709#endif
Don Skidmore082757a2011-07-21 05:55:00 +00008710void ixgbe_do_reset(struct net_device *netdev)
8711{
8712 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8713
8714 if (netif_running(netdev))
8715 ixgbe_reinit_locked(adapter);
8716 else
8717 ixgbe_reset(adapter);
8718}
8719
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008720static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00008721 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00008722{
8723 struct ixgbe_adapter *adapter = netdev_priv(netdev);
8724
Don Skidmore082757a2011-07-21 05:55:00 +00008725 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00008726 if (!(features & NETIF_F_RXCSUM))
8727 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00008728
Alexander Duyck567d2de2012-02-11 07:18:57 +00008729 /* Turn off LRO if not RSC capable */
8730 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
8731 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00008732
Alexander Duyck567d2de2012-02-11 07:18:57 +00008733 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00008734}
8735
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008736static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00008737 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00008738{
8739 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00008740 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00008741 bool need_reset = false;
8742
Don Skidmore082757a2011-07-21 05:55:00 +00008743 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00008744 if (!(features & NETIF_F_LRO)) {
8745 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00008746 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00008747 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
8748 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
8749 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
8750 if (adapter->rx_itr_setting == 1 ||
8751 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
8752 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
8753 need_reset = true;
8754 } else if ((changed ^ features) & NETIF_F_LRO) {
8755 e_info(probe, "rx-usecs set too low, "
8756 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00008757 }
8758 }
8759
8760 /*
John Fastabendb82b17d2016-02-16 21:18:53 -08008761 * Check if Flow Director n-tuple support or hw_tc support was
8762 * enabled or disabled. If the state changed, we need to reset.
Don Skidmore082757a2011-07-21 05:55:00 +00008763 */
John Fastabendb82b17d2016-02-16 21:18:53 -08008764 if ((features & NETIF_F_NTUPLE) || (features & NETIF_F_HW_TC)) {
Alexander Duyck567d2de2012-02-11 07:18:57 +00008765 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00008766 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
8767 need_reset = true;
8768
Alexander Duyck567d2de2012-02-11 07:18:57 +00008769 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
8770 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
John Fastabendb82b17d2016-02-16 21:18:53 -08008771 } else {
Alexander Duyck39cb6812012-06-06 05:38:20 +00008772 /* turn off perfect filters, enable ATR and reset */
8773 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
8774 need_reset = true;
8775
8776 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
8777
8778 /* We cannot enable ATR if SR-IOV is enabled */
John Fastabendb82b17d2016-02-16 21:18:53 -08008779 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED ||
8780 /* We cannot enable ATR if we have 2 or more tcs */
8781 (netdev_get_num_tc(netdev) > 1) ||
8782 /* We cannot enable ATR if RSS is disabled */
8783 (adapter->ring_feature[RING_F_RSS].limit <= 1) ||
8784 /* A sample rate of 0 indicates ATR disabled */
8785 (!adapter->atr_sample_rate))
8786 ; /* do nothing not supported */
8787 else /* otherwise supported and set the flag */
8788 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
Don Skidmore082757a2011-07-21 05:55:00 +00008789 }
8790
Ben Greear3f2d1c02012-03-08 08:28:41 +00008791 if (changed & NETIF_F_RXALL)
8792 need_reset = true;
8793
Alexander Duyck567d2de2012-02-11 07:18:57 +00008794 netdev->features = features;
Mark Rustad67359c32015-06-15 11:33:25 -07008795
Mark Rustad67359c32015-06-15 11:33:25 -07008796 if ((adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE)) {
Emil Tantilova21d0822016-08-10 11:19:23 -07008797 if (features & NETIF_F_RXCSUM) {
8798 adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
8799 } else {
8800 u32 port_mask = IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK;
8801
8802 ixgbe_clear_udp_tunnel_port(adapter, port_mask);
8803 }
8804 }
8805
8806 if ((adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)) {
8807 if (features & NETIF_F_RXCSUM) {
8808 adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
8809 } else {
8810 u32 port_mask = IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK;
8811
8812 ixgbe_clear_udp_tunnel_port(adapter, port_mask);
8813 }
Mark Rustad67359c32015-06-15 11:33:25 -07008814 }
Mark Rustad67359c32015-06-15 11:33:25 -07008815
Don Skidmore082757a2011-07-21 05:55:00 +00008816 if (need_reset)
8817 ixgbe_do_reset(netdev);
Alexander Duyck0c5a6162016-03-10 10:01:10 -08008818 else if (changed & (NETIF_F_HW_VLAN_CTAG_RX |
8819 NETIF_F_HW_VLAN_CTAG_FILTER))
8820 ixgbe_set_rx_mode(netdev);
Don Skidmore082757a2011-07-21 05:55:00 +00008821
8822 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00008823}
8824
Don Skidmore3f207802014-12-23 07:40:34 +00008825/**
Emil Tantilova21d0822016-08-10 11:19:23 -07008826 * ixgbe_add_udp_tunnel_port - Get notifications about adding UDP tunnel ports
Don Skidmore3f207802014-12-23 07:40:34 +00008827 * @dev: The port's netdev
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02008828 * @ti: Tunnel endpoint information
Don Skidmore3f207802014-12-23 07:40:34 +00008829 **/
Emil Tantilova21d0822016-08-10 11:19:23 -07008830static void ixgbe_add_udp_tunnel_port(struct net_device *dev,
8831 struct udp_tunnel_info *ti)
Don Skidmore3f207802014-12-23 07:40:34 +00008832{
8833 struct ixgbe_adapter *adapter = netdev_priv(dev);
8834 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckb3a49552016-06-16 12:22:19 -07008835 __be16 port = ti->port;
Emil Tantilova21d0822016-08-10 11:19:23 -07008836 u32 port_shift = 0;
8837 u32 reg;
Mark Rustad67359c32015-06-15 11:33:25 -07008838
Alexander Duyckb3a49552016-06-16 12:22:19 -07008839 if (ti->sa_family != AF_INET)
8840 return;
8841
Emil Tantilova21d0822016-08-10 11:19:23 -07008842 switch (ti->type) {
8843 case UDP_TUNNEL_TYPE_VXLAN:
8844 if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE))
8845 return;
Don Skidmore3f207802014-12-23 07:40:34 +00008846
Emil Tantilova21d0822016-08-10 11:19:23 -07008847 if (adapter->vxlan_port == port)
8848 return;
Don Skidmore3f207802014-12-23 07:40:34 +00008849
Emil Tantilova21d0822016-08-10 11:19:23 -07008850 if (adapter->vxlan_port) {
8851 netdev_info(dev,
8852 "VXLAN port %d set, not adding port %d\n",
8853 ntohs(adapter->vxlan_port),
8854 ntohs(port));
8855 return;
8856 }
8857
8858 adapter->vxlan_port = port;
8859 break;
8860 case UDP_TUNNEL_TYPE_GENEVE:
8861 if (!(adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE))
8862 return;
8863
8864 if (adapter->geneve_port == port)
8865 return;
8866
8867 if (adapter->geneve_port) {
8868 netdev_info(dev,
8869 "GENEVE port %d set, not adding port %d\n",
8870 ntohs(adapter->geneve_port),
8871 ntohs(port));
8872 return;
8873 }
8874
8875 port_shift = IXGBE_VXLANCTRL_GENEVE_UDPPORT_SHIFT;
8876 adapter->geneve_port = port;
8877 break;
8878 default:
Don Skidmore3f207802014-12-23 07:40:34 +00008879 return;
8880 }
8881
Emil Tantilova21d0822016-08-10 11:19:23 -07008882 reg = IXGBE_READ_REG(hw, IXGBE_VXLANCTRL) | ntohs(port) << port_shift;
8883 IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, reg);
Don Skidmore3f207802014-12-23 07:40:34 +00008884}
8885
8886/**
Emil Tantilova21d0822016-08-10 11:19:23 -07008887 * ixgbe_del_udp_tunnel_port - Get notifications about removing UDP tunnel ports
Don Skidmore3f207802014-12-23 07:40:34 +00008888 * @dev: The port's netdev
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02008889 * @ti: Tunnel endpoint information
Don Skidmore3f207802014-12-23 07:40:34 +00008890 **/
Emil Tantilova21d0822016-08-10 11:19:23 -07008891static void ixgbe_del_udp_tunnel_port(struct net_device *dev,
8892 struct udp_tunnel_info *ti)
Don Skidmore3f207802014-12-23 07:40:34 +00008893{
8894 struct ixgbe_adapter *adapter = netdev_priv(dev);
Emil Tantilova21d0822016-08-10 11:19:23 -07008895 u32 port_mask;
Don Skidmore3f207802014-12-23 07:40:34 +00008896
Emil Tantilova21d0822016-08-10 11:19:23 -07008897 if (ti->type != UDP_TUNNEL_TYPE_VXLAN &&
8898 ti->type != UDP_TUNNEL_TYPE_GENEVE)
Alexander Duyckb3a49552016-06-16 12:22:19 -07008899 return;
8900
8901 if (ti->sa_family != AF_INET)
8902 return;
8903
Emil Tantilova21d0822016-08-10 11:19:23 -07008904 switch (ti->type) {
8905 case UDP_TUNNEL_TYPE_VXLAN:
8906 if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE))
8907 return;
Mark Rustad67359c32015-06-15 11:33:25 -07008908
Emil Tantilova21d0822016-08-10 11:19:23 -07008909 if (adapter->vxlan_port != ti->port) {
8910 netdev_info(dev, "VXLAN port %d not found\n",
8911 ntohs(ti->port));
8912 return;
8913 }
8914
8915 port_mask = IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK;
8916 break;
8917 case UDP_TUNNEL_TYPE_GENEVE:
8918 if (!(adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE))
8919 return;
8920
8921 if (adapter->geneve_port != ti->port) {
8922 netdev_info(dev, "GENEVE port %d not found\n",
8923 ntohs(ti->port));
8924 return;
8925 }
8926
8927 port_mask = IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK;
8928 break;
8929 default:
Don Skidmore3f207802014-12-23 07:40:34 +00008930 return;
8931 }
8932
Emil Tantilova21d0822016-08-10 11:19:23 -07008933 ixgbe_clear_udp_tunnel_port(adapter, port_mask);
8934 adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
Don Skidmore3f207802014-12-23 07:40:34 +00008935}
8936
stephen hemmingeredc7d572012-10-01 12:32:33 +00008937static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008938 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008939 const unsigned char *addr, u16 vid,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008940 u16 flags)
8941{
Alexander Duyckbcfd3432014-07-17 02:11:22 +00008942 /* guarantee we can provide a unique filter for the unicast address */
Ben Hutchings46acc462012-11-01 09:11:11 +00008943 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) {
Alexander Duyck2f9be162015-10-22 16:26:42 -07008944 struct ixgbe_adapter *adapter = netdev_priv(dev);
8945 u16 pool = VMDQ_P(0);
8946
8947 if (netdev_uc_count(dev) >= ixgbe_available_rars(adapter, pool))
Alexander Duyckbcfd3432014-07-17 02:11:22 +00008948 return -ENOMEM;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008949 }
8950
Jiri Pirkof6f64242014-11-28 14:34:15 +01008951 return ndo_dflt_fdb_add(ndm, tb, dev, addr, vid, flags);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00008952}
8953
Don Skidmore219efe92015-04-09 22:03:22 -07008954/**
8955 * ixgbe_configure_bridge_mode - set various bridge modes
8956 * @adapter - the private structure
8957 * @mode - requested bridge mode
8958 *
8959 * Configure some settings require for various bridge modes.
8960 **/
8961static int ixgbe_configure_bridge_mode(struct ixgbe_adapter *adapter,
8962 __u16 mode)
8963{
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008964 struct ixgbe_hw *hw = &adapter->hw;
8965 unsigned int p, num_pools;
8966 u32 vmdctl;
8967
Don Skidmore219efe92015-04-09 22:03:22 -07008968 switch (mode) {
8969 case BRIDGE_MODE_VEPA:
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008970 /* disable Tx loopback, rely on switch hairpin mode */
Don Skidmore219efe92015-04-09 22:03:22 -07008971 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, 0);
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008972
8973 /* must enable Rx switching replication to allow multicast
8974 * packet reception on all VFs, and to enable source address
8975 * pruning.
8976 */
8977 vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
8978 vmdctl |= IXGBE_VT_CTL_REPLEN;
8979 IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl);
8980
8981 /* enable Rx source address pruning. Note, this requires
8982 * replication to be enabled or else it does nothing.
8983 */
8984 num_pools = adapter->num_vfs + adapter->num_rx_pools;
8985 for (p = 0; p < num_pools; p++) {
8986 if (hw->mac.ops.set_source_address_pruning)
8987 hw->mac.ops.set_source_address_pruning(hw,
8988 true,
8989 p);
8990 }
Don Skidmore219efe92015-04-09 22:03:22 -07008991 break;
8992 case BRIDGE_MODE_VEB:
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008993 /* enable Tx loopback for internal VF/PF communication */
Don Skidmore219efe92015-04-09 22:03:22 -07008994 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC,
8995 IXGBE_PFDTXGSWC_VT_LBEN);
Don Skidmore6d4c96a2015-04-09 22:03:23 -07008996
8997 /* disable Rx switching replication unless we have SR-IOV
8998 * virtual functions
8999 */
9000 vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
9001 if (!adapter->num_vfs)
9002 vmdctl &= ~IXGBE_VT_CTL_REPLEN;
9003 IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl);
9004
9005 /* disable Rx source address pruning, since we don't expect to
9006 * be receiving external loopback of our transmitted frames.
9007 */
9008 num_pools = adapter->num_vfs + adapter->num_rx_pools;
9009 for (p = 0; p < num_pools; p++) {
9010 if (hw->mac.ops.set_source_address_pruning)
9011 hw->mac.ops.set_source_address_pruning(hw,
9012 false,
9013 p);
9014 }
Don Skidmore219efe92015-04-09 22:03:22 -07009015 break;
9016 default:
9017 return -EINVAL;
9018 }
9019
9020 adapter->bridge_mode = mode;
9021
9022 e_info(drv, "enabling bridge mode: %s\n",
9023 mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
9024
9025 return 0;
9026}
9027
John Fastabend815cccb2012-10-24 08:13:09 +00009028static int ixgbe_ndo_bridge_setlink(struct net_device *dev,
Roopa Prabhuadd511b2015-01-29 22:40:12 -08009029 struct nlmsghdr *nlh, u16 flags)
John Fastabend815cccb2012-10-24 08:13:09 +00009030{
9031 struct ixgbe_adapter *adapter = netdev_priv(dev);
9032 struct nlattr *attr, *br_spec;
9033 int rem;
9034
9035 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
9036 return -EOPNOTSUPP;
9037
9038 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Thomas Graf4ea85e82014-11-26 13:42:18 +01009039 if (!br_spec)
9040 return -EINVAL;
John Fastabend815cccb2012-10-24 08:13:09 +00009041
9042 nla_for_each_nested(attr, br_spec, rem) {
Mark Rustada1e869d2015-04-10 10:36:36 -07009043 int status;
John Fastabend815cccb2012-10-24 08:13:09 +00009044 __u16 mode;
John Fastabend815cccb2012-10-24 08:13:09 +00009045
9046 if (nla_type(attr) != IFLA_BRIDGE_MODE)
9047 continue;
9048
Thomas Grafb7c1a312014-11-26 13:42:17 +01009049 if (nla_len(attr) < sizeof(mode))
9050 return -EINVAL;
9051
John Fastabend815cccb2012-10-24 08:13:09 +00009052 mode = nla_get_u16(attr);
Don Skidmore219efe92015-04-09 22:03:22 -07009053 status = ixgbe_configure_bridge_mode(adapter, mode);
9054 if (status)
9055 return status;
Don Skidmoreaa2bacb2015-04-09 22:03:22 -07009056
9057 break;
John Fastabend815cccb2012-10-24 08:13:09 +00009058 }
9059
9060 return 0;
9061}
9062
9063static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00009064 struct net_device *dev,
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02009065 u32 filter_mask, int nlflags)
John Fastabend815cccb2012-10-24 08:13:09 +00009066{
9067 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend815cccb2012-10-24 08:13:09 +00009068
9069 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
9070 return 0;
9071
Don Skidmoreaa2bacb2015-04-09 22:03:22 -07009072 return ndo_dflt_bridge_getlink(skb, pid, seq, dev,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07009073 adapter->bridge_mode, 0, 0, nlflags,
9074 filter_mask, NULL);
John Fastabend815cccb2012-10-24 08:13:09 +00009075}
9076
John Fastabend2a47fa42013-11-06 09:54:52 -08009077static void *ixgbe_fwd_add(struct net_device *pdev, struct net_device *vdev)
9078{
9079 struct ixgbe_fwd_adapter *fwd_adapter = NULL;
9080 struct ixgbe_adapter *adapter = netdev_priv(pdev);
Jacob Kelleraac2f1b2014-08-21 06:17:59 +00009081 int used_pools = adapter->num_vfs + adapter->num_rx_pools;
John Fastabend51f37732013-11-08 00:51:10 -08009082 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08009083 int pool, err;
9084
Jacob Kelleraac2f1b2014-08-21 06:17:59 +00009085 /* Hardware has a limited number of available pools. Each VF, and the
9086 * PF require a pool. Check to ensure we don't attempt to use more
9087 * then the available number of pools.
9088 */
9089 if (used_pools >= IXGBE_MAX_VF_FUNCTIONS)
9090 return ERR_PTR(-EINVAL);
9091
John Fastabend219354d2013-11-08 00:50:32 -08009092#ifdef CONFIG_RPS
9093 if (vdev->num_rx_queues != vdev->num_tx_queues) {
9094 netdev_info(pdev, "%s: Only supports a single queue count for TX and RX\n",
9095 vdev->name);
9096 return ERR_PTR(-EINVAL);
9097 }
9098#endif
John Fastabend2a47fa42013-11-06 09:54:52 -08009099 /* Check for hardware restriction on number of rx/tx queues */
John Fastabend219354d2013-11-08 00:50:32 -08009100 if (vdev->num_tx_queues > IXGBE_MAX_L2A_QUEUES ||
John Fastabend2a47fa42013-11-06 09:54:52 -08009101 vdev->num_tx_queues == IXGBE_BAD_L2A_QUEUE) {
9102 netdev_info(pdev,
9103 "%s: Supports RX/TX Queue counts 1,2, and 4\n",
9104 pdev->name);
9105 return ERR_PTR(-EINVAL);
9106 }
9107
9108 if (((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
9109 adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS - 1) ||
9110 (adapter->num_rx_pools > IXGBE_MAX_MACVLANS))
9111 return ERR_PTR(-EBUSY);
9112
Maninder Singhbc52f952015-06-19 09:37:55 +05309113 fwd_adapter = kzalloc(sizeof(*fwd_adapter), GFP_KERNEL);
John Fastabend2a47fa42013-11-06 09:54:52 -08009114 if (!fwd_adapter)
9115 return ERR_PTR(-ENOMEM);
9116
9117 pool = find_first_zero_bit(&adapter->fwd_bitmask, 32);
9118 adapter->num_rx_pools++;
9119 set_bit(pool, &adapter->fwd_bitmask);
John Fastabend51f37732013-11-08 00:51:10 -08009120 limit = find_last_bit(&adapter->fwd_bitmask, 32);
John Fastabend2a47fa42013-11-06 09:54:52 -08009121
9122 /* Enable VMDq flag so device will be set in VM mode */
9123 adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED | IXGBE_FLAG_SRIOV_ENABLED;
John Fastabend51f37732013-11-08 00:51:10 -08009124 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend219354d2013-11-08 00:50:32 -08009125 adapter->ring_feature[RING_F_RSS].limit = vdev->num_tx_queues;
John Fastabend2a47fa42013-11-06 09:54:52 -08009126
9127 /* Force reinit of ring allocation with VMDQ enabled */
9128 err = ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
9129 if (err)
9130 goto fwd_add_err;
9131 fwd_adapter->pool = pool;
9132 fwd_adapter->real_adapter = adapter;
9133 err = ixgbe_fwd_ring_up(vdev, fwd_adapter);
9134 if (err)
9135 goto fwd_add_err;
9136 netif_tx_start_all_queues(vdev);
9137 return fwd_adapter;
9138fwd_add_err:
9139 /* unwind counter and free adapter struct */
9140 netdev_info(pdev,
9141 "%s: dfwd hardware acceleration failed\n", vdev->name);
9142 clear_bit(pool, &adapter->fwd_bitmask);
9143 adapter->num_rx_pools--;
9144 kfree(fwd_adapter);
9145 return ERR_PTR(err);
9146}
9147
9148static void ixgbe_fwd_del(struct net_device *pdev, void *priv)
9149{
9150 struct ixgbe_fwd_adapter *fwd_adapter = priv;
9151 struct ixgbe_adapter *adapter = fwd_adapter->real_adapter;
John Fastabend51f37732013-11-08 00:51:10 -08009152 unsigned int limit;
John Fastabend2a47fa42013-11-06 09:54:52 -08009153
9154 clear_bit(fwd_adapter->pool, &adapter->fwd_bitmask);
9155 adapter->num_rx_pools--;
9156
John Fastabend51f37732013-11-08 00:51:10 -08009157 limit = find_last_bit(&adapter->fwd_bitmask, 32);
9158 adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
John Fastabend2a47fa42013-11-06 09:54:52 -08009159 ixgbe_fwd_ring_down(fwd_adapter->netdev, fwd_adapter);
9160 ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev));
9161 netdev_dbg(pdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n",
9162 fwd_adapter->pool, adapter->num_rx_pools,
9163 fwd_adapter->rx_base_queue,
9164 fwd_adapter->rx_base_queue + adapter->num_rx_queues_per_pool,
9165 adapter->fwd_bitmask);
9166 kfree(fwd_adapter);
9167}
9168
Alexander Duyckb83e3012016-04-14 17:19:31 -04009169#define IXGBE_MAX_MAC_HDR_LEN 127
9170#define IXGBE_MAX_NETWORK_HDR_LEN 511
9171
Mark Rustadf467bc02015-06-15 11:33:20 -07009172static netdev_features_t
9173ixgbe_features_check(struct sk_buff *skb, struct net_device *dev,
9174 netdev_features_t features)
9175{
Alexander Duyckb83e3012016-04-14 17:19:31 -04009176 unsigned int network_hdr_len, mac_hdr_len;
Mark Rustadf467bc02015-06-15 11:33:20 -07009177
Alexander Duyckb83e3012016-04-14 17:19:31 -04009178 /* Make certain the headers can be described by a context descriptor */
9179 mac_hdr_len = skb_network_header(skb) - skb->data;
9180 if (unlikely(mac_hdr_len > IXGBE_MAX_MAC_HDR_LEN))
9181 return features & ~(NETIF_F_HW_CSUM |
9182 NETIF_F_SCTP_CRC |
9183 NETIF_F_HW_VLAN_CTAG_TX |
9184 NETIF_F_TSO |
9185 NETIF_F_TSO6);
9186
9187 network_hdr_len = skb_checksum_start(skb) - skb_network_header(skb);
9188 if (unlikely(network_hdr_len > IXGBE_MAX_NETWORK_HDR_LEN))
9189 return features & ~(NETIF_F_HW_CSUM |
9190 NETIF_F_SCTP_CRC |
9191 NETIF_F_TSO |
9192 NETIF_F_TSO6);
9193
9194 /* We can only support IPV4 TSO in tunnels if we can mangle the
9195 * inner IP ID field, so strip TSO if MANGLEID is not supported.
9196 */
9197 if (skb->encapsulation && !(features & NETIF_F_TSO_MANGLEID))
9198 features &= ~NETIF_F_TSO;
Mark Rustadf467bc02015-06-15 11:33:20 -07009199
9200 return features;
9201}
9202
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009203static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00009204 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009205 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08009206 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07009207 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00009208 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009209 .ndo_validate_addr = eth_validate_addr,
9210 .ndo_set_mac_address = ixgbe_set_mac,
9211 .ndo_change_mtu = ixgbe_change_mtu,
9212 .ndo_tx_timeout = ixgbe_tx_timeout,
Rostislav Pehlivanovc04f90e2016-01-27 18:33:30 +00009213 .ndo_set_tx_maxrate = ixgbe_tx_maxrate,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009214 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
9215 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00009216 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00009217 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
9218 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04009219 .ndo_set_vf_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00009220 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03009221 .ndo_set_vf_rss_query_en = ixgbe_ndo_set_vf_rss_query_en,
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00009222 .ndo_set_vf_trust = ixgbe_ndo_set_vf_trust,
Greg Rose7f016482010-05-04 22:12:06 +00009223 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00009224 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabende4c67342016-02-16 21:16:15 -08009225 .ndo_setup_tc = __ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009226#ifdef CONFIG_NET_POLL_CONTROLLER
9227 .ndo_poll_controller = ixgbe_netpoll,
9228#endif
Cong Wange0d10952013-08-01 11:10:25 +08009229#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir8b80cda2013-07-10 17:13:26 +03009230 .ndo_busy_poll = ixgbe_low_latency_recv,
Eliezer Tamir5a85e732013-06-10 11:40:20 +03009231#endif
Yi Zou332d4a72009-05-13 13:11:53 +00009232#ifdef IXGBE_FCOE
9233 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00009234 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00009235 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00009236 .ndo_fcoe_enable = ixgbe_fcoe_enable,
9237 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00009238 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00009239 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00009240#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00009241 .ndo_set_features = ixgbe_set_features,
9242 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00009243 .ndo_fdb_add = ixgbe_ndo_fdb_add,
John Fastabend815cccb2012-10-24 08:13:09 +00009244 .ndo_bridge_setlink = ixgbe_ndo_bridge_setlink,
9245 .ndo_bridge_getlink = ixgbe_ndo_bridge_getlink,
John Fastabend2a47fa42013-11-06 09:54:52 -08009246 .ndo_dfwd_add_station = ixgbe_fwd_add,
9247 .ndo_dfwd_del_station = ixgbe_fwd_del,
Emil Tantilova21d0822016-08-10 11:19:23 -07009248 .ndo_udp_tunnel_add = ixgbe_add_udp_tunnel_port,
9249 .ndo_udp_tunnel_del = ixgbe_del_udp_tunnel_port,
Mark Rustadf467bc02015-06-15 11:33:20 -07009250 .ndo_features_check = ixgbe_features_check,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009251};
9252
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009253/**
Jacob Kellere027d1a2013-07-31 06:53:31 +00009254 * ixgbe_enumerate_functions - Get the number of ports this device has
9255 * @adapter: adapter structure
9256 *
9257 * This function enumerates the phsyical functions co-located on a single slot,
9258 * in order to determine how many ports a device has. This is most useful in
9259 * determining the required GT/s of PCIe bandwidth necessary for optimal
9260 * performance.
9261 **/
9262static inline int ixgbe_enumerate_functions(struct ixgbe_adapter *adapter)
9263{
Jacob Kellercaafb952014-07-19 07:17:17 +00009264 struct pci_dev *entry, *pdev = adapter->pdev;
Jacob Kellere027d1a2013-07-31 06:53:31 +00009265 int physfns = 0;
9266
Jacob Kellerf1f96572013-08-31 02:45:38 +00009267 /* Some cards can not use the generic count PCIe functions method,
9268 * because they are behind a parent switch, so we hardcode these with
9269 * the correct number of functions.
Jacob Kellere027d1a2013-07-31 06:53:31 +00009270 */
Jacob Keller88189702014-07-19 07:17:16 +00009271 if (ixgbe_pcie_from_parent(&adapter->hw))
Jacob Kellere027d1a2013-07-31 06:53:31 +00009272 physfns = 4;
Jacob Keller88189702014-07-19 07:17:16 +00009273
9274 list_for_each_entry(entry, &adapter->pdev->bus->devices, bus_list) {
9275 /* don't count virtual functions */
Jacob Kellercaafb952014-07-19 07:17:17 +00009276 if (entry->is_virtfn)
9277 continue;
9278
9279 /* When the devices on the bus don't all match our device ID,
9280 * we can't reliably determine the correct number of
9281 * functions. This can occur if a function has been direct
9282 * attached to a virtual machine using VT-d, for example. In
9283 * this case, simply return -1 to indicate this.
9284 */
9285 if ((entry->vendor != pdev->vendor) ||
9286 (entry->device != pdev->device))
9287 return -1;
9288
9289 physfns++;
Jacob Kellere027d1a2013-07-31 06:53:31 +00009290 }
9291
9292 return physfns;
9293}
9294
9295/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00009296 * ixgbe_wol_supported - Check whether device supports WoL
Emil Tantilov740234f2016-04-21 11:37:12 -07009297 * @adapter: the adapter private structure
Jacob Keller8e2813f2012-04-21 06:05:40 +00009298 * @device_id: the device ID
9299 * @subdev_id: the subsystem device ID
9300 *
9301 * This function is used by probe and ethtool to determine
9302 * which devices have WoL support
9303 *
9304 **/
Emil Tantilov740234f2016-04-21 11:37:12 -07009305bool ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
9306 u16 subdevice_id)
Jacob Keller8e2813f2012-04-21 06:05:40 +00009307{
9308 struct ixgbe_hw *hw = &adapter->hw;
9309 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009310
Emil Tantilov740234f2016-04-21 11:37:12 -07009311 /* WOL not supported on 82598 */
9312 if (hw->mac.type == ixgbe_mac_82598EB)
9313 return false;
9314
9315 /* check eeprom to see if WOL is enabled for X540 and newer */
9316 if (hw->mac.type >= ixgbe_mac_X540) {
9317 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
9318 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
9319 (hw->bus.func == 0)))
9320 return true;
9321 }
9322
9323 /* WOL is determined based on device IDs for 82599 MACs */
Jacob Keller8e2813f2012-04-21 06:05:40 +00009324 switch (device_id) {
9325 case IXGBE_DEV_ID_82599_SFP:
9326 /* Only these subdevices could supports WOL */
9327 switch (subdevice_id) {
9328 case IXGBE_SUBDEV_ID_82599_560FLR:
Emil Tantilov00103a6c2016-04-21 11:37:06 -07009329 case IXGBE_SUBDEV_ID_82599_LOM_SNAP6:
9330 case IXGBE_SUBDEV_ID_82599_SFP_WOL0:
9331 case IXGBE_SUBDEV_ID_82599_SFP_2OCP:
Jacob Keller8e2813f2012-04-21 06:05:40 +00009332 /* only support first port */
9333 if (hw->bus.func != 0)
9334 break;
Emil Tantilov5700ff22013-04-18 08:18:55 +00009335 case IXGBE_SUBDEV_ID_82599_SP_560FLR:
Jacob Keller8e2813f2012-04-21 06:05:40 +00009336 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00009337 case IXGBE_SUBDEV_ID_82599_RNDC:
Emil Tantilovf8a06c22012-08-16 08:13:07 +00009338 case IXGBE_SUBDEV_ID_82599_ECNA_DP:
Emil Tantilov00103a6c2016-04-21 11:37:06 -07009339 case IXGBE_SUBDEV_ID_82599_SFP_1OCP:
9340 case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM1:
9341 case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM2:
Emil Tantilov740234f2016-04-21 11:37:12 -07009342 return true;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009343 }
9344 break;
Don Skidmore5daebbb2013-04-05 05:49:34 +00009345 case IXGBE_DEV_ID_82599EN_SFP:
Emil Tantilov740234f2016-04-21 11:37:12 -07009346 /* Only these subdevices support WOL */
Don Skidmore5daebbb2013-04-05 05:49:34 +00009347 switch (subdevice_id) {
9348 case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1:
Emil Tantilov740234f2016-04-21 11:37:12 -07009349 return true;
Don Skidmore5daebbb2013-04-05 05:49:34 +00009350 }
9351 break;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009352 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
9353 /* All except this subdevice support WOL */
9354 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Emil Tantilov740234f2016-04-21 11:37:12 -07009355 return true;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009356 break;
9357 case IXGBE_DEV_ID_82599_KX4:
Emil Tantilov740234f2016-04-21 11:37:12 -07009358 return true;
9359 default:
Jacob Keller8e2813f2012-04-21 06:05:40 +00009360 break;
9361 }
9362
Emil Tantilov740234f2016-04-21 11:37:12 -07009363 return false;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009364}
9365
9366/**
Auke Kok9a799d72007-09-15 14:07:45 -07009367 * ixgbe_probe - Device Initialization Routine
9368 * @pdev: PCI device information struct
9369 * @ent: entry in ixgbe_pci_tbl
9370 *
9371 * Returns 0 on success, negative on failure
9372 *
9373 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
9374 * The OS initialization, configuring of the adapter private structure,
9375 * and a hardware reset occur.
9376 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00009377static int ixgbe_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07009378{
9379 struct net_device *netdev;
9380 struct ixgbe_adapter *adapter = NULL;
9381 struct ixgbe_hw *hw;
9382 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Jacob Kellere027d1a2013-07-31 06:53:31 +00009383 int i, err, pci_using_dac, expected_gts;
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009384 unsigned int indices = MAX_TX_QUEUES;
Don Skidmore289700db2010-12-03 03:32:58 +00009385 u8 part_str[IXGBE_PBANUM_LENGTH];
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009386 bool disable_dev = false;
Yi Zoueacd73f2009-05-13 13:11:06 +00009387#ifdef IXGBE_FCOE
9388 u16 device_caps;
9389#endif
Don Skidmore289700db2010-12-03 03:32:58 +00009390 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07009391
Andy Gospodarekbded64a2010-07-21 06:40:31 +00009392 /* Catch broken hardware that put the wrong VF device ID in
9393 * the PCIe SR-IOV capability.
9394 */
9395 if (pdev->is_virtfn) {
9396 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
9397 pci_name(pdev), pdev->vendor, pdev->device);
9398 return -EINVAL;
9399 }
9400
gouji-new9ce77662009-05-06 10:44:45 +00009401 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009402 if (err)
9403 return err;
9404
Russell Kingf5f2eda2013-06-10 12:47:42 +01009405 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07009406 pci_using_dac = 1;
9407 } else {
Russell Kingf5f2eda2013-06-10 12:47:42 +01009408 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07009409 if (err) {
Russell Kingf5f2eda2013-06-10 12:47:42 +01009410 dev_err(&pdev->dev,
9411 "No usable DMA configuration, aborting\n");
9412 goto err_dma;
Auke Kok9a799d72007-09-15 14:07:45 -07009413 }
9414 pci_using_dac = 0;
9415 }
9416
Johannes Thumshirn56d766d2016-06-07 09:44:05 +02009417 err = pci_request_mem_regions(pdev, ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07009418 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00009419 dev_err(&pdev->dev,
9420 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07009421 goto err_pci_reg;
9422 }
9423
Frans Pop19d5afd2009-10-02 10:04:12 -07009424 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009425
Auke Kok9a799d72007-09-15 14:07:45 -07009426 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07009427 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009428
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009429 if (ii->mac == ixgbe_mac_82598EB) {
John Fastabende901acd2011-04-26 07:26:08 +00009430#ifdef CONFIG_IXGBE_DCB
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009431 /* 8 TC w/ 4 queues per TC */
9432 indices = 4 * MAX_TRAFFIC_CLASS;
9433#else
9434 indices = IXGBE_MAX_RSS_INDICES;
John Fastabende901acd2011-04-26 07:26:08 +00009435#endif
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009436 }
John Fastabende901acd2011-04-26 07:26:08 +00009437
John Fastabendc85a2612010-02-25 23:15:21 +00009438 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07009439 if (!netdev) {
9440 err = -ENOMEM;
9441 goto err_alloc_etherdev;
9442 }
9443
Auke Kok9a799d72007-09-15 14:07:45 -07009444 SET_NETDEV_DEV(netdev, &pdev->dev);
9445
Auke Kok9a799d72007-09-15 14:07:45 -07009446 adapter = netdev_priv(netdev);
9447
9448 adapter->netdev = netdev;
9449 adapter->pdev = pdev;
9450 hw = &adapter->hw;
9451 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00009452 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07009453
Jeff Kirsher05857982008-09-11 19:57:00 -07009454 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00009455 pci_resource_len(pdev, 0));
Mark Rustad2a1a0912014-01-14 18:53:15 -08009456 adapter->io_addr = hw->hw_addr;
Auke Kok9a799d72007-09-15 14:07:45 -07009457 if (!hw->hw_addr) {
9458 err = -EIO;
9459 goto err_ioremap;
9460 }
9461
Stephen Hemminger0edc3522008-11-19 22:24:29 -08009462 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07009463 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009464 netdev->watchdog_timeo = 5 * HZ;
Mark Rustad339de302014-06-06 01:57:06 +00009465 strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name));
Auke Kok9a799d72007-09-15 14:07:45 -07009466
Auke Kok9a799d72007-09-15 14:07:45 -07009467 /* Setup hw api */
Mark Rustad37689012016-01-07 10:13:03 -08009468 hw->mac.ops = *ii->mac_ops;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009469 hw->mac.type = ii->mac;
Don Skidmore9a900ec2015-06-09 17:15:01 -07009470 hw->mvals = ii->mvals;
Auke Kok9a799d72007-09-15 14:07:45 -07009471
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009472 /* EEPROM */
Mark Rustad37689012016-01-07 10:13:03 -08009473 hw->eeprom.ops = *ii->eeprom_ops;
Don Skidmore9a900ec2015-06-09 17:15:01 -07009474 eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Mark Rustad58cf6632014-03-12 00:38:40 +00009475 if (ixgbe_removed(hw->hw_addr)) {
9476 err = -EIO;
9477 goto err_ioremap;
9478 }
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009479 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
Jacob Kellerb4f47a42016-04-13 16:08:22 -07009480 if (!(eec & BIT(8)))
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009481 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
9482
9483 /* PHY */
Mark Rustad37689012016-01-07 10:13:03 -08009484 hw->phy.ops = *ii->phy_ops;
Donald Skidmorec4900be2008-11-20 21:11:42 -08009485 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00009486 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
9487 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
9488 hw->phy.mdio.mmds = 0;
9489 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
9490 hw->phy.mdio.dev = netdev;
9491 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
9492 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08009493
Don Skidmore8ca783a2009-05-26 20:40:47 -07009494 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07009495
9496 /* setup the private structure */
9497 err = ixgbe_sw_init(adapter);
9498 if (err)
9499 goto err_sw_init;
9500
Don Skidmoredbd15b82016-03-09 16:45:00 -05009501 /* Make sure the SWFW semaphore is in a valid state */
9502 if (hw->mac.ops.init_swfw_sync)
9503 hw->mac.ops.init_swfw_sync(hw);
9504
Don Skidmoree86bff02010-02-11 04:14:08 +00009505 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08009506 switch (adapter->hw.mac.type) {
9507 case ixgbe_mac_82599EB:
9508 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00009509 case ixgbe_mac_X550:
9510 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07009511 case ixgbe_mac_x550em_a:
Don Skidmoree86bff02010-02-11 04:14:08 +00009512 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08009513 break;
9514 default:
9515 break;
9516 }
Don Skidmoree86bff02010-02-11 04:14:08 +00009517
Don Skidmorebf069c92009-05-07 10:39:54 +00009518 /*
9519 * If there is a fan on this device and it has failed log the
9520 * failure.
9521 */
9522 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
9523 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
9524 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00009525 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00009526 }
9527
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00009528 if (allow_unsupported_sfp)
9529 hw->allow_unsupported_sfp = allow_unsupported_sfp;
9530
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009531 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07009532 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009533 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07009534 hw->phy.reset_if_overtemp = false;
Mark Rustad29a8dca2015-08-08 16:17:46 -07009535 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07009536 err = 0;
9537 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Don Skidmore1b1bf312013-07-31 05:27:04 +00009538 e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n");
9539 e_dev_err("Reload the driver after installing a supported module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00009540 goto err_sw_init;
9541 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009542 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009543 goto err_sw_init;
9544 }
9545
Alexander Duyck99d74482012-05-09 08:09:25 +00009546#ifdef CONFIG_PCI_IOV
Greg Rose60a1a682012-12-11 08:26:33 +00009547 /* SR-IOV not supported on the 82598 */
9548 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
9549 goto skip_sriov;
9550 /* Mailbox */
9551 ixgbe_init_mbx_params_pf(hw);
Mark Rustad37689012016-01-07 10:13:03 -08009552 hw->mbx.ops = ii->mbx_ops;
ethan.zhaodcc23e32014-01-16 19:41:04 -08009553 pci_sriov_set_totalvfs(pdev, IXGBE_MAX_VFS_DRV_LIMIT);
ethan.zhao31ac9102014-01-16 19:41:05 -08009554 ixgbe_enable_sriov(adapter);
Greg Rose60a1a682012-12-11 08:26:33 +00009555skip_sriov:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00009556
Alexander Duyck99d74482012-05-09 08:09:25 +00009557#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00009558 netdev->features = NETIF_F_SG |
Don Skidmore082757a2011-07-21 05:55:00 +00009559 NETIF_F_TSO |
9560 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00009561 NETIF_F_RXHASH |
Alexander Duyck49763de2016-01-13 07:31:11 -08009562 NETIF_F_RXCSUM |
Alexander Duyckb83e3012016-04-14 17:19:31 -04009563 NETIF_F_HW_CSUM;
9564
9565#define IXGBE_GSO_PARTIAL_FEATURES (NETIF_F_GSO_GRE | \
9566 NETIF_F_GSO_GRE_CSUM | \
Tom Herbert7e133182016-05-18 09:06:10 -07009567 NETIF_F_GSO_IPXIP4 | \
Alexander Duyckbf2d1df2016-05-18 10:44:53 -07009568 NETIF_F_GSO_IPXIP6 | \
Alexander Duyckb83e3012016-04-14 17:19:31 -04009569 NETIF_F_GSO_UDP_TUNNEL | \
9570 NETIF_F_GSO_UDP_TUNNEL_CSUM)
9571
9572 netdev->gso_partial_features = IXGBE_GSO_PARTIAL_FEATURES;
9573 netdev->features |= NETIF_F_GSO_PARTIAL |
9574 IXGBE_GSO_PARTIAL_FEATURES;
Auke Kok9a799d72007-09-15 14:07:45 -07009575
Alexander Duyck49763de2016-01-13 07:31:11 -08009576 if (hw->mac.type >= ixgbe_mac_82599EB)
Tom Herbert53692b12015-12-14 11:19:41 -08009577 netdev->features |= NETIF_F_SCTP_CRC;
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00009578
Alexander Duyck49763de2016-01-13 07:31:11 -08009579 /* copy netdev features into list of user selectable features */
Alexander Duyckb83e3012016-04-14 17:19:31 -04009580 netdev->hw_features |= netdev->features |
Alexander Duyck3d951822016-08-12 09:53:39 -07009581 NETIF_F_HW_VLAN_CTAG_FILTER |
Alexander Duyckb83e3012016-04-14 17:19:31 -04009582 NETIF_F_HW_VLAN_CTAG_RX |
9583 NETIF_F_HW_VLAN_CTAG_TX |
9584 NETIF_F_RXALL |
Alexander Duyck49763de2016-01-13 07:31:11 -08009585 NETIF_F_HW_L2FW_DOFFLOAD;
9586
9587 if (hw->mac.type >= ixgbe_mac_82599EB)
9588 netdev->hw_features |= NETIF_F_NTUPLE |
9589 NETIF_F_HW_TC;
9590
Alexander Duyckb83e3012016-04-14 17:19:31 -04009591 if (pci_using_dac)
9592 netdev->features |= NETIF_F_HIGHDMA;
Jeff Kirsherad31c402008-06-05 04:05:30 -07009593
Alexander Duyck5eee87c2016-05-11 13:23:34 -07009594 netdev->vlan_features |= netdev->features | NETIF_F_TSO_MANGLEID;
9595 netdev->hw_enc_features |= netdev->vlan_features;
9596 netdev->mpls_features |= NETIF_F_HW_CSUM;
9597
Alexander Duyckb83e3012016-04-14 17:19:31 -04009598 /* set this bit last since it cannot be part of vlan_features */
9599 netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER |
9600 NETIF_F_HW_VLAN_CTAG_RX |
9601 NETIF_F_HW_VLAN_CTAG_TX;
9602
Jiri Pirko01789342011-08-16 06:29:00 +00009603 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00009604 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00009605
Jarod Wilson91c527a2016-10-17 15:54:05 -04009606 /* MTU range: 68 - 9710 */
9607 netdev->min_mtu = ETH_MIN_MTU;
9608 netdev->max_mtu = IXGBE_MAX_JUMBO_FRAME_SIZE - (ETH_HLEN + ETH_FCS_LEN);
9609
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08009610#ifdef CONFIG_IXGBE_DCB
Usha Ketineni88290092016-04-26 05:00:26 -07009611 if (adapter->flags & IXGBE_FLAG_DCB_CAPABLE)
9612 netdev->dcbnl_ops = &dcbnl_ops;
Alexander Duyck2f90b862008-11-20 20:52:10 -08009613#endif
9614
Yi Zoueacd73f2009-05-13 13:11:06 +00009615#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00009616 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009617 unsigned int fcoe_l;
9618
Yi Zoueacd73f2009-05-13 13:11:06 +00009619 if (hw->mac.ops.get_device_caps) {
9620 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00009621 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
9622 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00009623 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00009624
Alexander Duyckd3cb9862013-01-16 01:35:35 +00009625
9626 fcoe_l = min_t(int, IXGBE_FCRETA_SIZE, num_online_cpus());
9627 adapter->ring_feature[RING_F_FCOE].limit = fcoe_l;
Alexander Duyck7c8ae652012-05-05 05:32:47 +00009628
Alexander Duycka58915c2012-05-25 06:38:18 +00009629 netdev->features |= NETIF_F_FSO |
9630 NETIF_F_FCOE_CRC;
9631
Alexander Duyck7c8ae652012-05-05 05:32:47 +00009632 netdev->vlan_features |= NETIF_F_FSO |
9633 NETIF_F_FCOE_CRC |
9634 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00009635 }
Yi Zoueacd73f2009-05-13 13:11:06 +00009636#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07009637
Don Skidmore082757a2011-07-21 05:55:00 +00009638 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
9639 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00009640 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00009641 netdev->features |= NETIF_F_LRO;
9642
Auke Kok9a799d72007-09-15 14:07:45 -07009643 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07009644 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009645 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07009646 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00009647 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07009648 }
9649
Sowmini Varadhanc7374b52016-01-12 19:32:30 -08009650 eth_platform_get_mac_address(&adapter->pdev->dev,
9651 adapter->hw.mac.perm_addr);
Martin K Petersenc762dff2014-11-15 14:24:51 +00009652
Auke Kok9a799d72007-09-15 14:07:45 -07009653 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07009654
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00009655 if (!is_valid_ether_addr(netdev->dev_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00009656 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07009657 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00009658 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07009659 }
9660
Tushar Dave56768042016-01-07 14:17:03 -08009661 /* Set hw->mac.addr to permanent MAC address */
9662 ether_addr_copy(hw->mac.addr, hw->mac.perm_addr);
Alexander Duyckc9f53e62015-10-22 16:26:30 -07009663 ixgbe_mac_set_default_filter(adapter);
Jacob Keller5d7daa32014-03-29 06:51:25 +00009664
Alexander Duyck70864002011-04-27 09:13:56 +00009665 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00009666 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009667
Mark Rustad58cf6632014-03-12 00:38:40 +00009668 if (ixgbe_removed(hw->hw_addr)) {
9669 err = -EIO;
9670 goto err_sw_init;
9671 }
Alexander Duyck70864002011-04-27 09:13:56 +00009672 INIT_WORK(&adapter->service_task, ixgbe_service_task);
Mark Rustad58cf6632014-03-12 00:38:40 +00009673 set_bit(__IXGBE_SERVICE_INITED, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00009674 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07009675
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009676 err = ixgbe_init_interrupt_scheme(adapter);
9677 if (err)
9678 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07009679
Jacob Keller8e2813f2012-04-21 06:05:40 +00009680 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00009681 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00009682 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00009683 hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device,
Don Skidmoreb8f83632013-02-28 08:08:44 +00009684 pdev->subsystem_device);
Jacob Keller6b92b0b2013-04-13 05:40:37 +00009685 if (hw->wol_enabled)
Andy Gospodarek9417c462011-07-16 07:31:33 +00009686 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00009687
PJ Waskiewicze8e26352009-02-27 15:45:05 +00009688 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
9689
Emil Tantilov15e52092011-09-29 05:01:29 +00009690 /* save off EEPROM version number */
9691 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
9692 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
9693
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00009694 /* pick up the PCI bus settings for reporting later */
Jacob Kellere027d1a2013-07-31 06:53:31 +00009695 if (ixgbe_pcie_from_parent(hw))
Jacob Kellerb8e82002013-04-09 07:20:09 +00009696 ixgbe_get_parent_bus_info(adapter);
Don Skidmoref9328bc2015-06-18 13:24:06 -04009697 else
9698 hw->mac.ops.get_bus_info(hw);
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00009699
Jacob Kellere027d1a2013-07-31 06:53:31 +00009700 /* calculate the expected PCIe bandwidth required for optimal
9701 * performance. Note that some older parts will never have enough
9702 * bandwidth due to being older generation PCIe parts. We clamp these
9703 * parts to ensure no warning is displayed if it can't be fixed.
9704 */
9705 switch (hw->mac.type) {
9706 case ixgbe_mac_82598EB:
9707 expected_gts = min(ixgbe_enumerate_functions(adapter) * 10, 16);
9708 break;
9709 default:
9710 expected_gts = ixgbe_enumerate_functions(adapter) * 10;
9711 break;
Auke Kok0c254d82008-02-11 09:25:56 -08009712 }
Jacob Kellercaafb952014-07-19 07:17:17 +00009713
9714 /* don't check link if we failed to enumerate functions */
9715 if (expected_gts > 0)
9716 ixgbe_check_minimum_link(adapter, expected_gts);
Auke Kok0c254d82008-02-11 09:25:56 -08009717
Mark Rustad339de302014-06-06 01:57:06 +00009718 err = ixgbe_read_pba_string_generic(hw, part_str, sizeof(part_str));
Jacob Keller6a2aae52013-10-18 05:09:24 +00009719 if (err)
Mark Rustad339de302014-06-06 01:57:06 +00009720 strlcpy(part_str, "Unknown", sizeof(part_str));
Jacob Keller6a2aae52013-10-18 05:09:24 +00009721 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
9722 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
9723 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Jacob Kellere7cf7452014-04-09 06:03:10 +00009724 part_str);
Jacob Keller6a2aae52013-10-18 05:09:24 +00009725 else
9726 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
9727 hw->mac.type, hw->phy.type, part_str);
9728
9729 e_dev_info("%pM\n", netdev->dev_addr);
9730
Auke Kok9a799d72007-09-15 14:07:45 -07009731 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00009732 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00009733 if (err == IXGBE_ERR_EEPROM_VERSION) {
9734 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00009735 e_dev_warn("This device is a pre-production adapter/LOM. "
9736 "Please be aware there may be issues associated "
9737 "with your hardware. If you are experiencing "
9738 "problems please contact your Intel or hardware "
9739 "representative who provided you with this "
9740 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00009741 }
Auke Kok9a799d72007-09-15 14:07:45 -07009742 strcpy(netdev->name, "eth%d");
9743 err = register_netdev(netdev);
9744 if (err)
9745 goto err_register;
9746
Emil Tantilov0fb6a552014-12-04 03:03:38 +00009747 pci_set_drvdata(pdev, adapter);
9748
Emil Tantilovec74a472012-09-20 03:33:56 +00009749 /* power down the optics for 82599 SFP+ fiber */
9750 if (hw->mac.ops.disable_tx_laser)
Emil Tantilov93d3ce82011-10-19 07:59:55 +00009751 hw->mac.ops.disable_tx_laser(hw);
9752
Jesse Brandeburg54386462009-04-17 20:44:27 +00009753 /* carrier off reporting is important to ethtool even BEFORE open */
9754 netif_carrier_off(netdev);
9755
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009756#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03009757 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009758 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009759 ixgbe_setup_dca(adapter);
9760 }
9761#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00009762 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00009763 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00009764 for (i = 0; i < adapter->num_vfs; i++)
9765 ixgbe_vf_configuration(pdev, (i | 0x10000000));
9766 }
9767
Jacob Keller2466dd92011-09-08 03:50:54 +00009768 /* firmware requires driver version to be 0xFFFFFFFF
9769 * since os does not support feature
9770 */
Emil Tantilov9612de92011-05-07 07:40:20 +00009771 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00009772 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
9773 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00009774
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00009775 /* add san mac addr to netdev */
9776 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009777
Neerav Parikhea818752012-01-04 20:23:40 +00009778 e_dev_info("%s\n", ixgbe_default_device_descr);
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009779
Don Skidmore12109822012-05-04 06:07:08 +00009780#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009781 if (ixgbe_sysfs_init(adapter))
9782 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00009783#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009784
Catherine Sullivan00949162012-08-10 01:59:10 +00009785 ixgbe_dbg_adapter_init(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00009786
Emil Tantilovd1a35ee2014-05-13 08:24:00 +00009787 /* setup link for SFP devices with MNG FW, else wait for IXGBE_UP */
9788 if (ixgbe_mng_enabled(hw) && ixgbe_is_sfp(hw) && hw->mac.ops.setup_link)
Don Skidmore0b2679d2013-02-21 03:00:04 +00009789 hw->mac.ops.setup_link(hw,
9790 IXGBE_LINK_SPEED_10GB_FULL | IXGBE_LINK_SPEED_1GB_FULL,
9791 true);
9792
Auke Kok9a799d72007-09-15 14:07:45 -07009793 return 0;
9794
9795err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08009796 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00009797 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009798err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00009799 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00009800 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Mark Rustad2a1a0912014-01-14 18:53:15 -08009801 iounmap(adapter->io_addr);
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04009802 kfree(adapter->jump_tables[0]);
Jacob Keller5d7daa32014-03-29 06:51:25 +00009803 kfree(adapter->mac_table);
Auke Kok9a799d72007-09-15 14:07:45 -07009804err_ioremap:
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009805 disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07009806 free_netdev(netdev);
9807err_alloc_etherdev:
Johannes Thumshirn56d766d2016-06-07 09:44:05 +02009808 pci_release_mem_regions(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009809err_pci_reg:
9810err_dma:
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009811 if (!adapter || disable_dev)
Mark Rustad41c62842014-03-12 00:38:35 +00009812 pci_disable_device(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009813 return err;
9814}
9815
9816/**
9817 * ixgbe_remove - Device Removal Routine
9818 * @pdev: PCI device information struct
9819 *
9820 * ixgbe_remove is called by the PCI subsystem to alert the driver
9821 * that it should release a PCI device. The could be caused by a
9822 * Hot-Plug event, or because the driver is going to be removed from
9823 * memory.
9824 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05009825static void ixgbe_remove(struct pci_dev *pdev)
Auke Kok9a799d72007-09-15 14:07:45 -07009826{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08009827 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Emil Tantilov0fb6a552014-12-04 03:03:38 +00009828 struct net_device *netdev;
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009829 bool disable_dev;
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04009830 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07009831
Emil Tantilov0fb6a552014-12-04 03:03:38 +00009832 /* if !adapter then we already cleaned up in probe */
9833 if (!adapter)
9834 return;
9835
9836 netdev = adapter->netdev;
Catherine Sullivan00949162012-08-10 01:59:10 +00009837 ixgbe_dbg_adapter_exit(adapter);
Catherine Sullivan00949162012-08-10 01:59:10 +00009838
Mark Rustad09f40ae2014-01-14 18:53:11 -08009839 set_bit(__IXGBE_REMOVING, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00009840 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07009841
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00009842
Jeff Garzik5dd2d332008-10-16 05:09:31 -04009843#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009844 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
9845 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
9846 dca_remove_requester(&pdev->dev);
Mark Rustad9de76052015-08-08 16:27:41 -07009847 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
9848 IXGBE_DCA_CTRL_DCA_DISABLE);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08009849 }
9850
9851#endif
Don Skidmore12109822012-05-04 06:07:08 +00009852#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009853 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00009854#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00009855
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00009856 /* remove the added san mac */
9857 ixgbe_del_sanmac_netdev(netdev);
9858
Greg Roseda36b642012-12-11 08:26:43 +00009859#ifdef CONFIG_PCI_IOV
Alex Williamson7837e282015-07-10 15:31:34 -06009860 ixgbe_disable_sriov(adapter);
Greg Roseda36b642012-12-11 08:26:43 +00009861#endif
Alex Williamson6b010e92015-07-29 14:38:21 -06009862 if (netdev->reg_state == NETREG_REGISTERED)
9863 unregister_netdev(netdev);
9864
Alexander Duyck7a921c92009-05-06 10:43:28 +00009865 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08009866
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009867 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07009868
Alexander Duyck2b1588c2012-03-17 02:39:16 +00009869#ifdef CONFIG_DCB
9870 kfree(adapter->ixgbe_ieee_pfc);
9871 kfree(adapter->ixgbe_ieee_ets);
9872
9873#endif
Mark Rustad2a1a0912014-01-14 18:53:15 -08009874 iounmap(adapter->io_addr);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +02009875 pci_release_mem_regions(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009876
Emil Tantilov849c4542010-06-03 16:53:41 +00009877 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08009878
Amritha Nambiar1cdaaf52016-04-14 19:08:53 -04009879 for (i = 0; i < IXGBE_MAX_LINK_HANDLE; i++) {
9880 if (adapter->jump_tables[i]) {
9881 kfree(adapter->jump_tables[i]->input);
9882 kfree(adapter->jump_tables[i]->mask);
9883 }
9884 kfree(adapter->jump_tables[i]);
9885 }
9886
Jacob Keller5d7daa32014-03-29 06:51:25 +00009887 kfree(adapter->mac_table);
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009888 disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07009889 free_netdev(netdev);
9890
Frans Pop19d5afd2009-10-02 10:04:12 -07009891 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08009892
Daniel Borkmannb5b2ffc2014-11-21 23:52:53 -08009893 if (disable_dev)
Mark Rustad41c62842014-03-12 00:38:35 +00009894 pci_disable_device(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07009895}
9896
9897/**
9898 * ixgbe_io_error_detected - called when PCI error is detected
9899 * @pdev: Pointer to PCI device
9900 * @state: The current pci connection state
9901 *
9902 * This function is called after a PCI bus error affecting
9903 * this device has been detected.
9904 */
9905static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00009906 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07009907{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08009908 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
9909 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07009910
Greg Rose83c61fa2011-09-07 05:59:35 +00009911#ifdef CONFIG_PCI_IOV
Mark Rustad14438462014-02-28 15:48:57 -08009912 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose83c61fa2011-09-07 05:59:35 +00009913 struct pci_dev *bdev, *vfdev;
9914 u32 dw0, dw1, dw2, dw3;
9915 int vf, pos;
9916 u16 req_id, pf_func;
9917
9918 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
9919 adapter->num_vfs == 0)
9920 goto skip_bad_vf_detection;
9921
9922 bdev = pdev->bus->self;
Yijing Wang62f87c02012-07-24 17:20:03 +08009923 while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
Greg Rose83c61fa2011-09-07 05:59:35 +00009924 bdev = bdev->bus->self;
9925
9926 if (!bdev)
9927 goto skip_bad_vf_detection;
9928
9929 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
9930 if (!pos)
9931 goto skip_bad_vf_detection;
9932
Mark Rustad14438462014-02-28 15:48:57 -08009933 dw0 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG);
9934 dw1 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 4);
9935 dw2 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 8);
9936 dw3 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 12);
9937 if (ixgbe_removed(hw->hw_addr))
9938 goto skip_bad_vf_detection;
Greg Rose83c61fa2011-09-07 05:59:35 +00009939
9940 req_id = dw1 >> 16;
9941 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
9942 if (!(req_id & 0x0080))
9943 goto skip_bad_vf_detection;
9944
9945 pf_func = req_id & 0x01;
9946 if ((pf_func & 1) == (pdev->devfn & 1)) {
9947 unsigned int device_id;
9948
9949 vf = (req_id & 0x7F) >> 1;
9950 e_dev_err("VF %d has caused a PCIe error\n", vf);
9951 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
9952 "%8.8x\tdw3: %8.8x\n",
9953 dw0, dw1, dw2, dw3);
9954 switch (adapter->hw.mac.type) {
9955 case ixgbe_mac_82599EB:
9956 device_id = IXGBE_82599_VF_DEVICE_ID;
9957 break;
9958 case ixgbe_mac_X540:
9959 device_id = IXGBE_X540_VF_DEVICE_ID;
9960 break;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00009961 case ixgbe_mac_X550:
9962 device_id = IXGBE_DEV_ID_X550_VF;
9963 break;
9964 case ixgbe_mac_X550EM_x:
9965 device_id = IXGBE_DEV_ID_X550EM_X_VF;
9966 break;
Mark Rustad49425df2016-04-01 12:18:09 -07009967 case ixgbe_mac_x550em_a:
9968 device_id = IXGBE_DEV_ID_X550EM_A_VF;
9969 break;
Greg Rose83c61fa2011-09-07 05:59:35 +00009970 default:
9971 device_id = 0;
9972 break;
9973 }
9974
9975 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00009976 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00009977 while (vfdev) {
9978 if (vfdev->devfn == (req_id & 0xFF))
9979 break;
Jon Mason36e90312012-07-19 21:02:09 +00009980 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00009981 device_id, vfdev);
9982 }
9983 /*
9984 * There's a slim chance the VF could have been hot plugged,
9985 * so if it is no longer present we don't need to issue the
9986 * VFLR. Just clean up the AER in that case.
9987 */
9988 if (vfdev) {
Emil Tantilov9079e412014-11-19 03:18:19 +00009989 ixgbe_issue_vf_flr(adapter, vfdev);
Greg Roseb4fafbe2012-12-13 01:14:06 +00009990 /* Free device reference count */
9991 pci_dev_put(vfdev);
Greg Rose83c61fa2011-09-07 05:59:35 +00009992 }
9993
9994 pci_cleanup_aer_uncorrect_error_status(pdev);
9995 }
9996
9997 /*
9998 * Even though the error may have occurred on the other port
9999 * we still need to increment the vf error reference count for
10000 * both ports because the I/O resume function will be called
10001 * for both of them.
10002 */
10003 adapter->vferr_refcount++;
10004
10005 return PCI_ERS_RESULT_RECOVERED;
10006
10007skip_bad_vf_detection:
10008#endif /* CONFIG_PCI_IOV */
Mark Rustad58cf6632014-03-12 00:38:40 +000010009 if (!test_bit(__IXGBE_SERVICE_INITED, &adapter->state))
10010 return PCI_ERS_RESULT_DISCONNECT;
10011
Mark Rustad41c62842014-03-12 00:38:35 +000010012 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -070010013 netif_device_detach(netdev);
10014
Mark Rustad41c62842014-03-12 00:38:35 +000010015 if (state == pci_channel_io_perm_failure) {
10016 rtnl_unlock();
Breno Leitao3044b8d2009-05-06 10:44:26 +000010017 return PCI_ERS_RESULT_DISCONNECT;
Mark Rustad41c62842014-03-12 00:38:35 +000010018 }
Breno Leitao3044b8d2009-05-06 10:44:26 +000010019
Auke Kok9a799d72007-09-15 14:07:45 -070010020 if (netif_running(netdev))
10021 ixgbe_down(adapter);
Mark Rustad41c62842014-03-12 00:38:35 +000010022
10023 if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state))
10024 pci_disable_device(pdev);
10025 rtnl_unlock();
Auke Kok9a799d72007-09-15 14:07:45 -070010026
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070010027 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -070010028 return PCI_ERS_RESULT_NEED_RESET;
10029}
10030
10031/**
10032 * ixgbe_io_slot_reset - called after the pci bus has been reset.
10033 * @pdev: Pointer to PCI device
10034 *
10035 * Restart the card from scratch, as if from a cold-boot.
10036 */
10037static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
10038{
Alexander Duyckc60fbb02010-11-16 19:26:54 -080010039 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010040 pci_ers_result_t result;
10041 int err;
Auke Kok9a799d72007-09-15 14:07:45 -070010042
gouji-new9ce77662009-05-06 10:44:45 +000010043 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +000010044 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010045 result = PCI_ERS_RESULT_DISCONNECT;
10046 } else {
Peter Zijlstra4e857c52014-03-17 18:06:10 +010010047 smp_mb__before_atomic();
Mark Rustad41c62842014-03-12 00:38:35 +000010048 clear_bit(__IXGBE_DISABLED, &adapter->state);
Mark Rustad0391bbe2014-02-28 15:48:55 -080010049 adapter->hw.hw_addr = adapter->io_addr;
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010050 pci_set_master(pdev);
10051 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +000010052 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010053
Don Skidmoredd4d8ca2009-04-29 00:22:31 -070010054 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010055
10056 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +000010057 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010058 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -070010059 }
Auke Kok9a799d72007-09-15 14:07:45 -070010060
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010061 err = pci_cleanup_aer_uncorrect_error_status(pdev);
10062 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +000010063 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
10064 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010065 /* non-fatal, continue */
10066 }
Auke Kok9a799d72007-09-15 14:07:45 -070010067
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -080010068 return result;
Auke Kok9a799d72007-09-15 14:07:45 -070010069}
10070
10071/**
10072 * ixgbe_io_resume - called when traffic can start flowing again.
10073 * @pdev: Pointer to PCI device
10074 *
10075 * This callback is called when the error recovery driver tells us that
10076 * its OK to resume normal operation.
10077 */
10078static void ixgbe_io_resume(struct pci_dev *pdev)
10079{
Alexander Duyckc60fbb02010-11-16 19:26:54 -080010080 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
10081 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -070010082
Greg Rose83c61fa2011-09-07 05:59:35 +000010083#ifdef CONFIG_PCI_IOV
10084 if (adapter->vferr_refcount) {
10085 e_info(drv, "Resuming after VF err\n");
10086 adapter->vferr_refcount--;
10087 return;
10088 }
10089
10090#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +000010091 if (netif_running(netdev))
10092 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -070010093
10094 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -070010095}
10096
Stephen Hemminger3646f0e2012-09-07 09:33:15 -070010097static const struct pci_error_handlers ixgbe_err_handler = {
Auke Kok9a799d72007-09-15 14:07:45 -070010098 .error_detected = ixgbe_io_error_detected,
10099 .slot_reset = ixgbe_io_slot_reset,
10100 .resume = ixgbe_io_resume,
10101};
10102
10103static struct pci_driver ixgbe_driver = {
10104 .name = ixgbe_driver_name,
10105 .id_table = ixgbe_pci_tbl,
10106 .probe = ixgbe_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -050010107 .remove = ixgbe_remove,
Auke Kok9a799d72007-09-15 14:07:45 -070010108#ifdef CONFIG_PM
10109 .suspend = ixgbe_suspend,
10110 .resume = ixgbe_resume,
10111#endif
10112 .shutdown = ixgbe_shutdown,
Greg Roseda36b642012-12-11 08:26:43 +000010113 .sriov_configure = ixgbe_pci_sriov_configure,
Auke Kok9a799d72007-09-15 14:07:45 -070010114 .err_handler = &ixgbe_err_handler
10115};
10116
10117/**
10118 * ixgbe_init_module - Driver Registration Routine
10119 *
10120 * ixgbe_init_module is the first routine called when the driver is
10121 * loaded. All it does is register with the PCI subsystem.
10122 **/
10123static int __init ixgbe_init_module(void)
10124{
10125 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +000010126 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +000010127 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -070010128
Mark Rustad780484d2015-10-21 17:21:10 -070010129 ixgbe_wq = create_singlethread_workqueue(ixgbe_driver_name);
10130 if (!ixgbe_wq) {
10131 pr_err("%s: Failed to create workqueue\n", ixgbe_driver_name);
10132 return -ENOMEM;
10133 }
10134
Catherine Sullivan00949162012-08-10 01:59:10 +000010135 ixgbe_dbg_init();
Catherine Sullivan00949162012-08-10 01:59:10 +000010136
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +000010137 ret = pci_register_driver(&ixgbe_driver);
10138 if (ret) {
Wei Yongjun6b836872016-07-12 15:17:02 +000010139 destroy_workqueue(ixgbe_wq);
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +000010140 ixgbe_dbg_exit();
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +000010141 return ret;
10142 }
10143
Jeff Garzik5dd2d332008-10-16 05:09:31 -040010144#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010145 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010146#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -040010147
Jakub Kicinskif01fc1a2013-04-03 16:50:54 +000010148 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -070010149}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070010150
Auke Kok9a799d72007-09-15 14:07:45 -070010151module_init(ixgbe_init_module);
10152
10153/**
10154 * ixgbe_exit_module - Driver Exit Cleanup Routine
10155 *
10156 * ixgbe_exit_module is called just before the driver is removed
10157 * from memory.
10158 **/
10159static void __exit ixgbe_exit_module(void)
10160{
Jeff Garzik5dd2d332008-10-16 05:09:31 -040010161#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010162 dca_unregister_notify(&dca_notifier);
10163#endif
Auke Kok9a799d72007-09-15 14:07:45 -070010164 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +000010165
Catherine Sullivan00949162012-08-10 01:59:10 +000010166 ixgbe_dbg_exit();
Mark Rustad780484d2015-10-21 17:21:10 -070010167 if (ixgbe_wq) {
10168 destroy_workqueue(ixgbe_wq);
10169 ixgbe_wq = NULL;
10170 }
Auke Kok9a799d72007-09-15 14:07:45 -070010171}
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010172
Jeff Garzik5dd2d332008-10-16 05:09:31 -040010173#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010174static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +000010175 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010176{
10177 int ret_val;
10178
10179 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +000010180 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010181
10182 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
10183}
Jeb Cramerbd0362d2008-03-03 15:04:02 -080010184
Alexander Duyckb4533682009-03-31 21:32:42 +000010185#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +000010186
Auke Kok9a799d72007-09-15 14:07:45 -070010187module_exit(ixgbe_exit_module);
10188
10189/* ixgbe_main.c */