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