]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
ixgbe: restore offloaded SAs after a reset
[linux.git] / drivers / net / ethernet / intel / ixgbe / ixgbe_main.c
1 /*******************************************************************************
2
3   Intel 10 Gigabit PCI Express Linux driver
4   Copyright(c) 1999 - 2016 Intel Corporation.
5
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:
23   Linux NICS <linux.nics@intel.com>
24   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>
36 #include <linux/interrupt.h>
37 #include <linux/ip.h>
38 #include <linux/tcp.h>
39 #include <linux/sctp.h>
40 #include <linux/pkt_sched.h>
41 #include <linux/ipv6.h>
42 #include <linux/slab.h>
43 #include <net/checksum.h>
44 #include <net/ip6_checksum.h>
45 #include <linux/etherdevice.h>
46 #include <linux/ethtool.h>
47 #include <linux/if.h>
48 #include <linux/if_vlan.h>
49 #include <linux/if_macvlan.h>
50 #include <linux/if_bridge.h>
51 #include <linux/prefetch.h>
52 #include <linux/bpf.h>
53 #include <linux/bpf_trace.h>
54 #include <linux/atomic.h>
55 #include <scsi/fc/fc_fcoe.h>
56 #include <net/udp_tunnel.h>
57 #include <net/pkt_cls.h>
58 #include <net/tc_act/tc_gact.h>
59 #include <net/tc_act/tc_mirred.h>
60 #include <net/vxlan.h>
61 #include <net/mpls.h>
62
63 #include "ixgbe.h"
64 #include "ixgbe_common.h"
65 #include "ixgbe_dcb_82599.h"
66 #include "ixgbe_sriov.h"
67 #include "ixgbe_model.h"
68
69 char ixgbe_driver_name[] = "ixgbe";
70 static const char ixgbe_driver_string[] =
71                               "Intel(R) 10 Gigabit PCI Express Network Driver";
72 #ifdef IXGBE_FCOE
73 char ixgbe_default_device_descr[] =
74                               "Intel(R) 10 Gigabit Network Connection";
75 #else
76 static char ixgbe_default_device_descr[] =
77                               "Intel(R) 10 Gigabit Network Connection";
78 #endif
79 #define DRV_VERSION "5.1.0-k"
80 const char ixgbe_driver_version[] = DRV_VERSION;
81 static const char ixgbe_copyright[] =
82                                 "Copyright (c) 1999-2016 Intel Corporation.";
83
84 static 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";
85
86 static const struct ixgbe_info *ixgbe_info_tbl[] = {
87         [board_82598]           = &ixgbe_82598_info,
88         [board_82599]           = &ixgbe_82599_info,
89         [board_X540]            = &ixgbe_X540_info,
90         [board_X550]            = &ixgbe_X550_info,
91         [board_X550EM_x]        = &ixgbe_X550EM_x_info,
92         [board_x550em_x_fw]     = &ixgbe_x550em_x_fw_info,
93         [board_x550em_a]        = &ixgbe_x550em_a_info,
94         [board_x550em_a_fw]     = &ixgbe_x550em_a_fw_info,
95 };
96
97 /* ixgbe_pci_tbl - PCI Device ID Table
98  *
99  * Wildcard entries (PCI_ANY_ID) should come last
100  * Last entry must be all 0s
101  *
102  * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
103  *   Class, Class Mask, private data (not used) }
104  */
105 static const struct pci_device_id ixgbe_pci_tbl[] = {
106         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
107         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
108         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
109         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
110         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
111         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
112         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
113         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
114         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
115         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
116         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
117         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
118         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
119         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
120         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
121         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
122         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
123         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
124         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
125         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
126         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
127         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
128         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
129         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
130         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
131         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
132         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP), board_82599 },
133         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
134         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
135         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
136         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T), board_X550},
137         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T1), board_X550},
138         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KX4), board_X550EM_x},
139         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_XFI), board_X550EM_x},
140         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KR), board_X550EM_x},
141         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_10G_T), board_X550EM_x},
142         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_SFP), board_X550EM_x},
143         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_1G_T), board_x550em_x_fw},
144         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_KR), board_x550em_a },
145         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_KR_L), board_x550em_a },
146         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SFP_N), board_x550em_a },
147         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SGMII), board_x550em_a },
148         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SGMII_L), board_x550em_a },
149         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_10G_T), board_x550em_a},
150         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SFP), board_x550em_a },
151         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_1G_T), board_x550em_a_fw },
152         {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_1G_T_L), board_x550em_a_fw },
153         /* required last entry */
154         {0, }
155 };
156 MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
157
158 #ifdef CONFIG_IXGBE_DCA
159 static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
160                             void *p);
161 static struct notifier_block dca_notifier = {
162         .notifier_call = ixgbe_notify_dca,
163         .next          = NULL,
164         .priority      = 0
165 };
166 #endif
167
168 #ifdef CONFIG_PCI_IOV
169 static unsigned int max_vfs;
170 module_param(max_vfs, uint, 0);
171 MODULE_PARM_DESC(max_vfs,
172                  "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63. (Deprecated)");
173 #endif /* CONFIG_PCI_IOV */
174
175 static unsigned int allow_unsupported_sfp;
176 module_param(allow_unsupported_sfp, uint, 0);
177 MODULE_PARM_DESC(allow_unsupported_sfp,
178                  "Allow unsupported and untested SFP+ modules on 82599-based adapters");
179
180 #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
181 static int debug = -1;
182 module_param(debug, int, 0);
183 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
184
185 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
186 MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
187 MODULE_LICENSE("GPL");
188 MODULE_VERSION(DRV_VERSION);
189
190 static struct workqueue_struct *ixgbe_wq;
191
192 static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev);
193 static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *);
194
195 static const struct net_device_ops ixgbe_netdev_ops;
196
197 static bool netif_is_ixgbe(struct net_device *dev)
198 {
199         return dev && (dev->netdev_ops == &ixgbe_netdev_ops);
200 }
201
202 static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter *adapter,
203                                           u32 reg, u16 *value)
204 {
205         struct pci_dev *parent_dev;
206         struct pci_bus *parent_bus;
207
208         parent_bus = adapter->pdev->bus->parent;
209         if (!parent_bus)
210                 return -1;
211
212         parent_dev = parent_bus->self;
213         if (!parent_dev)
214                 return -1;
215
216         if (!pci_is_pcie(parent_dev))
217                 return -1;
218
219         pcie_capability_read_word(parent_dev, reg, value);
220         if (*value == IXGBE_FAILED_READ_CFG_WORD &&
221             ixgbe_check_cfg_remove(&adapter->hw, parent_dev))
222                 return -1;
223         return 0;
224 }
225
226 static s32 ixgbe_get_parent_bus_info(struct ixgbe_adapter *adapter)
227 {
228         struct ixgbe_hw *hw = &adapter->hw;
229         u16 link_status = 0;
230         int err;
231
232         hw->bus.type = ixgbe_bus_type_pci_express;
233
234         /* Get the negotiated link width and speed from PCI config space of the
235          * parent, as this device is behind a switch
236          */
237         err = ixgbe_read_pci_cfg_word_parent(adapter, 18, &link_status);
238
239         /* assume caller will handle error case */
240         if (err)
241                 return err;
242
243         hw->bus.width = ixgbe_convert_bus_width(link_status);
244         hw->bus.speed = ixgbe_convert_bus_speed(link_status);
245
246         return 0;
247 }
248
249 /**
250  * ixgbe_check_from_parent - Determine whether PCIe info should come from parent
251  * @hw: hw specific details
252  *
253  * This function is used by probe to determine whether a device's PCI-Express
254  * bandwidth details should be gathered from the parent bus instead of from the
255  * device. Used to ensure that various locations all have the correct device ID
256  * checks.
257  */
258 static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw *hw)
259 {
260         switch (hw->device_id) {
261         case IXGBE_DEV_ID_82599_SFP_SF_QP:
262         case IXGBE_DEV_ID_82599_QSFP_SF_QP:
263                 return true;
264         default:
265                 return false;
266         }
267 }
268
269 static void ixgbe_check_minimum_link(struct ixgbe_adapter *adapter,
270                                      int expected_gts)
271 {
272         struct ixgbe_hw *hw = &adapter->hw;
273         int max_gts = 0;
274         enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
275         enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
276         struct pci_dev *pdev;
277
278         /* Some devices are not connected over PCIe and thus do not negotiate
279          * speed. These devices do not have valid bus info, and thus any report
280          * we generate may not be correct.
281          */
282         if (hw->bus.type == ixgbe_bus_type_internal)
283                 return;
284
285         /* determine whether to use the parent device */
286         if (ixgbe_pcie_from_parent(&adapter->hw))
287                 pdev = adapter->pdev->bus->parent->self;
288         else
289                 pdev = adapter->pdev;
290
291         if (pcie_get_minimum_link(pdev, &speed, &width) ||
292             speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
293                 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
294                 return;
295         }
296
297         switch (speed) {
298         case PCIE_SPEED_2_5GT:
299                 /* 8b/10b encoding reduces max throughput by 20% */
300                 max_gts = 2 * width;
301                 break;
302         case PCIE_SPEED_5_0GT:
303                 /* 8b/10b encoding reduces max throughput by 20% */
304                 max_gts = 4 * width;
305                 break;
306         case PCIE_SPEED_8_0GT:
307                 /* 128b/130b encoding reduces throughput by less than 2% */
308                 max_gts = 8 * width;
309                 break;
310         default:
311                 e_dev_warn("Unable to determine PCI Express bandwidth.\n");
312                 return;
313         }
314
315         e_dev_info("PCI Express bandwidth of %dGT/s available\n",
316                    max_gts);
317         e_dev_info("(Speed:%s, Width: x%d, Encoding Loss:%s)\n",
318                    (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
319                     speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
320                     speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
321                     "Unknown"),
322                    width,
323                    (speed == PCIE_SPEED_2_5GT ? "20%" :
324                     speed == PCIE_SPEED_5_0GT ? "20%" :
325                     speed == PCIE_SPEED_8_0GT ? "<2%" :
326                     "Unknown"));
327
328         if (max_gts < expected_gts) {
329                 e_dev_warn("This is not sufficient for optimal performance of this card.\n");
330                 e_dev_warn("For optimal performance, at least %dGT/s of bandwidth is required.\n",
331                         expected_gts);
332                 e_dev_warn("A slot with more lanes and/or higher speed is suggested.\n");
333         }
334 }
335
336 static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
337 {
338         if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
339             !test_bit(__IXGBE_REMOVING, &adapter->state) &&
340             !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
341                 queue_work(ixgbe_wq, &adapter->service_task);
342 }
343
344 static void ixgbe_remove_adapter(struct ixgbe_hw *hw)
345 {
346         struct ixgbe_adapter *adapter = hw->back;
347
348         if (!hw->hw_addr)
349                 return;
350         hw->hw_addr = NULL;
351         e_dev_err("Adapter removed\n");
352         if (test_bit(__IXGBE_SERVICE_INITED, &adapter->state))
353                 ixgbe_service_event_schedule(adapter);
354 }
355
356 static void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg)
357 {
358         u32 value;
359
360         /* The following check not only optimizes a bit by not
361          * performing a read on the status register when the
362          * register just read was a status register read that
363          * returned IXGBE_FAILED_READ_REG. It also blocks any
364          * potential recursion.
365          */
366         if (reg == IXGBE_STATUS) {
367                 ixgbe_remove_adapter(hw);
368                 return;
369         }
370         value = ixgbe_read_reg(hw, IXGBE_STATUS);
371         if (value == IXGBE_FAILED_READ_REG)
372                 ixgbe_remove_adapter(hw);
373 }
374
375 /**
376  * ixgbe_read_reg - Read from device register
377  * @hw: hw specific details
378  * @reg: offset of register to read
379  *
380  * Returns : value read or IXGBE_FAILED_READ_REG if removed
381  *
382  * This function is used to read device registers. It checks for device
383  * removal by confirming any read that returns all ones by checking the
384  * status register value for all ones. This function avoids reading from
385  * the hardware if a removal was previously detected in which case it
386  * returns IXGBE_FAILED_READ_REG (all ones).
387  */
388 u32 ixgbe_read_reg(struct ixgbe_hw *hw, u32 reg)
389 {
390         u8 __iomem *reg_addr = READ_ONCE(hw->hw_addr);
391         u32 value;
392
393         if (ixgbe_removed(reg_addr))
394                 return IXGBE_FAILED_READ_REG;
395         if (unlikely(hw->phy.nw_mng_if_sel &
396                      IXGBE_NW_MNG_IF_SEL_SGMII_ENABLE)) {
397                 struct ixgbe_adapter *adapter;
398                 int i;
399
400                 for (i = 0; i < 200; ++i) {
401                         value = readl(reg_addr + IXGBE_MAC_SGMII_BUSY);
402                         if (likely(!value))
403                                 goto writes_completed;
404                         if (value == IXGBE_FAILED_READ_REG) {
405                                 ixgbe_remove_adapter(hw);
406                                 return IXGBE_FAILED_READ_REG;
407                         }
408                         udelay(5);
409                 }
410
411                 adapter = hw->back;
412                 e_warn(hw, "register writes incomplete %08x\n", value);
413         }
414
415 writes_completed:
416         value = readl(reg_addr + reg);
417         if (unlikely(value == IXGBE_FAILED_READ_REG))
418                 ixgbe_check_remove(hw, reg);
419         return value;
420 }
421
422 static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev)
423 {
424         u16 value;
425
426         pci_read_config_word(pdev, PCI_VENDOR_ID, &value);
427         if (value == IXGBE_FAILED_READ_CFG_WORD) {
428                 ixgbe_remove_adapter(hw);
429                 return true;
430         }
431         return false;
432 }
433
434 u16 ixgbe_read_pci_cfg_word(struct ixgbe_hw *hw, u32 reg)
435 {
436         struct ixgbe_adapter *adapter = hw->back;
437         u16 value;
438
439         if (ixgbe_removed(hw->hw_addr))
440                 return IXGBE_FAILED_READ_CFG_WORD;
441         pci_read_config_word(adapter->pdev, reg, &value);
442         if (value == IXGBE_FAILED_READ_CFG_WORD &&
443             ixgbe_check_cfg_remove(hw, adapter->pdev))
444                 return IXGBE_FAILED_READ_CFG_WORD;
445         return value;
446 }
447
448 #ifdef CONFIG_PCI_IOV
449 static u32 ixgbe_read_pci_cfg_dword(struct ixgbe_hw *hw, u32 reg)
450 {
451         struct ixgbe_adapter *adapter = hw->back;
452         u32 value;
453
454         if (ixgbe_removed(hw->hw_addr))
455                 return IXGBE_FAILED_READ_CFG_DWORD;
456         pci_read_config_dword(adapter->pdev, reg, &value);
457         if (value == IXGBE_FAILED_READ_CFG_DWORD &&
458             ixgbe_check_cfg_remove(hw, adapter->pdev))
459                 return IXGBE_FAILED_READ_CFG_DWORD;
460         return value;
461 }
462 #endif /* CONFIG_PCI_IOV */
463
464 void ixgbe_write_pci_cfg_word(struct ixgbe_hw *hw, u32 reg, u16 value)
465 {
466         struct ixgbe_adapter *adapter = hw->back;
467
468         if (ixgbe_removed(hw->hw_addr))
469                 return;
470         pci_write_config_word(adapter->pdev, reg, value);
471 }
472
473 static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
474 {
475         BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
476
477         /* flush memory to make sure state is correct before next watchdog */
478         smp_mb__before_atomic();
479         clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
480 }
481
482 struct ixgbe_reg_info {
483         u32 ofs;
484         char *name;
485 };
486
487 static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
488
489         /* General Registers */
490         {IXGBE_CTRL, "CTRL"},
491         {IXGBE_STATUS, "STATUS"},
492         {IXGBE_CTRL_EXT, "CTRL_EXT"},
493
494         /* Interrupt Registers */
495         {IXGBE_EICR, "EICR"},
496
497         /* RX Registers */
498         {IXGBE_SRRCTL(0), "SRRCTL"},
499         {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
500         {IXGBE_RDLEN(0), "RDLEN"},
501         {IXGBE_RDH(0), "RDH"},
502         {IXGBE_RDT(0), "RDT"},
503         {IXGBE_RXDCTL(0), "RXDCTL"},
504         {IXGBE_RDBAL(0), "RDBAL"},
505         {IXGBE_RDBAH(0), "RDBAH"},
506
507         /* TX Registers */
508         {IXGBE_TDBAL(0), "TDBAL"},
509         {IXGBE_TDBAH(0), "TDBAH"},
510         {IXGBE_TDLEN(0), "TDLEN"},
511         {IXGBE_TDH(0), "TDH"},
512         {IXGBE_TDT(0), "TDT"},
513         {IXGBE_TXDCTL(0), "TXDCTL"},
514
515         /* List Terminator */
516         { .name = NULL }
517 };
518
519
520 /*
521  * ixgbe_regdump - register printout routine
522  */
523 static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
524 {
525         int i;
526         char rname[16];
527         u32 regs[64];
528
529         switch (reginfo->ofs) {
530         case IXGBE_SRRCTL(0):
531                 for (i = 0; i < 64; i++)
532                         regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
533                 break;
534         case IXGBE_DCA_RXCTRL(0):
535                 for (i = 0; i < 64; i++)
536                         regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
537                 break;
538         case IXGBE_RDLEN(0):
539                 for (i = 0; i < 64; i++)
540                         regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
541                 break;
542         case IXGBE_RDH(0):
543                 for (i = 0; i < 64; i++)
544                         regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
545                 break;
546         case IXGBE_RDT(0):
547                 for (i = 0; i < 64; i++)
548                         regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
549                 break;
550         case IXGBE_RXDCTL(0):
551                 for (i = 0; i < 64; i++)
552                         regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
553                 break;
554         case IXGBE_RDBAL(0):
555                 for (i = 0; i < 64; i++)
556                         regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
557                 break;
558         case IXGBE_RDBAH(0):
559                 for (i = 0; i < 64; i++)
560                         regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
561                 break;
562         case IXGBE_TDBAL(0):
563                 for (i = 0; i < 64; i++)
564                         regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
565                 break;
566         case IXGBE_TDBAH(0):
567                 for (i = 0; i < 64; i++)
568                         regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
569                 break;
570         case IXGBE_TDLEN(0):
571                 for (i = 0; i < 64; i++)
572                         regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
573                 break;
574         case IXGBE_TDH(0):
575                 for (i = 0; i < 64; i++)
576                         regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
577                 break;
578         case IXGBE_TDT(0):
579                 for (i = 0; i < 64; i++)
580                         regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
581                 break;
582         case IXGBE_TXDCTL(0):
583                 for (i = 0; i < 64; i++)
584                         regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
585                 break;
586         default:
587                 pr_info("%-15s %08x\n",
588                         reginfo->name, IXGBE_READ_REG(hw, reginfo->ofs));
589                 return;
590         }
591
592         i = 0;
593         while (i < 64) {
594                 int j;
595                 char buf[9 * 8 + 1];
596                 char *p = buf;
597
598                 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i, i + 7);
599                 for (j = 0; j < 8; j++)
600                         p += sprintf(p, " %08x", regs[i++]);
601                 pr_err("%-15s%s\n", rname, buf);
602         }
603
604 }
605
606 static void ixgbe_print_buffer(struct ixgbe_ring *ring, int n)
607 {
608         struct ixgbe_tx_buffer *tx_buffer;
609
610         tx_buffer = &ring->tx_buffer_info[ring->next_to_clean];
611         pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
612                 n, ring->next_to_use, ring->next_to_clean,
613                 (u64)dma_unmap_addr(tx_buffer, dma),
614                 dma_unmap_len(tx_buffer, len),
615                 tx_buffer->next_to_watch,
616                 (u64)tx_buffer->time_stamp);
617 }
618
619 /*
620  * ixgbe_dump - Print registers, tx-rings and rx-rings
621  */
622 static void ixgbe_dump(struct ixgbe_adapter *adapter)
623 {
624         struct net_device *netdev = adapter->netdev;
625         struct ixgbe_hw *hw = &adapter->hw;
626         struct ixgbe_reg_info *reginfo;
627         int n = 0;
628         struct ixgbe_ring *ring;
629         struct ixgbe_tx_buffer *tx_buffer;
630         union ixgbe_adv_tx_desc *tx_desc;
631         struct my_u0 { u64 a; u64 b; } *u0;
632         struct ixgbe_ring *rx_ring;
633         union ixgbe_adv_rx_desc *rx_desc;
634         struct ixgbe_rx_buffer *rx_buffer_info;
635         int i = 0;
636
637         if (!netif_msg_hw(adapter))
638                 return;
639
640         /* Print netdevice Info */
641         if (netdev) {
642                 dev_info(&adapter->pdev->dev, "Net device Info\n");
643                 pr_info("Device Name     state            "
644                         "trans_start\n");
645                 pr_info("%-15s %016lX %016lX\n",
646                         netdev->name,
647                         netdev->state,
648                         dev_trans_start(netdev));
649         }
650
651         /* Print Registers */
652         dev_info(&adapter->pdev->dev, "Register Dump\n");
653         pr_info(" Register Name   Value\n");
654         for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
655              reginfo->name; reginfo++) {
656                 ixgbe_regdump(hw, reginfo);
657         }
658
659         /* Print TX Ring Summary */
660         if (!netdev || !netif_running(netdev))
661                 return;
662
663         dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
664         pr_info(" %s     %s              %s        %s\n",
665                 "Queue [NTU] [NTC] [bi(ntc)->dma  ]",
666                 "leng", "ntw", "timestamp");
667         for (n = 0; n < adapter->num_tx_queues; n++) {
668                 ring = adapter->tx_ring[n];
669                 ixgbe_print_buffer(ring, n);
670         }
671
672         for (n = 0; n < adapter->num_xdp_queues; n++) {
673                 ring = adapter->xdp_ring[n];
674                 ixgbe_print_buffer(ring, n);
675         }
676
677         /* Print TX Rings */
678         if (!netif_msg_tx_done(adapter))
679                 goto rx_ring_summary;
680
681         dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
682
683         /* Transmit Descriptor Formats
684          *
685          * 82598 Advanced Transmit Descriptor
686          *   +--------------------------------------------------------------+
687          * 0 |         Buffer Address [63:0]                                |
688          *   +--------------------------------------------------------------+
689          * 8 |  PAYLEN  | POPTS  | IDX | STA | DCMD  |DTYP |  RSV |  DTALEN |
690          *   +--------------------------------------------------------------+
691          *   63       46 45    40 39 36 35 32 31   24 23 20 19              0
692          *
693          * 82598 Advanced Transmit Descriptor (Write-Back Format)
694          *   +--------------------------------------------------------------+
695          * 0 |                          RSV [63:0]                          |
696          *   +--------------------------------------------------------------+
697          * 8 |            RSV           |  STA  |          NXTSEQ           |
698          *   +--------------------------------------------------------------+
699          *   63                       36 35   32 31                         0
700          *
701          * 82599+ Advanced Transmit Descriptor
702          *   +--------------------------------------------------------------+
703          * 0 |         Buffer Address [63:0]                                |
704          *   +--------------------------------------------------------------+
705          * 8 |PAYLEN  |POPTS|CC|IDX  |STA  |DCMD  |DTYP |MAC  |RSV  |DTALEN |
706          *   +--------------------------------------------------------------+
707          *   63     46 45 40 39 38 36 35 32 31  24 23 20 19 18 17 16 15     0
708          *
709          * 82599+ Advanced Transmit Descriptor (Write-Back Format)
710          *   +--------------------------------------------------------------+
711          * 0 |                          RSV [63:0]                          |
712          *   +--------------------------------------------------------------+
713          * 8 |            RSV           |  STA  |           RSV             |
714          *   +--------------------------------------------------------------+
715          *   63                       36 35   32 31                         0
716          */
717
718         for (n = 0; n < adapter->num_tx_queues; n++) {
719                 ring = adapter->tx_ring[n];
720                 pr_info("------------------------------------\n");
721                 pr_info("TX QUEUE INDEX = %d\n", ring->queue_index);
722                 pr_info("------------------------------------\n");
723                 pr_info("%s%s    %s              %s        %s          %s\n",
724                         "T [desc]     [address 63:0  ] ",
725                         "[PlPOIdStDDt Ln] [bi->dma       ] ",
726                         "leng", "ntw", "timestamp", "bi->skb");
727
728                 for (i = 0; ring->desc && (i < ring->count); i++) {
729                         tx_desc = IXGBE_TX_DESC(ring, i);
730                         tx_buffer = &ring->tx_buffer_info[i];
731                         u0 = (struct my_u0 *)tx_desc;
732                         if (dma_unmap_len(tx_buffer, len) > 0) {
733                                 const char *ring_desc;
734
735                                 if (i == ring->next_to_use &&
736                                     i == ring->next_to_clean)
737                                         ring_desc = " NTC/U";
738                                 else if (i == ring->next_to_use)
739                                         ring_desc = " NTU";
740                                 else if (i == ring->next_to_clean)
741                                         ring_desc = " NTC";
742                                 else
743                                         ring_desc = "";
744                                 pr_info("T [0x%03X]    %016llX %016llX %016llX %08X %p %016llX %p%s",
745                                         i,
746                                         le64_to_cpu(u0->a),
747                                         le64_to_cpu(u0->b),
748                                         (u64)dma_unmap_addr(tx_buffer, dma),
749                                         dma_unmap_len(tx_buffer, len),
750                                         tx_buffer->next_to_watch,
751                                         (u64)tx_buffer->time_stamp,
752                                         tx_buffer->skb,
753                                         ring_desc);
754
755                                 if (netif_msg_pktdata(adapter) &&
756                                     tx_buffer->skb)
757                                         print_hex_dump(KERN_INFO, "",
758                                                 DUMP_PREFIX_ADDRESS, 16, 1,
759                                                 tx_buffer->skb->data,
760                                                 dma_unmap_len(tx_buffer, len),
761                                                 true);
762                         }
763                 }
764         }
765
766         /* Print RX Rings Summary */
767 rx_ring_summary:
768         dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
769         pr_info("Queue [NTU] [NTC]\n");
770         for (n = 0; n < adapter->num_rx_queues; n++) {
771                 rx_ring = adapter->rx_ring[n];
772                 pr_info("%5d %5X %5X\n",
773                         n, rx_ring->next_to_use, rx_ring->next_to_clean);
774         }
775
776         /* Print RX Rings */
777         if (!netif_msg_rx_status(adapter))
778                 return;
779
780         dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
781
782         /* Receive Descriptor Formats
783          *
784          * 82598 Advanced Receive Descriptor (Read) Format
785          *    63                                           1        0
786          *    +-----------------------------------------------------+
787          *  0 |       Packet Buffer Address [63:1]           |A0/NSE|
788          *    +----------------------------------------------+------+
789          *  8 |       Header Buffer Address [63:1]           |  DD  |
790          *    +-----------------------------------------------------+
791          *
792          *
793          * 82598 Advanced Receive Descriptor (Write-Back) Format
794          *
795          *   63       48 47    32 31  30      21 20 16 15   4 3     0
796          *   +------------------------------------------------------+
797          * 0 |       RSS Hash /  |SPH| HDR_LEN  | RSV |Packet|  RSS |
798          *   | Packet   | IP     |   |          |     | Type | Type |
799          *   | Checksum | Ident  |   |          |     |      |      |
800          *   +------------------------------------------------------+
801          * 8 | VLAN Tag | Length | Extended Error | Extended Status |
802          *   +------------------------------------------------------+
803          *   63       48 47    32 31            20 19               0
804          *
805          * 82599+ Advanced Receive Descriptor (Read) Format
806          *    63                                           1        0
807          *    +-----------------------------------------------------+
808          *  0 |       Packet Buffer Address [63:1]           |A0/NSE|
809          *    +----------------------------------------------+------+
810          *  8 |       Header Buffer Address [63:1]           |  DD  |
811          *    +-----------------------------------------------------+
812          *
813          *
814          * 82599+ Advanced Receive Descriptor (Write-Back) Format
815          *
816          *   63       48 47    32 31  30      21 20 17 16   4 3     0
817          *   +------------------------------------------------------+
818          * 0 |RSS / Frag Checksum|SPH| HDR_LEN  |RSC- |Packet|  RSS |
819          *   |/ RTT / PCoE_PARAM |   |          | CNT | Type | Type |
820          *   |/ Flow Dir Flt ID  |   |          |     |      |      |
821          *   +------------------------------------------------------+
822          * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
823          *   +------------------------------------------------------+
824          *   63       48 47    32 31          20 19                 0
825          */
826
827         for (n = 0; n < adapter->num_rx_queues; n++) {
828                 rx_ring = adapter->rx_ring[n];
829                 pr_info("------------------------------------\n");
830                 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
831                 pr_info("------------------------------------\n");
832                 pr_info("%s%s%s\n",
833                         "R  [desc]      [ PktBuf     A0] ",
834                         "[  HeadBuf   DD] [bi->dma       ] [bi->skb       ] ",
835                         "<-- Adv Rx Read format");
836                 pr_info("%s%s%s\n",
837                         "RWB[desc]      [PcsmIpSHl PtRs] ",
838                         "[vl er S cks ln] ---------------- [bi->skb       ] ",
839                         "<-- Adv Rx Write-Back format");
840
841                 for (i = 0; i < rx_ring->count; i++) {
842                         const char *ring_desc;
843
844                         if (i == rx_ring->next_to_use)
845                                 ring_desc = " NTU";
846                         else if (i == rx_ring->next_to_clean)
847                                 ring_desc = " NTC";
848                         else
849                                 ring_desc = "";
850
851                         rx_buffer_info = &rx_ring->rx_buffer_info[i];
852                         rx_desc = IXGBE_RX_DESC(rx_ring, i);
853                         u0 = (struct my_u0 *)rx_desc;
854                         if (rx_desc->wb.upper.length) {
855                                 /* Descriptor Done */
856                                 pr_info("RWB[0x%03X]     %016llX %016llX ---------------- %p%s\n",
857                                         i,
858                                         le64_to_cpu(u0->a),
859                                         le64_to_cpu(u0->b),
860                                         rx_buffer_info->skb,
861                                         ring_desc);
862                         } else {
863                                 pr_info("R  [0x%03X]     %016llX %016llX %016llX %p%s\n",
864                                         i,
865                                         le64_to_cpu(u0->a),
866                                         le64_to_cpu(u0->b),
867                                         (u64)rx_buffer_info->dma,
868                                         rx_buffer_info->skb,
869                                         ring_desc);
870
871                                 if (netif_msg_pktdata(adapter) &&
872                                     rx_buffer_info->dma) {
873                                         print_hex_dump(KERN_INFO, "",
874                                            DUMP_PREFIX_ADDRESS, 16, 1,
875                                            page_address(rx_buffer_info->page) +
876                                                     rx_buffer_info->page_offset,
877                                            ixgbe_rx_bufsz(rx_ring), true);
878                                 }
879                         }
880                 }
881         }
882 }
883
884 static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
885 {
886         u32 ctrl_ext;
887
888         /* Let firmware take over control of h/w */
889         ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
890         IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
891                         ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
892 }
893
894 static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
895 {
896         u32 ctrl_ext;
897
898         /* Let firmware know the driver has taken over */
899         ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
900         IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
901                         ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
902 }
903
904 /**
905  * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
906  * @adapter: pointer to adapter struct
907  * @direction: 0 for Rx, 1 for Tx, -1 for other causes
908  * @queue: queue to map the corresponding interrupt to
909  * @msix_vector: the vector to map to the corresponding queue
910  *
911  */
912 static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
913                            u8 queue, u8 msix_vector)
914 {
915         u32 ivar, index;
916         struct ixgbe_hw *hw = &adapter->hw;
917         switch (hw->mac.type) {
918         case ixgbe_mac_82598EB:
919                 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
920                 if (direction == -1)
921                         direction = 0;
922                 index = (((direction * 64) + queue) >> 2) & 0x1F;
923                 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
924                 ivar &= ~(0xFF << (8 * (queue & 0x3)));
925                 ivar |= (msix_vector << (8 * (queue & 0x3)));
926                 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
927                 break;
928         case ixgbe_mac_82599EB:
929         case ixgbe_mac_X540:
930         case ixgbe_mac_X550:
931         case ixgbe_mac_X550EM_x:
932         case ixgbe_mac_x550em_a:
933                 if (direction == -1) {
934                         /* other causes */
935                         msix_vector |= IXGBE_IVAR_ALLOC_VAL;
936                         index = ((queue & 1) * 8);
937                         ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
938                         ivar &= ~(0xFF << index);
939                         ivar |= (msix_vector << index);
940                         IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
941                         break;
942                 } else {
943                         /* tx or rx causes */
944                         msix_vector |= IXGBE_IVAR_ALLOC_VAL;
945                         index = ((16 * (queue & 1)) + (8 * direction));
946                         ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
947                         ivar &= ~(0xFF << index);
948                         ivar |= (msix_vector << index);
949                         IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
950                         break;
951                 }
952         default:
953                 break;
954         }
955 }
956
957 static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
958                                           u64 qmask)
959 {
960         u32 mask;
961
962         switch (adapter->hw.mac.type) {
963         case ixgbe_mac_82598EB:
964                 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
965                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
966                 break;
967         case ixgbe_mac_82599EB:
968         case ixgbe_mac_X540:
969         case ixgbe_mac_X550:
970         case ixgbe_mac_X550EM_x:
971         case ixgbe_mac_x550em_a:
972                 mask = (qmask & 0xFFFFFFFF);
973                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
974                 mask = (qmask >> 32);
975                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
976                 break;
977         default:
978                 break;
979         }
980 }
981
982 static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
983 {
984         struct ixgbe_hw *hw = &adapter->hw;
985         struct ixgbe_hw_stats *hwstats = &adapter->stats;
986         int i;
987         u32 data;
988
989         if ((hw->fc.current_mode != ixgbe_fc_full) &&
990             (hw->fc.current_mode != ixgbe_fc_rx_pause))
991                 return;
992
993         switch (hw->mac.type) {
994         case ixgbe_mac_82598EB:
995                 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
996                 break;
997         default:
998                 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
999         }
1000         hwstats->lxoffrxc += data;
1001
1002         /* refill credits (no tx hang) if we received xoff */
1003         if (!data)
1004                 return;
1005
1006         for (i = 0; i < adapter->num_tx_queues; i++)
1007                 clear_bit(__IXGBE_HANG_CHECK_ARMED,
1008                           &adapter->tx_ring[i]->state);
1009
1010         for (i = 0; i < adapter->num_xdp_queues; i++)
1011                 clear_bit(__IXGBE_HANG_CHECK_ARMED,
1012                           &adapter->xdp_ring[i]->state);
1013 }
1014
1015 static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
1016 {
1017         struct ixgbe_hw *hw = &adapter->hw;
1018         struct ixgbe_hw_stats *hwstats = &adapter->stats;
1019         u32 xoff[8] = {0};
1020         u8 tc;
1021         int i;
1022         bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
1023
1024         if (adapter->ixgbe_ieee_pfc)
1025                 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
1026
1027         if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
1028                 ixgbe_update_xoff_rx_lfc(adapter);
1029                 return;
1030         }
1031
1032         /* update stats for each tc, only valid with PFC enabled */
1033         for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
1034                 u32 pxoffrxc;
1035
1036                 switch (hw->mac.type) {
1037                 case ixgbe_mac_82598EB:
1038                         pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
1039                         break;
1040                 default:
1041                         pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
1042                 }
1043                 hwstats->pxoffrxc[i] += pxoffrxc;
1044                 /* Get the TC for given UP */
1045                 tc = netdev_get_prio_tc_map(adapter->netdev, i);
1046                 xoff[tc] += pxoffrxc;
1047         }
1048
1049         /* disarm tx queues that have received xoff frames */
1050         for (i = 0; i < adapter->num_tx_queues; i++) {
1051                 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
1052
1053                 tc = tx_ring->dcb_tc;
1054                 if (xoff[tc])
1055                         clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
1056         }
1057
1058         for (i = 0; i < adapter->num_xdp_queues; i++) {
1059                 struct ixgbe_ring *xdp_ring = adapter->xdp_ring[i];
1060
1061                 tc = xdp_ring->dcb_tc;
1062                 if (xoff[tc])
1063                         clear_bit(__IXGBE_HANG_CHECK_ARMED, &xdp_ring->state);
1064         }
1065 }
1066
1067 static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
1068 {
1069         return ring->stats.packets;
1070 }
1071
1072 static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
1073 {
1074         unsigned int head, tail;
1075
1076         head = ring->next_to_clean;
1077         tail = ring->next_to_use;
1078
1079         return ((head <= tail) ? tail : tail + ring->count) - head;
1080 }
1081
1082 static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
1083 {
1084         u32 tx_done = ixgbe_get_tx_completed(tx_ring);
1085         u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
1086         u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
1087
1088         clear_check_for_tx_hang(tx_ring);
1089
1090         /*
1091          * Check for a hung queue, but be thorough. This verifies
1092          * that a transmit has been completed since the previous
1093          * check AND there is at least one packet pending. The
1094          * ARMED bit is set to indicate a potential hang. The
1095          * bit is cleared if a pause frame is received to remove
1096          * false hang detection due to PFC or 802.3x frames. By
1097          * requiring this to fail twice we avoid races with
1098          * pfc clearing the ARMED bit and conditions where we
1099          * run the check_tx_hang logic with a transmit completion
1100          * pending but without time to complete it yet.
1101          */
1102         if (tx_done_old == tx_done && tx_pending)
1103                 /* make sure it is true for two checks in a row */
1104                 return test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
1105                                         &tx_ring->state);
1106         /* update completed stats and continue */
1107         tx_ring->tx_stats.tx_done_old = tx_done;
1108         /* reset the countdown */
1109         clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
1110
1111         return false;
1112 }
1113
1114 /**
1115  * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
1116  * @adapter: driver private struct
1117  **/
1118 static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
1119 {
1120
1121         /* Do the reset outside of interrupt context */
1122         if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1123                 set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
1124                 e_warn(drv, "initiating reset due to tx timeout\n");
1125                 ixgbe_service_event_schedule(adapter);
1126         }
1127 }
1128
1129 /**
1130  * ixgbe_tx_maxrate - callback to set the maximum per-queue bitrate
1131  * @netdev: network interface device structure
1132  * @queue_index: Tx queue to set
1133  * @maxrate: desired maximum transmit bitrate
1134  **/
1135 static int ixgbe_tx_maxrate(struct net_device *netdev,
1136                             int queue_index, u32 maxrate)
1137 {
1138         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1139         struct ixgbe_hw *hw = &adapter->hw;
1140         u32 bcnrc_val = ixgbe_link_mbps(adapter);
1141
1142         if (!maxrate)
1143                 return 0;
1144
1145         /* Calculate the rate factor values to set */
1146         bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1147         bcnrc_val /= maxrate;
1148
1149         /* clear everything but the rate factor */
1150         bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1151         IXGBE_RTTBCNRC_RF_DEC_MASK;
1152
1153         /* enable the rate scheduler */
1154         bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
1155
1156         IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_index);
1157         IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1158
1159         return 0;
1160 }
1161
1162 /**
1163  * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
1164  * @q_vector: structure containing interrupt and ring information
1165  * @tx_ring: tx ring to clean
1166  * @napi_budget: Used to determine if we are in netpoll
1167  **/
1168 static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
1169                                struct ixgbe_ring *tx_ring, int napi_budget)
1170 {
1171         struct ixgbe_adapter *adapter = q_vector->adapter;
1172         struct ixgbe_tx_buffer *tx_buffer;
1173         union ixgbe_adv_tx_desc *tx_desc;
1174         unsigned int total_bytes = 0, total_packets = 0;
1175         unsigned int budget = q_vector->tx.work_limit;
1176         unsigned int i = tx_ring->next_to_clean;
1177
1178         if (test_bit(__IXGBE_DOWN, &adapter->state))
1179                 return true;
1180
1181         tx_buffer = &tx_ring->tx_buffer_info[i];
1182         tx_desc = IXGBE_TX_DESC(tx_ring, i);
1183         i -= tx_ring->count;
1184
1185         do {
1186                 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
1187
1188                 /* if next_to_watch is not set then there is no work pending */
1189                 if (!eop_desc)
1190                         break;
1191
1192                 /* prevent any other reads prior to eop_desc */
1193                 smp_rmb();
1194
1195                 /* if DD is not set pending work has not been completed */
1196                 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
1197                         break;
1198
1199                 /* clear next_to_watch to prevent false hangs */
1200                 tx_buffer->next_to_watch = NULL;
1201
1202                 /* update the statistics for this packet */
1203                 total_bytes += tx_buffer->bytecount;
1204                 total_packets += tx_buffer->gso_segs;
1205
1206                 /* free the skb */
1207                 if (ring_is_xdp(tx_ring))
1208                         page_frag_free(tx_buffer->data);
1209                 else
1210                         napi_consume_skb(tx_buffer->skb, napi_budget);
1211
1212                 /* unmap skb header data */
1213                 dma_unmap_single(tx_ring->dev,
1214                                  dma_unmap_addr(tx_buffer, dma),
1215                                  dma_unmap_len(tx_buffer, len),
1216                                  DMA_TO_DEVICE);
1217
1218                 /* clear tx_buffer data */
1219                 dma_unmap_len_set(tx_buffer, len, 0);
1220
1221                 /* unmap remaining buffers */
1222                 while (tx_desc != eop_desc) {
1223                         tx_buffer++;
1224                         tx_desc++;
1225                         i++;
1226                         if (unlikely(!i)) {
1227                                 i -= tx_ring->count;
1228                                 tx_buffer = tx_ring->tx_buffer_info;
1229                                 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
1230                         }
1231
1232                         /* unmap any remaining paged data */
1233                         if (dma_unmap_len(tx_buffer, len)) {
1234                                 dma_unmap_page(tx_ring->dev,
1235                                                dma_unmap_addr(tx_buffer, dma),
1236                                                dma_unmap_len(tx_buffer, len),
1237                                                DMA_TO_DEVICE);
1238                                 dma_unmap_len_set(tx_buffer, len, 0);
1239                         }
1240                 }
1241
1242                 /* move us one more past the eop_desc for start of next pkt */
1243                 tx_buffer++;
1244                 tx_desc++;
1245                 i++;
1246                 if (unlikely(!i)) {
1247                         i -= tx_ring->count;
1248                         tx_buffer = tx_ring->tx_buffer_info;
1249                         tx_desc = IXGBE_TX_DESC(tx_ring, 0);
1250                 }
1251
1252                 /* issue prefetch for next Tx descriptor */
1253                 prefetch(tx_desc);
1254
1255                 /* update budget accounting */
1256                 budget--;
1257         } while (likely(budget));
1258
1259         i += tx_ring->count;
1260         tx_ring->next_to_clean = i;
1261         u64_stats_update_begin(&tx_ring->syncp);
1262         tx_ring->stats.bytes += total_bytes;
1263         tx_ring->stats.packets += total_packets;
1264         u64_stats_update_end(&tx_ring->syncp);
1265         q_vector->tx.total_bytes += total_bytes;
1266         q_vector->tx.total_packets += total_packets;
1267
1268         if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
1269                 /* schedule immediate reset if we believe we hung */
1270                 struct ixgbe_hw *hw = &adapter->hw;
1271                 e_err(drv, "Detected Tx Unit Hang %s\n"
1272                         "  Tx Queue             <%d>\n"
1273                         "  TDH, TDT             <%x>, <%x>\n"
1274                         "  next_to_use          <%x>\n"
1275                         "  next_to_clean        <%x>\n"
1276                         "tx_buffer_info[next_to_clean]\n"
1277                         "  time_stamp           <%lx>\n"
1278                         "  jiffies              <%lx>\n",
1279                         ring_is_xdp(tx_ring) ? "(XDP)" : "",
1280                         tx_ring->queue_index,
1281                         IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
1282                         IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
1283                         tx_ring->next_to_use, i,
1284                         tx_ring->tx_buffer_info[i].time_stamp, jiffies);
1285
1286                 if (!ring_is_xdp(tx_ring))
1287                         netif_stop_subqueue(tx_ring->netdev,
1288                                             tx_ring->queue_index);
1289
1290                 e_info(probe,
1291                        "tx hang %d detected on queue %d, resetting adapter\n",
1292                         adapter->tx_timeout_count + 1, tx_ring->queue_index);
1293
1294                 /* schedule immediate reset if we believe we hung */
1295                 ixgbe_tx_timeout_reset(adapter);
1296
1297                 /* the adapter is about to reset, no point in enabling stuff */
1298                 return true;
1299         }
1300
1301         if (ring_is_xdp(tx_ring))
1302                 return !!budget;
1303
1304         netdev_tx_completed_queue(txring_txq(tx_ring),
1305                                   total_packets, total_bytes);
1306
1307 #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
1308         if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
1309                      (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
1310                 /* Make sure that anybody stopping the queue after this
1311                  * sees the new next_to_clean.
1312                  */
1313                 smp_mb();
1314                 if (__netif_subqueue_stopped(tx_ring->netdev,
1315                                              tx_ring->queue_index)
1316                     && !test_bit(__IXGBE_DOWN, &adapter->state)) {
1317                         netif_wake_subqueue(tx_ring->netdev,
1318                                             tx_ring->queue_index);
1319                         ++tx_ring->tx_stats.restart_queue;
1320                 }
1321         }
1322
1323         return !!budget;
1324 }
1325
1326 #ifdef CONFIG_IXGBE_DCA
1327 static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
1328                                 struct ixgbe_ring *tx_ring,
1329                                 int cpu)
1330 {
1331         struct ixgbe_hw *hw = &adapter->hw;
1332         u32 txctrl = 0;
1333         u16 reg_offset;
1334
1335         if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1336                 txctrl = dca3_get_tag(tx_ring->dev, cpu);
1337
1338         switch (hw->mac.type) {
1339         case ixgbe_mac_82598EB:
1340                 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
1341                 break;
1342         case ixgbe_mac_82599EB:
1343         case ixgbe_mac_X540:
1344                 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
1345                 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
1346                 break;
1347         default:
1348                 /* for unknown hardware do not write register */
1349                 return;
1350         }
1351
1352         /*
1353          * We can enable relaxed ordering for reads, but not writes when
1354          * DCA is enabled.  This is due to a known issue in some chipsets
1355          * which will cause the DCA tag to be cleared.
1356          */
1357         txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1358                   IXGBE_DCA_TXCTRL_DATA_RRO_EN |
1359                   IXGBE_DCA_TXCTRL_DESC_DCA_EN;
1360
1361         IXGBE_WRITE_REG(hw, reg_offset, txctrl);
1362 }
1363
1364 static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
1365                                 struct ixgbe_ring *rx_ring,
1366                                 int cpu)
1367 {
1368         struct ixgbe_hw *hw = &adapter->hw;
1369         u32 rxctrl = 0;
1370         u8 reg_idx = rx_ring->reg_idx;
1371
1372         if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1373                 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
1374
1375         switch (hw->mac.type) {
1376         case ixgbe_mac_82599EB:
1377         case ixgbe_mac_X540:
1378                 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
1379                 break;
1380         default:
1381                 break;
1382         }
1383
1384         /*
1385          * We can enable relaxed ordering for reads, but not writes when
1386          * DCA is enabled.  This is due to a known issue in some chipsets
1387          * which will cause the DCA tag to be cleared.
1388          */
1389         rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
1390                   IXGBE_DCA_RXCTRL_DATA_DCA_EN |
1391                   IXGBE_DCA_RXCTRL_DESC_DCA_EN;
1392
1393         IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
1394 }
1395
1396 static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
1397 {
1398         struct ixgbe_adapter *adapter = q_vector->adapter;
1399         struct ixgbe_ring *ring;
1400         int cpu = get_cpu();
1401
1402         if (q_vector->cpu == cpu)
1403                 goto out_no_update;
1404
1405         ixgbe_for_each_ring(ring, q_vector->tx)
1406                 ixgbe_update_tx_dca(adapter, ring, cpu);
1407
1408         ixgbe_for_each_ring(ring, q_vector->rx)
1409                 ixgbe_update_rx_dca(adapter, ring, cpu);
1410
1411         q_vector->cpu = cpu;
1412 out_no_update:
1413         put_cpu();
1414 }
1415
1416 static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1417 {
1418         int i;
1419
1420         /* always use CB2 mode, difference is masked in the CB driver */
1421         if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1422                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1423                                 IXGBE_DCA_CTRL_DCA_MODE_CB2);
1424         else
1425                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1426                                 IXGBE_DCA_CTRL_DCA_DISABLE);
1427
1428         for (i = 0; i < adapter->num_q_vectors; i++) {
1429                 adapter->q_vector[i]->cpu = -1;
1430                 ixgbe_update_dca(adapter->q_vector[i]);
1431         }
1432 }
1433
1434 static int __ixgbe_notify_dca(struct device *dev, void *data)
1435 {
1436         struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
1437         unsigned long event = *(unsigned long *)data;
1438
1439         if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
1440                 return 0;
1441
1442         switch (event) {
1443         case DCA_PROVIDER_ADD:
1444                 /* if we're already enabled, don't do it again */
1445                 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1446                         break;
1447                 if (dca_add_requester(dev) == 0) {
1448                         adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
1449                         IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1450                                         IXGBE_DCA_CTRL_DCA_MODE_CB2);
1451                         break;
1452                 }
1453                 /* fall through - DCA is disabled. */
1454         case DCA_PROVIDER_REMOVE:
1455                 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1456                         dca_remove_requester(dev);
1457                         adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1458                         IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
1459                                         IXGBE_DCA_CTRL_DCA_DISABLE);
1460                 }
1461                 break;
1462         }
1463
1464         return 0;
1465 }
1466
1467 #endif /* CONFIG_IXGBE_DCA */
1468
1469 #define IXGBE_RSS_L4_TYPES_MASK \
1470         ((1ul << IXGBE_RXDADV_RSSTYPE_IPV4_TCP) | \
1471          (1ul << IXGBE_RXDADV_RSSTYPE_IPV4_UDP) | \
1472          (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_TCP) | \
1473          (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_UDP))
1474
1475 static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1476                                  union ixgbe_adv_rx_desc *rx_desc,
1477                                  struct sk_buff *skb)
1478 {
1479         u16 rss_type;
1480
1481         if (!(ring->netdev->features & NETIF_F_RXHASH))
1482                 return;
1483
1484         rss_type = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.pkt_info) &
1485                    IXGBE_RXDADV_RSSTYPE_MASK;
1486
1487         if (!rss_type)
1488                 return;
1489
1490         skb_set_hash(skb, le32_to_cpu(rx_desc->wb.lower.hi_dword.rss),
1491                      (IXGBE_RSS_L4_TYPES_MASK & (1ul << rss_type)) ?
1492                      PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3);
1493 }
1494
1495 #ifdef IXGBE_FCOE
1496 /**
1497  * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1498  * @ring: structure containing ring specific data
1499  * @rx_desc: advanced rx descriptor
1500  *
1501  * Returns : true if it is FCoE pkt
1502  */
1503 static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
1504                                     union ixgbe_adv_rx_desc *rx_desc)
1505 {
1506         __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1507
1508         return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
1509                ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1510                 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1511                              IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1512 }
1513
1514 #endif /* IXGBE_FCOE */
1515 /**
1516  * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1517  * @ring: structure containing ring specific data
1518  * @rx_desc: current Rx descriptor being processed
1519  * @skb: skb currently being received and modified
1520  **/
1521 static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
1522                                      union ixgbe_adv_rx_desc *rx_desc,
1523                                      struct sk_buff *skb)
1524 {
1525         __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1526         bool encap_pkt = false;
1527
1528         skb_checksum_none_assert(skb);
1529
1530         /* Rx csum disabled */
1531         if (!(ring->netdev->features & NETIF_F_RXCSUM))
1532                 return;
1533
1534         /* check for VXLAN and Geneve packets */
1535         if (pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_VXLAN)) {
1536                 encap_pkt = true;
1537                 skb->encapsulation = 1;
1538         }
1539
1540         /* if IP and error */
1541         if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1542             ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
1543                 ring->rx_stats.csum_err++;
1544                 return;
1545         }
1546
1547         if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
1548                 return;
1549
1550         if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
1551                 /*
1552                  * 82599 errata, UDP frames with a 0 checksum can be marked as
1553                  * checksum errors.
1554                  */
1555                 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1556                     test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
1557                         return;
1558
1559                 ring->rx_stats.csum_err++;
1560                 return;
1561         }
1562
1563         /* It must be a TCP or UDP packet with a valid checksum */
1564         skb->ip_summed = CHECKSUM_UNNECESSARY;
1565         if (encap_pkt) {
1566                 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_OUTERIPCS))
1567                         return;
1568
1569                 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_OUTERIPER)) {
1570                         skb->ip_summed = CHECKSUM_NONE;
1571                         return;
1572                 }
1573                 /* If we checked the outer header let the stack know */
1574                 skb->csum_level = 1;
1575         }
1576 }
1577
1578 static inline unsigned int ixgbe_rx_offset(struct ixgbe_ring *rx_ring)
1579 {
1580         return ring_uses_build_skb(rx_ring) ? IXGBE_SKB_PAD : 0;
1581 }
1582
1583 static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1584                                     struct ixgbe_rx_buffer *bi)
1585 {
1586         struct page *page = bi->page;
1587         dma_addr_t dma;
1588
1589         /* since we are recycling buffers we should seldom need to alloc */
1590         if (likely(page))
1591                 return true;
1592
1593         /* alloc new page for storage */
1594         page = dev_alloc_pages(ixgbe_rx_pg_order(rx_ring));
1595         if (unlikely(!page)) {
1596                 rx_ring->rx_stats.alloc_rx_page_failed++;
1597                 return false;
1598         }
1599
1600         /* map page for use */
1601         dma = dma_map_page_attrs(rx_ring->dev, page, 0,
1602                                  ixgbe_rx_pg_size(rx_ring),
1603                                  DMA_FROM_DEVICE,
1604                                  IXGBE_RX_DMA_ATTR);
1605
1606         /*
1607          * if mapping failed free memory back to system since
1608          * there isn't much point in holding memory we can't use
1609          */
1610         if (dma_mapping_error(rx_ring->dev, dma)) {
1611                 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
1612
1613                 rx_ring->rx_stats.alloc_rx_page_failed++;
1614                 return false;
1615         }
1616
1617         bi->dma = dma;
1618         bi->page = page;
1619         bi->page_offset = ixgbe_rx_offset(rx_ring);
1620         bi->pagecnt_bias = 1;
1621         rx_ring->rx_stats.alloc_rx_page++;
1622
1623         return true;
1624 }
1625
1626 /**
1627  * ixgbe_alloc_rx_buffers - Replace used receive buffers
1628  * @rx_ring: ring to place buffers on
1629  * @cleaned_count: number of buffers to replace
1630  **/
1631 void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
1632 {
1633         union ixgbe_adv_rx_desc *rx_desc;
1634         struct ixgbe_rx_buffer *bi;
1635         u16 i = rx_ring->next_to_use;
1636         u16 bufsz;
1637
1638         /* nothing to do */
1639         if (!cleaned_count)
1640                 return;
1641
1642         rx_desc = IXGBE_RX_DESC(rx_ring, i);
1643         bi = &rx_ring->rx_buffer_info[i];
1644         i -= rx_ring->count;
1645
1646         bufsz = ixgbe_rx_bufsz(rx_ring);
1647
1648         do {
1649                 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
1650                         break;
1651
1652                 /* sync the buffer for use by the device */
1653                 dma_sync_single_range_for_device(rx_ring->dev, bi->dma,
1654                                                  bi->page_offset, bufsz,
1655                                                  DMA_FROM_DEVICE);
1656
1657                 /*
1658                  * Refresh the desc even if buffer_addrs didn't change
1659                  * because each write-back erases this info.
1660                  */
1661                 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
1662
1663                 rx_desc++;
1664                 bi++;
1665                 i++;
1666                 if (unlikely(!i)) {
1667                         rx_desc = IXGBE_RX_DESC(rx_ring, 0);
1668                         bi = rx_ring->rx_buffer_info;
1669                         i -= rx_ring->count;
1670                 }
1671
1672                 /* clear the length for the next_to_use descriptor */
1673                 rx_desc->wb.upper.length = 0;
1674
1675                 cleaned_count--;
1676         } while (cleaned_count);
1677
1678         i += rx_ring->count;
1679
1680         if (rx_ring->next_to_use != i) {
1681                 rx_ring->next_to_use = i;
1682
1683                 /* update next to alloc since we have filled the ring */
1684                 rx_ring->next_to_alloc = i;
1685
1686                 /* Force memory writes to complete before letting h/w
1687                  * know there are new descriptors to fetch.  (Only
1688                  * applicable for weak-ordered memory model archs,
1689                  * such as IA-64).
1690                  */
1691                 wmb();
1692                 writel(i, rx_ring->tail);
1693         }
1694 }
1695
1696 static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1697                                    struct sk_buff *skb)
1698 {
1699         u16 hdr_len = skb_headlen(skb);
1700
1701         /* set gso_size to avoid messing up TCP MSS */
1702         skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1703                                                  IXGBE_CB(skb)->append_cnt);
1704         skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1705 }
1706
1707 static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1708                                    struct sk_buff *skb)
1709 {
1710         /* if append_cnt is 0 then frame is not RSC */
1711         if (!IXGBE_CB(skb)->append_cnt)
1712                 return;
1713
1714         rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1715         rx_ring->rx_stats.rsc_flush++;
1716
1717         ixgbe_set_rsc_gso_size(rx_ring, skb);
1718
1719         /* gso_size is computed using append_cnt so always clear it last */
1720         IXGBE_CB(skb)->append_cnt = 0;
1721 }
1722
1723 /**
1724  * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1725  * @rx_ring: rx descriptor ring packet is being transacted on
1726  * @rx_desc: pointer to the EOP Rx descriptor
1727  * @skb: pointer to current skb being populated
1728  *
1729  * This function checks the ring, descriptor, and packet information in
1730  * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1731  * other fields within the skb.
1732  **/
1733 static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1734                                      union ixgbe_adv_rx_desc *rx_desc,
1735                                      struct sk_buff *skb)
1736 {
1737         struct net_device *dev = rx_ring->netdev;
1738         u32 flags = rx_ring->q_vector->adapter->flags;
1739
1740         ixgbe_update_rsc_stats(rx_ring, skb);
1741
1742         ixgbe_rx_hash(rx_ring, rx_desc, skb);
1743
1744         ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1745
1746         if (unlikely(flags & IXGBE_FLAG_RX_HWTSTAMP_ENABLED))
1747                 ixgbe_ptp_rx_hwtstamp(rx_ring, rx_desc, skb);
1748
1749         if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
1750             ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
1751                 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1752                 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
1753         }
1754
1755         skb->protocol = eth_type_trans(skb, dev);
1756
1757         /* record Rx queue, or update MACVLAN statistics */
1758         if (netif_is_ixgbe(dev))
1759                 skb_record_rx_queue(skb, rx_ring->queue_index);
1760         else
1761                 macvlan_count_rx(netdev_priv(dev), skb->len + ETH_HLEN, true,
1762                                  (skb->pkt_type == PACKET_BROADCAST) ||
1763                                  (skb->pkt_type == PACKET_MULTICAST));
1764 }
1765
1766 static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1767                          struct sk_buff *skb)
1768 {
1769         napi_gro_receive(&q_vector->napi, skb);
1770 }
1771
1772 /**
1773  * ixgbe_is_non_eop - process handling of non-EOP buffers
1774  * @rx_ring: Rx ring being processed
1775  * @rx_desc: Rx descriptor for current buffer
1776  * @skb: Current socket buffer containing buffer in progress
1777  *
1778  * This function updates next to clean.  If the buffer is an EOP buffer
1779  * this function exits returning false, otherwise it will place the
1780  * sk_buff in the next buffer to be chained and return true indicating
1781  * that this is in fact a non-EOP buffer.
1782  **/
1783 static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1784                              union ixgbe_adv_rx_desc *rx_desc,
1785                              struct sk_buff *skb)
1786 {
1787         u32 ntc = rx_ring->next_to_clean + 1;
1788
1789         /* fetch, update, and store next to clean */
1790         ntc = (ntc < rx_ring->count) ? ntc : 0;
1791         rx_ring->next_to_clean = ntc;
1792
1793         prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1794
1795         /* update RSC append count if present */
1796         if (ring_is_rsc_enabled(rx_ring)) {
1797                 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1798                                      cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1799
1800                 if (unlikely(rsc_enabled)) {
1801                         u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1802
1803                         rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1804                         IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1805
1806                         /* update ntc based on RSC value */
1807                         ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1808                         ntc &= IXGBE_RXDADV_NEXTP_MASK;
1809                         ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1810                 }
1811         }
1812
1813         /* if we are the last buffer then there is nothing else to do */
1814         if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1815                 return false;
1816
1817         /* place skb in next buffer to be received */
1818         rx_ring->rx_buffer_info[ntc].skb = skb;
1819         rx_ring->rx_stats.non_eop_descs++;
1820
1821         return true;
1822 }
1823
1824 /**
1825  * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1826  * @rx_ring: rx descriptor ring packet is being transacted on
1827  * @skb: pointer to current skb being adjusted
1828  *
1829  * This function is an ixgbe specific version of __pskb_pull_tail.  The
1830  * main difference between this version and the original function is that
1831  * this function can make several assumptions about the state of things
1832  * that allow for significant optimizations versus the standard function.
1833  * As a result we can do things like drop a frag and maintain an accurate
1834  * truesize for the skb.
1835  */
1836 static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1837                             struct sk_buff *skb)
1838 {
1839         struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1840         unsigned char *va;
1841         unsigned int pull_len;
1842
1843         /*
1844          * it is valid to use page_address instead of kmap since we are
1845          * working with pages allocated out of the lomem pool per
1846          * alloc_page(GFP_ATOMIC)
1847          */
1848         va = skb_frag_address(frag);
1849
1850         /*
1851          * we need the header to contain the greater of either ETH_HLEN or
1852          * 60 bytes if the skb->len is less than 60 for skb_pad.
1853          */
1854         pull_len = eth_get_headlen(va, IXGBE_RX_HDR_SIZE);
1855
1856         /* align pull length to size of long to optimize memcpy performance */
1857         skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1858
1859         /* update all of the pointers */
1860         skb_frag_size_sub(frag, pull_len);
1861         frag->page_offset += pull_len;
1862         skb->data_len -= pull_len;
1863         skb->tail += pull_len;
1864 }
1865
1866 /**
1867  * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1868  * @rx_ring: rx descriptor ring packet is being transacted on
1869  * @skb: pointer to current skb being updated
1870  *
1871  * This function provides a basic DMA sync up for the first fragment of an
1872  * skb.  The reason for doing this is that the first fragment cannot be
1873  * unmapped until we have reached the end of packet descriptor for a buffer
1874  * chain.
1875  */
1876 static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1877                                 struct sk_buff *skb)
1878 {
1879         /* if the page was released unmap it, else just sync our portion */
1880         if (unlikely(IXGBE_CB(skb)->page_released)) {
1881                 dma_unmap_page_attrs(rx_ring->dev, IXGBE_CB(skb)->dma,
1882                                      ixgbe_rx_pg_size(rx_ring),
1883                                      DMA_FROM_DEVICE,
1884                                      IXGBE_RX_DMA_ATTR);
1885         } else {
1886                 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1887
1888                 dma_sync_single_range_for_cpu(rx_ring->dev,
1889                                               IXGBE_CB(skb)->dma,
1890                                               frag->page_offset,
1891                                               skb_frag_size(frag),
1892                                               DMA_FROM_DEVICE);
1893         }
1894 }
1895
1896 /**
1897  * ixgbe_cleanup_headers - Correct corrupted or empty headers
1898  * @rx_ring: rx descriptor ring packet is being transacted on
1899  * @rx_desc: pointer to the EOP Rx descriptor
1900  * @skb: pointer to current skb being fixed
1901  *
1902  * Check if the skb is valid in the XDP case it will be an error pointer.
1903  * Return true in this case to abort processing and advance to next
1904  * descriptor.
1905  *
1906  * Check for corrupted packet headers caused by senders on the local L2
1907  * embedded NIC switch not setting up their Tx Descriptors right.  These
1908  * should be very rare.
1909  *
1910  * Also address the case where we are pulling data in on pages only
1911  * and as such no data is present in the skb header.
1912  *
1913  * In addition if skb is not at least 60 bytes we need to pad it so that
1914  * it is large enough to qualify as a valid Ethernet frame.
1915  *
1916  * Returns true if an error was encountered and skb was freed.
1917  **/
1918 static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1919                                   union ixgbe_adv_rx_desc *rx_desc,
1920                                   struct sk_buff *skb)
1921 {
1922         struct net_device *netdev = rx_ring->netdev;
1923
1924         /* XDP packets use error pointer so abort at this point */
1925         if (IS_ERR(skb))
1926                 return true;
1927
1928         /* Verify netdev is present, and that packet does not have any
1929          * errors that would be unacceptable to the netdev.
1930          */
1931         if (!netdev ||
1932             (unlikely(ixgbe_test_staterr(rx_desc,
1933                                          IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1934              !(netdev->features & NETIF_F_RXALL)))) {
1935                 dev_kfree_skb_any(skb);
1936                 return true;
1937         }
1938
1939         /* place header in linear portion of buffer */
1940         if (!skb_headlen(skb))
1941                 ixgbe_pull_tail(rx_ring, skb);
1942
1943 #ifdef IXGBE_FCOE
1944         /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1945         if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1946                 return false;
1947
1948 #endif
1949         /* if eth_skb_pad returns an error the skb was freed */
1950         if (eth_skb_pad(skb))
1951                 return true;
1952
1953         return false;
1954 }
1955
1956 /**
1957  * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1958  * @rx_ring: rx descriptor ring to store buffers on
1959  * @old_buff: donor buffer to have page reused
1960  *
1961  * Synchronizes page for reuse by the adapter
1962  **/
1963 static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1964                                 struct ixgbe_rx_buffer *old_buff)
1965 {
1966         struct ixgbe_rx_buffer *new_buff;
1967         u16 nta = rx_ring->next_to_alloc;
1968
1969         new_buff = &rx_ring->rx_buffer_info[nta];
1970
1971         /* update, and store next to alloc */
1972         nta++;
1973         rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1974
1975         /* Transfer page from old buffer to new buffer.
1976          * Move each member individually to avoid possible store
1977          * forwarding stalls and unnecessary copy of skb.
1978          */
1979         new_buff->dma           = old_buff->dma;
1980         new_buff->page          = old_buff->page;
1981         new_buff->page_offset   = old_buff->page_offset;
1982         new_buff->pagecnt_bias  = old_buff->pagecnt_bias;
1983 }
1984
1985 static inline bool ixgbe_page_is_reserved(struct page *page)
1986 {
1987         return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page);
1988 }
1989
1990 static bool ixgbe_can_reuse_rx_page(struct ixgbe_rx_buffer *rx_buffer)
1991 {
1992         unsigned int pagecnt_bias = rx_buffer->pagecnt_bias;
1993         struct page *page = rx_buffer->page;
1994
1995         /* avoid re-using remote pages */
1996         if (unlikely(ixgbe_page_is_reserved(page)))
1997                 return false;
1998
1999 #if (PAGE_SIZE < 8192)
2000         /* if we are only owner of page we can reuse it */
2001         if (unlikely((page_ref_count(page) - pagecnt_bias) > 1))
2002                 return false;
2003 #else
2004         /* The last offset is a bit aggressive in that we assume the
2005          * worst case of FCoE being enabled and using a 3K buffer.
2006          * However this should have minimal impact as the 1K extra is
2007          * still less than one buffer in size.
2008          */
2009 #define IXGBE_LAST_OFFSET \
2010         (SKB_WITH_OVERHEAD(PAGE_SIZE) - IXGBE_RXBUFFER_3K)
2011         if (rx_buffer->page_offset > IXGBE_LAST_OFFSET)
2012                 return false;
2013 #endif
2014
2015         /* If we have drained the page fragment pool we need to update
2016          * the pagecnt_bias and page count so that we fully restock the
2017          * number of references the driver holds.
2018          */
2019         if (unlikely(!pagecnt_bias)) {
2020                 page_ref_add(page, USHRT_MAX);
2021                 rx_buffer->pagecnt_bias = USHRT_MAX;
2022         }
2023
2024         return true;
2025 }
2026
2027 /**
2028  * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
2029  * @rx_ring: rx descriptor ring to transact packets on
2030  * @rx_buffer: buffer containing page to add
2031  * @skb: sk_buff to place the data into
2032  * @size: size of data in rx_buffer
2033  *
2034  * This function will add the data contained in rx_buffer->page to the skb.
2035  * This is done either through a direct copy if the data in the buffer is
2036  * less than the skb header size, otherwise it will just attach the page as
2037  * a frag to the skb.
2038  *
2039  * The function will then update the page offset if necessary and return
2040  * true if the buffer can be reused by the adapter.
2041  **/
2042 static void ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
2043                               struct ixgbe_rx_buffer *rx_buffer,
2044                               struct sk_buff *skb,
2045                               unsigned int size)
2046 {
2047 #if (PAGE_SIZE < 8192)
2048         unsigned int truesize = ixgbe_rx_pg_size(rx_ring) / 2;
2049 #else
2050         unsigned int truesize = ring_uses_build_skb(rx_ring) ?
2051                                 SKB_DATA_ALIGN(IXGBE_SKB_PAD + size) :
2052                                 SKB_DATA_ALIGN(size);
2053 #endif
2054         skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buffer->page,
2055                         rx_buffer->page_offset, size, truesize);
2056 #if (PAGE_SIZE < 8192)
2057         rx_buffer->page_offset ^= truesize;
2058 #else
2059         rx_buffer->page_offset += truesize;
2060 #endif
2061 }
2062
2063 static struct ixgbe_rx_buffer *ixgbe_get_rx_buffer(struct ixgbe_ring *rx_ring,
2064                                                    union ixgbe_adv_rx_desc *rx_desc,
2065                                                    struct sk_buff **skb,
2066                                                    const unsigned int size)
2067 {
2068         struct ixgbe_rx_buffer *rx_buffer;
2069
2070         rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
2071         prefetchw(rx_buffer->page);
2072         *skb = rx_buffer->skb;
2073
2074         /* Delay unmapping of the first packet. It carries the header
2075          * information, HW may still access the header after the writeback.
2076          * Only unmap it when EOP is reached
2077          */
2078         if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)) {
2079                 if (!*skb)
2080                         goto skip_sync;
2081         } else {
2082                 if (*skb)
2083                         ixgbe_dma_sync_frag(rx_ring, *skb);
2084         }
2085
2086         /* we are reusing so sync this buffer for CPU use */
2087         dma_sync_single_range_for_cpu(rx_ring->dev,
2088                                       rx_buffer->dma,
2089                                       rx_buffer->page_offset,
2090                                       size,
2091                                       DMA_FROM_DEVICE);
2092 skip_sync:
2093         rx_buffer->pagecnt_bias--;
2094
2095         return rx_buffer;
2096 }
2097
2098 static void ixgbe_put_rx_buffer(struct ixgbe_ring *rx_ring,
2099                                 struct ixgbe_rx_buffer *rx_buffer,
2100                                 struct sk_buff *skb)
2101 {
2102         if (ixgbe_can_reuse_rx_page(rx_buffer)) {
2103                 /* hand second half of page back to the ring */
2104                 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
2105         } else {
2106                 if (!IS_ERR(skb) && IXGBE_CB(skb)->dma == rx_buffer->dma) {
2107                         /* the page has been released from the ring */
2108                         IXGBE_CB(skb)->page_released = true;
2109                 } else {
2110                         /* we are not reusing the buffer so unmap it */
2111                         dma_unmap_page_attrs(rx_ring->dev, rx_buffer->dma,
2112                                              ixgbe_rx_pg_size(rx_ring),
2113                                              DMA_FROM_DEVICE,
2114                                              IXGBE_RX_DMA_ATTR);
2115                 }
2116                 __page_frag_cache_drain(rx_buffer->page,
2117                                         rx_buffer->pagecnt_bias);
2118         }
2119
2120         /* clear contents of rx_buffer */
2121         rx_buffer->page = NULL;
2122         rx_buffer->skb = NULL;
2123 }
2124
2125 static struct sk_buff *ixgbe_construct_skb(struct ixgbe_ring *rx_ring,
2126                                            struct ixgbe_rx_buffer *rx_buffer,
2127                                            struct xdp_buff *xdp,
2128                                            union ixgbe_adv_rx_desc *rx_desc)
2129 {
2130         unsigned int size = xdp->data_end - xdp->data;
2131 #if (PAGE_SIZE < 8192)
2132         unsigned int truesize = ixgbe_rx_pg_size(rx_ring) / 2;
2133 #else
2134         unsigned int truesize = SKB_DATA_ALIGN(xdp->data_end -
2135                                                xdp->data_hard_start);
2136 #endif
2137         struct sk_buff *skb;
2138
2139         /* prefetch first cache line of first page */
2140         prefetch(xdp->data);
2141 #if L1_CACHE_BYTES < 128
2142         prefetch(xdp->data + L1_CACHE_BYTES);
2143 #endif
2144         /* Note, we get here by enabling legacy-rx via:
2145          *
2146          *    ethtool --set-priv-flags <dev> legacy-rx on
2147          *
2148          * In this mode, we currently get 0 extra XDP headroom as
2149          * opposed to having legacy-rx off, where we process XDP
2150          * packets going to stack via ixgbe_build_skb(). The latter
2151          * provides us currently with 192 bytes of headroom.
2152          *
2153          * For ixgbe_construct_skb() mode it means that the
2154          * xdp->data_meta will always point to xdp->data, since
2155          * the helper cannot expand the head. Should this ever
2156          * change in future for legacy-rx mode on, then lets also
2157          * add xdp->data_meta handling here.
2158          */
2159
2160         /* allocate a skb to store the frags */
2161         skb = napi_alloc_skb(&rx_ring->q_vector->napi, IXGBE_RX_HDR_SIZE);
2162         if (unlikely(!skb))
2163                 return NULL;
2164
2165         if (size > IXGBE_RX_HDR_SIZE) {
2166                 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
2167                         IXGBE_CB(skb)->dma = rx_buffer->dma;
2168
2169                 skb_add_rx_frag(skb, 0, rx_buffer->page,
2170                                 xdp->data - page_address(rx_buffer->page),
2171                                 size, truesize);
2172 #if (PAGE_SIZE < 8192)
2173                 rx_buffer->page_offset ^= truesize;
2174 #else
2175                 rx_buffer->page_offset += truesize;
2176 #endif
2177         } else {
2178                 memcpy(__skb_put(skb, size),
2179                        xdp->data, ALIGN(size, sizeof(long)));
2180                 rx_buffer->pagecnt_bias++;
2181         }
2182
2183         return skb;
2184 }
2185
2186 static struct sk_buff *ixgbe_build_skb(struct ixgbe_ring *rx_ring,
2187                                        struct ixgbe_rx_buffer *rx_buffer,
2188                                        struct xdp_buff *xdp,
2189                                        union ixgbe_adv_rx_desc *rx_desc)
2190 {
2191         unsigned int metasize = xdp->data - xdp->data_meta;
2192 #if (PAGE_SIZE < 8192)
2193         unsigned int truesize = ixgbe_rx_pg_size(rx_ring) / 2;
2194 #else
2195         unsigned int truesize = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) +
2196                                 SKB_DATA_ALIGN(xdp->data_end -
2197                                                xdp->data_hard_start);
2198 #endif
2199         struct sk_buff *skb;
2200
2201         /* Prefetch first cache line of first page. If xdp->data_meta
2202          * is unused, this points extactly as xdp->data, otherwise we
2203          * likely have a consumer accessing first few bytes of meta
2204          * data, and then actual data.
2205          */
2206         prefetch(xdp->data_meta);
2207 #if L1_CACHE_BYTES < 128
2208         prefetch(xdp->data_meta + L1_CACHE_BYTES);
2209 #endif
2210
2211         /* build an skb to around the page buffer */
2212         skb = build_skb(xdp->data_hard_start, truesize);
2213         if (unlikely(!skb))
2214                 return NULL;
2215
2216         /* update pointers within the skb to store the data */
2217         skb_reserve(skb, xdp->data - xdp->data_hard_start);
2218         __skb_put(skb, xdp->data_end - xdp->data);
2219         if (metasize)
2220                 skb_metadata_set(skb, metasize);
2221
2222         /* record DMA address if this is the start of a chain of buffers */
2223         if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
2224                 IXGBE_CB(skb)->dma = rx_buffer->dma;
2225
2226         /* update buffer offset */
2227 #if (PAGE_SIZE < 8192)
2228         rx_buffer->page_offset ^= truesize;
2229 #else
2230         rx_buffer->page_offset += truesize;
2231 #endif
2232
2233         return skb;
2234 }
2235
2236 #define IXGBE_XDP_PASS 0
2237 #define IXGBE_XDP_CONSUMED 1
2238 #define IXGBE_XDP_TX 2
2239
2240 static int ixgbe_xmit_xdp_ring(struct ixgbe_adapter *adapter,
2241                                struct xdp_buff *xdp);
2242
2243 static struct sk_buff *ixgbe_run_xdp(struct ixgbe_adapter *adapter,
2244                                      struct ixgbe_ring *rx_ring,
2245                                      struct xdp_buff *xdp)
2246 {
2247         int err, result = IXGBE_XDP_PASS;
2248         struct bpf_prog *xdp_prog;
2249         u32 act;
2250
2251         rcu_read_lock();
2252         xdp_prog = READ_ONCE(rx_ring->xdp_prog);
2253
2254         if (!xdp_prog)
2255                 goto xdp_out;
2256
2257         act = bpf_prog_run_xdp(xdp_prog, xdp);
2258         switch (act) {
2259         case XDP_PASS:
2260                 break;
2261         case XDP_TX:
2262                 result = ixgbe_xmit_xdp_ring(adapter, xdp);
2263                 break;
2264         case XDP_REDIRECT:
2265                 err = xdp_do_redirect(adapter->netdev, xdp, xdp_prog);
2266                 if (!err)
2267                         result = IXGBE_XDP_TX;
2268                 else
2269                         result = IXGBE_XDP_CONSUMED;
2270                 break;
2271         default:
2272                 bpf_warn_invalid_xdp_action(act);
2273                 /* fallthrough */
2274         case XDP_ABORTED:
2275                 trace_xdp_exception(rx_ring->netdev, xdp_prog, act);
2276                 /* fallthrough -- handle aborts by dropping packet */
2277         case XDP_DROP:
2278                 result = IXGBE_XDP_CONSUMED;
2279                 break;
2280         }
2281 xdp_out:
2282         rcu_read_unlock();
2283         return ERR_PTR(-result);
2284 }
2285
2286 static void ixgbe_rx_buffer_flip(struct ixgbe_ring *rx_ring,
2287                                  struct ixgbe_rx_buffer *rx_buffer,
2288                                  unsigned int size)
2289 {
2290 #if (PAGE_SIZE < 8192)
2291         unsigned int truesize = ixgbe_rx_pg_size(rx_ring) / 2;
2292
2293         rx_buffer->page_offset ^= truesize;
2294 #else
2295         unsigned int truesize = ring_uses_build_skb(rx_ring) ?
2296                                 SKB_DATA_ALIGN(IXGBE_SKB_PAD + size) :
2297                                 SKB_DATA_ALIGN(size);
2298
2299         rx_buffer->page_offset += truesize;
2300 #endif
2301 }
2302
2303 /**
2304  * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
2305  * @q_vector: structure containing interrupt and ring information
2306  * @rx_ring: rx descriptor ring to transact packets on
2307  * @budget: Total limit on number of packets to process
2308  *
2309  * This function provides a "bounce buffer" approach to Rx interrupt
2310  * processing.  The advantage to this is that on systems that have
2311  * expensive overhead for IOMMU access this provides a means of avoiding
2312  * it by maintaining the mapping of the page to the syste.
2313  *
2314  * Returns amount of work completed
2315  **/
2316 static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
2317                                struct ixgbe_ring *rx_ring,
2318                                const int budget)
2319 {
2320         unsigned int total_rx_bytes = 0, total_rx_packets = 0;
2321         struct ixgbe_adapter *adapter = q_vector->adapter;
2322 #ifdef IXGBE_FCOE
2323         int ddp_bytes;
2324         unsigned int mss = 0;
2325 #endif /* IXGBE_FCOE */
2326         u16 cleaned_count = ixgbe_desc_unused(rx_ring);
2327         bool xdp_xmit = false;
2328         struct xdp_buff xdp;
2329
2330         xdp.rxq = &rx_ring->xdp_rxq;
2331
2332         while (likely(total_rx_packets < budget)) {
2333                 union ixgbe_adv_rx_desc *rx_desc;
2334                 struct ixgbe_rx_buffer *rx_buffer;
2335                 struct sk_buff *skb;
2336                 unsigned int size;
2337
2338                 /* return some buffers to hardware, one at a time is too slow */
2339                 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
2340                         ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
2341                         cleaned_count = 0;
2342                 }
2343
2344                 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
2345                 size = le16_to_cpu(rx_desc->wb.upper.length);
2346                 if (!size)
2347                         break;
2348
2349                 /* This memory barrier is needed to keep us from reading
2350                  * any other fields out of the rx_desc until we know the
2351                  * descriptor has been written back
2352                  */
2353                 dma_rmb();
2354
2355                 rx_buffer = ixgbe_get_rx_buffer(rx_ring, rx_desc, &skb, size);
2356
2357                 /* retrieve a buffer from the ring */
2358                 if (!skb) {
2359                         xdp.data = page_address(rx_buffer->page) +
2360                                    rx_buffer->page_offset;
2361                         xdp.data_meta = xdp.data;
2362                         xdp.data_hard_start = xdp.data -
2363                                               ixgbe_rx_offset(rx_ring);
2364                         xdp.data_end = xdp.data + size;
2365
2366                         skb = ixgbe_run_xdp(adapter, rx_ring, &xdp);
2367                 }
2368
2369                 if (IS_ERR(skb)) {
2370                         if (PTR_ERR(skb) == -IXGBE_XDP_TX) {
2371                                 xdp_xmit = true;
2372                                 ixgbe_rx_buffer_flip(rx_ring, rx_buffer, size);
2373                         } else {
2374                                 rx_buffer->pagecnt_bias++;
2375                         }
2376                         total_rx_packets++;
2377                         total_rx_bytes += size;
2378                 } else if (skb) {
2379                         ixgbe_add_rx_frag(rx_ring, rx_buffer, skb, size);
2380                 } else if (ring_uses_build_skb(rx_ring)) {
2381                         skb = ixgbe_build_skb(rx_ring, rx_buffer,
2382                                               &xdp, rx_desc);
2383                 } else {
2384                         skb = ixgbe_construct_skb(rx_ring, rx_buffer,
2385                                                   &xdp, rx_desc);
2386                 }
2387
2388                 /* exit if we failed to retrieve a buffer */
2389                 if (!skb) {
2390                         rx_ring->rx_stats.alloc_rx_buff_failed++;
2391                         rx_buffer->pagecnt_bias++;
2392                         break;
2393                 }
2394
2395                 ixgbe_put_rx_buffer(rx_ring, rx_buffer, skb);
2396                 cleaned_count++;
2397
2398                 /* place incomplete frames back on ring for completion */
2399                 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
2400                         continue;
2401
2402                 /* verify the packet layout is correct */
2403                 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
2404                         continue;
2405
2406                 /* probably a little skewed due to removing CRC */
2407                 total_rx_bytes += skb->len;
2408
2409                 /* populate checksum, timestamp, VLAN, and protocol */
2410                 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
2411
2412 #ifdef IXGBE_FCOE
2413                 /* if ddp, not passing to ULD unless for FCP_RSP or error */
2414                 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
2415                         ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
2416                         /* include DDPed FCoE data */
2417                         if (ddp_bytes > 0) {
2418                                 if (!mss) {
2419                                         mss = rx_ring->netdev->mtu -
2420                                                 sizeof(struct fcoe_hdr) -
2421                                                 sizeof(struct fc_frame_header) -
2422                                                 sizeof(struct fcoe_crc_eof);
2423                                         if (mss > 512)
2424                                                 mss &= ~511;
2425                                 }
2426                                 total_rx_bytes += ddp_bytes;
2427                                 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
2428                                                                  mss);
2429                         }
2430                         if (!ddp_bytes) {
2431                                 dev_kfree_skb_any(skb);
2432                                 continue;
2433                         }
2434                 }
2435
2436 #endif /* IXGBE_FCOE */
2437                 ixgbe_rx_skb(q_vector, skb);
2438
2439                 /* update budget accounting */
2440                 total_rx_packets++;
2441         }
2442
2443         if (xdp_xmit) {
2444                 struct ixgbe_ring *ring = adapter->xdp_ring[smp_processor_id()];
2445
2446                 /* Force memory writes to complete before letting h/w
2447                  * know there are new descriptors to fetch.
2448                  */
2449                 wmb();
2450                 writel(ring->next_to_use, ring->tail);
2451
2452                 xdp_do_flush_map();
2453         }
2454
2455         u64_stats_update_begin(&rx_ring->syncp);
2456         rx_ring->stats.packets += total_rx_packets;
2457         rx_ring->stats.bytes += total_rx_bytes;
2458         u64_stats_update_end(&rx_ring->syncp);
2459         q_vector->rx.total_packets += total_rx_packets;
2460         q_vector->rx.total_bytes += total_rx_bytes;
2461
2462         return total_rx_packets;
2463 }
2464
2465 /**
2466  * ixgbe_configure_msix - Configure MSI-X hardware
2467  * @adapter: board private structure
2468  *
2469  * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
2470  * interrupts.
2471  **/
2472 static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
2473 {
2474         struct ixgbe_q_vector *q_vector;
2475         int v_idx;
2476         u32 mask;
2477
2478         /* Populate MSIX to EITR Select */
2479         if (adapter->num_vfs > 32) {
2480                 u32 eitrsel = BIT(adapter->num_vfs - 32) - 1;
2481                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2482         }
2483
2484         /*
2485          * Populate the IVAR table and set the ITR values to the
2486          * corresponding register.
2487          */
2488         for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
2489                 struct ixgbe_ring *ring;
2490                 q_vector = adapter->q_vector[v_idx];
2491
2492                 ixgbe_for_each_ring(ring, q_vector->rx)
2493                         ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
2494
2495                 ixgbe_for_each_ring(ring, q_vector->tx)
2496                         ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
2497
2498                 ixgbe_write_eitr(q_vector);
2499         }
2500
2501         switch (adapter->hw.mac.type) {
2502         case ixgbe_mac_82598EB:
2503                 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
2504                                v_idx);
2505                 break;
2506         case ixgbe_mac_82599EB:
2507         case ixgbe_mac_X540:
2508         case ixgbe_mac_X550:
2509         case ixgbe_mac_X550EM_x:
2510         case ixgbe_mac_x550em_a:
2511                 ixgbe_set_ivar(adapter, -1, 1, v_idx);
2512                 break;
2513         default:
2514                 break;
2515         }
2516         IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
2517
2518         /* set up to autoclear timer, and the vectors */
2519         mask = IXGBE_EIMS_ENABLE_MASK;
2520         mask &= ~(IXGBE_EIMS_OTHER |
2521                   IXGBE_EIMS_MAILBOX |
2522                   IXGBE_EIMS_LSC);
2523
2524         IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
2525 }
2526
2527 /**
2528  * ixgbe_update_itr - update the dynamic ITR value based on statistics
2529  * @q_vector: structure containing interrupt and ring information
2530  * @ring_container: structure containing ring performance data
2531  *
2532  *      Stores a new ITR value based on packets and byte
2533  *      counts during the last interrupt.  The advantage of per interrupt
2534  *      computation is faster updates and more accurate ITR for the current
2535  *      traffic pattern.  Constants in this function were computed
2536  *      based on theoretical maximum wire speed and thresholds were set based
2537  *      on testing data as well as attempting to minimize response time
2538  *      while increasing bulk throughput.
2539  **/
2540 static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
2541                              struct ixgbe_ring_container *ring_container)
2542 {
2543         unsigned int itr = IXGBE_ITR_ADAPTIVE_MIN_USECS |
2544                            IXGBE_ITR_ADAPTIVE_LATENCY;
2545         unsigned int avg_wire_size, packets, bytes;
2546         unsigned long next_update = jiffies;
2547
2548         /* If we don't have any rings just leave ourselves set for maximum
2549          * possible latency so we take ourselves out of the equation.
2550          */
2551         if (!ring_container->ring)
2552                 return;
2553
2554         /* If we didn't update within up to 1 - 2 jiffies we can assume
2555          * that either packets are coming in so slow there hasn't been
2556          * any work, or that there is so much work that NAPI is dealing
2557          * with interrupt moderation and we don't need to do anything.
2558          */
2559         if (time_after(next_update, ring_container->next_update))
2560                 goto clear_counts;
2561
2562         packets = ring_container->total_packets;
2563
2564         /* We have no packets to actually measure against. This means
2565          * either one of the other queues on this vector is active or
2566          * we are a Tx queue doing TSO with too high of an interrupt rate.
2567          *
2568          * When this occurs just tick up our delay by the minimum value
2569          * and hope that this extra delay will prevent us from being called
2570          * without any work on our queue.
2571          */
2572         if (!packets) {
2573                 itr = (q_vector->itr >> 2) + IXGBE_ITR_ADAPTIVE_MIN_INC;
2574                 if (itr > IXGBE_ITR_ADAPTIVE_MAX_USECS)
2575                         itr = IXGBE_ITR_ADAPTIVE_MAX_USECS;
2576                 itr += ring_container->itr & IXGBE_ITR_ADAPTIVE_LATENCY;
2577                 goto clear_counts;
2578         }
2579
2580         bytes = ring_container->total_bytes;
2581
2582         /* If packets are less than 4 or bytes are less than 9000 assume
2583          * insufficient data to use bulk rate limiting approach. We are
2584          * likely latency driven.
2585          */
2586         if (packets < 4 && bytes < 9000) {
2587                 itr = IXGBE_ITR_ADAPTIVE_LATENCY;
2588                 goto adjust_by_size;
2589         }
2590
2591         /* Between 4 and 48 we can assume that our current interrupt delay
2592          * is only slightly too low. As such we should increase it by a small
2593          * fixed amount.
2594          */
2595         if (packets < 48) {
2596                 itr = (q_vector->itr >> 2) + IXGBE_ITR_ADAPTIVE_MIN_INC;
2597                 if (itr > IXGBE_ITR_ADAPTIVE_MAX_USECS)
2598                         itr = IXGBE_ITR_ADAPTIVE_MAX_USECS;
2599                 goto clear_counts;
2600         }
2601
2602         /* Between 48 and 96 is our "goldilocks" zone where we are working
2603          * out "just right". Just report that our current ITR is good for us.
2604          */
2605         if (packets < 96) {
2606                 itr = q_vector->itr >> 2;
2607                 goto clear_counts;
2608         }
2609
2610         /* If packet count is 96 or greater we are likely looking at a slight
2611          * overrun of the delay we want. Try halving our delay to see if that
2612          * will cut the number of packets in half per interrupt.
2613          */
2614         if (packets < 256) {
2615                 itr = q_vector->itr >> 3;
2616                 if (itr < IXGBE_ITR_ADAPTIVE_MIN_USECS)
2617                         itr = IXGBE_ITR_ADAPTIVE_MIN_USECS;
2618                 goto clear_counts;
2619         }
2620
2621         /* The paths below assume we are dealing with a bulk ITR since number
2622          * of packets is 256 or greater. We are just going to have to compute
2623          * a value and try to bring the count under control, though for smaller
2624          * packet sizes there isn't much we can do as NAPI polling will likely
2625          * be kicking in sooner rather than later.
2626          */
2627         itr = IXGBE_ITR_ADAPTIVE_BULK;
2628
2629 adjust_by_size:
2630         /* If packet counts are 256 or greater we can assume we have a gross
2631          * overestimation of what the rate should be. Instead of trying to fine
2632          * tune it just use the formula below to try and dial in an exact value
2633          * give the current packet size of the frame.
2634          */
2635         avg_wire_size = bytes / packets;
2636
2637         /* The following is a crude approximation of:
2638          *  wmem_default / (size + overhead) = desired_pkts_per_int
2639          *  rate / bits_per_byte / (size + ethernet overhead) = pkt_rate
2640          *  (desired_pkt_rate / pkt_rate) * usecs_per_sec = ITR value
2641          *
2642          * Assuming wmem_default is 212992 and overhead is 640 bytes per
2643          * packet, (256 skb, 64 headroom, 320 shared info), we can reduce the
2644          * formula down to
2645          *
2646          *  (170 * (size + 24)) / (size + 640) = ITR
2647          *
2648          * We first do some math on the packet size and then finally bitshift
2649          * by 8 after rounding up. We also have to account for PCIe link speed
2650          * difference as ITR scales based on this.
2651          */
2652         if (avg_wire_size <= 60) {
2653                 /* Start at 50k ints/sec */
2654                 avg_wire_size = 5120;
2655         } else if (avg_wire_size <= 316) {
2656                 /* 50K ints/sec to 16K ints/sec */
2657                 avg_wire_size *= 40;
2658                 avg_wire_size += 2720;
2659         } else if (avg_wire_size <= 1084) {
2660                 /* 16K ints/sec to 9.2K ints/sec */
2661                 avg_wire_size *= 15;
2662                 avg_wire_size += 11452;
2663         } else if (avg_wire_size <= 1980) {
2664                 /* 9.2K ints/sec to 8K ints/sec */
2665                 avg_wire_size *= 5;
2666                 avg_wire_size += 22420;
2667         } else {
2668                 /* plateau at a limit of 8K ints/sec */
2669                 avg_wire_size = 32256;
2670         }
2671
2672         /* If we are in low latency mode half our delay which doubles the rate
2673          * to somewhere between 100K to 16K ints/sec
2674          */
2675         if (itr & IXGBE_ITR_ADAPTIVE_LATENCY)
2676                 avg_wire_size >>= 1;
2677
2678         /* Resultant value is 256 times larger than it needs to be. This
2679          * gives us room to adjust the value as needed to either increase
2680          * or decrease the value based on link speeds of 10G, 2.5G, 1G, etc.
2681          *
2682          * Use addition as we have already recorded the new latency flag
2683          * for the ITR value.
2684          */
2685         switch (q_vector->adapter->link_speed) {
2686         case IXGBE_LINK_SPEED_10GB_FULL:
2687         case IXGBE_LINK_SPEED_100_FULL:
2688         default:
2689                 itr += DIV_ROUND_UP(avg_wire_size,
2690                                     IXGBE_ITR_ADAPTIVE_MIN_INC * 256) *
2691                        IXGBE_ITR_ADAPTIVE_MIN_INC;
2692                 break;
2693         case IXGBE_LINK_SPEED_2_5GB_FULL:
2694         case IXGBE_LINK_SPEED_1GB_FULL:
2695         case IXGBE_LINK_SPEED_10_FULL:
2696                 itr += DIV_ROUND_UP(avg_wire_size,
2697                                     IXGBE_ITR_ADAPTIVE_MIN_INC * 64) *
2698                        IXGBE_ITR_ADAPTIVE_MIN_INC;
2699                 break;
2700         }
2701
2702 clear_counts:
2703         /* write back value */
2704         ring_container->itr = itr;
2705
2706         /* next update should occur within next jiffy */
2707         ring_container->next_update = next_update + 1;
2708
2709         ring_container->total_bytes = 0;
2710         ring_container->total_packets = 0;
2711 }
2712
2713 /**
2714  * ixgbe_write_eitr - write EITR register in hardware specific way
2715  * @q_vector: structure containing interrupt and ring information
2716  *
2717  * This function is made to be called by ethtool and by the driver
2718  * when it needs to update EITR registers at runtime.  Hardware
2719  * specific quirks/differences are taken care of here.
2720  */
2721 void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
2722 {
2723         struct ixgbe_adapter *adapter = q_vector->adapter;
2724         struct ixgbe_hw *hw = &adapter->hw;
2725         int v_idx = q_vector->v_idx;
2726         u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
2727
2728         switch (adapter->hw.mac.type) {
2729         case ixgbe_mac_82598EB:
2730                 /* must write high and low 16 bits to reset counter */
2731                 itr_reg |= (itr_reg << 16);
2732                 break;
2733         case ixgbe_mac_82599EB:
2734         case ixgbe_mac_X540:
2735         case ixgbe_mac_X550:
2736         case ixgbe_mac_X550EM_x:
2737         case ixgbe_mac_x550em_a:
2738                 /*
2739                  * set the WDIS bit to not clear the timer bits and cause an
2740                  * immediate assertion of the interrupt
2741                  */
2742                 itr_reg |= IXGBE_EITR_CNT_WDIS;
2743                 break;
2744         default:
2745                 break;
2746         }
2747         IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2748 }
2749
2750 static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
2751 {
2752         u32 new_itr;
2753
2754         ixgbe_update_itr(q_vector, &q_vector->tx);
2755         ixgbe_update_itr(q_vector, &q_vector->rx);
2756
2757         /* use the smallest value of new ITR delay calculations */
2758         new_itr = min(q_vector->rx.itr, q_vector->tx.itr);
2759
2760         /* Clear latency flag if set, shift into correct position */
2761         new_itr &= ~IXGBE_ITR_ADAPTIVE_LATENCY;
2762         new_itr <<= 2;
2763
2764         if (new_itr != q_vector->itr) {
2765                 /* save the algorithm value here */
2766                 q_vector->itr = new_itr;
2767
2768                 ixgbe_write_eitr(q_vector);
2769         }
2770 }
2771
2772 /**
2773  * ixgbe_check_overtemp_subtask - check for over temperature
2774  * @adapter: pointer to adapter
2775  **/
2776 static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
2777 {
2778         struct ixgbe_hw *hw = &adapter->hw;
2779         u32 eicr = adapter->interrupt_event;
2780         s32 rc;
2781
2782         if (test_bit(__IXGBE_DOWN, &adapter->state))
2783                 return;
2784
2785         if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2786                 return;
2787
2788         adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2789
2790         switch (hw->device_id) {
2791         case IXGBE_DEV_ID_82599_T3_LOM:
2792                 /*
2793                  * Since the warning interrupt is for both ports
2794                  * we don't have to check if:
2795                  *  - This interrupt wasn't for our port.
2796                  *  - We may have missed the interrupt so always have to
2797                  *    check if we  got a LSC
2798                  */
2799                 if (!(eicr & IXGBE_EICR_GPI_SDP0_8259X) &&
2800                     !(eicr & IXGBE_EICR_LSC))
2801                         return;
2802
2803                 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2804                         u32 speed;
2805                         bool link_up = false;
2806
2807                         hw->mac.ops.check_link(hw, &speed, &link_up, false);
2808
2809                         if (link_up)
2810                                 return;
2811                 }
2812
2813                 /* Check if this is not due to overtemp */
2814                 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2815                         return;
2816
2817                 break;
2818         case IXGBE_DEV_ID_X550EM_A_1G_T:
2819         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
2820                 rc = hw->phy.ops.check_overtemp(hw);
2821                 if (rc != IXGBE_ERR_OVERTEMP)
2822                         return;
2823                 break;
2824         default:
2825                 if (adapter->hw.mac.type >= ixgbe_mac_X540)
2826                         return;
2827                 if (!(eicr & IXGBE_EICR_GPI_SDP0(hw)))
2828                         return;
2829                 break;
2830         }
2831         e_crit(drv, "%s\n", ixgbe_overheat_msg);
2832
2833         adapter->interrupt_event = 0;
2834 }
2835
2836 static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2837 {
2838         struct ixgbe_hw *hw = &adapter->hw;
2839
2840         if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2841             (eicr & IXGBE_EICR_GPI_SDP1(hw))) {
2842                 e_crit(probe, "Fan has stopped, replace the adapter\n");
2843                 /* write to clear the interrupt */
2844                 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw));
2845         }
2846 }
2847
2848 static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2849 {
2850         struct ixgbe_hw *hw = &adapter->hw;
2851
2852         if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2853                 return;
2854
2855         switch (adapter->hw.mac.type) {
2856         case ixgbe_mac_82599EB:
2857                 /*
2858                  * Need to check link state so complete overtemp check
2859                  * on service task
2860                  */
2861                 if (((eicr & IXGBE_EICR_GPI_SDP0(hw)) ||
2862                      (eicr & IXGBE_EICR_LSC)) &&
2863                     (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2864                         adapter->interrupt_event = eicr;
2865                         adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2866                         ixgbe_service_event_schedule(adapter);
2867                         return;
2868                 }
2869                 return;
2870         case ixgbe_mac_x550em_a:
2871                 if (eicr & IXGBE_EICR_GPI_SDP0_X550EM_a) {
2872                         adapter->interrupt_event = eicr;
2873                         adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2874                         ixgbe_service_event_schedule(adapter);
2875                         IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
2876                                         IXGBE_EICR_GPI_SDP0_X550EM_a);
2877                         IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICR,
2878                                         IXGBE_EICR_GPI_SDP0_X550EM_a);
2879                 }
2880                 return;
2881         case ixgbe_mac_X550:
2882         case ixgbe_mac_X540:
2883                 if (!(eicr & IXGBE_EICR_TS))
2884                         return;
2885                 break;
2886         default:
2887                 return;
2888         }
2889
2890         e_crit(drv, "%s\n", ixgbe_overheat_msg);
2891 }
2892
2893 static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
2894 {
2895         switch (hw->mac.type) {
2896         case ixgbe_mac_82598EB:
2897                 if (hw->phy.type == ixgbe_phy_nl)
2898                         return true;
2899                 return false;
2900         case ixgbe_mac_82599EB:
2901         case ixgbe_mac_X550EM_x:
2902         case ixgbe_mac_x550em_a:
2903                 switch (hw->mac.ops.get_media_type(hw)) {
2904                 case ixgbe_media_type_fiber:
2905                 case ixgbe_media_type_fiber_qsfp:
2906                         return true;
2907                 default:
2908                         return false;
2909                 }
2910         default:
2911                 return false;
2912         }
2913 }
2914
2915 static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2916 {
2917         struct ixgbe_hw *hw = &adapter->hw;
2918         u32 eicr_mask = IXGBE_EICR_GPI_SDP2(hw);
2919
2920         if (!ixgbe_is_sfp(hw))
2921                 return;
2922
2923         /* Later MAC's use different SDP */
2924         if (hw->mac.type >= ixgbe_mac_X540)
2925                 eicr_mask = IXGBE_EICR_GPI_SDP0_X540;
2926
2927         if (eicr & eicr_mask) {
2928                 /* Clear the interrupt */
2929                 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask);
2930                 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2931                         adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2932                         adapter->sfp_poll_time = 0;
2933                         ixgbe_service_event_schedule(adapter);
2934                 }
2935         }
2936
2937         if (adapter->hw.mac.type == ixgbe_mac_82599EB &&
2938             (eicr & IXGBE_EICR_GPI_SDP1(hw))) {
2939                 /* Clear the interrupt */
2940                 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw));
2941                 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2942                         adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2943                         ixgbe_service_event_schedule(adapter);
2944                 }
2945         }
2946 }
2947
2948 static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2949 {
2950         struct ixgbe_hw *hw = &adapter->hw;
2951
2952         adapter->lsc_int++;
2953         adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2954         adapter->link_check_timeout = jiffies;
2955         if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2956                 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
2957                 IXGBE_WRITE_FLUSH(hw);
2958                 ixgbe_service_event_schedule(adapter);
2959         }
2960 }
2961
2962 static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2963                                            u64 qmask)
2964 {
2965         u32 mask;
2966         struct ixgbe_hw *hw = &adapter->hw;
2967
2968         switch (hw->mac.type) {
2969         case ixgbe_mac_82598EB:
2970                 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
2971                 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2972                 break;
2973         case ixgbe_mac_82599EB:
2974         case ixgbe_mac_X540:
2975         case ixgbe_mac_X550:
2976         case ixgbe_mac_X550EM_x:
2977         case ixgbe_mac_x550em_a:
2978                 mask = (qmask & 0xFFFFFFFF);
2979                 if (mask)
2980                         IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
2981                 mask = (qmask >> 32);
2982                 if (mask)
2983                         IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2984                 break;
2985         default:
2986                 break;
2987         }
2988         /* skip the flush */
2989 }
2990
2991 static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
2992                                             u64 qmask)
2993 {
2994         u32 mask;
2995         struct ixgbe_hw *hw = &adapter->hw;
2996
2997         switch (hw->mac.type) {
2998         case ixgbe_mac_82598EB:
2999                 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
3000                 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
3001                 break;
3002         case ixgbe_mac_82599EB:
3003         case ixgbe_mac_X540:
3004         case ixgbe_mac_X550:
3005         case ixgbe_mac_X550EM_x:
3006         case ixgbe_mac_x550em_a:
3007                 mask = (qmask & 0xFFFFFFFF);
3008                 if (mask)
3009                         IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
3010                 mask = (qmask >> 32);
3011                 if (mask)
3012                         IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
3013                 break;
3014         default:
3015                 break;
3016         }
3017         /* skip the flush */
3018 }
3019
3020 /**
3021  * ixgbe_irq_enable - Enable default interrupt generation settings
3022  * @adapter: board private structure
3023  * @queues: enable irqs for queues
3024  * @flush: flush register write
3025  **/
3026 static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
3027                                     bool flush)
3028 {
3029         struct ixgbe_hw *hw = &adapter->hw;
3030         u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
3031
3032         /* don't reenable LSC while waiting for link */
3033         if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
3034                 mask &= ~IXGBE_EIMS_LSC;
3035
3036         if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
3037                 switch (adapter->hw.mac.type) {
3038                 case ixgbe_mac_82599EB:
3039                         mask |= IXGBE_EIMS_GPI_SDP0(hw);
3040                         break;
3041                 case ixgbe_mac_X540:
3042                 case ixgbe_mac_X550:
3043                 case ixgbe_mac_X550EM_x:
3044                 case ixgbe_mac_x550em_a:
3045                         mask |= IXGBE_EIMS_TS;
3046                         break;
3047                 default:
3048                         break;
3049                 }
3050         if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
3051                 mask |= IXGBE_EIMS_GPI_SDP1(hw);
3052         switch (adapter->hw.mac.type) {
3053         case ixgbe_mac_82599EB:
3054                 mask |= IXGBE_EIMS_GPI_SDP1(hw);
3055                 mask |= IXGBE_EIMS_GPI_SDP2(hw);
3056                 /* fall through */
3057         case ixgbe_mac_X540:
3058         case ixgbe_mac_X550:
3059         case ixgbe_mac_X550EM_x:
3060         case ixgbe_mac_x550em_a:
3061                 if (adapter->hw.device_id == IXGBE_DEV_ID_X550EM_X_SFP ||
3062                     adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_SFP ||
3063                     adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_SFP_N)
3064                         mask |= IXGBE_EIMS_GPI_SDP0(&adapter->hw);
3065                 if (adapter->hw.phy.type == ixgbe_phy_x550em_ext_t)
3066                         mask |= IXGBE_EICR_GPI_SDP0_X540;
3067                 mask |= IXGBE_EIMS_ECC;
3068                 mask |= IXGBE_EIMS_MAILBOX;
3069                 break;
3070         default:
3071                 break;
3072         }
3073
3074         if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
3075             !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
3076                 mask |= IXGBE_EIMS_FLOW_DIR;
3077
3078         IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
3079         if (queues)
3080                 ixgbe_irq_enable_queues(adapter, ~0);
3081         if (flush)
3082                 IXGBE_WRITE_FLUSH(&adapter->hw);
3083 }
3084
3085 static irqreturn_t ixgbe_msix_other(int irq, void *data)
3086 {
3087         struct ixgbe_adapter *adapter = data;
3088         struct ixgbe_hw *hw = &adapter->hw;
3089         u32 eicr;
3090
3091         /*
3092          * Workaround for Silicon errata.  Use clear-by-write instead
3093          * of clear-by-read.  Reading with EICS will return the
3094          * interrupt causes without clearing, which later be done
3095          * with the write to EICR.
3096          */
3097         eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
3098
3099         /* The lower 16bits of the EICR register are for the queue interrupts
3100          * which should be masked here in order to not accidentally clear them if
3101          * the bits are high when ixgbe_msix_other is called. There is a race
3102          * condition otherwise which results in possible performance loss
3103          * especially if the ixgbe_msix_other interrupt is triggering
3104          * consistently (as it would when PPS is turned on for the X540 device)
3105          */
3106         eicr &= 0xFFFF0000;
3107
3108         IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
3109
3110         if (eicr & IXGBE_EICR_LSC)
3111                 ixgbe_check_lsc(adapter);
3112
3113         if (eicr & IXGBE_EICR_MAILBOX)
3114                 ixgbe_msg_task(adapter);
3115
3116         switch (hw->mac.type) {
3117         case ixgbe_mac_82599EB:
3118         case ixgbe_mac_X540:
3119         case ixgbe_mac_X550:
3120         case ixgbe_mac_X550EM_x:
3121         case ixgbe_mac_x550em_a:
3122                 if (hw->phy.type == ixgbe_phy_x550em_ext_t &&
3123                     (eicr & IXGBE_EICR_GPI_SDP0_X540)) {
3124                         adapter->flags2 |= IXGBE_FLAG2_PHY_INTERRUPT;
3125                         ixgbe_service_event_schedule(adapter);
3126                         IXGBE_WRITE_REG(hw, IXGBE_EICR,
3127                                         IXGBE_EICR_GPI_SDP0_X540);
3128                 }
3129                 if (eicr & IXGBE_EICR_ECC) {
3130                         e_info(link, "Received ECC Err, initiating reset\n");
3131                         set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
3132                         ixgbe_service_event_schedule(adapter);
3133                         IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
3134                 }
3135                 /* Handle Flow Director Full threshold interrupt */
3136                 if (eicr & IXGBE_EICR_FLOW_DIR) {
3137                         int reinit_count = 0;
3138                         int i;
3139                         for (i = 0; i < adapter->num_tx_queues; i++) {
3140                                 struct ixgbe_ring *ring = adapter->tx_ring[i];
3141                                 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
3142                                                        &ring->state))
3143                                         reinit_count++;
3144                         }
3145                         if (reinit_count) {
3146                                 /* no more flow director interrupts until after init */
3147                                 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
3148                                 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
3149                                 ixgbe_service_event_schedule(adapter);
3150                         }
3151                 }
3152                 ixgbe_check_sfp_event(adapter, eicr);
3153                 ixgbe_check_overtemp_event(adapter, eicr);
3154                 break;
3155         default:
3156                 break;
3157         }
3158
3159         ixgbe_check_fan_failure(adapter, eicr);
3160
3161         if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
3162                 ixgbe_ptp_check_pps_event(adapter);
3163
3164         /* re-enable the original interrupt state, no lsc, no queues */
3165         if (!test_bit(__IXGBE_DOWN, &adapter->state))
3166                 ixgbe_irq_enable(adapter, false, false);
3167
3168         return IRQ_HANDLED;
3169 }
3170
3171 static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
3172 {
3173         struct ixgbe_q_vector *q_vector = data;
3174
3175         /* EIAM disabled interrupts (on this vector) for us */
3176
3177         if (q_vector->rx.ring || q_vector->tx.ring)
3178                 napi_schedule_irqoff(&q_vector->napi);
3179
3180         return IRQ_HANDLED;
3181 }
3182
3183 /**
3184  * ixgbe_poll - NAPI Rx polling callback
3185  * @napi: structure for representing this polling device
3186  * @budget: how many packets driver is allowed to clean
3187  *
3188  * This function is used for legacy and MSI, NAPI mode
3189  **/
3190 int ixgbe_poll(struct napi_struct *napi, int budget)
3191 {
3192         struct ixgbe_q_vector *q_vector =
3193                                 container_of(napi, struct ixgbe_q_vector, napi);
3194         struct ixgbe_adapter *adapter = q_vector->adapter;
3195         struct ixgbe_ring *ring;
3196         int per_ring_budget, work_done = 0;
3197         bool clean_complete = true;
3198
3199 #ifdef CONFIG_IXGBE_DCA
3200         if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
3201                 ixgbe_update_dca(q_vector);
3202 #endif
3203
3204         ixgbe_for_each_ring(ring, q_vector->tx) {
3205                 if (!ixgbe_clean_tx_irq(q_vector, ring, budget))
3206                         clean_complete = false;
3207         }
3208
3209         /* Exit if we are called by netpoll */
3210         if (budget <= 0)
3211                 return budget;
3212
3213         /* attempt to distribute budget to each queue fairly, but don't allow
3214          * the budget to go below 1 because we'll exit polling */
3215         if (q_vector->rx.count > 1)
3216                 per_ring_budget = max(budget/q_vector->rx.count, 1);
3217         else
3218                 per_ring_budget = budget;
3219
3220         ixgbe_for_each_ring(ring, q_vector->rx) {
3221                 int cleaned = ixgbe_clean_rx_irq(q_vector, ring,
3222                                                  per_ring_budget);
3223
3224                 work_done += cleaned;
3225                 if (cleaned >= per_ring_budget)
3226                         clean_complete = false;
3227         }
3228
3229         /* If all work not completed, return budget and keep polling */
3230         if (!clean_complete)
3231                 return budget;
3232
3233         /* all work done, exit the polling mode */
3234         napi_complete_done(napi, work_done);
3235         if (adapter->rx_itr_setting & 1)
3236                 ixgbe_set_itr(q_vector);
3237         if (!test_bit(__IXGBE_DOWN, &adapter->state))
3238                 ixgbe_irq_enable_queues(adapter, BIT_ULL(q_vector->v_idx));
3239
3240         return min(work_done, budget - 1);
3241 }
3242
3243 /**
3244  * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
3245  * @adapter: board private structure
3246  *
3247  * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
3248  * interrupts from the kernel.
3249  **/
3250 static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
3251 {
3252         struct net_device *netdev = adapter->netdev;
3253         unsigned int ri = 0, ti = 0;
3254         int vector, err;
3255
3256         for (vector = 0; vector < adapter->num_q_vectors; vector++) {
3257                 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
3258                 struct msix_entry *entry = &adapter->msix_entries[vector];
3259
3260                 if (q_vector->tx.ring && q_vector->rx.ring) {
3261                         snprintf(q_vector->name, sizeof(q_vector->name),
3262                                  "%s-TxRx-%u", netdev->name, ri++);
3263                         ti++;
3264                 } else if (q_vector->rx.ring) {
3265                         snprintf(q_vector->name, sizeof(q_vector->name),
3266                                  "%s-rx-%u", netdev->name, ri++);
3267                 } else if (q_vector->tx.ring) {
3268                         snprintf(q_vector->name, sizeof(q_vector->name),
3269                                  "%s-tx-%u", netdev->name, ti++);
3270                 } else {
3271                         /* skip this unused q_vector */
3272                         continue;
3273                 }
3274                 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
3275                                   q_vector->name, q_vector);
3276                 if (err) {
3277                         e_err(probe, "request_irq failed for MSIX interrupt "
3278                               "Error: %d\n", err);
3279                         goto free_queue_irqs;
3280                 }
3281                 /* If Flow Director is enabled, set interrupt affinity */
3282                 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3283                         /* assign the mask for this irq */
3284                         irq_set_affinity_hint(entry->vector,
3285                                               &q_vector->affinity_mask);
3286                 }
3287         }
3288
3289         err = request_irq(adapter->msix_entries[vector].vector,
3290                           ixgbe_msix_other, 0, netdev->name, adapter);
3291         if (err) {
3292                 e_err(probe, "request_irq for msix_other failed: %d\n", err);
3293                 goto free_queue_irqs;
3294         }
3295
3296         return 0;
3297
3298 free_queue_irqs:
3299         while (vector) {
3300                 vector--;
3301                 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
3302                                       NULL);
3303                 free_irq(adapter->msix_entries[vector].vector,
3304                          adapter->q_vector[vector]);
3305         }
3306         adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
3307         pci_disable_msix(adapter->pdev);
3308         kfree(adapter->msix_entries);
3309         adapter->msix_entries = NULL;
3310         return err;
3311 }
3312
3313 /**
3314  * ixgbe_intr - legacy mode Interrupt Handler
3315  * @irq: interrupt number
3316  * @data: pointer to a network interface device structure
3317  **/
3318 static irqreturn_t ixgbe_intr(int irq, void *data)
3319 {
3320         struct ixgbe_adapter *adapter = data;
3321         struct ixgbe_hw *hw = &adapter->hw;
3322         struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
3323         u32 eicr;
3324
3325         /*
3326          * Workaround for silicon errata #26 on 82598.  Mask the interrupt
3327          * before the read of EICR.
3328          */
3329         IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
3330
3331         /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
3332          * therefore no explicit interrupt disable is necessary */
3333         eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
3334         if (!eicr) {
3335                 /*
3336                  * shared interrupt alert!
3337                  * make sure interrupts are enabled because the read will
3338                  * have disabled interrupts due to EIAM
3339                  * finish the workaround of silicon errata on 82598.  Unmask
3340                  * the interrupt that we masked before the EICR read.
3341                  */
3342                 if (!test_bit(__IXGBE_DOWN, &adapter->state))
3343                         ixgbe_irq_enable(adapter, true, true);
3344                 return IRQ_NONE;        /* Not our interrupt */
3345         }
3346
3347         if (eicr & IXGBE_EICR_LSC)
3348                 ixgbe_check_lsc(adapter);
3349
3350         switch (hw->mac.type) {
3351         case ixgbe_mac_82599EB:
3352                 ixgbe_check_sfp_event(adapter, eicr);
3353                 /* Fall through */
3354         case ixgbe_mac_X540:
3355         case ixgbe_mac_X550:
3356         case ixgbe_mac_X550EM_x:
3357         case ixgbe_mac_x550em_a:
3358                 if (eicr & IXGBE_EICR_ECC) {
3359                         e_info(link, "Received ECC Err, initiating reset\n");
3360                         set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
3361                         ixgbe_service_event_schedule(adapter);
3362                         IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC);
3363                 }
3364                 ixgbe_check_overtemp_event(adapter, eicr);
3365                 break;
3366         default:
3367                 break;
3368         }
3369
3370         ixgbe_check_fan_failure(adapter, eicr);
3371         if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
3372                 ixgbe_ptp_check_pps_event(adapter);
3373
3374         /* would disable interrupts here but EIAM disabled it */
3375         napi_schedule_irqoff(&q_vector->napi);
3376
3377         /*
3378          * re-enable link(maybe) and non-queue interrupts, no flush.
3379          * ixgbe_poll will re-enable the queue interrupts
3380          */
3381         if (!test_bit(__IXGBE_DOWN, &adapter->state))
3382                 ixgbe_irq_enable(adapter, false, false);
3383
3384         return IRQ_HANDLED;
3385 }
3386
3387 /**
3388  * ixgbe_request_irq - initialize interrupts
3389  * @adapter: board private structure
3390  *
3391  * Attempts to configure interrupts using the best available
3392  * capabilities of the hardware and kernel.
3393  **/
3394 static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
3395 {
3396         struct net_device *netdev = adapter->netdev;
3397         int err;
3398
3399         if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3400                 err = ixgbe_request_msix_irqs(adapter);
3401         else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
3402                 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
3403                                   netdev->name, adapter);
3404         else
3405                 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
3406                                   netdev->name, adapter);
3407
3408         if (err)
3409                 e_err(probe, "request_irq failed, Error %d\n", err);
3410
3411         return err;
3412 }
3413
3414 static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
3415 {
3416         int vector;
3417
3418         if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
3419                 free_irq(adapter->pdev->irq, adapter);
3420                 return;
3421         }
3422
3423         if (!adapter->msix_entries)
3424                 return;
3425
3426         for (vector = 0; vector < adapter->num_q_vectors; vector++) {
3427                 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
3428                 struct msix_entry *entry = &adapter->msix_entries[vector];
3429
3430                 /* free only the irqs that were actually requested */
3431                 if (!q_vector->rx.ring && !q_vector->tx.ring)
3432                         continue;
3433
3434                 /* clear the affinity_mask in the IRQ descriptor */
3435                 irq_set_affinity_hint(entry->vector, NULL);
3436
3437                 free_irq(entry->vector, q_vector);
3438         }
3439
3440         free_irq(adapter->msix_entries[vector].vector, adapter);
3441 }
3442
3443 /**
3444  * ixgbe_irq_disable - Mask off interrupt generation on the NIC
3445  * @adapter: board private structure
3446  **/
3447 static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
3448 {
3449         switch (adapter->hw.mac.type) {
3450         case ixgbe_mac_82598EB:
3451                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
3452                 break;
3453         case ixgbe_mac_82599EB:
3454         case ixgbe_mac_X540:
3455         case ixgbe_mac_X550:
3456         case ixgbe_mac_X550EM_x:
3457         case ixgbe_mac_x550em_a:
3458                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
3459                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
3460                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
3461                 break;
3462         default:
3463                 break;
3464         }
3465         IXGBE_WRITE_FLUSH(&adapter->hw);
3466         if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
3467                 int vector;
3468
3469                 for (vector = 0; vector < adapter->num_q_vectors; vector++)
3470                         synchronize_irq(adapter->msix_entries[vector].vector);
3471
3472                 synchronize_irq(adapter->msix_entries[vector++].vector);
3473         } else {
3474                 synchronize_irq(adapter->pdev->irq);
3475         }
3476 }
3477
3478 /**
3479  * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
3480  * @adapter: board private structure
3481  *
3482  **/
3483 static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
3484 {
3485         struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
3486
3487         ixgbe_write_eitr(q_vector);
3488
3489         ixgbe_set_ivar(adapter, 0, 0, 0);
3490         ixgbe_set_ivar(adapter, 1, 0, 0);
3491
3492         e_info(hw, "Legacy interrupt IVAR setup done\n");
3493 }
3494
3495 /**
3496  * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
3497  * @adapter: board private structure
3498  * @ring: structure containing ring specific data
3499  *
3500  * Configure the Tx descriptor ring after a reset.
3501  **/
3502 void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
3503                              struct ixgbe_ring *ring)
3504 {
3505         struct ixgbe_hw *hw = &adapter->hw;
3506         u64 tdba = ring->dma;
3507         int wait_loop = 10;
3508         u32 txdctl = IXGBE_TXDCTL_ENABLE;
3509         u8 reg_idx = ring->reg_idx;
3510
3511         /* disable queue to avoid issues while updating state */
3512         IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
3513         IXGBE_WRITE_FLUSH(hw);
3514
3515         IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
3516                         (tdba & DMA_BIT_MASK(32)));
3517         IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
3518         IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
3519                         ring->count * sizeof(union ixgbe_adv_tx_desc));
3520         IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
3521         IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
3522         ring->tail = adapter->io_addr + IXGBE_TDT(reg_idx);
3523
3524         /*
3525          * set WTHRESH to encourage burst writeback, it should not be set
3526          * higher than 1 when:
3527          * - ITR is 0 as it could cause false TX hangs
3528          * - ITR is set to > 100k int/sec and BQL is enabled
3529          *
3530          * In order to avoid issues WTHRESH + PTHRESH should always be equal
3531          * to or less than the number of on chip descriptors, which is
3532          * currently 40.
3533          */
3534         if (!ring->q_vector || (ring->q_vector->itr < IXGBE_100K_ITR))
3535                 txdctl |= 1u << 16;     /* WTHRESH = 1 */
3536         else
3537                 txdctl |= 8u << 16;     /* WTHRESH = 8 */
3538
3539         /*
3540          * Setting PTHRESH to 32 both improves performance
3541          * and avoids a TX hang with DFP enabled
3542          */
3543         txdctl |= (1u << 8) |   /* HTHRESH = 1 */
3544                    32;          /* PTHRESH = 32 */
3545
3546         /* reinitialize flowdirector state */
3547         if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3548                 ring->atr_sample_rate = adapter->atr_sample_rate;
3549                 ring->atr_count = 0;
3550                 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
3551         } else {
3552                 ring->atr_sample_rate = 0;
3553         }
3554
3555         /* initialize XPS */
3556         if (!test_and_set_bit(__IXGBE_TX_XPS_INIT_DONE, &ring->state)) {
3557                 struct ixgbe_q_vector *q_vector = ring->q_vector;
3558
3559                 if (q_vector)
3560                         netif_set_xps_queue(ring->netdev,
3561                                             &q_vector->affinity_mask,
3562                                             ring->queue_index);
3563         }
3564
3565         clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
3566
3567         /* reinitialize tx_buffer_info */
3568         memset(ring->tx_buffer_info, 0,
3569                sizeof(struct ixgbe_tx_buffer) * ring->count);
3570
3571         /* enable queue */
3572         IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
3573
3574         /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3575         if (hw->mac.type == ixgbe_mac_82598EB &&
3576             !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3577                 return;
3578
3579         /* poll to verify queue is enabled */
3580         do {
3581                 usleep_range(1000, 2000);
3582                 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
3583         } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
3584         if (!wait_loop)
3585                 hw_dbg(hw, "Could not enable Tx Queue %d\n", reg_idx);
3586 }
3587
3588 static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
3589 {
3590         struct ixgbe_hw *hw = &adapter->hw;
3591         u32 rttdcs, mtqc;
3592         u8 tcs = adapter->hw_tcs;
3593
3594         if (hw->mac.type == ixgbe_mac_82598EB)
3595                 return;
3596
3597         /* disable the arbiter while setting MTQC */
3598         rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
3599         rttdcs |= IXGBE_RTTDCS_ARBDIS;
3600         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3601
3602         /* set transmit pool layout */
3603         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3604                 mtqc = IXGBE_MTQC_VT_ENA;
3605                 if (tcs > 4)
3606                         mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3607                 else if (tcs > 1)
3608                         mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3609                 else if (adapter->ring_feature[RING_F_VMDQ].mask ==
3610                          IXGBE_82599_VMDQ_4Q_MASK)
3611                         mtqc |= IXGBE_MTQC_32VF;
3612                 else
3613                         mtqc |= IXGBE_MTQC_64VF;
3614         } else {
3615                 if (tcs > 4)
3616                         mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
3617                 else if (tcs > 1)
3618                         mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
3619                 else
3620                         mtqc = IXGBE_MTQC_64Q_1PB;
3621         }
3622
3623         IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
3624
3625         /* Enable Security TX Buffer IFG for multiple pb */
3626         if (tcs) {
3627                 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
3628                 sectx |= IXGBE_SECTX_DCB;
3629                 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
3630         }
3631
3632         /* re-enable the arbiter */
3633         rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
3634         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
3635 }
3636
3637 /**
3638  * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
3639  * @adapter: board private structure
3640  *
3641  * Configure the Tx unit of the MAC after a reset.
3642  **/
3643 static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
3644 {
3645         struct ixgbe_hw *hw = &adapter->hw;
3646         u32 dmatxctl;
3647         u32 i;
3648
3649         ixgbe_setup_mtqc(adapter);
3650
3651         if (hw->mac.type != ixgbe_mac_82598EB) {
3652                 /* DMATXCTL.EN must be before Tx queues are enabled */
3653                 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
3654                 dmatxctl |= IXGBE_DMATXCTL_TE;
3655                 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
3656         }
3657
3658         /* Setup the HW Tx Head and Tail descriptor pointers */
3659         for (i = 0; i < adapter->num_tx_queues; i++)
3660                 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
3661         for (i = 0; i < adapter->num_xdp_queues; i++)
3662                 ixgbe_configure_tx_ring(adapter, adapter->xdp_ring[i]);
3663 }
3664
3665 static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
3666                                  struct ixgbe_ring *ring)
3667 {
3668         struct ixgbe_hw *hw = &adapter->hw;
3669         u8 reg_idx = ring->reg_idx;
3670         u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3671
3672         srrctl |= IXGBE_SRRCTL_DROP_EN;
3673
3674         IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3675 }
3676
3677 static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
3678                                   struct ixgbe_ring *ring)
3679 {
3680         struct ixgbe_hw *hw = &adapter->hw;
3681         u8 reg_idx = ring->reg_idx;
3682         u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
3683
3684         srrctl &= ~IXGBE_SRRCTL_DROP_EN;
3685
3686         IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3687 }
3688
3689 #ifdef CONFIG_IXGBE_DCB
3690 void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3691 #else
3692 static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
3693 #endif
3694 {
3695         int i;
3696         bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
3697
3698         if (adapter->ixgbe_ieee_pfc)
3699                 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
3700
3701         /*
3702          * We should set the drop enable bit if:
3703          *  SR-IOV is enabled
3704          *   or
3705          *  Number of Rx queues > 1 and flow control is disabled
3706          *
3707          *  This allows us to avoid head of line blocking for security
3708          *  and performance reasons.
3709          */
3710         if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
3711             !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
3712                 for (i = 0; i < adapter->num_rx_queues; i++)
3713                         ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
3714         } else {
3715                 for (i = 0; i < adapter->num_rx_queues; i++)
3716                         ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
3717         }
3718 }
3719
3720 #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
3721
3722 static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
3723                                    struct ixgbe_ring *rx_ring)
3724 {
3725         struct ixgbe_hw *hw = &adapter->hw;
3726         u32 srrctl;
3727         u8 reg_idx = rx_ring->reg_idx;
3728
3729         if (hw->mac.type == ixgbe_mac_82598EB) {
3730                 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
3731
3732                 /*
3733                  * if VMDq is not active we must program one srrctl register
3734                  * per RSS queue since we have enabled RDRXCTL.MVMEN
3735                  */
3736                 reg_idx &= mask;
3737         }
3738
3739         /* configure header buffer length, needed for RSC */
3740         srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
3741
3742         /* configure the packet buffer length */
3743         if (test_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state))
3744                 srrctl |= IXGBE_RXBUFFER_3K >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
3745         else
3746                 srrctl |= IXGBE_RXBUFFER_2K >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
3747
3748         /* configure descriptor type */
3749         srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
3750
3751         IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
3752 }
3753
3754 /**
3755  * ixgbe_rss_indir_tbl_entries - Return RSS indirection table entries
3756  * @adapter: device handle
3757  *
3758  *  - 82598/82599/X540:     128
3759  *  - X550(non-SRIOV mode): 512
3760  *  - X550(SRIOV mode):     64
3761  */
3762 u32 ixgbe_rss_indir_tbl_entries(struct ixgbe_adapter *adapter)
3763 {
3764         if (adapter->hw.mac.type < ixgbe_mac_X550)
3765                 return 128;
3766         else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3767                 return 64;
3768         else
3769                 return 512;
3770 }
3771
3772 /**
3773  * ixgbe_store_key - Write the RSS key to HW
3774  * @adapter: device handle
3775  *
3776  * Write the RSS key stored in adapter.rss_key to HW.
3777  */
3778 void ixgbe_store_key(struct ixgbe_adapter *adapter)
3779 {
3780         struct ixgbe_hw *hw = &adapter->hw;
3781         int i;
3782
3783         for (i = 0; i < 10; i++)
3784                 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), adapter->rss_key[i]);
3785 }
3786
3787 /**
3788  * ixgbe_init_rss_key - Initialize adapter RSS key
3789  * @adapter: device handle
3790  *
3791  * Allocates and initializes the RSS key if it is not allocated.
3792  **/
3793 static inline int ixgbe_init_rss_key(struct ixgbe_adapter *adapter)
3794 {
3795         u32 *rss_key;
3796
3797         if (!adapter->rss_key) {
3798                 rss_key = kzalloc(IXGBE_RSS_KEY_SIZE, GFP_KERNEL);
3799                 if (unlikely(!rss_key))
3800                         return -ENOMEM;
3801
3802                 netdev_rss_key_fill(rss_key, IXGBE_RSS_KEY_SIZE);
3803                 adapter->rss_key = rss_key;
3804         }
3805
3806         return 0;
3807 }
3808
3809 /**
3810  * ixgbe_store_reta - Write the RETA table to HW
3811  * @adapter: device handle
3812  *
3813  * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3814  */
3815 void ixgbe_store_reta(struct ixgbe_adapter *adapter)
3816 {
3817         u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3818         struct ixgbe_hw *hw = &adapter->hw;
3819         u32 reta = 0;
3820         u32 indices_multi;
3821         u8 *indir_tbl = adapter->rss_indir_tbl;
3822
3823         /* Fill out the redirection table as follows:
3824          *  - 82598:      8 bit wide entries containing pair of 4 bit RSS
3825          *    indices.
3826          *  - 82599/X540: 8 bit wide entries containing 4 bit RSS index
3827          *  - X550:       8 bit wide entries containing 6 bit RSS index
3828          */
3829         if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3830                 indices_multi = 0x11;
3831         else
3832                 indices_multi = 0x1;
3833
3834         /* Write redirection table to HW */
3835         for (i = 0; i < reta_entries; i++) {
3836                 reta |= indices_multi * indir_tbl[i] << (i & 0x3) * 8;
3837                 if ((i & 3) == 3) {
3838                         if (i < 128)
3839                                 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3840                         else
3841                                 IXGBE_WRITE_REG(hw, IXGBE_ERETA((i >> 2) - 32),
3842                                                 reta);
3843                         reta = 0;
3844                 }
3845         }
3846 }
3847
3848 /**
3849  * ixgbe_store_vfreta - Write the RETA table to HW (x550 devices in SRIOV mode)
3850  * @adapter: device handle
3851  *
3852  * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3853  */
3854 static void ixgbe_store_vfreta(struct ixgbe_adapter *adapter)
3855 {
3856         u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3857         struct ixgbe_hw *hw = &adapter->hw;
3858         u32 vfreta = 0;
3859
3860         /* Write redirection table to HW */
3861         for (i = 0; i < reta_entries; i++) {
3862                 u16 pool = adapter->num_rx_pools;
3863
3864                 vfreta |= (u32)adapter->rss_indir_tbl[i] << (i & 0x3) * 8;
3865                 if ((i & 3) != 3)
3866                         continue;
3867
3868                 while (pool--)
3869                         IXGBE_WRITE_REG(hw,
3870                                         IXGBE_PFVFRETA(i >> 2, VMDQ_P(pool)),
3871                                         vfreta);
3872                 vfreta = 0;
3873         }
3874 }
3875
3876 static void ixgbe_setup_reta(struct ixgbe_adapter *adapter)
3877 {
3878         u32 i, j;
3879         u32 reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
3880         u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
3881
3882         /* Program table for at least 4 queues w/ SR-IOV so that VFs can
3883          * make full use of any rings they may have.  We will use the
3884          * PSRTYPE register to control how many rings we use within the PF.
3885          */
3886         if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 4))
3887                 rss_i = 4;
3888
3889         /* Fill out hash function seeds */
3890         ixgbe_store_key(adapter);
3891
3892         /* Fill out redirection table */
3893         memset(adapter->rss_indir_tbl, 0, sizeof(adapter->rss_indir_tbl));
3894
3895         for (i = 0, j = 0; i < reta_entries; i++, j++) {
3896                 if (j == rss_i)
3897                         j = 0;
3898
3899                 adapter->rss_indir_tbl[i] = j;
3900         }
3901
3902         ixgbe_store_reta(adapter);
3903 }
3904
3905 static void ixgbe_setup_vfreta(struct ixgbe_adapter *adapter)
3906 {
3907         struct ixgbe_hw *hw = &adapter->hw;
3908         u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
3909         int i, j;
3910
3911         /* Fill out hash function seeds */
3912         for (i = 0; i < 10; i++) {
3913                 u16 pool = adapter->num_rx_pools;
3914
3915                 while (pool--)
3916                         IXGBE_WRITE_REG(hw,
3917                                         IXGBE_PFVFRSSRK(i, VMDQ_P(pool)),
3918                                         *(adapter->rss_key + i));
3919         }
3920
3921         /* Fill out the redirection table */
3922         for (i = 0, j = 0; i < 64; i++, j++) {
3923                 if (j == rss_i)
3924                         j = 0;
3925
3926                 adapter->rss_indir_tbl[i] = j;
3927         }
3928
3929         ixgbe_store_vfreta(adapter);
3930 }
3931
3932 static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
3933 {
3934         struct ixgbe_hw *hw = &adapter->hw;
3935         u32 mrqc = 0, rss_field = 0, vfmrqc = 0;
3936         u32 rxcsum;
3937
3938         /* Disable indicating checksum in descriptor, enables RSS hash */
3939         rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3940         rxcsum |= IXGBE_RXCSUM_PCSD;
3941         IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3942
3943         if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
3944                 if (adapter->ring_feature[RING_F_RSS].mask)
3945                         mrqc = IXGBE_MRQC_RSSEN;
3946         } else {
3947                 u8 tcs = adapter->hw_tcs;
3948
3949                 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3950                         if (tcs > 4)
3951                                 mrqc = IXGBE_MRQC_VMDQRT8TCEN;  /* 8 TCs */
3952                         else if (tcs > 1)
3953                                 mrqc = IXGBE_MRQC_VMDQRT4TCEN;  /* 4 TCs */
3954                         else if (adapter->ring_feature[RING_F_VMDQ].mask ==
3955                                  IXGBE_82599_VMDQ_4Q_MASK)
3956                                 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3957                         else
3958                                 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3959
3960                         /* Enable L3/L4 for Tx Switched packets */
3961                         mrqc |= IXGBE_MRQC_L3L4TXSWEN;
3962                 } else {
3963                         if (tcs > 4)
3964                                 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3965                         else if (tcs > 1)
3966                                 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3967                         else
3968                                 mrqc = IXGBE_MRQC_RSSEN;
3969                 }
3970         }
3971
3972         /* Perform hash on these packet types */
3973         rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3974                      IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3975                      IXGBE_MRQC_RSS_FIELD_IPV6 |
3976                      IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
3977
3978         if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3979                 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3980         if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3981                 rss_field |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3982
3983         if ((hw->mac.type >= ixgbe_mac_X550) &&
3984             (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) {
3985                 u16 pool = adapter->num_rx_pools;
3986
3987                 /* Enable VF RSS mode */
3988                 mrqc |= IXGBE_MRQC_MULTIPLE_RSS;
3989                 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
3990
3991                 /* Setup RSS through the VF registers */
3992                 ixgbe_setup_vfreta(adapter);
3993                 vfmrqc = IXGBE_MRQC_RSSEN;
3994                 vfmrqc |= rss_field;
3995
3996                 while (pool--)
3997                         IXGBE_WRITE_REG(hw,
3998                                         IXGBE_PFVFMRQC(VMDQ_P(pool)),
3999                                         vfmrqc);
4000         } else {
4001                 ixgbe_setup_reta(adapter);
4002                 mrqc |= rss_field;
4003                 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
4004         }
4005 }
4006
4007 /**
4008  * ixgbe_configure_rscctl - enable RSC for the indicated ring
4009  * @adapter: address of board private structure
4010  * @ring: structure containing ring specific data
4011  **/
4012 static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
4013                                    struct ixgbe_ring *ring)
4014 {
4015         struct ixgbe_hw *hw = &adapter->hw;
4016         u32 rscctrl;
4017         u8 reg_idx = ring->reg_idx;
4018
4019         if (!ring_is_rsc_enabled(ring))
4020                 return;
4021
4022         rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
4023         rscctrl |= IXGBE_RSCCTL_RSCEN;
4024         /*
4025          * we must limit the number of descriptors so that the
4026          * total size of max desc * buf_len is not greater
4027          * than 65536
4028          */
4029         rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
4030         IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
4031 }
4032
4033 #define IXGBE_MAX_RX_DESC_POLL 10
4034 static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
4035                                        struct ixgbe_ring *ring)
4036 {
4037         struct ixgbe_hw *hw = &adapter->hw;
4038         int wait_loop = IXGBE_MAX_RX_DESC_POLL;
4039         u32 rxdctl;
4040         u8 reg_idx = ring->reg_idx;
4041
4042         if (ixgbe_removed(hw->hw_addr))
4043                 return;
4044         /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
4045         if (hw->mac.type == ixgbe_mac_82598EB &&
4046             !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
4047                 return;
4048
4049         do {
4050                 usleep_range(1000, 2000);
4051                 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
4052         } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
4053
4054         if (!wait_loop) {
4055                 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
4056                       "the polling period\n", reg_idx);
4057         }
4058 }
4059
4060 void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
4061                             struct ixgbe_ring *ring)
4062 {
4063         struct ixgbe_hw *hw = &adapter->hw;
4064         int wait_loop = IXGBE_MAX_RX_DESC_POLL;
4065         u32 rxdctl;
4066         u8 reg_idx = ring->reg_idx;
4067
4068         if (ixgbe_removed(hw->hw_addr))
4069                 return;
4070         rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
4071         rxdctl &= ~IXGBE_RXDCTL_ENABLE;
4072
4073         /* write value back with RXDCTL.ENABLE bit cleared */
4074         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
4075
4076         if (hw->mac.type == ixgbe_mac_82598EB &&
4077             !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
4078                 return;
4079
4080         /* the hardware may take up to 100us to really disable the rx queue */
4081         do {
4082                 udelay(10);
4083                 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
4084         } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
4085
4086         if (!wait_loop) {
4087                 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
4088                       "the polling period\n", reg_idx);
4089         }
4090 }
4091
4092 void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
4093                              struct ixgbe_ring *ring)
4094 {
4095         struct ixgbe_hw *hw = &adapter->hw;
4096         union ixgbe_adv_rx_desc *rx_desc;
4097         u64 rdba = ring->dma;
4098         u32 rxdctl;
4099         u8 reg_idx = ring->reg_idx;
4100
4101         /* disable queue to avoid issues while updating state */
4102         rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
4103         ixgbe_disable_rx_queue(adapter, ring);
4104
4105         IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
4106         IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
4107         IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
4108                         ring->count * sizeof(union ixgbe_adv_rx_desc));
4109         /* Force flushing of IXGBE_RDLEN to prevent MDD */
4110         IXGBE_WRITE_FLUSH(hw);
4111
4112         IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
4113         IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
4114         ring->tail = adapter->io_addr + IXGBE_RDT(reg_idx);
4115
4116         ixgbe_configure_srrctl(adapter, ring);
4117         ixgbe_configure_rscctl(adapter, ring);
4118
4119         if (hw->mac.type == ixgbe_mac_82598EB) {
4120                 /*
4121                  * enable cache line friendly hardware writes:
4122                  * PTHRESH=32 descriptors (half the internal cache),
4123                  * this also removes ugly rx_no_buffer_count increment
4124                  * HTHRESH=4 descriptors (to minimize latency on fetch)
4125                  * WTHRESH=8 burst writeback up to two cache lines
4126                  */
4127                 rxdctl &= ~0x3FFFFF;
4128                 rxdctl |=  0x080420;
4129 #if (PAGE_SIZE < 8192)
4130         } else {
4131                 rxdctl &= ~(IXGBE_RXDCTL_RLPMLMASK |
4132                             IXGBE_RXDCTL_RLPML_EN);
4133
4134                 /* Limit the maximum frame size so we don't overrun the skb */
4135                 if (ring_uses_build_skb(ring) &&
4136                     !test_bit(__IXGBE_RX_3K_BUFFER, &ring->state))
4137                         rxdctl |= IXGBE_MAX_2K_FRAME_BUILD_SKB |
4138                                   IXGBE_RXDCTL_RLPML_EN;
4139 #endif
4140         }
4141
4142         /* initialize rx_buffer_info */
4143         memset(ring->rx_buffer_info, 0,
4144                sizeof(struct ixgbe_rx_buffer) * ring->count);
4145
4146         /* initialize Rx descriptor 0 */
4147         rx_desc = IXGBE_RX_DESC(ring, 0);
4148         rx_desc->wb.upper.length = 0;
4149
4150         /* enable receive descriptor ring */
4151         rxdctl |= IXGBE_RXDCTL_ENABLE;
4152         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
4153
4154         ixgbe_rx_desc_queue_enable(adapter, ring);
4155         ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
4156 }
4157
4158 static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
4159 {
4160         struct ixgbe_hw *hw = &adapter->hw;
4161         int rss_i = adapter->ring_feature[RING_F_RSS].indices;
4162         u16 pool = adapter->num_rx_pools;
4163
4164         /* PSRTYPE must be initialized in non 82598 adapters */
4165         u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
4166                       IXGBE_PSRTYPE_UDPHDR |
4167                       IXGBE_PSRTYPE_IPV4HDR |
4168                       IXGBE_PSRTYPE_L2HDR |
4169                       IXGBE_PSRTYPE_IPV6HDR;
4170
4171         if (hw->mac.type == ixgbe_mac_82598EB)
4172                 return;
4173
4174         if (rss_i > 3)
4175                 psrtype |= 2u << 29;
4176         else if (rss_i > 1)
4177                 psrtype |= 1u << 29;
4178
4179         while (pool--)
4180                 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype);
4181 }
4182
4183 static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
4184 {
4185         struct ixgbe_hw *hw = &adapter->hw;
4186         u32 reg_offset, vf_shift;
4187         u32 gcr_ext, vmdctl;
4188         int i;
4189
4190         if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
4191                 return;
4192
4193         vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
4194         vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
4195         vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
4196         vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
4197         vmdctl |= IXGBE_VT_CTL_REPLEN;
4198         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
4199
4200         vf_shift = VMDQ_P(0) % 32;
4201         reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
4202
4203         /* Enable only the PF's pool for Tx/Rx */
4204         IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), GENMASK(31, vf_shift));
4205         IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
4206         IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), GENMASK(31, vf_shift));
4207         IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
4208         if (adapter->bridge_mode == BRIDGE_MODE_VEB)
4209                 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
4210
4211         /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
4212         hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
4213
4214         /* clear VLAN promisc flag so VFTA will be updated if necessary */
4215         adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC;
4216
4217         /*
4218          * Set up VF register offsets for selected VT Mode,
4219          * i.e. 32 or 64 VFs for SR-IOV
4220          */
4221         switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4222         case IXGBE_82599_VMDQ_8Q_MASK:
4223                 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
4224                 break;
4225         case IXGBE_82599_VMDQ_4Q_MASK:
4226                 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
4227                 break;
4228         default:
4229                 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
4230                 break;
4231         }
4232
4233         IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
4234
4235         for (i = 0; i < adapter->num_vfs; i++) {
4236                 /* configure spoof checking */
4237                 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i,
4238                                           adapter->vfinfo[i].spoofchk_enabled);
4239
4240                 /* Enable/Disable RSS query feature  */
4241                 ixgbe_ndo_set_vf_rss_query_en(adapter->netdev, i,
4242                                           adapter->vfinfo[i].rss_query_enabled);
4243         }
4244 }
4245
4246 static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
4247 {
4248         struct ixgbe_hw *hw = &adapter->hw;
4249         struct net_device *netdev = adapter->netdev;
4250         int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
4251         struct ixgbe_ring *rx_ring;
4252         int i;
4253         u32 mhadd, hlreg0;
4254
4255 #ifdef IXGBE_FCOE
4256         /* adjust max frame to be able to do baby jumbo for FCoE */
4257         if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
4258             (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
4259                 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
4260
4261 #endif /* IXGBE_FCOE */
4262
4263         /* adjust max frame to be at least the size of a standard frame */
4264         if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN))
4265                 max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN);
4266
4267         mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
4268         if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
4269                 mhadd &= ~IXGBE_MHADD_MFS_MASK;
4270                 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
4271
4272                 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
4273         }
4274
4275         hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
4276         /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
4277         hlreg0 |= IXGBE_HLREG0_JUMBOEN;
4278         IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
4279
4280         /*
4281          * Setup the HW Rx Head and Tail Descriptor Pointers and
4282          * the Base and Length of the Rx Descriptor Ring
4283          */
4284         for (i = 0; i < adapter->num_rx_queues; i++) {
4285                 rx_ring = adapter->rx_ring[i];
4286
4287                 clear_ring_rsc_enabled(rx_ring);
4288                 clear_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state);
4289                 clear_bit(__IXGBE_RX_BUILD_SKB_ENABLED, &rx_ring->state);
4290
4291                 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
4292                         set_ring_rsc_enabled(rx_ring);
4293
4294                 if (test_bit(__IXGBE_RX_FCOE, &rx_ring->state))
4295                         set_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state);
4296
4297                 clear_bit(__IXGBE_RX_BUILD_SKB_ENABLED, &rx_ring->state);
4298                 if (adapter->flags2 & IXGBE_FLAG2_RX_LEGACY)
4299                         continue;
4300
4301                 set_bit(__IXGBE_RX_BUILD_SKB_ENABLED, &rx_ring->state);
4302
4303 #if (PAGE_SIZE < 8192)
4304                 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
4305                         set_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state);
4306
4307                 if (IXGBE_2K_TOO_SMALL_WITH_PADDING ||
4308                     (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
4309                         set_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state);
4310 #endif
4311         }
4312 }
4313
4314 static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
4315 {
4316         struct ixgbe_hw *hw = &adapter->hw;
4317         u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
4318
4319         switch (hw->mac.type) {
4320         case ixgbe_mac_82598EB:
4321                 /*
4322                  * For VMDq support of different descriptor types or
4323                  * buffer sizes through the use of multiple SRRCTL
4324                  * registers, RDRXCTL.MVMEN must be set to 1
4325                  *
4326                  * also, the manual doesn't mention it clearly but DCA hints
4327                  * will only use queue 0's tags unless this bit is set.  Side
4328                  * effects of setting this bit are only that SRRCTL must be
4329                  * fully programmed [0..15]
4330                  */
4331                 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
4332                 break;
4333         case ixgbe_mac_X550:
4334         case ixgbe_mac_X550EM_x:
4335         case ixgbe_mac_x550em_a:
4336                 if (adapter->num_vfs)
4337                         rdrxctl |= IXGBE_RDRXCTL_PSP;
4338                 /* fall through */
4339         case ixgbe_mac_82599EB:
4340         case ixgbe_mac_X540:
4341                 /* Disable RSC for ACK packets */
4342                 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
4343                    (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
4344                 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
4345                 /* hardware requires some bits to be set by default */
4346                 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
4347                 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
4348                 break;
4349         default:
4350                 /* We should do nothing since we don't know this hardware */
4351                 return;
4352         }
4353
4354         IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
4355 }
4356
4357 /**
4358  * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
4359  * @adapter: board private structure
4360  *
4361  * Configure the Rx unit of the MAC after a reset.
4362  **/
4363 static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
4364 {
4365         struct ixgbe_hw *hw = &adapter->hw;
4366         int i;
4367         u32 rxctrl, rfctl;
4368
4369         /* disable receives while setting up the descriptors */
4370         hw->mac.ops.disable_rx(hw);
4371
4372         ixgbe_setup_psrtype(adapter);
4373         ixgbe_setup_rdrxctl(adapter);
4374
4375         /* RSC Setup */
4376         rfctl = IXGBE_READ_REG(hw, IXGBE_RFCTL);
4377         rfctl &= ~IXGBE_RFCTL_RSC_DIS;
4378         if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
4379                 rfctl |= IXGBE_RFCTL_RSC_DIS;
4380
4381         /* disable NFS filtering */
4382         rfctl |= (IXGBE_RFCTL_NFSW_DIS | IXGBE_RFCTL_NFSR_DIS);
4383         IXGBE_WRITE_REG(hw, IXGBE_RFCTL, rfctl);
4384
4385         /* Program registers for the distribution of queues */
4386         ixgbe_setup_mrqc(adapter);
4387
4388         /* set_rx_buffer_len must be called before ring initialization */
4389         ixgbe_set_rx_buffer_len(adapter);
4390
4391         /*
4392          * Setup the HW Rx Head and Tail Descriptor Pointers and
4393          * the Base and Length of the Rx Descriptor Ring
4394          */
4395         for (i = 0; i < adapter->num_rx_queues; i++)
4396                 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
4397
4398         rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4399         /* disable drop enable for 82598 parts */
4400         if (hw->mac.type == ixgbe_mac_82598EB)
4401                 rxctrl |= IXGBE_RXCTRL_DMBYPS;
4402
4403         /* enable all receives */
4404         rxctrl |= IXGBE_RXCTRL_RXEN;
4405         hw->mac.ops.enable_rx_dma(hw, rxctrl);
4406 }
4407
4408 static int ixgbe_vlan_rx_add_vid(struct net_device *netdev,
4409                                  __be16 proto, u16 vid)
4410 {
4411         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4412         struct ixgbe_hw *hw = &adapter->hw;
4413
4414         /* add VID to filter table */
4415         if (!vid || !(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4416                 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true, !!vid);
4417
4418         set_bit(vid, adapter->active_vlans);
4419
4420         return 0;
4421 }
4422
4423 static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
4424 {
4425         u32 vlvf;
4426         int idx;
4427
4428         /* short cut the special case */
4429         if (vlan == 0)
4430                 return 0;
4431
4432         /* Search for the vlan id in the VLVF entries */
4433         for (idx = IXGBE_VLVF_ENTRIES; --idx;) {
4434                 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(idx));
4435                 if ((vlvf & VLAN_VID_MASK) == vlan)
4436                         break;
4437         }
4438
4439         return idx;
4440 }
4441
4442 void ixgbe_update_pf_promisc_vlvf(struct ixgbe_adapter *adapter, u32 vid)
4443 {
4444         struct ixgbe_hw *hw = &adapter->hw;
4445         u32 bits, word;
4446         int idx;
4447
4448         idx = ixgbe_find_vlvf_entry(hw, vid);
4449         if (!idx)
4450                 return;
4451
4452         /* See if any other pools are set for this VLAN filter
4453          * entry other than the PF.
4454          */
4455         word = idx * 2 + (VMDQ_P(0) / 32);
4456         bits = ~BIT(VMDQ_P(0) % 32);
4457         bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
4458
4459         /* Disable the filter so this falls into the default pool. */
4460         if (!bits && !IXGBE_READ_REG(hw, IXGBE_VLVFB(word ^ 1))) {
4461                 if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4462                         IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), 0);
4463                 IXGBE_WRITE_REG(hw, IXGBE_VLVF(idx), 0);
4464         }
4465 }
4466
4467 static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev,
4468                                   __be16 proto, u16 vid)
4469 {
4470         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4471         struct ixgbe_hw *hw = &adapter->hw;
4472
4473         /* remove VID from filter table */
4474         if (vid && !(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4475                 hw->mac.ops.set_vfta(hw, vid, VMDQ_P(0), false, true);
4476
4477         clear_bit(vid, adapter->active_vlans);
4478
4479         return 0;
4480 }
4481
4482 /**
4483  * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
4484  * @adapter: driver data
4485  */
4486 static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
4487 {
4488         struct ixgbe_hw *hw = &adapter->hw;
4489         u32 vlnctrl;
4490         int i, j;
4491
4492         switch (hw->mac.type) {
4493         case ixgbe_mac_82598EB:
4494                 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4495                 vlnctrl &= ~IXGBE_VLNCTRL_VME;
4496                 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4497                 break;
4498         case ixgbe_mac_82599EB:
4499         case ixgbe_mac_X540:
4500         case ixgbe_mac_X550:
4501         case ixgbe_mac_X550EM_x:
4502         case ixgbe_mac_x550em_a:
4503                 for (i = 0; i < adapter->num_rx_queues; i++) {
4504                         struct ixgbe_ring *ring = adapter->rx_ring[i];
4505
4506                         if (!netif_is_ixgbe(ring->netdev))
4507                                 continue;
4508
4509                         j = ring->reg_idx;
4510                         vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
4511                         vlnctrl &= ~IXGBE_RXDCTL_VME;
4512                         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
4513                 }
4514                 break;
4515         default:
4516                 break;
4517         }
4518 }
4519
4520 /**
4521  * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
4522  * @adapter: driver data
4523  */
4524 static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
4525 {
4526         struct ixgbe_hw *hw = &adapter->hw;
4527         u32 vlnctrl;
4528         int i, j;
4529
4530         switch (hw->mac.type) {
4531         case ixgbe_mac_82598EB:
4532                 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4533                 vlnctrl |= IXGBE_VLNCTRL_VME;
4534                 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4535                 break;
4536         case ixgbe_mac_82599EB:
4537         case ixgbe_mac_X540:
4538         case ixgbe_mac_X550:
4539         case ixgbe_mac_X550EM_x:
4540         case ixgbe_mac_x550em_a:
4541                 for (i = 0; i < adapter->num_rx_queues; i++) {
4542                         struct ixgbe_ring *ring = adapter->rx_ring[i];
4543
4544                         if (!netif_is_ixgbe(ring->netdev))
4545                                 continue;
4546
4547                         j = ring->reg_idx;
4548                         vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
4549                         vlnctrl |= IXGBE_RXDCTL_VME;
4550                         IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
4551                 }
4552                 break;
4553         default:
4554                 break;
4555         }
4556 }
4557
4558 static void ixgbe_vlan_promisc_enable(struct ixgbe_adapter *adapter)
4559 {
4560         struct ixgbe_hw *hw = &adapter->hw;
4561         u32 vlnctrl, i;
4562
4563         vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4564
4565         if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) {
4566         /* For VMDq and SR-IOV we must leave VLAN filtering enabled */
4567                 vlnctrl |= IXGBE_VLNCTRL_VFE;
4568                 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4569         } else {
4570                 vlnctrl &= ~IXGBE_VLNCTRL_VFE;
4571                 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4572                 return;
4573         }
4574
4575         /* Nothing to do for 82598 */
4576         if (hw->mac.type == ixgbe_mac_82598EB)
4577                 return;
4578
4579         /* We are already in VLAN promisc, nothing to do */
4580         if (adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)
4581                 return;
4582
4583         /* Set flag so we don't redo unnecessary work */
4584         adapter->flags2 |= IXGBE_FLAG2_VLAN_PROMISC;
4585
4586         /* Add PF to all active pools */
4587         for (i = IXGBE_VLVF_ENTRIES; --i;) {
4588                 u32 reg_offset = IXGBE_VLVFB(i * 2 + VMDQ_P(0) / 32);
4589                 u32 vlvfb = IXGBE_READ_REG(hw, reg_offset);
4590
4591                 vlvfb |= BIT(VMDQ_P(0) % 32);
4592                 IXGBE_WRITE_REG(hw, reg_offset, vlvfb);
4593         }
4594
4595         /* Set all bits in the VLAN filter table array */
4596         for (i = hw->mac.vft_size; i--;)
4597                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), ~0U);
4598 }
4599
4600 #define VFTA_BLOCK_SIZE 8
4601 static void ixgbe_scrub_vfta(struct ixgbe_adapter *adapter, u32 vfta_offset)
4602 {
4603         struct ixgbe_hw *hw = &adapter->hw;
4604         u32 vfta[VFTA_BLOCK_SIZE] = { 0 };
4605         u32 vid_start = vfta_offset * 32;
4606         u32 vid_end = vid_start + (VFTA_BLOCK_SIZE * 32);
4607         u32 i, vid, word, bits;
4608
4609         for (i = IXGBE_VLVF_ENTRIES; --i;) {
4610                 u32 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(i));
4611
4612                 /* pull VLAN ID from VLVF */
4613                 vid = vlvf & VLAN_VID_MASK;
4614
4615                 /* only concern outselves with a certain range */
4616                 if (vid < vid_start || vid >= vid_end)
4617                         continue;
4618
4619                 if (vlvf) {
4620                         /* record VLAN ID in VFTA */
4621                         vfta[(vid - vid_start) / 32] |= BIT(vid % 32);
4622
4623                         /* if PF is part of this then continue */
4624                         if (test_bit(vid, adapter->active_vlans))
4625                                 continue;
4626                 }
4627
4628                 /* remove PF from the pool */
4629                 word = i * 2 + VMDQ_P(0) / 32;
4630                 bits = ~BIT(VMDQ_P(0) % 32);
4631                 bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
4632                 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), bits);
4633         }
4634
4635         /* extract values from active_vlans and write back to VFTA */
4636         for (i = VFTA_BLOCK_SIZE; i--;) {
4637                 vid = (vfta_offset + i) * 32;
4638                 word = vid / BITS_PER_LONG;
4639                 bits = vid % BITS_PER_LONG;
4640
4641                 vfta[i] |= adapter->active_vlans[word] >> bits;
4642
4643                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(vfta_offset + i), vfta[i]);
4644         }
4645 }
4646
4647 static void ixgbe_vlan_promisc_disable(struct ixgbe_adapter *adapter)
4648 {
4649         struct ixgbe_hw *hw = &adapter->hw;
4650         u32 vlnctrl, i;
4651
4652         /* Set VLAN filtering to enabled */
4653         vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
4654         vlnctrl |= IXGBE_VLNCTRL_VFE;
4655         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
4656
4657         if (!(adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) ||
4658             hw->mac.type == ixgbe_mac_82598EB)
4659                 return;
4660
4661         /* We are not in VLAN promisc, nothing to do */
4662         if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
4663                 return;
4664
4665         /* Set flag so we don't redo unnecessary work */
4666         adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC;
4667
4668         for (i = 0; i < hw->mac.vft_size; i += VFTA_BLOCK_SIZE)
4669                 ixgbe_scrub_vfta(adapter, i);
4670 }
4671
4672 static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
4673 {
4674         u16 vid = 1;
4675
4676         ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
4677
4678         for_each_set_bit_from(vid, adapter->active_vlans, VLAN_N_VID)
4679                 ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
4680 }
4681
4682 /**
4683  * ixgbe_write_mc_addr_list - write multicast addresses to MTA
4684  * @netdev: network interface device structure
4685  *
4686  * Writes multicast address list to the MTA hash table.
4687  * Returns: -ENOMEM on failure
4688  *                0 on no addresses written
4689  *                X on writing X addresses to MTA
4690  **/
4691 static int ixgbe_write_mc_addr_list(struct net_device *netdev)
4692 {
4693         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4694         struct ixgbe_hw *hw = &adapter->hw;
4695
4696         if (!netif_running(netdev))
4697                 return 0;
4698
4699         if (hw->mac.ops.update_mc_addr_list)
4700                 hw->mac.ops.update_mc_addr_list(hw, netdev);
4701         else
4702                 return -ENOMEM;
4703
4704 #ifdef CONFIG_PCI_IOV
4705         ixgbe_restore_vf_multicasts(adapter);
4706 #endif
4707
4708         return netdev_mc_count(netdev);
4709 }
4710
4711 #ifdef CONFIG_PCI_IOV
4712 void ixgbe_full_sync_mac_table(struct ixgbe_adapter *adapter)
4713 {
4714         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4715         struct ixgbe_hw *hw = &adapter->hw;
4716         int i;
4717
4718         for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4719                 mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED;
4720
4721                 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4722                         hw->mac.ops.set_rar(hw, i,
4723                                             mac_table->addr,
4724                                             mac_table->pool,
4725                                             IXGBE_RAH_AV);
4726                 else
4727                         hw->mac.ops.clear_rar(hw, i);
4728         }
4729 }
4730
4731 #endif
4732 static void ixgbe_sync_mac_table(struct ixgbe_adapter *adapter)
4733 {
4734         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4735         struct ixgbe_hw *hw = &adapter->hw;
4736         int i;
4737
4738         for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4739                 if (!(mac_table->state & IXGBE_MAC_STATE_MODIFIED))
4740                         continue;
4741
4742                 mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED;
4743
4744                 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4745                         hw->mac.ops.set_rar(hw, i,
4746                                             mac_table->addr,
4747                                             mac_table->pool,
4748                                             IXGBE_RAH_AV);
4749                 else
4750                         hw->mac.ops.clear_rar(hw, i);
4751         }
4752 }
4753
4754 static void ixgbe_flush_sw_mac_table(struct ixgbe_adapter *adapter)
4755 {
4756         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4757         struct ixgbe_hw *hw = &adapter->hw;
4758         int i;
4759
4760         for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4761                 mac_table->state |= IXGBE_MAC_STATE_MODIFIED;
4762                 mac_table->state &= ~IXGBE_MAC_STATE_IN_USE;
4763         }
4764
4765         ixgbe_sync_mac_table(adapter);
4766 }
4767
4768 static int ixgbe_available_rars(struct ixgbe_adapter *adapter, u16 pool)
4769 {
4770         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4771         struct ixgbe_hw *hw = &adapter->hw;
4772         int i, count = 0;
4773
4774         for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4775                 /* do not count default RAR as available */
4776                 if (mac_table->state & IXGBE_MAC_STATE_DEFAULT)
4777                         continue;
4778
4779                 /* only count unused and addresses that belong to us */
4780                 if (mac_table->state & IXGBE_MAC_STATE_IN_USE) {
4781                         if (mac_table->pool != pool)
4782                                 continue;
4783                 }
4784
4785                 count++;
4786         }
4787
4788         return count;
4789 }
4790
4791 /* this function destroys the first RAR entry */
4792 static void ixgbe_mac_set_default_filter(struct ixgbe_adapter *adapter)
4793 {
4794         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4795         struct ixgbe_hw *hw = &adapter->hw;
4796
4797         memcpy(&mac_table->addr, hw->mac.addr, ETH_ALEN);
4798         mac_table->pool = VMDQ_P(0);
4799
4800         mac_table->state = IXGBE_MAC_STATE_DEFAULT | IXGBE_MAC_STATE_IN_USE;
4801
4802         hw->mac.ops.set_rar(hw, 0, mac_table->addr, mac_table->pool,
4803                             IXGBE_RAH_AV);
4804 }
4805
4806 int ixgbe_add_mac_filter(struct ixgbe_adapter *adapter,
4807                          const u8 *addr, u16 pool)
4808 {
4809         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4810         struct ixgbe_hw *hw = &adapter->hw;
4811         int i;
4812
4813         if (is_zero_ether_addr(addr))
4814                 return -EINVAL;
4815
4816         for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4817                 if (mac_table->state & IXGBE_MAC_STATE_IN_USE)
4818                         continue;
4819
4820                 ether_addr_copy(mac_table->addr, addr);
4821                 mac_table->pool = pool;
4822
4823                 mac_table->state |= IXGBE_MAC_STATE_MODIFIED |
4824                                     IXGBE_MAC_STATE_IN_USE;
4825
4826                 ixgbe_sync_mac_table(adapter);
4827
4828                 return i;
4829         }
4830
4831         return -ENOMEM;
4832 }
4833
4834 int ixgbe_del_mac_filter(struct ixgbe_adapter *adapter,
4835                          const u8 *addr, u16 pool)
4836 {
4837         struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0];
4838         struct ixgbe_hw *hw = &adapter->hw;
4839         int i;
4840
4841         if (is_zero_ether_addr(addr))
4842                 return -EINVAL;
4843
4844         /* search table for addr, if found clear IN_USE flag and sync */
4845         for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) {
4846                 /* we can only delete an entry if it is in use */
4847                 if (!(mac_table->state & IXGBE_MAC_STATE_IN_USE))
4848                         continue;
4849                 /* we only care about entries that belong to the given pool */
4850                 if (mac_table->pool != pool)
4851                         continue;
4852                 /* we only care about a specific MAC address */
4853                 if (!ether_addr_equal(addr, mac_table->addr))
4854                         continue;
4855
4856                 mac_table->state |= IXGBE_MAC_STATE_MODIFIED;
4857                 mac_table->state &= ~IXGBE_MAC_STATE_IN_USE;
4858
4859                 ixgbe_sync_mac_table(adapter);
4860
4861                 return 0;
4862         }
4863
4864         return -ENOMEM;
4865 }
4866
4867 /**
4868  * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
4869  * @netdev: network interface device structure
4870  * @vfn: pool to associate with unicast addresses
4871  *
4872  * Writes unicast address list to the RAR table.
4873  * Returns: -ENOMEM on failure/insufficient address space
4874  *                0 on no addresses written
4875  *                X on writing X addresses to the RAR table
4876  **/
4877 static int ixgbe_write_uc_addr_list(struct net_device *netdev, int vfn)
4878 {
4879         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4880         int count = 0;
4881
4882         /* return ENOMEM indicating insufficient memory for addresses */
4883         if (netdev_uc_count(netdev) > ixgbe_available_rars(adapter, vfn))
4884                 return -ENOMEM;
4885
4886         if (!netdev_uc_empty(netdev)) {
4887                 struct netdev_hw_addr *ha;
4888                 netdev_for_each_uc_addr(ha, netdev) {
4889                         ixgbe_del_mac_filter(adapter, ha->addr, vfn);
4890                         ixgbe_add_mac_filter(adapter, ha->addr, vfn);
4891                         count++;
4892                 }
4893         }
4894         return count;
4895 }
4896
4897 static int ixgbe_uc_sync(struct net_device *netdev, const unsigned char *addr)
4898 {
4899         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4900         int ret;
4901
4902         ret = ixgbe_add_mac_filter(adapter, addr, VMDQ_P(0));
4903
4904         return min_t(int, ret, 0);
4905 }
4906
4907 static int ixgbe_uc_unsync(struct net_device *netdev, const unsigned char *addr)
4908 {
4909         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4910
4911         ixgbe_del_mac_filter(adapter, addr, VMDQ_P(0));
4912
4913         return 0;
4914 }
4915
4916 /**
4917  * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
4918  * @netdev: network interface device structure
4919  *
4920  * The set_rx_method entry point is called whenever the unicast/multicast
4921  * address list or the network interface flags are updated.  This routine is
4922  * responsible for configuring the hardware for proper unicast, multicast and
4923  * promiscuous mode.
4924  **/
4925 void ixgbe_set_rx_mode(struct net_device *netdev)
4926 {
4927         struct ixgbe_adapter *adapter = netdev_priv(netdev);
4928         struct ixgbe_hw *hw = &adapter->hw;
4929         u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
4930         netdev_features_t features = netdev->features;
4931         int count;
4932
4933         /* Check for Promiscuous and All Multicast modes */
4934         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4935
4936         /* set all bits that we expect to always be set */
4937         fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
4938         fctrl |= IXGBE_FCTRL_BAM;
4939         fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
4940         fctrl |= IXGBE_FCTRL_PMCF;
4941
4942         /* clear the bits we are changing the status of */
4943         fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
4944         if (netdev->flags & IFF_PROMISC) {
4945                 hw->addr_ctrl.user_set_promisc = true;
4946                 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
4947                 vmolr |= IXGBE_VMOLR_MPE;
4948                 features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
4949         } else {
4950                 if (netdev->flags & IFF_ALLMULTI) {
4951                         fctrl |= IXGBE_FCTRL_MPE;
4952                         vmolr |= IXGBE_VMOLR_MPE;
4953                 }
4954                 hw->addr_ctrl.user_set_promisc = false;
4955         }
4956
4957         /*
4958          * Write addresses to available RAR registers, if there is not
4959          * sufficient space to store all the addresses then enable
4960          * unicast promiscuous mode
4961          */
4962         if (__dev_uc_sync(netdev, ixgbe_uc_sync, ixgbe_uc_unsync)) {
4963                 fctrl |= IXGBE_FCTRL_UPE;
4964                 vmolr |= IXGBE_VMOLR_ROPE;
4965         }
4966
4967         /* Write addresses to the MTA, if the attempt fails
4968          * then we should just turn on promiscuous mode so
4969          * that we can at least receive multicast traffic
4970          */
4971         count = ixgbe_write_mc_addr_list(netdev);
4972         if (count < 0) {
4973                 fctrl |= IXGBE_FCTRL_MPE;
4974                 vmolr |= IXGBE_VMOLR_MPE;
4975         } else if (count) {
4976                 vmolr |= IXGBE_VMOLR_ROMPE;
4977         }
4978
4979         if (hw->mac.type != ixgbe_mac_82598EB) {
4980                 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
4981                          ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
4982                            IXGBE_VMOLR_ROPE);
4983                 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
4984         }
4985
4986         /* This is useful for sniffing bad packets. */
4987         if (features & NETIF_F_RXALL) {
4988                 /* UPE and MPE will be handled by normal PROMISC logic
4989                  * in e1000e_set_rx_mode */
4990                 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
4991                           IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
4992                           IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
4993
4994                 fctrl &= ~(IXGBE_FCTRL_DPF);
4995                 /* NOTE:  VLAN filtering is disabled by setting PROMISC */
4996         }
4997
4998         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4999
5000         if (features & NETIF_F_HW_VLAN_CTAG_RX)
5001                 ixgbe_vlan_strip_enable(adapter);
5002         else
5003                 ixgbe_vlan_strip_disable(adapter);
5004
5005         if (features & NETIF_F_HW_VLAN_CTAG_FILTER)
5006                 ixgbe_vlan_promisc_disable(adapter);
5007         else
5008                 ixgbe_vlan_promisc_enable(adapter);
5009 }
5010
5011 static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
5012 {
5013         int q_idx;
5014
5015         for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
5016                 napi_enable(&adapter->q_vector[q_idx]->napi);
5017 }
5018
5019 static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
5020 {
5021         int q_idx;
5022
5023         for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
5024                 napi_disable(&adapter->q_vector[q_idx]->napi);
5025 }
5026
5027 static void ixgbe_clear_udp_tunnel_port(struct ixgbe_adapter *adapter, u32 mask)
5028 {
5029         struct ixgbe_hw *hw = &adapter->hw;
5030         u32 vxlanctrl;
5031
5032         if (!(adapter->flags & (IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE |
5033                                 IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)))
5034                 return;
5035
5036         vxlanctrl = IXGBE_READ_REG(hw, IXGBE_VXLANCTRL) & ~mask;
5037         IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, vxlanctrl);
5038
5039         if (mask & IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK)
5040                 adapter->vxlan_port = 0;
5041
5042         if (mask & IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK)
5043                 adapter->geneve_port = 0;
5044 }
5045
5046 #ifdef CONFIG_IXGBE_DCB
5047 /**
5048  * ixgbe_configure_dcb - Configure DCB hardware
5049  * @adapter: ixgbe adapter struct
5050  *
5051  * This is called by the driver on open to configure the DCB hardware.
5052  * This is also called by the gennetlink interface when reconfiguring
5053  * the DCB state.
5054  */
5055 static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
5056 {
5057         struct ixgbe_hw *hw = &adapter->hw;
5058         int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
5059
5060         if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
5061                 if (hw->mac.type == ixgbe_mac_82598EB)
5062                         netif_set_gso_max_size(adapter->netdev, 65536);
5063                 return;
5064         }
5065
5066         if (hw->mac.type == ixgbe_mac_82598EB)
5067                 netif_set_gso_max_size(adapter->netdev, 32768);
5068
5069 #ifdef IXGBE_FCOE
5070         if (adapter->netdev->features & NETIF_F_FCOE_MTU)
5071                 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
5072 #endif
5073
5074         /* reconfigure the hardware */
5075         if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
5076                 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
5077                                                 DCB_TX_CONFIG);
5078                 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
5079                                                 DCB_RX_CONFIG);
5080                 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
5081         } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
5082                 ixgbe_dcb_hw_ets(&adapter->hw,
5083                                  adapter->ixgbe_ieee_ets,
5084                                  max_frame);
5085                 ixgbe_dcb_hw_pfc_config(&adapter->hw,
5086                                         adapter->ixgbe_ieee_pfc->pfc_en,
5087                                         adapter->ixgbe_ieee_ets->prio_tc);
5088         }
5089
5090         /* Enable RSS Hash per TC */
5091         if (hw->mac.type != ixgbe_mac_82598EB) {
5092                 u32 msb = 0;
5093                 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
5094
5095                 while (rss_i) {
5096                         msb++;
5097                         rss_i >>= 1;
5098                 }
5099
5100                 /* write msb to all 8 TCs in one write */
5101                 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
5102         }
5103 }
5104 #endif
5105
5106 /* Additional bittime to account for IXGBE framing */
5107 #define IXGBE_ETH_FRAMING 20
5108
5109 /**
5110  * ixgbe_hpbthresh - calculate high water mark for flow control
5111  *
5112  * @adapter: board private structure to calculate for
5113  * @pb: packet buffer to calculate
5114  */
5115 static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
5116 {
5117         struct ixgbe_hw *hw = &adapter->hw;
5118         struct net_device *dev = adapter->netdev;
5119         int link, tc, kb, marker;
5120         u32 dv_id, rx_pba;
5121
5122         /* Calculate max LAN frame size */
5123         tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
5124
5125 #ifdef IXGBE_FCOE
5126         /* FCoE traffic class uses FCOE jumbo frames */
5127         if ((dev->features & NETIF_F_FCOE_MTU) &&
5128             (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
5129             (pb == ixgbe_fcoe_get_tc(adapter)))
5130                 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
5131 #endif
5132
5133         /* Calculate delay value for device */
5134         switch (hw->mac.type) {
5135         case ixgbe_mac_X540:
5136         case ixgbe_mac_X550:
5137         case ixgbe_mac_X550EM_x:
5138         case ixgbe_mac_x550em_a:
5139                 dv_id = IXGBE_DV_X540(link, tc);
5140                 break;
5141         default:
5142                 dv_id = IXGBE_DV(link, tc);
5143                 break;
5144         }
5145
5146         /* Loopback switch introduces additional latency */
5147         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
5148                 dv_id += IXGBE_B2BT(tc);
5149
5150         /* Delay value is calculated in bit times convert to KB */
5151         kb = IXGBE_BT2KB(dv_id);
5152         rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
5153
5154         marker = rx_pba - kb;
5155
5156         /* It is possible that the packet buffer is not large enough
5157          * to provide required headroom. In this case throw an error
5158          * to user and a do the best we can.
5159          */
5160         if (marker < 0) {
5161                 e_warn(drv, "Packet Buffer(%i) can not provide enough"
5162                             "headroom to support flow control."
5163                             "Decrease MTU or number of traffic classes\n", pb);
5164                 marker = tc + 1;
5165         }
5166
5167         return marker;
5168 }
5169
5170 /**
5171  * ixgbe_lpbthresh - calculate low water mark for for flow control
5172  *
5173  * @adapter: board private structure to calculate for
5174  * @pb: packet buffer to calculate
5175  */
5176 static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter, int pb)
5177 {
5178         struct ixgbe_hw *hw = &adapter->hw;
5179         struct net_device *dev = adapter->netdev;
5180         int tc;
5181         u32 dv_id;
5182
5183         /* Calculate max LAN frame size */
5184         tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
5185
5186 #ifdef IXGBE_FCOE
5187         /* FCoE traffic class uses FCOE jumbo frames */
5188         if ((dev->features & NETIF_F_FCOE_MTU) &&
5189             (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
5190             (pb == netdev_get_prio_tc_map(dev, adapter->fcoe.up)))
5191                 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
5192 #endif
5193
5194         /* Calculate delay value for device */
5195         switch (hw->mac.type) {
5196         case ixgbe_mac_X540:
5197         case ixgbe_mac_X550:
5198         case ixgbe_mac_X550EM_x:
5199         case ixgbe_mac_x550em_a:
5200                 dv_id = IXGBE_LOW_DV_X540(tc);
5201                 break;
5202         default:
5203                 dv_id = IXGBE_LOW_DV(tc);
5204                 break;
5205         }
5206
5207         /* Delay value is calculated in bit times convert to KB */
5208         return IXGBE_BT2KB(dv_id);
5209 }
5210
5211 /*
5212  * ixgbe_pbthresh_setup - calculate and setup high low water marks
5213  */
5214 static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
5215 {
5216         struct ixgbe_hw *hw = &adapter->hw;
5217         int num_tc = adapter->hw_tcs;
5218         int i;
5219
5220         if (!num_tc)
5221                 num_tc = 1;
5222
5223         for (i = 0; i < num_tc; i++) {
5224                 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
5225                 hw->fc.low_water[i] = ixgbe_lpbthresh(adapter, i);
5226
5227                 /* Low water marks must not be larger than high water marks */
5228                 if (hw->fc.low_water[i] > hw->fc.high_water[i])
5229                         hw->fc.low_water[i] = 0;
5230         }
5231
5232         for (; i < MAX_TRAFFIC_CLASS; i++)
5233                 hw->fc.high_water[i] = 0;
5234 }
5235
5236 static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
5237 {
5238         struct ixgbe_hw *hw = &adapter->hw;
5239         int hdrm;
5240         u8 tc = adapter->hw_tcs;
5241
5242         if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
5243             adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
5244                 hdrm = 32 << adapter->fdir_pballoc;
5245         else
5246                 hdrm = 0;
5247
5248         hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
5249         ixgbe_pbthresh_setup(adapter);
5250 }
5251
5252 static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
5253 {
5254         struct ixgbe_hw *hw = &adapter->hw;
5255         struct hlist_node *node2;
5256         struct ixgbe_fdir_filter *filter;
5257
5258         spin_lock(&adapter->fdir_perfect_lock);
5259
5260         if (!hlist_empty(&adapter->fdir_filter_list))
5261                 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
5262
5263         hlist_for_each_entry_safe(filter, node2,
5264                                   &adapter->fdir_filter_list, fdir_node) {
5265                 ixgbe_fdir_write_perfect_filter_82599(hw,
5266                                 &filter->filter,
5267                                 filter->sw_idx,
5268                                 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
5269                                 IXGBE_FDIR_DROP_QUEUE :
5270                                 adapter->rx_ring[filter->action]->reg_idx);
5271         }
5272
5273         spin_unlock(&adapter->fdir_perfect_lock);
5274 }
5275
5276 static void ixgbe_macvlan_set_rx_mode(struct net_device *dev, unsigned int pool,
5277                                       struct ixgbe_adapter *adapter)
5278 {
5279         struct ixgbe_hw *hw = &adapter->hw;
5280         u32 vmolr;
5281
5282         /* No unicast promiscuous support for VMDQ devices. */
5283         vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool));
5284         vmolr |= (IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
5285
5286         /* clear the affected bit */
5287         vmolr &= ~IXGBE_VMOLR_MPE;
5288
5289         if (dev->flags & IFF_ALLMULTI) {
5290                 vmolr |= IXGBE_VMOLR_MPE;
5291         } else {
5292                 vmolr |= IXGBE_VMOLR_ROMPE;
5293                 hw->mac.ops.update_mc_addr_list(hw, dev);
5294         }
5295         ixgbe_write_uc_addr_list(adapter->netdev, pool);
5296         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr);
5297 }
5298
5299 /**
5300  * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
5301  * @rx_ring: ring to free buffers from
5302  **/
5303 static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
5304 {
5305         u16 i = rx_ring->next_to_clean;
5306         struct ixgbe_rx_buffer *rx_buffer = &rx_ring->rx_buffer_info[i];
5307
5308         /* Free all the Rx ring sk_buffs */
5309         while (i != rx_ring->next_to_alloc) {
5310                 if (rx_buffer->skb) {
5311                         struct sk_buff *skb = rx_buffer->skb;
5312                         if (IXGBE_CB(skb)->page_released)
5313                                 dma_unmap_page_attrs(rx_ring->dev,
5314                                                      IXGBE_CB(skb)->dma,
5315                                                      ixgbe_rx_pg_size(rx_ring),
5316                                                      DMA_FROM_DEVICE,
5317                                                      IXGBE_RX_DMA_ATTR);
5318                         dev_kfree_skb(skb);
5319                 }
5320
5321                 /* Invalidate cache lines that may have been written to by
5322                  * device so that we avoid corrupting memory.
5323                  */
5324                 dma_sync_single_range_for_cpu(rx_ring->dev,
5325                                               rx_buffer->dma,
5326                                               rx_buffer->page_offset,
5327                                               ixgbe_rx_bufsz(rx_ring),
5328                                               DMA_FROM_DEVICE);
5329
5330                 /* free resources associated with mapping */
5331                 dma_unmap_page_attrs(rx_ring->dev, rx_buffer->dma,
5332                                      ixgbe_rx_pg_size(rx_ring),
5333                                      DMA_FROM_DEVICE,
5334                                      IXGBE_RX_DMA_ATTR);
5335                 __page_frag_cache_drain(rx_buffer->page,
5336                                         rx_buffer->pagecnt_bias);
5337
5338                 i++;
5339                 rx_buffer++;
5340                 if (i == rx_ring->count) {
5341                         i = 0;
5342                         rx_buffer = rx_ring->rx_buffer_info;
5343                 }
5344         }
5345
5346         rx_ring->next_to_alloc = 0;
5347         rx_ring->next_to_clean = 0;
5348         rx_ring->next_to_use = 0;
5349 }
5350
5351 static int ixgbe_fwd_ring_up(struct net_device *vdev,
5352                              struct ixgbe_fwd_adapter *accel)
5353 {
5354         struct ixgbe_adapter *adapter = accel->real_adapter;
5355         int i, baseq, err;
5356
5357         if (!test_bit(accel->pool, adapter->fwd_bitmask))
5358                 return 0;
5359
5360         baseq = accel->pool * adapter->num_rx_queues_per_pool;
5361         netdev_dbg(vdev, "pool %i:%i queues %i:%i\n",
5362                    accel->pool, adapter->num_rx_pools,
5363                    baseq, baseq + adapter->num_rx_queues_per_pool);
5364
5365         accel->netdev = vdev;
5366         accel->rx_base_queue = baseq;
5367         accel->tx_base_queue = baseq;
5368
5369         for (i = 0; i < adapter->num_rx_queues_per_pool; i++)
5370                 adapter->rx_ring[baseq + i]->netdev = vdev;
5371
5372         /* Guarantee all rings are updated before we update the
5373          * MAC address filter.
5374          */
5375         wmb();
5376
5377         /* ixgbe_add_mac_filter will return an index if it succeeds, so we
5378          * need to only treat it as an error value if it is negative.
5379          */
5380         err = ixgbe_add_mac_filter(adapter, vdev->dev_addr,
5381                                    VMDQ_P(accel->pool));
5382         if (err >= 0) {
5383                 ixgbe_macvlan_set_rx_mode(vdev, accel->pool, adapter);
5384                 return 0;
5385         }
5386
5387         for (i = 0; i < adapter->num_rx_queues_per_pool; i++)
5388                 adapter->rx_ring[baseq + i]->netdev = NULL;
5389
5390         return err;
5391 }
5392
5393 static int ixgbe_upper_dev_walk(struct net_device *upper, void *data)
5394 {
5395         if (netif_is_macvlan(upper)) {
5396                 struct macvlan_dev *dfwd = netdev_priv(upper);
5397                 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
5398
5399                 if (dfwd->fwd_priv)
5400                         ixgbe_fwd_ring_up(upper, vadapter);
5401         }
5402
5403         return 0;
5404 }
5405
5406 static void ixgbe_configure_dfwd(struct ixgbe_adapter *adapter)
5407 {
5408         netdev_walk_all_upper_dev_rcu(adapter->netdev,
5409                                       ixgbe_upper_dev_walk, NULL);
5410 }
5411
5412 static void ixgbe_configure(struct ixgbe_adapter *adapter)
5413 {
5414         struct ixgbe_hw *hw = &adapter->hw;
5415
5416         ixgbe_configure_pb(adapter);
5417 #ifdef CONFIG_IXGBE_DCB
5418         ixgbe_configure_dcb(adapter);
5419 #endif
5420         /*
5421          * We must restore virtualization before VLANs or else
5422          * the VLVF registers will not be populated
5423          */
5424         ixgbe_configure_virtualization(adapter);
5425
5426         ixgbe_set_rx_mode(adapter->netdev);
5427         ixgbe_restore_vlan(adapter);
5428         ixgbe_ipsec_restore(adapter);
5429
5430         switch (hw->mac.type) {
5431         case ixgbe_mac_82599EB:
5432         case ixgbe_mac_X540:
5433                 hw->mac.ops.disable_rx_buff(hw);
5434                 break;
5435         default:
5436                 break;
5437         }
5438
5439         if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
5440                 ixgbe_init_fdir_signature_82599(&adapter->hw,
5441                                                 adapter->fdir_pballoc);
5442         } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
5443                 ixgbe_init_fdir_perfect_82599(&adapter->hw,
5444                                               adapter->fdir_pballoc);
5445                 ixgbe_fdir_filter_restore(adapter);
5446         }
5447
5448         switch (hw->mac.type) {
5449         case ixgbe_mac_82599EB:
5450         case ixgbe_mac_X540:
5451                 hw->mac.ops.enable_rx_buff(hw);
5452                 break;
5453         default:
5454                 break;
5455         }
5456
5457 #ifdef CONFIG_IXGBE_DCA
5458         /* configure DCA */
5459         if (adapter->flags & IXGBE_FLAG_DCA_CAPABLE)
5460                 ixgbe_setup_dca(adapter);
5461 #endif /* CONFIG_IXGBE_DCA */
5462
5463 #ifdef IXGBE_FCOE
5464         /* configure FCoE L2 filters, redirection table, and Rx control */
5465         ixgbe_configure_fcoe(adapter);
5466
5467 #endif /* IXGBE_FCOE */
5468         ixgbe_configure_tx(adapter);
5469         ixgbe_configure_rx(adapter);
5470         ixgbe_configure_dfwd(adapter);
5471 }
5472
5473 /**
5474  * ixgbe_sfp_link_config - set up SFP+ link
5475  * @adapter: pointer to private adapter struct
5476  **/
5477 static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
5478 {
5479         /*
5480          * We are assuming the worst case scenario here, and that
5481          * is that an SFP was inserted/removed after the reset
5482          * but before SFP detection was enabled.  As such the best
5483          * solution is to just start searching as soon as we start
5484          */
5485         if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5486                 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5487
5488         adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5489         adapter->sfp_poll_time = 0;
5490 }
5491
5492 /**
5493  * ixgbe_non_sfp_link_config - set up non-SFP+ link
5494  * @hw: pointer to private hardware struct
5495  *
5496  * Returns 0 on success, negative on failure
5497  **/
5498 static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
5499 {
5500         u32 speed;
5501         bool autoneg, link_up = false;
5502         int ret = IXGBE_ERR_LINK_SETUP;
5503
5504         if (hw->mac.ops.check_link)
5505                 ret = hw->mac.ops.check_link(hw, &speed, &link_up, false);
5506
5507         if (ret)
5508                 return ret;
5509
5510         speed = hw->phy.autoneg_advertised;
5511         if ((!speed) && (hw->mac.ops.get_link_capabilities))
5512                 ret = hw->mac.ops.get_link_capabilities(hw, &speed,
5513                                                         &autoneg);
5514         if (ret)
5515                 return ret;
5516
5517         if (hw->mac.ops.setup_link)
5518                 ret = hw->mac.ops.setup_link(hw, speed, link_up);
5519
5520         return ret;
5521 }
5522
5523 static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
5524 {
5525         struct ixgbe_hw *hw = &adapter->hw;
5526         u32 gpie = 0;
5527
5528         if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
5529                 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
5530                        IXGBE_GPIE_OCD;
5531                 gpie |= IXGBE_GPIE_EIAME;
5532                 /*
5533                  * use EIAM to auto-mask when MSI-X interrupt is asserted
5534                  * this saves a register write for every interrupt
5535                  */
5536                 switch (hw->mac.type) {
5537                 case ixgbe_mac_82598EB:
5538                         IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5539                         break;
5540                 case ixgbe_mac_82599EB:
5541                 case ixgbe_mac_X540:
5542                 case ixgbe_mac_X550:
5543                 case ixgbe_mac_X550EM_x:
5544                 case ixgbe_mac_x550em_a:
5545                 default:
5546                         IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5547                         IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5548                         break;
5549                 }
5550         } else {
5551                 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
5552                  * specifically only auto mask tx and rx interrupts */
5553                 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
5554         }
5555
5556         /* XXX: to interrupt immediately for EICS writes, enable this */
5557         /* gpie |= IXGBE_GPIE_EIMEN; */
5558
5559         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
5560                 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
5561
5562                 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
5563                 case IXGBE_82599_VMDQ_8Q_MASK:
5564                         gpie |= IXGBE_GPIE_VTMODE_16;
5565                         break;
5566                 case IXGBE_82599_VMDQ_4Q_MASK:
5567                         gpie |= IXGBE_GPIE_VTMODE_32;
5568                         break;
5569                 default:
5570                         gpie |= IXGBE_GPIE_VTMODE_64;
5571                         break;
5572                 }
5573         }
5574
5575         /* Enable Thermal over heat sensor interrupt */
5576         if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
5577                 switch (adapter->hw.mac.type) {
5578                 case ixgbe_mac_82599EB:
5579                         gpie |= IXGBE_SDP0_GPIEN_8259X;
5580                         break;
5581                 default:
5582                         break;
5583                 }
5584         }
5585
5586         /* Enable fan failure interrupt */
5587         if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
5588                 gpie |= IXGBE_SDP1_GPIEN(hw);
5589
5590         switch (hw->mac.type) {
5591         case ixgbe_mac_82599EB:
5592                 gpie |= IXGBE_SDP1_GPIEN_8259X | IXGBE_SDP2_GPIEN_8259X;
5593                 break;
5594         case ixgbe_mac_X550EM_x:
5595         case ixgbe_mac_x550em_a:
5596                 gpie |= IXGBE_SDP0_GPIEN_X540;
5597                 break;
5598         default:
5599                 break;
5600         }
5601
5602         IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
5603 }
5604
5605 static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
5606 {
5607         struct ixgbe_hw *hw = &adapter->hw;
5608         int err;
5609         u32 ctrl_ext;
5610
5611         ixgbe_get_hw_control(adapter);
5612         ixgbe_setup_gpie(adapter);
5613
5614         if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
5615                 ixgbe_configure_msix(adapter);
5616         else
5617                 ixgbe_configure_msi_and_legacy(adapter);
5618
5619         /* enable the optics for 82599 SFP+ fiber */
5620         if (hw->mac.ops.enable_tx_laser)
5621                 hw->mac.ops.enable_tx_laser(hw);
5622
5623         if (hw->phy.ops.set_phy_power)
5624                 hw->phy.ops.set_phy_power(hw, true);
5625
5626         smp_mb__before_atomic();
5627         clear_bit(__IXGBE_DOWN, &adapter->state);
5628         ixgbe_napi_enable_all(adapter);
5629
5630         if (ixgbe_is_sfp(hw)) {
5631                 ixgbe_sfp_link_config(adapter);
5632         } else {
5633                 err = ixgbe_non_sfp_link_config(hw);
5634                 if (err)
5635                         e_err(probe, "link_config FAILED %d\n", err);
5636         }
5637
5638         /* clear any pending interrupts, may auto mask */
5639         IXGBE_READ_REG(hw, IXGBE_EICR);
5640         ixgbe_irq_enable(adapter, true, true);
5641
5642         /*
5643          * If this adapter has a fan, check to see if we had a failure
5644          * before we enabled the interrupt.
5645          */
5646         if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
5647                 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
5648                 if (esdp & IXGBE_ESDP_SDP1)
5649                         e_crit(drv, "Fan has stopped, replace the adapter\n");
5650         }
5651
5652         /* bring the link up in the watchdog, this could race with our first
5653          * link up interrupt but shouldn't be a problem */
5654         adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5655         adapter->link_check_timeout = jiffies;
5656         mod_timer(&adapter->service_timer, jiffies);
5657
5658         /* Set PF Reset Done bit so PF/VF Mail Ops can work */
5659         ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
5660         ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
5661         IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
5662 }
5663
5664 void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
5665 {
5666         WARN_ON(in_interrupt());
5667         /* put off any impending NetWatchDogTimeout */
5668         netif_trans_update(adapter->netdev);
5669
5670         while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
5671                 usleep_range(1000, 2000);
5672         if (adapter->hw.phy.type == ixgbe_phy_fw)
5673                 ixgbe_watchdog_link_is_down(adapter);
5674         ixgbe_down(adapter);
5675         /*
5676          * If SR-IOV enabled then wait a bit before bringing the adapter
5677          * back up to give the VFs time to respond to the reset.  The
5678          * two second wait is based upon the watchdog timer cycle in
5679          * the VF driver.
5680          */
5681         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
5682                 msleep(2000);
5683         ixgbe_up(adapter);
5684         clear_bit(__IXGBE_RESETTING, &adapter->state);
5685 }
5686
5687 void ixgbe_up(struct ixgbe_adapter *adapter)
5688 {
5689         /* hardware has been reset, we need to reload some things */
5690         ixgbe_configure(adapter);
5691
5692         ixgbe_up_complete(adapter);
5693 }
5694
5695 void ixgbe_reset(struct ixgbe_adapter *adapter)
5696 {
5697         struct ixgbe_hw *hw = &adapter->hw;
5698         struct net_device *netdev = adapter->netdev;
5699         int err;
5700
5701         if (ixgbe_removed(hw->hw_addr))
5702                 return;
5703         /* lock SFP init bit to prevent race conditions with the watchdog */
5704         while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5705                 usleep_range(1000, 2000);
5706
5707         /* clear all SFP and link config related flags while holding SFP_INIT */
5708         adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
5709                              IXGBE_FLAG2_SFP_NEEDS_RESET);
5710         adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5711
5712         err = hw->mac.ops.init_hw(hw);
5713         switch (err) {
5714         case 0:
5715         case IXGBE_ERR_SFP_NOT_PRESENT:
5716         case IXGBE_ERR_SFP_NOT_SUPPORTED:
5717                 break;
5718         case IXGBE_ERR_MASTER_REQUESTS_PENDING:
5719                 e_dev_err("master disable timed out\n");
5720                 break;
5721         case IXGBE_ERR_EEPROM_VERSION:
5722                 /* We are running on a pre-production device, log a warning */
5723                 e_dev_warn("This device is a pre-production adapter/LOM. "
5724                            "Please be aware there may be issues associated with "
5725                            "your hardware.  If you are experiencing problems "
5726                            "please contact your Intel or hardware "
5727                            "representative who provided you with this "
5728                            "hardware.\n");
5729                 break;
5730         default:
5731                 e_dev_err("Hardware Error: %d\n", err);
5732         }
5733
5734         clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5735
5736         /* flush entries out of MAC table */
5737         ixgbe_flush_sw_mac_table(adapter);
5738         __dev_uc_unsync(netdev, NULL);
5739
5740         /* do not flush user set addresses */
5741         ixgbe_mac_set_default_filter(adapter);
5742
5743         /* update SAN MAC vmdq pool selection */
5744         if (hw->mac.san_mac_rar_index)
5745                 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
5746
5747         if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
5748                 ixgbe_ptp_reset(adapter);
5749
5750         if (hw->phy.ops.set_phy_power) {
5751                 if (!netif_running(adapter->netdev) && !adapter->wol)
5752                         hw->phy.ops.set_phy_power(hw, false);
5753                 else
5754                         hw->phy.ops.set_phy_power(hw, true);
5755         }
5756 }
5757
5758 /**
5759  * ixgbe_clean_tx_ring - Free Tx Buffers
5760  * @tx_ring: ring to be cleaned
5761  **/
5762 static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
5763 {
5764         u16 i = tx_ring->next_to_clean;
5765         struct ixgbe_tx_buffer *tx_buffer = &tx_ring->tx_buffer_info[i];
5766
5767         while (i != tx_ring->next_to_use) {
5768                 union ixgbe_adv_tx_desc *eop_desc, *tx_desc;
5769
5770                 /* Free all the Tx ring sk_buffs */
5771                 if (ring_is_xdp(tx_ring))
5772                         page_frag_free(tx_buffer->data);
5773                 else
5774                         dev_kfree_skb_any(tx_buffer->skb);
5775
5776                 /* unmap skb header data */
5777                 dma_unmap_single(tx_ring->dev,
5778                                  dma_unmap_addr(tx_buffer, dma),
5779                                  dma_unmap_len(tx_buffer, len),
5780                                  DMA_TO_DEVICE);
5781
5782                 /* check for eop_desc to determine the end of the packet */
5783                 eop_desc = tx_buffer->next_to_watch;
5784                 tx_desc = IXGBE_TX_DESC(tx_ring, i);
5785
5786                 /* unmap remaining buffers */
5787                 while (tx_desc != eop_desc) {
5788                         tx_buffer++;
5789                         tx_desc++;
5790                         i++;
5791                         if (unlikely(i == tx_ring->count)) {
5792                                 i = 0;
5793                                 tx_buffer = tx_ring->tx_buffer_info;
5794                                 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
5795                         }
5796
5797                         /* unmap any remaining paged data */
5798                         if (dma_unmap_len(tx_buffer, len))
5799                                 dma_unmap_page(tx_ring->dev,
5800                                                dma_unmap_addr(tx_buffer, dma),
5801                                                dma_unmap_len(tx_buffer, len),
5802                                                DMA_TO_DEVICE);
5803                 }
5804
5805                 /* move us one more past the eop_desc for start of next pkt */
5806                 tx_buffer++;
5807                 i++;
5808                 if (unlikely(i == tx_ring->count)) {
5809                         i = 0;
5810                         tx_buffer = tx_ring->tx_buffer_info;
5811                 }
5812         }
5813
5814         /* reset BQL for queue */
5815         if (!ring_is_xdp(tx_ring))
5816                 netdev_tx_reset_queue(txring_txq(tx_ring));
5817
5818         /* reset next_to_use and next_to_clean */
5819         tx_ring->next_to_use = 0;
5820         tx_ring->next_to_clean = 0;
5821 }
5822
5823 /**
5824  * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
5825  * @adapter: board private structure
5826  **/
5827 static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
5828 {
5829         int i;
5830
5831         for (i = 0; i < adapter->num_rx_queues; i++)
5832                 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
5833 }
5834
5835 /**
5836  * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
5837  * @adapter: board private structure
5838  **/
5839 static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
5840 {
5841         int i;
5842
5843         for (i = 0; i < adapter->num_tx_queues; i++)
5844                 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
5845         for (i = 0; i < adapter->num_xdp_queues; i++)
5846                 ixgbe_clean_tx_ring(adapter->xdp_ring[i]);
5847 }
5848
5849 static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
5850 {
5851         struct hlist_node *node2;
5852         struct ixgbe_fdir_filter *filter;
5853
5854         spin_lock(&adapter->fdir_perfect_lock);
5855
5856         hlist_for_each_entry_safe(filter, node2,
5857                                   &adapter->fdir_filter_list, fdir_node) {
5858                 hlist_del(&filter->fdir_node);
5859                 kfree(filter);
5860         }
5861         adapter->fdir_filter_count = 0;
5862
5863         spin_unlock(&adapter->fdir_perfect_lock);
5864 }
5865
5866 void ixgbe_down(struct ixgbe_adapter *adapter)
5867 {
5868         struct net_device *netdev = adapter->netdev;
5869         struct ixgbe_hw *hw = &adapter->hw;
5870         int i;
5871
5872         /* signal that we are down to the interrupt handler */
5873         if (test_and_set_bit(__IXGBE_DOWN, &adapter->state))
5874                 return; /* do nothing if already down */
5875
5876         /* disable receives */
5877         hw->mac.ops.disable_rx(hw);
5878
5879         /* disable all enabled rx queues */
5880         for (i = 0; i < adapter->num_rx_queues; i++)
5881                 /* this call also flushes the previous write */
5882                 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
5883
5884         usleep_range(10000, 20000);
5885
5886         /* synchronize_sched() needed for pending XDP buffers to drain */
5887         if (adapter->xdp_ring[0])
5888                 synchronize_sched();
5889         netif_tx_stop_all_queues(netdev);
5890
5891         /* call carrier off first to avoid false dev_watchdog timeouts */
5892         netif_carrier_off(netdev);
5893         netif_tx_disable(netdev);
5894
5895         ixgbe_irq_disable(adapter);
5896
5897         ixgbe_napi_disable_all(adapter);
5898
5899         clear_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
5900         adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5901         adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5902
5903         del_timer_sync(&adapter->service_timer);
5904
5905         if (adapter->num_vfs) {
5906                 /* Clear EITR Select mapping */
5907                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
5908
5909                 /* Mark all the VFs as inactive */
5910                 for (i = 0 ; i < adapter->num_vfs; i++)
5911                         adapter->vfinfo[i].clear_to_send = false;
5912
5913                 /* ping all the active vfs to let them know we are going down */
5914                 ixgbe_ping_all_vfs(adapter);
5915
5916                 /* Disable all VFTE/VFRE TX/RX */
5917                 ixgbe_disable_tx_rx(adapter);
5918         }
5919
5920         /* disable transmits in the hardware now that interrupts are off */
5921         for (i = 0; i < adapter->num_tx_queues; i++) {
5922                 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
5923                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
5924         }
5925         for (i = 0; i < adapter->num_xdp_queues; i++) {
5926                 u8 reg_idx = adapter->xdp_ring[i]->reg_idx;
5927
5928                 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
5929         }
5930
5931         /* Disable the Tx DMA engine on 82599 and later MAC */
5932         switch (hw->mac.type) {
5933         case ixgbe_mac_82599EB:
5934         case ixgbe_mac_X540:
5935         case ixgbe_mac_X550:
5936         case ixgbe_mac_X550EM_x:
5937         case ixgbe_mac_x550em_a:
5938                 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
5939                                 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
5940                                  ~IXGBE_DMATXCTL_TE));
5941                 break;
5942         default:
5943                 break;
5944         }
5945
5946         if (!pci_channel_offline(adapter->pdev))
5947                 ixgbe_reset(adapter);
5948
5949         /* power down the optics for 82599 SFP+ fiber */
5950         if (hw->mac.ops.disable_tx_laser)
5951                 hw->mac.ops.disable_tx_laser(hw);
5952
5953         ixgbe_clean_all_tx_rings(adapter);
5954         ixgbe_clean_all_rx_rings(adapter);
5955 }
5956
5957 /**
5958  * ixgbe_eee_capable - helper function to determine EEE support on X550
5959  * @adapter: board private structure
5960  */
5961 static void ixgbe_set_eee_capable(struct ixgbe_adapter *adapter)
5962 {
5963         struct ixgbe_hw *hw = &adapter->hw;
5964
5965         switch (hw->device_id) {
5966         case IXGBE_DEV_ID_X550EM_A_1G_T:
5967         case IXGBE_DEV_ID_X550EM_A_1G_T_L:
5968                 if (!hw->phy.eee_speeds_supported)
5969                         break;
5970                 adapter->flags2 |= IXGBE_FLAG2_EEE_CAPABLE;
5971                 if (!hw->phy.eee_speeds_advertised)
5972                         break;
5973                 adapter->flags2 |= IXGBE_FLAG2_EEE_ENABLED;
5974                 break;
5975         default:
5976                 adapter->flags2 &= ~IXGBE_FLAG2_EEE_CAPABLE;
5977                 adapter->flags2 &= ~IXGBE_FLAG2_EEE_ENABLED;
5978                 break;
5979         }
5980 }
5981
5982 /**
5983  * ixgbe_tx_timeout - Respond to a Tx Hang
5984  * @netdev: network interface device structure
5985  **/
5986 static void ixgbe_tx_timeout(struct net_device *netdev)
5987 {
5988         struct ixgbe_adapter *adapter = netdev_priv(netdev);
5989
5990         /* Do the reset outside of interrupt context */
5991         ixgbe_tx_timeout_reset(adapter);
5992 }
5993
5994 #ifdef CONFIG_IXGBE_DCB
5995 static void ixgbe_init_dcb(struct ixgbe_adapter *adapter)
5996 {
5997         struct ixgbe_hw *hw = &adapter->hw;
5998         struct tc_configuration *tc;
5999         int j;
6000
6001         switch (hw->mac.type) {
6002         case ixgbe_mac_82598EB:
6003         case ixgbe_mac_82599EB:
6004                 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
6005                 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
6006                 break;
6007         case ixgbe_mac_X540:
6008         case ixgbe_mac_X550:
6009                 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
6010                 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
6011                 break;
6012         case ixgbe_mac_X550EM_x:
6013         case ixgbe_mac_x550em_a:
6014         default:
6015                 adapter->dcb_cfg.num_tcs.pg_tcs = DEF_TRAFFIC_CLASS;
6016                 adapter->dcb_cfg.num_tcs.pfc_tcs = DEF_TRAFFIC_CLASS;
6017                 break;
6018         }
6019
6020         /* Configure DCB traffic classes */
6021         for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
6022                 tc = &adapter->dcb_cfg.tc_config[j];
6023                 tc->path[DCB_TX_CONFIG].bwg_id = 0;
6024                 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
6025                 tc->path[DCB_RX_CONFIG].bwg_id = 0;
6026                 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
6027                 tc->dcb_pfc = pfc_disabled;
6028         }
6029
6030         /* Initialize default user to priority mapping, UPx->TC0 */
6031         tc = &adapter->dcb_cfg.tc_config[0];
6032         tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
6033         tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
6034
6035         adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
6036         adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
6037         adapter->dcb_cfg.pfc_mode_enable = false;
6038         adapter->dcb_set_bitmap = 0x00;
6039         if (adapter->flags & IXGBE_FLAG_DCB_CAPABLE)
6040                 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
6041         memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
6042                sizeof(adapter->temp_dcb_cfg));
6043 }
6044 #endif
6045
6046 /**
6047  * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
6048  * @adapter: board private structure to initialize
6049  * @ii: pointer to ixgbe_info for device
6050  *
6051  * ixgbe_sw_init initializes the Adapter private data structure.
6052  * Fields are initialized based on PCI device information and
6053  * OS network device settings (MTU size).
6054  **/
6055 static int ixgbe_sw_init(struct ixgbe_adapter *adapter,
6056                          const struct ixgbe_info *ii)
6057 {
6058         struct ixgbe_hw *hw = &adapter->hw;
6059         struct pci_dev *pdev = adapter->pdev;
6060         unsigned int rss, fdir;
6061         u32 fwsm;
6062         int i;
6063
6064         /* PCI config space info */
6065
6066         hw->vendor_id = pdev->vendor;
6067         hw->device_id = pdev->device;
6068         hw->revision_id = pdev->revision;
6069         hw->subsystem_vendor_id = pdev->subsystem_vendor;
6070         hw->subsystem_device_id = pdev->subsystem_device;
6071
6072         /* get_invariants needs the device IDs */
6073         ii->get_invariants(hw);
6074
6075         /* Set common capability flags and settings */
6076         rss = min_t(int, ixgbe_max_rss_indices(adapter), num_online_cpus());
6077         adapter->ring_feature[RING_F_RSS].limit = rss;
6078         adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
6079         adapter->max_q_vectors = MAX_Q_VECTORS_82599;
6080         adapter->atr_sample_rate = 20;
6081         fdir = min_t(int, IXGBE_MAX_FDIR_INDICES, num_online_cpus());
6082         adapter->ring_feature[RING_F_FDIR].limit = fdir;
6083         adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
6084         adapter->ring_feature[RING_F_VMDQ].limit = 1;
6085 #ifdef CONFIG_IXGBE_DCA
6086         adapter->flags |= IXGBE_FLAG_DCA_CAPABLE;
6087 #endif
6088 #ifdef CONFIG_IXGBE_DCB
6089         adapter->flags |= IXGBE_FLAG_DCB_CAPABLE;
6090         adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
6091 #endif
6092 #ifdef IXGBE_FCOE
6093         adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
6094         adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
6095 #ifdef CONFIG_IXGBE_DCB
6096         /* Default traffic class to use for FCoE */
6097         adapter->fcoe.up = IXGBE_FCOE_DEFTC;
6098 #endif /* CONFIG_IXGBE_DCB */
6099 #endif /* IXGBE_FCOE */
6100
6101         /* initialize static ixgbe jump table entries */
6102         adapter->jump_tables[0] = kzalloc(sizeof(*adapter->jump_tables[0]),
6103                                           GFP_KERNEL);
6104         if (!adapter->jump_tables[0])
6105                 return -ENOMEM;
6106         adapter->jump_tables[0]->mat = ixgbe_ipv4_fields;
6107
6108         for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++)
6109                 adapter->jump_tables[i] = NULL;
6110
6111         adapter->mac_table = kzalloc(sizeof(struct ixgbe_mac_addr) *
6112                                      hw->mac.num_rar_entries,
6113                                      GFP_ATOMIC);
6114         if (!adapter->mac_table)
6115                 return -ENOMEM;
6116
6117         if (ixgbe_init_rss_key(adapter))
6118                 return -ENOMEM;
6119
6120         /* Set MAC specific capability flags and exceptions */
6121         switch (hw->mac.type) {
6122         case ixgbe_mac_82598EB:
6123                 adapter->flags2 &= ~IXGBE_FLAG2_RSC_CAPABLE;
6124
6125                 if (hw->device_id == IXGBE_DEV_ID_82598AT)
6126                         adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
6127
6128                 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
6129                 adapter->ring_feature[RING_F_FDIR].limit = 0;
6130                 adapter->atr_sample_rate = 0;
6131                 adapter->fdir_pballoc = 0;
6132 #ifdef IXGBE_FCOE
6133                 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
6134                 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
6135 #ifdef CONFIG_IXGBE_DCB
6136                 adapter->fcoe.up = 0;
6137 #endif /* IXGBE_DCB */
6138 #endif /* IXGBE_FCOE */
6139                 break;
6140         case ixgbe_mac_82599EB:
6141                 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
6142                         adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
6143                 break;
6144         case ixgbe_mac_X540:
6145                 fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw));
6146                 if (fwsm & IXGBE_FWSM_TS_ENABLED)
6147                         adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
6148                 break;
6149         case ixgbe_mac_x550em_a:
6150                 adapter->flags |= IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE;
6151                 switch (hw->device_id) {
6152                 case IXGBE_DEV_ID_X550EM_A_1G_T:
6153                 case IXGBE_DEV_ID_X550EM_A_1G_T_L:
6154                         adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
6155                         break;
6156                 default:
6157                         break;
6158                 }
6159         /* fall through */
6160         case ixgbe_mac_X550EM_x:
6161 #ifdef CONFIG_IXGBE_DCB
6162                 adapter->flags &= ~IXGBE_FLAG_DCB_CAPABLE;
6163 #endif
6164 #ifdef IXGBE_FCOE
6165                 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
6166 #ifdef CONFIG_IXGBE_DCB
6167                 adapter->fcoe.up = 0;
6168 #endif /* IXGBE_DCB */
6169 #endif /* IXGBE_FCOE */
6170         /* Fall Through */
6171         case ixgbe_mac_X550:
6172                 if (hw->mac.type == ixgbe_mac_X550)
6173                         adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
6174 #ifdef CONFIG_IXGBE_DCA
6175                 adapter->flags &= ~IXGBE_FLAG_DCA_CAPABLE;
6176 #endif
6177                 adapter->flags |= IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE;
6178                 break;
6179         default:
6180                 break;
6181         }
6182
6183 #ifdef IXGBE_FCOE
6184         /* FCoE support exists, always init the FCoE lock */
6185         spin_lock_init(&adapter->fcoe.lock);
6186
6187 #endif
6188         /* n-tuple support exists, always init our spinlock */
6189         spin_lock_init(&adapter->fdir_perfect_lock);
6190
6191 #ifdef CONFIG_IXGBE_DCB
6192         ixgbe_init_dcb(adapter);
6193 #endif
6194
6195         /* default flow control settings */
6196         hw->fc.requested_mode = ixgbe_fc_full;
6197         hw->fc.current_mode = ixgbe_fc_full;    /* init for ethtool output */
6198         ixgbe_pbthresh_setup(adapter);
6199         hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
6200         hw->fc.send_xon = true;
6201         hw->fc.disable_fc_autoneg = ixgbe_device_supports_autoneg_fc(hw);
6202
6203 #ifdef CONFIG_PCI_IOV
6204         if (max_vfs > 0)
6205                 e_dev_warn("Enabling SR-IOV VFs using the max_vfs module parameter is deprecated - please use the pci sysfs interface instead.\n");
6206
6207         /* assign number of SR-IOV VFs */
6208         if (hw->mac.type != ixgbe_mac_82598EB) {
6209                 if (max_vfs > IXGBE_MAX_VFS_DRV_LIMIT) {
6210                         max_vfs = 0;
6211                         e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n");
6212                 }
6213         }
6214 #endif /* CONFIG_PCI_IOV */
6215
6216         /* enable itr by default in dynamic mode */
6217         adapter->rx_itr_setting = 1;
6218         adapter->tx_itr_setting = 1;
6219
6220         /* set default ring sizes */
6221         adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
6222         adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
6223
6224         /* set default work limits */
6225         adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
6226
6227         /* initialize eeprom parameters */
6228         if (ixgbe_init_eeprom_params_generic(hw)) {
6229                 e_dev_err("EEPROM initialization failed\n");
6230                 return -EIO;
6231         }
6232
6233         /* PF holds first pool slot */
6234         set_bit(0, adapter->fwd_bitmask);
6235         set_bit(__IXGBE_DOWN, &adapter->state);
6236
6237         return 0;
6238 }
6239
6240 /**
6241  * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
6242  * @tx_ring:    tx descriptor ring (for a specific queue) to setup
6243  *
6244  * Return 0 on success, negative on failure
6245  **/
6246 int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
6247 {
6248         struct device *dev = tx_ring->dev;
6249         int orig_node = dev_to_node(dev);
6250         int ring_node = -1;
6251         int size;
6252
6253         size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
6254
6255         if (tx_ring->q_vector)
6256                 ring_node = tx_ring->q_vector->numa_node;
6257
6258         tx_ring->tx_buffer_info = vmalloc_node(size, ring_node);
6259         if (!tx_ring->tx_buffer_info)
6260                 tx_ring->tx_buffer_info = vmalloc(size);
6261         if (!tx_ring->tx_buffer_info)
6262                 goto err;
6263
6264         /* round up to nearest 4K */
6265         tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
6266         tx_ring->size = ALIGN(tx_ring->size, 4096);
6267
6268         set_dev_node(dev, ring_node);
6269         tx_ring->desc = dma_alloc_coherent(dev,
6270                                            tx_ring->size,
6271                                            &tx_ring->dma,
6272                                            GFP_KERNEL);
6273         set_dev_node(dev, orig_node);
6274         if (!tx_ring->desc)
6275                 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
6276                                                    &tx_ring->dma, GFP_KERNEL);
6277         if (!tx_ring->desc)
6278                 goto err;
6279
6280         tx_ring->next_to_use = 0;
6281         tx_ring->next_to_clean = 0;
6282         return 0;
6283
6284 err:
6285         vfree(tx_ring->tx_buffer_info);
6286         tx_ring->tx_buffer_info = NULL;
6287         dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
6288         return -ENOMEM;
6289 }
6290
6291 /**
6292  * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
6293  * @adapter: board private structure
6294  *
6295  * If this function returns with an error, then it's possible one or
6296  * more of the rings is populated (while the rest are not).  It is the
6297  * callers duty to clean those orphaned rings.
6298  *
6299  * Return 0 on success, negative on failure
6300  **/
6301 static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
6302 {
6303         int i, j = 0, err = 0;
6304
6305         for (i = 0; i < adapter->num_tx_queues; i++) {
6306                 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
6307                 if (!err)
6308                         continue;
6309
6310                 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
6311                 goto err_setup_tx;
6312         }
6313         for (j = 0; j < adapter->num_xdp_queues; j++) {
6314                 err = ixgbe_setup_tx_resources(adapter->xdp_ring[j]);
6315                 if (!err)
6316                         continue;
6317
6318                 e_err(probe, "Allocation for Tx Queue %u failed\n", j);
6319                 goto err_setup_tx;
6320         }
6321
6322         return 0;
6323 err_setup_tx:
6324         /* rewind the index freeing the rings as we go */
6325         while (j--)
6326                 ixgbe_free_tx_resources(adapter->xdp_ring[j]);
6327         while (i--)
6328                 ixgbe_free_tx_resources(adapter->tx_ring[i]);
6329         return err;
6330 }
6331
6332 /**
6333  * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
6334  * @adapter: pointer to ixgbe_adapter
6335  * @rx_ring:    rx descriptor ring (for a specific queue) to setup
6336  *
6337  * Returns 0 on success, negative on failure
6338  **/
6339 int ixgbe_setup_rx_resources(struct ixgbe_adapter *adapter,
6340                              struct ixgbe_ring *rx_ring)
6341 {
6342         struct device *dev = rx_ring->dev;
6343         int orig_node = dev_to_node(dev);
6344         int ring_node = -1;
6345         int size;
6346
6347         size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
6348
6349         if (rx_ring->q_vector)
6350                 ring_node = rx_ring->q_vector->numa_node;
6351
6352         rx_ring->rx_buffer_info = vmalloc_node(size, ring_node);
6353         if (!rx_ring->rx_buffer_info)
6354                 rx_ring->rx_buffer_info = vmalloc(size);
6355         if (!rx_ring->rx_buffer_info)
6356                 goto err;
6357
6358         /* Round up to nearest 4K */
6359         rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
6360         rx_ring->size = ALIGN(rx_ring->size, 4096);
6361
6362         set_dev_node(dev, ring_node);
6363         rx_ring->desc = dma_alloc_coherent(dev,
6364                                            rx_ring->size,
6365                                            &rx_ring->dma,
6366                                            GFP_KERNEL);
6367         set_dev_node(dev, orig_node);
6368         if (!rx_ring->desc)
6369                 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
6370                                                    &rx_ring->dma, GFP_KERNEL);
6371         if (!rx_ring->desc)
6372                 goto err;
6373
6374         rx_ring->next_to_clean = 0;
6375         rx_ring->next_to_use = 0;
6376
6377         /* XDP RX-queue info */
6378         if (xdp_rxq_info_reg(&rx_ring->xdp_rxq, adapter->netdev,
6379                              rx_ring->queue_index) < 0)
6380                 goto err;
6381
6382         rx_ring->xdp_prog = adapter->xdp_prog;
6383
6384         return 0;
6385 err:
6386         vfree(rx_ring->rx_buffer_info);
6387         rx_ring->rx_buffer_info = NULL;
6388         dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
6389         return -ENOMEM;
6390 }
6391
6392 /**
6393  * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
6394  * @adapter: board private structure
6395  *
6396  * If this function returns with an error, then it's possible one or
6397  * more of the rings is populated (while the rest are not).  It is the
6398  * callers duty to clean those orphaned rings.
6399  *
6400  * Return 0 on success, negative on failure
6401  **/
6402 static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
6403 {
6404         int i, err = 0;
6405
6406         for (i = 0; i < adapter->num_rx_queues; i++) {
6407                 err = ixgbe_setup_rx_resources(adapter, adapter->rx_ring[i]);
6408                 if (!err)
6409                         continue;
6410
6411                 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
6412                 goto err_setup_rx;
6413         }
6414
6415 #ifdef IXGBE_FCOE
6416         err = ixgbe_setup_fcoe_ddp_resources(adapter);
6417         if (!err)
6418 #endif
6419                 return 0;
6420 err_setup_rx:
6421         /* rewind the index freeing the rings as we go */
6422         while (i--)
6423                 ixgbe_free_rx_resources(adapter->rx_ring[i]);
6424         return err;
6425 }
6426
6427 /**
6428  * ixgbe_free_tx_resources - Free Tx Resources per Queue
6429  * @tx_ring: Tx descriptor ring for a specific queue
6430  *
6431  * Free all transmit software resources
6432  **/
6433 void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
6434 {
6435         ixgbe_clean_tx_ring(tx_ring);
6436
6437         vfree(tx_ring->tx_buffer_info);
6438         tx_ring->tx_buffer_info = NULL;
6439
6440         /* if not set, then don't free */
6441         if (!tx_ring->desc)
6442                 return;
6443
6444         dma_free_coherent(tx_ring->dev, tx_ring->size,
6445                           tx_ring->desc, tx_ring->dma);
6446
6447         tx_ring->desc = NULL;
6448 }
6449
6450 /**
6451  * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
6452  * @adapter: board private structure
6453  *
6454  * Free all transmit software resources
6455  **/
6456 static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
6457 {
6458         int i;
6459
6460         for (i = 0; i < adapter->num_tx_queues; i++)
6461                 if (adapter->tx_ring[i]->desc)
6462                         ixgbe_free_tx_resources(adapter->tx_ring[i]);
6463         for (i = 0; i < adapter->num_xdp_queues; i++)
6464                 if (adapter->xdp_ring[i]->desc)
6465                         ixgbe_free_tx_resources(adapter->xdp_ring[i]);
6466 }
6467
6468 /**
6469  * ixgbe_free_rx_resources - Free Rx Resources
6470  * @rx_ring: ring to clean the resources from
6471  *
6472  * Free all receive software resources
6473  **/
6474 void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
6475 {
6476         ixgbe_clean_rx_ring(rx_ring);
6477
6478         rx_ring->xdp_prog = NULL;
6479         xdp_rxq_info_unreg(&rx_ring->xdp_rxq);
6480         vfree(rx_ring->rx_buffer_info);
6481         rx_ring->rx_buffer_info = NULL;
6482
6483         /* if not set, then don't free */
6484         if (!rx_ring->desc)
6485                 return;
6486
6487         dma_free_coherent(rx_ring->dev, rx_ring->size,
6488                           rx_ring->desc, rx_ring->dma);
6489
6490         rx_ring->desc = NULL;
6491 }
6492
6493 /**
6494  * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
6495  * @adapter: board private structure
6496  *
6497  * Free all receive software resources
6498  **/
6499 static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
6500 {
6501         int i;
6502
6503 #ifdef IXGBE_FCOE
6504         ixgbe_free_fcoe_ddp_resources(adapter);
6505
6506 #endif
6507         for (i = 0; i < adapter->num_rx_queues; i++)
6508                 if (adapter->rx_ring[i]->desc)
6509                         ixgbe_free_rx_resources(adapter->rx_ring[i]);
6510 }
6511
6512 /**
6513  * ixgbe_change_mtu - Change the Maximum Transfer Unit
6514  * @netdev: network interface device structure
6515  * @new_mtu: new value for maximum frame size
6516  *
6517  * Returns 0 on success, negative on failure
6518  **/
6519 static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
6520 {
6521         struct ixgbe_adapter *adapter = netdev_priv(netdev);
6522
6523         /*
6524          * For 82599EB we cannot allow legacy VFs to enable their receive
6525          * paths when MTU greater than 1500 is configured.  So display a
6526          * warning that legacy VFs will be disabled.
6527          */
6528         if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
6529             (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
6530             (new_mtu > ETH_DATA_LEN))
6531                 e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n");
6532
6533         e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
6534
6535         /* must set new MTU before calling down or up */
6536         netdev->mtu = new_mtu;
6537
6538         if (netif_running(netdev))
6539                 ixgbe_reinit_locked(adapter);
6540
6541         return 0;
6542 }
6543
6544 /**
6545  * ixgbe_open - Called when a network interface is made active
6546  * @netdev: network interface device structure
6547  *
6548  * Returns 0 on success, negative value on failure
6549  *
6550  * The open entry point is called when a network interface is made
6551  * active by the system (IFF_UP).  At this point all resources needed
6552  * for transmit and receive operations are allocated, the interrupt
6553  * handler is registered with the OS, the watchdog timer is started,
6554  * and the stack is notified that the interface is ready.
6555  **/
6556 int ixgbe_open(struct net_device *netdev)
6557 {
6558         struct ixgbe_adapter *adapter = netdev_priv(netdev);
6559         struct ixgbe_hw *hw = &adapter->hw;
6560         int err, queues;
6561
6562         /* disallow open during test */
6563         if (test_bit(__IXGBE_TESTING, &adapter->state))
6564                 return -EBUSY;
6565
6566         netif_carrier_off(netdev);
6567
6568         /* allocate transmit descriptors */
6569         err = ixgbe_setup_all_tx_resources(adapter);
6570         if (err)
6571                 goto err_setup_tx;
6572
6573         /* allocate receive descriptors */
6574         err = ixgbe_setup_all_rx_resources(adapter);
6575         if (err)
6576                 goto err_setup_rx;
6577
6578         ixgbe_configure(adapter);
6579
6580         err = ixgbe_request_irq(adapter);
6581         if (err)
6582                 goto err_req_irq;
6583
6584         /* Notify the stack of the actual queue counts. */
6585         queues = adapter->num_tx_queues;
6586         err = netif_set_real_num_tx_queues(netdev, queues);
6587         if (err)
6588                 goto err_set_queues;
6589
6590         queues = adapter->num_rx_queues;
6591         err = netif_set_real_num_rx_queues(netdev, queues);
6592         if (err)
6593                 goto err_set_queues;
6594
6595         ixgbe_ptp_init(adapter);
6596
6597         ixgbe_up_complete(adapter);
6598
6599         ixgbe_clear_udp_tunnel_port(adapter, IXGBE_VXLANCTRL_ALL_UDPPORT_MASK);
6600         udp_tunnel_get_rx_info(netdev);
6601
6602         return 0;
6603
6604 err_set_queues:
6605         ixgbe_free_irq(adapter);
6606 err_req_irq:
6607         ixgbe_free_all_rx_resources(adapter);
6608         if (hw->phy.ops.set_phy_power && !adapter->wol)
6609                 hw->phy.ops.set_phy_power(&adapter->hw, false);
6610 err_setup_rx:
6611         ixgbe_free_all_tx_resources(adapter);
6612 err_setup_tx:
6613         ixgbe_reset(adapter);
6614
6615         return err;
6616 }
6617
6618 static void ixgbe_close_suspend(struct ixgbe_adapter *adapter)
6619 {
6620         ixgbe_ptp_suspend(adapter);
6621
6622         if (adapter->hw.phy.ops.enter_lplu) {
6623                 adapter->hw.phy.reset_disable = true;
6624                 ixgbe_down(adapter);
6625                 adapter->hw.phy.ops.enter_lplu(&adapter->hw);
6626                 adapter->hw.phy.reset_disable = false;
6627         } else {
6628                 ixgbe_down(adapter);
6629         }
6630
6631         ixgbe_free_irq(adapter);
6632
6633         ixgbe_free_all_tx_resources(adapter);
6634         ixgbe_free_all_rx_resources(adapter);
6635 }
6636
6637 /**
6638  * ixgbe_close - Disables a network interface
6639  * @netdev: network interface device structure
6640  *
6641  * Returns 0, this is not allowed to fail
6642  *
6643  * The close entry point is called when an interface is de-activated
6644  * by the OS.  The hardware is still under the drivers control, but
6645  * needs to be disabled.  A global MAC reset is issued to stop the
6646  * hardware, and all transmit and receive resources are freed.
6647  **/
6648 int ixgbe_close(struct net_device *netdev)
6649 {
6650         struct ixgbe_adapter *adapter = netdev_priv(netdev);
6651
6652         ixgbe_ptp_stop(adapter);
6653
6654         if (netif_device_present(netdev))
6655                 ixgbe_close_suspend(adapter);
6656
6657         ixgbe_fdir_filter_exit(adapter);
6658
6659         ixgbe_release_hw_control(adapter);
6660
6661         return 0;
6662 }
6663
6664 #ifdef CONFIG_PM
6665 static int ixgbe_resume(struct pci_dev *pdev)
6666 {
6667         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
6668         struct net_device *netdev = adapter->netdev;
6669         u32 err;
6670
6671         adapter->hw.hw_addr = adapter->io_addr;
6672         pci_set_power_state(pdev, PCI_D0);
6673         pci_restore_state(pdev);
6674         /*
6675          * pci_restore_state clears dev->state_saved so call
6676          * pci_save_state to restore it.
6677          */
6678         pci_save_state(pdev);
6679
6680         err = pci_enable_device_mem(pdev);
6681         if (err) {
6682                 e_dev_err("Cannot enable PCI device from suspend\n");
6683                 return err;
6684         }
6685         smp_mb__before_atomic();
6686         clear_bit(__IXGBE_DISABLED, &adapter->state);
6687         pci_set_master(pdev);
6688
6689         pci_wake_from_d3(pdev, false);
6690
6691         ixgbe_reset(adapter);
6692
6693         IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
6694
6695         rtnl_lock();
6696         err = ixgbe_init_interrupt_scheme(adapter);
6697         if (!err && netif_running(netdev))
6698                 err = ixgbe_open(netdev);
6699
6700
6701         if (!err)
6702                 netif_device_attach(netdev);
6703         rtnl_unlock();
6704
6705         return err;
6706 }
6707 #endif /* CONFIG_PM */
6708
6709 static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
6710 {
6711         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
6712         struct net_device *netdev = adapter->netdev;
6713         struct ixgbe_hw *hw = &adapter->hw;
6714         u32 ctrl;
6715         u32 wufc = adapter->wol;
6716 #ifdef CONFIG_PM
6717         int retval = 0;
6718 #endif
6719
6720         rtnl_lock();
6721         netif_device_detach(netdev);
6722
6723         if (netif_running(netdev))
6724                 ixgbe_close_suspend(adapter);
6725
6726         ixgbe_clear_interrupt_scheme(adapter);
6727         rtnl_unlock();
6728
6729 #ifdef CONFIG_PM
6730         retval = pci_save_state(pdev);
6731         if (retval)
6732                 return retval;
6733
6734 #endif
6735         if (hw->mac.ops.stop_link_on_d3)
6736                 hw->mac.ops.stop_link_on_d3(hw);
6737
6738         if (wufc) {
6739                 u32 fctrl;
6740
6741                 ixgbe_set_rx_mode(netdev);
6742
6743                 /* enable the optics for 82599 SFP+ fiber as we can WoL */
6744                 if (hw->mac.ops.enable_tx_laser)
6745                         hw->mac.ops.enable_tx_laser(hw);
6746
6747                 /* enable the reception of multicast packets */
6748                 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6749                 fctrl |= IXGBE_FCTRL_MPE;
6750                 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
6751
6752                 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
6753                 ctrl |= IXGBE_CTRL_GIO_DIS;
6754                 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
6755
6756                 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
6757         } else {
6758                 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
6759                 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
6760         }
6761
6762         switch (hw->mac.type) {
6763         case ixgbe_mac_82598EB:
6764                 pci_wake_from_d3(pdev, false);
6765                 break;
6766         case ixgbe_mac_82599EB:
6767         case ixgbe_mac_X540:
6768         case ixgbe_mac_X550:
6769         case ixgbe_mac_X550EM_x:
6770         case ixgbe_mac_x550em_a:
6771                 pci_wake_from_d3(pdev, !!wufc);
6772                 break;
6773         default:
6774                 break;
6775         }
6776
6777         *enable_wake = !!wufc;
6778         if (hw->phy.ops.set_phy_power && !*enable_wake)
6779                 hw->phy.ops.set_phy_power(hw, false);
6780
6781         ixgbe_release_hw_control(adapter);
6782
6783         if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state))
6784                 pci_disable_device(pdev);
6785
6786         return 0;
6787 }
6788
6789 #ifdef CONFIG_PM
6790 static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
6791 {
6792         int retval;
6793         bool wake;
6794
6795         retval = __ixgbe_shutdown(pdev, &wake);
6796         if (retval)
6797                 return retval;
6798
6799         if (wake) {
6800                 pci_prepare_to_sleep(pdev);
6801         } else {
6802                 pci_wake_from_d3(pdev, false);
6803                 pci_set_power_state(pdev, PCI_D3hot);
6804         }
6805
6806         return 0;
6807 }
6808 #endif /* CONFIG_PM */
6809
6810 static void ixgbe_shutdown(struct pci_dev *pdev)
6811 {
6812         bool wake;
6813
6814         __ixgbe_shutdown(pdev, &wake);
6815
6816         if (system_state == SYSTEM_POWER_OFF) {
6817                 pci_wake_from_d3(pdev, wake);
6818                 pci_set_power_state(pdev, PCI_D3hot);
6819         }
6820 }
6821
6822 /**
6823  * ixgbe_update_stats - Update the board statistics counters.
6824  * @adapter: board private structure
6825  **/
6826 void ixgbe_update_stats(struct ixgbe_adapter *adapter)
6827 {
6828         struct net_device *netdev = adapter->netdev;
6829         struct ixgbe_hw *hw = &adapter->hw;
6830         struct ixgbe_hw_stats *hwstats = &adapter->stats;
6831         u64 total_mpc = 0;
6832         u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
6833         u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
6834         u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
6835         u64 alloc_rx_page = 0;
6836         u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
6837
6838         if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6839             test_bit(__IXGBE_RESETTING, &adapter->state))
6840                 return;
6841
6842         if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
6843                 u64 rsc_count = 0;
6844                 u64 rsc_flush = 0;
6845                 for (i = 0; i < adapter->num_rx_queues; i++) {
6846                         rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
6847                         rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
6848                 }
6849                 adapter->rsc_total_count = rsc_count;
6850                 adapter->rsc_total_flush = rsc_flush;
6851         }
6852
6853         for (i = 0; i < adapter->num_rx_queues; i++) {
6854                 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
6855                 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
6856                 alloc_rx_page += rx_ring->rx_stats.alloc_rx_page;
6857                 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
6858                 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
6859                 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
6860                 bytes += rx_ring->stats.bytes;
6861                 packets += rx_ring->stats.packets;
6862         }
6863         adapter->non_eop_descs = non_eop_descs;
6864         adapter->alloc_rx_page = alloc_rx_page;
6865         adapter->alloc_rx_page_failed = alloc_rx_page_failed;
6866         adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
6867         adapter->hw_csum_rx_error = hw_csum_rx_error;
6868         netdev->stats.rx_bytes = bytes;
6869         netdev->stats.rx_packets = packets;
6870
6871         bytes = 0;
6872         packets = 0;
6873         /* gather some stats to the adapter struct that are per queue */
6874         for (i = 0; i < adapter->num_tx_queues; i++) {
6875                 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6876                 restart_queue += tx_ring->tx_stats.restart_queue;
6877                 tx_busy += tx_ring->tx_stats.tx_busy;
6878                 bytes += tx_ring->stats.bytes;
6879                 packets += tx_ring->stats.packets;
6880         }
6881         for (i = 0; i < adapter->num_xdp_queues; i++) {
6882                 struct ixgbe_ring *xdp_ring = adapter->xdp_ring[i];
6883
6884                 restart_queue += xdp_ring->tx_stats.restart_queue;
6885                 tx_busy += xdp_ring->tx_stats.tx_busy;
6886                 bytes += xdp_ring->stats.bytes;
6887                 packets += xdp_ring->stats.packets;
6888         }
6889         adapter->restart_queue = restart_queue;
6890         adapter->tx_busy = tx_busy;
6891         netdev->stats.tx_bytes = bytes;
6892         netdev->stats.tx_packets = packets;
6893
6894         hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
6895
6896         /* 8 register reads */
6897         for (i = 0; i < 8; i++) {
6898                 /* for packet buffers not used, the register should read 0 */
6899                 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
6900                 missed_rx += mpc;
6901                 hwstats->mpc[i] += mpc;
6902                 total_mpc += hwstats->mpc[i];
6903                 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
6904                 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
6905                 switch (hw->mac.type) {
6906                 case ixgbe_mac_82598EB:
6907                         hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
6908                         hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
6909                         hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
6910                         hwstats->pxonrxc[i] +=
6911                                 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
6912                         break;
6913                 case ixgbe_mac_82599EB:
6914                 case ixgbe_mac_X540:
6915                 case ixgbe_mac_X550:
6916                 case ixgbe_mac_X550EM_x:
6917                 case ixgbe_mac_x550em_a:
6918                         hwstats->pxonrxc[i] +=
6919                                 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
6920                         break;
6921                 default:
6922                         break;
6923                 }
6924         }
6925
6926         /*16 register reads */
6927         for (i = 0; i < 16; i++) {
6928                 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
6929                 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
6930                 if ((hw->mac.type == ixgbe_mac_82599EB) ||
6931                     (hw->mac.type == ixgbe_mac_X540) ||
6932                     (hw->mac.type == ixgbe_mac_X550) ||
6933                     (hw->mac.type == ixgbe_mac_X550EM_x) ||
6934                     (hw->mac.type == ixgbe_mac_x550em_a)) {
6935                         hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
6936                         IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
6937                         hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
6938                         IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
6939                 }
6940         }
6941
6942         hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
6943         /* work around hardware counting issue */
6944         hwstats->gprc -= missed_rx;
6945
6946         ixgbe_update_xoff_received(adapter);
6947
6948         /* 82598 hardware only has a 32 bit counter in the high register */
6949         switch (hw->mac.type) {
6950         case ixgbe_mac_82598EB:
6951                 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
6952                 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
6953                 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
6954                 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
6955                 break;
6956         case ixgbe_mac_X540:
6957         case ixgbe_mac_X550:
6958         case ixgbe_mac_X550EM_x:
6959         case ixgbe_mac_x550em_a:
6960                 /* OS2BMC stats are X540 and later */
6961                 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
6962                 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
6963                 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
6964                 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
6965                 /* fall through */
6966         case ixgbe_mac_82599EB:
6967                 for (i = 0; i < 16; i++)
6968                         adapter->hw_rx_no_dma_resources +=
6969                                              IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
6970                 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
6971                 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
6972                 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
6973                 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
6974                 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
6975                 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
6976                 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
6977                 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
6978                 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
6979 #ifdef IXGBE_FCOE
6980                 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
6981                 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
6982                 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
6983                 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
6984                 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
6985                 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
6986                 /* Add up per cpu counters for total ddp aloc fail */
6987                 if (adapter->fcoe.ddp_pool) {
6988                         struct ixgbe_fcoe *fcoe = &adapter->fcoe;
6989                         struct ixgbe_fcoe_ddp_pool *ddp_pool;
6990                         unsigned int cpu;
6991                         u64 noddp = 0, noddp_ext_buff = 0;
6992                         for_each_possible_cpu(cpu) {
6993                                 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
6994                                 noddp += ddp_pool->noddp;
6995                                 noddp_ext_buff += ddp_pool->noddp_ext_buff;
6996                         }
6997                         hwstats->fcoe_noddp = noddp;
6998                         hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
6999                 }
7000 #endif /* IXGBE_FCOE */
7001                 break;
7002         default:
7003                 break;
7004         }
7005         bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
7006         hwstats->bprc += bprc;
7007         hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
7008         if (hw->mac.type == ixgbe_mac_82598EB)
7009                 hwstats->mprc -= bprc;
7010         hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
7011         hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
7012         hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
7013         hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
7014         hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
7015         hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
7016         hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
7017         hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
7018         lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
7019         hwstats->lxontxc += lxon;
7020         lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
7021         hwstats->lxofftxc += lxoff;
7022         hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
7023         hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
7024         /*
7025          * 82598 errata - tx of flow control packets is included in tx counters
7026          */
7027         xon_off_tot = lxon + lxoff;
7028         hwstats->gptc -= xon_off_tot;
7029         hwstats->mptc -= xon_off_tot;
7030         hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
7031         hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
7032         hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
7033         hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
7034         hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
7035         hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
7036         hwstats->ptc64 -= xon_off_tot;
7037         hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
7038         hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
7039         hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
7040         hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
7041         hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
7042         hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
7043
7044         /* Fill out the OS statistics structure */
7045         netdev->stats.multicast = hwstats->mprc;
7046
7047         /* Rx Errors */
7048         netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
7049         netdev->stats.rx_dropped = 0;
7050         netdev->stats.rx_length_errors = hwstats->rlec;
7051         netdev->stats.rx_crc_errors = hwstats->crcerrs;
7052         netdev->stats.rx_missed_errors = total_mpc;
7053 }
7054
7055 /**
7056  * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
7057  * @adapter: pointer to the device adapter structure
7058  **/
7059 static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
7060 {
7061         struct ixgbe_hw *hw = &adapter->hw;
7062         int i;
7063
7064         if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
7065                 return;
7066
7067         adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
7068
7069         /* if interface is down do nothing */
7070         if (test_bit(__IXGBE_DOWN, &adapter->state))
7071                 return;
7072
7073         /* do nothing if we are not using signature filters */
7074         if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
7075                 return;
7076
7077         adapter->fdir_overflow++;
7078
7079         if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
7080                 for (i = 0; i < adapter->num_tx_queues; i++)
7081                         set_bit(__IXGBE_TX_FDIR_INIT_DONE,
7082                                 &(adapter->tx_ring[i]->state));
7083                 for (i = 0; i < adapter->num_xdp_queues; i++)
7084                         set_bit(__IXGBE_TX_FDIR_INIT_DONE,
7085                                 &adapter->xdp_ring[i]->state);
7086                 /* re-enable flow director interrupts */
7087                 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
7088         } else {
7089                 e_err(probe, "failed to finish FDIR re-initialization, "
7090                       "ignored adding FDIR ATR filters\n");
7091         }
7092 }
7093
7094 /**
7095  * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
7096  * @adapter: pointer to the device adapter structure
7097  *
7098  * This function serves two purposes.  First it strobes the interrupt lines
7099  * in order to make certain interrupts are occurring.  Secondly it sets the
7100  * bits needed to check for TX hangs.  As a result we should immediately
7101  * determine if a hang has occurred.
7102  */
7103 static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
7104 {
7105         struct ixgbe_hw *hw = &adapter->hw;
7106         u64 eics = 0;
7107         int i;
7108
7109         /* If we're down, removing or resetting, just bail */
7110         if (test_bit(__IXGBE_DOWN, &adapter->state) ||
7111             test_bit(__IXGBE_REMOVING, &adapter->state) ||
7112             test_bit(__IXGBE_RESETTING, &adapter->state))
7113                 return;
7114
7115         /* Force detection of hung controller */
7116         if (netif_carrier_ok(adapter->netdev)) {
7117                 for (i = 0; i < adapter->num_tx_queues; i++)
7118                         set_check_for_tx_hang(adapter->tx_ring[i]);
7119                 for (i = 0; i < adapter->num_xdp_queues; i++)
7120                         set_check_for_tx_hang(adapter->xdp_ring[i]);
7121         }
7122
7123         if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
7124                 /*
7125                  * for legacy and MSI interrupts don't set any bits
7126                  * that are enabled for EIAM, because this operation
7127                  * would set *both* EIMS and EICS for any bit in EIAM
7128                  */
7129                 IXGBE_WRITE_REG(hw, IXGBE_EICS,
7130                         (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
7131         } else {
7132                 /* get one bit for every active tx/rx interrupt vector */
7133                 for (i = 0; i < adapter->num_q_vectors; i++) {
7134                         struct ixgbe_q_vector *qv = adapter->q_vector[i];
7135                         if (qv->rx.ring || qv->tx.ring)
7136                                 eics |= BIT_ULL(i);
7137                 }
7138         }
7139
7140         /* Cause software interrupt to ensure rings are cleaned */
7141         ixgbe_irq_rearm_queues(adapter, eics);
7142 }
7143
7144 /**
7145  * ixgbe_watchdog_update_link - update the link status
7146  * @adapter: pointer to the device adapter structure
7147  **/
7148 static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
7149 {
7150         struct ixgbe_hw *hw = &adapter->hw;
7151         u32 link_speed = adapter->link_speed;
7152         bool link_up = adapter->link_up;
7153         bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
7154
7155         if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
7156                 return;
7157
7158         if (hw->mac.ops.check_link) {
7159                 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
7160         } else {
7161                 /* always assume link is up, if no check link function */
7162                 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
7163                 link_up = true;
7164         }
7165
7166         if (adapter->ixgbe_ieee_pfc)
7167                 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
7168
7169         if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
7170                 hw->mac.ops.fc_enable(hw);
7171                 ixgbe_set_rx_drop_en(adapter);
7172         }
7173
7174         if (link_up ||
7175             time_after(jiffies, (adapter->link_check_timeout +
7176                                  IXGBE_TRY_LINK_TIMEOUT))) {
7177                 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
7178                 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
7179                 IXGBE_WRITE_FLUSH(hw);
7180         }
7181
7182         adapter->link_up = link_up;
7183         adapter->link_speed = link_speed;
7184 }
7185
7186 static void ixgbe_update_default_up(struct ixgbe_adapter *adapter)
7187 {
7188 #ifdef CONFIG_IXGBE_DCB
7189         struct net_device *netdev = adapter->netdev;
7190         struct dcb_app app = {
7191                               .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE,
7192                               .protocol = 0,
7193                              };
7194         u8 up = 0;
7195
7196         if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE)
7197                 up = dcb_ieee_getapp_mask(netdev, &app);
7198
7199         adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0;
7200 #endif
7201 }
7202
7203 /**
7204  * ixgbe_watchdog_link_is_up - update netif_carrier status and
7205  *                             print link up message
7206  * @adapter: pointer to the device adapter structure
7207  **/
7208 static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
7209 {
7210         struct net_device *netdev = adapter->netdev;
7211         struct ixgbe_hw *hw = &adapter->hw;
7212         u32 link_speed = adapter->link_speed;
7213         const char *speed_str;
7214         bool flow_rx, flow_tx;
7215
7216         /* only continue if link was previously down */
7217         if (netif_carrier_ok(netdev))
7218                 return;
7219
7220         adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
7221
7222         switch (hw->mac.type) {
7223         case ixgbe_mac_82598EB: {
7224                 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
7225                 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
7226                 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
7227                 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
7228         }
7229                 break;
7230         case ixgbe_mac_X540:
7231         case ixgbe_mac_X550:
7232         case ixgbe_mac_X550EM_x:
7233         case ixgbe_mac_x550em_a:
7234         case ixgbe_mac_82599EB: {
7235                 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
7236                 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
7237                 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
7238                 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
7239         }
7240                 break;
7241         default:
7242                 flow_tx = false;
7243                 flow_rx = false;
7244                 break;
7245         }
7246
7247         adapter->last_rx_ptp_check = jiffies;
7248
7249         if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
7250                 ixgbe_ptp_start_cyclecounter(adapter);
7251
7252         switch (link_speed) {
7253         case IXGBE_LINK_SPEED_10GB_FULL:
7254                 speed_str = "10 Gbps";
7255                 break;
7256         case IXGBE_LINK_SPEED_2_5GB_FULL:
7257                 speed_str = "2.5 Gbps";
7258                 break;
7259         case IXGBE_LINK_SPEED_1GB_FULL:
7260                 speed_str = "1 Gbps";
7261                 break;
7262         case IXGBE_LINK_SPEED_100_FULL:
7263                 speed_str = "100 Mbps";
7264                 break;
7265         case IXGBE_LINK_SPEED_10_FULL:
7266                 speed_str = "10 Mbps";
7267                 break;
7268         default:
7269                 speed_str = "unknown speed";
7270                 break;
7271         }
7272         e_info(drv, "NIC Link is Up %s, Flow Control: %s\n", speed_str,
7273                ((flow_rx && flow_tx) ? "RX/TX" :
7274                (flow_rx ? "RX" :
7275                (flow_tx ? "TX" : "None"))));
7276
7277         netif_carrier_on(netdev);
7278         ixgbe_check_vf_rate_limit(adapter);
7279
7280         /* enable transmits */
7281         netif_tx_wake_all_queues(adapter->netdev);
7282
7283         /* update the default user priority for VFs */
7284         ixgbe_update_default_up(adapter);
7285
7286         /* ping all the active vfs to let them know link has changed */
7287         ixgbe_ping_all_vfs(adapter);
7288 }
7289
7290 /**
7291  * ixgbe_watchdog_link_is_down - update netif_carrier status and
7292  *                               print link down message
7293  * @adapter: pointer to the adapter structure
7294  **/
7295 static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
7296 {
7297         struct net_device *netdev = adapter->netdev;
7298         struct ixgbe_hw *hw = &adapter->hw;
7299
7300         adapter->link_up = false;
7301         adapter->link_speed = 0;
7302
7303         /* only continue if link was up previously */
7304         if (!netif_carrier_ok(netdev))
7305                 return;
7306
7307         /* poll for SFP+ cable when link is down */
7308         if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
7309                 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
7310
7311         if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state))
7312                 ixgbe_ptp_start_cyclecounter(adapter);
7313
7314         e_info(drv, "NIC Link is Down\n");
7315         netif_carrier_off(netdev);
7316
7317         /* ping all the active vfs to let them know link has changed */
7318         ixgbe_ping_all_vfs(adapter);
7319 }
7320
7321 static bool ixgbe_ring_tx_pending(struct ixgbe_adapter *adapter)
7322 {
7323         int i;
7324
7325         for (i = 0; i < adapter->num_tx_queues; i++) {
7326                 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
7327
7328                 if (tx_ring->next_to_use != tx_ring->next_to_clean)
7329                         return true;
7330         }
7331
7332         for (i = 0; i < adapter->num_xdp_queues; i++) {
7333                 struct ixgbe_ring *ring = adapter->xdp_ring[i];
7334
7335                 if (ring->next_to_use != ring->next_to_clean)
7336                         return true;
7337         }
7338
7339         return false;
7340 }
7341
7342 static bool ixgbe_vf_tx_pending(struct ixgbe_adapter *adapter)
7343 {
7344         struct ixgbe_hw *hw = &adapter->hw;
7345         struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
7346         u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
7347
7348         int i, j;
7349
7350         if (!adapter->num_vfs)
7351                 return false;
7352
7353         /* resetting the PF is only needed for MAC before X550 */
7354         if (hw->mac.type >= ixgbe_mac_X550)
7355                 return false;
7356
7357         for (i = 0; i < adapter->num_vfs; i++) {
7358                 for (j = 0; j < q_per_pool; j++) {
7359                         u32 h, t;
7360
7361                         h = IXGBE_READ_REG(hw, IXGBE_PVFTDHN(q_per_pool, i, j));
7362                         t = IXGBE_READ_REG(hw, IXGBE_PVFTDTN(q_per_pool, i, j));
7363
7364                         if (h != t)
7365                                 return true;
7366                 }
7367         }
7368
7369         return false;
7370 }
7371
7372 /**
7373  * ixgbe_watchdog_flush_tx - flush queues on link down
7374  * @adapter: pointer to the device adapter structure
7375  **/
7376 static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
7377 {
7378         if (!netif_carrier_ok(adapter->netdev)) {
7379                 if (ixgbe_ring_tx_pending(adapter) ||
7380                     ixgbe_vf_tx_pending(adapter)) {
7381                         /* We've lost link, so the controller stops DMA,
7382                          * but we've got queued Tx work that's never going
7383                          * to get done, so reset controller to flush Tx.
7384                          * (Do the reset outside of interrupt context).
7385                          */
7386                         e_warn(drv, "initiating reset to clear Tx work after link loss\n");
7387                         set_bit(__IXGBE_RESET_REQUESTED, &adapter->state);
7388                 }
7389         }
7390 }
7391
7392 #ifdef CONFIG_PCI_IOV
7393 static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
7394 {
7395         struct ixgbe_hw *hw = &adapter->hw;
7396         struct pci_dev *pdev = adapter->pdev;
7397         unsigned int vf;
7398         u32 gpc;
7399
7400         if (!(netif_carrier_ok(adapter->netdev)))
7401                 return;
7402
7403         gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
7404         if (gpc) /* If incrementing then no need for the check below */
7405                 return;
7406         /* Check to see if a bad DMA write target from an errant or
7407          * malicious VF has caused a PCIe error.  If so then we can
7408          * issue a VFLR to the offending VF(s) and then resume without
7409          * requesting a full slot reset.
7410          */
7411
7412         if (!pdev)
7413                 return;
7414
7415         /* check status reg for all VFs owned by this PF */
7416         for (vf = 0; vf < adapter->num_vfs; ++vf) {
7417                 struct pci_dev *vfdev = adapter->vfinfo[vf].vfdev;
7418                 u16 status_reg;
7419
7420                 if (!vfdev)
7421                         continue;
7422                 pci_read_config_word(vfdev, PCI_STATUS, &status_reg);
7423                 if (status_reg != IXGBE_FAILED_READ_CFG_WORD &&
7424                     status_reg & PCI_STATUS_REC_MASTER_ABORT)
7425                         pcie_flr(vfdev);
7426         }
7427 }
7428
7429 static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
7430 {
7431         u32 ssvpc;
7432
7433         /* Do not perform spoof check for 82598 or if not in IOV mode */
7434         if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7435             adapter->num_vfs == 0)
7436                 return;
7437
7438         ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
7439
7440         /*
7441          * ssvpc register is cleared on read, if zero then no
7442          * spoofed packets in the last interval.
7443          */
7444         if (!ssvpc)
7445                 return;
7446
7447         e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
7448 }
7449 #else
7450 static void ixgbe_spoof_check(struct ixgbe_adapter __always_unused *adapter)
7451 {
7452 }
7453
7454 static void
7455 ixgbe_check_for_bad_vf(struct ixgbe_adapter __always_unused *adapter)
7456 {
7457 }
7458 #endif /* CONFIG_PCI_IOV */
7459
7460
7461 /**
7462  * ixgbe_watchdog_subtask - check and bring link up
7463  * @adapter: pointer to the device adapter structure
7464  **/
7465 static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
7466 {
7467         /* if interface is down, removing or resetting, do nothing */
7468         if (test_bit(__IXGBE_DOWN, &adapter->state) ||
7469             test_bit(__IXGBE_REMOVING, &adapter->state) ||
7470             test_bit(__IXGBE_RESETTING, &adapter->state))
7471                 return;
7472
7473         ixgbe_watchdog_update_link(adapter);
7474
7475         if (adapter->link_up)
7476                 ixgbe_watchdog_link_is_up(adapter);
7477         else
7478                 ixgbe_watchdog_link_is_down(adapter);
7479
7480         ixgbe_check_for_bad_vf(adapter);
7481         ixgbe_spoof_check(adapter);
7482         ixgbe_update_stats(adapter);
7483
7484         ixgbe_watchdog_flush_tx(adapter);
7485 }
7486
7487 /**
7488  * ixgbe_sfp_detection_subtask - poll for SFP+ cable
7489  * @adapter: the ixgbe adapter structure
7490  **/
7491 static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
7492 {
7493         struct ixgbe_hw *hw = &adapter->hw;
7494         s32 err;
7495
7496         /* not searching for SFP so there is nothing to do here */
7497         if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
7498             !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
7499                 return;
7500
7501         if (adapter->sfp_poll_time &&
7502             time_after(adapter->sfp_poll_time, jiffies))
7503                 return; /* If not yet time to poll for SFP */
7504
7505         /* someone else is in init, wait until next service event */
7506         if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
7507                 return;
7508
7509         adapter->sfp_poll_time = jiffies + IXGBE_SFP_POLL_JIFFIES - 1;
7510
7511         err = hw->phy.ops.identify_sfp(hw);
7512         if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
7513                 goto sfp_out;
7514
7515         if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
7516                 /* If no cable is present, then we need to reset
7517                  * the next time we find a good cable. */
7518                 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
7519         }
7520
7521         /* exit on error */
7522         if (err)
7523                 goto sfp_out;
7524
7525         /* exit if reset not needed */
7526         if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
7527                 goto sfp_out;
7528
7529         adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
7530
7531         /*
7532          * A module may be identified correctly, but the EEPROM may not have
7533          * support for that module.  setup_sfp() will fail in that case, so
7534          * we should not allow that module to load.
7535          */
7536         if (hw->mac.type == ixgbe_mac_82598EB)
7537                 err = hw->phy.ops.reset(hw);
7538         else
7539                 err = hw->mac.ops.setup_sfp(hw);
7540
7541         if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
7542                 goto sfp_out;
7543
7544         adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
7545         e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
7546
7547 sfp_out:
7548         clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
7549
7550         if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
7551             (adapter->netdev->reg_state == NETREG_REGISTERED)) {
7552                 e_dev_err("failed to initialize because an unsupported "
7553                           "SFP+ module type was detected.\n");
7554                 e_dev_err("Reload the driver after installing a "
7555                           "supported module.\n");
7556                 unregister_netdev(adapter->netdev);
7557         }
7558 }
7559
7560 /**
7561  * ixgbe_sfp_link_config_subtask - set up link SFP after module install
7562  * @adapter: the ixgbe adapter structure
7563  **/
7564 static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
7565 {
7566         struct ixgbe_hw *hw = &adapter->hw;
7567         u32 cap_speed;
7568         u32 speed;
7569         bool autoneg = false;
7570
7571         if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
7572                 return;
7573
7574         /* someone else is in init, wait until next service event */
7575         if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
7576                 return;
7577
7578         adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
7579
7580         hw->mac.ops.get_link_capabilities(hw, &cap_speed, &autoneg);
7581
7582         /* advertise highest capable link speed */
7583         if (!autoneg && (cap_speed & IXGBE_LINK_SPEED_10GB_FULL))
7584                 speed = IXGBE_LINK_SPEED_10GB_FULL;
7585         else
7586                 speed = cap_speed & (IXGBE_LINK_SPEED_10GB_FULL |
7587                                      IXGBE_LINK_SPEED_1GB_FULL);
7588
7589         if (hw->mac.ops.setup_link)
7590                 hw->mac.ops.setup_link(hw, speed, true);
7591
7592         adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
7593         adapter->link_check_timeout = jiffies;
7594         clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
7595 }
7596
7597 /**
7598  * ixgbe_service_timer - Timer Call-back
7599  * @t: pointer to timer_list structure
7600  **/
7601 static void ixgbe_service_timer(struct timer_list *t)
7602 {
7603         struct ixgbe_adapter *adapter = from_timer(adapter, t, service_timer);
7604         unsigned long next_event_offset;
7605
7606         /* poll faster when waiting for link */
7607         if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
7608                 next_event_offset = HZ / 10;
7609         else
7610                 next_event_offset = HZ * 2;
7611
7612         /* Reset the timer */
7613         mod_timer(&adapter->service_timer, next_event_offset + jiffies);
7614
7615         ixgbe_service_event_schedule(adapter);
7616 }
7617
7618 static void ixgbe_phy_interrupt_subtask(struct ixgbe_adapter *adapter)
7619 {
7620         struct ixgbe_hw *hw = &adapter->hw;
7621         u32 status;
7622
7623         if (!(adapter->flags2 & IXGBE_FLAG2_PHY_INTERRUPT))
7624                 return;
7625
7626         adapter->flags2 &= ~IXGBE_FLAG2_PHY_INTERRUPT;
7627
7628         if (!hw->phy.ops.handle_lasi)
7629                 return;
7630
7631         status = hw->phy.ops.handle_lasi(&adapter->hw);
7632         if (status != IXGBE_ERR_OVERTEMP)
7633                 return;
7634
7635         e_crit(drv, "%s\n", ixgbe_overheat_msg);
7636 }
7637
7638 static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
7639 {
7640         if (!test_and_clear_bit(__IXGBE_RESET_REQUESTED, &adapter->state))
7641                 return;
7642
7643         /* If we're already down, removing or resetting, just bail */
7644         if (test_bit(__IXGBE_DOWN, &adapter->state) ||
7645             test_bit(__IXGBE_REMOVING, &adapter->state) ||
7646             test_bit(__IXGBE_RESETTING, &adapter->state))
7647                 return;
7648
7649         ixgbe_dump(adapter);
7650         netdev_err(adapter->netdev, "Reset adapter\n");
7651         adapter->tx_timeout_count++;
7652
7653         rtnl_lock();
7654         ixgbe_reinit_locked(adapter);
7655         rtnl_unlock();
7656 }
7657
7658 /**
7659  * ixgbe_service_task - manages and runs subtasks
7660  * @work: pointer to work_struct containing our data
7661  **/
7662 static void ixgbe_service_task(struct work_struct *work)
7663 {
7664         struct ixgbe_adapter *adapter = container_of(work,
7665                                                      struct ixgbe_adapter,
7666                                                      service_task);
7667         if (ixgbe_removed(adapter->hw.hw_addr)) {
7668                 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
7669                         rtnl_lock();
7670                         ixgbe_down(adapter);
7671                         rtnl_unlock();
7672                 }
7673                 ixgbe_service_event_complete(adapter);
7674                 return;
7675         }
7676         if (adapter->flags2 & IXGBE_FLAG2_UDP_TUN_REREG_NEEDED) {
7677                 rtnl_lock();
7678                 adapter->flags2 &= ~IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
7679                 udp_tunnel_get_rx_info(adapter->netdev);
7680                 rtnl_unlock();
7681         }
7682         ixgbe_reset_subtask(adapter);
7683         ixgbe_phy_interrupt_subtask(adapter);
7684         ixgbe_sfp_detection_subtask(adapter);
7685         ixgbe_sfp_link_config_subtask(adapter);
7686         ixgbe_check_overtemp_subtask(adapter);
7687         ixgbe_watchdog_subtask(adapter);
7688         ixgbe_fdir_reinit_subtask(adapter);
7689         ixgbe_check_hang_subtask(adapter);
7690
7691         if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) {
7692                 ixgbe_ptp_overflow_check(adapter);
7693                 ixgbe_ptp_rx_hang(adapter);
7694                 ixgbe_ptp_tx_hang(adapter);
7695         }
7696
7697         ixgbe_service_event_complete(adapter);
7698 }
7699
7700 static int ixgbe_tso(struct ixgbe_ring *tx_ring,
7701                      struct ixgbe_tx_buffer *first,
7702                      u8 *hdr_len)
7703 {
7704         u32 vlan_macip_lens, type_tucmd, mss_l4len_idx;
7705         struct sk_buff *skb = first->skb;
7706         union {
7707                 struct iphdr *v4;
7708                 struct ipv6hdr *v6;
7709                 unsigned char *hdr;
7710         } ip;
7711         union {
7712                 struct tcphdr *tcp;
7713                 unsigned char *hdr;
7714         } l4;
7715         u32 paylen, l4_offset;
7716         int err;
7717
7718         if (skb->ip_summed != CHECKSUM_PARTIAL)
7719                 return 0;
7720
7721         if (!skb_is_gso(skb))
7722                 return 0;
7723
7724         err = skb_cow_head(skb, 0);
7725         if (err < 0)
7726                 return err;
7727
7728         if (eth_p_mpls(first->protocol))
7729                 ip.hdr = skb_inner_network_header(skb);
7730         else
7731                 ip.hdr = skb_network_header(skb);
7732         l4.hdr = skb_checksum_start(skb);
7733
7734         /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
7735         type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
7736
7737         /* initialize outer IP header fields */
7738         if (ip.v4->version == 4) {
7739                 unsigned char *csum_start = skb_checksum_start(skb);
7740                 unsigned char *trans_start = ip.hdr + (ip.v4->ihl * 4);
7741
7742                 /* IP header will have to cancel out any data that
7743                  * is not a part of the outer IP header
7744                  */
7745                 ip.v4->check = csum_fold(csum_partial(trans_start,
7746                                                       csum_start - trans_start,
7747                                                       0));
7748                 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
7749
7750                 ip.v4->tot_len = 0;
7751                 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
7752                                    IXGBE_TX_FLAGS_CSUM |
7753                                    IXGBE_TX_FLAGS_IPV4;
7754         } else {
7755                 ip.v6->payload_len = 0;
7756                 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
7757                                    IXGBE_TX_FLAGS_CSUM;
7758         }
7759
7760         /* determine offset of inner transport header */
7761         l4_offset = l4.hdr - skb->data;
7762
7763         /* compute length of segmentation header */
7764         *hdr_len = (l4.tcp->doff * 4) + l4_offset;
7765
7766         /* remove payload length from inner checksum */
7767         paylen = skb->len - l4_offset;
7768         csum_replace_by_diff(&l4.tcp->check, htonl(paylen));
7769
7770         /* update gso size and bytecount with header size */
7771         first->gso_segs = skb_shinfo(skb)->gso_segs;
7772         first->bytecount += (first->gso_segs - 1) * *hdr_len;
7773
7774         /* mss_l4len_id: use 0 as index for TSO */
7775         mss_l4len_idx = (*hdr_len - l4_offset) << IXGBE_ADVTXD_L4LEN_SHIFT;
7776         mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
7777
7778         /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
7779         vlan_macip_lens = l4.hdr - ip.hdr;
7780         vlan_macip_lens |= (ip.hdr - skb->data) << IXGBE_ADVTXD_MACLEN_SHIFT;
7781         vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
7782
7783         ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
7784                           mss_l4len_idx);
7785
7786         return 1;
7787 }
7788
7789 static inline bool ixgbe_ipv6_csum_is_sctp(struct sk_buff *skb)
7790 {
7791         unsigned int offset = 0;
7792
7793         ipv6_find_hdr(skb, &offset, IPPROTO_SCTP, NULL, NULL);
7794
7795         return offset == skb_checksum_start_offset(skb);
7796 }
7797
7798 static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
7799                           struct ixgbe_tx_buffer *first)
7800 {
7801         struct sk_buff *skb = first->skb;
7802         u32 vlan_macip_lens = 0;
7803         u32 type_tucmd = 0;
7804
7805         if (skb->ip_summed != CHECKSUM_PARTIAL) {
7806 csum_failed:
7807                 if (!(first->tx_flags & (IXGBE_TX_FLAGS_HW_VLAN |
7808                                          IXGBE_TX_FLAGS_CC)))
7809                         return;
7810                 goto no_csum;
7811         }
7812
7813         switch (skb->csum_offset) {
7814         case offsetof(struct tcphdr, check):
7815                 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
7816                 /* fall through */
7817         case offsetof(struct udphdr, check):
7818                 break;
7819         case offsetof(struct sctphdr, checksum):
7820                 /* validate that this is actually an SCTP request */
7821                 if (((first->protocol == htons(ETH_P_IP)) &&
7822                      (ip_hdr(skb)->protocol == IPPROTO_SCTP)) ||
7823                     ((first->protocol == htons(ETH_P_IPV6)) &&
7824                      ixgbe_ipv6_csum_is_sctp(skb))) {
7825                         type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_SCTP;
7826                         break;
7827                 }
7828                 /* fall through */
7829         default:
7830                 skb_checksum_help(skb);
7831                 goto csum_failed;
7832         }
7833
7834         /* update TX checksum flag */
7835         first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
7836         vlan_macip_lens = skb_checksum_start_offset(skb) -
7837                           skb_network_offset(skb);
7838 no_csum:
7839         /* vlan_macip_lens: MACLEN, VLAN tag */
7840         vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
7841         vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
7842
7843         ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd, 0);
7844 }
7845
7846 #define IXGBE_SET_FLAG(_input, _flag, _result) \
7847         ((_flag <= _result) ? \
7848          ((u32)(_input & _flag) * (_result / _flag)) : \
7849          ((u32)(_input & _flag) / (_flag / _result)))
7850
7851 static u32 ixgbe_tx_cmd_type(struct sk_buff *skb, u32 tx_flags)
7852 {
7853         /* set type for advanced descriptor with frame checksum insertion */
7854         u32 cmd_type = IXGBE_ADVTXD_DTYP_DATA |
7855                        IXGBE_ADVTXD_DCMD_DEXT |
7856                        IXGBE_ADVTXD_DCMD_IFCS;
7857
7858         /* set HW vlan bit if vlan is present */
7859         cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_HW_VLAN,
7860                                    IXGBE_ADVTXD_DCMD_VLE);
7861
7862         /* set segmentation enable bits for TSO/FSO */
7863         cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSO,
7864                                    IXGBE_ADVTXD_DCMD_TSE);
7865
7866         /* set timestamp bit if present */
7867         cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSTAMP,
7868                                    IXGBE_ADVTXD_MAC_TSTAMP);
7869
7870         /* insert frame checksum */
7871         cmd_type ^= IXGBE_SET_FLAG(skb->no_fcs, 1, IXGBE_ADVTXD_DCMD_IFCS);
7872
7873         return cmd_type;
7874 }
7875
7876 static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
7877                                    u32 tx_flags, unsigned int paylen)
7878 {
7879         u32 olinfo_status = paylen << IXGBE_ADVTXD_PAYLEN_SHIFT;
7880
7881         /* enable L4 checksum for TSO and TX checksum offload */
7882         olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7883                                         IXGBE_TX_FLAGS_CSUM,
7884                                         IXGBE_ADVTXD_POPTS_TXSM);
7885
7886         /* enble IPv4 checksum for TSO */
7887         olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7888                                         IXGBE_TX_FLAGS_IPV4,
7889                                         IXGBE_ADVTXD_POPTS_IXSM);
7890
7891         /*
7892          * Check Context must be set if Tx switch is enabled, which it
7893          * always is for case where virtual functions are running
7894          */
7895         olinfo_status |= IXGBE_SET_FLAG(tx_flags,
7896                                         IXGBE_TX_FLAGS_CC,
7897                                         IXGBE_ADVTXD_CC);
7898
7899         tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
7900 }
7901
7902 static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
7903 {
7904         netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
7905
7906         /* Herbert's original patch had:
7907          *  smp_mb__after_netif_stop_queue();
7908          * but since that doesn't exist yet, just open code it.
7909          */
7910         smp_mb();
7911
7912         /* We need to check again in a case another CPU has just
7913          * made room available.
7914          */
7915         if (likely(ixgbe_desc_unused(tx_ring) < size))
7916                 return -EBUSY;
7917
7918         /* A reprieve! - use start_queue because it doesn't call schedule */
7919         netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
7920         ++tx_ring->tx_stats.restart_queue;
7921         return 0;
7922 }
7923
7924 static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
7925 {
7926         if (likely(ixgbe_desc_unused(tx_ring) >= size))
7927                 return 0;
7928
7929         return __ixgbe_maybe_stop_tx(tx_ring, size);
7930 }
7931
7932 #define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
7933                        IXGBE_TXD_CMD_RS)
7934
7935 static int ixgbe_tx_map(struct ixgbe_ring *tx_ring,
7936                         struct ixgbe_tx_buffer *first,
7937                         const u8 hdr_len)
7938 {
7939         struct sk_buff *skb = first->skb;
7940         struct ixgbe_tx_buffer *tx_buffer;
7941         union ixgbe_adv_tx_desc *tx_desc;
7942         struct skb_frag_struct *frag;
7943         dma_addr_t dma;
7944         unsigned int data_len, size;
7945         u32 tx_flags = first->tx_flags;
7946         u32 cmd_type = ixgbe_tx_cmd_type(skb, tx_flags);
7947         u16 i = tx_ring->next_to_use;
7948
7949         tx_desc = IXGBE_TX_DESC(tx_ring, i);
7950
7951         ixgbe_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len);
7952
7953         size = skb_headlen(skb);
7954         data_len = skb->data_len;
7955
7956 #ifdef IXGBE_FCOE
7957         if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
7958                 if (data_len < sizeof(struct fcoe_crc_eof)) {
7959                         size -= sizeof(struct fcoe_crc_eof) - data_len;
7960                         data_len = 0;
7961                 } else {
7962                         data_len -= sizeof(struct fcoe_crc_eof);
7963                 }
7964         }
7965
7966 #endif
7967         dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
7968
7969         tx_buffer = first;
7970
7971         for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
7972                 if (dma_mapping_error(tx_ring->dev, dma))
7973                         goto dma_error;
7974
7975                 /* record length, and DMA address */
7976                 dma_unmap_len_set(tx_buffer, len, size);
7977                 dma_unmap_addr_set(tx_buffer, dma, dma);
7978
7979                 tx_desc->read.buffer_addr = cpu_to_le64(dma);
7980
7981                 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
7982                         tx_desc->read.cmd_type_len =
7983                                 cpu_to_le32(cmd_type ^ IXGBE_MAX_DATA_PER_TXD);
7984
7985                         i++;
7986                         tx_desc++;
7987                         if (i == tx_ring->count) {
7988                                 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
7989                                 i = 0;
7990                         }
7991                         tx_desc->read.olinfo_status = 0;
7992
7993                         dma += IXGBE_MAX_DATA_PER_TXD;
7994                         size -= IXGBE_MAX_DATA_PER_TXD;
7995
7996                         tx_desc->read.buffer_addr = cpu_to_le64(dma);
7997                 }
7998
7999                 if (likely(!data_len))
8000                         break;
8001
8002                 tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type ^ size);
8003
8004                 i++;
8005                 tx_desc++;
8006                 if (i == tx_ring->count) {
8007                         tx_desc = IXGBE_TX_DESC(tx_ring, 0);
8008                         i = 0;
8009                 }
8010                 tx_desc->read.olinfo_status = 0;
8011
8012 #ifdef IXGBE_FCOE
8013                 size = min_t(unsigned int, data_len, skb_frag_size(frag));
8014 #else
8015                 size = skb_frag_size(frag);
8016 #endif
8017                 data_len -= size;
8018
8019                 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
8020                                        DMA_TO_DEVICE);
8021
8022                 tx_buffer = &tx_ring->tx_buffer_info[i];
8023         }
8024
8025         /* write last descriptor with RS and EOP bits */
8026         cmd_type |= size | IXGBE_TXD_CMD;
8027         tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type);
8028
8029         netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
8030
8031         /* set the timestamp */
8032         first->time_stamp = jiffies;
8033
8034         /*
8035          * Force memory writes to complete before letting h/w know there
8036          * are new descriptors to fetch.  (Only applicable for weak-ordered
8037          * memory model archs, such as IA-64).
8038          *
8039          * We also need this memory barrier to make certain all of the
8040          * status bits have been updated before next_to_watch is written.
8041          */
8042         wmb();
8043
8044         /* set next_to_watch value indicating a packet is present */
8045         first->next_to_watch = tx_desc;
8046
8047         i++;
8048         if (i == tx_ring->count)
8049                 i = 0;
8050
8051         tx_ring->next_to_use = i;
8052
8053         ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
8054
8055         if (netif_xmit_stopped(txring_txq(tx_ring)) || !skb->xmit_more) {
8056                 writel(i, tx_ring->tail);
8057
8058                 /* we need this if more than one processor can write to our tail
8059                  * at a time, it synchronizes IO on IA64/Altix systems
8060                  */
8061                 mmiowb();
8062         }
8063
8064         return 0;
8065 dma_error:
8066         dev_err(tx_ring->dev, "TX DMA map failed\n");
8067
8068         /* clear dma mappings for failed tx_buffer_info map */
8069         for (;;) {
8070                 tx_buffer = &tx_ring->tx_buffer_info[i];
8071                 if (dma_unmap_len(tx_buffer, len))
8072                         dma_unmap_page(tx_ring->dev,
8073                                        dma_unmap_addr(tx_buffer, dma),
8074                                        dma_unmap_len(tx_buffer, len),
8075                                        DMA_TO_DEVICE);
8076                 dma_unmap_len_set(tx_buffer, len, 0);
8077                 if (tx_buffer == first)
8078                         break;
8079                 if (i == 0)
8080                         i += tx_ring->count;
8081                 i--;
8082         }
8083
8084         dev_kfree_skb_any(first->skb);
8085         first->skb = NULL;
8086
8087         tx_ring->next_to_use = i;
8088
8089         return -1;
8090 }
8091
8092 static void ixgbe_atr(struct ixgbe_ring *ring,
8093                       struct ixgbe_tx_buffer *first)
8094 {
8095         struct ixgbe_q_vector *q_vector = ring->q_vector;
8096         union ixgbe_atr_hash_dword input = { .dword = 0 };
8097         union ixgbe_atr_hash_dword common = { .dword = 0 };
8098         union {
8099                 unsigned char *network;
8100                 struct iphdr *ipv4;
8101                 struct ipv6hdr *ipv6;
8102         } hdr;
8103         struct tcphdr *th;
8104         unsigned int hlen;
8105         struct sk_buff *skb;
8106         __be16 vlan_id;
8107         int l4_proto;
8108
8109         /* if ring doesn't have a interrupt vector, cannot perform ATR */
8110         if (!q_vector)
8111                 return;
8112
8113         /* do nothing if sampling is disabled */
8114         if (!ring->atr_sample_rate)
8115                 return;
8116
8117         ring->atr_count++;
8118
8119         /* currently only IPv4/IPv6 with TCP is supported */
8120         if ((first->protocol != htons(ETH_P_IP)) &&
8121             (first->protocol != htons(ETH_P_IPV6)))
8122                 return;
8123
8124         /* snag network header to get L4 type and address */
8125         skb = first->skb;
8126         hdr.network = skb_network_header(skb);
8127         if (unlikely(hdr.network <= skb->data))
8128                 return;
8129         if (skb->encapsulation &&
8130             first->protocol == htons(ETH_P_IP) &&
8131             hdr.ipv4->protocol == IPPROTO_UDP) {
8132                 struct ixgbe_adapter *adapter = q_vector->adapter;
8133
8134                 if (unlikely(skb_tail_pointer(skb) < hdr.network +
8135                              VXLAN_HEADROOM))
8136                         return;
8137
8138                 /* verify the port is recognized as VXLAN */
8139                 if (adapter->vxlan_port &&
8140                     udp_hdr(skb)->dest == adapter->vxlan_port)
8141                         hdr.network = skb_inner_network_header(skb);
8142
8143                 if (adapter->geneve_port &&
8144                     udp_hdr(skb)->dest == adapter->geneve_port)
8145                         hdr.network = skb_inner_network_header(skb);
8146         }
8147
8148         /* Make sure we have at least [minimum IPv4 header + TCP]
8149          * or [IPv6 header] bytes
8150          */
8151         if (unlikely(skb_tail_pointer(skb) < hdr.network + 40))
8152                 return;
8153
8154         /* Currently only IPv4/IPv6 with TCP is supported */
8155         switch (hdr.ipv4->version) {
8156         case IPVERSION:
8157                 /* access ihl as u8 to avoid unaligned access on ia64 */
8158                 hlen = (hdr.network[0] & 0x0F) << 2;
8159                 l4_proto = hdr.ipv4->protocol;
8160                 break;
8161         case 6:
8162                 hlen = hdr.network - skb->data;
8163                 l4_proto = ipv6_find_hdr(skb, &hlen, IPPROTO_TCP, NULL, NULL);
8164                 hlen -= hdr.network - skb->data;
8165                 break;
8166         default:
8167                 return;
8168         }
8169
8170         if (l4_proto != IPPROTO_TCP)
8171                 return;
8172
8173         if (unlikely(skb_tail_pointer(skb) < hdr.network +
8174                      hlen + sizeof(struct tcphdr)))
8175                 return;
8176
8177         th = (struct tcphdr *)(hdr.network + hlen);
8178
8179         /* skip this packet since the socket is closing */
8180         if (th->fin)
8181                 return;
8182
8183         /* sample on all syn packets or once every atr sample count */
8184         if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
8185                 return;
8186
8187         /* reset sample count */
8188         ring->atr_count = 0;
8189
8190         vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
8191
8192         /*
8193          * src and dst are inverted, think how the receiver sees them
8194          *
8195          * The input is broken into two sections, a non-compressed section
8196          * containing vm_pool, vlan_id, and flow_type.  The rest of the data
8197          * is XORed together and stored in the compressed dword.
8198          */
8199         input.formatted.vlan_id = vlan_id;
8200
8201         /*
8202          * since src port and flex bytes occupy the same word XOR them together
8203          * and write the value to source port portion of compressed dword
8204          */
8205         if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
8206                 common.port.src ^= th->dest ^ htons(ETH_P_8021Q);
8207         else
8208                 common.port.src ^= th->dest ^ first->protocol;
8209         common.port.dst ^= th->source;
8210
8211         switch (hdr.ipv4->version) {
8212         case IPVERSION:
8213                 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
8214                 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
8215                 break;
8216         case 6:
8217                 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
8218                 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
8219                              hdr.ipv6->saddr.s6_addr32[1] ^
8220                              hdr.ipv6->saddr.s6_addr32[2] ^
8221                              hdr.ipv6->saddr.s6_addr32[3] ^
8222                              hdr.ipv6->daddr.s6_addr32[0] ^
8223                              hdr.ipv6->daddr.s6_addr32[1] ^
8224                              hdr.ipv6->daddr.s6_addr32[2] ^
8225                              hdr.ipv6->daddr.s6_addr32[3];
8226                 break;
8227         default:
8228                 break;
8229         }
8230
8231         if (hdr.network != skb_network_header(skb))
8232                 input.formatted.flow_type |= IXGBE_ATR_L4TYPE_TUNNEL_MASK;
8233
8234         /* This assumes the Rx queue and Tx queue are bound to the same CPU */
8235         ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
8236                                               input, common, ring->queue_index);
8237 }
8238
8239 static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb,
8240                               void *accel_priv, select_queue_fallback_t fallback)
8241 {
8242         struct ixgbe_fwd_adapter *fwd_adapter = accel_priv;
8243         struct ixgbe_adapter *adapter;
8244         int txq;
8245 #ifdef IXGBE_FCOE
8246         struct ixgbe_ring_feature *f;
8247 #endif
8248
8249         if (fwd_adapter) {
8250                 adapter = netdev_priv(dev);
8251                 txq = reciprocal_scale(skb_get_hash(skb),
8252                                        adapter->num_rx_queues_per_pool);
8253
8254                 return txq + fwd_adapter->tx_base_queue;
8255         }
8256
8257 #ifdef IXGBE_FCOE
8258
8259         /*
8260          * only execute the code below if protocol is FCoE
8261          * or FIP and we have FCoE enabled on the adapter
8262          */
8263         switch (vlan_get_protocol(skb)) {
8264         case htons(ETH_P_FCOE):
8265         case htons(ETH_P_FIP):
8266                 adapter = netdev_priv(dev);
8267
8268                 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
8269                         break;
8270                 /* fall through */
8271         default:
8272                 return fallback(dev, skb);
8273         }
8274
8275         f = &adapter->ring_feature[RING_F_FCOE];
8276
8277         txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
8278                                            smp_processor_id();
8279
8280         while (txq >= f->indices)
8281                 txq -= f->indices;
8282
8283         return txq + f->offset;
8284 #else
8285         return fallback(dev, skb);
8286 #endif
8287 }
8288
8289 static int ixgbe_xmit_xdp_ring(struct ixgbe_adapter *adapter,
8290                                struct xdp_buff *xdp)
8291 {
8292         struct ixgbe_ring *ring = adapter->xdp_ring[smp_processor_id()];
8293         struct ixgbe_tx_buffer *tx_buffer;
8294         union ixgbe_adv_tx_desc *tx_desc;
8295         u32 len, cmd_type;
8296         dma_addr_t dma;
8297         u16 i;
8298
8299         len = xdp->data_end - xdp->data;
8300
8301         if (unlikely(!ixgbe_desc_unused(ring)))
8302                 return IXGBE_XDP_CONSUMED;
8303
8304         dma = dma_map_single(ring->dev, xdp->data, len, DMA_TO_DEVICE);
8305         if (dma_mapping_error(ring->dev, dma))
8306                 return IXGBE_XDP_CONSUMED;
8307
8308         /* record the location of the first descriptor for this packet */
8309         tx_buffer = &ring->tx_buffer_info[ring->next_to_use];
8310         tx_buffer->bytecount = len;
8311         tx_buffer->gso_segs = 1;
8312         tx_buffer->protocol = 0;
8313
8314         i = ring->next_to_use;
8315         tx_desc = IXGBE_TX_DESC(ring, i);
8316
8317         dma_unmap_len_set(tx_buffer, len, len);
8318         dma_unmap_addr_set(tx_buffer, dma, dma);
8319         tx_buffer->data = xdp->data;
8320         tx_desc->read.buffer_addr = cpu_to_le64(dma);
8321
8322         /* put descriptor type bits */
8323         cmd_type = IXGBE_ADVTXD_DTYP_DATA |
8324                    IXGBE_ADVTXD_DCMD_DEXT |
8325                    IXGBE_ADVTXD_DCMD_IFCS;
8326         cmd_type |= len | IXGBE_TXD_CMD;
8327         tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type);
8328         tx_desc->read.olinfo_status =
8329                 cpu_to_le32(len << IXGBE_ADVTXD_PAYLEN_SHIFT);
8330
8331         /* Avoid any potential race with xdp_xmit and cleanup */
8332         smp_wmb();
8333
8334         /* set next_to_watch value indicating a packet is present */
8335         i++;
8336         if (i == ring->count)
8337                 i = 0;
8338
8339         tx_buffer->next_to_watch = tx_desc;
8340         ring->next_to_use = i;
8341
8342         return IXGBE_XDP_TX;
8343 }
8344
8345 netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
8346                           struct ixgbe_adapter *adapter,
8347                           struct ixgbe_ring *tx_ring)
8348 {
8349         struct ixgbe_tx_buffer *first;
8350         int tso;
8351         u32 tx_flags = 0;
8352         unsigned short f;
8353         u16 count = TXD_USE_COUNT(skb_headlen(skb));
8354         __be16 protocol = skb->protocol;
8355         u8 hdr_len = 0;
8356
8357         /*
8358          * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
8359          *       + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
8360          *       + 2 desc gap to keep tail from touching head,
8361          *       + 1 desc for context descriptor,
8362          * otherwise try next time
8363          */
8364         for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
8365                 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
8366
8367         if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
8368                 tx_ring->tx_stats.tx_busy++;
8369                 return NETDEV_TX_BUSY;
8370         }
8371
8372         /* record the location of the first descriptor for this packet */
8373         first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
8374         first->skb = skb;
8375         first->bytecount = skb->len;
8376         first->gso_segs = 1;
8377
8378         /* if we have a HW VLAN tag being added default to the HW one */
8379         if (skb_vlan_tag_present(skb)) {
8380                 tx_flags |= skb_vlan_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
8381                 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
8382         /* else if it is a SW VLAN check the next protocol and store the tag */
8383         } else if (protocol == htons(ETH_P_8021Q)) {
8384                 struct vlan_hdr *vhdr, _vhdr;
8385                 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
8386                 if (!vhdr)
8387                         goto out_drop;
8388
8389                 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
8390                                   IXGBE_TX_FLAGS_VLAN_SHIFT;
8391                 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
8392         }
8393         protocol = vlan_get_protocol(skb);
8394
8395         if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
8396             adapter->ptp_clock) {
8397                 if (!test_and_set_bit_lock(__IXGBE_PTP_TX_IN_PROGRESS,
8398                                            &adapter->state)) {
8399                         skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
8400                         tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
8401
8402                         /* schedule check for Tx timestamp */
8403                         adapter->ptp_tx_skb = skb_get(skb);
8404                         adapter->ptp_tx_start = jiffies;
8405                         schedule_work(&adapter->ptp_tx_work);
8406                 } else {
8407                         adapter->tx_hwtstamp_skipped++;
8408                 }
8409         }
8410
8411         skb_tx_timestamp(skb);
8412
8413 #ifdef CONFIG_PCI_IOV
8414         /*
8415          * Use the l2switch_enable flag - would be false if the DMA
8416          * Tx switch had been disabled.
8417          */
8418         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
8419                 tx_flags |= IXGBE_TX_FLAGS_CC;
8420
8421 #endif
8422         /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
8423         if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
8424             ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
8425              (skb->priority != TC_PRIO_CONTROL))) {
8426                 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
8427                 tx_flags |= (skb->priority & 0x7) <<
8428                                         IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
8429                 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
8430                         struct vlan_ethhdr *vhdr;
8431
8432                         if (skb_cow_head(skb, 0))
8433                                 goto out_drop;
8434                         vhdr = (struct vlan_ethhdr *)skb->data;
8435                         vhdr->h_vlan_TCI = htons(tx_flags >>
8436                                                  IXGBE_TX_FLAGS_VLAN_SHIFT);
8437                 } else {
8438                         tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
8439                 }
8440         }
8441
8442         /* record initial flags and protocol */
8443         first->tx_flags = tx_flags;
8444         first->protocol = protocol;
8445
8446 #ifdef IXGBE_FCOE
8447         /* setup tx offload for FCoE */
8448         if ((protocol == htons(ETH_P_FCOE)) &&
8449             (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
8450                 tso = ixgbe_fso(tx_ring, first, &hdr_len);
8451                 if (tso < 0)
8452                         goto out_drop;
8453
8454                 goto xmit_fcoe;
8455         }
8456
8457 #endif /* IXGBE_FCOE */
8458         tso = ixgbe_tso(tx_ring, first, &hdr_len);
8459         if (tso < 0)
8460                 goto out_drop;
8461         else if (!tso)
8462                 ixgbe_tx_csum(tx_ring, first);
8463
8464         /* add the ATR filter if ATR is on */
8465         if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
8466                 ixgbe_atr(tx_ring, first);
8467
8468 #ifdef IXGBE_FCOE
8469 xmit_fcoe:
8470 #endif /* IXGBE_FCOE */
8471         if (ixgbe_tx_map(tx_ring, first, hdr_len))
8472                 goto cleanup_tx_timestamp;
8473
8474         return NETDEV_TX_OK;
8475
8476 out_drop:
8477         dev_kfree_skb_any(first->skb);
8478         first->skb = NULL;
8479 cleanup_tx_timestamp:
8480         if (unlikely(tx_flags & IXGBE_TX_FLAGS_TSTAMP)) {
8481                 dev_kfree_skb_any(adapter->ptp_tx_skb);
8482                 adapter->ptp_tx_skb = NULL;
8483                 cancel_work_sync(&adapter->ptp_tx_work);
8484                 clear_bit_unlock(__IXGBE_PTP_TX_IN_PROGRESS, &adapter->state);
8485         }
8486
8487         return NETDEV_TX_OK;
8488 }
8489
8490 static netdev_tx_t __ixgbe_xmit_frame(struct sk_buff *skb,
8491                                       struct net_device *netdev,
8492                                       struct ixgbe_ring *ring)
8493 {
8494         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8495         struct ixgbe_ring *tx_ring;
8496
8497         /*
8498          * The minimum packet size for olinfo paylen is 17 so pad the skb
8499          * in order to meet this minimum size requirement.
8500          */
8501         if (skb_put_padto(skb, 17))
8502                 return NETDEV_TX_OK;
8503
8504         tx_ring = ring ? ring : adapter->tx_ring[skb->queue_mapping];
8505
8506         return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
8507 }
8508
8509 static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
8510                                     struct net_device *netdev)
8511 {
8512         return __ixgbe_xmit_frame(skb, netdev, NULL);
8513 }
8514
8515 /**
8516  * ixgbe_set_mac - Change the Ethernet Address of the NIC
8517  * @netdev: network interface device structure
8518  * @p: pointer to an address structure
8519  *
8520  * Returns 0 on success, negative on failure
8521  **/
8522 static int ixgbe_set_mac(struct net_device *netdev, void *p)
8523 {
8524         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8525         struct ixgbe_hw *hw = &adapter->hw;
8526         struct sockaddr *addr = p;
8527
8528         if (!is_valid_ether_addr(addr->sa_data))
8529                 return -EADDRNOTAVAIL;
8530
8531         memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
8532         memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
8533
8534         ixgbe_mac_set_default_filter(adapter);
8535
8536         return 0;
8537 }
8538
8539 static int
8540 ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
8541 {
8542         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8543         struct ixgbe_hw *hw = &adapter->hw;
8544         u16 value;
8545         int rc;
8546
8547         if (prtad != hw->phy.mdio.prtad)
8548                 return -EINVAL;
8549         rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
8550         if (!rc)
8551                 rc = value;
8552         return rc;
8553 }
8554
8555 static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
8556                             u16 addr, u16 value)
8557 {
8558         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8559         struct ixgbe_hw *hw = &adapter->hw;
8560
8561         if (prtad != hw->phy.mdio.prtad)
8562                 return -EINVAL;
8563         return hw->phy.ops.write_reg(hw, addr, devad, value);
8564 }
8565
8566 static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
8567 {
8568         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8569
8570         switch (cmd) {
8571         case SIOCSHWTSTAMP:
8572                 return ixgbe_ptp_set_ts_config(adapter, req);
8573         case SIOCGHWTSTAMP:
8574                 return ixgbe_ptp_get_ts_config(adapter, req);
8575         case SIOCGMIIPHY:
8576                 if (!adapter->hw.phy.ops.read_reg)
8577                         return -EOPNOTSUPP;
8578                 /* fall through */
8579         default:
8580                 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
8581         }
8582 }
8583
8584 /**
8585  * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
8586  * netdev->dev_addrs
8587  * @dev: network interface device structure
8588  *
8589  * Returns non-zero on failure
8590  **/
8591 static int ixgbe_add_sanmac_netdev(struct net_device *dev)
8592 {
8593         int err = 0;
8594         struct ixgbe_adapter *adapter = netdev_priv(dev);
8595         struct ixgbe_hw *hw = &adapter->hw;
8596
8597         if (is_valid_ether_addr(hw->mac.san_addr)) {
8598                 rtnl_lock();
8599                 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
8600                 rtnl_unlock();
8601
8602                 /* update SAN MAC vmdq pool selection */
8603                 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
8604         }
8605         return err;
8606 }
8607
8608 /**
8609  * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
8610  * netdev->dev_addrs
8611  * @dev: network interface device structure
8612  *
8613  * Returns non-zero on failure
8614  **/
8615 static int ixgbe_del_sanmac_netdev(struct net_device *dev)
8616 {
8617         int err = 0;
8618         struct ixgbe_adapter *adapter = netdev_priv(dev);
8619         struct ixgbe_mac_info *mac = &adapter->hw.mac;
8620
8621         if (is_valid_ether_addr(mac->san_addr)) {
8622                 rtnl_lock();
8623                 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
8624                 rtnl_unlock();
8625         }
8626         return err;
8627 }
8628
8629 #ifdef CONFIG_NET_POLL_CONTROLLER
8630 /*
8631  * Polling 'interrupt' - used by things like netconsole to send skbs
8632  * without having to re-enable interrupts. It's not called while
8633  * the interrupt routine is executing.
8634  */
8635 static void ixgbe_netpoll(struct net_device *netdev)
8636 {
8637         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8638         int i;
8639
8640         /* if interface is down do nothing */
8641         if (test_bit(__IXGBE_DOWN, &adapter->state))
8642                 return;
8643
8644         /* loop through and schedule all active queues */
8645         for (i = 0; i < adapter->num_q_vectors; i++)
8646                 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
8647 }
8648
8649 #endif
8650
8651 static void ixgbe_get_ring_stats64(struct rtnl_link_stats64 *stats,
8652                                    struct ixgbe_ring *ring)
8653 {
8654         u64 bytes, packets;
8655         unsigned int start;
8656
8657         if (ring) {
8658                 do {
8659                         start = u64_stats_fetch_begin_irq(&ring->syncp);
8660                         packets = ring->stats.packets;
8661                         bytes   = ring->stats.bytes;
8662                 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
8663                 stats->tx_packets += packets;
8664                 stats->tx_bytes   += bytes;
8665         }
8666 }
8667
8668 static void ixgbe_get_stats64(struct net_device *netdev,
8669                               struct rtnl_link_stats64 *stats)
8670 {
8671         struct ixgbe_adapter *adapter = netdev_priv(netdev);
8672         int i;
8673
8674         rcu_read_lock();
8675         for (i = 0; i < adapter->num_rx_queues; i++) {
8676                 struct ixgbe_ring *ring = READ_ONCE(adapter->rx_ring[i]);
8677                 u64 bytes, packets;
8678                 unsigned int start;
8679
8680                 if (ring) {
8681                         do {
8682                                 start = u64_stats_fetch_begin_irq(&ring->syncp);
8683                                 packets = ring->stats.packets;
8684                                 bytes   = ring->stats.bytes;
8685                         } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
8686                         stats->rx_packets += packets;
8687                         stats->rx_bytes   += bytes;
8688                 }
8689         }
8690
8691         for (i = 0; i < adapter->num_tx_queues; i++) {
8692                 struct ixgbe_ring *ring = READ_ONCE(adapter->tx_ring[i]);
8693
8694                 ixgbe_get_ring_stats64(stats, ring);
8695         }
8696         for (i = 0; i < adapter->num_xdp_queues; i++) {
8697                 struct ixgbe_ring *ring = READ_ONCE(adapter->xdp_ring[i]);
8698
8699                 ixgbe_get_ring_stats64(stats, ring);
8700         }
8701         rcu_read_unlock();
8702
8703         /* following stats updated by ixgbe_watchdog_task() */
8704         stats->multicast        = netdev->stats.multicast;
8705         stats->rx_errors        = netdev->stats.rx_errors;
8706         stats->rx_length_errors = netdev->stats.rx_length_errors;
8707         stats->rx_crc_errors    = netdev->stats.rx_crc_errors;
8708         stats->rx_missed_errors = netdev->stats.rx_missed_errors;
8709 }
8710
8711 #ifdef CONFIG_IXGBE_DCB
8712 /**
8713  * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
8714  * @adapter: pointer to ixgbe_adapter
8715  * @tc: number of traffic classes currently enabled
8716  *
8717  * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
8718  * 802.1Q priority maps to a packet buffer that exists.
8719  */
8720 static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
8721 {
8722         struct ixgbe_hw *hw = &adapter->hw;
8723         u32 reg, rsave;
8724         int i;
8725
8726         /* 82598 have a static priority to TC mapping that can not
8727          * be changed so no validation is needed.
8728          */
8729         if (hw->mac.type == ixgbe_mac_82598EB)
8730                 return;
8731
8732         reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
8733         rsave = reg;
8734
8735         for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
8736                 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
8737
8738                 /* If up2tc is out of bounds default to zero */
8739                 if (up2tc > tc)
8740                         reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
8741         }
8742
8743         if (reg != rsave)
8744                 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
8745
8746         return;
8747 }
8748
8749 /**
8750  * ixgbe_set_prio_tc_map - Configure netdev prio tc map
8751  * @adapter: Pointer to adapter struct
8752  *
8753  * Populate the netdev user priority to tc map
8754  */
8755 static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
8756 {
8757         struct net_device *dev = adapter->netdev;
8758         struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
8759         struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
8760         u8 prio;
8761
8762         for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
8763                 u8 tc = 0;
8764
8765                 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
8766                         tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
8767                 else if (ets)
8768                         tc = ets->prio_tc[prio];
8769
8770                 netdev_set_prio_tc_map(dev, prio, tc);
8771         }
8772 }
8773
8774 #endif /* CONFIG_IXGBE_DCB */
8775 /**
8776  * ixgbe_setup_tc - configure net_device for multiple traffic classes
8777  *
8778  * @dev: net device to configure
8779  * @tc: number of traffic classes to enable
8780  */
8781 int ixgbe_setup_tc(struct net_device *dev, u8 tc)
8782 {
8783         struct ixgbe_adapter *adapter = netdev_priv(dev);
8784         struct ixgbe_hw *hw = &adapter->hw;
8785
8786         /* Hardware supports up to 8 traffic classes */
8787         if (tc > adapter->dcb_cfg.num_tcs.pg_tcs)
8788                 return -EINVAL;
8789
8790         if (hw->mac.type == ixgbe_mac_82598EB && tc && tc < MAX_TRAFFIC_CLASS)
8791                 return -EINVAL;
8792
8793         /* Hardware has to reinitialize queues and interrupts to
8794          * match packet buffer alignment. Unfortunately, the
8795          * hardware is not flexible enough to do this dynamically.
8796          */
8797         if (netif_running(dev))
8798                 ixgbe_close(dev);
8799         else
8800                 ixgbe_reset(adapter);
8801
8802         ixgbe_clear_interrupt_scheme(adapter);
8803
8804 #ifdef CONFIG_IXGBE_DCB
8805         if (tc) {
8806                 netdev_set_num_tc(dev, tc);
8807                 ixgbe_set_prio_tc_map(adapter);
8808
8809                 adapter->hw_tcs = tc;
8810                 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
8811
8812                 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
8813                         adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
8814                         adapter->hw.fc.requested_mode = ixgbe_fc_none;
8815                 }
8816         } else {
8817                 netdev_reset_tc(dev);
8818
8819                 /* To support macvlan offload we have to use num_tc to
8820                  * restrict the queues that can be used by the device.
8821                  * By doing this we can avoid reporting a false number of
8822                  * queues.
8823                  */
8824                 if (!tc && adapter->num_rx_pools > 1)
8825                         netdev_set_num_tc(dev, 1);
8826
8827                 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
8828                         adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
8829
8830                 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
8831                 adapter->hw_tcs = tc;
8832
8833                 adapter->temp_dcb_cfg.pfc_mode_enable = false;
8834                 adapter->dcb_cfg.pfc_mode_enable = false;
8835         }
8836
8837         ixgbe_validate_rtr(adapter, tc);
8838
8839 #endif /* CONFIG_IXGBE_DCB */
8840         ixgbe_init_interrupt_scheme(adapter);
8841
8842         if (netif_running(dev))
8843                 return ixgbe_open(dev);
8844
8845         return 0;
8846 }
8847
8848 static int ixgbe_delete_clsu32(struct ixgbe_adapter *adapter,
8849                                struct tc_cls_u32_offload *cls)
8850 {
8851         u32 hdl = cls->knode.handle;
8852         u32 uhtid = TC_U32_USERHTID(cls->knode.handle);
8853         u32 loc = cls->knode.handle & 0xfffff;
8854         int err = 0, i, j;
8855         struct ixgbe_jump_table *jump = NULL;
8856
8857         if (loc > IXGBE_MAX_HW_ENTRIES)
8858                 return -EINVAL;
8859
8860         if ((uhtid != 0x800) && (uhtid >= IXGBE_MAX_LINK_HANDLE))
8861                 return -EINVAL;
8862
8863         /* Clear this filter in the link data it is associated with */
8864         if (uhtid != 0x800) {
8865                 jump = adapter->jump_tables[uhtid];
8866                 if (!jump)
8867                         return -EINVAL;
8868                 if (!test_bit(loc - 1, jump->child_loc_map))
8869                         return -EINVAL;
8870                 clear_bit(loc - 1, jump->child_loc_map);
8871         }
8872
8873         /* Check if the filter being deleted is a link */
8874         for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) {
8875                 jump = adapter->jump_tables[i];
8876                 if (jump && jump->link_hdl == hdl) {
8877                         /* Delete filters in the hardware in the child hash
8878                          * table associated with this link
8879                          */
8880                         for (j = 0; j < IXGBE_MAX_HW_ENTRIES; j++) {
8881                                 if (!test_bit(j, jump->child_loc_map))
8882                                         continue;
8883                                 spin_lock(&adapter->fdir_perfect_lock);
8884                                 err = ixgbe_update_ethtool_fdir_entry(adapter,
8885                                                                       NULL,
8886                                                                       j + 1);
8887                                 spin_unlock(&adapter->fdir_perfect_lock);
8888                                 clear_bit(j, jump->child_loc_map);
8889                         }
8890                         /* Remove resources for this link */
8891                         kfree(jump->input);
8892                         kfree(jump->mask);
8893                         kfree(jump);
8894                         adapter->jump_tables[i] = NULL;
8895                         return err;
8896                 }
8897         }
8898
8899         spin_lock(&adapter->fdir_perfect_lock);
8900         err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, loc);
8901         spin_unlock(&adapter->fdir_perfect_lock);
8902         return err;
8903 }
8904
8905 static int ixgbe_configure_clsu32_add_hnode(struct ixgbe_adapter *adapter,
8906                                             struct tc_cls_u32_offload *cls)
8907 {
8908         u32 uhtid = TC_U32_USERHTID(cls->hnode.handle);
8909
8910         if (uhtid >= IXGBE_MAX_LINK_HANDLE)
8911                 return -EINVAL;
8912
8913         /* This ixgbe devices do not support hash tables at the moment
8914          * so abort when given hash tables.
8915          */
8916         if (cls->hnode.divisor > 0)
8917                 return -EINVAL;
8918
8919         set_bit(uhtid - 1, &adapter->tables);
8920         return 0;
8921 }
8922
8923 static int ixgbe_configure_clsu32_del_hnode(struct ixgbe_adapter *adapter,
8924                                             struct tc_cls_u32_offload *cls)
8925 {
8926         u32 uhtid = TC_U32_USERHTID(cls->hnode.handle);
8927
8928         if (uhtid >= IXGBE_MAX_LINK_HANDLE)
8929                 return -EINVAL;
8930
8931         clear_bit(uhtid - 1, &adapter->tables);
8932         return 0;
8933 }
8934
8935 #ifdef CONFIG_NET_CLS_ACT
8936 struct upper_walk_data {
8937         struct ixgbe_adapter *adapter;
8938         u64 action;
8939         int ifindex;
8940         u8 queue;
8941 };
8942
8943 static int get_macvlan_queue(struct net_device *upper, void *_data)
8944 {
8945         if (netif_is_macvlan(upper)) {
8946                 struct macvlan_dev *dfwd = netdev_priv(upper);
8947                 struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv;
8948                 struct upper_walk_data *data = _data;
8949                 struct ixgbe_adapter *adapter = data->adapter;
8950                 int ifindex = data->ifindex;
8951
8952                 if (vadapter && vadapter->netdev->ifindex == ifindex) {
8953                         data->queue = adapter->rx_ring[vadapter->rx_base_queue]->reg_idx;
8954                         data->action = data->queue;
8955                         return 1;
8956                 }
8957         }
8958
8959         return 0;
8960 }
8961
8962 static int handle_redirect_action(struct ixgbe_adapter *adapter, int ifindex,
8963                                   u8 *queue, u64 *action)
8964 {
8965         struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
8966         unsigned int num_vfs = adapter->num_vfs, vf;
8967         struct upper_walk_data data;
8968         struct net_device *upper;
8969
8970         /* redirect to a SRIOV VF */
8971         for (vf = 0; vf < num_vfs; ++vf) {
8972                 upper = pci_get_drvdata(adapter->vfinfo[vf].vfdev);
8973                 if (upper->ifindex == ifindex) {
8974                         *queue = vf * __ALIGN_MASK(1, ~vmdq->mask);
8975                         *action = vf + 1;
8976                         *action <<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF;
8977                         return 0;
8978                 }
8979         }
8980
8981         /* redirect to a offloaded macvlan netdev */
8982         data.adapter = adapter;
8983         data.ifindex = ifindex;
8984         data.action = 0;
8985         data.queue = 0;
8986         if (netdev_walk_all_upper_dev_rcu(adapter->netdev,
8987                                           get_macvlan_queue, &data)) {
8988                 *action = data.action;
8989                 *queue = data.queue;
8990
8991                 return 0;
8992         }
8993
8994         return -EINVAL;
8995 }
8996
8997 static int parse_tc_actions(struct ixgbe_adapter *adapter,
8998                             struct tcf_exts *exts, u64 *action, u8 *queue)
8999 {
9000         const struct tc_action *a;
9001         LIST_HEAD(actions);
9002         int err;
9003
9004         if (!tcf_exts_has_actions(exts))
9005                 return -EINVAL;
9006
9007         tcf_exts_to_list(exts, &actions);
9008         list_for_each_entry(a, &actions, list) {
9009
9010                 /* Drop action */
9011                 if (is_tcf_gact_shot(a)) {
9012                         *action = IXGBE_FDIR_DROP_QUEUE;
9013                         *queue = IXGBE_FDIR_DROP_QUEUE;
9014                         return 0;
9015                 }
9016
9017                 /* Redirect to a VF or a offloaded macvlan */
9018                 if (is_tcf_mirred_egress_redirect(a)) {
9019                         struct net_device *dev = tcf_mirred_dev(a);
9020
9021                         if (!dev)
9022                                 return -EINVAL;
9023                         err = handle_redirect_action(adapter, dev->ifindex, queue,
9024                                                      action);
9025                         if (err == 0)
9026                                 return err;
9027                 }
9028         }
9029
9030         return -EINVAL;
9031 }
9032 #else
9033 static int parse_tc_actions(struct ixgbe_adapter *adapter,
9034                             struct tcf_exts *exts, u64 *action, u8 *queue)
9035 {
9036         return -EINVAL;
9037 }
9038 #endif /* CONFIG_NET_CLS_ACT */
9039
9040 static int ixgbe_clsu32_build_input(struct ixgbe_fdir_filter *input,
9041                                     union ixgbe_atr_input *mask,
9042                                     struct tc_cls_u32_offload *cls,
9043                                     struct ixgbe_mat_field *field_ptr,
9044                                     struct ixgbe_nexthdr *nexthdr)
9045 {
9046         int i, j, off;
9047         __be32 val, m;
9048         bool found_entry = false, found_jump_field = false;
9049
9050         for (i = 0; i < cls->knode.sel->nkeys; i++) {
9051                 off = cls->knode.sel->keys[i].off;
9052                 val = cls->knode.sel->keys[i].val;
9053                 m = cls->knode.sel->keys[i].mask;
9054
9055                 for (j = 0; field_ptr[j].val; j++) {
9056                         if (field_ptr[j].off == off) {
9057                                 field_ptr[j].val(input, mask, val, m);
9058                                 input->filter.formatted.flow_type |=
9059                                         field_ptr[j].type;
9060                                 found_entry = true;
9061                                 break;
9062                         }
9063                 }
9064                 if (nexthdr) {
9065                         if (nexthdr->off == cls->knode.sel->keys[i].off &&
9066                             nexthdr->val == cls->knode.sel->keys[i].val &&
9067                             nexthdr->mask == cls->knode.sel->keys[i].mask)
9068                                 found_jump_field = true;
9069                         else
9070                                 continue;
9071                 }
9072         }
9073
9074         if (nexthdr && !found_jump_field)
9075                 return -EINVAL;
9076
9077         if (!found_entry)
9078                 return 0;
9079
9080         mask->formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK |
9081                                     IXGBE_ATR_L4TYPE_MASK;
9082
9083         if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4)
9084                 mask->formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK;
9085
9086         return 0;
9087 }
9088
9089 static int ixgbe_configure_clsu32(struct ixgbe_adapter *adapter,
9090                                   struct tc_cls_u32_offload *cls)
9091 {
9092         __be16 protocol = cls->common.protocol;
9093         u32 loc = cls->knode.handle & 0xfffff;
9094         struct ixgbe_hw *hw = &adapter->hw;
9095         struct ixgbe_mat_field *field_ptr;
9096         struct ixgbe_fdir_filter *input = NULL;
9097         union ixgbe_atr_input *mask = NULL;
9098         struct ixgbe_jump_table *jump = NULL;
9099         int i, err = -EINVAL;
9100         u8 queue;
9101         u32 uhtid, link_uhtid;
9102
9103         uhtid = TC_U32_USERHTID(cls->knode.handle);
9104         link_uhtid = TC_U32_USERHTID(cls->knode.link_handle);
9105
9106         /* At the moment cls_u32 jumps to network layer and skips past
9107          * L2 headers. The canonical method to match L2 frames is to use
9108          * negative values. However this is error prone at best but really
9109          * just broken because there is no way to "know" what sort of hdr
9110          * is in front of the network layer. Fix cls_u32 to support L2
9111          * headers when needed.
9112          */
9113         if (protocol != htons(ETH_P_IP))
9114                 return err;
9115
9116         if (loc >= ((1024 << adapter->fdir_pballoc) - 2)) {
9117                 e_err(drv, "Location out of range\n");
9118                 return err;
9119         }
9120
9121         /* cls u32 is a graph starting at root node 0x800. The driver tracks
9122          * links and also the fields used to advance the parser across each
9123          * link (e.g. nexthdr/eat parameters from 'tc'). This way we can map
9124          * the u32 graph onto the hardware parse graph denoted in ixgbe_model.h
9125          * To add support for new nodes update ixgbe_model.h parse structures
9126          * this function _should_ be generic try not to hardcode values here.
9127          */
9128         if (uhtid == 0x800) {
9129                 field_ptr = (adapter->jump_tables[0])->mat;
9130         } else {
9131                 if (uhtid >= IXGBE_MAX_LINK_HANDLE)
9132                         return err;
9133                 if (!adapter->jump_tables[uhtid])
9134                         return err;
9135                 field_ptr = (adapter->jump_tables[uhtid])->mat;
9136         }
9137
9138         if (!field_ptr)
9139                 return err;
9140
9141         /* At this point we know the field_ptr is valid and need to either
9142          * build cls_u32 link or attach filter. Because adding a link to
9143          * a handle that does not exist is invalid and the same for adding
9144          * rules to handles that don't exist.
9145          */
9146
9147         if (link_uhtid) {
9148                 struct ixgbe_nexthdr *nexthdr = ixgbe_ipv4_jumps;
9149
9150                 if (link_uhtid >= IXGBE_MAX_LINK_HANDLE)
9151                         return err;
9152
9153                 if (!test_bit(link_uhtid - 1, &adapter->tables))
9154                         return err;
9155
9156                 /* Multiple filters as links to the same hash table are not
9157                  * supported. To add a new filter with the same next header
9158                  * but different match/jump conditions, create a new hash table
9159                  * and link to it.
9160                  */
9161                 if (adapter->jump_tables[link_uhtid] &&
9162                     (adapter->jump_tables[link_uhtid])->link_hdl) {
9163                         e_err(drv, "Link filter exists for link: %x\n",
9164                               link_uhtid);
9165                         return err;
9166                 }
9167
9168                 for (i = 0; nexthdr[i].jump; i++) {
9169                         if (nexthdr[i].o != cls->knode.sel->offoff ||
9170                             nexthdr[i].s != cls->knode.sel->offshift ||
9171                             nexthdr[i].m != cls->knode.sel->offmask)
9172                                 return err;
9173
9174                         jump = kzalloc(sizeof(*jump), GFP_KERNEL);
9175                         if (!jump)
9176                                 return -ENOMEM;
9177                         input = kzalloc(sizeof(*input), GFP_KERNEL);
9178                         if (!input) {
9179                                 err = -ENOMEM;
9180                                 goto free_jump;
9181                         }
9182                         mask = kzalloc(sizeof(*mask), GFP_KERNEL);
9183                         if (!mask) {
9184                                 err = -ENOMEM;
9185                                 goto free_input;
9186                         }
9187                         jump->input = input;
9188                         jump->mask = mask;
9189                         jump->link_hdl = cls->knode.handle;
9190
9191                         err = ixgbe_clsu32_build_input(input, mask, cls,
9192                                                        field_ptr, &nexthdr[i]);
9193                         if (!err) {
9194                                 jump->mat = nexthdr[i].jump;
9195                                 adapter->jump_tables[link_uhtid] = jump;
9196                                 break;
9197                         }
9198                 }
9199                 return 0;
9200         }
9201
9202         input = kzalloc(sizeof(*input), GFP_KERNEL);
9203         if (!input)
9204                 return -ENOMEM;
9205         mask = kzalloc(sizeof(*mask), GFP_KERNEL);
9206         if (!mask) {
9207                 err = -ENOMEM;
9208                 goto free_input;
9209         }
9210
9211         if ((uhtid != 0x800) && (adapter->jump_tables[uhtid])) {
9212                 if ((adapter->jump_tables[uhtid])->input)
9213                         memcpy(input, (adapter->jump_tables[uhtid])->input,
9214                                sizeof(*input));
9215                 if ((adapter->jump_tables[uhtid])->mask)
9216                         memcpy(mask, (adapter->jump_tables[uhtid])->mask,
9217                                sizeof(*mask));
9218
9219                 /* Lookup in all child hash tables if this location is already
9220                  * filled with a filter
9221                  */
9222                 for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) {
9223                         struct ixgbe_jump_table *link = adapter->jump_tables[i];
9224
9225                         if (link && (test_bit(loc - 1, link->child_loc_map))) {
9226                                 e_err(drv, "Filter exists in location: %x\n",
9227                                       loc);
9228                                 err = -EINVAL;
9229                                 goto err_out;
9230                         }
9231                 }
9232         }
9233         err = ixgbe_clsu32_build_input(input, mask, cls, field_ptr, NULL);
9234         if (err)
9235                 goto err_out;
9236
9237         err = parse_tc_actions(adapter, cls->knode.exts, &input->action,
9238                                &queue);
9239         if (err < 0)
9240                 goto err_out;
9241
9242         input->sw_idx = loc;
9243
9244         spin_lock(&adapter->fdir_perfect_lock);
9245
9246         if (hlist_empty(&adapter->fdir_filter_list)) {
9247                 memcpy(&adapter->fdir_mask, mask, sizeof(*mask));
9248                 err = ixgbe_fdir_set_input_mask_82599(hw, mask);
9249                 if (err)
9250                         goto err_out_w_lock;
9251         } else if (memcmp(&adapter->fdir_mask, mask, sizeof(*mask))) {
9252                 err = -EINVAL;
9253                 goto err_out_w_lock;
9254         }
9255
9256         ixgbe_atr_compute_perfect_hash_82599(&input->filter, mask);
9257         err = ixgbe_fdir_write_perfect_filter_82599(hw, &input->filter,
9258                                                     input->sw_idx, queue);
9259         if (!err)
9260                 ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx);
9261         spin_unlock(&adapter->fdir_perfect_lock);
9262
9263         if ((uhtid != 0x800) && (adapter->jump_tables[uhtid]))
9264                 set_bit(loc - 1, (adapter->jump_tables[uhtid])->child_loc_map);
9265
9266         kfree(mask);
9267         return err;
9268 err_out_w_lock:
9269         spin_unlock(&adapter->fdir_perfect_lock);
9270 err_out:
9271         kfree(mask);
9272 free_input:
9273         kfree(input);
9274 free_jump:
9275         kfree(jump);
9276         return err;
9277 }
9278
9279 static int ixgbe_setup_tc_cls_u32(struct ixgbe_adapter *adapter,
9280                                   struct tc_cls_u32_offload *cls_u32)
9281 {
9282         if (cls_u32->common.chain_index)
9283                 return -EOPNOTSUPP;
9284
9285         switch (cls_u32->command) {
9286         case TC_CLSU32_NEW_KNODE:
9287         case TC_CLSU32_REPLACE_KNODE:
9288                 return ixgbe_configure_clsu32(adapter, cls_u32);
9289         case TC_CLSU32_DELETE_KNODE:
9290                 return ixgbe_delete_clsu32(adapter, cls_u32);
9291         case TC_CLSU32_NEW_HNODE:
9292         case TC_CLSU32_REPLACE_HNODE:
9293                 return ixgbe_configure_clsu32_add_hnode(adapter, cls_u32);
9294         case TC_CLSU32_DELETE_HNODE:
9295                 return ixgbe_configure_clsu32_del_hnode(adapter, cls_u32);
9296         default:
9297                 return -EOPNOTSUPP;
9298         }
9299 }
9300
9301 static int ixgbe_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
9302                                    void *cb_priv)
9303 {
9304         struct ixgbe_adapter *adapter = cb_priv;
9305
9306         if (!tc_can_offload(adapter->netdev))
9307                 return -EOPNOTSUPP;
9308
9309         switch (type) {
9310         case TC_SETUP_CLSU32:
9311                 return ixgbe_setup_tc_cls_u32(adapter, type_data);
9312         default:
9313                 return -EOPNOTSUPP;
9314         }
9315 }
9316
9317 static int ixgbe_setup_tc_block(struct net_device *dev,
9318                                 struct tc_block_offload *f)
9319 {
9320         struct ixgbe_adapter *adapter = netdev_priv(dev);
9321
9322         if (f->binder_type != TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
9323                 return -EOPNOTSUPP;
9324
9325         switch (f->command) {
9326         case TC_BLOCK_BIND:
9327                 return tcf_block_cb_register(f->block, ixgbe_setup_tc_block_cb,
9328                                              adapter, adapter);
9329         case TC_BLOCK_UNBIND:
9330                 tcf_block_cb_unregister(f->block, ixgbe_setup_tc_block_cb,
9331                                         adapter);
9332                 return 0;
9333         default:
9334                 return -EOPNOTSUPP;
9335         }
9336 }
9337
9338 static int ixgbe_setup_tc_mqprio(struct net_device *dev,
9339                                  struct tc_mqprio_qopt *mqprio)
9340 {
9341         mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
9342         return ixgbe_setup_tc(dev, mqprio->num_tc);
9343 }
9344
9345 static int __ixgbe_setup_tc(struct net_device *dev, enum tc_setup_type type,
9346                             void *type_data)
9347 {
9348         switch (type) {
9349         case TC_SETUP_BLOCK:
9350                 return ixgbe_setup_tc_block(dev, type_data);
9351         case TC_SETUP_QDISC_MQPRIO:
9352                 return ixgbe_setup_tc_mqprio(dev, type_data);
9353         default:
9354                 return -EOPNOTSUPP;
9355         }
9356 }
9357
9358 #ifdef CONFIG_PCI_IOV
9359 void ixgbe_sriov_reinit(struct ixgbe_adapter *adapter)
9360 {
9361         struct net_device *netdev = adapter->netdev;
9362
9363         rtnl_lock();
9364         ixgbe_setup_tc(netdev, adapter->hw_tcs);
9365         rtnl_unlock();
9366 }
9367
9368 #endif
9369 void ixgbe_do_reset(struct net_device *netdev)
9370 {
9371         struct ixgbe_adapter *adapter = netdev_priv(netdev);
9372
9373         if (netif_running(netdev))
9374                 ixgbe_reinit_locked(adapter);
9375         else
9376                 ixgbe_reset(adapter);
9377 }
9378
9379 static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
9380                                             netdev_features_t features)
9381 {
9382         struct ixgbe_adapter *adapter = netdev_priv(netdev);
9383
9384         /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
9385         if (!(features & NETIF_F_RXCSUM))
9386                 features &= ~NETIF_F_LRO;
9387
9388         /* Turn off LRO if not RSC capable */
9389         if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
9390                 features &= ~NETIF_F_LRO;
9391
9392         return features;
9393 }
9394
9395 static int ixgbe_set_features(struct net_device *netdev,
9396                               netdev_features_t features)
9397 {
9398         struct ixgbe_adapter *adapter = netdev_priv(netdev);
9399         netdev_features_t changed = netdev->features ^ features;
9400         bool need_reset = false;
9401
9402         /* Make sure RSC matches LRO, reset if change */
9403         if (!(features & NETIF_F_LRO)) {
9404                 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
9405                         need_reset = true;
9406                 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
9407         } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
9408                    !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
9409                 if (adapter->rx_itr_setting == 1 ||
9410                     adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
9411                         adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
9412                         need_reset = true;
9413                 } else if ((changed ^ features) & NETIF_F_LRO) {
9414                         e_info(probe, "rx-usecs set too low, "
9415                                "disabling RSC\n");
9416                 }
9417         }
9418
9419         /*
9420          * Check if Flow Director n-tuple support or hw_tc support was
9421          * enabled or disabled.  If the state changed, we need to reset.
9422          */
9423         if ((features & NETIF_F_NTUPLE) || (features & NETIF_F_HW_TC)) {
9424                 /* turn off ATR, enable perfect filters and reset */
9425                 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
9426                         need_reset = true;
9427
9428                 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
9429                 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
9430         } else {
9431                 /* turn off perfect filters, enable ATR and reset */
9432                 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
9433                         need_reset = true;
9434
9435                 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
9436
9437                 /* We cannot enable ATR if SR-IOV is enabled */
9438                 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED ||
9439                     /* We cannot enable ATR if we have 2 or more tcs */
9440                     (adapter->hw_tcs > 1) ||
9441                     /* We cannot enable ATR if RSS is disabled */
9442                     (adapter->ring_feature[RING_F_RSS].limit <= 1) ||
9443                     /* A sample rate of 0 indicates ATR disabled */
9444                     (!adapter->atr_sample_rate))
9445                         ; /* do nothing not supported */
9446                 else /* otherwise supported and set the flag */
9447                         adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
9448         }
9449
9450         if (changed & NETIF_F_RXALL)
9451                 need_reset = true;
9452
9453         netdev->features = features;
9454
9455         if ((adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE)) {
9456                 if (features & NETIF_F_RXCSUM) {
9457                         adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
9458                 } else {
9459                         u32 port_mask = IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK;
9460
9461                         ixgbe_clear_udp_tunnel_port(adapter, port_mask);
9462                 }
9463         }
9464
9465         if ((adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)) {
9466                 if (features & NETIF_F_RXCSUM) {
9467                         adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
9468                 } else {
9469                         u32 port_mask = IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK;
9470
9471                         ixgbe_clear_udp_tunnel_port(adapter, port_mask);
9472                 }
9473         }
9474
9475         if (need_reset)
9476                 ixgbe_do_reset(netdev);
9477         else if (changed & (NETIF_F_HW_VLAN_CTAG_RX |
9478                             NETIF_F_HW_VLAN_CTAG_FILTER))
9479                 ixgbe_set_rx_mode(netdev);
9480
9481         return 0;
9482 }
9483
9484 /**
9485  * ixgbe_add_udp_tunnel_port - Get notifications about adding UDP tunnel ports
9486  * @dev: The port's netdev
9487  * @ti: Tunnel endpoint information
9488  **/
9489 static void ixgbe_add_udp_tunnel_port(struct net_device *dev,
9490                                       struct udp_tunnel_info *ti)
9491 {
9492         struct ixgbe_adapter *adapter = netdev_priv(dev);
9493         struct ixgbe_hw *hw = &adapter->hw;
9494         __be16 port = ti->port;
9495         u32 port_shift = 0;
9496         u32 reg;
9497
9498         if (ti->sa_family != AF_INET)
9499                 return;
9500
9501         switch (ti->type) {
9502         case UDP_TUNNEL_TYPE_VXLAN:
9503                 if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE))
9504                         return;
9505
9506                 if (adapter->vxlan_port == port)
9507                         return;
9508
9509                 if (adapter->vxlan_port) {
9510                         netdev_info(dev,
9511                                     "VXLAN port %d set, not adding port %d\n",
9512                                     ntohs(adapter->vxlan_port),
9513                                     ntohs(port));
9514                         return;
9515                 }
9516
9517                 adapter->vxlan_port = port;
9518                 break;
9519         case UDP_TUNNEL_TYPE_GENEVE:
9520                 if (!(adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE))
9521                         return;
9522
9523                 if (adapter->geneve_port == port)
9524                         return;
9525
9526                 if (adapter->geneve_port) {
9527                         netdev_info(dev,
9528                                     "GENEVE port %d set, not adding port %d\n",
9529                                     ntohs(adapter->geneve_port),
9530                                     ntohs(port));
9531                         return;
9532                 }
9533
9534                 port_shift = IXGBE_VXLANCTRL_GENEVE_UDPPORT_SHIFT;
9535                 adapter->geneve_port = port;
9536                 break;
9537         default:
9538                 return;
9539         }
9540
9541         reg = IXGBE_READ_REG(hw, IXGBE_VXLANCTRL) | ntohs(port) << port_shift;
9542         IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, reg);
9543 }
9544
9545 /**
9546  * ixgbe_del_udp_tunnel_port - Get notifications about removing UDP tunnel ports
9547  * @dev: The port's netdev
9548  * @ti: Tunnel endpoint information
9549  **/
9550 static void ixgbe_del_udp_tunnel_port(struct net_device *dev,
9551                                       struct udp_tunnel_info *ti)
9552 {
9553         struct ixgbe_adapter *adapter = netdev_priv(dev);
9554         u32 port_mask;
9555
9556         if (ti->type != UDP_TUNNEL_TYPE_VXLAN &&
9557             ti->type != UDP_TUNNEL_TYPE_GENEVE)
9558                 return;
9559
9560         if (ti->sa_family != AF_INET)
9561                 return;
9562
9563         switch (ti->type) {
9564         case UDP_TUNNEL_TYPE_VXLAN:
9565                 if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE))
9566                         return;
9567
9568                 if (adapter->vxlan_port != ti->port) {
9569                         netdev_info(dev, "VXLAN port %d not found\n",
9570                                     ntohs(ti->port));
9571                         return;
9572                 }
9573
9574                 port_mask = IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK;
9575                 break;
9576         case UDP_TUNNEL_TYPE_GENEVE:
9577                 if (!(adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE))
9578                         return;
9579
9580                 if (adapter->geneve_port != ti->port) {
9581                         netdev_info(dev, "GENEVE port %d not found\n",
9582                                     ntohs(ti->port));
9583                         return;
9584                 }
9585
9586                 port_mask = IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK;
9587                 break;
9588         default:
9589                 return;
9590         }
9591
9592         ixgbe_clear_udp_tunnel_port(adapter, port_mask);
9593         adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED;
9594 }
9595
9596 static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
9597                              struct net_device *dev,
9598                              const unsigned char *addr, u16 vid,
9599                              u16 flags)
9600 {
9601         /* guarantee we can provide a unique filter for the unicast address */
9602         if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) {
9603                 struct ixgbe_adapter *adapter = netdev_priv(dev);
9604                 u16 pool = VMDQ_P(0);
9605
9606                 if (netdev_uc_count(dev) >= ixgbe_available_rars(adapter, pool))
9607                         return -ENOMEM;
9608         }
9609
9610         return ndo_dflt_fdb_add(ndm, tb, dev, addr, vid, flags);
9611 }
9612
9613 /**
9614  * ixgbe_configure_bridge_mode - set various bridge modes
9615  * @adapter: the private structure
9616  * @mode: requested bridge mode
9617  *
9618  * Configure some settings require for various bridge modes.
9619  **/
9620 static int ixgbe_configure_bridge_mode(struct ixgbe_adapter *adapter,
9621                                        __u16 mode)
9622 {
9623         struct ixgbe_hw *hw = &adapter->hw;
9624         unsigned int p, num_pools;
9625         u32 vmdctl;
9626
9627         switch (mode) {
9628         case BRIDGE_MODE_VEPA:
9629                 /* disable Tx loopback, rely on switch hairpin mode */
9630                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, 0);
9631
9632                 /* must enable Rx switching replication to allow multicast
9633                  * packet reception on all VFs, and to enable source address
9634                  * pruning.
9635                  */
9636                 vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
9637                 vmdctl |= IXGBE_VT_CTL_REPLEN;
9638                 IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl);
9639
9640                 /* enable Rx source address pruning. Note, this requires
9641                  * replication to be enabled or else it does nothing.
9642                  */
9643                 num_pools = adapter->num_vfs + adapter->num_rx_pools;
9644                 for (p = 0; p < num_pools; p++) {
9645                         if (hw->mac.ops.set_source_address_pruning)
9646                                 hw->mac.ops.set_source_address_pruning(hw,
9647                                                                        true,
9648                                                                        p);
9649                 }
9650                 break;
9651         case BRIDGE_MODE_VEB:
9652                 /* enable Tx loopback for internal VF/PF communication */
9653                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC,
9654                                 IXGBE_PFDTXGSWC_VT_LBEN);
9655
9656                 /* disable Rx switching replication unless we have SR-IOV
9657                  * virtual functions
9658                  */
9659                 vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
9660                 if (!adapter->num_vfs)
9661                         vmdctl &= ~IXGBE_VT_CTL_REPLEN;
9662                 IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl);
9663
9664                 /* disable Rx source address pruning, since we don't expect to
9665                  * be receiving external loopback of our transmitted frames.
9666                  */
9667                 num_pools = adapter->num_vfs + adapter->num_rx_pools;
9668                 for (p = 0; p < num_pools; p++) {
9669                         if (hw->mac.ops.set_source_address_pruning)
9670                                 hw->mac.ops.set_source_address_pruning(hw,
9671                                                                        false,
9672                                                                        p);
9673                 }
9674                 break;
9675         default:
9676                 return -EINVAL;
9677         }
9678
9679         adapter->bridge_mode = mode;
9680
9681         e_info(drv, "enabling bridge mode: %s\n",
9682                mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
9683
9684         return 0;
9685 }
9686
9687 static int ixgbe_ndo_bridge_setlink(struct net_device *dev,
9688                                     struct nlmsghdr *nlh, u16 flags)
9689 {
9690         struct ixgbe_adapter *adapter = netdev_priv(dev);
9691         struct nlattr *attr, *br_spec;
9692         int rem;
9693
9694         if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
9695                 return -EOPNOTSUPP;
9696
9697         br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
9698         if (!br_spec)
9699                 return -EINVAL;
9700
9701         nla_for_each_nested(attr, br_spec, rem) {
9702                 int status;
9703                 __u16 mode;
9704
9705                 if (nla_type(attr) != IFLA_BRIDGE_MODE)
9706                         continue;
9707
9708                 if (nla_len(attr) < sizeof(mode))
9709                         return -EINVAL;
9710
9711                 mode = nla_get_u16(attr);
9712                 status = ixgbe_configure_bridge_mode(adapter, mode);
9713                 if (status)
9714                         return status;
9715
9716                 break;
9717         }
9718
9719         return 0;
9720 }
9721
9722 static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
9723                                     struct net_device *dev,
9724                                     u32 filter_mask, int nlflags)
9725 {
9726         struct ixgbe_adapter *adapter = netdev_priv(dev);
9727
9728         if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
9729                 return 0;
9730
9731         return ndo_dflt_bridge_getlink(skb, pid, seq, dev,
9732                                        adapter->bridge_mode, 0, 0, nlflags,
9733                                        filter_mask, NULL);
9734 }
9735
9736 static void *ixgbe_fwd_add(struct net_device *pdev, struct net_device *vdev)
9737 {
9738         struct ixgbe_fwd_adapter *fwd_adapter = NULL;
9739         struct ixgbe_adapter *adapter = netdev_priv(pdev);
9740         int used_pools = adapter->num_vfs + adapter->num_rx_pools;
9741         int tcs = adapter->hw_tcs ? : 1;
9742         unsigned int limit;
9743         int pool, err;
9744
9745         /* Hardware has a limited number of available pools. Each VF, and the
9746          * PF require a pool. Check to ensure we don't attempt to use more
9747          * then the available number of pools.
9748          */
9749         if (used_pools >= IXGBE_MAX_VF_FUNCTIONS)
9750                 return ERR_PTR(-EINVAL);
9751
9752         if (((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
9753               adapter->num_rx_pools >= (MAX_TX_QUEUES / tcs)) ||
9754             (adapter->num_rx_pools > IXGBE_MAX_MACVLANS))
9755                 return ERR_PTR(-EBUSY);
9756
9757         fwd_adapter = kzalloc(sizeof(*fwd_adapter), GFP_KERNEL);
9758         if (!fwd_adapter)
9759                 return ERR_PTR(-ENOMEM);
9760
9761         pool = find_first_zero_bit(adapter->fwd_bitmask, adapter->num_rx_pools);
9762         set_bit(pool, adapter->fwd_bitmask);
9763         limit = find_last_bit(adapter->fwd_bitmask, adapter->num_rx_pools + 1);
9764
9765         /* Enable VMDq flag so device will be set in VM mode */
9766         adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED | IXGBE_FLAG_SRIOV_ENABLED;
9767         adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
9768
9769         fwd_adapter->pool = pool;
9770         fwd_adapter->real_adapter = adapter;
9771
9772         /* Force reinit of ring allocation with VMDQ enabled */
9773         err = ixgbe_setup_tc(pdev, adapter->hw_tcs);
9774
9775         if (!err && netif_running(pdev))
9776                 err = ixgbe_fwd_ring_up(vdev, fwd_adapter);
9777
9778         if (!err)
9779                 return fwd_adapter;
9780
9781         /* unwind counter and free adapter struct */
9782         netdev_info(pdev,
9783                     "%s: dfwd hardware acceleration failed\n", vdev->name);
9784         clear_bit(pool, adapter->fwd_bitmask);
9785         kfree(fwd_adapter);
9786         return ERR_PTR(err);
9787 }
9788
9789 static void ixgbe_fwd_del(struct net_device *pdev, void *priv)
9790 {
9791         struct ixgbe_fwd_adapter *accel = priv;
9792         struct ixgbe_adapter *adapter = accel->real_adapter;
9793         unsigned int rxbase = accel->rx_base_queue;
9794         unsigned int limit, i;
9795
9796         /* delete unicast filter associated with offloaded interface */
9797         ixgbe_del_mac_filter(adapter, accel->netdev->dev_addr,
9798                              VMDQ_P(accel->pool));
9799
9800         /* disable ability to receive packets for this pool */
9801         IXGBE_WRITE_REG(&adapter->hw, IXGBE_VMOLR(accel->pool), 0);
9802
9803         /* Allow remaining Rx packets to get flushed out of the
9804          * Rx FIFO before we drop the netdev for the ring.
9805          */
9806         usleep_range(10000, 20000);
9807
9808         for (i = 0; i < adapter->num_rx_queues_per_pool; i++) {
9809                 struct ixgbe_ring *ring = adapter->rx_ring[rxbase + i];
9810                 struct ixgbe_q_vector *qv = ring->q_vector;
9811
9812                 /* Make sure we aren't processing any packets and clear
9813                  * netdev to shut down the ring.
9814                  */
9815                 if (netif_running(adapter->netdev))
9816                         napi_synchronize(&qv->napi);
9817                 ring->netdev = NULL;
9818         }
9819
9820         clear_bit(accel->pool, adapter->fwd_bitmask);
9821         limit = find_last_bit(adapter->fwd_bitmask, adapter->num_rx_pools);
9822         adapter->ring_feature[RING_F_VMDQ].limit = limit + 1;
9823
9824         /* go back to full RSS if we're done with our VMQs */
9825         if (adapter->ring_feature[RING_F_VMDQ].limit == 1) {
9826                 int rss = min_t(int, ixgbe_max_rss_indices(adapter),
9827                                 num_online_cpus());
9828
9829                 adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED;
9830                 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
9831                 adapter->ring_feature[RING_F_RSS].limit = rss;
9832         }
9833
9834         ixgbe_setup_tc(pdev, adapter->hw_tcs);
9835         netdev_dbg(pdev, "pool %i:%i queues %i:%i\n",
9836                    accel->pool, adapter->num_rx_pools,
9837                    accel->rx_base_queue,
9838                    accel->rx_base_queue +
9839                    adapter->num_rx_queues_per_pool);
9840         kfree(accel);
9841 }
9842
9843 #define IXGBE_MAX_MAC_HDR_LEN           127
9844 #define IXGBE_MAX_NETWORK_HDR_LEN       511
9845
9846 static netdev_features_t
9847 ixgbe_features_check(struct sk_buff *skb, struct net_device *dev,
9848                      netdev_features_t features)
9849 {
9850         unsigned int network_hdr_len, mac_hdr_len;
9851
9852         /* Make certain the headers can be described by a context descriptor */
9853         mac_hdr_len = skb_network_header(skb) - skb->data;
9854         if (unlikely(mac_hdr_len > IXGBE_MAX_MAC_HDR_LEN))
9855                 return features & ~(NETIF_F_HW_CSUM |
9856                                     NETIF_F_SCTP_CRC |
9857                                     NETIF_F_HW_VLAN_CTAG_TX |
9858                                     NETIF_F_TSO |
9859                                     NETIF_F_TSO6);
9860
9861         network_hdr_len = skb_checksum_start(skb) - skb_network_header(skb);
9862         if (unlikely(network_hdr_len >  IXGBE_MAX_NETWORK_HDR_LEN))
9863                 return features & ~(NETIF_F_HW_CSUM |
9864                                     NETIF_F_SCTP_CRC |
9865                                     NETIF_F_TSO |
9866                                     NETIF_F_TSO6);
9867
9868         /* We can only support IPV4 TSO in tunnels if we can mangle the
9869          * inner IP ID field, so strip TSO if MANGLEID is not supported.
9870          */
9871         if (skb->encapsulation && !(features & NETIF_F_TSO_MANGLEID))
9872                 features &= ~NETIF_F_TSO;
9873
9874         return features;
9875 }
9876
9877 static int ixgbe_xdp_setup(struct net_device *dev, struct bpf_prog *prog)
9878 {
9879         int i, frame_size = dev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
9880         struct ixgbe_adapter *adapter = netdev_priv(dev);
9881         struct bpf_prog *old_prog;
9882
9883         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
9884                 return -EINVAL;
9885
9886         if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
9887                 return -EINVAL;
9888
9889         /* verify ixgbe ring attributes are sufficient for XDP */
9890         for (i = 0; i < adapter->num_rx_queues; i++) {
9891                 struct ixgbe_ring *ring = adapter->rx_ring[i];
9892
9893                 if (ring_is_rsc_enabled(ring))
9894                         return -EINVAL;
9895
9896                 if (frame_size > ixgbe_rx_bufsz(ring))
9897                         return -EINVAL;
9898         }
9899
9900         if (nr_cpu_ids > MAX_XDP_QUEUES)
9901                 return -ENOMEM;
9902
9903         old_prog = xchg(&adapter->xdp_prog, prog);
9904
9905         /* If transitioning XDP modes reconfigure rings */
9906         if (!!prog != !!old_prog) {
9907                 int err = ixgbe_setup_tc(dev, adapter->hw_tcs);
9908
9909                 if (err) {
9910                         rcu_assign_pointer(adapter->xdp_prog, old_prog);
9911                         return -EINVAL;
9912                 }
9913         } else {
9914                 for (i = 0; i < adapter->num_rx_queues; i++)
9915                         xchg(&adapter->rx_ring[i]->xdp_prog, adapter->xdp_prog);
9916         }
9917
9918         if (old_prog)
9919                 bpf_prog_put(old_prog);
9920
9921         return 0;
9922 }
9923
9924 static int ixgbe_xdp(struct net_device *dev, struct netdev_bpf *xdp)
9925 {
9926         struct ixgbe_adapter *adapter = netdev_priv(dev);
9927
9928         switch (xdp->command) {
9929         case XDP_SETUP_PROG:
9930                 return ixgbe_xdp_setup(dev, xdp->prog);
9931         case XDP_QUERY_PROG:
9932                 xdp->prog_attached = !!(adapter->xdp_prog);
9933                 xdp->prog_id = adapter->xdp_prog ?
9934                         adapter->xdp_prog->aux->id : 0;
9935                 return 0;
9936         default:
9937                 return -EINVAL;
9938         }
9939 }
9940
9941 static int ixgbe_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
9942 {
9943         struct ixgbe_adapter *adapter = netdev_priv(dev);
9944         struct ixgbe_ring *ring;
9945         int err;
9946
9947         if (unlikely(test_bit(__IXGBE_DOWN, &adapter->state)))
9948                 return -ENETDOWN;
9949
9950         /* During program transitions its possible adapter->xdp_prog is assigned
9951          * but ring has not been configured yet. In this case simply abort xmit.
9952          */
9953         ring = adapter->xdp_prog ? adapter->xdp_ring[smp_processor_id()] : NULL;
9954         if (unlikely(!ring))
9955                 return -ENXIO;
9956
9957         err = ixgbe_xmit_xdp_ring(adapter, xdp);
9958         if (err != IXGBE_XDP_TX)
9959                 return -ENOSPC;
9960
9961         return 0;
9962 }
9963
9964 static void ixgbe_xdp_flush(struct net_device *dev)
9965 {
9966         struct ixgbe_adapter *adapter = netdev_priv(dev);
9967         struct ixgbe_ring *ring;
9968
9969         /* Its possible the device went down between xdp xmit and flush so
9970          * we need to ensure device is still up.
9971          */
9972         if (unlikely(test_bit(__IXGBE_DOWN, &adapter->state)))
9973                 return;
9974
9975         ring = adapter->xdp_prog ? adapter->xdp_ring[smp_processor_id()] : NULL;
9976         if (unlikely(!ring))
9977                 return;
9978
9979         /* Force memory writes to complete before letting h/w know there
9980          * are new descriptors to fetch.
9981          */
9982         wmb();
9983         writel(ring->next_to_use, ring->tail);
9984
9985         return;
9986 }
9987
9988 static const struct net_device_ops ixgbe_netdev_ops = {
9989         .ndo_open               = ixgbe_open,
9990         .ndo_stop               = ixgbe_close,
9991         .ndo_start_xmit         = ixgbe_xmit_frame,
9992         .ndo_select_queue       = ixgbe_select_queue,
9993         .ndo_set_rx_mode        = ixgbe_set_rx_mode,
9994         .ndo_validate_addr      = eth_validate_addr,
9995         .ndo_set_mac_address    = ixgbe_set_mac,
9996         .ndo_change_mtu         = ixgbe_change_mtu,
9997         .ndo_tx_timeout         = ixgbe_tx_timeout,
9998         .ndo_set_tx_maxrate     = ixgbe_tx_maxrate,
9999         .ndo_vlan_rx_add_vid    = ixgbe_vlan_rx_add_vid,
10000         .ndo_vlan_rx_kill_vid   = ixgbe_vlan_rx_kill_vid,
10001         .ndo_do_ioctl           = ixgbe_ioctl,
10002         .ndo_set_vf_mac         = ixgbe_ndo_set_vf_mac,
10003         .ndo_set_vf_vlan        = ixgbe_ndo_set_vf_vlan,
10004         .ndo_set_vf_rate        = ixgbe_ndo_set_vf_bw,
10005         .ndo_set_vf_spoofchk    = ixgbe_ndo_set_vf_spoofchk,
10006         .ndo_set_vf_rss_query_en = ixgbe_ndo_set_vf_rss_query_en,
10007         .ndo_set_vf_trust       = ixgbe_ndo_set_vf_trust,
10008         .ndo_get_vf_config      = ixgbe_ndo_get_vf_config,
10009         .ndo_get_stats64        = ixgbe_get_stats64,
10010         .ndo_setup_tc           = __ixgbe_setup_tc,
10011 #ifdef CONFIG_NET_POLL_CONTROLLER
10012         .ndo_poll_controller    = ixgbe_netpoll,
10013 #endif
10014 #ifdef IXGBE_FCOE
10015         .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
10016         .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
10017         .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
10018         .ndo_fcoe_enable = ixgbe_fcoe_enable,
10019         .ndo_fcoe_disable = ixgbe_fcoe_disable,
10020         .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
10021         .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
10022 #endif /* IXGBE_FCOE */
10023         .ndo_set_features = ixgbe_set_features,
10024         .ndo_fix_features = ixgbe_fix_features,
10025         .ndo_fdb_add            = ixgbe_ndo_fdb_add,
10026         .ndo_bridge_setlink     = ixgbe_ndo_bridge_setlink,
10027         .ndo_bridge_getlink     = ixgbe_ndo_bridge_getlink,
10028         .ndo_dfwd_add_station   = ixgbe_fwd_add,
10029         .ndo_dfwd_del_station   = ixgbe_fwd_del,
10030         .ndo_udp_tunnel_add     = ixgbe_add_udp_tunnel_port,
10031         .ndo_udp_tunnel_del     = ixgbe_del_udp_tunnel_port,
10032         .ndo_features_check     = ixgbe_features_check,
10033         .ndo_bpf                = ixgbe_xdp,
10034         .ndo_xdp_xmit           = ixgbe_xdp_xmit,
10035         .ndo_xdp_flush          = ixgbe_xdp_flush,
10036 };
10037
10038 /**
10039  * ixgbe_enumerate_functions - Get the number of ports this device has
10040  * @adapter: adapter structure
10041  *
10042  * This function enumerates the phsyical functions co-located on a single slot,
10043  * in order to determine how many ports a device has. This is most useful in
10044  * determining the required GT/s of PCIe bandwidth necessary for optimal
10045  * performance.
10046  **/
10047 static inline int ixgbe_enumerate_functions(struct ixgbe_adapter *adapter)
10048 {
10049         struct pci_dev *entry, *pdev = adapter->pdev;
10050         int physfns = 0;
10051
10052         /* Some cards can not use the generic count PCIe functions method,
10053          * because they are behind a parent switch, so we hardcode these with
10054          * the correct number of functions.
10055          */
10056         if (ixgbe_pcie_from_parent(&adapter->hw))
10057                 physfns = 4;
10058
10059         list_for_each_entry(entry, &adapter->pdev->bus->devices, bus_list) {
10060                 /* don't count virtual functions */
10061                 if (entry->is_virtfn)
10062                         continue;
10063
10064                 /* When the devices on the bus don't all match our device ID,
10065                  * we can't reliably determine the correct number of
10066                  * functions. This can occur if a function has been direct
10067                  * attached to a virtual machine using VT-d, for example. In
10068                  * this case, simply return -1 to indicate this.
10069                  */
10070                 if ((entry->vendor != pdev->vendor) ||
10071                     (entry->device != pdev->device))
10072                         return -1;
10073
10074                 physfns++;
10075         }
10076
10077         return physfns;
10078 }
10079
10080 /**
10081  * ixgbe_wol_supported - Check whether device supports WoL
10082  * @adapter: the adapter private structure
10083  * @device_id: the device ID
10084  * @subdevice_id: the subsystem device ID
10085  *
10086  * This function is used by probe and ethtool to determine
10087  * which devices have WoL support
10088  *
10089  **/
10090 bool ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
10091                          u16 subdevice_id)
10092 {
10093         struct ixgbe_hw *hw = &adapter->hw;
10094         u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
10095
10096         /* WOL not supported on 82598 */
10097         if (hw->mac.type == ixgbe_mac_82598EB)
10098                 return false;
10099
10100         /* check eeprom to see if WOL is enabled for X540 and newer */
10101         if (hw->mac.type >= ixgbe_mac_X540) {
10102                 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
10103                     ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
10104                      (hw->bus.func == 0)))
10105                         return true;
10106         }
10107
10108         /* WOL is determined based on device IDs for 82599 MACs */
10109         switch (device_id) {
10110         case IXGBE_DEV_ID_82599_SFP:
10111                 /* Only these subdevices could supports WOL */
10112                 switch (subdevice_id) {
10113                 case IXGBE_SUBDEV_ID_82599_560FLR:
10114                 case IXGBE_SUBDEV_ID_82599_LOM_SNAP6:
10115                 case IXGBE_SUBDEV_ID_82599_SFP_WOL0:
10116                 case IXGBE_SUBDEV_ID_82599_SFP_2OCP:
10117                         /* only support first port */
10118                         if (hw->bus.func != 0)
10119                                 break;
10120                         /* fall through */
10121                 case IXGBE_SUBDEV_ID_82599_SP_560FLR:
10122                 case IXGBE_SUBDEV_ID_82599_SFP:
10123                 case IXGBE_SUBDEV_ID_82599_RNDC:
10124                 case IXGBE_SUBDEV_ID_82599_ECNA_DP:
10125                 case IXGBE_SUBDEV_ID_82599_SFP_1OCP:
10126                 case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM1:
10127                 case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM2:
10128                         return true;
10129                 }
10130                 break;
10131         case IXGBE_DEV_ID_82599EN_SFP:
10132                 /* Only these subdevices support WOL */
10133                 switch (subdevice_id) {
10134                 case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1:
10135                         return true;
10136                 }
10137                 break;
10138         case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
10139                 /* All except this subdevice support WOL */
10140                 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
10141                         return true;
10142                 break;
10143         case IXGBE_DEV_ID_82599_KX4:
10144                 return  true;
10145         default:
10146                 break;
10147         }
10148
10149         return false;
10150 }
10151
10152 /**
10153  * ixgbe_set_fw_version - Set FW version
10154  * @adapter: the adapter private structure
10155  *
10156  * This function is used by probe and ethtool to determine the FW version to
10157  * format to display. The FW version is taken from the EEPROM/NVM.
10158  */
10159 static void ixgbe_set_fw_version(struct ixgbe_adapter *adapter)
10160 {
10161         struct ixgbe_hw *hw = &adapter->hw;
10162         struct ixgbe_nvm_version nvm_ver;
10163
10164         ixgbe_get_oem_prod_version(hw, &nvm_ver);
10165         if (nvm_ver.oem_valid) {
10166                 snprintf(adapter->eeprom_id, sizeof(adapter->eeprom_id),
10167                          "%x.%x.%x", nvm_ver.oem_major, nvm_ver.oem_minor,
10168                          nvm_ver.oem_release);
10169                 return;
10170         }
10171
10172         ixgbe_get_etk_id(hw, &nvm_ver);
10173         ixgbe_get_orom_version(hw, &nvm_ver);
10174
10175         if (nvm_ver.or_valid) {
10176                 snprintf(adapter->eeprom_id, sizeof(adapter->eeprom_id),
10177                          "0x%08x, %d.%d.%d", nvm_ver.etk_id, nvm_ver.or_major,
10178                          nvm_ver.or_build, nvm_ver.or_patch);
10179                 return;
10180         }
10181
10182         /* Set ETrack ID format */
10183         snprintf(adapter->eeprom_id, sizeof(adapter->eeprom_id),
10184                  "0x%08x", nvm_ver.etk_id);
10185 }
10186
10187 /**
10188  * ixgbe_probe - Device Initialization Routine
10189  * @pdev: PCI device information struct
10190  * @ent: entry in ixgbe_pci_tbl
10191  *
10192  * Returns 0 on success, negative on failure
10193  *
10194  * ixgbe_probe initializes an adapter identified by a pci_dev structure.
10195  * The OS initialization, configuring of the adapter private structure,
10196  * and a hardware reset occur.
10197  **/
10198 static int ixgbe_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10199 {
10200         struct net_device *netdev;
10201         struct ixgbe_adapter *adapter = NULL;
10202         struct ixgbe_hw *hw;
10203         const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
10204         int i, err, pci_using_dac, expected_gts;
10205         unsigned int indices = MAX_TX_QUEUES;
10206         u8 part_str[IXGBE_PBANUM_LENGTH];
10207         bool disable_dev = false;
10208 #ifdef IXGBE_FCOE
10209         u16 device_caps;
10210 #endif
10211         u32 eec;
10212
10213         /* Catch broken hardware that put the wrong VF device ID in
10214          * the PCIe SR-IOV capability.
10215          */
10216         if (pdev->is_virtfn) {
10217                 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
10218                      pci_name(pdev), pdev->vendor, pdev->device);
10219                 return -EINVAL;
10220         }
10221
10222         err = pci_enable_device_mem(pdev);
10223         if (err)
10224                 return err;
10225
10226         if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
10227                 pci_using_dac = 1;
10228         } else {
10229                 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10230                 if (err) {
10231                         dev_err(&pdev->dev,
10232                                 "No usable DMA configuration, aborting\n");
10233                         goto err_dma;
10234                 }
10235                 pci_using_dac = 0;
10236         }
10237
10238         err = pci_request_mem_regions(pdev, ixgbe_driver_name);
10239         if (err) {
10240                 dev_err(&pdev->dev,
10241                         "pci_request_selected_regions failed 0x%x\n", err);
10242                 goto err_pci_reg;
10243         }
10244
10245         pci_enable_pcie_error_reporting(pdev);
10246
10247         pci_set_master(pdev);
10248         pci_save_state(pdev);
10249
10250         if (ii->mac == ixgbe_mac_82598EB) {
10251 #ifdef CONFIG_IXGBE_DCB
10252                 /* 8 TC w/ 4 queues per TC */
10253                 indices = 4 * MAX_TRAFFIC_CLASS;
10254 #else
10255                 indices = IXGBE_MAX_RSS_INDICES;
10256 #endif
10257         }
10258
10259         netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
10260         if (!netdev) {
10261                 err = -ENOMEM;
10262                 goto err_alloc_etherdev;
10263         }
10264
10265         SET_NETDEV_DEV(netdev, &pdev->dev);
10266
10267         adapter = netdev_priv(netdev);
10268
10269         adapter->netdev = netdev;
10270         adapter->pdev = pdev;
10271         hw = &adapter->hw;
10272         hw->back = adapter;
10273         adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
10274
10275         hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
10276                               pci_resource_len(pdev, 0));
10277         adapter->io_addr = hw->hw_addr;
10278         if (!hw->hw_addr) {
10279                 err = -EIO;
10280                 goto err_ioremap;
10281         }
10282
10283         netdev->netdev_ops = &ixgbe_netdev_ops;
10284         ixgbe_set_ethtool_ops(netdev);
10285         netdev->watchdog_timeo = 5 * HZ;
10286         strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name));
10287
10288         /* Setup hw api */
10289         hw->mac.ops   = *ii->mac_ops;
10290         hw->mac.type  = ii->mac;
10291         hw->mvals     = ii->mvals;
10292         if (ii->link_ops)
10293                 hw->link.ops  = *ii->link_ops;
10294
10295         /* EEPROM */
10296         hw->eeprom.ops = *ii->eeprom_ops;
10297         eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
10298         if (ixgbe_removed(hw->hw_addr)) {
10299                 err = -EIO;
10300                 goto err_ioremap;
10301         }
10302         /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
10303         if (!(eec & BIT(8)))
10304                 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
10305
10306         /* PHY */
10307         hw->phy.ops = *ii->phy_ops;
10308         hw->phy.sfp_type = ixgbe_sfp_type_unknown;
10309         /* ixgbe_identify_phy_generic will set prtad and mmds properly */
10310         hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
10311         hw->phy.mdio.mmds = 0;
10312         hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
10313         hw->phy.mdio.dev = netdev;
10314         hw->phy.mdio.mdio_read = ixgbe_mdio_read;
10315         hw->phy.mdio.mdio_write = ixgbe_mdio_write;
10316
10317         /* setup the private structure */
10318         err = ixgbe_sw_init(adapter, ii);
10319         if (err)
10320                 goto err_sw_init;
10321
10322         /* Make sure the SWFW semaphore is in a valid state */
10323         if (hw->mac.ops.init_swfw_sync)
10324                 hw->mac.ops.init_swfw_sync(hw);
10325
10326         /* Make it possible the adapter to be woken up via WOL */
10327         switch (adapter->hw.mac.type) {
10328         case ixgbe_mac_82599EB:
10329         case ixgbe_mac_X540:
10330         case ixgbe_mac_X550:
10331         case ixgbe_mac_X550EM_x:
10332         case ixgbe_mac_x550em_a:
10333                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
10334                 break;
10335         default:
10336                 break;
10337         }
10338
10339         /*
10340          * If there is a fan on this device and it has failed log the
10341          * failure.
10342          */
10343         if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
10344                 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
10345                 if (esdp & IXGBE_ESDP_SDP1)
10346                         e_crit(probe, "Fan has stopped, replace the adapter\n");
10347         }
10348
10349         if (allow_unsupported_sfp)
10350                 hw->allow_unsupported_sfp = allow_unsupported_sfp;
10351
10352         /* reset_hw fills in the perm_addr as well */
10353         hw->phy.reset_if_overtemp = true;
10354         err = hw->mac.ops.reset_hw(hw);
10355         hw->phy.reset_if_overtemp = false;
10356         ixgbe_set_eee_capable(adapter);
10357         if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
10358                 err = 0;
10359         } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
10360                 e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n");
10361                 e_dev_err("Reload the driver after installing a supported module.\n");
10362                 goto err_sw_init;
10363         } else if (err) {
10364                 e_dev_err("HW Init failed: %d\n", err);
10365                 goto err_sw_init;
10366         }
10367
10368 #ifdef CONFIG_PCI_IOV
10369         /* SR-IOV not supported on the 82598 */
10370         if (adapter->hw.mac.type == ixgbe_mac_82598EB)
10371                 goto skip_sriov;
10372         /* Mailbox */
10373         ixgbe_init_mbx_params_pf(hw);
10374         hw->mbx.ops = ii->mbx_ops;
10375         pci_sriov_set_totalvfs(pdev, IXGBE_MAX_VFS_DRV_LIMIT);
10376         ixgbe_enable_sriov(adapter, max_vfs);
10377 skip_sriov:
10378
10379 #endif
10380         netdev->features = NETIF_F_SG |
10381                            NETIF_F_TSO |
10382                            NETIF_F_TSO6 |
10383                            NETIF_F_RXHASH |
10384                            NETIF_F_RXCSUM |
10385                            NETIF_F_HW_CSUM;
10386
10387 #define IXGBE_GSO_PARTIAL_FEATURES (NETIF_F_GSO_GRE | \
10388                                     NETIF_F_GSO_GRE_CSUM | \
10389                                     NETIF_F_GSO_IPXIP4 | \
10390                                     NETIF_F_GSO_IPXIP6 | \
10391                                     NETIF_F_GSO_UDP_TUNNEL | \
10392                                     NETIF_F_GSO_UDP_TUNNEL_CSUM)
10393
10394         netdev->gso_partial_features = IXGBE_GSO_PARTIAL_FEATURES;
10395         netdev->features |= NETIF_F_GSO_PARTIAL |
10396                             IXGBE_GSO_PARTIAL_FEATURES;
10397
10398         if (hw->mac.type >= ixgbe_mac_82599EB)
10399                 netdev->features |= NETIF_F_SCTP_CRC;
10400
10401         /* copy netdev features into list of user selectable features */
10402         netdev->hw_features |= netdev->features |
10403                                NETIF_F_HW_VLAN_CTAG_FILTER |
10404                                NETIF_F_HW_VLAN_CTAG_RX |
10405                                NETIF_F_HW_VLAN_CTAG_TX |
10406                                NETIF_F_RXALL |
10407                                NETIF_F_HW_L2FW_DOFFLOAD;
10408
10409         if (hw->mac.type >= ixgbe_mac_82599EB)
10410                 netdev->hw_features |= NETIF_F_NTUPLE |
10411                                        NETIF_F_HW_TC;
10412
10413         if (pci_using_dac)
10414                 netdev->features |= NETIF_F_HIGHDMA;
10415
10416         netdev->vlan_features |= netdev->features | NETIF_F_TSO_MANGLEID;
10417         netdev->hw_enc_features |= netdev->vlan_features;
10418         netdev->mpls_features |= NETIF_F_SG |
10419                                  NETIF_F_TSO |
10420                                  NETIF_F_TSO6 |
10421                                  NETIF_F_HW_CSUM;
10422         netdev->mpls_features |= IXGBE_GSO_PARTIAL_FEATURES;
10423
10424         /* set this bit last since it cannot be part of vlan_features */
10425         netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER |
10426                             NETIF_F_HW_VLAN_CTAG_RX |
10427                             NETIF_F_HW_VLAN_CTAG_TX;
10428
10429         netdev->priv_flags |= IFF_UNICAST_FLT;
10430         netdev->priv_flags |= IFF_SUPP_NOFCS;
10431
10432         /* MTU range: 68 - 9710 */
10433         netdev->min_mtu = ETH_MIN_MTU;
10434         netdev->max_mtu = IXGBE_MAX_JUMBO_FRAME_SIZE - (ETH_HLEN + ETH_FCS_LEN);
10435
10436 #ifdef CONFIG_IXGBE_DCB
10437         if (adapter->flags & IXGBE_FLAG_DCB_CAPABLE)
10438                 netdev->dcbnl_ops = &ixgbe_dcbnl_ops;
10439 #endif
10440
10441 #ifdef IXGBE_FCOE
10442         if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
10443                 unsigned int fcoe_l;
10444
10445                 if (hw->mac.ops.get_device_caps) {
10446                         hw->mac.ops.get_device_caps(hw, &device_caps);
10447                         if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
10448                                 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
10449                 }
10450
10451
10452                 fcoe_l = min_t(int, IXGBE_FCRETA_SIZE, num_online_cpus());
10453                 adapter->ring_feature[RING_F_FCOE].limit = fcoe_l;
10454
10455                 netdev->features |= NETIF_F_FSO |
10456                                     NETIF_F_FCOE_CRC;
10457
10458                 netdev->vlan_features |= NETIF_F_FSO |
10459                                          NETIF_F_FCOE_CRC |
10460                                          NETIF_F_FCOE_MTU;
10461         }
10462 #endif /* IXGBE_FCOE */
10463         ixgbe_init_ipsec_offload(adapter);
10464
10465         if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
10466                 netdev->hw_features |= NETIF_F_LRO;
10467         if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
10468                 netdev->features |= NETIF_F_LRO;
10469
10470         /* make sure the EEPROM is good */
10471         if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
10472                 e_dev_err("The EEPROM Checksum Is Not Valid\n");
10473                 err = -EIO;
10474                 goto err_sw_init;
10475         }
10476
10477         eth_platform_get_mac_address(&adapter->pdev->dev,
10478                                      adapter->hw.mac.perm_addr);
10479
10480         memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
10481
10482         if (!is_valid_ether_addr(netdev->dev_addr)) {
10483                 e_dev_err("invalid MAC address\n");
10484                 err = -EIO;
10485                 goto err_sw_init;
10486         }
10487
10488         /* Set hw->mac.addr to permanent MAC address */
10489         ether_addr_copy(hw->mac.addr, hw->mac.perm_addr);
10490         ixgbe_mac_set_default_filter(adapter);
10491
10492         timer_setup(&adapter->service_timer, ixgbe_service_timer, 0);
10493
10494         if (ixgbe_removed(hw->hw_addr)) {
10495                 err = -EIO;
10496                 goto err_sw_init;
10497         }
10498         INIT_WORK(&adapter->service_task, ixgbe_service_task);
10499         set_bit(__IXGBE_SERVICE_INITED, &adapter->state);
10500         clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
10501
10502         err = ixgbe_init_interrupt_scheme(adapter);
10503         if (err)
10504                 goto err_sw_init;
10505
10506         for (i = 0; i < adapter->num_rx_queues; i++)
10507                 u64_stats_init(&adapter->rx_ring[i]->syncp);
10508         for (i = 0; i < adapter->num_tx_queues; i++)
10509                 u64_stats_init(&adapter->tx_ring[i]->syncp);
10510         for (i = 0; i < adapter->num_xdp_queues; i++)
10511                 u64_stats_init(&adapter->xdp_ring[i]->syncp);
10512
10513         /* WOL not supported for all devices */
10514         adapter->wol = 0;
10515         hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
10516         hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device,
10517                                                 pdev->subsystem_device);
10518         if (hw->wol_enabled)
10519                 adapter->wol = IXGBE_WUFC_MAG;
10520
10521         device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
10522
10523         /* save off EEPROM version number */
10524         ixgbe_set_fw_version(adapter);
10525
10526         /* pick up the PCI bus settings for reporting later */
10527         if (ixgbe_pcie_from_parent(hw))
10528                 ixgbe_get_parent_bus_info(adapter);
10529         else
10530                  hw->mac.ops.get_bus_info(hw);
10531
10532         /* calculate the expected PCIe bandwidth required for optimal
10533          * performance. Note that some older parts will never have enough
10534          * bandwidth due to being older generation PCIe parts. We clamp these
10535          * parts to ensure no warning is displayed if it can't be fixed.
10536          */
10537         switch (hw->mac.type) {
10538         case ixgbe_mac_82598EB:
10539                 expected_gts = min(ixgbe_enumerate_functions(adapter) * 10, 16);
10540                 break;
10541         default:
10542                 expected_gts = ixgbe_enumerate_functions(adapter) * 10;
10543                 break;
10544         }
10545
10546         /* don't check link if we failed to enumerate functions */
10547         if (expected_gts > 0)
10548                 ixgbe_check_minimum_link(adapter, expected_gts);
10549
10550         err = ixgbe_read_pba_string_generic(hw, part_str, sizeof(part_str));
10551         if (err)
10552                 strlcpy(part_str, "Unknown", sizeof(part_str));
10553         if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
10554                 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
10555                            hw->mac.type, hw->phy.type, hw->phy.sfp_type,
10556                            part_str);
10557         else
10558                 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
10559                            hw->mac.type, hw->phy.type, part_str);
10560
10561         e_dev_info("%pM\n", netdev->dev_addr);
10562
10563         /* reset the hardware with the new settings */
10564         err = hw->mac.ops.start_hw(hw);
10565         if (err == IXGBE_ERR_EEPROM_VERSION) {
10566                 /* We are running on a pre-production device, log a warning */
10567                 e_dev_warn("This device is a pre-production adapter/LOM. "
10568                            "Please be aware there may be issues associated "
10569                            "with your hardware.  If you are experiencing "
10570                            "problems please contact your Intel or hardware "
10571                            "representative who provided you with this "
10572                            "hardware.\n");
10573         }
10574         strcpy(netdev->name, "eth%d");
10575         pci_set_drvdata(pdev, adapter);
10576         err = register_netdev(netdev);
10577         if (err)
10578                 goto err_register;
10579
10580
10581         /* power down the optics for 82599 SFP+ fiber */
10582         if (hw->mac.ops.disable_tx_laser)
10583                 hw->mac.ops.disable_tx_laser(hw);
10584
10585         /* carrier off reporting is important to ethtool even BEFORE open */
10586         netif_carrier_off(netdev);
10587
10588 #ifdef CONFIG_IXGBE_DCA
10589         if (dca_add_requester(&pdev->dev) == 0) {
10590                 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
10591                 ixgbe_setup_dca(adapter);
10592         }
10593 #endif
10594         if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
10595                 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
10596                 for (i = 0; i < adapter->num_vfs; i++)
10597                         ixgbe_vf_configuration(pdev, (i | 0x10000000));
10598         }
10599
10600         /* firmware requires driver version to be 0xFFFFFFFF
10601          * since os does not support feature
10602          */
10603         if (hw->mac.ops.set_fw_drv_ver)
10604                 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF, 0xFF,
10605                                            sizeof(ixgbe_driver_version) - 1,
10606                                            ixgbe_driver_version);
10607
10608         /* add san mac addr to netdev */
10609         ixgbe_add_sanmac_netdev(netdev);
10610
10611         e_dev_info("%s\n", ixgbe_default_device_descr);
10612
10613 #ifdef CONFIG_IXGBE_HWMON
10614         if (ixgbe_sysfs_init(adapter))
10615                 e_err(probe, "failed to allocate sysfs resources\n");
10616 #endif /* CONFIG_IXGBE_HWMON */
10617
10618         ixgbe_dbg_adapter_init(adapter);
10619
10620         /* setup link for SFP devices with MNG FW, else wait for IXGBE_UP */
10621         if (ixgbe_mng_enabled(hw) && ixgbe_is_sfp(hw) && hw->mac.ops.setup_link)
10622                 hw->mac.ops.setup_link(hw,
10623                         IXGBE_LINK_SPEED_10GB_FULL | IXGBE_LINK_SPEED_1GB_FULL,
10624                         true);
10625
10626         return 0;
10627
10628 err_register:
10629         ixgbe_release_hw_control(adapter);
10630         ixgbe_clear_interrupt_scheme(adapter);
10631 err_sw_init:
10632         ixgbe_disable_sriov(adapter);
10633         adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
10634         iounmap(adapter->io_addr);
10635         kfree(adapter->jump_tables[0]);
10636         kfree(adapter->mac_table);
10637         kfree(adapter->rss_key);
10638 err_ioremap:
10639         disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
10640         free_netdev(netdev);
10641 err_alloc_etherdev:
10642         pci_release_mem_regions(pdev);
10643 err_pci_reg:
10644 err_dma:
10645         if (!adapter || disable_dev)
10646                 pci_disable_device(pdev);
10647         return err;
10648 }
10649
10650 /**
10651  * ixgbe_remove - Device Removal Routine
10652  * @pdev: PCI device information struct
10653  *
10654  * ixgbe_remove is called by the PCI subsystem to alert the driver
10655  * that it should release a PCI device.  The could be caused by a
10656  * Hot-Plug event, or because the driver is going to be removed from
10657  * memory.
10658  **/
10659 static void ixgbe_remove(struct pci_dev *pdev)
10660 {
10661         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
10662         struct net_device *netdev;
10663         bool disable_dev;
10664         int i;
10665
10666         /* if !adapter then we already cleaned up in probe */
10667         if (!adapter)
10668                 return;
10669
10670         netdev  = adapter->netdev;
10671         ixgbe_dbg_adapter_exit(adapter);
10672
10673         set_bit(__IXGBE_REMOVING, &adapter->state);
10674         cancel_work_sync(&adapter->service_task);
10675
10676
10677 #ifdef CONFIG_IXGBE_DCA
10678         if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
10679                 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
10680                 dca_remove_requester(&pdev->dev);
10681                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL,
10682                                 IXGBE_DCA_CTRL_DCA_DISABLE);
10683         }
10684
10685 #endif
10686 #ifdef CONFIG_IXGBE_HWMON
10687         ixgbe_sysfs_exit(adapter);
10688 #endif /* CONFIG_IXGBE_HWMON */
10689
10690         /* remove the added san mac */
10691         ixgbe_del_sanmac_netdev(netdev);
10692
10693 #ifdef CONFIG_PCI_IOV
10694         ixgbe_disable_sriov(adapter);
10695 #endif
10696         if (netdev->reg_state == NETREG_REGISTERED)
10697                 unregister_netdev(netdev);
10698
10699         ixgbe_stop_ipsec_offload(adapter);
10700         ixgbe_clear_interrupt_scheme(adapter);
10701
10702         ixgbe_release_hw_control(adapter);
10703
10704 #ifdef CONFIG_DCB
10705         kfree(adapter->ixgbe_ieee_pfc);
10706         kfree(adapter->ixgbe_ieee_ets);
10707
10708 #endif
10709         iounmap(adapter->io_addr);
10710         pci_release_mem_regions(pdev);
10711
10712         e_dev_info("complete\n");
10713
10714         for (i = 0; i < IXGBE_MAX_LINK_HANDLE; i++) {
10715                 if (adapter->jump_tables[i]) {
10716                         kfree(adapter->jump_tables[i]->input);
10717                         kfree(adapter->jump_tables[i]->mask);
10718                 }
10719                 kfree(adapter->jump_tables[i]);
10720         }
10721
10722         kfree(adapter->mac_table);
10723         kfree(adapter->rss_key);
10724         disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
10725         free_netdev(netdev);
10726
10727         pci_disable_pcie_error_reporting(pdev);
10728
10729         if (disable_dev)
10730                 pci_disable_device(pdev);
10731 }
10732
10733 /**
10734  * ixgbe_io_error_detected - called when PCI error is detected
10735  * @pdev: Pointer to PCI device
10736  * @state: The current pci connection state
10737  *
10738  * This function is called after a PCI bus error affecting
10739  * this device has been detected.
10740  */
10741 static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
10742                                                 pci_channel_state_t state)
10743 {
10744         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
10745         struct net_device *netdev = adapter->netdev;
10746
10747 #ifdef CONFIG_PCI_IOV
10748         struct ixgbe_hw *hw = &adapter->hw;
10749         struct pci_dev *bdev, *vfdev;
10750         u32 dw0, dw1, dw2, dw3;
10751         int vf, pos;
10752         u16 req_id, pf_func;
10753
10754         if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
10755             adapter->num_vfs == 0)
10756                 goto skip_bad_vf_detection;
10757
10758         bdev = pdev->bus->self;
10759         while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
10760                 bdev = bdev->bus->self;
10761
10762         if (!bdev)
10763                 goto skip_bad_vf_detection;
10764
10765         pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
10766         if (!pos)
10767                 goto skip_bad_vf_detection;
10768
10769         dw0 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG);
10770         dw1 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 4);
10771         dw2 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 8);
10772         dw3 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 12);
10773         if (ixgbe_removed(hw->hw_addr))
10774                 goto skip_bad_vf_detection;
10775
10776         req_id = dw1 >> 16;
10777         /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
10778         if (!(req_id & 0x0080))
10779                 goto skip_bad_vf_detection;
10780
10781         pf_func = req_id & 0x01;
10782         if ((pf_func & 1) == (pdev->devfn & 1)) {
10783                 unsigned int device_id;
10784
10785                 vf = (req_id & 0x7F) >> 1;
10786                 e_dev_err("VF %d has caused a PCIe error\n", vf);
10787                 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
10788                                 "%8.8x\tdw3: %8.8x\n",
10789                 dw0, dw1, dw2, dw3);
10790                 switch (adapter->hw.mac.type) {
10791                 case ixgbe_mac_82599EB:
10792                         device_id = IXGBE_82599_VF_DEVICE_ID;
10793                         break;
10794                 case ixgbe_mac_X540:
10795                         device_id = IXGBE_X540_VF_DEVICE_ID;
10796                         break;
10797                 case ixgbe_mac_X550:
10798                         device_id = IXGBE_DEV_ID_X550_VF;
10799                         break;
10800                 case ixgbe_mac_X550EM_x:
10801                         device_id = IXGBE_DEV_ID_X550EM_X_VF;
10802                         break;
10803                 case ixgbe_mac_x550em_a:
10804                         device_id = IXGBE_DEV_ID_X550EM_A_VF;
10805                         break;
10806                 default:
10807                         device_id = 0;
10808                         break;
10809                 }
10810
10811                 /* Find the pci device of the offending VF */
10812                 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
10813                 while (vfdev) {
10814                         if (vfdev->devfn == (req_id & 0xFF))
10815                                 break;
10816                         vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
10817                                                device_id, vfdev);
10818                 }
10819                 /*
10820                  * There's a slim chance the VF could have been hot plugged,
10821                  * so if it is no longer present we don't need to issue the
10822                  * VFLR.  Just clean up the AER in that case.
10823                  */
10824                 if (vfdev) {
10825                         pcie_flr(vfdev);
10826                         /* Free device reference count */
10827                         pci_dev_put(vfdev);
10828                 }
10829
10830                 pci_cleanup_aer_uncorrect_error_status(pdev);
10831         }
10832
10833         /*
10834          * Even though the error may have occurred on the other port
10835          * we still need to increment the vf error reference count for
10836          * both ports because the I/O resume function will be called
10837          * for both of them.
10838          */
10839         adapter->vferr_refcount++;
10840
10841         return PCI_ERS_RESULT_RECOVERED;
10842
10843 skip_bad_vf_detection:
10844 #endif /* CONFIG_PCI_IOV */
10845         if (!test_bit(__IXGBE_SERVICE_INITED, &adapter->state))
10846                 return PCI_ERS_RESULT_DISCONNECT;
10847
10848         if (!netif_device_present(netdev))
10849                 return PCI_ERS_RESULT_DISCONNECT;
10850
10851         rtnl_lock();
10852         netif_device_detach(netdev);
10853
10854         if (state == pci_channel_io_perm_failure) {
10855                 rtnl_unlock();
10856                 return PCI_ERS_RESULT_DISCONNECT;
10857         }
10858
10859         if (netif_running(netdev))
10860                 ixgbe_close_suspend(adapter);
10861
10862         if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state))
10863                 pci_disable_device(pdev);
10864         rtnl_unlock();
10865
10866         /* Request a slot reset. */
10867         return PCI_ERS_RESULT_NEED_RESET;
10868 }
10869
10870 /**
10871  * ixgbe_io_slot_reset - called after the pci bus has been reset.
10872  * @pdev: Pointer to PCI device
10873  *
10874  * Restart the card from scratch, as if from a cold-boot.
10875  */
10876 static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
10877 {
10878         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
10879         pci_ers_result_t result;
10880         int err;
10881
10882         if (pci_enable_device_mem(pdev)) {
10883                 e_err(probe, "Cannot re-enable PCI device after reset.\n");
10884                 result = PCI_ERS_RESULT_DISCONNECT;
10885         } else {
10886                 smp_mb__before_atomic();
10887                 clear_bit(__IXGBE_DISABLED, &adapter->state);
10888                 adapter->hw.hw_addr = adapter->io_addr;
10889                 pci_set_master(pdev);
10890                 pci_restore_state(pdev);
10891                 pci_save_state(pdev);
10892
10893                 pci_wake_from_d3(pdev, false);
10894
10895                 ixgbe_reset(adapter);
10896                 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
10897                 result = PCI_ERS_RESULT_RECOVERED;
10898         }
10899
10900         err = pci_cleanup_aer_uncorrect_error_status(pdev);
10901         if (err) {
10902                 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
10903                           "failed 0x%0x\n", err);
10904                 /* non-fatal, continue */
10905         }
10906
10907         return result;
10908 }
10909
10910 /**
10911  * ixgbe_io_resume - called when traffic can start flowing again.
10912  * @pdev: Pointer to PCI device
10913  *
10914  * This callback is called when the error recovery driver tells us that
10915  * its OK to resume normal operation.
10916  */
10917 static void ixgbe_io_resume(struct pci_dev *pdev)
10918 {
10919         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
10920         struct net_device *netdev = adapter->netdev;
10921
10922 #ifdef CONFIG_PCI_IOV
10923         if (adapter->vferr_refcount) {
10924                 e_info(drv, "Resuming after VF err\n");
10925                 adapter->vferr_refcount--;
10926                 return;
10927         }
10928
10929 #endif
10930         rtnl_lock();
10931         if (netif_running(netdev))
10932                 ixgbe_open(netdev);
10933
10934         netif_device_attach(netdev);
10935         rtnl_unlock();
10936 }
10937
10938 static const struct pci_error_handlers ixgbe_err_handler = {
10939         .error_detected = ixgbe_io_error_detected,
10940         .slot_reset = ixgbe_io_slot_reset,
10941         .resume = ixgbe_io_resume,
10942 };
10943
10944 static struct pci_driver ixgbe_driver = {
10945         .name     = ixgbe_driver_name,
10946         .id_table = ixgbe_pci_tbl,
10947         .probe    = ixgbe_probe,
10948         .remove   = ixgbe_remove,
10949 #ifdef CONFIG_PM
10950         .suspend  = ixgbe_suspend,
10951         .resume   = ixgbe_resume,
10952 #endif
10953         .shutdown = ixgbe_shutdown,
10954         .sriov_configure = ixgbe_pci_sriov_configure,
10955         .err_handler = &ixgbe_err_handler
10956 };
10957
10958 /**
10959  * ixgbe_init_module - Driver Registration Routine
10960  *
10961  * ixgbe_init_module is the first routine called when the driver is
10962  * loaded. All it does is register with the PCI subsystem.
10963  **/
10964 static int __init ixgbe_init_module(void)
10965 {
10966         int ret;
10967         pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
10968         pr_info("%s\n", ixgbe_copyright);
10969
10970         ixgbe_wq = create_singlethread_workqueue(ixgbe_driver_name);
10971         if (!ixgbe_wq) {
10972                 pr_err("%s: Failed to create workqueue\n", ixgbe_driver_name);
10973                 return -ENOMEM;
10974         }
10975
10976         ixgbe_dbg_init();
10977
10978         ret = pci_register_driver(&ixgbe_driver);
10979         if (ret) {
10980                 destroy_workqueue(ixgbe_wq);
10981                 ixgbe_dbg_exit();
10982                 return ret;
10983         }
10984
10985 #ifdef CONFIG_IXGBE_DCA
10986         dca_register_notify(&dca_notifier);
10987 #endif
10988
10989         return 0;
10990 }
10991
10992 module_init(ixgbe_init_module);
10993
10994 /**
10995  * ixgbe_exit_module - Driver Exit Cleanup Routine
10996  *
10997  * ixgbe_exit_module is called just before the driver is removed
10998  * from memory.
10999  **/
11000 static void __exit ixgbe_exit_module(void)
11001 {
11002 #ifdef CONFIG_IXGBE_DCA
11003         dca_unregister_notify(&dca_notifier);
11004 #endif
11005         pci_unregister_driver(&ixgbe_driver);
11006
11007         ixgbe_dbg_exit();
11008         if (ixgbe_wq) {
11009                 destroy_workqueue(ixgbe_wq);
11010                 ixgbe_wq = NULL;
11011         }
11012 }
11013
11014 #ifdef CONFIG_IXGBE_DCA
11015 static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
11016                             void *p)
11017 {
11018         int ret_val;
11019
11020         ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
11021                                          __ixgbe_notify_dca);
11022
11023         return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
11024 }
11025
11026 #endif /* CONFIG_IXGBE_DCA */
11027
11028 module_exit(ixgbe_exit_module);
11029
11030 /* ixgbe_main.c */