1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 1999 - 2018 Intel Corporation. */
4 #include <linux/types.h>
5 #include <linux/module.h>
7 #include <linux/netdevice.h>
8 #include <linux/vmalloc.h>
9 #include <linux/string.h>
11 #include <linux/interrupt.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>
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 <scsi/fc/fc_fcoe.h>
31 #include <net/udp_tunnel.h>
32 #include <net/pkt_cls.h>
33 #include <net/tc_act/tc_gact.h>
34 #include <net/tc_act/tc_mirred.h>
35 #include <net/vxlan.h>
40 #include "ixgbe_common.h"
41 #include "ixgbe_dcb_82599.h"
42 #include "ixgbe_sriov.h"
43 #include "ixgbe_model.h"
45 char ixgbe_driver_name
[] = "ixgbe";
46 static const char ixgbe_driver_string
[] =
47 "Intel(R) 10 Gigabit PCI Express Network Driver";
49 char ixgbe_default_device_descr
[] =
50 "Intel(R) 10 Gigabit Network Connection";
52 static char ixgbe_default_device_descr
[] =
53 "Intel(R) 10 Gigabit Network Connection";
55 #define DRV_VERSION "5.1.0-k"
56 const char ixgbe_driver_version
[] = DRV_VERSION
;
57 static const char ixgbe_copyright
[] =
58 "Copyright (c) 1999-2016 Intel Corporation.";
60 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";
62 static const struct ixgbe_info
*ixgbe_info_tbl
[] = {
63 [board_82598
] = &ixgbe_82598_info
,
64 [board_82599
] = &ixgbe_82599_info
,
65 [board_X540
] = &ixgbe_X540_info
,
66 [board_X550
] = &ixgbe_X550_info
,
67 [board_X550EM_x
] = &ixgbe_X550EM_x_info
,
68 [board_x550em_x_fw
] = &ixgbe_x550em_x_fw_info
,
69 [board_x550em_a
] = &ixgbe_x550em_a_info
,
70 [board_x550em_a_fw
] = &ixgbe_x550em_a_fw_info
,
73 /* ixgbe_pci_tbl - PCI Device ID Table
75 * Wildcard entries (PCI_ANY_ID) should come last
76 * Last entry must be all 0s
78 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
79 * Class, Class Mask, private data (not used) }
81 static const struct pci_device_id ixgbe_pci_tbl
[] = {
82 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598
), board_82598
},
83 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AF_DUAL_PORT
), board_82598
},
84 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AF_SINGLE_PORT
), board_82598
},
85 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AT
), board_82598
},
86 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AT2
), board_82598
},
87 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_CX4
), board_82598
},
88 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_CX4_DUAL_PORT
), board_82598
},
89 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_DA_DUAL_PORT
), board_82598
},
90 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM
), board_82598
},
91 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_XF_LR
), board_82598
},
92 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_SFP_LOM
), board_82598
},
93 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_BX
), board_82598
},
94 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_KX4
), board_82599
},
95 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_XAUI_LOM
), board_82599
},
96 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_KR
), board_82599
},
97 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP
), board_82599
},
98 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_EM
), board_82599
},
99 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_KX4_MEZZ
), board_82599
},
100 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_CX4
), board_82599
},
101 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_BACKPLANE_FCOE
), board_82599
},
102 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_FCOE
), board_82599
},
103 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_T3_LOM
), board_82599
},
104 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_COMBO_BACKPLANE
), board_82599
},
105 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X540T
), board_X540
},
106 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_SF2
), board_82599
},
107 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_LS
), board_82599
},
108 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_QSFP_SF_QP
), board_82599
},
109 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599EN_SFP
), board_82599
},
110 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_SF_QP
), board_82599
},
111 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X540T1
), board_X540
},
112 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550T
), board_X550
},
113 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550T1
), board_X550
},
114 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_X_KX4
), board_X550EM_x
},
115 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_X_XFI
), board_X550EM_x
},
116 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_X_KR
), board_X550EM_x
},
117 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_X_10G_T
), board_X550EM_x
},
118 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_X_SFP
), board_X550EM_x
},
119 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_X_1G_T
), board_x550em_x_fw
},
120 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_KR
), board_x550em_a
},
121 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_KR_L
), board_x550em_a
},
122 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_SFP_N
), board_x550em_a
},
123 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_SGMII
), board_x550em_a
},
124 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_SGMII_L
), board_x550em_a
},
125 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_10G_T
), board_x550em_a
},
126 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_SFP
), board_x550em_a
},
127 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_1G_T
), board_x550em_a_fw
},
128 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X550EM_A_1G_T_L
), board_x550em_a_fw
},
129 /* required last entry */
132 MODULE_DEVICE_TABLE(pci
, ixgbe_pci_tbl
);
134 #ifdef CONFIG_IXGBE_DCA
135 static int ixgbe_notify_dca(struct notifier_block
*, unsigned long event
,
137 static struct notifier_block dca_notifier
= {
138 .notifier_call
= ixgbe_notify_dca
,
144 #ifdef CONFIG_PCI_IOV
145 static unsigned int max_vfs
;
146 module_param(max_vfs
, uint
, 0);
147 MODULE_PARM_DESC(max_vfs
,
148 "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63. (Deprecated)");
149 #endif /* CONFIG_PCI_IOV */
151 static unsigned int allow_unsupported_sfp
;
152 module_param(allow_unsupported_sfp
, uint
, 0);
153 MODULE_PARM_DESC(allow_unsupported_sfp
,
154 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
156 #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
157 static int debug
= -1;
158 module_param(debug
, int, 0);
159 MODULE_PARM_DESC(debug
, "Debug level (0=none,...,16=all)");
161 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
162 MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
163 MODULE_LICENSE("GPL");
164 MODULE_VERSION(DRV_VERSION
);
166 static struct workqueue_struct
*ixgbe_wq
;
168 static bool ixgbe_check_cfg_remove(struct ixgbe_hw
*hw
, struct pci_dev
*pdev
);
169 static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter
*);
171 static const struct net_device_ops ixgbe_netdev_ops
;
173 static bool netif_is_ixgbe(struct net_device
*dev
)
175 return dev
&& (dev
->netdev_ops
== &ixgbe_netdev_ops
);
178 static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter
*adapter
,
181 struct pci_dev
*parent_dev
;
182 struct pci_bus
*parent_bus
;
184 parent_bus
= adapter
->pdev
->bus
->parent
;
188 parent_dev
= parent_bus
->self
;
192 if (!pci_is_pcie(parent_dev
))
195 pcie_capability_read_word(parent_dev
, reg
, value
);
196 if (*value
== IXGBE_FAILED_READ_CFG_WORD
&&
197 ixgbe_check_cfg_remove(&adapter
->hw
, parent_dev
))
202 static s32
ixgbe_get_parent_bus_info(struct ixgbe_adapter
*adapter
)
204 struct ixgbe_hw
*hw
= &adapter
->hw
;
208 hw
->bus
.type
= ixgbe_bus_type_pci_express
;
210 /* Get the negotiated link width and speed from PCI config space of the
211 * parent, as this device is behind a switch
213 err
= ixgbe_read_pci_cfg_word_parent(adapter
, 18, &link_status
);
215 /* assume caller will handle error case */
219 hw
->bus
.width
= ixgbe_convert_bus_width(link_status
);
220 hw
->bus
.speed
= ixgbe_convert_bus_speed(link_status
);
226 * ixgbe_check_from_parent - Determine whether PCIe info should come from parent
227 * @hw: hw specific details
229 * This function is used by probe to determine whether a device's PCI-Express
230 * bandwidth details should be gathered from the parent bus instead of from the
231 * device. Used to ensure that various locations all have the correct device ID
234 static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw
*hw
)
236 switch (hw
->device_id
) {
237 case IXGBE_DEV_ID_82599_SFP_SF_QP
:
238 case IXGBE_DEV_ID_82599_QSFP_SF_QP
:
245 static void ixgbe_check_minimum_link(struct ixgbe_adapter
*adapter
,
248 struct ixgbe_hw
*hw
= &adapter
->hw
;
249 struct pci_dev
*pdev
;
251 /* Some devices are not connected over PCIe and thus do not negotiate
252 * speed. These devices do not have valid bus info, and thus any report
253 * we generate may not be correct.
255 if (hw
->bus
.type
== ixgbe_bus_type_internal
)
258 /* determine whether to use the parent device */
259 if (ixgbe_pcie_from_parent(&adapter
->hw
))
260 pdev
= adapter
->pdev
->bus
->parent
->self
;
262 pdev
= adapter
->pdev
;
264 pcie_print_link_status(pdev
);
267 static void ixgbe_service_event_schedule(struct ixgbe_adapter
*adapter
)
269 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
) &&
270 !test_bit(__IXGBE_REMOVING
, &adapter
->state
) &&
271 !test_and_set_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
))
272 queue_work(ixgbe_wq
, &adapter
->service_task
);
275 static void ixgbe_remove_adapter(struct ixgbe_hw
*hw
)
277 struct ixgbe_adapter
*adapter
= hw
->back
;
282 e_dev_err("Adapter removed\n");
283 if (test_bit(__IXGBE_SERVICE_INITED
, &adapter
->state
))
284 ixgbe_service_event_schedule(adapter
);
287 static u32
ixgbe_check_remove(struct ixgbe_hw
*hw
, u32 reg
)
289 u8 __iomem
*reg_addr
;
293 reg_addr
= READ_ONCE(hw
->hw_addr
);
294 if (ixgbe_removed(reg_addr
))
295 return IXGBE_FAILED_READ_REG
;
297 /* Register read of 0xFFFFFFF can indicate the adapter has been removed,
298 * so perform several status register reads to determine if the adapter
301 for (i
= 0; i
< IXGBE_FAILED_READ_RETRIES
; i
++) {
302 value
= readl(reg_addr
+ IXGBE_STATUS
);
303 if (value
!= IXGBE_FAILED_READ_REG
)
308 if (value
== IXGBE_FAILED_READ_REG
)
309 ixgbe_remove_adapter(hw
);
311 value
= readl(reg_addr
+ reg
);
316 * ixgbe_read_reg - Read from device register
317 * @hw: hw specific details
318 * @reg: offset of register to read
320 * Returns : value read or IXGBE_FAILED_READ_REG if removed
322 * This function is used to read device registers. It checks for device
323 * removal by confirming any read that returns all ones by checking the
324 * status register value for all ones. This function avoids reading from
325 * the hardware if a removal was previously detected in which case it
326 * returns IXGBE_FAILED_READ_REG (all ones).
328 u32
ixgbe_read_reg(struct ixgbe_hw
*hw
, u32 reg
)
330 u8 __iomem
*reg_addr
= READ_ONCE(hw
->hw_addr
);
333 if (ixgbe_removed(reg_addr
))
334 return IXGBE_FAILED_READ_REG
;
335 if (unlikely(hw
->phy
.nw_mng_if_sel
&
336 IXGBE_NW_MNG_IF_SEL_SGMII_ENABLE
)) {
337 struct ixgbe_adapter
*adapter
;
340 for (i
= 0; i
< 200; ++i
) {
341 value
= readl(reg_addr
+ IXGBE_MAC_SGMII_BUSY
);
343 goto writes_completed
;
344 if (value
== IXGBE_FAILED_READ_REG
) {
345 ixgbe_remove_adapter(hw
);
346 return IXGBE_FAILED_READ_REG
;
352 e_warn(hw
, "register writes incomplete %08x\n", value
);
356 value
= readl(reg_addr
+ reg
);
357 if (unlikely(value
== IXGBE_FAILED_READ_REG
))
358 value
= ixgbe_check_remove(hw
, reg
);
362 static bool ixgbe_check_cfg_remove(struct ixgbe_hw
*hw
, struct pci_dev
*pdev
)
366 pci_read_config_word(pdev
, PCI_VENDOR_ID
, &value
);
367 if (value
== IXGBE_FAILED_READ_CFG_WORD
) {
368 ixgbe_remove_adapter(hw
);
374 u16
ixgbe_read_pci_cfg_word(struct ixgbe_hw
*hw
, u32 reg
)
376 struct ixgbe_adapter
*adapter
= hw
->back
;
379 if (ixgbe_removed(hw
->hw_addr
))
380 return IXGBE_FAILED_READ_CFG_WORD
;
381 pci_read_config_word(adapter
->pdev
, reg
, &value
);
382 if (value
== IXGBE_FAILED_READ_CFG_WORD
&&
383 ixgbe_check_cfg_remove(hw
, adapter
->pdev
))
384 return IXGBE_FAILED_READ_CFG_WORD
;
388 #ifdef CONFIG_PCI_IOV
389 static u32
ixgbe_read_pci_cfg_dword(struct ixgbe_hw
*hw
, u32 reg
)
391 struct ixgbe_adapter
*adapter
= hw
->back
;
394 if (ixgbe_removed(hw
->hw_addr
))
395 return IXGBE_FAILED_READ_CFG_DWORD
;
396 pci_read_config_dword(adapter
->pdev
, reg
, &value
);
397 if (value
== IXGBE_FAILED_READ_CFG_DWORD
&&
398 ixgbe_check_cfg_remove(hw
, adapter
->pdev
))
399 return IXGBE_FAILED_READ_CFG_DWORD
;
402 #endif /* CONFIG_PCI_IOV */
404 void ixgbe_write_pci_cfg_word(struct ixgbe_hw
*hw
, u32 reg
, u16 value
)
406 struct ixgbe_adapter
*adapter
= hw
->back
;
408 if (ixgbe_removed(hw
->hw_addr
))
410 pci_write_config_word(adapter
->pdev
, reg
, value
);
413 static void ixgbe_service_event_complete(struct ixgbe_adapter
*adapter
)
415 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
));
417 /* flush memory to make sure state is correct before next watchdog */
418 smp_mb__before_atomic();
419 clear_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
);
422 struct ixgbe_reg_info
{
427 static const struct ixgbe_reg_info ixgbe_reg_info_tbl
[] = {
429 /* General Registers */
430 {IXGBE_CTRL
, "CTRL"},
431 {IXGBE_STATUS
, "STATUS"},
432 {IXGBE_CTRL_EXT
, "CTRL_EXT"},
434 /* Interrupt Registers */
435 {IXGBE_EICR
, "EICR"},
438 {IXGBE_SRRCTL(0), "SRRCTL"},
439 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
440 {IXGBE_RDLEN(0), "RDLEN"},
441 {IXGBE_RDH(0), "RDH"},
442 {IXGBE_RDT(0), "RDT"},
443 {IXGBE_RXDCTL(0), "RXDCTL"},
444 {IXGBE_RDBAL(0), "RDBAL"},
445 {IXGBE_RDBAH(0), "RDBAH"},
448 {IXGBE_TDBAL(0), "TDBAL"},
449 {IXGBE_TDBAH(0), "TDBAH"},
450 {IXGBE_TDLEN(0), "TDLEN"},
451 {IXGBE_TDH(0), "TDH"},
452 {IXGBE_TDT(0), "TDT"},
453 {IXGBE_TXDCTL(0), "TXDCTL"},
455 /* List Terminator */
461 * ixgbe_regdump - register printout routine
463 static void ixgbe_regdump(struct ixgbe_hw
*hw
, struct ixgbe_reg_info
*reginfo
)
469 switch (reginfo
->ofs
) {
470 case IXGBE_SRRCTL(0):
471 for (i
= 0; i
< 64; i
++)
472 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_SRRCTL(i
));
474 case IXGBE_DCA_RXCTRL(0):
475 for (i
= 0; i
< 64; i
++)
476 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_DCA_RXCTRL(i
));
479 for (i
= 0; i
< 64; i
++)
480 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDLEN(i
));
483 for (i
= 0; i
< 64; i
++)
484 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDH(i
));
487 for (i
= 0; i
< 64; i
++)
488 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDT(i
));
490 case IXGBE_RXDCTL(0):
491 for (i
= 0; i
< 64; i
++)
492 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RXDCTL(i
));
495 for (i
= 0; i
< 64; i
++)
496 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDBAL(i
));
499 for (i
= 0; i
< 64; i
++)
500 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDBAH(i
));
503 for (i
= 0; i
< 64; i
++)
504 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDBAL(i
));
507 for (i
= 0; i
< 64; i
++)
508 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDBAH(i
));
511 for (i
= 0; i
< 64; i
++)
512 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDLEN(i
));
515 for (i
= 0; i
< 64; i
++)
516 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDH(i
));
519 for (i
= 0; i
< 64; i
++)
520 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDT(i
));
522 case IXGBE_TXDCTL(0):
523 for (i
= 0; i
< 64; i
++)
524 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TXDCTL(i
));
527 pr_info("%-15s %08x\n",
528 reginfo
->name
, IXGBE_READ_REG(hw
, reginfo
->ofs
));
538 snprintf(rname
, 16, "%s[%d-%d]", reginfo
->name
, i
, i
+ 7);
539 for (j
= 0; j
< 8; j
++)
540 p
+= sprintf(p
, " %08x", regs
[i
++]);
541 pr_err("%-15s%s\n", rname
, buf
);
546 static void ixgbe_print_buffer(struct ixgbe_ring
*ring
, int n
)
548 struct ixgbe_tx_buffer
*tx_buffer
;
550 tx_buffer
= &ring
->tx_buffer_info
[ring
->next_to_clean
];
551 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
552 n
, ring
->next_to_use
, ring
->next_to_clean
,
553 (u64
)dma_unmap_addr(tx_buffer
, dma
),
554 dma_unmap_len(tx_buffer
, len
),
555 tx_buffer
->next_to_watch
,
556 (u64
)tx_buffer
->time_stamp
);
560 * ixgbe_dump - Print registers, tx-rings and rx-rings
562 static void ixgbe_dump(struct ixgbe_adapter
*adapter
)
564 struct net_device
*netdev
= adapter
->netdev
;
565 struct ixgbe_hw
*hw
= &adapter
->hw
;
566 struct ixgbe_reg_info
*reginfo
;
568 struct ixgbe_ring
*ring
;
569 struct ixgbe_tx_buffer
*tx_buffer
;
570 union ixgbe_adv_tx_desc
*tx_desc
;
571 struct my_u0
{ u64 a
; u64 b
; } *u0
;
572 struct ixgbe_ring
*rx_ring
;
573 union ixgbe_adv_rx_desc
*rx_desc
;
574 struct ixgbe_rx_buffer
*rx_buffer_info
;
577 if (!netif_msg_hw(adapter
))
580 /* Print netdevice Info */
582 dev_info(&adapter
->pdev
->dev
, "Net device Info\n");
583 pr_info("Device Name state "
585 pr_info("%-15s %016lX %016lX\n",
588 dev_trans_start(netdev
));
591 /* Print Registers */
592 dev_info(&adapter
->pdev
->dev
, "Register Dump\n");
593 pr_info(" Register Name Value\n");
594 for (reginfo
= (struct ixgbe_reg_info
*)ixgbe_reg_info_tbl
;
595 reginfo
->name
; reginfo
++) {
596 ixgbe_regdump(hw
, reginfo
);
599 /* Print TX Ring Summary */
600 if (!netdev
|| !netif_running(netdev
))
603 dev_info(&adapter
->pdev
->dev
, "TX Rings Summary\n");
604 pr_info(" %s %s %s %s\n",
605 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
606 "leng", "ntw", "timestamp");
607 for (n
= 0; n
< adapter
->num_tx_queues
; n
++) {
608 ring
= adapter
->tx_ring
[n
];
609 ixgbe_print_buffer(ring
, n
);
612 for (n
= 0; n
< adapter
->num_xdp_queues
; n
++) {
613 ring
= adapter
->xdp_ring
[n
];
614 ixgbe_print_buffer(ring
, n
);
618 if (!netif_msg_tx_done(adapter
))
619 goto rx_ring_summary
;
621 dev_info(&adapter
->pdev
->dev
, "TX Rings Dump\n");
623 /* Transmit Descriptor Formats
625 * 82598 Advanced Transmit Descriptor
626 * +--------------------------------------------------------------+
627 * 0 | Buffer Address [63:0] |
628 * +--------------------------------------------------------------+
629 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
630 * +--------------------------------------------------------------+
631 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
633 * 82598 Advanced Transmit Descriptor (Write-Back Format)
634 * +--------------------------------------------------------------+
636 * +--------------------------------------------------------------+
637 * 8 | RSV | STA | NXTSEQ |
638 * +--------------------------------------------------------------+
641 * 82599+ Advanced Transmit Descriptor
642 * +--------------------------------------------------------------+
643 * 0 | Buffer Address [63:0] |
644 * +--------------------------------------------------------------+
645 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
646 * +--------------------------------------------------------------+
647 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
649 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
650 * +--------------------------------------------------------------+
652 * +--------------------------------------------------------------+
653 * 8 | RSV | STA | RSV |
654 * +--------------------------------------------------------------+
658 for (n
= 0; n
< adapter
->num_tx_queues
; n
++) {
659 ring
= adapter
->tx_ring
[n
];
660 pr_info("------------------------------------\n");
661 pr_info("TX QUEUE INDEX = %d\n", ring
->queue_index
);
662 pr_info("------------------------------------\n");
663 pr_info("%s%s %s %s %s %s\n",
664 "T [desc] [address 63:0 ] ",
665 "[PlPOIdStDDt Ln] [bi->dma ] ",
666 "leng", "ntw", "timestamp", "bi->skb");
668 for (i
= 0; ring
->desc
&& (i
< ring
->count
); i
++) {
669 tx_desc
= IXGBE_TX_DESC(ring
, i
);
670 tx_buffer
= &ring
->tx_buffer_info
[i
];
671 u0
= (struct my_u0
*)tx_desc
;
672 if (dma_unmap_len(tx_buffer
, len
) > 0) {
673 const char *ring_desc
;
675 if (i
== ring
->next_to_use
&&
676 i
== ring
->next_to_clean
)
677 ring_desc
= " NTC/U";
678 else if (i
== ring
->next_to_use
)
680 else if (i
== ring
->next_to_clean
)
684 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p%s",
686 le64_to_cpu((__force __le64
)u0
->a
),
687 le64_to_cpu((__force __le64
)u0
->b
),
688 (u64
)dma_unmap_addr(tx_buffer
, dma
),
689 dma_unmap_len(tx_buffer
, len
),
690 tx_buffer
->next_to_watch
,
691 (u64
)tx_buffer
->time_stamp
,
695 if (netif_msg_pktdata(adapter
) &&
697 print_hex_dump(KERN_INFO
, "",
698 DUMP_PREFIX_ADDRESS
, 16, 1,
699 tx_buffer
->skb
->data
,
700 dma_unmap_len(tx_buffer
, len
),
706 /* Print RX Rings Summary */
708 dev_info(&adapter
->pdev
->dev
, "RX Rings Summary\n");
709 pr_info("Queue [NTU] [NTC]\n");
710 for (n
= 0; n
< adapter
->num_rx_queues
; n
++) {
711 rx_ring
= adapter
->rx_ring
[n
];
712 pr_info("%5d %5X %5X\n",
713 n
, rx_ring
->next_to_use
, rx_ring
->next_to_clean
);
717 if (!netif_msg_rx_status(adapter
))
720 dev_info(&adapter
->pdev
->dev
, "RX Rings Dump\n");
722 /* Receive Descriptor Formats
724 * 82598 Advanced Receive Descriptor (Read) Format
726 * +-----------------------------------------------------+
727 * 0 | Packet Buffer Address [63:1] |A0/NSE|
728 * +----------------------------------------------+------+
729 * 8 | Header Buffer Address [63:1] | DD |
730 * +-----------------------------------------------------+
733 * 82598 Advanced Receive Descriptor (Write-Back) Format
735 * 63 48 47 32 31 30 21 20 16 15 4 3 0
736 * +------------------------------------------------------+
737 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
738 * | Packet | IP | | | | Type | Type |
739 * | Checksum | Ident | | | | | |
740 * +------------------------------------------------------+
741 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
742 * +------------------------------------------------------+
743 * 63 48 47 32 31 20 19 0
745 * 82599+ Advanced Receive Descriptor (Read) Format
747 * +-----------------------------------------------------+
748 * 0 | Packet Buffer Address [63:1] |A0/NSE|
749 * +----------------------------------------------+------+
750 * 8 | Header Buffer Address [63:1] | DD |
751 * +-----------------------------------------------------+
754 * 82599+ Advanced Receive Descriptor (Write-Back) Format
756 * 63 48 47 32 31 30 21 20 17 16 4 3 0
757 * +------------------------------------------------------+
758 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
759 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
760 * |/ Flow Dir Flt ID | | | | | |
761 * +------------------------------------------------------+
762 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
763 * +------------------------------------------------------+
764 * 63 48 47 32 31 20 19 0
767 for (n
= 0; n
< adapter
->num_rx_queues
; n
++) {
768 rx_ring
= adapter
->rx_ring
[n
];
769 pr_info("------------------------------------\n");
770 pr_info("RX QUEUE INDEX = %d\n", rx_ring
->queue_index
);
771 pr_info("------------------------------------\n");
773 "R [desc] [ PktBuf A0] ",
774 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
775 "<-- Adv Rx Read format");
777 "RWB[desc] [PcsmIpSHl PtRs] ",
778 "[vl er S cks ln] ---------------- [bi->skb ] ",
779 "<-- Adv Rx Write-Back format");
781 for (i
= 0; i
< rx_ring
->count
; i
++) {
782 const char *ring_desc
;
784 if (i
== rx_ring
->next_to_use
)
786 else if (i
== rx_ring
->next_to_clean
)
791 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
792 rx_desc
= IXGBE_RX_DESC(rx_ring
, i
);
793 u0
= (struct my_u0
*)rx_desc
;
794 if (rx_desc
->wb
.upper
.length
) {
795 /* Descriptor Done */
796 pr_info("RWB[0x%03X] %016llX %016llX ---------------- %p%s\n",
798 le64_to_cpu((__force __le64
)u0
->a
),
799 le64_to_cpu((__force __le64
)u0
->b
),
803 pr_info("R [0x%03X] %016llX %016llX %016llX %p%s\n",
805 le64_to_cpu((__force __le64
)u0
->a
),
806 le64_to_cpu((__force __le64
)u0
->b
),
807 (u64
)rx_buffer_info
->dma
,
811 if (netif_msg_pktdata(adapter
) &&
812 rx_buffer_info
->dma
) {
813 print_hex_dump(KERN_INFO
, "",
814 DUMP_PREFIX_ADDRESS
, 16, 1,
815 page_address(rx_buffer_info
->page
) +
816 rx_buffer_info
->page_offset
,
817 ixgbe_rx_bufsz(rx_ring
), true);
824 static void ixgbe_release_hw_control(struct ixgbe_adapter
*adapter
)
828 /* Let firmware take over control of h/w */
829 ctrl_ext
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_CTRL_EXT
);
830 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_CTRL_EXT
,
831 ctrl_ext
& ~IXGBE_CTRL_EXT_DRV_LOAD
);
834 static void ixgbe_get_hw_control(struct ixgbe_adapter
*adapter
)
838 /* Let firmware know the driver has taken over */
839 ctrl_ext
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_CTRL_EXT
);
840 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_CTRL_EXT
,
841 ctrl_ext
| IXGBE_CTRL_EXT_DRV_LOAD
);
845 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
846 * @adapter: pointer to adapter struct
847 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
848 * @queue: queue to map the corresponding interrupt to
849 * @msix_vector: the vector to map to the corresponding queue
852 static void ixgbe_set_ivar(struct ixgbe_adapter
*adapter
, s8 direction
,
853 u8 queue
, u8 msix_vector
)
856 struct ixgbe_hw
*hw
= &adapter
->hw
;
857 switch (hw
->mac
.type
) {
858 case ixgbe_mac_82598EB
:
859 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
862 index
= (((direction
* 64) + queue
) >> 2) & 0x1F;
863 ivar
= IXGBE_READ_REG(hw
, IXGBE_IVAR(index
));
864 ivar
&= ~(0xFF << (8 * (queue
& 0x3)));
865 ivar
|= (msix_vector
<< (8 * (queue
& 0x3)));
866 IXGBE_WRITE_REG(hw
, IXGBE_IVAR(index
), ivar
);
868 case ixgbe_mac_82599EB
:
871 case ixgbe_mac_X550EM_x
:
872 case ixgbe_mac_x550em_a
:
873 if (direction
== -1) {
875 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
876 index
= ((queue
& 1) * 8);
877 ivar
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_IVAR_MISC
);
878 ivar
&= ~(0xFF << index
);
879 ivar
|= (msix_vector
<< index
);
880 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_IVAR_MISC
, ivar
);
883 /* tx or rx causes */
884 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
885 index
= ((16 * (queue
& 1)) + (8 * direction
));
886 ivar
= IXGBE_READ_REG(hw
, IXGBE_IVAR(queue
>> 1));
887 ivar
&= ~(0xFF << index
);
888 ivar
|= (msix_vector
<< index
);
889 IXGBE_WRITE_REG(hw
, IXGBE_IVAR(queue
>> 1), ivar
);
897 static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter
*adapter
,
902 switch (adapter
->hw
.mac
.type
) {
903 case ixgbe_mac_82598EB
:
904 mask
= (IXGBE_EIMS_RTX_QUEUE
& qmask
);
905 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS
, mask
);
907 case ixgbe_mac_82599EB
:
910 case ixgbe_mac_X550EM_x
:
911 case ixgbe_mac_x550em_a
:
912 mask
= (qmask
& 0xFFFFFFFF);
913 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS_EX(0), mask
);
914 mask
= (qmask
>> 32);
915 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS_EX(1), mask
);
922 static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter
*adapter
)
924 struct ixgbe_hw
*hw
= &adapter
->hw
;
925 struct ixgbe_hw_stats
*hwstats
= &adapter
->stats
;
929 if ((hw
->fc
.current_mode
!= ixgbe_fc_full
) &&
930 (hw
->fc
.current_mode
!= ixgbe_fc_rx_pause
))
933 switch (hw
->mac
.type
) {
934 case ixgbe_mac_82598EB
:
935 data
= IXGBE_READ_REG(hw
, IXGBE_LXOFFRXC
);
938 data
= IXGBE_READ_REG(hw
, IXGBE_LXOFFRXCNT
);
940 hwstats
->lxoffrxc
+= data
;
942 /* refill credits (no tx hang) if we received xoff */
946 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
947 clear_bit(__IXGBE_HANG_CHECK_ARMED
,
948 &adapter
->tx_ring
[i
]->state
);
950 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++)
951 clear_bit(__IXGBE_HANG_CHECK_ARMED
,
952 &adapter
->xdp_ring
[i
]->state
);
955 static void ixgbe_update_xoff_received(struct ixgbe_adapter
*adapter
)
957 struct ixgbe_hw
*hw
= &adapter
->hw
;
958 struct ixgbe_hw_stats
*hwstats
= &adapter
->stats
;
962 bool pfc_en
= adapter
->dcb_cfg
.pfc_mode_enable
;
964 if (adapter
->ixgbe_ieee_pfc
)
965 pfc_en
|= !!(adapter
->ixgbe_ieee_pfc
->pfc_en
);
967 if (!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) || !pfc_en
) {
968 ixgbe_update_xoff_rx_lfc(adapter
);
972 /* update stats for each tc, only valid with PFC enabled */
973 for (i
= 0; i
< MAX_TX_PACKET_BUFFERS
; i
++) {
976 switch (hw
->mac
.type
) {
977 case ixgbe_mac_82598EB
:
978 pxoffrxc
= IXGBE_READ_REG(hw
, IXGBE_PXOFFRXC(i
));
981 pxoffrxc
= IXGBE_READ_REG(hw
, IXGBE_PXOFFRXCNT(i
));
983 hwstats
->pxoffrxc
[i
] += pxoffrxc
;
984 /* Get the TC for given UP */
985 tc
= netdev_get_prio_tc_map(adapter
->netdev
, i
);
986 xoff
[tc
] += pxoffrxc
;
989 /* disarm tx queues that have received xoff frames */
990 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
991 struct ixgbe_ring
*tx_ring
= adapter
->tx_ring
[i
];
993 tc
= tx_ring
->dcb_tc
;
995 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &tx_ring
->state
);
998 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++) {
999 struct ixgbe_ring
*xdp_ring
= adapter
->xdp_ring
[i
];
1001 tc
= xdp_ring
->dcb_tc
;
1003 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &xdp_ring
->state
);
1007 static u64
ixgbe_get_tx_completed(struct ixgbe_ring
*ring
)
1009 return ring
->stats
.packets
;
1012 static u64
ixgbe_get_tx_pending(struct ixgbe_ring
*ring
)
1014 unsigned int head
, tail
;
1016 head
= ring
->next_to_clean
;
1017 tail
= ring
->next_to_use
;
1019 return ((head
<= tail
) ? tail
: tail
+ ring
->count
) - head
;
1022 static inline bool ixgbe_check_tx_hang(struct ixgbe_ring
*tx_ring
)
1024 u32 tx_done
= ixgbe_get_tx_completed(tx_ring
);
1025 u32 tx_done_old
= tx_ring
->tx_stats
.tx_done_old
;
1026 u32 tx_pending
= ixgbe_get_tx_pending(tx_ring
);
1028 clear_check_for_tx_hang(tx_ring
);
1031 * Check for a hung queue, but be thorough. This verifies
1032 * that a transmit has been completed since the previous
1033 * check AND there is at least one packet pending. The
1034 * ARMED bit is set to indicate a potential hang. The
1035 * bit is cleared if a pause frame is received to remove
1036 * false hang detection due to PFC or 802.3x frames. By
1037 * requiring this to fail twice we avoid races with
1038 * pfc clearing the ARMED bit and conditions where we
1039 * run the check_tx_hang logic with a transmit completion
1040 * pending but without time to complete it yet.
1042 if (tx_done_old
== tx_done
&& tx_pending
)
1043 /* make sure it is true for two checks in a row */
1044 return test_and_set_bit(__IXGBE_HANG_CHECK_ARMED
,
1046 /* update completed stats and continue */
1047 tx_ring
->tx_stats
.tx_done_old
= tx_done
;
1048 /* reset the countdown */
1049 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &tx_ring
->state
);
1055 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
1056 * @adapter: driver private struct
1058 static void ixgbe_tx_timeout_reset(struct ixgbe_adapter
*adapter
)
1061 /* Do the reset outside of interrupt context */
1062 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
1063 set_bit(__IXGBE_RESET_REQUESTED
, &adapter
->state
);
1064 e_warn(drv
, "initiating reset due to tx timeout\n");
1065 ixgbe_service_event_schedule(adapter
);
1070 * ixgbe_tx_maxrate - callback to set the maximum per-queue bitrate
1071 * @netdev: network interface device structure
1072 * @queue_index: Tx queue to set
1073 * @maxrate: desired maximum transmit bitrate
1075 static int ixgbe_tx_maxrate(struct net_device
*netdev
,
1076 int queue_index
, u32 maxrate
)
1078 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1079 struct ixgbe_hw
*hw
= &adapter
->hw
;
1080 u32 bcnrc_val
= ixgbe_link_mbps(adapter
);
1085 /* Calculate the rate factor values to set */
1086 bcnrc_val
<<= IXGBE_RTTBCNRC_RF_INT_SHIFT
;
1087 bcnrc_val
/= maxrate
;
1089 /* clear everything but the rate factor */
1090 bcnrc_val
&= IXGBE_RTTBCNRC_RF_INT_MASK
|
1091 IXGBE_RTTBCNRC_RF_DEC_MASK
;
1093 /* enable the rate scheduler */
1094 bcnrc_val
|= IXGBE_RTTBCNRC_RS_ENA
;
1096 IXGBE_WRITE_REG(hw
, IXGBE_RTTDQSEL
, queue_index
);
1097 IXGBE_WRITE_REG(hw
, IXGBE_RTTBCNRC
, bcnrc_val
);
1103 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
1104 * @q_vector: structure containing interrupt and ring information
1105 * @tx_ring: tx ring to clean
1106 * @napi_budget: Used to determine if we are in netpoll
1108 static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector
*q_vector
,
1109 struct ixgbe_ring
*tx_ring
, int napi_budget
)
1111 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
1112 struct ixgbe_tx_buffer
*tx_buffer
;
1113 union ixgbe_adv_tx_desc
*tx_desc
;
1114 unsigned int total_bytes
= 0, total_packets
= 0, total_ipsec
= 0;
1115 unsigned int budget
= q_vector
->tx
.work_limit
;
1116 unsigned int i
= tx_ring
->next_to_clean
;
1118 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
1121 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
1122 tx_desc
= IXGBE_TX_DESC(tx_ring
, i
);
1123 i
-= tx_ring
->count
;
1126 union ixgbe_adv_tx_desc
*eop_desc
= tx_buffer
->next_to_watch
;
1128 /* if next_to_watch is not set then there is no work pending */
1132 /* prevent any other reads prior to eop_desc */
1135 /* if DD is not set pending work has not been completed */
1136 if (!(eop_desc
->wb
.status
& cpu_to_le32(IXGBE_TXD_STAT_DD
)))
1139 /* clear next_to_watch to prevent false hangs */
1140 tx_buffer
->next_to_watch
= NULL
;
1142 /* update the statistics for this packet */
1143 total_bytes
+= tx_buffer
->bytecount
;
1144 total_packets
+= tx_buffer
->gso_segs
;
1145 if (tx_buffer
->tx_flags
& IXGBE_TX_FLAGS_IPSEC
)
1149 if (ring_is_xdp(tx_ring
))
1150 xdp_return_frame(tx_buffer
->xdpf
);
1152 napi_consume_skb(tx_buffer
->skb
, napi_budget
);
1154 /* unmap skb header data */
1155 dma_unmap_single(tx_ring
->dev
,
1156 dma_unmap_addr(tx_buffer
, dma
),
1157 dma_unmap_len(tx_buffer
, len
),
1160 /* clear tx_buffer data */
1161 dma_unmap_len_set(tx_buffer
, len
, 0);
1163 /* unmap remaining buffers */
1164 while (tx_desc
!= eop_desc
) {
1169 i
-= tx_ring
->count
;
1170 tx_buffer
= tx_ring
->tx_buffer_info
;
1171 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
1174 /* unmap any remaining paged data */
1175 if (dma_unmap_len(tx_buffer
, len
)) {
1176 dma_unmap_page(tx_ring
->dev
,
1177 dma_unmap_addr(tx_buffer
, dma
),
1178 dma_unmap_len(tx_buffer
, len
),
1180 dma_unmap_len_set(tx_buffer
, len
, 0);
1184 /* move us one more past the eop_desc for start of next pkt */
1189 i
-= tx_ring
->count
;
1190 tx_buffer
= tx_ring
->tx_buffer_info
;
1191 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
1194 /* issue prefetch for next Tx descriptor */
1197 /* update budget accounting */
1199 } while (likely(budget
));
1201 i
+= tx_ring
->count
;
1202 tx_ring
->next_to_clean
= i
;
1203 u64_stats_update_begin(&tx_ring
->syncp
);
1204 tx_ring
->stats
.bytes
+= total_bytes
;
1205 tx_ring
->stats
.packets
+= total_packets
;
1206 u64_stats_update_end(&tx_ring
->syncp
);
1207 q_vector
->tx
.total_bytes
+= total_bytes
;
1208 q_vector
->tx
.total_packets
+= total_packets
;
1209 adapter
->tx_ipsec
+= total_ipsec
;
1211 if (check_for_tx_hang(tx_ring
) && ixgbe_check_tx_hang(tx_ring
)) {
1212 /* schedule immediate reset if we believe we hung */
1213 struct ixgbe_hw
*hw
= &adapter
->hw
;
1214 e_err(drv
, "Detected Tx Unit Hang %s\n"
1216 " TDH, TDT <%x>, <%x>\n"
1217 " next_to_use <%x>\n"
1218 " next_to_clean <%x>\n"
1219 "tx_buffer_info[next_to_clean]\n"
1220 " time_stamp <%lx>\n"
1222 ring_is_xdp(tx_ring
) ? "(XDP)" : "",
1223 tx_ring
->queue_index
,
1224 IXGBE_READ_REG(hw
, IXGBE_TDH(tx_ring
->reg_idx
)),
1225 IXGBE_READ_REG(hw
, IXGBE_TDT(tx_ring
->reg_idx
)),
1226 tx_ring
->next_to_use
, i
,
1227 tx_ring
->tx_buffer_info
[i
].time_stamp
, jiffies
);
1229 if (!ring_is_xdp(tx_ring
))
1230 netif_stop_subqueue(tx_ring
->netdev
,
1231 tx_ring
->queue_index
);
1234 "tx hang %d detected on queue %d, resetting adapter\n",
1235 adapter
->tx_timeout_count
+ 1, tx_ring
->queue_index
);
1237 /* schedule immediate reset if we believe we hung */
1238 ixgbe_tx_timeout_reset(adapter
);
1240 /* the adapter is about to reset, no point in enabling stuff */
1244 if (ring_is_xdp(tx_ring
))
1247 netdev_tx_completed_queue(txring_txq(tx_ring
),
1248 total_packets
, total_bytes
);
1250 #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
1251 if (unlikely(total_packets
&& netif_carrier_ok(tx_ring
->netdev
) &&
1252 (ixgbe_desc_unused(tx_ring
) >= TX_WAKE_THRESHOLD
))) {
1253 /* Make sure that anybody stopping the queue after this
1254 * sees the new next_to_clean.
1257 if (__netif_subqueue_stopped(tx_ring
->netdev
,
1258 tx_ring
->queue_index
)
1259 && !test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
1260 netif_wake_subqueue(tx_ring
->netdev
,
1261 tx_ring
->queue_index
);
1262 ++tx_ring
->tx_stats
.restart_queue
;
1269 #ifdef CONFIG_IXGBE_DCA
1270 static void ixgbe_update_tx_dca(struct ixgbe_adapter
*adapter
,
1271 struct ixgbe_ring
*tx_ring
,
1274 struct ixgbe_hw
*hw
= &adapter
->hw
;
1278 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
1279 txctrl
= dca3_get_tag(tx_ring
->dev
, cpu
);
1281 switch (hw
->mac
.type
) {
1282 case ixgbe_mac_82598EB
:
1283 reg_offset
= IXGBE_DCA_TXCTRL(tx_ring
->reg_idx
);
1285 case ixgbe_mac_82599EB
:
1286 case ixgbe_mac_X540
:
1287 reg_offset
= IXGBE_DCA_TXCTRL_82599(tx_ring
->reg_idx
);
1288 txctrl
<<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599
;
1291 /* for unknown hardware do not write register */
1296 * We can enable relaxed ordering for reads, but not writes when
1297 * DCA is enabled. This is due to a known issue in some chipsets
1298 * which will cause the DCA tag to be cleared.
1300 txctrl
|= IXGBE_DCA_TXCTRL_DESC_RRO_EN
|
1301 IXGBE_DCA_TXCTRL_DATA_RRO_EN
|
1302 IXGBE_DCA_TXCTRL_DESC_DCA_EN
;
1304 IXGBE_WRITE_REG(hw
, reg_offset
, txctrl
);
1307 static void ixgbe_update_rx_dca(struct ixgbe_adapter
*adapter
,
1308 struct ixgbe_ring
*rx_ring
,
1311 struct ixgbe_hw
*hw
= &adapter
->hw
;
1313 u8 reg_idx
= rx_ring
->reg_idx
;
1315 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
1316 rxctrl
= dca3_get_tag(rx_ring
->dev
, cpu
);
1318 switch (hw
->mac
.type
) {
1319 case ixgbe_mac_82599EB
:
1320 case ixgbe_mac_X540
:
1321 rxctrl
<<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599
;
1328 * We can enable relaxed ordering for reads, but not writes when
1329 * DCA is enabled. This is due to a known issue in some chipsets
1330 * which will cause the DCA tag to be cleared.
1332 rxctrl
|= IXGBE_DCA_RXCTRL_DESC_RRO_EN
|
1333 IXGBE_DCA_RXCTRL_DATA_DCA_EN
|
1334 IXGBE_DCA_RXCTRL_DESC_DCA_EN
;
1336 IXGBE_WRITE_REG(hw
, IXGBE_DCA_RXCTRL(reg_idx
), rxctrl
);
1339 static void ixgbe_update_dca(struct ixgbe_q_vector
*q_vector
)
1341 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
1342 struct ixgbe_ring
*ring
;
1343 int cpu
= get_cpu();
1345 if (q_vector
->cpu
== cpu
)
1348 ixgbe_for_each_ring(ring
, q_vector
->tx
)
1349 ixgbe_update_tx_dca(adapter
, ring
, cpu
);
1351 ixgbe_for_each_ring(ring
, q_vector
->rx
)
1352 ixgbe_update_rx_dca(adapter
, ring
, cpu
);
1354 q_vector
->cpu
= cpu
;
1359 static void ixgbe_setup_dca(struct ixgbe_adapter
*adapter
)
1363 /* always use CB2 mode, difference is masked in the CB driver */
1364 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
1365 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
,
1366 IXGBE_DCA_CTRL_DCA_MODE_CB2
);
1368 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
,
1369 IXGBE_DCA_CTRL_DCA_DISABLE
);
1371 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
1372 adapter
->q_vector
[i
]->cpu
= -1;
1373 ixgbe_update_dca(adapter
->q_vector
[i
]);
1377 static int __ixgbe_notify_dca(struct device
*dev
, void *data
)
1379 struct ixgbe_adapter
*adapter
= dev_get_drvdata(dev
);
1380 unsigned long event
= *(unsigned long *)data
;
1382 if (!(adapter
->flags
& IXGBE_FLAG_DCA_CAPABLE
))
1386 case DCA_PROVIDER_ADD
:
1387 /* if we're already enabled, don't do it again */
1388 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
1390 if (dca_add_requester(dev
) == 0) {
1391 adapter
->flags
|= IXGBE_FLAG_DCA_ENABLED
;
1392 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
,
1393 IXGBE_DCA_CTRL_DCA_MODE_CB2
);
1396 /* fall through - DCA is disabled. */
1397 case DCA_PROVIDER_REMOVE
:
1398 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
) {
1399 dca_remove_requester(dev
);
1400 adapter
->flags
&= ~IXGBE_FLAG_DCA_ENABLED
;
1401 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
,
1402 IXGBE_DCA_CTRL_DCA_DISABLE
);
1410 #endif /* CONFIG_IXGBE_DCA */
1412 #define IXGBE_RSS_L4_TYPES_MASK \
1413 ((1ul << IXGBE_RXDADV_RSSTYPE_IPV4_TCP) | \
1414 (1ul << IXGBE_RXDADV_RSSTYPE_IPV4_UDP) | \
1415 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_TCP) | \
1416 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_UDP))
1418 static inline void ixgbe_rx_hash(struct ixgbe_ring
*ring
,
1419 union ixgbe_adv_rx_desc
*rx_desc
,
1420 struct sk_buff
*skb
)
1424 if (!(ring
->netdev
->features
& NETIF_F_RXHASH
))
1427 rss_type
= le16_to_cpu(rx_desc
->wb
.lower
.lo_dword
.hs_rss
.pkt_info
) &
1428 IXGBE_RXDADV_RSSTYPE_MASK
;
1433 skb_set_hash(skb
, le32_to_cpu(rx_desc
->wb
.lower
.hi_dword
.rss
),
1434 (IXGBE_RSS_L4_TYPES_MASK
& (1ul << rss_type
)) ?
1435 PKT_HASH_TYPE_L4
: PKT_HASH_TYPE_L3
);
1440 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1441 * @ring: structure containing ring specific data
1442 * @rx_desc: advanced rx descriptor
1444 * Returns : true if it is FCoE pkt
1446 static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring
*ring
,
1447 union ixgbe_adv_rx_desc
*rx_desc
)
1449 __le16 pkt_info
= rx_desc
->wb
.lower
.lo_dword
.hs_rss
.pkt_info
;
1451 return test_bit(__IXGBE_RX_FCOE
, &ring
->state
) &&
1452 ((pkt_info
& cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK
)) ==
1453 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE
<<
1454 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT
)));
1457 #endif /* IXGBE_FCOE */
1459 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1460 * @ring: structure containing ring specific data
1461 * @rx_desc: current Rx descriptor being processed
1462 * @skb: skb currently being received and modified
1464 static inline void ixgbe_rx_checksum(struct ixgbe_ring
*ring
,
1465 union ixgbe_adv_rx_desc
*rx_desc
,
1466 struct sk_buff
*skb
)
1468 __le16 pkt_info
= rx_desc
->wb
.lower
.lo_dword
.hs_rss
.pkt_info
;
1469 bool encap_pkt
= false;
1471 skb_checksum_none_assert(skb
);
1473 /* Rx csum disabled */
1474 if (!(ring
->netdev
->features
& NETIF_F_RXCSUM
))
1477 /* check for VXLAN and Geneve packets */
1478 if (pkt_info
& cpu_to_le16(IXGBE_RXDADV_PKTTYPE_VXLAN
)) {
1480 skb
->encapsulation
= 1;
1483 /* if IP and error */
1484 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_IPCS
) &&
1485 ixgbe_test_staterr(rx_desc
, IXGBE_RXDADV_ERR_IPE
)) {
1486 ring
->rx_stats
.csum_err
++;
1490 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_L4CS
))
1493 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXDADV_ERR_TCPE
)) {
1495 * 82599 errata, UDP frames with a 0 checksum can be marked as
1498 if ((pkt_info
& cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP
)) &&
1499 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR
, &ring
->state
))
1502 ring
->rx_stats
.csum_err
++;
1506 /* It must be a TCP or UDP packet with a valid checksum */
1507 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1509 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_OUTERIPCS
))
1512 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXDADV_ERR_OUTERIPER
)) {
1513 skb
->ip_summed
= CHECKSUM_NONE
;
1516 /* If we checked the outer header let the stack know */
1517 skb
->csum_level
= 1;
1521 static inline unsigned int ixgbe_rx_offset(struct ixgbe_ring
*rx_ring
)
1523 return ring_uses_build_skb(rx_ring
) ? IXGBE_SKB_PAD
: 0;
1526 static bool ixgbe_alloc_mapped_page(struct ixgbe_ring
*rx_ring
,
1527 struct ixgbe_rx_buffer
*bi
)
1529 struct page
*page
= bi
->page
;
1532 /* since we are recycling buffers we should seldom need to alloc */
1536 /* alloc new page for storage */
1537 page
= dev_alloc_pages(ixgbe_rx_pg_order(rx_ring
));
1538 if (unlikely(!page
)) {
1539 rx_ring
->rx_stats
.alloc_rx_page_failed
++;
1543 /* map page for use */
1544 dma
= dma_map_page_attrs(rx_ring
->dev
, page
, 0,
1545 ixgbe_rx_pg_size(rx_ring
),
1550 * if mapping failed free memory back to system since
1551 * there isn't much point in holding memory we can't use
1553 if (dma_mapping_error(rx_ring
->dev
, dma
)) {
1554 __free_pages(page
, ixgbe_rx_pg_order(rx_ring
));
1556 rx_ring
->rx_stats
.alloc_rx_page_failed
++;
1562 bi
->page_offset
= ixgbe_rx_offset(rx_ring
);
1563 page_ref_add(page
, USHRT_MAX
- 1);
1564 bi
->pagecnt_bias
= USHRT_MAX
;
1565 rx_ring
->rx_stats
.alloc_rx_page
++;
1571 * ixgbe_alloc_rx_buffers - Replace used receive buffers
1572 * @rx_ring: ring to place buffers on
1573 * @cleaned_count: number of buffers to replace
1575 void ixgbe_alloc_rx_buffers(struct ixgbe_ring
*rx_ring
, u16 cleaned_count
)
1577 union ixgbe_adv_rx_desc
*rx_desc
;
1578 struct ixgbe_rx_buffer
*bi
;
1579 u16 i
= rx_ring
->next_to_use
;
1586 rx_desc
= IXGBE_RX_DESC(rx_ring
, i
);
1587 bi
= &rx_ring
->rx_buffer_info
[i
];
1588 i
-= rx_ring
->count
;
1590 bufsz
= ixgbe_rx_bufsz(rx_ring
);
1593 if (!ixgbe_alloc_mapped_page(rx_ring
, bi
))
1596 /* sync the buffer for use by the device */
1597 dma_sync_single_range_for_device(rx_ring
->dev
, bi
->dma
,
1598 bi
->page_offset
, bufsz
,
1602 * Refresh the desc even if buffer_addrs didn't change
1603 * because each write-back erases this info.
1605 rx_desc
->read
.pkt_addr
= cpu_to_le64(bi
->dma
+ bi
->page_offset
);
1611 rx_desc
= IXGBE_RX_DESC(rx_ring
, 0);
1612 bi
= rx_ring
->rx_buffer_info
;
1613 i
-= rx_ring
->count
;
1616 /* clear the length for the next_to_use descriptor */
1617 rx_desc
->wb
.upper
.length
= 0;
1620 } while (cleaned_count
);
1622 i
+= rx_ring
->count
;
1624 if (rx_ring
->next_to_use
!= i
) {
1625 rx_ring
->next_to_use
= i
;
1627 /* update next to alloc since we have filled the ring */
1628 rx_ring
->next_to_alloc
= i
;
1630 /* Force memory writes to complete before letting h/w
1631 * know there are new descriptors to fetch. (Only
1632 * applicable for weak-ordered memory model archs,
1636 writel(i
, rx_ring
->tail
);
1640 static void ixgbe_set_rsc_gso_size(struct ixgbe_ring
*ring
,
1641 struct sk_buff
*skb
)
1643 u16 hdr_len
= skb_headlen(skb
);
1645 /* set gso_size to avoid messing up TCP MSS */
1646 skb_shinfo(skb
)->gso_size
= DIV_ROUND_UP((skb
->len
- hdr_len
),
1647 IXGBE_CB(skb
)->append_cnt
);
1648 skb_shinfo(skb
)->gso_type
= SKB_GSO_TCPV4
;
1651 static void ixgbe_update_rsc_stats(struct ixgbe_ring
*rx_ring
,
1652 struct sk_buff
*skb
)
1654 /* if append_cnt is 0 then frame is not RSC */
1655 if (!IXGBE_CB(skb
)->append_cnt
)
1658 rx_ring
->rx_stats
.rsc_count
+= IXGBE_CB(skb
)->append_cnt
;
1659 rx_ring
->rx_stats
.rsc_flush
++;
1661 ixgbe_set_rsc_gso_size(rx_ring
, skb
);
1663 /* gso_size is computed using append_cnt so always clear it last */
1664 IXGBE_CB(skb
)->append_cnt
= 0;
1668 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1669 * @rx_ring: rx descriptor ring packet is being transacted on
1670 * @rx_desc: pointer to the EOP Rx descriptor
1671 * @skb: pointer to current skb being populated
1673 * This function checks the ring, descriptor, and packet information in
1674 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1675 * other fields within the skb.
1677 static void ixgbe_process_skb_fields(struct ixgbe_ring
*rx_ring
,
1678 union ixgbe_adv_rx_desc
*rx_desc
,
1679 struct sk_buff
*skb
)
1681 struct net_device
*dev
= rx_ring
->netdev
;
1682 u32 flags
= rx_ring
->q_vector
->adapter
->flags
;
1684 ixgbe_update_rsc_stats(rx_ring
, skb
);
1686 ixgbe_rx_hash(rx_ring
, rx_desc
, skb
);
1688 ixgbe_rx_checksum(rx_ring
, rx_desc
, skb
);
1690 if (unlikely(flags
& IXGBE_FLAG_RX_HWTSTAMP_ENABLED
))
1691 ixgbe_ptp_rx_hwtstamp(rx_ring
, rx_desc
, skb
);
1693 if ((dev
->features
& NETIF_F_HW_VLAN_CTAG_RX
) &&
1694 ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_VP
)) {
1695 u16 vid
= le16_to_cpu(rx_desc
->wb
.upper
.vlan
);
1696 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
), vid
);
1699 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXDADV_STAT_SECP
))
1700 ixgbe_ipsec_rx(rx_ring
, rx_desc
, skb
);
1702 /* record Rx queue, or update MACVLAN statistics */
1703 if (netif_is_ixgbe(dev
))
1704 skb_record_rx_queue(skb
, rx_ring
->queue_index
);
1706 macvlan_count_rx(netdev_priv(dev
), skb
->len
+ ETH_HLEN
, true,
1709 skb
->protocol
= eth_type_trans(skb
, dev
);
1712 static void ixgbe_rx_skb(struct ixgbe_q_vector
*q_vector
,
1713 struct sk_buff
*skb
)
1715 napi_gro_receive(&q_vector
->napi
, skb
);
1719 * ixgbe_is_non_eop - process handling of non-EOP buffers
1720 * @rx_ring: Rx ring being processed
1721 * @rx_desc: Rx descriptor for current buffer
1722 * @skb: Current socket buffer containing buffer in progress
1724 * This function updates next to clean. If the buffer is an EOP buffer
1725 * this function exits returning false, otherwise it will place the
1726 * sk_buff in the next buffer to be chained and return true indicating
1727 * that this is in fact a non-EOP buffer.
1729 static bool ixgbe_is_non_eop(struct ixgbe_ring
*rx_ring
,
1730 union ixgbe_adv_rx_desc
*rx_desc
,
1731 struct sk_buff
*skb
)
1733 u32 ntc
= rx_ring
->next_to_clean
+ 1;
1735 /* fetch, update, and store next to clean */
1736 ntc
= (ntc
< rx_ring
->count
) ? ntc
: 0;
1737 rx_ring
->next_to_clean
= ntc
;
1739 prefetch(IXGBE_RX_DESC(rx_ring
, ntc
));
1741 /* update RSC append count if present */
1742 if (ring_is_rsc_enabled(rx_ring
)) {
1743 __le32 rsc_enabled
= rx_desc
->wb
.lower
.lo_dword
.data
&
1744 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK
);
1746 if (unlikely(rsc_enabled
)) {
1747 u32 rsc_cnt
= le32_to_cpu(rsc_enabled
);
1749 rsc_cnt
>>= IXGBE_RXDADV_RSCCNT_SHIFT
;
1750 IXGBE_CB(skb
)->append_cnt
+= rsc_cnt
- 1;
1752 /* update ntc based on RSC value */
1753 ntc
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
1754 ntc
&= IXGBE_RXDADV_NEXTP_MASK
;
1755 ntc
>>= IXGBE_RXDADV_NEXTP_SHIFT
;
1759 /* if we are the last buffer then there is nothing else to do */
1760 if (likely(ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
)))
1763 /* place skb in next buffer to be received */
1764 rx_ring
->rx_buffer_info
[ntc
].skb
= skb
;
1765 rx_ring
->rx_stats
.non_eop_descs
++;
1771 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1772 * @rx_ring: rx descriptor ring packet is being transacted on
1773 * @skb: pointer to current skb being adjusted
1775 * This function is an ixgbe specific version of __pskb_pull_tail. The
1776 * main difference between this version and the original function is that
1777 * this function can make several assumptions about the state of things
1778 * that allow for significant optimizations versus the standard function.
1779 * As a result we can do things like drop a frag and maintain an accurate
1780 * truesize for the skb.
1782 static void ixgbe_pull_tail(struct ixgbe_ring
*rx_ring
,
1783 struct sk_buff
*skb
)
1785 struct skb_frag_struct
*frag
= &skb_shinfo(skb
)->frags
[0];
1787 unsigned int pull_len
;
1790 * it is valid to use page_address instead of kmap since we are
1791 * working with pages allocated out of the lomem pool per
1792 * alloc_page(GFP_ATOMIC)
1794 va
= skb_frag_address(frag
);
1797 * we need the header to contain the greater of either ETH_HLEN or
1798 * 60 bytes if the skb->len is less than 60 for skb_pad.
1800 pull_len
= eth_get_headlen(va
, IXGBE_RX_HDR_SIZE
);
1802 /* align pull length to size of long to optimize memcpy performance */
1803 skb_copy_to_linear_data(skb
, va
, ALIGN(pull_len
, sizeof(long)));
1805 /* update all of the pointers */
1806 skb_frag_size_sub(frag
, pull_len
);
1807 frag
->page_offset
+= pull_len
;
1808 skb
->data_len
-= pull_len
;
1809 skb
->tail
+= pull_len
;
1813 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1814 * @rx_ring: rx descriptor ring packet is being transacted on
1815 * @skb: pointer to current skb being updated
1817 * This function provides a basic DMA sync up for the first fragment of an
1818 * skb. The reason for doing this is that the first fragment cannot be
1819 * unmapped until we have reached the end of packet descriptor for a buffer
1822 static void ixgbe_dma_sync_frag(struct ixgbe_ring
*rx_ring
,
1823 struct sk_buff
*skb
)
1825 if (ring_uses_build_skb(rx_ring
)) {
1826 unsigned long offset
= (unsigned long)(skb
->data
) & ~PAGE_MASK
;
1828 dma_sync_single_range_for_cpu(rx_ring
->dev
,
1834 struct skb_frag_struct
*frag
= &skb_shinfo(skb
)->frags
[0];
1836 dma_sync_single_range_for_cpu(rx_ring
->dev
,
1839 skb_frag_size(frag
),
1843 /* If the page was released, just unmap it. */
1844 if (unlikely(IXGBE_CB(skb
)->page_released
)) {
1845 dma_unmap_page_attrs(rx_ring
->dev
, IXGBE_CB(skb
)->dma
,
1846 ixgbe_rx_pg_size(rx_ring
),
1853 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1854 * @rx_ring: rx descriptor ring packet is being transacted on
1855 * @rx_desc: pointer to the EOP Rx descriptor
1856 * @skb: pointer to current skb being fixed
1858 * Check if the skb is valid in the XDP case it will be an error pointer.
1859 * Return true in this case to abort processing and advance to next
1862 * Check for corrupted packet headers caused by senders on the local L2
1863 * embedded NIC switch not setting up their Tx Descriptors right. These
1864 * should be very rare.
1866 * Also address the case where we are pulling data in on pages only
1867 * and as such no data is present in the skb header.
1869 * In addition if skb is not at least 60 bytes we need to pad it so that
1870 * it is large enough to qualify as a valid Ethernet frame.
1872 * Returns true if an error was encountered and skb was freed.
1874 static bool ixgbe_cleanup_headers(struct ixgbe_ring
*rx_ring
,
1875 union ixgbe_adv_rx_desc
*rx_desc
,
1876 struct sk_buff
*skb
)
1878 struct net_device
*netdev
= rx_ring
->netdev
;
1880 /* XDP packets use error pointer so abort at this point */
1884 /* Verify netdev is present, and that packet does not have any
1885 * errors that would be unacceptable to the netdev.
1888 (unlikely(ixgbe_test_staterr(rx_desc
,
1889 IXGBE_RXDADV_ERR_FRAME_ERR_MASK
) &&
1890 !(netdev
->features
& NETIF_F_RXALL
)))) {
1891 dev_kfree_skb_any(skb
);
1895 /* place header in linear portion of buffer */
1896 if (!skb_headlen(skb
))
1897 ixgbe_pull_tail(rx_ring
, skb
);
1900 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1901 if (ixgbe_rx_is_fcoe(rx_ring
, rx_desc
))
1905 /* if eth_skb_pad returns an error the skb was freed */
1906 if (eth_skb_pad(skb
))
1913 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1914 * @rx_ring: rx descriptor ring to store buffers on
1915 * @old_buff: donor buffer to have page reused
1917 * Synchronizes page for reuse by the adapter
1919 static void ixgbe_reuse_rx_page(struct ixgbe_ring
*rx_ring
,
1920 struct ixgbe_rx_buffer
*old_buff
)
1922 struct ixgbe_rx_buffer
*new_buff
;
1923 u16 nta
= rx_ring
->next_to_alloc
;
1925 new_buff
= &rx_ring
->rx_buffer_info
[nta
];
1927 /* update, and store next to alloc */
1929 rx_ring
->next_to_alloc
= (nta
< rx_ring
->count
) ? nta
: 0;
1931 /* Transfer page from old buffer to new buffer.
1932 * Move each member individually to avoid possible store
1933 * forwarding stalls and unnecessary copy of skb.
1935 new_buff
->dma
= old_buff
->dma
;
1936 new_buff
->page
= old_buff
->page
;
1937 new_buff
->page_offset
= old_buff
->page_offset
;
1938 new_buff
->pagecnt_bias
= old_buff
->pagecnt_bias
;
1941 static inline bool ixgbe_page_is_reserved(struct page
*page
)
1943 return (page_to_nid(page
) != numa_mem_id()) || page_is_pfmemalloc(page
);
1946 static bool ixgbe_can_reuse_rx_page(struct ixgbe_rx_buffer
*rx_buffer
)
1948 unsigned int pagecnt_bias
= rx_buffer
->pagecnt_bias
;
1949 struct page
*page
= rx_buffer
->page
;
1951 /* avoid re-using remote pages */
1952 if (unlikely(ixgbe_page_is_reserved(page
)))
1955 #if (PAGE_SIZE < 8192)
1956 /* if we are only owner of page we can reuse it */
1957 if (unlikely((page_ref_count(page
) - pagecnt_bias
) > 1))
1960 /* The last offset is a bit aggressive in that we assume the
1961 * worst case of FCoE being enabled and using a 3K buffer.
1962 * However this should have minimal impact as the 1K extra is
1963 * still less than one buffer in size.
1965 #define IXGBE_LAST_OFFSET \
1966 (SKB_WITH_OVERHEAD(PAGE_SIZE) - IXGBE_RXBUFFER_3K)
1967 if (rx_buffer
->page_offset
> IXGBE_LAST_OFFSET
)
1971 /* If we have drained the page fragment pool we need to update
1972 * the pagecnt_bias and page count so that we fully restock the
1973 * number of references the driver holds.
1975 if (unlikely(pagecnt_bias
== 1)) {
1976 page_ref_add(page
, USHRT_MAX
- 1);
1977 rx_buffer
->pagecnt_bias
= USHRT_MAX
;
1984 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1985 * @rx_ring: rx descriptor ring to transact packets on
1986 * @rx_buffer: buffer containing page to add
1987 * @skb: sk_buff to place the data into
1988 * @size: size of data in rx_buffer
1990 * This function will add the data contained in rx_buffer->page to the skb.
1991 * This is done either through a direct copy if the data in the buffer is
1992 * less than the skb header size, otherwise it will just attach the page as
1993 * a frag to the skb.
1995 * The function will then update the page offset if necessary and return
1996 * true if the buffer can be reused by the adapter.
1998 static void ixgbe_add_rx_frag(struct ixgbe_ring
*rx_ring
,
1999 struct ixgbe_rx_buffer
*rx_buffer
,
2000 struct sk_buff
*skb
,
2003 #if (PAGE_SIZE < 8192)
2004 unsigned int truesize
= ixgbe_rx_pg_size(rx_ring
) / 2;
2006 unsigned int truesize
= ring_uses_build_skb(rx_ring
) ?
2007 SKB_DATA_ALIGN(IXGBE_SKB_PAD
+ size
) :
2008 SKB_DATA_ALIGN(size
);
2010 skb_add_rx_frag(skb
, skb_shinfo(skb
)->nr_frags
, rx_buffer
->page
,
2011 rx_buffer
->page_offset
, size
, truesize
);
2012 #if (PAGE_SIZE < 8192)
2013 rx_buffer
->page_offset
^= truesize
;
2015 rx_buffer
->page_offset
+= truesize
;
2019 static struct ixgbe_rx_buffer
*ixgbe_get_rx_buffer(struct ixgbe_ring
*rx_ring
,
2020 union ixgbe_adv_rx_desc
*rx_desc
,
2021 struct sk_buff
**skb
,
2022 const unsigned int size
)
2024 struct ixgbe_rx_buffer
*rx_buffer
;
2026 rx_buffer
= &rx_ring
->rx_buffer_info
[rx_ring
->next_to_clean
];
2027 prefetchw(rx_buffer
->page
);
2028 *skb
= rx_buffer
->skb
;
2030 /* Delay unmapping of the first packet. It carries the header
2031 * information, HW may still access the header after the writeback.
2032 * Only unmap it when EOP is reached
2034 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
)) {
2039 ixgbe_dma_sync_frag(rx_ring
, *skb
);
2042 /* we are reusing so sync this buffer for CPU use */
2043 dma_sync_single_range_for_cpu(rx_ring
->dev
,
2045 rx_buffer
->page_offset
,
2049 rx_buffer
->pagecnt_bias
--;
2054 static void ixgbe_put_rx_buffer(struct ixgbe_ring
*rx_ring
,
2055 struct ixgbe_rx_buffer
*rx_buffer
,
2056 struct sk_buff
*skb
)
2058 if (ixgbe_can_reuse_rx_page(rx_buffer
)) {
2059 /* hand second half of page back to the ring */
2060 ixgbe_reuse_rx_page(rx_ring
, rx_buffer
);
2062 if (!IS_ERR(skb
) && IXGBE_CB(skb
)->dma
== rx_buffer
->dma
) {
2063 /* the page has been released from the ring */
2064 IXGBE_CB(skb
)->page_released
= true;
2066 /* we are not reusing the buffer so unmap it */
2067 dma_unmap_page_attrs(rx_ring
->dev
, rx_buffer
->dma
,
2068 ixgbe_rx_pg_size(rx_ring
),
2072 __page_frag_cache_drain(rx_buffer
->page
,
2073 rx_buffer
->pagecnt_bias
);
2076 /* clear contents of rx_buffer */
2077 rx_buffer
->page
= NULL
;
2078 rx_buffer
->skb
= NULL
;
2081 static struct sk_buff
*ixgbe_construct_skb(struct ixgbe_ring
*rx_ring
,
2082 struct ixgbe_rx_buffer
*rx_buffer
,
2083 struct xdp_buff
*xdp
,
2084 union ixgbe_adv_rx_desc
*rx_desc
)
2086 unsigned int size
= xdp
->data_end
- xdp
->data
;
2087 #if (PAGE_SIZE < 8192)
2088 unsigned int truesize
= ixgbe_rx_pg_size(rx_ring
) / 2;
2090 unsigned int truesize
= SKB_DATA_ALIGN(xdp
->data_end
-
2091 xdp
->data_hard_start
);
2093 struct sk_buff
*skb
;
2095 /* prefetch first cache line of first page */
2096 prefetch(xdp
->data
);
2097 #if L1_CACHE_BYTES < 128
2098 prefetch(xdp
->data
+ L1_CACHE_BYTES
);
2100 /* Note, we get here by enabling legacy-rx via:
2102 * ethtool --set-priv-flags <dev> legacy-rx on
2104 * In this mode, we currently get 0 extra XDP headroom as
2105 * opposed to having legacy-rx off, where we process XDP
2106 * packets going to stack via ixgbe_build_skb(). The latter
2107 * provides us currently with 192 bytes of headroom.
2109 * For ixgbe_construct_skb() mode it means that the
2110 * xdp->data_meta will always point to xdp->data, since
2111 * the helper cannot expand the head. Should this ever
2112 * change in future for legacy-rx mode on, then lets also
2113 * add xdp->data_meta handling here.
2116 /* allocate a skb to store the frags */
2117 skb
= napi_alloc_skb(&rx_ring
->q_vector
->napi
, IXGBE_RX_HDR_SIZE
);
2121 if (size
> IXGBE_RX_HDR_SIZE
) {
2122 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
))
2123 IXGBE_CB(skb
)->dma
= rx_buffer
->dma
;
2125 skb_add_rx_frag(skb
, 0, rx_buffer
->page
,
2126 xdp
->data
- page_address(rx_buffer
->page
),
2128 #if (PAGE_SIZE < 8192)
2129 rx_buffer
->page_offset
^= truesize
;
2131 rx_buffer
->page_offset
+= truesize
;
2134 memcpy(__skb_put(skb
, size
),
2135 xdp
->data
, ALIGN(size
, sizeof(long)));
2136 rx_buffer
->pagecnt_bias
++;
2142 static struct sk_buff
*ixgbe_build_skb(struct ixgbe_ring
*rx_ring
,
2143 struct ixgbe_rx_buffer
*rx_buffer
,
2144 struct xdp_buff
*xdp
,
2145 union ixgbe_adv_rx_desc
*rx_desc
)
2147 unsigned int metasize
= xdp
->data
- xdp
->data_meta
;
2148 #if (PAGE_SIZE < 8192)
2149 unsigned int truesize
= ixgbe_rx_pg_size(rx_ring
) / 2;
2151 unsigned int truesize
= SKB_DATA_ALIGN(sizeof(struct skb_shared_info
)) +
2152 SKB_DATA_ALIGN(xdp
->data_end
-
2153 xdp
->data_hard_start
);
2155 struct sk_buff
*skb
;
2157 /* Prefetch first cache line of first page. If xdp->data_meta
2158 * is unused, this points extactly as xdp->data, otherwise we
2159 * likely have a consumer accessing first few bytes of meta
2160 * data, and then actual data.
2162 prefetch(xdp
->data_meta
);
2163 #if L1_CACHE_BYTES < 128
2164 prefetch(xdp
->data_meta
+ L1_CACHE_BYTES
);
2167 /* build an skb to around the page buffer */
2168 skb
= build_skb(xdp
->data_hard_start
, truesize
);
2172 /* update pointers within the skb to store the data */
2173 skb_reserve(skb
, xdp
->data
- xdp
->data_hard_start
);
2174 __skb_put(skb
, xdp
->data_end
- xdp
->data
);
2176 skb_metadata_set(skb
, metasize
);
2178 /* record DMA address if this is the start of a chain of buffers */
2179 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
))
2180 IXGBE_CB(skb
)->dma
= rx_buffer
->dma
;
2182 /* update buffer offset */
2183 #if (PAGE_SIZE < 8192)
2184 rx_buffer
->page_offset
^= truesize
;
2186 rx_buffer
->page_offset
+= truesize
;
2192 #define IXGBE_XDP_PASS 0
2193 #define IXGBE_XDP_CONSUMED BIT(0)
2194 #define IXGBE_XDP_TX BIT(1)
2195 #define IXGBE_XDP_REDIR BIT(2)
2197 static int ixgbe_xmit_xdp_ring(struct ixgbe_adapter
*adapter
,
2198 struct xdp_frame
*xdpf
);
2200 static struct sk_buff
*ixgbe_run_xdp(struct ixgbe_adapter
*adapter
,
2201 struct ixgbe_ring
*rx_ring
,
2202 struct xdp_buff
*xdp
)
2204 int err
, result
= IXGBE_XDP_PASS
;
2205 struct bpf_prog
*xdp_prog
;
2206 struct xdp_frame
*xdpf
;
2210 xdp_prog
= READ_ONCE(rx_ring
->xdp_prog
);
2215 prefetchw(xdp
->data_hard_start
); /* xdp_frame write */
2217 act
= bpf_prog_run_xdp(xdp_prog
, xdp
);
2222 xdpf
= convert_to_xdp_frame(xdp
);
2223 if (unlikely(!xdpf
)) {
2224 result
= IXGBE_XDP_CONSUMED
;
2227 result
= ixgbe_xmit_xdp_ring(adapter
, xdpf
);
2230 err
= xdp_do_redirect(adapter
->netdev
, xdp
, xdp_prog
);
2232 result
= IXGBE_XDP_REDIR
;
2234 result
= IXGBE_XDP_CONSUMED
;
2237 bpf_warn_invalid_xdp_action(act
);
2240 trace_xdp_exception(rx_ring
->netdev
, xdp_prog
, act
);
2241 /* fallthrough -- handle aborts by dropping packet */
2243 result
= IXGBE_XDP_CONSUMED
;
2248 return ERR_PTR(-result
);
2251 static void ixgbe_rx_buffer_flip(struct ixgbe_ring
*rx_ring
,
2252 struct ixgbe_rx_buffer
*rx_buffer
,
2255 #if (PAGE_SIZE < 8192)
2256 unsigned int truesize
= ixgbe_rx_pg_size(rx_ring
) / 2;
2258 rx_buffer
->page_offset
^= truesize
;
2260 unsigned int truesize
= ring_uses_build_skb(rx_ring
) ?
2261 SKB_DATA_ALIGN(IXGBE_SKB_PAD
+ size
) +
2262 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
)) :
2263 SKB_DATA_ALIGN(size
);
2265 rx_buffer
->page_offset
+= truesize
;
2270 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
2271 * @q_vector: structure containing interrupt and ring information
2272 * @rx_ring: rx descriptor ring to transact packets on
2273 * @budget: Total limit on number of packets to process
2275 * This function provides a "bounce buffer" approach to Rx interrupt
2276 * processing. The advantage to this is that on systems that have
2277 * expensive overhead for IOMMU access this provides a means of avoiding
2278 * it by maintaining the mapping of the page to the syste.
2280 * Returns amount of work completed
2282 static int ixgbe_clean_rx_irq(struct ixgbe_q_vector
*q_vector
,
2283 struct ixgbe_ring
*rx_ring
,
2286 unsigned int total_rx_bytes
= 0, total_rx_packets
= 0;
2287 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
2290 unsigned int mss
= 0;
2291 #endif /* IXGBE_FCOE */
2292 u16 cleaned_count
= ixgbe_desc_unused(rx_ring
);
2293 unsigned int xdp_xmit
= 0;
2294 struct xdp_buff xdp
;
2296 xdp
.rxq
= &rx_ring
->xdp_rxq
;
2298 while (likely(total_rx_packets
< budget
)) {
2299 union ixgbe_adv_rx_desc
*rx_desc
;
2300 struct ixgbe_rx_buffer
*rx_buffer
;
2301 struct sk_buff
*skb
;
2304 /* return some buffers to hardware, one at a time is too slow */
2305 if (cleaned_count
>= IXGBE_RX_BUFFER_WRITE
) {
2306 ixgbe_alloc_rx_buffers(rx_ring
, cleaned_count
);
2310 rx_desc
= IXGBE_RX_DESC(rx_ring
, rx_ring
->next_to_clean
);
2311 size
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
2315 /* This memory barrier is needed to keep us from reading
2316 * any other fields out of the rx_desc until we know the
2317 * descriptor has been written back
2321 rx_buffer
= ixgbe_get_rx_buffer(rx_ring
, rx_desc
, &skb
, size
);
2323 /* retrieve a buffer from the ring */
2325 xdp
.data
= page_address(rx_buffer
->page
) +
2326 rx_buffer
->page_offset
;
2327 xdp
.data_meta
= xdp
.data
;
2328 xdp
.data_hard_start
= xdp
.data
-
2329 ixgbe_rx_offset(rx_ring
);
2330 xdp
.data_end
= xdp
.data
+ size
;
2332 skb
= ixgbe_run_xdp(adapter
, rx_ring
, &xdp
);
2336 unsigned int xdp_res
= -PTR_ERR(skb
);
2338 if (xdp_res
& (IXGBE_XDP_TX
| IXGBE_XDP_REDIR
)) {
2339 xdp_xmit
|= xdp_res
;
2340 ixgbe_rx_buffer_flip(rx_ring
, rx_buffer
, size
);
2342 rx_buffer
->pagecnt_bias
++;
2345 total_rx_bytes
+= size
;
2347 ixgbe_add_rx_frag(rx_ring
, rx_buffer
, skb
, size
);
2348 } else if (ring_uses_build_skb(rx_ring
)) {
2349 skb
= ixgbe_build_skb(rx_ring
, rx_buffer
,
2352 skb
= ixgbe_construct_skb(rx_ring
, rx_buffer
,
2356 /* exit if we failed to retrieve a buffer */
2358 rx_ring
->rx_stats
.alloc_rx_buff_failed
++;
2359 rx_buffer
->pagecnt_bias
++;
2363 ixgbe_put_rx_buffer(rx_ring
, rx_buffer
, skb
);
2366 /* place incomplete frames back on ring for completion */
2367 if (ixgbe_is_non_eop(rx_ring
, rx_desc
, skb
))
2370 /* verify the packet layout is correct */
2371 if (ixgbe_cleanup_headers(rx_ring
, rx_desc
, skb
))
2374 /* probably a little skewed due to removing CRC */
2375 total_rx_bytes
+= skb
->len
;
2377 /* populate checksum, timestamp, VLAN, and protocol */
2378 ixgbe_process_skb_fields(rx_ring
, rx_desc
, skb
);
2381 /* if ddp, not passing to ULD unless for FCP_RSP or error */
2382 if (ixgbe_rx_is_fcoe(rx_ring
, rx_desc
)) {
2383 ddp_bytes
= ixgbe_fcoe_ddp(adapter
, rx_desc
, skb
);
2384 /* include DDPed FCoE data */
2385 if (ddp_bytes
> 0) {
2387 mss
= rx_ring
->netdev
->mtu
-
2388 sizeof(struct fcoe_hdr
) -
2389 sizeof(struct fc_frame_header
) -
2390 sizeof(struct fcoe_crc_eof
);
2394 total_rx_bytes
+= ddp_bytes
;
2395 total_rx_packets
+= DIV_ROUND_UP(ddp_bytes
,
2399 dev_kfree_skb_any(skb
);
2404 #endif /* IXGBE_FCOE */
2405 ixgbe_rx_skb(q_vector
, skb
);
2407 /* update budget accounting */
2411 if (xdp_xmit
& IXGBE_XDP_REDIR
)
2414 if (xdp_xmit
& IXGBE_XDP_TX
) {
2415 struct ixgbe_ring
*ring
= adapter
->xdp_ring
[smp_processor_id()];
2417 /* Force memory writes to complete before letting h/w
2418 * know there are new descriptors to fetch.
2421 writel(ring
->next_to_use
, ring
->tail
);
2424 u64_stats_update_begin(&rx_ring
->syncp
);
2425 rx_ring
->stats
.packets
+= total_rx_packets
;
2426 rx_ring
->stats
.bytes
+= total_rx_bytes
;
2427 u64_stats_update_end(&rx_ring
->syncp
);
2428 q_vector
->rx
.total_packets
+= total_rx_packets
;
2429 q_vector
->rx
.total_bytes
+= total_rx_bytes
;
2431 return total_rx_packets
;
2435 * ixgbe_configure_msix - Configure MSI-X hardware
2436 * @adapter: board private structure
2438 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
2441 static void ixgbe_configure_msix(struct ixgbe_adapter
*adapter
)
2443 struct ixgbe_q_vector
*q_vector
;
2447 /* Populate MSIX to EITR Select */
2448 if (adapter
->num_vfs
> 32) {
2449 u32 eitrsel
= BIT(adapter
->num_vfs
- 32) - 1;
2450 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITRSEL
, eitrsel
);
2454 * Populate the IVAR table and set the ITR values to the
2455 * corresponding register.
2457 for (v_idx
= 0; v_idx
< adapter
->num_q_vectors
; v_idx
++) {
2458 struct ixgbe_ring
*ring
;
2459 q_vector
= adapter
->q_vector
[v_idx
];
2461 ixgbe_for_each_ring(ring
, q_vector
->rx
)
2462 ixgbe_set_ivar(adapter
, 0, ring
->reg_idx
, v_idx
);
2464 ixgbe_for_each_ring(ring
, q_vector
->tx
)
2465 ixgbe_set_ivar(adapter
, 1, ring
->reg_idx
, v_idx
);
2467 ixgbe_write_eitr(q_vector
);
2470 switch (adapter
->hw
.mac
.type
) {
2471 case ixgbe_mac_82598EB
:
2472 ixgbe_set_ivar(adapter
, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX
,
2475 case ixgbe_mac_82599EB
:
2476 case ixgbe_mac_X540
:
2477 case ixgbe_mac_X550
:
2478 case ixgbe_mac_X550EM_x
:
2479 case ixgbe_mac_x550em_a
:
2480 ixgbe_set_ivar(adapter
, -1, 1, v_idx
);
2485 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITR(v_idx
), 1950);
2487 /* set up to autoclear timer, and the vectors */
2488 mask
= IXGBE_EIMS_ENABLE_MASK
;
2489 mask
&= ~(IXGBE_EIMS_OTHER
|
2490 IXGBE_EIMS_MAILBOX
|
2493 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIAC
, mask
);
2497 * ixgbe_update_itr - update the dynamic ITR value based on statistics
2498 * @q_vector: structure containing interrupt and ring information
2499 * @ring_container: structure containing ring performance data
2501 * Stores a new ITR value based on packets and byte
2502 * counts during the last interrupt. The advantage of per interrupt
2503 * computation is faster updates and more accurate ITR for the current
2504 * traffic pattern. Constants in this function were computed
2505 * based on theoretical maximum wire speed and thresholds were set based
2506 * on testing data as well as attempting to minimize response time
2507 * while increasing bulk throughput.
2509 static void ixgbe_update_itr(struct ixgbe_q_vector
*q_vector
,
2510 struct ixgbe_ring_container
*ring_container
)
2512 unsigned int itr
= IXGBE_ITR_ADAPTIVE_MIN_USECS
|
2513 IXGBE_ITR_ADAPTIVE_LATENCY
;
2514 unsigned int avg_wire_size
, packets
, bytes
;
2515 unsigned long next_update
= jiffies
;
2517 /* If we don't have any rings just leave ourselves set for maximum
2518 * possible latency so we take ourselves out of the equation.
2520 if (!ring_container
->ring
)
2523 /* If we didn't update within up to 1 - 2 jiffies we can assume
2524 * that either packets are coming in so slow there hasn't been
2525 * any work, or that there is so much work that NAPI is dealing
2526 * with interrupt moderation and we don't need to do anything.
2528 if (time_after(next_update
, ring_container
->next_update
))
2531 packets
= ring_container
->total_packets
;
2533 /* We have no packets to actually measure against. This means
2534 * either one of the other queues on this vector is active or
2535 * we are a Tx queue doing TSO with too high of an interrupt rate.
2537 * When this occurs just tick up our delay by the minimum value
2538 * and hope that this extra delay will prevent us from being called
2539 * without any work on our queue.
2542 itr
= (q_vector
->itr
>> 2) + IXGBE_ITR_ADAPTIVE_MIN_INC
;
2543 if (itr
> IXGBE_ITR_ADAPTIVE_MAX_USECS
)
2544 itr
= IXGBE_ITR_ADAPTIVE_MAX_USECS
;
2545 itr
+= ring_container
->itr
& IXGBE_ITR_ADAPTIVE_LATENCY
;
2549 bytes
= ring_container
->total_bytes
;
2551 /* If packets are less than 4 or bytes are less than 9000 assume
2552 * insufficient data to use bulk rate limiting approach. We are
2553 * likely latency driven.
2555 if (packets
< 4 && bytes
< 9000) {
2556 itr
= IXGBE_ITR_ADAPTIVE_LATENCY
;
2557 goto adjust_by_size
;
2560 /* Between 4 and 48 we can assume that our current interrupt delay
2561 * is only slightly too low. As such we should increase it by a small
2565 itr
= (q_vector
->itr
>> 2) + IXGBE_ITR_ADAPTIVE_MIN_INC
;
2566 if (itr
> IXGBE_ITR_ADAPTIVE_MAX_USECS
)
2567 itr
= IXGBE_ITR_ADAPTIVE_MAX_USECS
;
2571 /* Between 48 and 96 is our "goldilocks" zone where we are working
2572 * out "just right". Just report that our current ITR is good for us.
2575 itr
= q_vector
->itr
>> 2;
2579 /* If packet count is 96 or greater we are likely looking at a slight
2580 * overrun of the delay we want. Try halving our delay to see if that
2581 * will cut the number of packets in half per interrupt.
2583 if (packets
< 256) {
2584 itr
= q_vector
->itr
>> 3;
2585 if (itr
< IXGBE_ITR_ADAPTIVE_MIN_USECS
)
2586 itr
= IXGBE_ITR_ADAPTIVE_MIN_USECS
;
2590 /* The paths below assume we are dealing with a bulk ITR since number
2591 * of packets is 256 or greater. We are just going to have to compute
2592 * a value and try to bring the count under control, though for smaller
2593 * packet sizes there isn't much we can do as NAPI polling will likely
2594 * be kicking in sooner rather than later.
2596 itr
= IXGBE_ITR_ADAPTIVE_BULK
;
2599 /* If packet counts are 256 or greater we can assume we have a gross
2600 * overestimation of what the rate should be. Instead of trying to fine
2601 * tune it just use the formula below to try and dial in an exact value
2602 * give the current packet size of the frame.
2604 avg_wire_size
= bytes
/ packets
;
2606 /* The following is a crude approximation of:
2607 * wmem_default / (size + overhead) = desired_pkts_per_int
2608 * rate / bits_per_byte / (size + ethernet overhead) = pkt_rate
2609 * (desired_pkt_rate / pkt_rate) * usecs_per_sec = ITR value
2611 * Assuming wmem_default is 212992 and overhead is 640 bytes per
2612 * packet, (256 skb, 64 headroom, 320 shared info), we can reduce the
2615 * (170 * (size + 24)) / (size + 640) = ITR
2617 * We first do some math on the packet size and then finally bitshift
2618 * by 8 after rounding up. We also have to account for PCIe link speed
2619 * difference as ITR scales based on this.
2621 if (avg_wire_size
<= 60) {
2622 /* Start at 50k ints/sec */
2623 avg_wire_size
= 5120;
2624 } else if (avg_wire_size
<= 316) {
2625 /* 50K ints/sec to 16K ints/sec */
2626 avg_wire_size
*= 40;
2627 avg_wire_size
+= 2720;
2628 } else if (avg_wire_size
<= 1084) {
2629 /* 16K ints/sec to 9.2K ints/sec */
2630 avg_wire_size
*= 15;
2631 avg_wire_size
+= 11452;
2632 } else if (avg_wire_size
< 1968) {
2633 /* 9.2K ints/sec to 8K ints/sec */
2635 avg_wire_size
+= 22420;
2637 /* plateau at a limit of 8K ints/sec */
2638 avg_wire_size
= 32256;
2641 /* If we are in low latency mode half our delay which doubles the rate
2642 * to somewhere between 100K to 16K ints/sec
2644 if (itr
& IXGBE_ITR_ADAPTIVE_LATENCY
)
2645 avg_wire_size
>>= 1;
2647 /* Resultant value is 256 times larger than it needs to be. This
2648 * gives us room to adjust the value as needed to either increase
2649 * or decrease the value based on link speeds of 10G, 2.5G, 1G, etc.
2651 * Use addition as we have already recorded the new latency flag
2652 * for the ITR value.
2654 switch (q_vector
->adapter
->link_speed
) {
2655 case IXGBE_LINK_SPEED_10GB_FULL
:
2656 case IXGBE_LINK_SPEED_100_FULL
:
2658 itr
+= DIV_ROUND_UP(avg_wire_size
,
2659 IXGBE_ITR_ADAPTIVE_MIN_INC
* 256) *
2660 IXGBE_ITR_ADAPTIVE_MIN_INC
;
2662 case IXGBE_LINK_SPEED_2_5GB_FULL
:
2663 case IXGBE_LINK_SPEED_1GB_FULL
:
2664 case IXGBE_LINK_SPEED_10_FULL
:
2665 if (avg_wire_size
> 8064)
2666 avg_wire_size
= 8064;
2667 itr
+= DIV_ROUND_UP(avg_wire_size
,
2668 IXGBE_ITR_ADAPTIVE_MIN_INC
* 64) *
2669 IXGBE_ITR_ADAPTIVE_MIN_INC
;
2674 /* write back value */
2675 ring_container
->itr
= itr
;
2677 /* next update should occur within next jiffy */
2678 ring_container
->next_update
= next_update
+ 1;
2680 ring_container
->total_bytes
= 0;
2681 ring_container
->total_packets
= 0;
2685 * ixgbe_write_eitr - write EITR register in hardware specific way
2686 * @q_vector: structure containing interrupt and ring information
2688 * This function is made to be called by ethtool and by the driver
2689 * when it needs to update EITR registers at runtime. Hardware
2690 * specific quirks/differences are taken care of here.
2692 void ixgbe_write_eitr(struct ixgbe_q_vector
*q_vector
)
2694 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
2695 struct ixgbe_hw
*hw
= &adapter
->hw
;
2696 int v_idx
= q_vector
->v_idx
;
2697 u32 itr_reg
= q_vector
->itr
& IXGBE_MAX_EITR
;
2699 switch (adapter
->hw
.mac
.type
) {
2700 case ixgbe_mac_82598EB
:
2701 /* must write high and low 16 bits to reset counter */
2702 itr_reg
|= (itr_reg
<< 16);
2704 case ixgbe_mac_82599EB
:
2705 case ixgbe_mac_X540
:
2706 case ixgbe_mac_X550
:
2707 case ixgbe_mac_X550EM_x
:
2708 case ixgbe_mac_x550em_a
:
2710 * set the WDIS bit to not clear the timer bits and cause an
2711 * immediate assertion of the interrupt
2713 itr_reg
|= IXGBE_EITR_CNT_WDIS
;
2718 IXGBE_WRITE_REG(hw
, IXGBE_EITR(v_idx
), itr_reg
);
2721 static void ixgbe_set_itr(struct ixgbe_q_vector
*q_vector
)
2725 ixgbe_update_itr(q_vector
, &q_vector
->tx
);
2726 ixgbe_update_itr(q_vector
, &q_vector
->rx
);
2728 /* use the smallest value of new ITR delay calculations */
2729 new_itr
= min(q_vector
->rx
.itr
, q_vector
->tx
.itr
);
2731 /* Clear latency flag if set, shift into correct position */
2732 new_itr
&= ~IXGBE_ITR_ADAPTIVE_LATENCY
;
2735 if (new_itr
!= q_vector
->itr
) {
2736 /* save the algorithm value here */
2737 q_vector
->itr
= new_itr
;
2739 ixgbe_write_eitr(q_vector
);
2744 * ixgbe_check_overtemp_subtask - check for over temperature
2745 * @adapter: pointer to adapter
2747 static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter
*adapter
)
2749 struct ixgbe_hw
*hw
= &adapter
->hw
;
2750 u32 eicr
= adapter
->interrupt_event
;
2753 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
2756 if (!(adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_EVENT
))
2759 adapter
->flags2
&= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT
;
2761 switch (hw
->device_id
) {
2762 case IXGBE_DEV_ID_82599_T3_LOM
:
2764 * Since the warning interrupt is for both ports
2765 * we don't have to check if:
2766 * - This interrupt wasn't for our port.
2767 * - We may have missed the interrupt so always have to
2768 * check if we got a LSC
2770 if (!(eicr
& IXGBE_EICR_GPI_SDP0_8259X
) &&
2771 !(eicr
& IXGBE_EICR_LSC
))
2774 if (!(eicr
& IXGBE_EICR_LSC
) && hw
->mac
.ops
.check_link
) {
2776 bool link_up
= false;
2778 hw
->mac
.ops
.check_link(hw
, &speed
, &link_up
, false);
2784 /* Check if this is not due to overtemp */
2785 if (hw
->phy
.ops
.check_overtemp(hw
) != IXGBE_ERR_OVERTEMP
)
2789 case IXGBE_DEV_ID_X550EM_A_1G_T
:
2790 case IXGBE_DEV_ID_X550EM_A_1G_T_L
:
2791 rc
= hw
->phy
.ops
.check_overtemp(hw
);
2792 if (rc
!= IXGBE_ERR_OVERTEMP
)
2796 if (adapter
->hw
.mac
.type
>= ixgbe_mac_X540
)
2798 if (!(eicr
& IXGBE_EICR_GPI_SDP0(hw
)))
2802 e_crit(drv
, "%s\n", ixgbe_overheat_msg
);
2804 adapter
->interrupt_event
= 0;
2807 static void ixgbe_check_fan_failure(struct ixgbe_adapter
*adapter
, u32 eicr
)
2809 struct ixgbe_hw
*hw
= &adapter
->hw
;
2811 if ((adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
) &&
2812 (eicr
& IXGBE_EICR_GPI_SDP1(hw
))) {
2813 e_crit(probe
, "Fan has stopped, replace the adapter\n");
2814 /* write to clear the interrupt */
2815 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_GPI_SDP1(hw
));
2819 static void ixgbe_check_overtemp_event(struct ixgbe_adapter
*adapter
, u32 eicr
)
2821 struct ixgbe_hw
*hw
= &adapter
->hw
;
2823 if (!(adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
))
2826 switch (adapter
->hw
.mac
.type
) {
2827 case ixgbe_mac_82599EB
:
2829 * Need to check link state so complete overtemp check
2832 if (((eicr
& IXGBE_EICR_GPI_SDP0(hw
)) ||
2833 (eicr
& IXGBE_EICR_LSC
)) &&
2834 (!test_bit(__IXGBE_DOWN
, &adapter
->state
))) {
2835 adapter
->interrupt_event
= eicr
;
2836 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_EVENT
;
2837 ixgbe_service_event_schedule(adapter
);
2841 case ixgbe_mac_x550em_a
:
2842 if (eicr
& IXGBE_EICR_GPI_SDP0_X550EM_a
) {
2843 adapter
->interrupt_event
= eicr
;
2844 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_EVENT
;
2845 ixgbe_service_event_schedule(adapter
);
2846 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
,
2847 IXGBE_EICR_GPI_SDP0_X550EM_a
);
2848 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICR
,
2849 IXGBE_EICR_GPI_SDP0_X550EM_a
);
2852 case ixgbe_mac_X550
:
2853 case ixgbe_mac_X540
:
2854 if (!(eicr
& IXGBE_EICR_TS
))
2861 e_crit(drv
, "%s\n", ixgbe_overheat_msg
);
2864 static inline bool ixgbe_is_sfp(struct ixgbe_hw
*hw
)
2866 switch (hw
->mac
.type
) {
2867 case ixgbe_mac_82598EB
:
2868 if (hw
->phy
.type
== ixgbe_phy_nl
)
2871 case ixgbe_mac_82599EB
:
2872 case ixgbe_mac_X550EM_x
:
2873 case ixgbe_mac_x550em_a
:
2874 switch (hw
->mac
.ops
.get_media_type(hw
)) {
2875 case ixgbe_media_type_fiber
:
2876 case ixgbe_media_type_fiber_qsfp
:
2886 static void ixgbe_check_sfp_event(struct ixgbe_adapter
*adapter
, u32 eicr
)
2888 struct ixgbe_hw
*hw
= &adapter
->hw
;
2889 u32 eicr_mask
= IXGBE_EICR_GPI_SDP2(hw
);
2891 if (!ixgbe_is_sfp(hw
))
2894 /* Later MAC's use different SDP */
2895 if (hw
->mac
.type
>= ixgbe_mac_X540
)
2896 eicr_mask
= IXGBE_EICR_GPI_SDP0_X540
;
2898 if (eicr
& eicr_mask
) {
2899 /* Clear the interrupt */
2900 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, eicr_mask
);
2901 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
2902 adapter
->flags2
|= IXGBE_FLAG2_SFP_NEEDS_RESET
;
2903 adapter
->sfp_poll_time
= 0;
2904 ixgbe_service_event_schedule(adapter
);
2908 if (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
&&
2909 (eicr
& IXGBE_EICR_GPI_SDP1(hw
))) {
2910 /* Clear the interrupt */
2911 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_GPI_SDP1(hw
));
2912 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
2913 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_CONFIG
;
2914 ixgbe_service_event_schedule(adapter
);
2919 static void ixgbe_check_lsc(struct ixgbe_adapter
*adapter
)
2921 struct ixgbe_hw
*hw
= &adapter
->hw
;
2924 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
2925 adapter
->link_check_timeout
= jiffies
;
2926 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
2927 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, IXGBE_EIMC_LSC
);
2928 IXGBE_WRITE_FLUSH(hw
);
2929 ixgbe_service_event_schedule(adapter
);
2933 static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter
*adapter
,
2937 struct ixgbe_hw
*hw
= &adapter
->hw
;
2939 switch (hw
->mac
.type
) {
2940 case ixgbe_mac_82598EB
:
2941 mask
= (IXGBE_EIMS_RTX_QUEUE
& qmask
);
2942 IXGBE_WRITE_REG(hw
, IXGBE_EIMS
, mask
);
2944 case ixgbe_mac_82599EB
:
2945 case ixgbe_mac_X540
:
2946 case ixgbe_mac_X550
:
2947 case ixgbe_mac_X550EM_x
:
2948 case ixgbe_mac_x550em_a
:
2949 mask
= (qmask
& 0xFFFFFFFF);
2951 IXGBE_WRITE_REG(hw
, IXGBE_EIMS_EX(0), mask
);
2952 mask
= (qmask
>> 32);
2954 IXGBE_WRITE_REG(hw
, IXGBE_EIMS_EX(1), mask
);
2959 /* skip the flush */
2962 static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter
*adapter
,
2966 struct ixgbe_hw
*hw
= &adapter
->hw
;
2968 switch (hw
->mac
.type
) {
2969 case ixgbe_mac_82598EB
:
2970 mask
= (IXGBE_EIMS_RTX_QUEUE
& qmask
);
2971 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, mask
);
2973 case ixgbe_mac_82599EB
:
2974 case ixgbe_mac_X540
:
2975 case ixgbe_mac_X550
:
2976 case ixgbe_mac_X550EM_x
:
2977 case ixgbe_mac_x550em_a
:
2978 mask
= (qmask
& 0xFFFFFFFF);
2980 IXGBE_WRITE_REG(hw
, IXGBE_EIMC_EX(0), mask
);
2981 mask
= (qmask
>> 32);
2983 IXGBE_WRITE_REG(hw
, IXGBE_EIMC_EX(1), mask
);
2988 /* skip the flush */
2992 * ixgbe_irq_enable - Enable default interrupt generation settings
2993 * @adapter: board private structure
2994 * @queues: enable irqs for queues
2995 * @flush: flush register write
2997 static inline void ixgbe_irq_enable(struct ixgbe_adapter
*adapter
, bool queues
,
3000 struct ixgbe_hw
*hw
= &adapter
->hw
;
3001 u32 mask
= (IXGBE_EIMS_ENABLE_MASK
& ~IXGBE_EIMS_RTX_QUEUE
);
3003 /* don't reenable LSC while waiting for link */
3004 if (adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
)
3005 mask
&= ~IXGBE_EIMS_LSC
;
3007 if (adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
)
3008 switch (adapter
->hw
.mac
.type
) {
3009 case ixgbe_mac_82599EB
:
3010 mask
|= IXGBE_EIMS_GPI_SDP0(hw
);
3012 case ixgbe_mac_X540
:
3013 case ixgbe_mac_X550
:
3014 case ixgbe_mac_X550EM_x
:
3015 case ixgbe_mac_x550em_a
:
3016 mask
|= IXGBE_EIMS_TS
;
3021 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
)
3022 mask
|= IXGBE_EIMS_GPI_SDP1(hw
);
3023 switch (adapter
->hw
.mac
.type
) {
3024 case ixgbe_mac_82599EB
:
3025 mask
|= IXGBE_EIMS_GPI_SDP1(hw
);
3026 mask
|= IXGBE_EIMS_GPI_SDP2(hw
);
3028 case ixgbe_mac_X540
:
3029 case ixgbe_mac_X550
:
3030 case ixgbe_mac_X550EM_x
:
3031 case ixgbe_mac_x550em_a
:
3032 if (adapter
->hw
.device_id
== IXGBE_DEV_ID_X550EM_X_SFP
||
3033 adapter
->hw
.device_id
== IXGBE_DEV_ID_X550EM_A_SFP
||
3034 adapter
->hw
.device_id
== IXGBE_DEV_ID_X550EM_A_SFP_N
)
3035 mask
|= IXGBE_EIMS_GPI_SDP0(&adapter
->hw
);
3036 if (adapter
->hw
.phy
.type
== ixgbe_phy_x550em_ext_t
)
3037 mask
|= IXGBE_EICR_GPI_SDP0_X540
;
3038 mask
|= IXGBE_EIMS_ECC
;
3039 mask
|= IXGBE_EIMS_MAILBOX
;
3045 if ((adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) &&
3046 !(adapter
->flags2
& IXGBE_FLAG2_FDIR_REQUIRES_REINIT
))
3047 mask
|= IXGBE_EIMS_FLOW_DIR
;
3049 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMS
, mask
);
3051 ixgbe_irq_enable_queues(adapter
, ~0);
3053 IXGBE_WRITE_FLUSH(&adapter
->hw
);
3056 static irqreturn_t
ixgbe_msix_other(int irq
, void *data
)
3058 struct ixgbe_adapter
*adapter
= data
;
3059 struct ixgbe_hw
*hw
= &adapter
->hw
;
3063 * Workaround for Silicon errata. Use clear-by-write instead
3064 * of clear-by-read. Reading with EICS will return the
3065 * interrupt causes without clearing, which later be done
3066 * with the write to EICR.
3068 eicr
= IXGBE_READ_REG(hw
, IXGBE_EICS
);
3070 /* The lower 16bits of the EICR register are for the queue interrupts
3071 * which should be masked here in order to not accidentally clear them if
3072 * the bits are high when ixgbe_msix_other is called. There is a race
3073 * condition otherwise which results in possible performance loss
3074 * especially if the ixgbe_msix_other interrupt is triggering
3075 * consistently (as it would when PPS is turned on for the X540 device)
3079 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, eicr
);
3081 if (eicr
& IXGBE_EICR_LSC
)
3082 ixgbe_check_lsc(adapter
);
3084 if (eicr
& IXGBE_EICR_MAILBOX
)
3085 ixgbe_msg_task(adapter
);
3087 switch (hw
->mac
.type
) {
3088 case ixgbe_mac_82599EB
:
3089 case ixgbe_mac_X540
:
3090 case ixgbe_mac_X550
:
3091 case ixgbe_mac_X550EM_x
:
3092 case ixgbe_mac_x550em_a
:
3093 if (hw
->phy
.type
== ixgbe_phy_x550em_ext_t
&&
3094 (eicr
& IXGBE_EICR_GPI_SDP0_X540
)) {
3095 adapter
->flags2
|= IXGBE_FLAG2_PHY_INTERRUPT
;
3096 ixgbe_service_event_schedule(adapter
);
3097 IXGBE_WRITE_REG(hw
, IXGBE_EICR
,
3098 IXGBE_EICR_GPI_SDP0_X540
);
3100 if (eicr
& IXGBE_EICR_ECC
) {
3101 e_info(link
, "Received ECC Err, initiating reset\n");
3102 set_bit(__IXGBE_RESET_REQUESTED
, &adapter
->state
);
3103 ixgbe_service_event_schedule(adapter
);
3104 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_ECC
);
3106 /* Handle Flow Director Full threshold interrupt */
3107 if (eicr
& IXGBE_EICR_FLOW_DIR
) {
3108 int reinit_count
= 0;
3110 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
3111 struct ixgbe_ring
*ring
= adapter
->tx_ring
[i
];
3112 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE
,
3117 /* no more flow director interrupts until after init */
3118 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, IXGBE_EIMC_FLOW_DIR
);
3119 adapter
->flags2
|= IXGBE_FLAG2_FDIR_REQUIRES_REINIT
;
3120 ixgbe_service_event_schedule(adapter
);
3123 ixgbe_check_sfp_event(adapter
, eicr
);
3124 ixgbe_check_overtemp_event(adapter
, eicr
);
3130 ixgbe_check_fan_failure(adapter
, eicr
);
3132 if (unlikely(eicr
& IXGBE_EICR_TIMESYNC
))
3133 ixgbe_ptp_check_pps_event(adapter
);
3135 /* re-enable the original interrupt state, no lsc, no queues */
3136 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
3137 ixgbe_irq_enable(adapter
, false, false);
3142 static irqreturn_t
ixgbe_msix_clean_rings(int irq
, void *data
)
3144 struct ixgbe_q_vector
*q_vector
= data
;
3146 /* EIAM disabled interrupts (on this vector) for us */
3148 if (q_vector
->rx
.ring
|| q_vector
->tx
.ring
)
3149 napi_schedule_irqoff(&q_vector
->napi
);
3155 * ixgbe_poll - NAPI Rx polling callback
3156 * @napi: structure for representing this polling device
3157 * @budget: how many packets driver is allowed to clean
3159 * This function is used for legacy and MSI, NAPI mode
3161 int ixgbe_poll(struct napi_struct
*napi
, int budget
)
3163 struct ixgbe_q_vector
*q_vector
=
3164 container_of(napi
, struct ixgbe_q_vector
, napi
);
3165 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
3166 struct ixgbe_ring
*ring
;
3167 int per_ring_budget
, work_done
= 0;
3168 bool clean_complete
= true;
3170 #ifdef CONFIG_IXGBE_DCA
3171 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
3172 ixgbe_update_dca(q_vector
);
3175 ixgbe_for_each_ring(ring
, q_vector
->tx
) {
3176 if (!ixgbe_clean_tx_irq(q_vector
, ring
, budget
))
3177 clean_complete
= false;
3180 /* Exit if we are called by netpoll */
3184 /* attempt to distribute budget to each queue fairly, but don't allow
3185 * the budget to go below 1 because we'll exit polling */
3186 if (q_vector
->rx
.count
> 1)
3187 per_ring_budget
= max(budget
/q_vector
->rx
.count
, 1);
3189 per_ring_budget
= budget
;
3191 ixgbe_for_each_ring(ring
, q_vector
->rx
) {
3192 int cleaned
= ixgbe_clean_rx_irq(q_vector
, ring
,
3195 work_done
+= cleaned
;
3196 if (cleaned
>= per_ring_budget
)
3197 clean_complete
= false;
3200 /* If all work not completed, return budget and keep polling */
3201 if (!clean_complete
)
3204 /* all work done, exit the polling mode */
3205 if (likely(napi_complete_done(napi
, work_done
))) {
3206 if (adapter
->rx_itr_setting
& 1)
3207 ixgbe_set_itr(q_vector
);
3208 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
3209 ixgbe_irq_enable_queues(adapter
,
3210 BIT_ULL(q_vector
->v_idx
));
3213 return min(work_done
, budget
- 1);
3217 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
3218 * @adapter: board private structure
3220 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
3221 * interrupts from the kernel.
3223 static int ixgbe_request_msix_irqs(struct ixgbe_adapter
*adapter
)
3225 struct net_device
*netdev
= adapter
->netdev
;
3226 unsigned int ri
= 0, ti
= 0;
3229 for (vector
= 0; vector
< adapter
->num_q_vectors
; vector
++) {
3230 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[vector
];
3231 struct msix_entry
*entry
= &adapter
->msix_entries
[vector
];
3233 if (q_vector
->tx
.ring
&& q_vector
->rx
.ring
) {
3234 snprintf(q_vector
->name
, sizeof(q_vector
->name
),
3235 "%s-TxRx-%u", netdev
->name
, ri
++);
3237 } else if (q_vector
->rx
.ring
) {
3238 snprintf(q_vector
->name
, sizeof(q_vector
->name
),
3239 "%s-rx-%u", netdev
->name
, ri
++);
3240 } else if (q_vector
->tx
.ring
) {
3241 snprintf(q_vector
->name
, sizeof(q_vector
->name
),
3242 "%s-tx-%u", netdev
->name
, ti
++);
3244 /* skip this unused q_vector */
3247 err
= request_irq(entry
->vector
, &ixgbe_msix_clean_rings
, 0,
3248 q_vector
->name
, q_vector
);
3250 e_err(probe
, "request_irq failed for MSIX interrupt "
3251 "Error: %d\n", err
);
3252 goto free_queue_irqs
;
3254 /* If Flow Director is enabled, set interrupt affinity */
3255 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) {
3256 /* assign the mask for this irq */
3257 irq_set_affinity_hint(entry
->vector
,
3258 &q_vector
->affinity_mask
);
3262 err
= request_irq(adapter
->msix_entries
[vector
].vector
,
3263 ixgbe_msix_other
, 0, netdev
->name
, adapter
);
3265 e_err(probe
, "request_irq for msix_other failed: %d\n", err
);
3266 goto free_queue_irqs
;
3274 irq_set_affinity_hint(adapter
->msix_entries
[vector
].vector
,
3276 free_irq(adapter
->msix_entries
[vector
].vector
,
3277 adapter
->q_vector
[vector
]);
3279 adapter
->flags
&= ~IXGBE_FLAG_MSIX_ENABLED
;
3280 pci_disable_msix(adapter
->pdev
);
3281 kfree(adapter
->msix_entries
);
3282 adapter
->msix_entries
= NULL
;
3287 * ixgbe_intr - legacy mode Interrupt Handler
3288 * @irq: interrupt number
3289 * @data: pointer to a network interface device structure
3291 static irqreturn_t
ixgbe_intr(int irq
, void *data
)
3293 struct ixgbe_adapter
*adapter
= data
;
3294 struct ixgbe_hw
*hw
= &adapter
->hw
;
3295 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[0];
3299 * Workaround for silicon errata #26 on 82598. Mask the interrupt
3300 * before the read of EICR.
3302 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, IXGBE_IRQ_CLEAR_MASK
);
3304 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
3305 * therefore no explicit interrupt disable is necessary */
3306 eicr
= IXGBE_READ_REG(hw
, IXGBE_EICR
);
3309 * shared interrupt alert!
3310 * make sure interrupts are enabled because the read will
3311 * have disabled interrupts due to EIAM
3312 * finish the workaround of silicon errata on 82598. Unmask
3313 * the interrupt that we masked before the EICR read.
3315 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
3316 ixgbe_irq_enable(adapter
, true, true);
3317 return IRQ_NONE
; /* Not our interrupt */
3320 if (eicr
& IXGBE_EICR_LSC
)
3321 ixgbe_check_lsc(adapter
);
3323 switch (hw
->mac
.type
) {
3324 case ixgbe_mac_82599EB
:
3325 ixgbe_check_sfp_event(adapter
, eicr
);
3327 case ixgbe_mac_X540
:
3328 case ixgbe_mac_X550
:
3329 case ixgbe_mac_X550EM_x
:
3330 case ixgbe_mac_x550em_a
:
3331 if (eicr
& IXGBE_EICR_ECC
) {
3332 e_info(link
, "Received ECC Err, initiating reset\n");
3333 set_bit(__IXGBE_RESET_REQUESTED
, &adapter
->state
);
3334 ixgbe_service_event_schedule(adapter
);
3335 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_ECC
);
3337 ixgbe_check_overtemp_event(adapter
, eicr
);
3343 ixgbe_check_fan_failure(adapter
, eicr
);
3344 if (unlikely(eicr
& IXGBE_EICR_TIMESYNC
))
3345 ixgbe_ptp_check_pps_event(adapter
);
3347 /* would disable interrupts here but EIAM disabled it */
3348 napi_schedule_irqoff(&q_vector
->napi
);
3351 * re-enable link(maybe) and non-queue interrupts, no flush.
3352 * ixgbe_poll will re-enable the queue interrupts
3354 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
3355 ixgbe_irq_enable(adapter
, false, false);
3361 * ixgbe_request_irq - initialize interrupts
3362 * @adapter: board private structure
3364 * Attempts to configure interrupts using the best available
3365 * capabilities of the hardware and kernel.
3367 static int ixgbe_request_irq(struct ixgbe_adapter
*adapter
)
3369 struct net_device
*netdev
= adapter
->netdev
;
3372 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)
3373 err
= ixgbe_request_msix_irqs(adapter
);
3374 else if (adapter
->flags
& IXGBE_FLAG_MSI_ENABLED
)
3375 err
= request_irq(adapter
->pdev
->irq
, ixgbe_intr
, 0,
3376 netdev
->name
, adapter
);
3378 err
= request_irq(adapter
->pdev
->irq
, ixgbe_intr
, IRQF_SHARED
,
3379 netdev
->name
, adapter
);
3382 e_err(probe
, "request_irq failed, Error %d\n", err
);
3387 static void ixgbe_free_irq(struct ixgbe_adapter
*adapter
)
3391 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
3392 free_irq(adapter
->pdev
->irq
, adapter
);
3396 if (!adapter
->msix_entries
)
3399 for (vector
= 0; vector
< adapter
->num_q_vectors
; vector
++) {
3400 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[vector
];
3401 struct msix_entry
*entry
= &adapter
->msix_entries
[vector
];
3403 /* free only the irqs that were actually requested */
3404 if (!q_vector
->rx
.ring
&& !q_vector
->tx
.ring
)
3407 /* clear the affinity_mask in the IRQ descriptor */
3408 irq_set_affinity_hint(entry
->vector
, NULL
);
3410 free_irq(entry
->vector
, q_vector
);
3413 free_irq(adapter
->msix_entries
[vector
].vector
, adapter
);
3417 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
3418 * @adapter: board private structure
3420 static inline void ixgbe_irq_disable(struct ixgbe_adapter
*adapter
)
3422 switch (adapter
->hw
.mac
.type
) {
3423 case ixgbe_mac_82598EB
:
3424 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, ~0);
3426 case ixgbe_mac_82599EB
:
3427 case ixgbe_mac_X540
:
3428 case ixgbe_mac_X550
:
3429 case ixgbe_mac_X550EM_x
:
3430 case ixgbe_mac_x550em_a
:
3431 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, 0xFFFF0000);
3432 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC_EX(0), ~0);
3433 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC_EX(1), ~0);
3438 IXGBE_WRITE_FLUSH(&adapter
->hw
);
3439 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
3442 for (vector
= 0; vector
< adapter
->num_q_vectors
; vector
++)
3443 synchronize_irq(adapter
->msix_entries
[vector
].vector
);
3445 synchronize_irq(adapter
->msix_entries
[vector
++].vector
);
3447 synchronize_irq(adapter
->pdev
->irq
);
3452 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
3453 * @adapter: board private structure
3456 static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter
*adapter
)
3458 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[0];
3460 ixgbe_write_eitr(q_vector
);
3462 ixgbe_set_ivar(adapter
, 0, 0, 0);
3463 ixgbe_set_ivar(adapter
, 1, 0, 0);
3465 e_info(hw
, "Legacy interrupt IVAR setup done\n");
3469 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
3470 * @adapter: board private structure
3471 * @ring: structure containing ring specific data
3473 * Configure the Tx descriptor ring after a reset.
3475 void ixgbe_configure_tx_ring(struct ixgbe_adapter
*adapter
,
3476 struct ixgbe_ring
*ring
)
3478 struct ixgbe_hw
*hw
= &adapter
->hw
;
3479 u64 tdba
= ring
->dma
;
3481 u32 txdctl
= IXGBE_TXDCTL_ENABLE
;
3482 u8 reg_idx
= ring
->reg_idx
;
3484 /* disable queue to avoid issues while updating state */
3485 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), 0);
3486 IXGBE_WRITE_FLUSH(hw
);
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
);
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
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
3507 if (!ring
->q_vector
|| (ring
->q_vector
->itr
< IXGBE_100K_ITR
))
3508 txdctl
|= 1u << 16; /* WTHRESH = 1 */
3510 txdctl
|= 8u << 16; /* WTHRESH = 8 */
3513 * Setting PTHRESH to 32 both improves performance
3514 * and avoids a TX hang with DFP enabled
3516 txdctl
|= (1u << 8) | /* HTHRESH = 1 */
3517 32; /* PTHRESH = 32 */
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
);
3525 ring
->atr_sample_rate
= 0;
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
;
3533 netif_set_xps_queue(ring
->netdev
,
3534 &q_vector
->affinity_mask
,
3538 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &ring
->state
);
3540 /* reinitialize tx_buffer_info */
3541 memset(ring
->tx_buffer_info
, 0,
3542 sizeof(struct ixgbe_tx_buffer
) * ring
->count
);
3545 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), txdctl
);
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
))
3552 /* poll to verify queue is enabled */
3554 usleep_range(1000, 2000);
3555 txdctl
= IXGBE_READ_REG(hw
, IXGBE_TXDCTL(reg_idx
));
3556 } while (--wait_loop
&& !(txdctl
& IXGBE_TXDCTL_ENABLE
));
3558 hw_dbg(hw
, "Could not enable Tx Queue %d\n", reg_idx
);
3561 static void ixgbe_setup_mtqc(struct ixgbe_adapter
*adapter
)
3563 struct ixgbe_hw
*hw
= &adapter
->hw
;
3565 u8 tcs
= adapter
->hw_tcs
;
3567 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
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
);
3575 /* set transmit pool layout */
3576 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
3577 mtqc
= IXGBE_MTQC_VT_ENA
;
3579 mtqc
|= IXGBE_MTQC_RT_ENA
| IXGBE_MTQC_8TC_8TQ
;
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
;
3586 mtqc
|= IXGBE_MTQC_64VF
;
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
;
3593 u8 max_txq
= adapter
->num_tx_queues
+
3594 adapter
->num_xdp_queues
;
3596 mtqc
= IXGBE_MTQC_RT_ENA
| IXGBE_MTQC_4TC_4TQ
;
3598 mtqc
= IXGBE_MTQC_64Q_1PB
;
3602 IXGBE_WRITE_REG(hw
, IXGBE_MTQC
, mtqc
);
3604 /* Enable Security TX Buffer IFG for multiple pb */
3606 u32 sectx
= IXGBE_READ_REG(hw
, IXGBE_SECTXMINIFG
);
3607 sectx
|= IXGBE_SECTX_DCB
;
3608 IXGBE_WRITE_REG(hw
, IXGBE_SECTXMINIFG
, sectx
);
3611 /* re-enable the arbiter */
3612 rttdcs
&= ~IXGBE_RTTDCS_ARBDIS
;
3613 IXGBE_WRITE_REG(hw
, IXGBE_RTTDCS
, rttdcs
);
3617 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
3618 * @adapter: board private structure
3620 * Configure the Tx unit of the MAC after a reset.
3622 static void ixgbe_configure_tx(struct ixgbe_adapter
*adapter
)
3624 struct ixgbe_hw
*hw
= &adapter
->hw
;
3628 ixgbe_setup_mtqc(adapter
);
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
);
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
]);
3644 static void ixgbe_enable_rx_drop(struct ixgbe_adapter
*adapter
,
3645 struct ixgbe_ring
*ring
)
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
));
3651 srrctl
|= IXGBE_SRRCTL_DROP_EN
;
3653 IXGBE_WRITE_REG(hw
, IXGBE_SRRCTL(reg_idx
), srrctl
);
3656 static void ixgbe_disable_rx_drop(struct ixgbe_adapter
*adapter
,
3657 struct ixgbe_ring
*ring
)
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
));
3663 srrctl
&= ~IXGBE_SRRCTL_DROP_EN
;
3665 IXGBE_WRITE_REG(hw
, IXGBE_SRRCTL(reg_idx
), srrctl
);
3668 #ifdef CONFIG_IXGBE_DCB
3669 void ixgbe_set_rx_drop_en(struct ixgbe_adapter
*adapter
)
3671 static void ixgbe_set_rx_drop_en(struct ixgbe_adapter
*adapter
)
3675 bool pfc_en
= adapter
->dcb_cfg
.pfc_mode_enable
;
3677 if (adapter
->ixgbe_ieee_pfc
)
3678 pfc_en
|= !!(adapter
->ixgbe_ieee_pfc
->pfc_en
);
3681 * We should set the drop enable bit if:
3684 * Number of Rx queues > 1 and flow control is disabled
3686 * This allows us to avoid head of line blocking for security
3687 * and performance reasons.
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
]);
3694 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
3695 ixgbe_disable_rx_drop(adapter
, adapter
->rx_ring
[i
]);
3699 #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
3701 static void ixgbe_configure_srrctl(struct ixgbe_adapter
*adapter
,
3702 struct ixgbe_ring
*rx_ring
)
3704 struct ixgbe_hw
*hw
= &adapter
->hw
;
3706 u8 reg_idx
= rx_ring
->reg_idx
;
3708 if (hw
->mac
.type
== ixgbe_mac_82598EB
) {
3709 u16 mask
= adapter
->ring_feature
[RING_F_RSS
].mask
;
3712 * if VMDq is not active we must program one srrctl register
3713 * per RSS queue since we have enabled RDRXCTL.MVMEN
3718 /* configure header buffer length, needed for RSC */
3719 srrctl
= IXGBE_RX_HDR_SIZE
<< IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT
;
3721 /* configure the packet buffer length */
3722 if (test_bit(__IXGBE_RX_3K_BUFFER
, &rx_ring
->state
))
3723 srrctl
|= IXGBE_RXBUFFER_3K
>> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
3725 srrctl
|= IXGBE_RXBUFFER_2K
>> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
3727 /* configure descriptor type */
3728 srrctl
|= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF
;
3730 IXGBE_WRITE_REG(hw
, IXGBE_SRRCTL(reg_idx
), srrctl
);
3734 * ixgbe_rss_indir_tbl_entries - Return RSS indirection table entries
3735 * @adapter: device handle
3737 * - 82598/82599/X540: 128
3738 * - X550(non-SRIOV mode): 512
3739 * - X550(SRIOV mode): 64
3741 u32
ixgbe_rss_indir_tbl_entries(struct ixgbe_adapter
*adapter
)
3743 if (adapter
->hw
.mac
.type
< ixgbe_mac_X550
)
3745 else if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
3752 * ixgbe_store_key - Write the RSS key to HW
3753 * @adapter: device handle
3755 * Write the RSS key stored in adapter.rss_key to HW.
3757 void ixgbe_store_key(struct ixgbe_adapter
*adapter
)
3759 struct ixgbe_hw
*hw
= &adapter
->hw
;
3762 for (i
= 0; i
< 10; i
++)
3763 IXGBE_WRITE_REG(hw
, IXGBE_RSSRK(i
), adapter
->rss_key
[i
]);
3767 * ixgbe_init_rss_key - Initialize adapter RSS key
3768 * @adapter: device handle
3770 * Allocates and initializes the RSS key if it is not allocated.
3772 static inline int ixgbe_init_rss_key(struct ixgbe_adapter
*adapter
)
3776 if (!adapter
->rss_key
) {
3777 rss_key
= kzalloc(IXGBE_RSS_KEY_SIZE
, GFP_KERNEL
);
3778 if (unlikely(!rss_key
))
3781 netdev_rss_key_fill(rss_key
, IXGBE_RSS_KEY_SIZE
);
3782 adapter
->rss_key
= rss_key
;
3789 * ixgbe_store_reta - Write the RETA table to HW
3790 * @adapter: device handle
3792 * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3794 void ixgbe_store_reta(struct ixgbe_adapter
*adapter
)
3796 u32 i
, reta_entries
= ixgbe_rss_indir_tbl_entries(adapter
);
3797 struct ixgbe_hw
*hw
= &adapter
->hw
;
3800 u8
*indir_tbl
= adapter
->rss_indir_tbl
;
3802 /* Fill out the redirection table as follows:
3803 * - 82598: 8 bit wide entries containing pair of 4 bit RSS
3805 * - 82599/X540: 8 bit wide entries containing 4 bit RSS index
3806 * - X550: 8 bit wide entries containing 6 bit RSS index
3808 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
3809 indices_multi
= 0x11;
3811 indices_multi
= 0x1;
3813 /* Write redirection table to HW */
3814 for (i
= 0; i
< reta_entries
; i
++) {
3815 reta
|= indices_multi
* indir_tbl
[i
] << (i
& 0x3) * 8;
3818 IXGBE_WRITE_REG(hw
, IXGBE_RETA(i
>> 2), reta
);
3820 IXGBE_WRITE_REG(hw
, IXGBE_ERETA((i
>> 2) - 32),
3828 * ixgbe_store_vfreta - Write the RETA table to HW (x550 devices in SRIOV mode)
3829 * @adapter: device handle
3831 * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW.
3833 static void ixgbe_store_vfreta(struct ixgbe_adapter
*adapter
)
3835 u32 i
, reta_entries
= ixgbe_rss_indir_tbl_entries(adapter
);
3836 struct ixgbe_hw
*hw
= &adapter
->hw
;
3839 /* Write redirection table to HW */
3840 for (i
= 0; i
< reta_entries
; i
++) {
3841 u16 pool
= adapter
->num_rx_pools
;
3843 vfreta
|= (u32
)adapter
->rss_indir_tbl
[i
] << (i
& 0x3) * 8;
3849 IXGBE_PFVFRETA(i
>> 2, VMDQ_P(pool
)),
3855 static void ixgbe_setup_reta(struct ixgbe_adapter
*adapter
)
3858 u32 reta_entries
= ixgbe_rss_indir_tbl_entries(adapter
);
3859 u16 rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
;
3861 /* Program table for at least 4 queues w/ SR-IOV so that VFs can
3862 * make full use of any rings they may have. We will use the
3863 * PSRTYPE register to control how many rings we use within the PF.
3865 if ((adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) && (rss_i
< 4))
3868 /* Fill out hash function seeds */
3869 ixgbe_store_key(adapter
);
3871 /* Fill out redirection table */
3872 memset(adapter
->rss_indir_tbl
, 0, sizeof(adapter
->rss_indir_tbl
));
3874 for (i
= 0, j
= 0; i
< reta_entries
; i
++, j
++) {
3878 adapter
->rss_indir_tbl
[i
] = j
;
3881 ixgbe_store_reta(adapter
);
3884 static void ixgbe_setup_vfreta(struct ixgbe_adapter
*adapter
)
3886 struct ixgbe_hw
*hw
= &adapter
->hw
;
3887 u16 rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
;
3890 /* Fill out hash function seeds */
3891 for (i
= 0; i
< 10; i
++) {
3892 u16 pool
= adapter
->num_rx_pools
;
3896 IXGBE_PFVFRSSRK(i
, VMDQ_P(pool
)),
3897 *(adapter
->rss_key
+ i
));
3900 /* Fill out the redirection table */
3901 for (i
= 0, j
= 0; i
< 64; i
++, j
++) {
3905 adapter
->rss_indir_tbl
[i
] = j
;
3908 ixgbe_store_vfreta(adapter
);
3911 static void ixgbe_setup_mrqc(struct ixgbe_adapter
*adapter
)
3913 struct ixgbe_hw
*hw
= &adapter
->hw
;
3914 u32 mrqc
= 0, rss_field
= 0, vfmrqc
= 0;
3917 /* Disable indicating checksum in descriptor, enables RSS hash */
3918 rxcsum
= IXGBE_READ_REG(hw
, IXGBE_RXCSUM
);
3919 rxcsum
|= IXGBE_RXCSUM_PCSD
;
3920 IXGBE_WRITE_REG(hw
, IXGBE_RXCSUM
, rxcsum
);
3922 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
) {
3923 if (adapter
->ring_feature
[RING_F_RSS
].mask
)
3924 mrqc
= IXGBE_MRQC_RSSEN
;
3926 u8 tcs
= adapter
->hw_tcs
;
3928 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
3930 mrqc
= IXGBE_MRQC_VMDQRT8TCEN
; /* 8 TCs */
3932 mrqc
= IXGBE_MRQC_VMDQRT4TCEN
; /* 4 TCs */
3933 else if (adapter
->ring_feature
[RING_F_VMDQ
].mask
==
3934 IXGBE_82599_VMDQ_4Q_MASK
)
3935 mrqc
= IXGBE_MRQC_VMDQRSS32EN
;
3937 mrqc
= IXGBE_MRQC_VMDQRSS64EN
;
3939 /* Enable L3/L4 for Tx Switched packets only for X550,
3940 * older devices do not support this feature
3942 if (hw
->mac
.type
>= ixgbe_mac_X550
)
3943 mrqc
|= IXGBE_MRQC_L3L4TXSWEN
;
3946 mrqc
= IXGBE_MRQC_RTRSS8TCEN
;
3948 mrqc
= IXGBE_MRQC_RTRSS4TCEN
;
3950 mrqc
= IXGBE_MRQC_RSSEN
;
3954 /* Perform hash on these packet types */
3955 rss_field
|= IXGBE_MRQC_RSS_FIELD_IPV4
|
3956 IXGBE_MRQC_RSS_FIELD_IPV4_TCP
|
3957 IXGBE_MRQC_RSS_FIELD_IPV6
|
3958 IXGBE_MRQC_RSS_FIELD_IPV6_TCP
;
3960 if (adapter
->flags2
& IXGBE_FLAG2_RSS_FIELD_IPV4_UDP
)
3961 rss_field
|= IXGBE_MRQC_RSS_FIELD_IPV4_UDP
;
3962 if (adapter
->flags2
& IXGBE_FLAG2_RSS_FIELD_IPV6_UDP
)
3963 rss_field
|= IXGBE_MRQC_RSS_FIELD_IPV6_UDP
;
3965 if ((hw
->mac
.type
>= ixgbe_mac_X550
) &&
3966 (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)) {
3967 u16 pool
= adapter
->num_rx_pools
;
3969 /* Enable VF RSS mode */
3970 mrqc
|= IXGBE_MRQC_MULTIPLE_RSS
;
3971 IXGBE_WRITE_REG(hw
, IXGBE_MRQC
, mrqc
);
3973 /* Setup RSS through the VF registers */
3974 ixgbe_setup_vfreta(adapter
);
3975 vfmrqc
= IXGBE_MRQC_RSSEN
;
3976 vfmrqc
|= rss_field
;
3980 IXGBE_PFVFMRQC(VMDQ_P(pool
)),
3983 ixgbe_setup_reta(adapter
);
3985 IXGBE_WRITE_REG(hw
, IXGBE_MRQC
, mrqc
);
3990 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3991 * @adapter: address of board private structure
3992 * @ring: structure containing ring specific data
3994 static void ixgbe_configure_rscctl(struct ixgbe_adapter
*adapter
,
3995 struct ixgbe_ring
*ring
)
3997 struct ixgbe_hw
*hw
= &adapter
->hw
;
3999 u8 reg_idx
= ring
->reg_idx
;
4001 if (!ring_is_rsc_enabled(ring
))
4004 rscctrl
= IXGBE_READ_REG(hw
, IXGBE_RSCCTL(reg_idx
));
4005 rscctrl
|= IXGBE_RSCCTL_RSCEN
;
4007 * we must limit the number of descriptors so that the
4008 * total size of max desc * buf_len is not greater
4011 rscctrl
|= IXGBE_RSCCTL_MAXDESC_16
;
4012 IXGBE_WRITE_REG(hw
, IXGBE_RSCCTL(reg_idx
), rscctrl
);
4015 #define IXGBE_MAX_RX_DESC_POLL 10
4016 static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter
*adapter
,
4017 struct ixgbe_ring
*ring
)
4019 struct ixgbe_hw
*hw
= &adapter
->hw
;
4020 int wait_loop
= IXGBE_MAX_RX_DESC_POLL
;
4022 u8 reg_idx
= ring
->reg_idx
;
4024 if (ixgbe_removed(hw
->hw_addr
))
4026 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
4027 if (hw
->mac
.type
== ixgbe_mac_82598EB
&&
4028 !(IXGBE_READ_REG(hw
, IXGBE_LINKS
) & IXGBE_LINKS_UP
))
4032 usleep_range(1000, 2000);
4033 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
4034 } while (--wait_loop
&& !(rxdctl
& IXGBE_RXDCTL_ENABLE
));
4037 e_err(drv
, "RXDCTL.ENABLE on Rx queue %d not set within "
4038 "the polling period\n", reg_idx
);
4042 void ixgbe_configure_rx_ring(struct ixgbe_adapter
*adapter
,
4043 struct ixgbe_ring
*ring
)
4045 struct ixgbe_hw
*hw
= &adapter
->hw
;
4046 union ixgbe_adv_rx_desc
*rx_desc
;
4047 u64 rdba
= ring
->dma
;
4049 u8 reg_idx
= ring
->reg_idx
;
4051 /* disable queue to avoid use of these values while updating state */
4052 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
4053 rxdctl
&= ~IXGBE_RXDCTL_ENABLE
;
4055 /* write value back with RXDCTL.ENABLE bit cleared */
4056 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(reg_idx
), rxdctl
);
4057 IXGBE_WRITE_FLUSH(hw
);
4059 IXGBE_WRITE_REG(hw
, IXGBE_RDBAL(reg_idx
), (rdba
& DMA_BIT_MASK(32)));
4060 IXGBE_WRITE_REG(hw
, IXGBE_RDBAH(reg_idx
), (rdba
>> 32));
4061 IXGBE_WRITE_REG(hw
, IXGBE_RDLEN(reg_idx
),
4062 ring
->count
* sizeof(union ixgbe_adv_rx_desc
));
4063 /* Force flushing of IXGBE_RDLEN to prevent MDD */
4064 IXGBE_WRITE_FLUSH(hw
);
4066 IXGBE_WRITE_REG(hw
, IXGBE_RDH(reg_idx
), 0);
4067 IXGBE_WRITE_REG(hw
, IXGBE_RDT(reg_idx
), 0);
4068 ring
->tail
= adapter
->io_addr
+ IXGBE_RDT(reg_idx
);
4070 ixgbe_configure_srrctl(adapter
, ring
);
4071 ixgbe_configure_rscctl(adapter
, ring
);
4073 if (hw
->mac
.type
== ixgbe_mac_82598EB
) {
4075 * enable cache line friendly hardware writes:
4076 * PTHRESH=32 descriptors (half the internal cache),
4077 * this also removes ugly rx_no_buffer_count increment
4078 * HTHRESH=4 descriptors (to minimize latency on fetch)
4079 * WTHRESH=8 burst writeback up to two cache lines
4081 rxdctl
&= ~0x3FFFFF;
4083 #if (PAGE_SIZE < 8192)
4084 /* RXDCTL.RLPML does not work on 82599 */
4085 } else if (hw
->mac
.type
!= ixgbe_mac_82599EB
) {
4086 rxdctl
&= ~(IXGBE_RXDCTL_RLPMLMASK
|
4087 IXGBE_RXDCTL_RLPML_EN
);
4089 /* Limit the maximum frame size so we don't overrun the skb.
4090 * This can happen in SRIOV mode when the MTU of the VF is
4091 * higher than the MTU of the PF.
4093 if (ring_uses_build_skb(ring
) &&
4094 !test_bit(__IXGBE_RX_3K_BUFFER
, &ring
->state
))
4095 rxdctl
|= IXGBE_MAX_2K_FRAME_BUILD_SKB
|
4096 IXGBE_RXDCTL_RLPML_EN
;
4100 /* initialize rx_buffer_info */
4101 memset(ring
->rx_buffer_info
, 0,
4102 sizeof(struct ixgbe_rx_buffer
) * ring
->count
);
4104 /* initialize Rx descriptor 0 */
4105 rx_desc
= IXGBE_RX_DESC(ring
, 0);
4106 rx_desc
->wb
.upper
.length
= 0;
4108 /* enable receive descriptor ring */
4109 rxdctl
|= IXGBE_RXDCTL_ENABLE
;
4110 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(reg_idx
), rxdctl
);
4112 ixgbe_rx_desc_queue_enable(adapter
, ring
);
4113 ixgbe_alloc_rx_buffers(ring
, ixgbe_desc_unused(ring
));
4116 static void ixgbe_setup_psrtype(struct ixgbe_adapter
*adapter
)
4118 struct ixgbe_hw
*hw
= &adapter
->hw
;
4119 int rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
;
4120 u16 pool
= adapter
->num_rx_pools
;
4122 /* PSRTYPE must be initialized in non 82598 adapters */
4123 u32 psrtype
= IXGBE_PSRTYPE_TCPHDR
|
4124 IXGBE_PSRTYPE_UDPHDR
|
4125 IXGBE_PSRTYPE_IPV4HDR
|
4126 IXGBE_PSRTYPE_L2HDR
|
4127 IXGBE_PSRTYPE_IPV6HDR
;
4129 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
4133 psrtype
|= 2u << 29;
4135 psrtype
|= 1u << 29;
4138 IXGBE_WRITE_REG(hw
, IXGBE_PSRTYPE(VMDQ_P(pool
)), psrtype
);
4141 static void ixgbe_configure_virtualization(struct ixgbe_adapter
*adapter
)
4143 struct ixgbe_hw
*hw
= &adapter
->hw
;
4144 u16 pool
= adapter
->num_rx_pools
;
4145 u32 reg_offset
, vf_shift
, vmolr
;
4146 u32 gcr_ext
, vmdctl
;
4149 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
4152 vmdctl
= IXGBE_READ_REG(hw
, IXGBE_VT_CTL
);
4153 vmdctl
|= IXGBE_VMD_CTL_VMDQ_EN
;
4154 vmdctl
&= ~IXGBE_VT_CTL_POOL_MASK
;
4155 vmdctl
|= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT
;
4156 vmdctl
|= IXGBE_VT_CTL_REPLEN
;
4157 IXGBE_WRITE_REG(hw
, IXGBE_VT_CTL
, vmdctl
);
4159 /* accept untagged packets until a vlan tag is
4160 * specifically set for the VMDQ queue/pool
4162 vmolr
= IXGBE_VMOLR_AUPE
;
4164 IXGBE_WRITE_REG(hw
, IXGBE_VMOLR(VMDQ_P(pool
)), vmolr
);
4166 vf_shift
= VMDQ_P(0) % 32;
4167 reg_offset
= (VMDQ_P(0) >= 32) ? 1 : 0;
4169 /* Enable only the PF's pool for Tx/Rx */
4170 IXGBE_WRITE_REG(hw
, IXGBE_VFRE(reg_offset
), GENMASK(31, vf_shift
));
4171 IXGBE_WRITE_REG(hw
, IXGBE_VFRE(reg_offset
^ 1), reg_offset
- 1);
4172 IXGBE_WRITE_REG(hw
, IXGBE_VFTE(reg_offset
), GENMASK(31, vf_shift
));
4173 IXGBE_WRITE_REG(hw
, IXGBE_VFTE(reg_offset
^ 1), reg_offset
- 1);
4174 if (adapter
->bridge_mode
== BRIDGE_MODE_VEB
)
4175 IXGBE_WRITE_REG(hw
, IXGBE_PFDTXGSWC
, IXGBE_PFDTXGSWC_VT_LBEN
);
4177 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
4178 hw
->mac
.ops
.set_vmdq(hw
, 0, VMDQ_P(0));
4180 /* clear VLAN promisc flag so VFTA will be updated if necessary */
4181 adapter
->flags2
&= ~IXGBE_FLAG2_VLAN_PROMISC
;
4184 * Set up VF register offsets for selected VT Mode,
4185 * i.e. 32 or 64 VFs for SR-IOV
4187 switch (adapter
->ring_feature
[RING_F_VMDQ
].mask
) {
4188 case IXGBE_82599_VMDQ_8Q_MASK
:
4189 gcr_ext
= IXGBE_GCR_EXT_VT_MODE_16
;
4191 case IXGBE_82599_VMDQ_4Q_MASK
:
4192 gcr_ext
= IXGBE_GCR_EXT_VT_MODE_32
;
4195 gcr_ext
= IXGBE_GCR_EXT_VT_MODE_64
;
4199 IXGBE_WRITE_REG(hw
, IXGBE_GCR_EXT
, gcr_ext
);
4201 for (i
= 0; i
< adapter
->num_vfs
; i
++) {
4202 /* configure spoof checking */
4203 ixgbe_ndo_set_vf_spoofchk(adapter
->netdev
, i
,
4204 adapter
->vfinfo
[i
].spoofchk_enabled
);
4206 /* Enable/Disable RSS query feature */
4207 ixgbe_ndo_set_vf_rss_query_en(adapter
->netdev
, i
,
4208 adapter
->vfinfo
[i
].rss_query_enabled
);
4212 static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter
*adapter
)
4214 struct ixgbe_hw
*hw
= &adapter
->hw
;
4215 struct net_device
*netdev
= adapter
->netdev
;
4216 int max_frame
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
4217 struct ixgbe_ring
*rx_ring
;
4222 /* adjust max frame to be able to do baby jumbo for FCoE */
4223 if ((adapter
->flags
& IXGBE_FLAG_FCOE_ENABLED
) &&
4224 (max_frame
< IXGBE_FCOE_JUMBO_FRAME_SIZE
))
4225 max_frame
= IXGBE_FCOE_JUMBO_FRAME_SIZE
;
4227 #endif /* IXGBE_FCOE */
4229 /* adjust max frame to be at least the size of a standard frame */
4230 if (max_frame
< (ETH_FRAME_LEN
+ ETH_FCS_LEN
))
4231 max_frame
= (ETH_FRAME_LEN
+ ETH_FCS_LEN
);
4233 mhadd
= IXGBE_READ_REG(hw
, IXGBE_MHADD
);
4234 if (max_frame
!= (mhadd
>> IXGBE_MHADD_MFS_SHIFT
)) {
4235 mhadd
&= ~IXGBE_MHADD_MFS_MASK
;
4236 mhadd
|= max_frame
<< IXGBE_MHADD_MFS_SHIFT
;
4238 IXGBE_WRITE_REG(hw
, IXGBE_MHADD
, mhadd
);
4241 hlreg0
= IXGBE_READ_REG(hw
, IXGBE_HLREG0
);
4242 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
4243 hlreg0
|= IXGBE_HLREG0_JUMBOEN
;
4244 IXGBE_WRITE_REG(hw
, IXGBE_HLREG0
, hlreg0
);
4247 * Setup the HW Rx Head and Tail Descriptor Pointers and
4248 * the Base and Length of the Rx Descriptor Ring
4250 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
4251 rx_ring
= adapter
->rx_ring
[i
];
4253 clear_ring_rsc_enabled(rx_ring
);
4254 clear_bit(__IXGBE_RX_3K_BUFFER
, &rx_ring
->state
);
4255 clear_bit(__IXGBE_RX_BUILD_SKB_ENABLED
, &rx_ring
->state
);
4257 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
4258 set_ring_rsc_enabled(rx_ring
);
4260 if (test_bit(__IXGBE_RX_FCOE
, &rx_ring
->state
))
4261 set_bit(__IXGBE_RX_3K_BUFFER
, &rx_ring
->state
);
4263 clear_bit(__IXGBE_RX_BUILD_SKB_ENABLED
, &rx_ring
->state
);
4264 if (adapter
->flags2
& IXGBE_FLAG2_RX_LEGACY
)
4267 set_bit(__IXGBE_RX_BUILD_SKB_ENABLED
, &rx_ring
->state
);
4269 #if (PAGE_SIZE < 8192)
4270 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
4271 set_bit(__IXGBE_RX_3K_BUFFER
, &rx_ring
->state
);
4273 if (IXGBE_2K_TOO_SMALL_WITH_PADDING
||
4274 (max_frame
> (ETH_FRAME_LEN
+ ETH_FCS_LEN
)))
4275 set_bit(__IXGBE_RX_3K_BUFFER
, &rx_ring
->state
);
4280 static void ixgbe_setup_rdrxctl(struct ixgbe_adapter
*adapter
)
4282 struct ixgbe_hw
*hw
= &adapter
->hw
;
4283 u32 rdrxctl
= IXGBE_READ_REG(hw
, IXGBE_RDRXCTL
);
4285 switch (hw
->mac
.type
) {
4286 case ixgbe_mac_82598EB
:
4288 * For VMDq support of different descriptor types or
4289 * buffer sizes through the use of multiple SRRCTL
4290 * registers, RDRXCTL.MVMEN must be set to 1
4292 * also, the manual doesn't mention it clearly but DCA hints
4293 * will only use queue 0's tags unless this bit is set. Side
4294 * effects of setting this bit are only that SRRCTL must be
4295 * fully programmed [0..15]
4297 rdrxctl
|= IXGBE_RDRXCTL_MVMEN
;
4299 case ixgbe_mac_X550
:
4300 case ixgbe_mac_X550EM_x
:
4301 case ixgbe_mac_x550em_a
:
4302 if (adapter
->num_vfs
)
4303 rdrxctl
|= IXGBE_RDRXCTL_PSP
;
4305 case ixgbe_mac_82599EB
:
4306 case ixgbe_mac_X540
:
4307 /* Disable RSC for ACK packets */
4308 IXGBE_WRITE_REG(hw
, IXGBE_RSCDBU
,
4309 (IXGBE_RSCDBU_RSCACKDIS
| IXGBE_READ_REG(hw
, IXGBE_RSCDBU
)));
4310 rdrxctl
&= ~IXGBE_RDRXCTL_RSCFRSTSIZE
;
4311 /* hardware requires some bits to be set by default */
4312 rdrxctl
|= (IXGBE_RDRXCTL_RSCACKC
| IXGBE_RDRXCTL_FCOE_WRFIX
);
4313 rdrxctl
|= IXGBE_RDRXCTL_CRCSTRIP
;
4316 /* We should do nothing since we don't know this hardware */
4320 IXGBE_WRITE_REG(hw
, IXGBE_RDRXCTL
, rdrxctl
);
4324 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
4325 * @adapter: board private structure
4327 * Configure the Rx unit of the MAC after a reset.
4329 static void ixgbe_configure_rx(struct ixgbe_adapter
*adapter
)
4331 struct ixgbe_hw
*hw
= &adapter
->hw
;
4335 /* disable receives while setting up the descriptors */
4336 hw
->mac
.ops
.disable_rx(hw
);
4338 ixgbe_setup_psrtype(adapter
);
4339 ixgbe_setup_rdrxctl(adapter
);
4342 rfctl
= IXGBE_READ_REG(hw
, IXGBE_RFCTL
);
4343 rfctl
&= ~IXGBE_RFCTL_RSC_DIS
;
4344 if (!(adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
))
4345 rfctl
|= IXGBE_RFCTL_RSC_DIS
;
4347 /* disable NFS filtering */
4348 rfctl
|= (IXGBE_RFCTL_NFSW_DIS
| IXGBE_RFCTL_NFSR_DIS
);
4349 IXGBE_WRITE_REG(hw
, IXGBE_RFCTL
, rfctl
);
4351 /* Program registers for the distribution of queues */
4352 ixgbe_setup_mrqc(adapter
);
4354 /* set_rx_buffer_len must be called before ring initialization */
4355 ixgbe_set_rx_buffer_len(adapter
);
4358 * Setup the HW Rx Head and Tail Descriptor Pointers and
4359 * the Base and Length of the Rx Descriptor Ring
4361 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
4362 ixgbe_configure_rx_ring(adapter
, adapter
->rx_ring
[i
]);
4364 rxctrl
= IXGBE_READ_REG(hw
, IXGBE_RXCTRL
);
4365 /* disable drop enable for 82598 parts */
4366 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
4367 rxctrl
|= IXGBE_RXCTRL_DMBYPS
;
4369 /* enable all receives */
4370 rxctrl
|= IXGBE_RXCTRL_RXEN
;
4371 hw
->mac
.ops
.enable_rx_dma(hw
, rxctrl
);
4374 static int ixgbe_vlan_rx_add_vid(struct net_device
*netdev
,
4375 __be16 proto
, u16 vid
)
4377 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4378 struct ixgbe_hw
*hw
= &adapter
->hw
;
4380 /* add VID to filter table */
4381 if (!vid
|| !(adapter
->flags2
& IXGBE_FLAG2_VLAN_PROMISC
))
4382 hw
->mac
.ops
.set_vfta(&adapter
->hw
, vid
, VMDQ_P(0), true, !!vid
);
4384 set_bit(vid
, adapter
->active_vlans
);
4389 static int ixgbe_find_vlvf_entry(struct ixgbe_hw
*hw
, u32 vlan
)
4394 /* short cut the special case */
4398 /* Search for the vlan id in the VLVF entries */
4399 for (idx
= IXGBE_VLVF_ENTRIES
; --idx
;) {
4400 vlvf
= IXGBE_READ_REG(hw
, IXGBE_VLVF(idx
));
4401 if ((vlvf
& VLAN_VID_MASK
) == vlan
)
4408 void ixgbe_update_pf_promisc_vlvf(struct ixgbe_adapter
*adapter
, u32 vid
)
4410 struct ixgbe_hw
*hw
= &adapter
->hw
;
4414 idx
= ixgbe_find_vlvf_entry(hw
, vid
);
4418 /* See if any other pools are set for this VLAN filter
4419 * entry other than the PF.
4421 word
= idx
* 2 + (VMDQ_P(0) / 32);
4422 bits
= ~BIT(VMDQ_P(0) % 32);
4423 bits
&= IXGBE_READ_REG(hw
, IXGBE_VLVFB(word
));
4425 /* Disable the filter so this falls into the default pool. */
4426 if (!bits
&& !IXGBE_READ_REG(hw
, IXGBE_VLVFB(word
^ 1))) {
4427 if (!(adapter
->flags2
& IXGBE_FLAG2_VLAN_PROMISC
))
4428 IXGBE_WRITE_REG(hw
, IXGBE_VLVFB(word
), 0);
4429 IXGBE_WRITE_REG(hw
, IXGBE_VLVF(idx
), 0);
4433 static int ixgbe_vlan_rx_kill_vid(struct net_device
*netdev
,
4434 __be16 proto
, u16 vid
)
4436 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4437 struct ixgbe_hw
*hw
= &adapter
->hw
;
4439 /* remove VID from filter table */
4440 if (vid
&& !(adapter
->flags2
& IXGBE_FLAG2_VLAN_PROMISC
))
4441 hw
->mac
.ops
.set_vfta(hw
, vid
, VMDQ_P(0), false, true);
4443 clear_bit(vid
, adapter
->active_vlans
);
4449 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
4450 * @adapter: driver data
4452 static void ixgbe_vlan_strip_disable(struct ixgbe_adapter
*adapter
)
4454 struct ixgbe_hw
*hw
= &adapter
->hw
;
4458 switch (hw
->mac
.type
) {
4459 case ixgbe_mac_82598EB
:
4460 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
4461 vlnctrl
&= ~IXGBE_VLNCTRL_VME
;
4462 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
4464 case ixgbe_mac_82599EB
:
4465 case ixgbe_mac_X540
:
4466 case ixgbe_mac_X550
:
4467 case ixgbe_mac_X550EM_x
:
4468 case ixgbe_mac_x550em_a
:
4469 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
4470 struct ixgbe_ring
*ring
= adapter
->rx_ring
[i
];
4472 if (!netif_is_ixgbe(ring
->netdev
))
4476 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(j
));
4477 vlnctrl
&= ~IXGBE_RXDCTL_VME
;
4478 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(j
), vlnctrl
);
4487 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
4488 * @adapter: driver data
4490 static void ixgbe_vlan_strip_enable(struct ixgbe_adapter
*adapter
)
4492 struct ixgbe_hw
*hw
= &adapter
->hw
;
4496 switch (hw
->mac
.type
) {
4497 case ixgbe_mac_82598EB
:
4498 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
4499 vlnctrl
|= IXGBE_VLNCTRL_VME
;
4500 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
4502 case ixgbe_mac_82599EB
:
4503 case ixgbe_mac_X540
:
4504 case ixgbe_mac_X550
:
4505 case ixgbe_mac_X550EM_x
:
4506 case ixgbe_mac_x550em_a
:
4507 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
4508 struct ixgbe_ring
*ring
= adapter
->rx_ring
[i
];
4510 if (!netif_is_ixgbe(ring
->netdev
))
4514 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(j
));
4515 vlnctrl
|= IXGBE_RXDCTL_VME
;
4516 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(j
), vlnctrl
);
4524 static void ixgbe_vlan_promisc_enable(struct ixgbe_adapter
*adapter
)
4526 struct ixgbe_hw
*hw
= &adapter
->hw
;
4529 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
4531 if (adapter
->flags
& IXGBE_FLAG_VMDQ_ENABLED
) {
4532 /* For VMDq and SR-IOV we must leave VLAN filtering enabled */
4533 vlnctrl
|= IXGBE_VLNCTRL_VFE
;
4534 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
4536 vlnctrl
&= ~IXGBE_VLNCTRL_VFE
;
4537 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
4541 /* Nothing to do for 82598 */
4542 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
4545 /* We are already in VLAN promisc, nothing to do */
4546 if (adapter
->flags2
& IXGBE_FLAG2_VLAN_PROMISC
)
4549 /* Set flag so we don't redo unnecessary work */
4550 adapter
->flags2
|= IXGBE_FLAG2_VLAN_PROMISC
;
4552 /* Add PF to all active pools */
4553 for (i
= IXGBE_VLVF_ENTRIES
; --i
;) {
4554 u32 reg_offset
= IXGBE_VLVFB(i
* 2 + VMDQ_P(0) / 32);
4555 u32 vlvfb
= IXGBE_READ_REG(hw
, reg_offset
);
4557 vlvfb
|= BIT(VMDQ_P(0) % 32);
4558 IXGBE_WRITE_REG(hw
, reg_offset
, vlvfb
);
4561 /* Set all bits in the VLAN filter table array */
4562 for (i
= hw
->mac
.vft_size
; i
--;)
4563 IXGBE_WRITE_REG(hw
, IXGBE_VFTA(i
), ~0U);
4566 #define VFTA_BLOCK_SIZE 8
4567 static void ixgbe_scrub_vfta(struct ixgbe_adapter
*adapter
, u32 vfta_offset
)
4569 struct ixgbe_hw
*hw
= &adapter
->hw
;
4570 u32 vfta
[VFTA_BLOCK_SIZE
] = { 0 };
4571 u32 vid_start
= vfta_offset
* 32;
4572 u32 vid_end
= vid_start
+ (VFTA_BLOCK_SIZE
* 32);
4573 u32 i
, vid
, word
, bits
;
4575 for (i
= IXGBE_VLVF_ENTRIES
; --i
;) {
4576 u32 vlvf
= IXGBE_READ_REG(hw
, IXGBE_VLVF(i
));
4578 /* pull VLAN ID from VLVF */
4579 vid
= vlvf
& VLAN_VID_MASK
;
4581 /* only concern outselves with a certain range */
4582 if (vid
< vid_start
|| vid
>= vid_end
)
4586 /* record VLAN ID in VFTA */
4587 vfta
[(vid
- vid_start
) / 32] |= BIT(vid
% 32);
4589 /* if PF is part of this then continue */
4590 if (test_bit(vid
, adapter
->active_vlans
))
4594 /* remove PF from the pool */
4595 word
= i
* 2 + VMDQ_P(0) / 32;
4596 bits
= ~BIT(VMDQ_P(0) % 32);
4597 bits
&= IXGBE_READ_REG(hw
, IXGBE_VLVFB(word
));
4598 IXGBE_WRITE_REG(hw
, IXGBE_VLVFB(word
), bits
);
4601 /* extract values from active_vlans and write back to VFTA */
4602 for (i
= VFTA_BLOCK_SIZE
; i
--;) {
4603 vid
= (vfta_offset
+ i
) * 32;
4604 word
= vid
/ BITS_PER_LONG
;
4605 bits
= vid
% BITS_PER_LONG
;
4607 vfta
[i
] |= adapter
->active_vlans
[word
] >> bits
;
4609 IXGBE_WRITE_REG(hw
, IXGBE_VFTA(vfta_offset
+ i
), vfta
[i
]);
4613 static void ixgbe_vlan_promisc_disable(struct ixgbe_adapter
*adapter
)
4615 struct ixgbe_hw
*hw
= &adapter
->hw
;
4618 /* Set VLAN filtering to enabled */
4619 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
4620 vlnctrl
|= IXGBE_VLNCTRL_VFE
;
4621 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
4623 if (!(adapter
->flags
& IXGBE_FLAG_VMDQ_ENABLED
) ||
4624 hw
->mac
.type
== ixgbe_mac_82598EB
)
4627 /* We are not in VLAN promisc, nothing to do */
4628 if (!(adapter
->flags2
& IXGBE_FLAG2_VLAN_PROMISC
))
4631 /* Set flag so we don't redo unnecessary work */
4632 adapter
->flags2
&= ~IXGBE_FLAG2_VLAN_PROMISC
;
4634 for (i
= 0; i
< hw
->mac
.vft_size
; i
+= VFTA_BLOCK_SIZE
)
4635 ixgbe_scrub_vfta(adapter
, i
);
4638 static void ixgbe_restore_vlan(struct ixgbe_adapter
*adapter
)
4642 ixgbe_vlan_rx_add_vid(adapter
->netdev
, htons(ETH_P_8021Q
), 0);
4644 for_each_set_bit_from(vid
, adapter
->active_vlans
, VLAN_N_VID
)
4645 ixgbe_vlan_rx_add_vid(adapter
->netdev
, htons(ETH_P_8021Q
), vid
);
4649 * ixgbe_write_mc_addr_list - write multicast addresses to MTA
4650 * @netdev: network interface device structure
4652 * Writes multicast address list to the MTA hash table.
4653 * Returns: -ENOMEM on failure
4654 * 0 on no addresses written
4655 * X on writing X addresses to MTA
4657 static int ixgbe_write_mc_addr_list(struct net_device
*netdev
)
4659 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4660 struct ixgbe_hw
*hw
= &adapter
->hw
;
4662 if (!netif_running(netdev
))
4665 if (hw
->mac
.ops
.update_mc_addr_list
)
4666 hw
->mac
.ops
.update_mc_addr_list(hw
, netdev
);
4670 #ifdef CONFIG_PCI_IOV
4671 ixgbe_restore_vf_multicasts(adapter
);
4674 return netdev_mc_count(netdev
);
4677 #ifdef CONFIG_PCI_IOV
4678 void ixgbe_full_sync_mac_table(struct ixgbe_adapter
*adapter
)
4680 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4681 struct ixgbe_hw
*hw
= &adapter
->hw
;
4684 for (i
= 0; i
< hw
->mac
.num_rar_entries
; i
++, mac_table
++) {
4685 mac_table
->state
&= ~IXGBE_MAC_STATE_MODIFIED
;
4687 if (mac_table
->state
& IXGBE_MAC_STATE_IN_USE
)
4688 hw
->mac
.ops
.set_rar(hw
, i
,
4693 hw
->mac
.ops
.clear_rar(hw
, i
);
4698 static void ixgbe_sync_mac_table(struct ixgbe_adapter
*adapter
)
4700 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4701 struct ixgbe_hw
*hw
= &adapter
->hw
;
4704 for (i
= 0; i
< hw
->mac
.num_rar_entries
; i
++, mac_table
++) {
4705 if (!(mac_table
->state
& IXGBE_MAC_STATE_MODIFIED
))
4708 mac_table
->state
&= ~IXGBE_MAC_STATE_MODIFIED
;
4710 if (mac_table
->state
& IXGBE_MAC_STATE_IN_USE
)
4711 hw
->mac
.ops
.set_rar(hw
, i
,
4716 hw
->mac
.ops
.clear_rar(hw
, i
);
4720 static void ixgbe_flush_sw_mac_table(struct ixgbe_adapter
*adapter
)
4722 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4723 struct ixgbe_hw
*hw
= &adapter
->hw
;
4726 for (i
= 0; i
< hw
->mac
.num_rar_entries
; i
++, mac_table
++) {
4727 mac_table
->state
|= IXGBE_MAC_STATE_MODIFIED
;
4728 mac_table
->state
&= ~IXGBE_MAC_STATE_IN_USE
;
4731 ixgbe_sync_mac_table(adapter
);
4734 static int ixgbe_available_rars(struct ixgbe_adapter
*adapter
, u16 pool
)
4736 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4737 struct ixgbe_hw
*hw
= &adapter
->hw
;
4740 for (i
= 0; i
< hw
->mac
.num_rar_entries
; i
++, mac_table
++) {
4741 /* do not count default RAR as available */
4742 if (mac_table
->state
& IXGBE_MAC_STATE_DEFAULT
)
4745 /* only count unused and addresses that belong to us */
4746 if (mac_table
->state
& IXGBE_MAC_STATE_IN_USE
) {
4747 if (mac_table
->pool
!= pool
)
4757 /* this function destroys the first RAR entry */
4758 static void ixgbe_mac_set_default_filter(struct ixgbe_adapter
*adapter
)
4760 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4761 struct ixgbe_hw
*hw
= &adapter
->hw
;
4763 memcpy(&mac_table
->addr
, hw
->mac
.addr
, ETH_ALEN
);
4764 mac_table
->pool
= VMDQ_P(0);
4766 mac_table
->state
= IXGBE_MAC_STATE_DEFAULT
| IXGBE_MAC_STATE_IN_USE
;
4768 hw
->mac
.ops
.set_rar(hw
, 0, mac_table
->addr
, mac_table
->pool
,
4772 int ixgbe_add_mac_filter(struct ixgbe_adapter
*adapter
,
4773 const u8
*addr
, u16 pool
)
4775 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4776 struct ixgbe_hw
*hw
= &adapter
->hw
;
4779 if (is_zero_ether_addr(addr
))
4782 for (i
= 0; i
< hw
->mac
.num_rar_entries
; i
++, mac_table
++) {
4783 if (mac_table
->state
& IXGBE_MAC_STATE_IN_USE
)
4786 ether_addr_copy(mac_table
->addr
, addr
);
4787 mac_table
->pool
= pool
;
4789 mac_table
->state
|= IXGBE_MAC_STATE_MODIFIED
|
4790 IXGBE_MAC_STATE_IN_USE
;
4792 ixgbe_sync_mac_table(adapter
);
4800 int ixgbe_del_mac_filter(struct ixgbe_adapter
*adapter
,
4801 const u8
*addr
, u16 pool
)
4803 struct ixgbe_mac_addr
*mac_table
= &adapter
->mac_table
[0];
4804 struct ixgbe_hw
*hw
= &adapter
->hw
;
4807 if (is_zero_ether_addr(addr
))
4810 /* search table for addr, if found clear IN_USE flag and sync */
4811 for (i
= 0; i
< hw
->mac
.num_rar_entries
; i
++, mac_table
++) {
4812 /* we can only delete an entry if it is in use */
4813 if (!(mac_table
->state
& IXGBE_MAC_STATE_IN_USE
))
4815 /* we only care about entries that belong to the given pool */
4816 if (mac_table
->pool
!= pool
)
4818 /* we only care about a specific MAC address */
4819 if (!ether_addr_equal(addr
, mac_table
->addr
))
4822 mac_table
->state
|= IXGBE_MAC_STATE_MODIFIED
;
4823 mac_table
->state
&= ~IXGBE_MAC_STATE_IN_USE
;
4825 ixgbe_sync_mac_table(adapter
);
4833 static int ixgbe_uc_sync(struct net_device
*netdev
, const unsigned char *addr
)
4835 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4838 ret
= ixgbe_add_mac_filter(adapter
, addr
, VMDQ_P(0));
4840 return min_t(int, ret
, 0);
4843 static int ixgbe_uc_unsync(struct net_device
*netdev
, const unsigned char *addr
)
4845 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4847 ixgbe_del_mac_filter(adapter
, addr
, VMDQ_P(0));
4853 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
4854 * @netdev: network interface device structure
4856 * The set_rx_method entry point is called whenever the unicast/multicast
4857 * address list or the network interface flags are updated. This routine is
4858 * responsible for configuring the hardware for proper unicast, multicast and
4861 void ixgbe_set_rx_mode(struct net_device
*netdev
)
4863 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4864 struct ixgbe_hw
*hw
= &adapter
->hw
;
4865 u32 fctrl
, vmolr
= IXGBE_VMOLR_BAM
| IXGBE_VMOLR_AUPE
;
4866 netdev_features_t features
= netdev
->features
;
4869 /* Check for Promiscuous and All Multicast modes */
4870 fctrl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
4872 /* set all bits that we expect to always be set */
4873 fctrl
&= ~IXGBE_FCTRL_SBP
; /* disable store-bad-packets */
4874 fctrl
|= IXGBE_FCTRL_BAM
;
4875 fctrl
|= IXGBE_FCTRL_DPF
; /* discard pause frames when FC enabled */
4876 fctrl
|= IXGBE_FCTRL_PMCF
;
4878 /* clear the bits we are changing the status of */
4879 fctrl
&= ~(IXGBE_FCTRL_UPE
| IXGBE_FCTRL_MPE
);
4880 if (netdev
->flags
& IFF_PROMISC
) {
4881 hw
->addr_ctrl
.user_set_promisc
= true;
4882 fctrl
|= (IXGBE_FCTRL_UPE
| IXGBE_FCTRL_MPE
);
4883 vmolr
|= IXGBE_VMOLR_MPE
;
4884 features
&= ~NETIF_F_HW_VLAN_CTAG_FILTER
;
4886 if (netdev
->flags
& IFF_ALLMULTI
) {
4887 fctrl
|= IXGBE_FCTRL_MPE
;
4888 vmolr
|= IXGBE_VMOLR_MPE
;
4890 hw
->addr_ctrl
.user_set_promisc
= false;
4894 * Write addresses to available RAR registers, if there is not
4895 * sufficient space to store all the addresses then enable
4896 * unicast promiscuous mode
4898 if (__dev_uc_sync(netdev
, ixgbe_uc_sync
, ixgbe_uc_unsync
)) {
4899 fctrl
|= IXGBE_FCTRL_UPE
;
4900 vmolr
|= IXGBE_VMOLR_ROPE
;
4903 /* Write addresses to the MTA, if the attempt fails
4904 * then we should just turn on promiscuous mode so
4905 * that we can at least receive multicast traffic
4907 count
= ixgbe_write_mc_addr_list(netdev
);
4909 fctrl
|= IXGBE_FCTRL_MPE
;
4910 vmolr
|= IXGBE_VMOLR_MPE
;
4912 vmolr
|= IXGBE_VMOLR_ROMPE
;
4915 if (hw
->mac
.type
!= ixgbe_mac_82598EB
) {
4916 vmolr
|= IXGBE_READ_REG(hw
, IXGBE_VMOLR(VMDQ_P(0))) &
4917 ~(IXGBE_VMOLR_MPE
| IXGBE_VMOLR_ROMPE
|
4919 IXGBE_WRITE_REG(hw
, IXGBE_VMOLR(VMDQ_P(0)), vmolr
);
4922 /* This is useful for sniffing bad packets. */
4923 if (features
& NETIF_F_RXALL
) {
4924 /* UPE and MPE will be handled by normal PROMISC logic
4925 * in e1000e_set_rx_mode */
4926 fctrl
|= (IXGBE_FCTRL_SBP
| /* Receive bad packets */
4927 IXGBE_FCTRL_BAM
| /* RX All Bcast Pkts */
4928 IXGBE_FCTRL_PMCF
); /* RX All MAC Ctrl Pkts */
4930 fctrl
&= ~(IXGBE_FCTRL_DPF
);
4931 /* NOTE: VLAN filtering is disabled by setting PROMISC */
4934 IXGBE_WRITE_REG(hw
, IXGBE_FCTRL
, fctrl
);
4936 if (features
& NETIF_F_HW_VLAN_CTAG_RX
)
4937 ixgbe_vlan_strip_enable(adapter
);
4939 ixgbe_vlan_strip_disable(adapter
);
4941 if (features
& NETIF_F_HW_VLAN_CTAG_FILTER
)
4942 ixgbe_vlan_promisc_disable(adapter
);
4944 ixgbe_vlan_promisc_enable(adapter
);
4947 static void ixgbe_napi_enable_all(struct ixgbe_adapter
*adapter
)
4951 for (q_idx
= 0; q_idx
< adapter
->num_q_vectors
; q_idx
++)
4952 napi_enable(&adapter
->q_vector
[q_idx
]->napi
);
4955 static void ixgbe_napi_disable_all(struct ixgbe_adapter
*adapter
)
4959 for (q_idx
= 0; q_idx
< adapter
->num_q_vectors
; q_idx
++)
4960 napi_disable(&adapter
->q_vector
[q_idx
]->napi
);
4963 static void ixgbe_clear_udp_tunnel_port(struct ixgbe_adapter
*adapter
, u32 mask
)
4965 struct ixgbe_hw
*hw
= &adapter
->hw
;
4968 if (!(adapter
->flags
& (IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE
|
4969 IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE
)))
4972 vxlanctrl
= IXGBE_READ_REG(hw
, IXGBE_VXLANCTRL
) & ~mask
;
4973 IXGBE_WRITE_REG(hw
, IXGBE_VXLANCTRL
, vxlanctrl
);
4975 if (mask
& IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK
)
4976 adapter
->vxlan_port
= 0;
4978 if (mask
& IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK
)
4979 adapter
->geneve_port
= 0;
4982 #ifdef CONFIG_IXGBE_DCB
4984 * ixgbe_configure_dcb - Configure DCB hardware
4985 * @adapter: ixgbe adapter struct
4987 * This is called by the driver on open to configure the DCB hardware.
4988 * This is also called by the gennetlink interface when reconfiguring
4991 static void ixgbe_configure_dcb(struct ixgbe_adapter
*adapter
)
4993 struct ixgbe_hw
*hw
= &adapter
->hw
;
4994 int max_frame
= adapter
->netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
4996 if (!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
)) {
4997 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
4998 netif_set_gso_max_size(adapter
->netdev
, 65536);
5002 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
5003 netif_set_gso_max_size(adapter
->netdev
, 32768);
5006 if (adapter
->netdev
->features
& NETIF_F_FCOE_MTU
)
5007 max_frame
= max(max_frame
, IXGBE_FCOE_JUMBO_FRAME_SIZE
);
5010 /* reconfigure the hardware */
5011 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
) {
5012 ixgbe_dcb_calculate_tc_credits(hw
, &adapter
->dcb_cfg
, max_frame
,
5014 ixgbe_dcb_calculate_tc_credits(hw
, &adapter
->dcb_cfg
, max_frame
,
5016 ixgbe_dcb_hw_config(hw
, &adapter
->dcb_cfg
);
5017 } else if (adapter
->ixgbe_ieee_ets
&& adapter
->ixgbe_ieee_pfc
) {
5018 ixgbe_dcb_hw_ets(&adapter
->hw
,
5019 adapter
->ixgbe_ieee_ets
,
5021 ixgbe_dcb_hw_pfc_config(&adapter
->hw
,
5022 adapter
->ixgbe_ieee_pfc
->pfc_en
,
5023 adapter
->ixgbe_ieee_ets
->prio_tc
);
5026 /* Enable RSS Hash per TC */
5027 if (hw
->mac
.type
!= ixgbe_mac_82598EB
) {
5029 u16 rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
- 1;
5036 /* write msb to all 8 TCs in one write */
5037 IXGBE_WRITE_REG(hw
, IXGBE_RQTC
, msb
* 0x11111111);
5042 /* Additional bittime to account for IXGBE framing */
5043 #define IXGBE_ETH_FRAMING 20
5046 * ixgbe_hpbthresh - calculate high water mark for flow control
5048 * @adapter: board private structure to calculate for
5049 * @pb: packet buffer to calculate
5051 static int ixgbe_hpbthresh(struct ixgbe_adapter
*adapter
, int pb
)
5053 struct ixgbe_hw
*hw
= &adapter
->hw
;
5054 struct net_device
*dev
= adapter
->netdev
;
5055 int link
, tc
, kb
, marker
;
5058 /* Calculate max LAN frame size */
5059 tc
= link
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ IXGBE_ETH_FRAMING
;
5062 /* FCoE traffic class uses FCOE jumbo frames */
5063 if ((dev
->features
& NETIF_F_FCOE_MTU
) &&
5064 (tc
< IXGBE_FCOE_JUMBO_FRAME_SIZE
) &&
5065 (pb
== ixgbe_fcoe_get_tc(adapter
)))
5066 tc
= IXGBE_FCOE_JUMBO_FRAME_SIZE
;
5069 /* Calculate delay value for device */
5070 switch (hw
->mac
.type
) {
5071 case ixgbe_mac_X540
:
5072 case ixgbe_mac_X550
:
5073 case ixgbe_mac_X550EM_x
:
5074 case ixgbe_mac_x550em_a
:
5075 dv_id
= IXGBE_DV_X540(link
, tc
);
5078 dv_id
= IXGBE_DV(link
, tc
);
5082 /* Loopback switch introduces additional latency */
5083 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
5084 dv_id
+= IXGBE_B2BT(tc
);
5086 /* Delay value is calculated in bit times convert to KB */
5087 kb
= IXGBE_BT2KB(dv_id
);
5088 rx_pba
= IXGBE_READ_REG(hw
, IXGBE_RXPBSIZE(pb
)) >> 10;
5090 marker
= rx_pba
- kb
;
5092 /* It is possible that the packet buffer is not large enough
5093 * to provide required headroom. In this case throw an error
5094 * to user and a do the best we can.
5097 e_warn(drv
, "Packet Buffer(%i) can not provide enough"
5098 "headroom to support flow control."
5099 "Decrease MTU or number of traffic classes\n", pb
);
5107 * ixgbe_lpbthresh - calculate low water mark for for flow control
5109 * @adapter: board private structure to calculate for
5110 * @pb: packet buffer to calculate
5112 static int ixgbe_lpbthresh(struct ixgbe_adapter
*adapter
, int pb
)
5114 struct ixgbe_hw
*hw
= &adapter
->hw
;
5115 struct net_device
*dev
= adapter
->netdev
;
5119 /* Calculate max LAN frame size */
5120 tc
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
5123 /* FCoE traffic class uses FCOE jumbo frames */
5124 if ((dev
->features
& NETIF_F_FCOE_MTU
) &&
5125 (tc
< IXGBE_FCOE_JUMBO_FRAME_SIZE
) &&
5126 (pb
== netdev_get_prio_tc_map(dev
, adapter
->fcoe
.up
)))
5127 tc
= IXGBE_FCOE_JUMBO_FRAME_SIZE
;
5130 /* Calculate delay value for device */
5131 switch (hw
->mac
.type
) {
5132 case ixgbe_mac_X540
:
5133 case ixgbe_mac_X550
:
5134 case ixgbe_mac_X550EM_x
:
5135 case ixgbe_mac_x550em_a
:
5136 dv_id
= IXGBE_LOW_DV_X540(tc
);
5139 dv_id
= IXGBE_LOW_DV(tc
);
5143 /* Delay value is calculated in bit times convert to KB */
5144 return IXGBE_BT2KB(dv_id
);
5148 * ixgbe_pbthresh_setup - calculate and setup high low water marks
5150 static void ixgbe_pbthresh_setup(struct ixgbe_adapter
*adapter
)
5152 struct ixgbe_hw
*hw
= &adapter
->hw
;
5153 int num_tc
= adapter
->hw_tcs
;
5159 for (i
= 0; i
< num_tc
; i
++) {
5160 hw
->fc
.high_water
[i
] = ixgbe_hpbthresh(adapter
, i
);
5161 hw
->fc
.low_water
[i
] = ixgbe_lpbthresh(adapter
, i
);
5163 /* Low water marks must not be larger than high water marks */
5164 if (hw
->fc
.low_water
[i
] > hw
->fc
.high_water
[i
])
5165 hw
->fc
.low_water
[i
] = 0;
5168 for (; i
< MAX_TRAFFIC_CLASS
; i
++)
5169 hw
->fc
.high_water
[i
] = 0;
5172 static void ixgbe_configure_pb(struct ixgbe_adapter
*adapter
)
5174 struct ixgbe_hw
*hw
= &adapter
->hw
;
5176 u8 tc
= adapter
->hw_tcs
;
5178 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
||
5179 adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
)
5180 hdrm
= 32 << adapter
->fdir_pballoc
;
5184 hw
->mac
.ops
.set_rxpba(hw
, tc
, hdrm
, PBA_STRATEGY_EQUAL
);
5185 ixgbe_pbthresh_setup(adapter
);
5188 static void ixgbe_fdir_filter_restore(struct ixgbe_adapter
*adapter
)
5190 struct ixgbe_hw
*hw
= &adapter
->hw
;
5191 struct hlist_node
*node2
;
5192 struct ixgbe_fdir_filter
*filter
;
5195 spin_lock(&adapter
->fdir_perfect_lock
);
5197 if (!hlist_empty(&adapter
->fdir_filter_list
))
5198 ixgbe_fdir_set_input_mask_82599(hw
, &adapter
->fdir_mask
);
5200 hlist_for_each_entry_safe(filter
, node2
,
5201 &adapter
->fdir_filter_list
, fdir_node
) {
5202 if (filter
->action
== IXGBE_FDIR_DROP_QUEUE
) {
5203 queue
= IXGBE_FDIR_DROP_QUEUE
;
5205 u32 ring
= ethtool_get_flow_spec_ring(filter
->action
);
5206 u8 vf
= ethtool_get_flow_spec_ring_vf(filter
->action
);
5208 if (!vf
&& (ring
>= adapter
->num_rx_queues
)) {
5209 e_err(drv
, "FDIR restore failed without VF, ring: %u\n",
5213 ((vf
> adapter
->num_vfs
) ||
5214 ring
>= adapter
->num_rx_queues_per_pool
)) {
5215 e_err(drv
, "FDIR restore failed with VF, vf: %hhu, ring: %u\n",
5220 /* Map the ring onto the absolute queue index */
5222 queue
= adapter
->rx_ring
[ring
]->reg_idx
;
5225 adapter
->num_rx_queues_per_pool
) + ring
;
5228 ixgbe_fdir_write_perfect_filter_82599(hw
,
5229 &filter
->filter
, filter
->sw_idx
, queue
);
5232 spin_unlock(&adapter
->fdir_perfect_lock
);
5236 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
5237 * @rx_ring: ring to free buffers from
5239 static void ixgbe_clean_rx_ring(struct ixgbe_ring
*rx_ring
)
5241 u16 i
= rx_ring
->next_to_clean
;
5242 struct ixgbe_rx_buffer
*rx_buffer
= &rx_ring
->rx_buffer_info
[i
];
5244 /* Free all the Rx ring sk_buffs */
5245 while (i
!= rx_ring
->next_to_alloc
) {
5246 if (rx_buffer
->skb
) {
5247 struct sk_buff
*skb
= rx_buffer
->skb
;
5248 if (IXGBE_CB(skb
)->page_released
)
5249 dma_unmap_page_attrs(rx_ring
->dev
,
5251 ixgbe_rx_pg_size(rx_ring
),
5257 /* Invalidate cache lines that may have been written to by
5258 * device so that we avoid corrupting memory.
5260 dma_sync_single_range_for_cpu(rx_ring
->dev
,
5262 rx_buffer
->page_offset
,
5263 ixgbe_rx_bufsz(rx_ring
),
5266 /* free resources associated with mapping */
5267 dma_unmap_page_attrs(rx_ring
->dev
, rx_buffer
->dma
,
5268 ixgbe_rx_pg_size(rx_ring
),
5271 __page_frag_cache_drain(rx_buffer
->page
,
5272 rx_buffer
->pagecnt_bias
);
5276 if (i
== rx_ring
->count
) {
5278 rx_buffer
= rx_ring
->rx_buffer_info
;
5282 rx_ring
->next_to_alloc
= 0;
5283 rx_ring
->next_to_clean
= 0;
5284 rx_ring
->next_to_use
= 0;
5287 static int ixgbe_fwd_ring_up(struct ixgbe_adapter
*adapter
,
5288 struct ixgbe_fwd_adapter
*accel
)
5290 u16 rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
;
5291 int num_tc
= netdev_get_num_tc(adapter
->netdev
);
5292 struct net_device
*vdev
= accel
->netdev
;
5295 baseq
= accel
->pool
* adapter
->num_rx_queues_per_pool
;
5296 netdev_dbg(vdev
, "pool %i:%i queues %i:%i\n",
5297 accel
->pool
, adapter
->num_rx_pools
,
5298 baseq
, baseq
+ adapter
->num_rx_queues_per_pool
);
5300 accel
->rx_base_queue
= baseq
;
5301 accel
->tx_base_queue
= baseq
;
5303 /* record configuration for macvlan interface in vdev */
5304 for (i
= 0; i
< num_tc
; i
++)
5305 netdev_bind_sb_channel_queue(adapter
->netdev
, vdev
,
5306 i
, rss_i
, baseq
+ (rss_i
* i
));
5308 for (i
= 0; i
< adapter
->num_rx_queues_per_pool
; i
++)
5309 adapter
->rx_ring
[baseq
+ i
]->netdev
= vdev
;
5311 /* Guarantee all rings are updated before we update the
5312 * MAC address filter.
5316 /* ixgbe_add_mac_filter will return an index if it succeeds, so we
5317 * need to only treat it as an error value if it is negative.
5319 err
= ixgbe_add_mac_filter(adapter
, vdev
->dev_addr
,
5320 VMDQ_P(accel
->pool
));
5324 /* if we cannot add the MAC rule then disable the offload */
5325 macvlan_release_l2fw_offload(vdev
);
5327 for (i
= 0; i
< adapter
->num_rx_queues_per_pool
; i
++)
5328 adapter
->rx_ring
[baseq
+ i
]->netdev
= NULL
;
5330 netdev_err(vdev
, "L2FW offload disabled due to L2 filter error\n");
5332 /* unbind the queues and drop the subordinate channel config */
5333 netdev_unbind_sb_channel(adapter
->netdev
, vdev
);
5334 netdev_set_sb_channel(vdev
, 0);
5336 clear_bit(accel
->pool
, adapter
->fwd_bitmask
);
5342 static int ixgbe_macvlan_up(struct net_device
*vdev
, void *data
)
5344 struct ixgbe_adapter
*adapter
= data
;
5345 struct ixgbe_fwd_adapter
*accel
;
5347 if (!netif_is_macvlan(vdev
))
5350 accel
= macvlan_accel_priv(vdev
);
5354 ixgbe_fwd_ring_up(adapter
, accel
);
5359 static void ixgbe_configure_dfwd(struct ixgbe_adapter
*adapter
)
5361 netdev_walk_all_upper_dev_rcu(adapter
->netdev
,
5362 ixgbe_macvlan_up
, adapter
);
5365 static void ixgbe_configure(struct ixgbe_adapter
*adapter
)
5367 struct ixgbe_hw
*hw
= &adapter
->hw
;
5369 ixgbe_configure_pb(adapter
);
5370 #ifdef CONFIG_IXGBE_DCB
5371 ixgbe_configure_dcb(adapter
);
5374 * We must restore virtualization before VLANs or else
5375 * the VLVF registers will not be populated
5377 ixgbe_configure_virtualization(adapter
);
5379 ixgbe_set_rx_mode(adapter
->netdev
);
5380 ixgbe_restore_vlan(adapter
);
5381 ixgbe_ipsec_restore(adapter
);
5383 switch (hw
->mac
.type
) {
5384 case ixgbe_mac_82599EB
:
5385 case ixgbe_mac_X540
:
5386 hw
->mac
.ops
.disable_rx_buff(hw
);
5392 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) {
5393 ixgbe_init_fdir_signature_82599(&adapter
->hw
,
5394 adapter
->fdir_pballoc
);
5395 } else if (adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
) {
5396 ixgbe_init_fdir_perfect_82599(&adapter
->hw
,
5397 adapter
->fdir_pballoc
);
5398 ixgbe_fdir_filter_restore(adapter
);
5401 switch (hw
->mac
.type
) {
5402 case ixgbe_mac_82599EB
:
5403 case ixgbe_mac_X540
:
5404 hw
->mac
.ops
.enable_rx_buff(hw
);
5410 #ifdef CONFIG_IXGBE_DCA
5412 if (adapter
->flags
& IXGBE_FLAG_DCA_CAPABLE
)
5413 ixgbe_setup_dca(adapter
);
5414 #endif /* CONFIG_IXGBE_DCA */
5417 /* configure FCoE L2 filters, redirection table, and Rx control */
5418 ixgbe_configure_fcoe(adapter
);
5420 #endif /* IXGBE_FCOE */
5421 ixgbe_configure_tx(adapter
);
5422 ixgbe_configure_rx(adapter
);
5423 ixgbe_configure_dfwd(adapter
);
5427 * ixgbe_sfp_link_config - set up SFP+ link
5428 * @adapter: pointer to private adapter struct
5430 static void ixgbe_sfp_link_config(struct ixgbe_adapter
*adapter
)
5433 * We are assuming the worst case scenario here, and that
5434 * is that an SFP was inserted/removed after the reset
5435 * but before SFP detection was enabled. As such the best
5436 * solution is to just start searching as soon as we start
5438 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
5439 adapter
->flags2
|= IXGBE_FLAG2_SEARCH_FOR_SFP
;
5441 adapter
->flags2
|= IXGBE_FLAG2_SFP_NEEDS_RESET
;
5442 adapter
->sfp_poll_time
= 0;
5446 * ixgbe_non_sfp_link_config - set up non-SFP+ link
5447 * @hw: pointer to private hardware struct
5449 * Returns 0 on success, negative on failure
5451 static int ixgbe_non_sfp_link_config(struct ixgbe_hw
*hw
)
5454 bool autoneg
, link_up
= false;
5455 int ret
= IXGBE_ERR_LINK_SETUP
;
5457 if (hw
->mac
.ops
.check_link
)
5458 ret
= hw
->mac
.ops
.check_link(hw
, &speed
, &link_up
, false);
5463 speed
= hw
->phy
.autoneg_advertised
;
5464 if ((!speed
) && (hw
->mac
.ops
.get_link_capabilities
))
5465 ret
= hw
->mac
.ops
.get_link_capabilities(hw
, &speed
,
5470 if (hw
->mac
.ops
.setup_link
)
5471 ret
= hw
->mac
.ops
.setup_link(hw
, speed
, link_up
);
5476 static void ixgbe_setup_gpie(struct ixgbe_adapter
*adapter
)
5478 struct ixgbe_hw
*hw
= &adapter
->hw
;
5481 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
5482 gpie
= IXGBE_GPIE_MSIX_MODE
| IXGBE_GPIE_PBA_SUPPORT
|
5484 gpie
|= IXGBE_GPIE_EIAME
;
5486 * use EIAM to auto-mask when MSI-X interrupt is asserted
5487 * this saves a register write for every interrupt
5489 switch (hw
->mac
.type
) {
5490 case ixgbe_mac_82598EB
:
5491 IXGBE_WRITE_REG(hw
, IXGBE_EIAM
, IXGBE_EICS_RTX_QUEUE
);
5493 case ixgbe_mac_82599EB
:
5494 case ixgbe_mac_X540
:
5495 case ixgbe_mac_X550
:
5496 case ixgbe_mac_X550EM_x
:
5497 case ixgbe_mac_x550em_a
:
5499 IXGBE_WRITE_REG(hw
, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
5500 IXGBE_WRITE_REG(hw
, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
5504 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
5505 * specifically only auto mask tx and rx interrupts */
5506 IXGBE_WRITE_REG(hw
, IXGBE_EIAM
, IXGBE_EICS_RTX_QUEUE
);
5509 /* XXX: to interrupt immediately for EICS writes, enable this */
5510 /* gpie |= IXGBE_GPIE_EIMEN; */
5512 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
5513 gpie
&= ~IXGBE_GPIE_VTMODE_MASK
;
5515 switch (adapter
->ring_feature
[RING_F_VMDQ
].mask
) {
5516 case IXGBE_82599_VMDQ_8Q_MASK
:
5517 gpie
|= IXGBE_GPIE_VTMODE_16
;
5519 case IXGBE_82599_VMDQ_4Q_MASK
:
5520 gpie
|= IXGBE_GPIE_VTMODE_32
;
5523 gpie
|= IXGBE_GPIE_VTMODE_64
;
5528 /* Enable Thermal over heat sensor interrupt */
5529 if (adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
) {
5530 switch (adapter
->hw
.mac
.type
) {
5531 case ixgbe_mac_82599EB
:
5532 gpie
|= IXGBE_SDP0_GPIEN_8259X
;
5539 /* Enable fan failure interrupt */
5540 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
)
5541 gpie
|= IXGBE_SDP1_GPIEN(hw
);
5543 switch (hw
->mac
.type
) {
5544 case ixgbe_mac_82599EB
:
5545 gpie
|= IXGBE_SDP1_GPIEN_8259X
| IXGBE_SDP2_GPIEN_8259X
;
5547 case ixgbe_mac_X550EM_x
:
5548 case ixgbe_mac_x550em_a
:
5549 gpie
|= IXGBE_SDP0_GPIEN_X540
;
5555 IXGBE_WRITE_REG(hw
, IXGBE_GPIE
, gpie
);
5558 static void ixgbe_up_complete(struct ixgbe_adapter
*adapter
)
5560 struct ixgbe_hw
*hw
= &adapter
->hw
;
5564 ixgbe_get_hw_control(adapter
);
5565 ixgbe_setup_gpie(adapter
);
5567 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)
5568 ixgbe_configure_msix(adapter
);
5570 ixgbe_configure_msi_and_legacy(adapter
);
5572 /* enable the optics for 82599 SFP+ fiber */
5573 if (hw
->mac
.ops
.enable_tx_laser
)
5574 hw
->mac
.ops
.enable_tx_laser(hw
);
5576 if (hw
->phy
.ops
.set_phy_power
)
5577 hw
->phy
.ops
.set_phy_power(hw
, true);
5579 smp_mb__before_atomic();
5580 clear_bit(__IXGBE_DOWN
, &adapter
->state
);
5581 ixgbe_napi_enable_all(adapter
);
5583 if (ixgbe_is_sfp(hw
)) {
5584 ixgbe_sfp_link_config(adapter
);
5586 err
= ixgbe_non_sfp_link_config(hw
);
5588 e_err(probe
, "link_config FAILED %d\n", err
);
5591 /* clear any pending interrupts, may auto mask */
5592 IXGBE_READ_REG(hw
, IXGBE_EICR
);
5593 ixgbe_irq_enable(adapter
, true, true);
5596 * If this adapter has a fan, check to see if we had a failure
5597 * before we enabled the interrupt.
5599 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
) {
5600 u32 esdp
= IXGBE_READ_REG(hw
, IXGBE_ESDP
);
5601 if (esdp
& IXGBE_ESDP_SDP1
)
5602 e_crit(drv
, "Fan has stopped, replace the adapter\n");
5605 /* bring the link up in the watchdog, this could race with our first
5606 * link up interrupt but shouldn't be a problem */
5607 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
5608 adapter
->link_check_timeout
= jiffies
;
5609 mod_timer(&adapter
->service_timer
, jiffies
);
5611 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
5612 ctrl_ext
= IXGBE_READ_REG(hw
, IXGBE_CTRL_EXT
);
5613 ctrl_ext
|= IXGBE_CTRL_EXT_PFRSTD
;
5614 IXGBE_WRITE_REG(hw
, IXGBE_CTRL_EXT
, ctrl_ext
);
5617 void ixgbe_reinit_locked(struct ixgbe_adapter
*adapter
)
5619 WARN_ON(in_interrupt());
5620 /* put off any impending NetWatchDogTimeout */
5621 netif_trans_update(adapter
->netdev
);
5623 while (test_and_set_bit(__IXGBE_RESETTING
, &adapter
->state
))
5624 usleep_range(1000, 2000);
5625 if (adapter
->hw
.phy
.type
== ixgbe_phy_fw
)
5626 ixgbe_watchdog_link_is_down(adapter
);
5627 ixgbe_down(adapter
);
5629 * If SR-IOV enabled then wait a bit before bringing the adapter
5630 * back up to give the VFs time to respond to the reset. The
5631 * two second wait is based upon the watchdog timer cycle in
5634 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
5637 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
5640 void ixgbe_up(struct ixgbe_adapter
*adapter
)
5642 /* hardware has been reset, we need to reload some things */
5643 ixgbe_configure(adapter
);
5645 ixgbe_up_complete(adapter
);
5648 static unsigned long ixgbe_get_completion_timeout(struct ixgbe_adapter
*adapter
)
5652 pcie_capability_read_word(adapter
->pdev
, PCI_EXP_DEVCTL2
, &devctl2
);
5654 switch (devctl2
& IXGBE_PCIDEVCTRL2_TIMEO_MASK
) {
5655 case IXGBE_PCIDEVCTRL2_17_34s
:
5656 case IXGBE_PCIDEVCTRL2_4_8s
:
5657 /* For now we cap the upper limit on delay to 2 seconds
5658 * as we end up going up to 34 seconds of delay in worst
5659 * case timeout value.
5661 case IXGBE_PCIDEVCTRL2_1_2s
:
5662 return 2000000ul; /* 2.0 s */
5663 case IXGBE_PCIDEVCTRL2_260_520ms
:
5664 return 520000ul; /* 520 ms */
5665 case IXGBE_PCIDEVCTRL2_65_130ms
:
5666 return 130000ul; /* 130 ms */
5667 case IXGBE_PCIDEVCTRL2_16_32ms
:
5668 return 32000ul; /* 32 ms */
5669 case IXGBE_PCIDEVCTRL2_1_2ms
:
5670 return 2000ul; /* 2 ms */
5671 case IXGBE_PCIDEVCTRL2_50_100us
:
5672 return 100ul; /* 100 us */
5673 case IXGBE_PCIDEVCTRL2_16_32ms_def
:
5674 return 32000ul; /* 32 ms */
5679 /* We shouldn't need to hit this path, but just in case default as
5680 * though completion timeout is not supported and support 32ms.
5685 void ixgbe_disable_rx(struct ixgbe_adapter
*adapter
)
5687 unsigned long wait_delay
, delay_interval
;
5688 struct ixgbe_hw
*hw
= &adapter
->hw
;
5692 /* disable receives */
5693 hw
->mac
.ops
.disable_rx(hw
);
5695 if (ixgbe_removed(hw
->hw_addr
))
5698 /* disable all enabled Rx queues */
5699 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
5700 struct ixgbe_ring
*ring
= adapter
->rx_ring
[i
];
5701 u8 reg_idx
= ring
->reg_idx
;
5703 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
5704 rxdctl
&= ~IXGBE_RXDCTL_ENABLE
;
5705 rxdctl
|= IXGBE_RXDCTL_SWFLSH
;
5707 /* write value back with RXDCTL.ENABLE bit cleared */
5708 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(reg_idx
), rxdctl
);
5711 /* RXDCTL.EN may not change on 82598 if link is down, so skip it */
5712 if (hw
->mac
.type
== ixgbe_mac_82598EB
&&
5713 !(IXGBE_READ_REG(hw
, IXGBE_LINKS
) & IXGBE_LINKS_UP
))
5716 /* Determine our minimum delay interval. We will increase this value
5717 * with each subsequent test. This way if the device returns quickly
5718 * we should spend as little time as possible waiting, however as
5719 * the time increases we will wait for larger periods of time.
5721 * The trick here is that we increase the interval using the
5722 * following pattern: 1x 3x 5x 7x 9x 11x 13x 15x 17x 19x. The result
5723 * of that wait is that it totals up to 100x whatever interval we
5724 * choose. Since our minimum wait is 100us we can just divide the
5725 * total timeout by 100 to get our minimum delay interval.
5727 delay_interval
= ixgbe_get_completion_timeout(adapter
) / 100;
5729 wait_loop
= IXGBE_MAX_RX_DESC_POLL
;
5730 wait_delay
= delay_interval
;
5732 while (wait_loop
--) {
5733 usleep_range(wait_delay
, wait_delay
+ 10);
5734 wait_delay
+= delay_interval
* 2;
5737 /* OR together the reading of all the active RXDCTL registers,
5738 * and then test the result. We need the disable to complete
5739 * before we start freeing the memory and invalidating the
5742 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
5743 struct ixgbe_ring
*ring
= adapter
->rx_ring
[i
];
5744 u8 reg_idx
= ring
->reg_idx
;
5746 rxdctl
|= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
5749 if (!(rxdctl
& IXGBE_RXDCTL_ENABLE
))
5754 "RXDCTL.ENABLE for one or more queues not cleared within the polling period\n");
5757 void ixgbe_disable_tx(struct ixgbe_adapter
*adapter
)
5759 unsigned long wait_delay
, delay_interval
;
5760 struct ixgbe_hw
*hw
= &adapter
->hw
;
5764 if (ixgbe_removed(hw
->hw_addr
))
5767 /* disable all enabled Tx queues */
5768 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
5769 struct ixgbe_ring
*ring
= adapter
->tx_ring
[i
];
5770 u8 reg_idx
= ring
->reg_idx
;
5772 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), IXGBE_TXDCTL_SWFLSH
);
5775 /* disable all enabled XDP Tx queues */
5776 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++) {
5777 struct ixgbe_ring
*ring
= adapter
->xdp_ring
[i
];
5778 u8 reg_idx
= ring
->reg_idx
;
5780 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), IXGBE_TXDCTL_SWFLSH
);
5783 /* If the link is not up there shouldn't be much in the way of
5784 * pending transactions. Those that are left will be flushed out
5785 * when the reset logic goes through the flush sequence to clean out
5786 * the pending Tx transactions.
5788 if (!(IXGBE_READ_REG(hw
, IXGBE_LINKS
) & IXGBE_LINKS_UP
))
5789 goto dma_engine_disable
;
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.
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.
5802 delay_interval
= ixgbe_get_completion_timeout(adapter
) / 100;
5804 wait_loop
= IXGBE_MAX_RX_DESC_POLL
;
5805 wait_delay
= delay_interval
;
5807 while (wait_loop
--) {
5808 usleep_range(wait_delay
, wait_delay
+ 10);
5809 wait_delay
+= delay_interval
* 2;
5812 /* OR together the reading of all the active TXDCTL registers,
5813 * and then test the result. We need the disable to complete
5814 * before we start freeing the memory and invalidating the
5817 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
5818 struct ixgbe_ring
*ring
= adapter
->tx_ring
[i
];
5819 u8 reg_idx
= ring
->reg_idx
;
5821 txdctl
|= IXGBE_READ_REG(hw
, IXGBE_TXDCTL(reg_idx
));
5823 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++) {
5824 struct ixgbe_ring
*ring
= adapter
->xdp_ring
[i
];
5825 u8 reg_idx
= ring
->reg_idx
;
5827 txdctl
|= IXGBE_READ_REG(hw
, IXGBE_TXDCTL(reg_idx
));
5830 if (!(txdctl
& IXGBE_TXDCTL_ENABLE
))
5831 goto dma_engine_disable
;
5835 "TXDCTL.ENABLE for one or more queues not cleared within the polling period\n");
5838 /* Disable the Tx DMA engine on 82599 and later MAC */
5839 switch (hw
->mac
.type
) {
5840 case ixgbe_mac_82599EB
:
5841 case ixgbe_mac_X540
:
5842 case ixgbe_mac_X550
:
5843 case ixgbe_mac_X550EM_x
:
5844 case ixgbe_mac_x550em_a
:
5845 IXGBE_WRITE_REG(hw
, IXGBE_DMATXCTL
,
5846 (IXGBE_READ_REG(hw
, IXGBE_DMATXCTL
) &
5847 ~IXGBE_DMATXCTL_TE
));
5854 void ixgbe_reset(struct ixgbe_adapter
*adapter
)
5856 struct ixgbe_hw
*hw
= &adapter
->hw
;
5857 struct net_device
*netdev
= adapter
->netdev
;
5860 if (ixgbe_removed(hw
->hw_addr
))
5862 /* lock SFP init bit to prevent race conditions with the watchdog */
5863 while (test_and_set_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
))
5864 usleep_range(1000, 2000);
5866 /* clear all SFP and link config related flags while holding SFP_INIT */
5867 adapter
->flags2
&= ~(IXGBE_FLAG2_SEARCH_FOR_SFP
|
5868 IXGBE_FLAG2_SFP_NEEDS_RESET
);
5869 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_CONFIG
;
5871 err
= hw
->mac
.ops
.init_hw(hw
);
5874 case IXGBE_ERR_SFP_NOT_PRESENT
:
5875 case IXGBE_ERR_SFP_NOT_SUPPORTED
:
5877 case IXGBE_ERR_MASTER_REQUESTS_PENDING
:
5878 e_dev_err("master disable timed out\n");
5880 case IXGBE_ERR_EEPROM_VERSION
:
5881 /* We are running on a pre-production device, log a warning */
5882 e_dev_warn("This device is a pre-production adapter/LOM. "
5883 "Please be aware there may be issues associated with "
5884 "your hardware. If you are experiencing problems "
5885 "please contact your Intel or hardware "
5886 "representative who provided you with this "
5890 e_dev_err("Hardware Error: %d\n", err
);
5893 clear_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
);
5895 /* flush entries out of MAC table */
5896 ixgbe_flush_sw_mac_table(adapter
);
5897 __dev_uc_unsync(netdev
, NULL
);
5899 /* do not flush user set addresses */
5900 ixgbe_mac_set_default_filter(adapter
);
5902 /* update SAN MAC vmdq pool selection */
5903 if (hw
->mac
.san_mac_rar_index
)
5904 hw
->mac
.ops
.set_vmdq_san_mac(hw
, VMDQ_P(0));
5906 if (test_bit(__IXGBE_PTP_RUNNING
, &adapter
->state
))
5907 ixgbe_ptp_reset(adapter
);
5909 if (hw
->phy
.ops
.set_phy_power
) {
5910 if (!netif_running(adapter
->netdev
) && !adapter
->wol
)
5911 hw
->phy
.ops
.set_phy_power(hw
, false);
5913 hw
->phy
.ops
.set_phy_power(hw
, true);
5918 * ixgbe_clean_tx_ring - Free Tx Buffers
5919 * @tx_ring: ring to be cleaned
5921 static void ixgbe_clean_tx_ring(struct ixgbe_ring
*tx_ring
)
5923 u16 i
= tx_ring
->next_to_clean
;
5924 struct ixgbe_tx_buffer
*tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
5926 while (i
!= tx_ring
->next_to_use
) {
5927 union ixgbe_adv_tx_desc
*eop_desc
, *tx_desc
;
5929 /* Free all the Tx ring sk_buffs */
5930 if (ring_is_xdp(tx_ring
))
5931 xdp_return_frame(tx_buffer
->xdpf
);
5933 dev_kfree_skb_any(tx_buffer
->skb
);
5935 /* unmap skb header data */
5936 dma_unmap_single(tx_ring
->dev
,
5937 dma_unmap_addr(tx_buffer
, dma
),
5938 dma_unmap_len(tx_buffer
, len
),
5941 /* check for eop_desc to determine the end of the packet */
5942 eop_desc
= tx_buffer
->next_to_watch
;
5943 tx_desc
= IXGBE_TX_DESC(tx_ring
, i
);
5945 /* unmap remaining buffers */
5946 while (tx_desc
!= eop_desc
) {
5950 if (unlikely(i
== tx_ring
->count
)) {
5952 tx_buffer
= tx_ring
->tx_buffer_info
;
5953 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
5956 /* unmap any remaining paged data */
5957 if (dma_unmap_len(tx_buffer
, len
))
5958 dma_unmap_page(tx_ring
->dev
,
5959 dma_unmap_addr(tx_buffer
, dma
),
5960 dma_unmap_len(tx_buffer
, len
),
5964 /* move us one more past the eop_desc for start of next pkt */
5967 if (unlikely(i
== tx_ring
->count
)) {
5969 tx_buffer
= tx_ring
->tx_buffer_info
;
5973 /* reset BQL for queue */
5974 if (!ring_is_xdp(tx_ring
))
5975 netdev_tx_reset_queue(txring_txq(tx_ring
));
5977 /* reset next_to_use and next_to_clean */
5978 tx_ring
->next_to_use
= 0;
5979 tx_ring
->next_to_clean
= 0;
5983 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
5984 * @adapter: board private structure
5986 static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter
*adapter
)
5990 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
5991 ixgbe_clean_rx_ring(adapter
->rx_ring
[i
]);
5995 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
5996 * @adapter: board private structure
5998 static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter
*adapter
)
6002 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
6003 ixgbe_clean_tx_ring(adapter
->tx_ring
[i
]);
6004 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++)
6005 ixgbe_clean_tx_ring(adapter
->xdp_ring
[i
]);
6008 static void ixgbe_fdir_filter_exit(struct ixgbe_adapter
*adapter
)
6010 struct hlist_node
*node2
;
6011 struct ixgbe_fdir_filter
*filter
;
6013 spin_lock(&adapter
->fdir_perfect_lock
);
6015 hlist_for_each_entry_safe(filter
, node2
,
6016 &adapter
->fdir_filter_list
, fdir_node
) {
6017 hlist_del(&filter
->fdir_node
);
6020 adapter
->fdir_filter_count
= 0;
6022 spin_unlock(&adapter
->fdir_perfect_lock
);
6025 void ixgbe_down(struct ixgbe_adapter
*adapter
)
6027 struct net_device
*netdev
= adapter
->netdev
;
6028 struct ixgbe_hw
*hw
= &adapter
->hw
;
6031 /* signal that we are down to the interrupt handler */
6032 if (test_and_set_bit(__IXGBE_DOWN
, &adapter
->state
))
6033 return; /* do nothing if already down */
6035 /* Shut off incoming Tx traffic */
6036 netif_tx_stop_all_queues(netdev
);
6038 /* call carrier off first to avoid false dev_watchdog timeouts */
6039 netif_carrier_off(netdev
);
6040 netif_tx_disable(netdev
);
6043 ixgbe_disable_rx(adapter
);
6045 /* synchronize_sched() needed for pending XDP buffers to drain */
6046 if (adapter
->xdp_ring
[0])
6047 synchronize_sched();
6049 ixgbe_irq_disable(adapter
);
6051 ixgbe_napi_disable_all(adapter
);
6053 clear_bit(__IXGBE_RESET_REQUESTED
, &adapter
->state
);
6054 adapter
->flags2
&= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT
;
6055 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_UPDATE
;
6057 del_timer_sync(&adapter
->service_timer
);
6059 if (adapter
->num_vfs
) {
6060 /* Clear EITR Select mapping */
6061 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITRSEL
, 0);
6063 /* Mark all the VFs as inactive */
6064 for (i
= 0 ; i
< adapter
->num_vfs
; i
++)
6065 adapter
->vfinfo
[i
].clear_to_send
= false;
6067 /* ping all the active vfs to let them know we are going down */
6068 ixgbe_ping_all_vfs(adapter
);
6070 /* Disable all VFTE/VFRE TX/RX */
6071 ixgbe_disable_tx_rx(adapter
);
6074 /* disable transmits in the hardware now that interrupts are off */
6075 ixgbe_disable_tx(adapter
);
6077 if (!pci_channel_offline(adapter
->pdev
))
6078 ixgbe_reset(adapter
);
6080 /* power down the optics for 82599 SFP+ fiber */
6081 if (hw
->mac
.ops
.disable_tx_laser
)
6082 hw
->mac
.ops
.disable_tx_laser(hw
);
6084 ixgbe_clean_all_tx_rings(adapter
);
6085 ixgbe_clean_all_rx_rings(adapter
);
6089 * ixgbe_eee_capable - helper function to determine EEE support on X550
6090 * @adapter: board private structure
6092 static void ixgbe_set_eee_capable(struct ixgbe_adapter
*adapter
)
6094 struct ixgbe_hw
*hw
= &adapter
->hw
;
6096 switch (hw
->device_id
) {
6097 case IXGBE_DEV_ID_X550EM_A_1G_T
:
6098 case IXGBE_DEV_ID_X550EM_A_1G_T_L
:
6099 if (!hw
->phy
.eee_speeds_supported
)
6101 adapter
->flags2
|= IXGBE_FLAG2_EEE_CAPABLE
;
6102 if (!hw
->phy
.eee_speeds_advertised
)
6104 adapter
->flags2
|= IXGBE_FLAG2_EEE_ENABLED
;
6107 adapter
->flags2
&= ~IXGBE_FLAG2_EEE_CAPABLE
;
6108 adapter
->flags2
&= ~IXGBE_FLAG2_EEE_ENABLED
;
6114 * ixgbe_tx_timeout - Respond to a Tx Hang
6115 * @netdev: network interface device structure
6117 static void ixgbe_tx_timeout(struct net_device
*netdev
)
6119 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6121 /* Do the reset outside of interrupt context */
6122 ixgbe_tx_timeout_reset(adapter
);
6125 #ifdef CONFIG_IXGBE_DCB
6126 static void ixgbe_init_dcb(struct ixgbe_adapter
*adapter
)
6128 struct ixgbe_hw
*hw
= &adapter
->hw
;
6129 struct tc_configuration
*tc
;
6132 switch (hw
->mac
.type
) {
6133 case ixgbe_mac_82598EB
:
6134 case ixgbe_mac_82599EB
:
6135 adapter
->dcb_cfg
.num_tcs
.pg_tcs
= MAX_TRAFFIC_CLASS
;
6136 adapter
->dcb_cfg
.num_tcs
.pfc_tcs
= MAX_TRAFFIC_CLASS
;
6138 case ixgbe_mac_X540
:
6139 case ixgbe_mac_X550
:
6140 adapter
->dcb_cfg
.num_tcs
.pg_tcs
= X540_TRAFFIC_CLASS
;
6141 adapter
->dcb_cfg
.num_tcs
.pfc_tcs
= X540_TRAFFIC_CLASS
;
6143 case ixgbe_mac_X550EM_x
:
6144 case ixgbe_mac_x550em_a
:
6146 adapter
->dcb_cfg
.num_tcs
.pg_tcs
= DEF_TRAFFIC_CLASS
;
6147 adapter
->dcb_cfg
.num_tcs
.pfc_tcs
= DEF_TRAFFIC_CLASS
;
6151 /* Configure DCB traffic classes */
6152 for (j
= 0; j
< MAX_TRAFFIC_CLASS
; j
++) {
6153 tc
= &adapter
->dcb_cfg
.tc_config
[j
];
6154 tc
->path
[DCB_TX_CONFIG
].bwg_id
= 0;
6155 tc
->path
[DCB_TX_CONFIG
].bwg_percent
= 12 + (j
& 1);
6156 tc
->path
[DCB_RX_CONFIG
].bwg_id
= 0;
6157 tc
->path
[DCB_RX_CONFIG
].bwg_percent
= 12 + (j
& 1);
6158 tc
->dcb_pfc
= pfc_disabled
;
6161 /* Initialize default user to priority mapping, UPx->TC0 */
6162 tc
= &adapter
->dcb_cfg
.tc_config
[0];
6163 tc
->path
[DCB_TX_CONFIG
].up_to_tc_bitmap
= 0xFF;
6164 tc
->path
[DCB_RX_CONFIG
].up_to_tc_bitmap
= 0xFF;
6166 adapter
->dcb_cfg
.bw_percentage
[DCB_TX_CONFIG
][0] = 100;
6167 adapter
->dcb_cfg
.bw_percentage
[DCB_RX_CONFIG
][0] = 100;
6168 adapter
->dcb_cfg
.pfc_mode_enable
= false;
6169 adapter
->dcb_set_bitmap
= 0x00;
6170 if (adapter
->flags
& IXGBE_FLAG_DCB_CAPABLE
)
6171 adapter
->dcbx_cap
= DCB_CAP_DCBX_HOST
| DCB_CAP_DCBX_VER_CEE
;
6172 memcpy(&adapter
->temp_dcb_cfg
, &adapter
->dcb_cfg
,
6173 sizeof(adapter
->temp_dcb_cfg
));
6178 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
6179 * @adapter: board private structure to initialize
6180 * @ii: pointer to ixgbe_info for device
6182 * ixgbe_sw_init initializes the Adapter private data structure.
6183 * Fields are initialized based on PCI device information and
6184 * OS network device settings (MTU size).
6186 static int ixgbe_sw_init(struct ixgbe_adapter
*adapter
,
6187 const struct ixgbe_info
*ii
)
6189 struct ixgbe_hw
*hw
= &adapter
->hw
;
6190 struct pci_dev
*pdev
= adapter
->pdev
;
6191 unsigned int rss
, fdir
;
6195 /* PCI config space info */
6197 hw
->vendor_id
= pdev
->vendor
;
6198 hw
->device_id
= pdev
->device
;
6199 hw
->revision_id
= pdev
->revision
;
6200 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
6201 hw
->subsystem_device_id
= pdev
->subsystem_device
;
6203 /* get_invariants needs the device IDs */
6204 ii
->get_invariants(hw
);
6206 /* Set common capability flags and settings */
6207 rss
= min_t(int, ixgbe_max_rss_indices(adapter
), num_online_cpus());
6208 adapter
->ring_feature
[RING_F_RSS
].limit
= rss
;
6209 adapter
->flags2
|= IXGBE_FLAG2_RSC_CAPABLE
;
6210 adapter
->max_q_vectors
= MAX_Q_VECTORS_82599
;
6211 adapter
->atr_sample_rate
= 20;
6212 fdir
= min_t(int, IXGBE_MAX_FDIR_INDICES
, num_online_cpus());
6213 adapter
->ring_feature
[RING_F_FDIR
].limit
= fdir
;
6214 adapter
->fdir_pballoc
= IXGBE_FDIR_PBALLOC_64K
;
6215 adapter
->ring_feature
[RING_F_VMDQ
].limit
= 1;
6216 #ifdef CONFIG_IXGBE_DCA
6217 adapter
->flags
|= IXGBE_FLAG_DCA_CAPABLE
;
6219 #ifdef CONFIG_IXGBE_DCB
6220 adapter
->flags
|= IXGBE_FLAG_DCB_CAPABLE
;
6221 adapter
->flags
&= ~IXGBE_FLAG_DCB_ENABLED
;
6224 adapter
->flags
|= IXGBE_FLAG_FCOE_CAPABLE
;
6225 adapter
->flags
&= ~IXGBE_FLAG_FCOE_ENABLED
;
6226 #ifdef CONFIG_IXGBE_DCB
6227 /* Default traffic class to use for FCoE */
6228 adapter
->fcoe
.up
= IXGBE_FCOE_DEFTC
;
6229 #endif /* CONFIG_IXGBE_DCB */
6230 #endif /* IXGBE_FCOE */
6232 /* initialize static ixgbe jump table entries */
6233 adapter
->jump_tables
[0] = kzalloc(sizeof(*adapter
->jump_tables
[0]),
6235 if (!adapter
->jump_tables
[0])
6237 adapter
->jump_tables
[0]->mat
= ixgbe_ipv4_fields
;
6239 for (i
= 1; i
< IXGBE_MAX_LINK_HANDLE
; i
++)
6240 adapter
->jump_tables
[i
] = NULL
;
6242 adapter
->mac_table
= kcalloc(hw
->mac
.num_rar_entries
,
6243 sizeof(struct ixgbe_mac_addr
),
6245 if (!adapter
->mac_table
)
6248 if (ixgbe_init_rss_key(adapter
))
6251 /* Set MAC specific capability flags and exceptions */
6252 switch (hw
->mac
.type
) {
6253 case ixgbe_mac_82598EB
:
6254 adapter
->flags2
&= ~IXGBE_FLAG2_RSC_CAPABLE
;
6256 if (hw
->device_id
== IXGBE_DEV_ID_82598AT
)
6257 adapter
->flags
|= IXGBE_FLAG_FAN_FAIL_CAPABLE
;
6259 adapter
->max_q_vectors
= MAX_Q_VECTORS_82598
;
6260 adapter
->ring_feature
[RING_F_FDIR
].limit
= 0;
6261 adapter
->atr_sample_rate
= 0;
6262 adapter
->fdir_pballoc
= 0;
6264 adapter
->flags
&= ~IXGBE_FLAG_FCOE_CAPABLE
;
6265 adapter
->flags
&= ~IXGBE_FLAG_FCOE_ENABLED
;
6266 #ifdef CONFIG_IXGBE_DCB
6267 adapter
->fcoe
.up
= 0;
6268 #endif /* IXGBE_DCB */
6269 #endif /* IXGBE_FCOE */
6271 case ixgbe_mac_82599EB
:
6272 if (hw
->device_id
== IXGBE_DEV_ID_82599_T3_LOM
)
6273 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
;
6275 case ixgbe_mac_X540
:
6276 fwsm
= IXGBE_READ_REG(hw
, IXGBE_FWSM(hw
));
6277 if (fwsm
& IXGBE_FWSM_TS_ENABLED
)
6278 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
;
6280 case ixgbe_mac_x550em_a
:
6281 adapter
->flags
|= IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE
;
6282 switch (hw
->device_id
) {
6283 case IXGBE_DEV_ID_X550EM_A_1G_T
:
6284 case IXGBE_DEV_ID_X550EM_A_1G_T_L
:
6285 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
;
6291 case ixgbe_mac_X550EM_x
:
6292 #ifdef CONFIG_IXGBE_DCB
6293 adapter
->flags
&= ~IXGBE_FLAG_DCB_CAPABLE
;
6296 adapter
->flags
&= ~IXGBE_FLAG_FCOE_CAPABLE
;
6297 #ifdef CONFIG_IXGBE_DCB
6298 adapter
->fcoe
.up
= 0;
6299 #endif /* IXGBE_DCB */
6300 #endif /* IXGBE_FCOE */
6302 case ixgbe_mac_X550
:
6303 if (hw
->mac
.type
== ixgbe_mac_X550
)
6304 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
;
6305 #ifdef CONFIG_IXGBE_DCA
6306 adapter
->flags
&= ~IXGBE_FLAG_DCA_CAPABLE
;
6308 adapter
->flags
|= IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE
;
6315 /* FCoE support exists, always init the FCoE lock */
6316 spin_lock_init(&adapter
->fcoe
.lock
);
6319 /* n-tuple support exists, always init our spinlock */
6320 spin_lock_init(&adapter
->fdir_perfect_lock
);
6322 #ifdef CONFIG_IXGBE_DCB
6323 ixgbe_init_dcb(adapter
);
6325 ixgbe_init_ipsec_offload(adapter
);
6327 /* default flow control settings */
6328 hw
->fc
.requested_mode
= ixgbe_fc_full
;
6329 hw
->fc
.current_mode
= ixgbe_fc_full
; /* init for ethtool output */
6330 ixgbe_pbthresh_setup(adapter
);
6331 hw
->fc
.pause_time
= IXGBE_DEFAULT_FCPAUSE
;
6332 hw
->fc
.send_xon
= true;
6333 hw
->fc
.disable_fc_autoneg
= ixgbe_device_supports_autoneg_fc(hw
);
6335 #ifdef CONFIG_PCI_IOV
6337 e_dev_warn("Enabling SR-IOV VFs using the max_vfs module parameter is deprecated - please use the pci sysfs interface instead.\n");
6339 /* assign number of SR-IOV VFs */
6340 if (hw
->mac
.type
!= ixgbe_mac_82598EB
) {
6341 if (max_vfs
> IXGBE_MAX_VFS_DRV_LIMIT
) {
6343 e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n");
6346 #endif /* CONFIG_PCI_IOV */
6348 /* enable itr by default in dynamic mode */
6349 adapter
->rx_itr_setting
= 1;
6350 adapter
->tx_itr_setting
= 1;
6352 /* set default ring sizes */
6353 adapter
->tx_ring_count
= IXGBE_DEFAULT_TXD
;
6354 adapter
->rx_ring_count
= IXGBE_DEFAULT_RXD
;
6356 /* set default work limits */
6357 adapter
->tx_work_limit
= IXGBE_DEFAULT_TX_WORK
;
6359 /* initialize eeprom parameters */
6360 if (ixgbe_init_eeprom_params_generic(hw
)) {
6361 e_dev_err("EEPROM initialization failed\n");
6365 /* PF holds first pool slot */
6366 set_bit(0, adapter
->fwd_bitmask
);
6367 set_bit(__IXGBE_DOWN
, &adapter
->state
);
6373 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
6374 * @tx_ring: tx descriptor ring (for a specific queue) to setup
6376 * Return 0 on success, negative on failure
6378 int ixgbe_setup_tx_resources(struct ixgbe_ring
*tx_ring
)
6380 struct device
*dev
= tx_ring
->dev
;
6381 int orig_node
= dev_to_node(dev
);
6385 size
= sizeof(struct ixgbe_tx_buffer
) * tx_ring
->count
;
6387 if (tx_ring
->q_vector
)
6388 ring_node
= tx_ring
->q_vector
->numa_node
;
6390 tx_ring
->tx_buffer_info
= vmalloc_node(size
, ring_node
);
6391 if (!tx_ring
->tx_buffer_info
)
6392 tx_ring
->tx_buffer_info
= vmalloc(size
);
6393 if (!tx_ring
->tx_buffer_info
)
6396 /* round up to nearest 4K */
6397 tx_ring
->size
= tx_ring
->count
* sizeof(union ixgbe_adv_tx_desc
);
6398 tx_ring
->size
= ALIGN(tx_ring
->size
, 4096);
6400 set_dev_node(dev
, ring_node
);
6401 tx_ring
->desc
= dma_alloc_coherent(dev
,
6405 set_dev_node(dev
, orig_node
);
6407 tx_ring
->desc
= dma_alloc_coherent(dev
, tx_ring
->size
,
6408 &tx_ring
->dma
, GFP_KERNEL
);
6412 tx_ring
->next_to_use
= 0;
6413 tx_ring
->next_to_clean
= 0;
6417 vfree(tx_ring
->tx_buffer_info
);
6418 tx_ring
->tx_buffer_info
= NULL
;
6419 dev_err(dev
, "Unable to allocate memory for the Tx descriptor ring\n");
6424 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
6425 * @adapter: board private structure
6427 * If this function returns with an error, then it's possible one or
6428 * more of the rings is populated (while the rest are not). It is the
6429 * callers duty to clean those orphaned rings.
6431 * Return 0 on success, negative on failure
6433 static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter
*adapter
)
6435 int i
, j
= 0, err
= 0;
6437 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
6438 err
= ixgbe_setup_tx_resources(adapter
->tx_ring
[i
]);
6442 e_err(probe
, "Allocation for Tx Queue %u failed\n", i
);
6445 for (j
= 0; j
< adapter
->num_xdp_queues
; j
++) {
6446 err
= ixgbe_setup_tx_resources(adapter
->xdp_ring
[j
]);
6450 e_err(probe
, "Allocation for Tx Queue %u failed\n", j
);
6456 /* rewind the index freeing the rings as we go */
6458 ixgbe_free_tx_resources(adapter
->xdp_ring
[j
]);
6460 ixgbe_free_tx_resources(adapter
->tx_ring
[i
]);
6465 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
6466 * @adapter: pointer to ixgbe_adapter
6467 * @rx_ring: rx descriptor ring (for a specific queue) to setup
6469 * Returns 0 on success, negative on failure
6471 int ixgbe_setup_rx_resources(struct ixgbe_adapter
*adapter
,
6472 struct ixgbe_ring
*rx_ring
)
6474 struct device
*dev
= rx_ring
->dev
;
6475 int orig_node
= dev_to_node(dev
);
6479 size
= sizeof(struct ixgbe_rx_buffer
) * rx_ring
->count
;
6481 if (rx_ring
->q_vector
)
6482 ring_node
= rx_ring
->q_vector
->numa_node
;
6484 rx_ring
->rx_buffer_info
= vmalloc_node(size
, ring_node
);
6485 if (!rx_ring
->rx_buffer_info
)
6486 rx_ring
->rx_buffer_info
= vmalloc(size
);
6487 if (!rx_ring
->rx_buffer_info
)
6490 /* Round up to nearest 4K */
6491 rx_ring
->size
= rx_ring
->count
* sizeof(union ixgbe_adv_rx_desc
);
6492 rx_ring
->size
= ALIGN(rx_ring
->size
, 4096);
6494 set_dev_node(dev
, ring_node
);
6495 rx_ring
->desc
= dma_alloc_coherent(dev
,
6499 set_dev_node(dev
, orig_node
);
6501 rx_ring
->desc
= dma_alloc_coherent(dev
, rx_ring
->size
,
6502 &rx_ring
->dma
, GFP_KERNEL
);
6506 rx_ring
->next_to_clean
= 0;
6507 rx_ring
->next_to_use
= 0;
6509 /* XDP RX-queue info */
6510 if (xdp_rxq_info_reg(&rx_ring
->xdp_rxq
, adapter
->netdev
,
6511 rx_ring
->queue_index
) < 0)
6514 err
= xdp_rxq_info_reg_mem_model(&rx_ring
->xdp_rxq
,
6515 MEM_TYPE_PAGE_SHARED
, NULL
);
6517 xdp_rxq_info_unreg(&rx_ring
->xdp_rxq
);
6521 rx_ring
->xdp_prog
= adapter
->xdp_prog
;
6525 vfree(rx_ring
->rx_buffer_info
);
6526 rx_ring
->rx_buffer_info
= NULL
;
6527 dev_err(dev
, "Unable to allocate memory for the Rx descriptor ring\n");
6532 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
6533 * @adapter: board private structure
6535 * If this function returns with an error, then it's possible one or
6536 * more of the rings is populated (while the rest are not). It is the
6537 * callers duty to clean those orphaned rings.
6539 * Return 0 on success, negative on failure
6541 static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter
*adapter
)
6545 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
6546 err
= ixgbe_setup_rx_resources(adapter
, adapter
->rx_ring
[i
]);
6550 e_err(probe
, "Allocation for Rx Queue %u failed\n", i
);
6555 err
= ixgbe_setup_fcoe_ddp_resources(adapter
);
6560 /* rewind the index freeing the rings as we go */
6562 ixgbe_free_rx_resources(adapter
->rx_ring
[i
]);
6567 * ixgbe_free_tx_resources - Free Tx Resources per Queue
6568 * @tx_ring: Tx descriptor ring for a specific queue
6570 * Free all transmit software resources
6572 void ixgbe_free_tx_resources(struct ixgbe_ring
*tx_ring
)
6574 ixgbe_clean_tx_ring(tx_ring
);
6576 vfree(tx_ring
->tx_buffer_info
);
6577 tx_ring
->tx_buffer_info
= NULL
;
6579 /* if not set, then don't free */
6583 dma_free_coherent(tx_ring
->dev
, tx_ring
->size
,
6584 tx_ring
->desc
, tx_ring
->dma
);
6586 tx_ring
->desc
= NULL
;
6590 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
6591 * @adapter: board private structure
6593 * Free all transmit software resources
6595 static void ixgbe_free_all_tx_resources(struct ixgbe_adapter
*adapter
)
6599 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
6600 if (adapter
->tx_ring
[i
]->desc
)
6601 ixgbe_free_tx_resources(adapter
->tx_ring
[i
]);
6602 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++)
6603 if (adapter
->xdp_ring
[i
]->desc
)
6604 ixgbe_free_tx_resources(adapter
->xdp_ring
[i
]);
6608 * ixgbe_free_rx_resources - Free Rx Resources
6609 * @rx_ring: ring to clean the resources from
6611 * Free all receive software resources
6613 void ixgbe_free_rx_resources(struct ixgbe_ring
*rx_ring
)
6615 ixgbe_clean_rx_ring(rx_ring
);
6617 rx_ring
->xdp_prog
= NULL
;
6618 xdp_rxq_info_unreg(&rx_ring
->xdp_rxq
);
6619 vfree(rx_ring
->rx_buffer_info
);
6620 rx_ring
->rx_buffer_info
= NULL
;
6622 /* if not set, then don't free */
6626 dma_free_coherent(rx_ring
->dev
, rx_ring
->size
,
6627 rx_ring
->desc
, rx_ring
->dma
);
6629 rx_ring
->desc
= NULL
;
6633 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
6634 * @adapter: board private structure
6636 * Free all receive software resources
6638 static void ixgbe_free_all_rx_resources(struct ixgbe_adapter
*adapter
)
6643 ixgbe_free_fcoe_ddp_resources(adapter
);
6646 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
6647 if (adapter
->rx_ring
[i
]->desc
)
6648 ixgbe_free_rx_resources(adapter
->rx_ring
[i
]);
6652 * ixgbe_change_mtu - Change the Maximum Transfer Unit
6653 * @netdev: network interface device structure
6654 * @new_mtu: new value for maximum frame size
6656 * Returns 0 on success, negative on failure
6658 static int ixgbe_change_mtu(struct net_device
*netdev
, int new_mtu
)
6660 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6662 if (adapter
->xdp_prog
) {
6663 int new_frame_size
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+
6667 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
6668 struct ixgbe_ring
*ring
= adapter
->rx_ring
[i
];
6670 if (new_frame_size
> ixgbe_rx_bufsz(ring
)) {
6671 e_warn(probe
, "Requested MTU size is not supported with XDP\n");
6678 * For 82599EB we cannot allow legacy VFs to enable their receive
6679 * paths when MTU greater than 1500 is configured. So display a
6680 * warning that legacy VFs will be disabled.
6682 if ((adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) &&
6683 (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
) &&
6684 (new_mtu
> ETH_DATA_LEN
))
6685 e_warn(probe
, "Setting MTU > 1500 will disable legacy VFs\n");
6687 e_info(probe
, "changing MTU from %d to %d\n", netdev
->mtu
, new_mtu
);
6689 /* must set new MTU before calling down or up */
6690 netdev
->mtu
= new_mtu
;
6692 if (netif_running(netdev
))
6693 ixgbe_reinit_locked(adapter
);
6699 * ixgbe_open - Called when a network interface is made active
6700 * @netdev: network interface device structure
6702 * Returns 0 on success, negative value on failure
6704 * The open entry point is called when a network interface is made
6705 * active by the system (IFF_UP). At this point all resources needed
6706 * for transmit and receive operations are allocated, the interrupt
6707 * handler is registered with the OS, the watchdog timer is started,
6708 * and the stack is notified that the interface is ready.
6710 int ixgbe_open(struct net_device
*netdev
)
6712 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6713 struct ixgbe_hw
*hw
= &adapter
->hw
;
6716 /* disallow open during test */
6717 if (test_bit(__IXGBE_TESTING
, &adapter
->state
))
6720 netif_carrier_off(netdev
);
6722 /* allocate transmit descriptors */
6723 err
= ixgbe_setup_all_tx_resources(adapter
);
6727 /* allocate receive descriptors */
6728 err
= ixgbe_setup_all_rx_resources(adapter
);
6732 ixgbe_configure(adapter
);
6734 err
= ixgbe_request_irq(adapter
);
6738 /* Notify the stack of the actual queue counts. */
6739 queues
= adapter
->num_tx_queues
;
6740 err
= netif_set_real_num_tx_queues(netdev
, queues
);
6742 goto err_set_queues
;
6744 queues
= adapter
->num_rx_queues
;
6745 err
= netif_set_real_num_rx_queues(netdev
, queues
);
6747 goto err_set_queues
;
6749 ixgbe_ptp_init(adapter
);
6751 ixgbe_up_complete(adapter
);
6753 ixgbe_clear_udp_tunnel_port(adapter
, IXGBE_VXLANCTRL_ALL_UDPPORT_MASK
);
6754 udp_tunnel_get_rx_info(netdev
);
6759 ixgbe_free_irq(adapter
);
6761 ixgbe_free_all_rx_resources(adapter
);
6762 if (hw
->phy
.ops
.set_phy_power
&& !adapter
->wol
)
6763 hw
->phy
.ops
.set_phy_power(&adapter
->hw
, false);
6765 ixgbe_free_all_tx_resources(adapter
);
6767 ixgbe_reset(adapter
);
6772 static void ixgbe_close_suspend(struct ixgbe_adapter
*adapter
)
6774 ixgbe_ptp_suspend(adapter
);
6776 if (adapter
->hw
.phy
.ops
.enter_lplu
) {
6777 adapter
->hw
.phy
.reset_disable
= true;
6778 ixgbe_down(adapter
);
6779 adapter
->hw
.phy
.ops
.enter_lplu(&adapter
->hw
);
6780 adapter
->hw
.phy
.reset_disable
= false;
6782 ixgbe_down(adapter
);
6785 ixgbe_free_irq(adapter
);
6787 ixgbe_free_all_tx_resources(adapter
);
6788 ixgbe_free_all_rx_resources(adapter
);
6792 * ixgbe_close - Disables a network interface
6793 * @netdev: network interface device structure
6795 * Returns 0, this is not allowed to fail
6797 * The close entry point is called when an interface is de-activated
6798 * by the OS. The hardware is still under the drivers control, but
6799 * needs to be disabled. A global MAC reset is issued to stop the
6800 * hardware, and all transmit and receive resources are freed.
6802 int ixgbe_close(struct net_device
*netdev
)
6804 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6806 ixgbe_ptp_stop(adapter
);
6808 if (netif_device_present(netdev
))
6809 ixgbe_close_suspend(adapter
);
6811 ixgbe_fdir_filter_exit(adapter
);
6813 ixgbe_release_hw_control(adapter
);
6819 static int ixgbe_resume(struct pci_dev
*pdev
)
6821 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
6822 struct net_device
*netdev
= adapter
->netdev
;
6825 adapter
->hw
.hw_addr
= adapter
->io_addr
;
6826 pci_set_power_state(pdev
, PCI_D0
);
6827 pci_restore_state(pdev
);
6829 * pci_restore_state clears dev->state_saved so call
6830 * pci_save_state to restore it.
6832 pci_save_state(pdev
);
6834 err
= pci_enable_device_mem(pdev
);
6836 e_dev_err("Cannot enable PCI device from suspend\n");
6839 smp_mb__before_atomic();
6840 clear_bit(__IXGBE_DISABLED
, &adapter
->state
);
6841 pci_set_master(pdev
);
6843 pci_wake_from_d3(pdev
, false);
6845 ixgbe_reset(adapter
);
6847 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_WUS
, ~0);
6850 err
= ixgbe_init_interrupt_scheme(adapter
);
6851 if (!err
&& netif_running(netdev
))
6852 err
= ixgbe_open(netdev
);
6856 netif_device_attach(netdev
);
6861 #endif /* CONFIG_PM */
6863 static int __ixgbe_shutdown(struct pci_dev
*pdev
, bool *enable_wake
)
6865 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
6866 struct net_device
*netdev
= adapter
->netdev
;
6867 struct ixgbe_hw
*hw
= &adapter
->hw
;
6869 u32 wufc
= adapter
->wol
;
6875 netif_device_detach(netdev
);
6877 if (netif_running(netdev
))
6878 ixgbe_close_suspend(adapter
);
6880 ixgbe_clear_interrupt_scheme(adapter
);
6884 retval
= pci_save_state(pdev
);
6889 if (hw
->mac
.ops
.stop_link_on_d3
)
6890 hw
->mac
.ops
.stop_link_on_d3(hw
);
6895 ixgbe_set_rx_mode(netdev
);
6897 /* enable the optics for 82599 SFP+ fiber as we can WoL */
6898 if (hw
->mac
.ops
.enable_tx_laser
)
6899 hw
->mac
.ops
.enable_tx_laser(hw
);
6901 /* enable the reception of multicast packets */
6902 fctrl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
6903 fctrl
|= IXGBE_FCTRL_MPE
;
6904 IXGBE_WRITE_REG(hw
, IXGBE_FCTRL
, fctrl
);
6906 ctrl
= IXGBE_READ_REG(hw
, IXGBE_CTRL
);
6907 ctrl
|= IXGBE_CTRL_GIO_DIS
;
6908 IXGBE_WRITE_REG(hw
, IXGBE_CTRL
, ctrl
);
6910 IXGBE_WRITE_REG(hw
, IXGBE_WUFC
, wufc
);
6912 IXGBE_WRITE_REG(hw
, IXGBE_WUC
, 0);
6913 IXGBE_WRITE_REG(hw
, IXGBE_WUFC
, 0);
6916 switch (hw
->mac
.type
) {
6917 case ixgbe_mac_82598EB
:
6918 pci_wake_from_d3(pdev
, false);
6920 case ixgbe_mac_82599EB
:
6921 case ixgbe_mac_X540
:
6922 case ixgbe_mac_X550
:
6923 case ixgbe_mac_X550EM_x
:
6924 case ixgbe_mac_x550em_a
:
6925 pci_wake_from_d3(pdev
, !!wufc
);
6931 *enable_wake
= !!wufc
;
6932 if (hw
->phy
.ops
.set_phy_power
&& !*enable_wake
)
6933 hw
->phy
.ops
.set_phy_power(hw
, false);
6935 ixgbe_release_hw_control(adapter
);
6937 if (!test_and_set_bit(__IXGBE_DISABLED
, &adapter
->state
))
6938 pci_disable_device(pdev
);
6944 static int ixgbe_suspend(struct pci_dev
*pdev
, pm_message_t state
)
6949 retval
= __ixgbe_shutdown(pdev
, &wake
);
6954 pci_prepare_to_sleep(pdev
);
6956 pci_wake_from_d3(pdev
, false);
6957 pci_set_power_state(pdev
, PCI_D3hot
);
6962 #endif /* CONFIG_PM */
6964 static void ixgbe_shutdown(struct pci_dev
*pdev
)
6968 __ixgbe_shutdown(pdev
, &wake
);
6970 if (system_state
== SYSTEM_POWER_OFF
) {
6971 pci_wake_from_d3(pdev
, wake
);
6972 pci_set_power_state(pdev
, PCI_D3hot
);
6977 * ixgbe_update_stats - Update the board statistics counters.
6978 * @adapter: board private structure
6980 void ixgbe_update_stats(struct ixgbe_adapter
*adapter
)
6982 struct net_device
*netdev
= adapter
->netdev
;
6983 struct ixgbe_hw
*hw
= &adapter
->hw
;
6984 struct ixgbe_hw_stats
*hwstats
= &adapter
->stats
;
6986 u32 i
, missed_rx
= 0, mpc
, bprc
, lxon
, lxoff
, xon_off_tot
;
6987 u64 non_eop_descs
= 0, restart_queue
= 0, tx_busy
= 0;
6988 u64 alloc_rx_page_failed
= 0, alloc_rx_buff_failed
= 0;
6989 u64 alloc_rx_page
= 0;
6990 u64 bytes
= 0, packets
= 0, hw_csum_rx_error
= 0;
6992 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
6993 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
6996 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
) {
6999 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
7000 rsc_count
+= adapter
->rx_ring
[i
]->rx_stats
.rsc_count
;
7001 rsc_flush
+= adapter
->rx_ring
[i
]->rx_stats
.rsc_flush
;
7003 adapter
->rsc_total_count
= rsc_count
;
7004 adapter
->rsc_total_flush
= rsc_flush
;
7007 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
7008 struct ixgbe_ring
*rx_ring
= READ_ONCE(adapter
->rx_ring
[i
]);
7012 non_eop_descs
+= rx_ring
->rx_stats
.non_eop_descs
;
7013 alloc_rx_page
+= rx_ring
->rx_stats
.alloc_rx_page
;
7014 alloc_rx_page_failed
+= rx_ring
->rx_stats
.alloc_rx_page_failed
;
7015 alloc_rx_buff_failed
+= rx_ring
->rx_stats
.alloc_rx_buff_failed
;
7016 hw_csum_rx_error
+= rx_ring
->rx_stats
.csum_err
;
7017 bytes
+= rx_ring
->stats
.bytes
;
7018 packets
+= rx_ring
->stats
.packets
;
7020 adapter
->non_eop_descs
= non_eop_descs
;
7021 adapter
->alloc_rx_page
= alloc_rx_page
;
7022 adapter
->alloc_rx_page_failed
= alloc_rx_page_failed
;
7023 adapter
->alloc_rx_buff_failed
= alloc_rx_buff_failed
;
7024 adapter
->hw_csum_rx_error
= hw_csum_rx_error
;
7025 netdev
->stats
.rx_bytes
= bytes
;
7026 netdev
->stats
.rx_packets
= packets
;
7030 /* gather some stats to the adapter struct that are per queue */
7031 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
7032 struct ixgbe_ring
*tx_ring
= READ_ONCE(adapter
->tx_ring
[i
]);
7036 restart_queue
+= tx_ring
->tx_stats
.restart_queue
;
7037 tx_busy
+= tx_ring
->tx_stats
.tx_busy
;
7038 bytes
+= tx_ring
->stats
.bytes
;
7039 packets
+= tx_ring
->stats
.packets
;
7041 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++) {
7042 struct ixgbe_ring
*xdp_ring
= READ_ONCE(adapter
->xdp_ring
[i
]);
7046 restart_queue
+= xdp_ring
->tx_stats
.restart_queue
;
7047 tx_busy
+= xdp_ring
->tx_stats
.tx_busy
;
7048 bytes
+= xdp_ring
->stats
.bytes
;
7049 packets
+= xdp_ring
->stats
.packets
;
7051 adapter
->restart_queue
= restart_queue
;
7052 adapter
->tx_busy
= tx_busy
;
7053 netdev
->stats
.tx_bytes
= bytes
;
7054 netdev
->stats
.tx_packets
= packets
;
7056 hwstats
->crcerrs
+= IXGBE_READ_REG(hw
, IXGBE_CRCERRS
);
7058 /* 8 register reads */
7059 for (i
= 0; i
< 8; i
++) {
7060 /* for packet buffers not used, the register should read 0 */
7061 mpc
= IXGBE_READ_REG(hw
, IXGBE_MPC(i
));
7063 hwstats
->mpc
[i
] += mpc
;
7064 total_mpc
+= hwstats
->mpc
[i
];
7065 hwstats
->pxontxc
[i
] += IXGBE_READ_REG(hw
, IXGBE_PXONTXC(i
));
7066 hwstats
->pxofftxc
[i
] += IXGBE_READ_REG(hw
, IXGBE_PXOFFTXC(i
));
7067 switch (hw
->mac
.type
) {
7068 case ixgbe_mac_82598EB
:
7069 hwstats
->rnbc
[i
] += IXGBE_READ_REG(hw
, IXGBE_RNBC(i
));
7070 hwstats
->qbtc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBTC(i
));
7071 hwstats
->qbrc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBRC(i
));
7072 hwstats
->pxonrxc
[i
] +=
7073 IXGBE_READ_REG(hw
, IXGBE_PXONRXC(i
));
7075 case ixgbe_mac_82599EB
:
7076 case ixgbe_mac_X540
:
7077 case ixgbe_mac_X550
:
7078 case ixgbe_mac_X550EM_x
:
7079 case ixgbe_mac_x550em_a
:
7080 hwstats
->pxonrxc
[i
] +=
7081 IXGBE_READ_REG(hw
, IXGBE_PXONRXCNT(i
));
7088 /*16 register reads */
7089 for (i
= 0; i
< 16; i
++) {
7090 hwstats
->qptc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QPTC(i
));
7091 hwstats
->qprc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QPRC(i
));
7092 if ((hw
->mac
.type
== ixgbe_mac_82599EB
) ||
7093 (hw
->mac
.type
== ixgbe_mac_X540
) ||
7094 (hw
->mac
.type
== ixgbe_mac_X550
) ||
7095 (hw
->mac
.type
== ixgbe_mac_X550EM_x
) ||
7096 (hw
->mac
.type
== ixgbe_mac_x550em_a
)) {
7097 hwstats
->qbtc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBTC_L(i
));
7098 IXGBE_READ_REG(hw
, IXGBE_QBTC_H(i
)); /* to clear */
7099 hwstats
->qbrc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBRC_L(i
));
7100 IXGBE_READ_REG(hw
, IXGBE_QBRC_H(i
)); /* to clear */
7104 hwstats
->gprc
+= IXGBE_READ_REG(hw
, IXGBE_GPRC
);
7105 /* work around hardware counting issue */
7106 hwstats
->gprc
-= missed_rx
;
7108 ixgbe_update_xoff_received(adapter
);
7110 /* 82598 hardware only has a 32 bit counter in the high register */
7111 switch (hw
->mac
.type
) {
7112 case ixgbe_mac_82598EB
:
7113 hwstats
->lxonrxc
+= IXGBE_READ_REG(hw
, IXGBE_LXONRXC
);
7114 hwstats
->gorc
+= IXGBE_READ_REG(hw
, IXGBE_GORCH
);
7115 hwstats
->gotc
+= IXGBE_READ_REG(hw
, IXGBE_GOTCH
);
7116 hwstats
->tor
+= IXGBE_READ_REG(hw
, IXGBE_TORH
);
7118 case ixgbe_mac_X540
:
7119 case ixgbe_mac_X550
:
7120 case ixgbe_mac_X550EM_x
:
7121 case ixgbe_mac_x550em_a
:
7122 /* OS2BMC stats are X540 and later */
7123 hwstats
->o2bgptc
+= IXGBE_READ_REG(hw
, IXGBE_O2BGPTC
);
7124 hwstats
->o2bspc
+= IXGBE_READ_REG(hw
, IXGBE_O2BSPC
);
7125 hwstats
->b2ospc
+= IXGBE_READ_REG(hw
, IXGBE_B2OSPC
);
7126 hwstats
->b2ogprc
+= IXGBE_READ_REG(hw
, IXGBE_B2OGPRC
);
7128 case ixgbe_mac_82599EB
:
7129 for (i
= 0; i
< 16; i
++)
7130 adapter
->hw_rx_no_dma_resources
+=
7131 IXGBE_READ_REG(hw
, IXGBE_QPRDC(i
));
7132 hwstats
->gorc
+= IXGBE_READ_REG(hw
, IXGBE_GORCL
);
7133 IXGBE_READ_REG(hw
, IXGBE_GORCH
); /* to clear */
7134 hwstats
->gotc
+= IXGBE_READ_REG(hw
, IXGBE_GOTCL
);
7135 IXGBE_READ_REG(hw
, IXGBE_GOTCH
); /* to clear */
7136 hwstats
->tor
+= IXGBE_READ_REG(hw
, IXGBE_TORL
);
7137 IXGBE_READ_REG(hw
, IXGBE_TORH
); /* to clear */
7138 hwstats
->lxonrxc
+= IXGBE_READ_REG(hw
, IXGBE_LXONRXCNT
);
7139 hwstats
->fdirmatch
+= IXGBE_READ_REG(hw
, IXGBE_FDIRMATCH
);
7140 hwstats
->fdirmiss
+= IXGBE_READ_REG(hw
, IXGBE_FDIRMISS
);
7142 hwstats
->fccrc
+= IXGBE_READ_REG(hw
, IXGBE_FCCRC
);
7143 hwstats
->fcoerpdc
+= IXGBE_READ_REG(hw
, IXGBE_FCOERPDC
);
7144 hwstats
->fcoeprc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEPRC
);
7145 hwstats
->fcoeptc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEPTC
);
7146 hwstats
->fcoedwrc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEDWRC
);
7147 hwstats
->fcoedwtc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEDWTC
);
7148 /* Add up per cpu counters for total ddp aloc fail */
7149 if (adapter
->fcoe
.ddp_pool
) {
7150 struct ixgbe_fcoe
*fcoe
= &adapter
->fcoe
;
7151 struct ixgbe_fcoe_ddp_pool
*ddp_pool
;
7153 u64 noddp
= 0, noddp_ext_buff
= 0;
7154 for_each_possible_cpu(cpu
) {
7155 ddp_pool
= per_cpu_ptr(fcoe
->ddp_pool
, cpu
);
7156 noddp
+= ddp_pool
->noddp
;
7157 noddp_ext_buff
+= ddp_pool
->noddp_ext_buff
;
7159 hwstats
->fcoe_noddp
= noddp
;
7160 hwstats
->fcoe_noddp_ext_buff
= noddp_ext_buff
;
7162 #endif /* IXGBE_FCOE */
7167 bprc
= IXGBE_READ_REG(hw
, IXGBE_BPRC
);
7168 hwstats
->bprc
+= bprc
;
7169 hwstats
->mprc
+= IXGBE_READ_REG(hw
, IXGBE_MPRC
);
7170 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
7171 hwstats
->mprc
-= bprc
;
7172 hwstats
->roc
+= IXGBE_READ_REG(hw
, IXGBE_ROC
);
7173 hwstats
->prc64
+= IXGBE_READ_REG(hw
, IXGBE_PRC64
);
7174 hwstats
->prc127
+= IXGBE_READ_REG(hw
, IXGBE_PRC127
);
7175 hwstats
->prc255
+= IXGBE_READ_REG(hw
, IXGBE_PRC255
);
7176 hwstats
->prc511
+= IXGBE_READ_REG(hw
, IXGBE_PRC511
);
7177 hwstats
->prc1023
+= IXGBE_READ_REG(hw
, IXGBE_PRC1023
);
7178 hwstats
->prc1522
+= IXGBE_READ_REG(hw
, IXGBE_PRC1522
);
7179 hwstats
->rlec
+= IXGBE_READ_REG(hw
, IXGBE_RLEC
);
7180 lxon
= IXGBE_READ_REG(hw
, IXGBE_LXONTXC
);
7181 hwstats
->lxontxc
+= lxon
;
7182 lxoff
= IXGBE_READ_REG(hw
, IXGBE_LXOFFTXC
);
7183 hwstats
->lxofftxc
+= lxoff
;
7184 hwstats
->gptc
+= IXGBE_READ_REG(hw
, IXGBE_GPTC
);
7185 hwstats
->mptc
+= IXGBE_READ_REG(hw
, IXGBE_MPTC
);
7187 * 82598 errata - tx of flow control packets is included in tx counters
7189 xon_off_tot
= lxon
+ lxoff
;
7190 hwstats
->gptc
-= xon_off_tot
;
7191 hwstats
->mptc
-= xon_off_tot
;
7192 hwstats
->gotc
-= (xon_off_tot
* (ETH_ZLEN
+ ETH_FCS_LEN
));
7193 hwstats
->ruc
+= IXGBE_READ_REG(hw
, IXGBE_RUC
);
7194 hwstats
->rfc
+= IXGBE_READ_REG(hw
, IXGBE_RFC
);
7195 hwstats
->rjc
+= IXGBE_READ_REG(hw
, IXGBE_RJC
);
7196 hwstats
->tpr
+= IXGBE_READ_REG(hw
, IXGBE_TPR
);
7197 hwstats
->ptc64
+= IXGBE_READ_REG(hw
, IXGBE_PTC64
);
7198 hwstats
->ptc64
-= xon_off_tot
;
7199 hwstats
->ptc127
+= IXGBE_READ_REG(hw
, IXGBE_PTC127
);
7200 hwstats
->ptc255
+= IXGBE_READ_REG(hw
, IXGBE_PTC255
);
7201 hwstats
->ptc511
+= IXGBE_READ_REG(hw
, IXGBE_PTC511
);
7202 hwstats
->ptc1023
+= IXGBE_READ_REG(hw
, IXGBE_PTC1023
);
7203 hwstats
->ptc1522
+= IXGBE_READ_REG(hw
, IXGBE_PTC1522
);
7204 hwstats
->bptc
+= IXGBE_READ_REG(hw
, IXGBE_BPTC
);
7206 /* Fill out the OS statistics structure */
7207 netdev
->stats
.multicast
= hwstats
->mprc
;
7210 netdev
->stats
.rx_errors
= hwstats
->crcerrs
+ hwstats
->rlec
;
7211 netdev
->stats
.rx_dropped
= 0;
7212 netdev
->stats
.rx_length_errors
= hwstats
->rlec
;
7213 netdev
->stats
.rx_crc_errors
= hwstats
->crcerrs
;
7214 netdev
->stats
.rx_missed_errors
= total_mpc
;
7218 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
7219 * @adapter: pointer to the device adapter structure
7221 static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter
*adapter
)
7223 struct ixgbe_hw
*hw
= &adapter
->hw
;
7226 if (!(adapter
->flags2
& IXGBE_FLAG2_FDIR_REQUIRES_REINIT
))
7229 adapter
->flags2
&= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT
;
7231 /* if interface is down do nothing */
7232 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
7235 /* do nothing if we are not using signature filters */
7236 if (!(adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
))
7239 adapter
->fdir_overflow
++;
7241 if (ixgbe_reinit_fdir_tables_82599(hw
) == 0) {
7242 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
7243 set_bit(__IXGBE_TX_FDIR_INIT_DONE
,
7244 &(adapter
->tx_ring
[i
]->state
));
7245 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++)
7246 set_bit(__IXGBE_TX_FDIR_INIT_DONE
,
7247 &adapter
->xdp_ring
[i
]->state
);
7248 /* re-enable flow director interrupts */
7249 IXGBE_WRITE_REG(hw
, IXGBE_EIMS
, IXGBE_EIMS_FLOW_DIR
);
7251 e_err(probe
, "failed to finish FDIR re-initialization, "
7252 "ignored adding FDIR ATR filters\n");
7257 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
7258 * @adapter: pointer to the device adapter structure
7260 * This function serves two purposes. First it strobes the interrupt lines
7261 * in order to make certain interrupts are occurring. Secondly it sets the
7262 * bits needed to check for TX hangs. As a result we should immediately
7263 * determine if a hang has occurred.
7265 static void ixgbe_check_hang_subtask(struct ixgbe_adapter
*adapter
)
7267 struct ixgbe_hw
*hw
= &adapter
->hw
;
7271 /* If we're down, removing or resetting, just bail */
7272 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
7273 test_bit(__IXGBE_REMOVING
, &adapter
->state
) ||
7274 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
7277 /* Force detection of hung controller */
7278 if (netif_carrier_ok(adapter
->netdev
)) {
7279 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
7280 set_check_for_tx_hang(adapter
->tx_ring
[i
]);
7281 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++)
7282 set_check_for_tx_hang(adapter
->xdp_ring
[i
]);
7285 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
7287 * for legacy and MSI interrupts don't set any bits
7288 * that are enabled for EIAM, because this operation
7289 * would set *both* EIMS and EICS for any bit in EIAM
7291 IXGBE_WRITE_REG(hw
, IXGBE_EICS
,
7292 (IXGBE_EICS_TCP_TIMER
| IXGBE_EICS_OTHER
));
7294 /* get one bit for every active tx/rx interrupt vector */
7295 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
7296 struct ixgbe_q_vector
*qv
= adapter
->q_vector
[i
];
7297 if (qv
->rx
.ring
|| qv
->tx
.ring
)
7302 /* Cause software interrupt to ensure rings are cleaned */
7303 ixgbe_irq_rearm_queues(adapter
, eics
);
7307 * ixgbe_watchdog_update_link - update the link status
7308 * @adapter: pointer to the device adapter structure
7310 static void ixgbe_watchdog_update_link(struct ixgbe_adapter
*adapter
)
7312 struct ixgbe_hw
*hw
= &adapter
->hw
;
7313 u32 link_speed
= adapter
->link_speed
;
7314 bool link_up
= adapter
->link_up
;
7315 bool pfc_en
= adapter
->dcb_cfg
.pfc_mode_enable
;
7317 if (!(adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
))
7320 if (hw
->mac
.ops
.check_link
) {
7321 hw
->mac
.ops
.check_link(hw
, &link_speed
, &link_up
, false);
7323 /* always assume link is up, if no check link function */
7324 link_speed
= IXGBE_LINK_SPEED_10GB_FULL
;
7328 if (adapter
->ixgbe_ieee_pfc
)
7329 pfc_en
|= !!(adapter
->ixgbe_ieee_pfc
->pfc_en
);
7331 if (link_up
&& !((adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) && pfc_en
)) {
7332 hw
->mac
.ops
.fc_enable(hw
);
7333 ixgbe_set_rx_drop_en(adapter
);
7337 time_after(jiffies
, (adapter
->link_check_timeout
+
7338 IXGBE_TRY_LINK_TIMEOUT
))) {
7339 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_UPDATE
;
7340 IXGBE_WRITE_REG(hw
, IXGBE_EIMS
, IXGBE_EIMC_LSC
);
7341 IXGBE_WRITE_FLUSH(hw
);
7344 adapter
->link_up
= link_up
;
7345 adapter
->link_speed
= link_speed
;
7348 static void ixgbe_update_default_up(struct ixgbe_adapter
*adapter
)
7350 #ifdef CONFIG_IXGBE_DCB
7351 struct net_device
*netdev
= adapter
->netdev
;
7352 struct dcb_app app
= {
7353 .selector
= IEEE_8021QAZ_APP_SEL_ETHERTYPE
,
7358 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
)
7359 up
= dcb_ieee_getapp_mask(netdev
, &app
);
7361 adapter
->default_up
= (up
> 1) ? (ffs(up
) - 1) : 0;
7366 * ixgbe_watchdog_link_is_up - update netif_carrier status and
7367 * print link up message
7368 * @adapter: pointer to the device adapter structure
7370 static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter
*adapter
)
7372 struct net_device
*netdev
= adapter
->netdev
;
7373 struct ixgbe_hw
*hw
= &adapter
->hw
;
7374 u32 link_speed
= adapter
->link_speed
;
7375 const char *speed_str
;
7376 bool flow_rx
, flow_tx
;
7378 /* only continue if link was previously down */
7379 if (netif_carrier_ok(netdev
))
7382 adapter
->flags2
&= ~IXGBE_FLAG2_SEARCH_FOR_SFP
;
7384 switch (hw
->mac
.type
) {
7385 case ixgbe_mac_82598EB
: {
7386 u32 frctl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
7387 u32 rmcs
= IXGBE_READ_REG(hw
, IXGBE_RMCS
);
7388 flow_rx
= !!(frctl
& IXGBE_FCTRL_RFCE
);
7389 flow_tx
= !!(rmcs
& IXGBE_RMCS_TFCE_802_3X
);
7392 case ixgbe_mac_X540
:
7393 case ixgbe_mac_X550
:
7394 case ixgbe_mac_X550EM_x
:
7395 case ixgbe_mac_x550em_a
:
7396 case ixgbe_mac_82599EB
: {
7397 u32 mflcn
= IXGBE_READ_REG(hw
, IXGBE_MFLCN
);
7398 u32 fccfg
= IXGBE_READ_REG(hw
, IXGBE_FCCFG
);
7399 flow_rx
= !!(mflcn
& IXGBE_MFLCN_RFCE
);
7400 flow_tx
= !!(fccfg
& IXGBE_FCCFG_TFCE_802_3X
);
7409 adapter
->last_rx_ptp_check
= jiffies
;
7411 if (test_bit(__IXGBE_PTP_RUNNING
, &adapter
->state
))
7412 ixgbe_ptp_start_cyclecounter(adapter
);
7414 switch (link_speed
) {
7415 case IXGBE_LINK_SPEED_10GB_FULL
:
7416 speed_str
= "10 Gbps";
7418 case IXGBE_LINK_SPEED_5GB_FULL
:
7419 speed_str
= "5 Gbps";
7421 case IXGBE_LINK_SPEED_2_5GB_FULL
:
7422 speed_str
= "2.5 Gbps";
7424 case IXGBE_LINK_SPEED_1GB_FULL
:
7425 speed_str
= "1 Gbps";
7427 case IXGBE_LINK_SPEED_100_FULL
:
7428 speed_str
= "100 Mbps";
7430 case IXGBE_LINK_SPEED_10_FULL
:
7431 speed_str
= "10 Mbps";
7434 speed_str
= "unknown speed";
7437 e_info(drv
, "NIC Link is Up %s, Flow Control: %s\n", speed_str
,
7438 ((flow_rx
&& flow_tx
) ? "RX/TX" :
7440 (flow_tx
? "TX" : "None"))));
7442 netif_carrier_on(netdev
);
7443 ixgbe_check_vf_rate_limit(adapter
);
7445 /* enable transmits */
7446 netif_tx_wake_all_queues(adapter
->netdev
);
7448 /* update the default user priority for VFs */
7449 ixgbe_update_default_up(adapter
);
7451 /* ping all the active vfs to let them know link has changed */
7452 ixgbe_ping_all_vfs(adapter
);
7456 * ixgbe_watchdog_link_is_down - update netif_carrier status and
7457 * print link down message
7458 * @adapter: pointer to the adapter structure
7460 static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter
*adapter
)
7462 struct net_device
*netdev
= adapter
->netdev
;
7463 struct ixgbe_hw
*hw
= &adapter
->hw
;
7465 adapter
->link_up
= false;
7466 adapter
->link_speed
= 0;
7468 /* only continue if link was up previously */
7469 if (!netif_carrier_ok(netdev
))
7472 /* poll for SFP+ cable when link is down */
7473 if (ixgbe_is_sfp(hw
) && hw
->mac
.type
== ixgbe_mac_82598EB
)
7474 adapter
->flags2
|= IXGBE_FLAG2_SEARCH_FOR_SFP
;
7476 if (test_bit(__IXGBE_PTP_RUNNING
, &adapter
->state
))
7477 ixgbe_ptp_start_cyclecounter(adapter
);
7479 e_info(drv
, "NIC Link is Down\n");
7480 netif_carrier_off(netdev
);
7482 /* ping all the active vfs to let them know link has changed */
7483 ixgbe_ping_all_vfs(adapter
);
7486 static bool ixgbe_ring_tx_pending(struct ixgbe_adapter
*adapter
)
7490 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
7491 struct ixgbe_ring
*tx_ring
= adapter
->tx_ring
[i
];
7493 if (tx_ring
->next_to_use
!= tx_ring
->next_to_clean
)
7497 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++) {
7498 struct ixgbe_ring
*ring
= adapter
->xdp_ring
[i
];
7500 if (ring
->next_to_use
!= ring
->next_to_clean
)
7507 static bool ixgbe_vf_tx_pending(struct ixgbe_adapter
*adapter
)
7509 struct ixgbe_hw
*hw
= &adapter
->hw
;
7510 struct ixgbe_ring_feature
*vmdq
= &adapter
->ring_feature
[RING_F_VMDQ
];
7511 u32 q_per_pool
= __ALIGN_MASK(1, ~vmdq
->mask
);
7515 if (!adapter
->num_vfs
)
7518 /* resetting the PF is only needed for MAC before X550 */
7519 if (hw
->mac
.type
>= ixgbe_mac_X550
)
7522 for (i
= 0; i
< adapter
->num_vfs
; i
++) {
7523 for (j
= 0; j
< q_per_pool
; j
++) {
7526 h
= IXGBE_READ_REG(hw
, IXGBE_PVFTDHN(q_per_pool
, i
, j
));
7527 t
= IXGBE_READ_REG(hw
, IXGBE_PVFTDTN(q_per_pool
, i
, j
));
7538 * ixgbe_watchdog_flush_tx - flush queues on link down
7539 * @adapter: pointer to the device adapter structure
7541 static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter
*adapter
)
7543 if (!netif_carrier_ok(adapter
->netdev
)) {
7544 if (ixgbe_ring_tx_pending(adapter
) ||
7545 ixgbe_vf_tx_pending(adapter
)) {
7546 /* We've lost link, so the controller stops DMA,
7547 * but we've got queued Tx work that's never going
7548 * to get done, so reset controller to flush Tx.
7549 * (Do the reset outside of interrupt context).
7551 e_warn(drv
, "initiating reset to clear Tx work after link loss\n");
7552 set_bit(__IXGBE_RESET_REQUESTED
, &adapter
->state
);
7557 #ifdef CONFIG_PCI_IOV
7558 static void ixgbe_check_for_bad_vf(struct ixgbe_adapter
*adapter
)
7560 struct ixgbe_hw
*hw
= &adapter
->hw
;
7561 struct pci_dev
*pdev
= adapter
->pdev
;
7565 if (!(netif_carrier_ok(adapter
->netdev
)))
7568 gpc
= IXGBE_READ_REG(hw
, IXGBE_TXDGPC
);
7569 if (gpc
) /* If incrementing then no need for the check below */
7571 /* Check to see if a bad DMA write target from an errant or
7572 * malicious VF has caused a PCIe error. If so then we can
7573 * issue a VFLR to the offending VF(s) and then resume without
7574 * requesting a full slot reset.
7580 /* check status reg for all VFs owned by this PF */
7581 for (vf
= 0; vf
< adapter
->num_vfs
; ++vf
) {
7582 struct pci_dev
*vfdev
= adapter
->vfinfo
[vf
].vfdev
;
7587 pci_read_config_word(vfdev
, PCI_STATUS
, &status_reg
);
7588 if (status_reg
!= IXGBE_FAILED_READ_CFG_WORD
&&
7589 status_reg
& PCI_STATUS_REC_MASTER_ABORT
)
7594 static void ixgbe_spoof_check(struct ixgbe_adapter
*adapter
)
7598 /* Do not perform spoof check for 82598 or if not in IOV mode */
7599 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
||
7600 adapter
->num_vfs
== 0)
7603 ssvpc
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_SSVPC
);
7606 * ssvpc register is cleared on read, if zero then no
7607 * spoofed packets in the last interval.
7612 e_warn(drv
, "%u Spoofed packets detected\n", ssvpc
);
7615 static void ixgbe_spoof_check(struct ixgbe_adapter __always_unused
*adapter
)
7620 ixgbe_check_for_bad_vf(struct ixgbe_adapter __always_unused
*adapter
)
7623 #endif /* CONFIG_PCI_IOV */
7627 * ixgbe_watchdog_subtask - check and bring link up
7628 * @adapter: pointer to the device adapter structure
7630 static void ixgbe_watchdog_subtask(struct ixgbe_adapter
*adapter
)
7632 /* if interface is down, removing or resetting, do nothing */
7633 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
7634 test_bit(__IXGBE_REMOVING
, &adapter
->state
) ||
7635 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
7638 ixgbe_watchdog_update_link(adapter
);
7640 if (adapter
->link_up
)
7641 ixgbe_watchdog_link_is_up(adapter
);
7643 ixgbe_watchdog_link_is_down(adapter
);
7645 ixgbe_check_for_bad_vf(adapter
);
7646 ixgbe_spoof_check(adapter
);
7647 ixgbe_update_stats(adapter
);
7649 ixgbe_watchdog_flush_tx(adapter
);
7653 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
7654 * @adapter: the ixgbe adapter structure
7656 static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter
*adapter
)
7658 struct ixgbe_hw
*hw
= &adapter
->hw
;
7661 /* not searching for SFP so there is nothing to do here */
7662 if (!(adapter
->flags2
& IXGBE_FLAG2_SEARCH_FOR_SFP
) &&
7663 !(adapter
->flags2
& IXGBE_FLAG2_SFP_NEEDS_RESET
))
7666 if (adapter
->sfp_poll_time
&&
7667 time_after(adapter
->sfp_poll_time
, jiffies
))
7668 return; /* If not yet time to poll for SFP */
7670 /* someone else is in init, wait until next service event */
7671 if (test_and_set_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
))
7674 adapter
->sfp_poll_time
= jiffies
+ IXGBE_SFP_POLL_JIFFIES
- 1;
7676 err
= hw
->phy
.ops
.identify_sfp(hw
);
7677 if (err
== IXGBE_ERR_SFP_NOT_SUPPORTED
)
7680 if (err
== IXGBE_ERR_SFP_NOT_PRESENT
) {
7681 /* If no cable is present, then we need to reset
7682 * the next time we find a good cable. */
7683 adapter
->flags2
|= IXGBE_FLAG2_SFP_NEEDS_RESET
;
7690 /* exit if reset not needed */
7691 if (!(adapter
->flags2
& IXGBE_FLAG2_SFP_NEEDS_RESET
))
7694 adapter
->flags2
&= ~IXGBE_FLAG2_SFP_NEEDS_RESET
;
7697 * A module may be identified correctly, but the EEPROM may not have
7698 * support for that module. setup_sfp() will fail in that case, so
7699 * we should not allow that module to load.
7701 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
7702 err
= hw
->phy
.ops
.reset(hw
);
7704 err
= hw
->mac
.ops
.setup_sfp(hw
);
7706 if (err
== IXGBE_ERR_SFP_NOT_SUPPORTED
)
7709 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_CONFIG
;
7710 e_info(probe
, "detected SFP+: %d\n", hw
->phy
.sfp_type
);
7713 clear_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
);
7715 if ((err
== IXGBE_ERR_SFP_NOT_SUPPORTED
) &&
7716 (adapter
->netdev
->reg_state
== NETREG_REGISTERED
)) {
7717 e_dev_err("failed to initialize because an unsupported "
7718 "SFP+ module type was detected.\n");
7719 e_dev_err("Reload the driver after installing a "
7720 "supported module.\n");
7721 unregister_netdev(adapter
->netdev
);
7726 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
7727 * @adapter: the ixgbe adapter structure
7729 static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter
*adapter
)
7731 struct ixgbe_hw
*hw
= &adapter
->hw
;
7734 bool autoneg
= false;
7736 if (!(adapter
->flags
& IXGBE_FLAG_NEED_LINK_CONFIG
))
7739 /* someone else is in init, wait until next service event */
7740 if (test_and_set_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
))
7743 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_CONFIG
;
7745 hw
->mac
.ops
.get_link_capabilities(hw
, &cap_speed
, &autoneg
);
7747 /* advertise highest capable link speed */
7748 if (!autoneg
&& (cap_speed
& IXGBE_LINK_SPEED_10GB_FULL
))
7749 speed
= IXGBE_LINK_SPEED_10GB_FULL
;
7751 speed
= cap_speed
& (IXGBE_LINK_SPEED_10GB_FULL
|
7752 IXGBE_LINK_SPEED_1GB_FULL
);
7754 if (hw
->mac
.ops
.setup_link
)
7755 hw
->mac
.ops
.setup_link(hw
, speed
, true);
7757 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
7758 adapter
->link_check_timeout
= jiffies
;
7759 clear_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
);
7763 * ixgbe_service_timer - Timer Call-back
7764 * @t: pointer to timer_list structure
7766 static void ixgbe_service_timer(struct timer_list
*t
)
7768 struct ixgbe_adapter
*adapter
= from_timer(adapter
, t
, service_timer
);
7769 unsigned long next_event_offset
;
7771 /* poll faster when waiting for link */
7772 if (adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
)
7773 next_event_offset
= HZ
/ 10;
7775 next_event_offset
= HZ
* 2;
7777 /* Reset the timer */
7778 mod_timer(&adapter
->service_timer
, next_event_offset
+ jiffies
);
7780 ixgbe_service_event_schedule(adapter
);
7783 static void ixgbe_phy_interrupt_subtask(struct ixgbe_adapter
*adapter
)
7785 struct ixgbe_hw
*hw
= &adapter
->hw
;
7788 if (!(adapter
->flags2
& IXGBE_FLAG2_PHY_INTERRUPT
))
7791 adapter
->flags2
&= ~IXGBE_FLAG2_PHY_INTERRUPT
;
7793 if (!hw
->phy
.ops
.handle_lasi
)
7796 status
= hw
->phy
.ops
.handle_lasi(&adapter
->hw
);
7797 if (status
!= IXGBE_ERR_OVERTEMP
)
7800 e_crit(drv
, "%s\n", ixgbe_overheat_msg
);
7803 static void ixgbe_reset_subtask(struct ixgbe_adapter
*adapter
)
7805 if (!test_and_clear_bit(__IXGBE_RESET_REQUESTED
, &adapter
->state
))
7809 /* If we're already down, removing or resetting, just bail */
7810 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
7811 test_bit(__IXGBE_REMOVING
, &adapter
->state
) ||
7812 test_bit(__IXGBE_RESETTING
, &adapter
->state
)) {
7817 ixgbe_dump(adapter
);
7818 netdev_err(adapter
->netdev
, "Reset adapter\n");
7819 adapter
->tx_timeout_count
++;
7821 ixgbe_reinit_locked(adapter
);
7826 * ixgbe_service_task - manages and runs subtasks
7827 * @work: pointer to work_struct containing our data
7829 static void ixgbe_service_task(struct work_struct
*work
)
7831 struct ixgbe_adapter
*adapter
= container_of(work
,
7832 struct ixgbe_adapter
,
7834 if (ixgbe_removed(adapter
->hw
.hw_addr
)) {
7835 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
7837 ixgbe_down(adapter
);
7840 ixgbe_service_event_complete(adapter
);
7843 if (adapter
->flags2
& IXGBE_FLAG2_UDP_TUN_REREG_NEEDED
) {
7845 adapter
->flags2
&= ~IXGBE_FLAG2_UDP_TUN_REREG_NEEDED
;
7846 udp_tunnel_get_rx_info(adapter
->netdev
);
7849 ixgbe_reset_subtask(adapter
);
7850 ixgbe_phy_interrupt_subtask(adapter
);
7851 ixgbe_sfp_detection_subtask(adapter
);
7852 ixgbe_sfp_link_config_subtask(adapter
);
7853 ixgbe_check_overtemp_subtask(adapter
);
7854 ixgbe_watchdog_subtask(adapter
);
7855 ixgbe_fdir_reinit_subtask(adapter
);
7856 ixgbe_check_hang_subtask(adapter
);
7858 if (test_bit(__IXGBE_PTP_RUNNING
, &adapter
->state
)) {
7859 ixgbe_ptp_overflow_check(adapter
);
7860 if (adapter
->flags
& IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER
)
7861 ixgbe_ptp_rx_hang(adapter
);
7862 ixgbe_ptp_tx_hang(adapter
);
7865 ixgbe_service_event_complete(adapter
);
7868 static int ixgbe_tso(struct ixgbe_ring
*tx_ring
,
7869 struct ixgbe_tx_buffer
*first
,
7871 struct ixgbe_ipsec_tx_data
*itd
)
7873 u32 vlan_macip_lens
, type_tucmd
, mss_l4len_idx
;
7874 struct sk_buff
*skb
= first
->skb
;
7884 u32 paylen
, l4_offset
;
7885 u32 fceof_saidx
= 0;
7888 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
)
7891 if (!skb_is_gso(skb
))
7894 err
= skb_cow_head(skb
, 0);
7898 if (eth_p_mpls(first
->protocol
))
7899 ip
.hdr
= skb_inner_network_header(skb
);
7901 ip
.hdr
= skb_network_header(skb
);
7902 l4
.hdr
= skb_checksum_start(skb
);
7904 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
7905 type_tucmd
= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
7907 /* initialize outer IP header fields */
7908 if (ip
.v4
->version
== 4) {
7909 unsigned char *csum_start
= skb_checksum_start(skb
);
7910 unsigned char *trans_start
= ip
.hdr
+ (ip
.v4
->ihl
* 4);
7911 int len
= csum_start
- trans_start
;
7913 /* IP header will have to cancel out any data that
7914 * is not a part of the outer IP header, so set to
7915 * a reverse csum if needed, else init check to 0.
7917 ip
.v4
->check
= (skb_shinfo(skb
)->gso_type
& SKB_GSO_PARTIAL
) ?
7918 csum_fold(csum_partial(trans_start
,
7920 type_tucmd
|= IXGBE_ADVTXD_TUCMD_IPV4
;
7923 first
->tx_flags
|= IXGBE_TX_FLAGS_TSO
|
7924 IXGBE_TX_FLAGS_CSUM
|
7925 IXGBE_TX_FLAGS_IPV4
;
7927 ip
.v6
->payload_len
= 0;
7928 first
->tx_flags
|= IXGBE_TX_FLAGS_TSO
|
7929 IXGBE_TX_FLAGS_CSUM
;
7932 /* determine offset of inner transport header */
7933 l4_offset
= l4
.hdr
- skb
->data
;
7935 /* compute length of segmentation header */
7936 *hdr_len
= (l4
.tcp
->doff
* 4) + l4_offset
;
7938 /* remove payload length from inner checksum */
7939 paylen
= skb
->len
- l4_offset
;
7940 csum_replace_by_diff(&l4
.tcp
->check
, (__force __wsum
)htonl(paylen
));
7942 /* update gso size and bytecount with header size */
7943 first
->gso_segs
= skb_shinfo(skb
)->gso_segs
;
7944 first
->bytecount
+= (first
->gso_segs
- 1) * *hdr_len
;
7946 /* mss_l4len_id: use 0 as index for TSO */
7947 mss_l4len_idx
= (*hdr_len
- l4_offset
) << IXGBE_ADVTXD_L4LEN_SHIFT
;
7948 mss_l4len_idx
|= skb_shinfo(skb
)->gso_size
<< IXGBE_ADVTXD_MSS_SHIFT
;
7950 fceof_saidx
|= itd
->sa_idx
;
7951 type_tucmd
|= itd
->flags
| itd
->trailer_len
;
7953 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
7954 vlan_macip_lens
= l4
.hdr
- ip
.hdr
;
7955 vlan_macip_lens
|= (ip
.hdr
- skb
->data
) << IXGBE_ADVTXD_MACLEN_SHIFT
;
7956 vlan_macip_lens
|= first
->tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
;
7958 ixgbe_tx_ctxtdesc(tx_ring
, vlan_macip_lens
, fceof_saidx
, type_tucmd
,
7964 static inline bool ixgbe_ipv6_csum_is_sctp(struct sk_buff
*skb
)
7966 unsigned int offset
= 0;
7968 ipv6_find_hdr(skb
, &offset
, IPPROTO_SCTP
, NULL
, NULL
);
7970 return offset
== skb_checksum_start_offset(skb
);
7973 static void ixgbe_tx_csum(struct ixgbe_ring
*tx_ring
,
7974 struct ixgbe_tx_buffer
*first
,
7975 struct ixgbe_ipsec_tx_data
*itd
)
7977 struct sk_buff
*skb
= first
->skb
;
7978 u32 vlan_macip_lens
= 0;
7979 u32 fceof_saidx
= 0;
7982 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
) {
7984 if (!(first
->tx_flags
& (IXGBE_TX_FLAGS_HW_VLAN
|
7985 IXGBE_TX_FLAGS_CC
)))
7990 switch (skb
->csum_offset
) {
7991 case offsetof(struct tcphdr
, check
):
7992 type_tucmd
= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
7994 case offsetof(struct udphdr
, check
):
7996 case offsetof(struct sctphdr
, checksum
):
7997 /* validate that this is actually an SCTP request */
7998 if (((first
->protocol
== htons(ETH_P_IP
)) &&
7999 (ip_hdr(skb
)->protocol
== IPPROTO_SCTP
)) ||
8000 ((first
->protocol
== htons(ETH_P_IPV6
)) &&
8001 ixgbe_ipv6_csum_is_sctp(skb
))) {
8002 type_tucmd
= IXGBE_ADVTXD_TUCMD_L4T_SCTP
;
8007 skb_checksum_help(skb
);
8011 /* update TX checksum flag */
8012 first
->tx_flags
|= IXGBE_TX_FLAGS_CSUM
;
8013 vlan_macip_lens
= skb_checksum_start_offset(skb
) -
8014 skb_network_offset(skb
);
8016 /* vlan_macip_lens: MACLEN, VLAN tag */
8017 vlan_macip_lens
|= skb_network_offset(skb
) << IXGBE_ADVTXD_MACLEN_SHIFT
;
8018 vlan_macip_lens
|= first
->tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
;
8020 fceof_saidx
|= itd
->sa_idx
;
8021 type_tucmd
|= itd
->flags
| itd
->trailer_len
;
8023 ixgbe_tx_ctxtdesc(tx_ring
, vlan_macip_lens
, fceof_saidx
, type_tucmd
, 0);
8026 #define IXGBE_SET_FLAG(_input, _flag, _result) \
8027 ((_flag <= _result) ? \
8028 ((u32)(_input & _flag) * (_result / _flag)) : \
8029 ((u32)(_input & _flag) / (_flag / _result)))
8031 static u32
ixgbe_tx_cmd_type(struct sk_buff
*skb
, u32 tx_flags
)
8033 /* set type for advanced descriptor with frame checksum insertion */
8034 u32 cmd_type
= IXGBE_ADVTXD_DTYP_DATA
|
8035 IXGBE_ADVTXD_DCMD_DEXT
|
8036 IXGBE_ADVTXD_DCMD_IFCS
;
8038 /* set HW vlan bit if vlan is present */
8039 cmd_type
|= IXGBE_SET_FLAG(tx_flags
, IXGBE_TX_FLAGS_HW_VLAN
,
8040 IXGBE_ADVTXD_DCMD_VLE
);
8042 /* set segmentation enable bits for TSO/FSO */
8043 cmd_type
|= IXGBE_SET_FLAG(tx_flags
, IXGBE_TX_FLAGS_TSO
,
8044 IXGBE_ADVTXD_DCMD_TSE
);
8046 /* set timestamp bit if present */
8047 cmd_type
|= IXGBE_SET_FLAG(tx_flags
, IXGBE_TX_FLAGS_TSTAMP
,
8048 IXGBE_ADVTXD_MAC_TSTAMP
);
8050 /* insert frame checksum */
8051 cmd_type
^= IXGBE_SET_FLAG(skb
->no_fcs
, 1, IXGBE_ADVTXD_DCMD_IFCS
);
8056 static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc
*tx_desc
,
8057 u32 tx_flags
, unsigned int paylen
)
8059 u32 olinfo_status
= paylen
<< IXGBE_ADVTXD_PAYLEN_SHIFT
;
8061 /* enable L4 checksum for TSO and TX checksum offload */
8062 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
8063 IXGBE_TX_FLAGS_CSUM
,
8064 IXGBE_ADVTXD_POPTS_TXSM
);
8066 /* enable IPv4 checksum for TSO */
8067 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
8068 IXGBE_TX_FLAGS_IPV4
,
8069 IXGBE_ADVTXD_POPTS_IXSM
);
8072 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
8073 IXGBE_TX_FLAGS_IPSEC
,
8074 IXGBE_ADVTXD_POPTS_IPSEC
);
8077 * Check Context must be set if Tx switch is enabled, which it
8078 * always is for case where virtual functions are running
8080 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
8084 tx_desc
->read
.olinfo_status
= cpu_to_le32(olinfo_status
);
8087 static int __ixgbe_maybe_stop_tx(struct ixgbe_ring
*tx_ring
, u16 size
)
8089 netif_stop_subqueue(tx_ring
->netdev
, tx_ring
->queue_index
);
8091 /* Herbert's original patch had:
8092 * smp_mb__after_netif_stop_queue();
8093 * but since that doesn't exist yet, just open code it.
8097 /* We need to check again in a case another CPU has just
8098 * made room available.
8100 if (likely(ixgbe_desc_unused(tx_ring
) < size
))
8103 /* A reprieve! - use start_queue because it doesn't call schedule */
8104 netif_start_subqueue(tx_ring
->netdev
, tx_ring
->queue_index
);
8105 ++tx_ring
->tx_stats
.restart_queue
;
8109 static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring
*tx_ring
, u16 size
)
8111 if (likely(ixgbe_desc_unused(tx_ring
) >= size
))
8114 return __ixgbe_maybe_stop_tx(tx_ring
, size
);
8117 #define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
8120 static int ixgbe_tx_map(struct ixgbe_ring
*tx_ring
,
8121 struct ixgbe_tx_buffer
*first
,
8124 struct sk_buff
*skb
= first
->skb
;
8125 struct ixgbe_tx_buffer
*tx_buffer
;
8126 union ixgbe_adv_tx_desc
*tx_desc
;
8127 struct skb_frag_struct
*frag
;
8129 unsigned int data_len
, size
;
8130 u32 tx_flags
= first
->tx_flags
;
8131 u32 cmd_type
= ixgbe_tx_cmd_type(skb
, tx_flags
);
8132 u16 i
= tx_ring
->next_to_use
;
8134 tx_desc
= IXGBE_TX_DESC(tx_ring
, i
);
8136 ixgbe_tx_olinfo_status(tx_desc
, tx_flags
, skb
->len
- hdr_len
);
8138 size
= skb_headlen(skb
);
8139 data_len
= skb
->data_len
;
8142 if (tx_flags
& IXGBE_TX_FLAGS_FCOE
) {
8143 if (data_len
< sizeof(struct fcoe_crc_eof
)) {
8144 size
-= sizeof(struct fcoe_crc_eof
) - data_len
;
8147 data_len
-= sizeof(struct fcoe_crc_eof
);
8152 dma
= dma_map_single(tx_ring
->dev
, skb
->data
, size
, DMA_TO_DEVICE
);
8156 for (frag
= &skb_shinfo(skb
)->frags
[0];; frag
++) {
8157 if (dma_mapping_error(tx_ring
->dev
, dma
))
8160 /* record length, and DMA address */
8161 dma_unmap_len_set(tx_buffer
, len
, size
);
8162 dma_unmap_addr_set(tx_buffer
, dma
, dma
);
8164 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
8166 while (unlikely(size
> IXGBE_MAX_DATA_PER_TXD
)) {
8167 tx_desc
->read
.cmd_type_len
=
8168 cpu_to_le32(cmd_type
^ IXGBE_MAX_DATA_PER_TXD
);
8172 if (i
== tx_ring
->count
) {
8173 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
8176 tx_desc
->read
.olinfo_status
= 0;
8178 dma
+= IXGBE_MAX_DATA_PER_TXD
;
8179 size
-= IXGBE_MAX_DATA_PER_TXD
;
8181 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
8184 if (likely(!data_len
))
8187 tx_desc
->read
.cmd_type_len
= cpu_to_le32(cmd_type
^ size
);
8191 if (i
== tx_ring
->count
) {
8192 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
8195 tx_desc
->read
.olinfo_status
= 0;
8198 size
= min_t(unsigned int, data_len
, skb_frag_size(frag
));
8200 size
= skb_frag_size(frag
);
8204 dma
= skb_frag_dma_map(tx_ring
->dev
, frag
, 0, size
,
8207 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
8210 /* write last descriptor with RS and EOP bits */
8211 cmd_type
|= size
| IXGBE_TXD_CMD
;
8212 tx_desc
->read
.cmd_type_len
= cpu_to_le32(cmd_type
);
8214 netdev_tx_sent_queue(txring_txq(tx_ring
), first
->bytecount
);
8216 /* set the timestamp */
8217 first
->time_stamp
= jiffies
;
8220 * Force memory writes to complete before letting h/w know there
8221 * are new descriptors to fetch. (Only applicable for weak-ordered
8222 * memory model archs, such as IA-64).
8224 * We also need this memory barrier to make certain all of the
8225 * status bits have been updated before next_to_watch is written.
8229 /* set next_to_watch value indicating a packet is present */
8230 first
->next_to_watch
= tx_desc
;
8233 if (i
== tx_ring
->count
)
8236 tx_ring
->next_to_use
= i
;
8238 ixgbe_maybe_stop_tx(tx_ring
, DESC_NEEDED
);
8240 if (netif_xmit_stopped(txring_txq(tx_ring
)) || !skb
->xmit_more
) {
8241 writel(i
, tx_ring
->tail
);
8243 /* we need this if more than one processor can write to our tail
8244 * at a time, it synchronizes IO on IA64/Altix systems
8251 dev_err(tx_ring
->dev
, "TX DMA map failed\n");
8253 /* clear dma mappings for failed tx_buffer_info map */
8255 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
8256 if (dma_unmap_len(tx_buffer
, len
))
8257 dma_unmap_page(tx_ring
->dev
,
8258 dma_unmap_addr(tx_buffer
, dma
),
8259 dma_unmap_len(tx_buffer
, len
),
8261 dma_unmap_len_set(tx_buffer
, len
, 0);
8262 if (tx_buffer
== first
)
8265 i
+= tx_ring
->count
;
8269 dev_kfree_skb_any(first
->skb
);
8272 tx_ring
->next_to_use
= i
;
8277 static void ixgbe_atr(struct ixgbe_ring
*ring
,
8278 struct ixgbe_tx_buffer
*first
)
8280 struct ixgbe_q_vector
*q_vector
= ring
->q_vector
;
8281 union ixgbe_atr_hash_dword input
= { .dword
= 0 };
8282 union ixgbe_atr_hash_dword common
= { .dword
= 0 };
8284 unsigned char *network
;
8286 struct ipv6hdr
*ipv6
;
8290 struct sk_buff
*skb
;
8294 /* if ring doesn't have a interrupt vector, cannot perform ATR */
8298 /* do nothing if sampling is disabled */
8299 if (!ring
->atr_sample_rate
)
8304 /* currently only IPv4/IPv6 with TCP is supported */
8305 if ((first
->protocol
!= htons(ETH_P_IP
)) &&
8306 (first
->protocol
!= htons(ETH_P_IPV6
)))
8309 /* snag network header to get L4 type and address */
8311 hdr
.network
= skb_network_header(skb
);
8312 if (unlikely(hdr
.network
<= skb
->data
))
8314 if (skb
->encapsulation
&&
8315 first
->protocol
== htons(ETH_P_IP
) &&
8316 hdr
.ipv4
->protocol
== IPPROTO_UDP
) {
8317 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
8319 if (unlikely(skb_tail_pointer(skb
) < hdr
.network
+
8323 /* verify the port is recognized as VXLAN */
8324 if (adapter
->vxlan_port
&&
8325 udp_hdr(skb
)->dest
== adapter
->vxlan_port
)
8326 hdr
.network
= skb_inner_network_header(skb
);
8328 if (adapter
->geneve_port
&&
8329 udp_hdr(skb
)->dest
== adapter
->geneve_port
)
8330 hdr
.network
= skb_inner_network_header(skb
);
8333 /* Make sure we have at least [minimum IPv4 header + TCP]
8334 * or [IPv6 header] bytes
8336 if (unlikely(skb_tail_pointer(skb
) < hdr
.network
+ 40))
8339 /* Currently only IPv4/IPv6 with TCP is supported */
8340 switch (hdr
.ipv4
->version
) {
8342 /* access ihl as u8 to avoid unaligned access on ia64 */
8343 hlen
= (hdr
.network
[0] & 0x0F) << 2;
8344 l4_proto
= hdr
.ipv4
->protocol
;
8347 hlen
= hdr
.network
- skb
->data
;
8348 l4_proto
= ipv6_find_hdr(skb
, &hlen
, IPPROTO_TCP
, NULL
, NULL
);
8349 hlen
-= hdr
.network
- skb
->data
;
8355 if (l4_proto
!= IPPROTO_TCP
)
8358 if (unlikely(skb_tail_pointer(skb
) < hdr
.network
+
8359 hlen
+ sizeof(struct tcphdr
)))
8362 th
= (struct tcphdr
*)(hdr
.network
+ hlen
);
8364 /* skip this packet since the socket is closing */
8368 /* sample on all syn packets or once every atr sample count */
8369 if (!th
->syn
&& (ring
->atr_count
< ring
->atr_sample_rate
))
8372 /* reset sample count */
8373 ring
->atr_count
= 0;
8375 vlan_id
= htons(first
->tx_flags
>> IXGBE_TX_FLAGS_VLAN_SHIFT
);
8378 * src and dst are inverted, think how the receiver sees them
8380 * The input is broken into two sections, a non-compressed section
8381 * containing vm_pool, vlan_id, and flow_type. The rest of the data
8382 * is XORed together and stored in the compressed dword.
8384 input
.formatted
.vlan_id
= vlan_id
;
8387 * since src port and flex bytes occupy the same word XOR them together
8388 * and write the value to source port portion of compressed dword
8390 if (first
->tx_flags
& (IXGBE_TX_FLAGS_SW_VLAN
| IXGBE_TX_FLAGS_HW_VLAN
))
8391 common
.port
.src
^= th
->dest
^ htons(ETH_P_8021Q
);
8393 common
.port
.src
^= th
->dest
^ first
->protocol
;
8394 common
.port
.dst
^= th
->source
;
8396 switch (hdr
.ipv4
->version
) {
8398 input
.formatted
.flow_type
= IXGBE_ATR_FLOW_TYPE_TCPV4
;
8399 common
.ip
^= hdr
.ipv4
->saddr
^ hdr
.ipv4
->daddr
;
8402 input
.formatted
.flow_type
= IXGBE_ATR_FLOW_TYPE_TCPV6
;
8403 common
.ip
^= hdr
.ipv6
->saddr
.s6_addr32
[0] ^
8404 hdr
.ipv6
->saddr
.s6_addr32
[1] ^
8405 hdr
.ipv6
->saddr
.s6_addr32
[2] ^
8406 hdr
.ipv6
->saddr
.s6_addr32
[3] ^
8407 hdr
.ipv6
->daddr
.s6_addr32
[0] ^
8408 hdr
.ipv6
->daddr
.s6_addr32
[1] ^
8409 hdr
.ipv6
->daddr
.s6_addr32
[2] ^
8410 hdr
.ipv6
->daddr
.s6_addr32
[3];
8416 if (hdr
.network
!= skb_network_header(skb
))
8417 input
.formatted
.flow_type
|= IXGBE_ATR_L4TYPE_TUNNEL_MASK
;
8419 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
8420 ixgbe_fdir_add_signature_filter_82599(&q_vector
->adapter
->hw
,
8421 input
, common
, ring
->queue_index
);
8425 static u16
ixgbe_select_queue(struct net_device
*dev
, struct sk_buff
*skb
,
8426 struct net_device
*sb_dev
,
8427 select_queue_fallback_t fallback
)
8429 struct ixgbe_adapter
*adapter
;
8430 struct ixgbe_ring_feature
*f
;
8434 u8 tc
= netdev_get_prio_tc_map(dev
, skb
->priority
);
8435 struct net_device
*vdev
= sb_dev
;
8437 txq
= vdev
->tc_to_txq
[tc
].offset
;
8438 txq
+= reciprocal_scale(skb_get_hash(skb
),
8439 vdev
->tc_to_txq
[tc
].count
);
8445 * only execute the code below if protocol is FCoE
8446 * or FIP and we have FCoE enabled on the adapter
8448 switch (vlan_get_protocol(skb
)) {
8449 case htons(ETH_P_FCOE
):
8450 case htons(ETH_P_FIP
):
8451 adapter
= netdev_priv(dev
);
8453 if (!sb_dev
&& (adapter
->flags
& IXGBE_FLAG_FCOE_ENABLED
))
8457 return fallback(dev
, skb
, sb_dev
);
8460 f
= &adapter
->ring_feature
[RING_F_FCOE
];
8462 txq
= skb_rx_queue_recorded(skb
) ? skb_get_rx_queue(skb
) :
8465 while (txq
>= f
->indices
)
8468 return txq
+ f
->offset
;
8472 static int ixgbe_xmit_xdp_ring(struct ixgbe_adapter
*adapter
,
8473 struct xdp_frame
*xdpf
)
8475 struct ixgbe_ring
*ring
= adapter
->xdp_ring
[smp_processor_id()];
8476 struct ixgbe_tx_buffer
*tx_buffer
;
8477 union ixgbe_adv_tx_desc
*tx_desc
;
8484 if (unlikely(!ixgbe_desc_unused(ring
)))
8485 return IXGBE_XDP_CONSUMED
;
8487 dma
= dma_map_single(ring
->dev
, xdpf
->data
, len
, DMA_TO_DEVICE
);
8488 if (dma_mapping_error(ring
->dev
, dma
))
8489 return IXGBE_XDP_CONSUMED
;
8491 /* record the location of the first descriptor for this packet */
8492 tx_buffer
= &ring
->tx_buffer_info
[ring
->next_to_use
];
8493 tx_buffer
->bytecount
= len
;
8494 tx_buffer
->gso_segs
= 1;
8495 tx_buffer
->protocol
= 0;
8497 i
= ring
->next_to_use
;
8498 tx_desc
= IXGBE_TX_DESC(ring
, i
);
8500 dma_unmap_len_set(tx_buffer
, len
, len
);
8501 dma_unmap_addr_set(tx_buffer
, dma
, dma
);
8502 tx_buffer
->xdpf
= xdpf
;
8504 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
8506 /* put descriptor type bits */
8507 cmd_type
= IXGBE_ADVTXD_DTYP_DATA
|
8508 IXGBE_ADVTXD_DCMD_DEXT
|
8509 IXGBE_ADVTXD_DCMD_IFCS
;
8510 cmd_type
|= len
| IXGBE_TXD_CMD
;
8511 tx_desc
->read
.cmd_type_len
= cpu_to_le32(cmd_type
);
8512 tx_desc
->read
.olinfo_status
=
8513 cpu_to_le32(len
<< IXGBE_ADVTXD_PAYLEN_SHIFT
);
8515 /* Avoid any potential race with xdp_xmit and cleanup */
8518 /* set next_to_watch value indicating a packet is present */
8520 if (i
== ring
->count
)
8523 tx_buffer
->next_to_watch
= tx_desc
;
8524 ring
->next_to_use
= i
;
8526 return IXGBE_XDP_TX
;
8529 netdev_tx_t
ixgbe_xmit_frame_ring(struct sk_buff
*skb
,
8530 struct ixgbe_adapter
*adapter
,
8531 struct ixgbe_ring
*tx_ring
)
8533 struct ixgbe_tx_buffer
*first
;
8537 u16 count
= TXD_USE_COUNT(skb_headlen(skb
));
8538 struct ixgbe_ipsec_tx_data ipsec_tx
= { 0 };
8539 __be16 protocol
= skb
->protocol
;
8543 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
8544 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
8545 * + 2 desc gap to keep tail from touching head,
8546 * + 1 desc for context descriptor,
8547 * otherwise try next time
8549 for (f
= 0; f
< skb_shinfo(skb
)->nr_frags
; f
++)
8550 count
+= TXD_USE_COUNT(skb_shinfo(skb
)->frags
[f
].size
);
8552 if (ixgbe_maybe_stop_tx(tx_ring
, count
+ 3)) {
8553 tx_ring
->tx_stats
.tx_busy
++;
8554 return NETDEV_TX_BUSY
;
8557 /* record the location of the first descriptor for this packet */
8558 first
= &tx_ring
->tx_buffer_info
[tx_ring
->next_to_use
];
8560 first
->bytecount
= skb
->len
;
8561 first
->gso_segs
= 1;
8563 /* if we have a HW VLAN tag being added default to the HW one */
8564 if (skb_vlan_tag_present(skb
)) {
8565 tx_flags
|= skb_vlan_tag_get(skb
) << IXGBE_TX_FLAGS_VLAN_SHIFT
;
8566 tx_flags
|= IXGBE_TX_FLAGS_HW_VLAN
;
8567 /* else if it is a SW VLAN check the next protocol and store the tag */
8568 } else if (protocol
== htons(ETH_P_8021Q
)) {
8569 struct vlan_hdr
*vhdr
, _vhdr
;
8570 vhdr
= skb_header_pointer(skb
, ETH_HLEN
, sizeof(_vhdr
), &_vhdr
);
8574 tx_flags
|= ntohs(vhdr
->h_vlan_TCI
) <<
8575 IXGBE_TX_FLAGS_VLAN_SHIFT
;
8576 tx_flags
|= IXGBE_TX_FLAGS_SW_VLAN
;
8578 protocol
= vlan_get_protocol(skb
);
8580 if (unlikely(skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
) &&
8581 adapter
->ptp_clock
) {
8582 if (adapter
->tstamp_config
.tx_type
== HWTSTAMP_TX_ON
&&
8583 !test_and_set_bit_lock(__IXGBE_PTP_TX_IN_PROGRESS
,
8585 skb_shinfo(skb
)->tx_flags
|= SKBTX_IN_PROGRESS
;
8586 tx_flags
|= IXGBE_TX_FLAGS_TSTAMP
;
8588 /* schedule check for Tx timestamp */
8589 adapter
->ptp_tx_skb
= skb_get(skb
);
8590 adapter
->ptp_tx_start
= jiffies
;
8591 schedule_work(&adapter
->ptp_tx_work
);
8593 adapter
->tx_hwtstamp_skipped
++;
8597 skb_tx_timestamp(skb
);
8599 #ifdef CONFIG_PCI_IOV
8601 * Use the l2switch_enable flag - would be false if the DMA
8602 * Tx switch had been disabled.
8604 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
8605 tx_flags
|= IXGBE_TX_FLAGS_CC
;
8608 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
8609 if ((adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) &&
8610 ((tx_flags
& (IXGBE_TX_FLAGS_HW_VLAN
| IXGBE_TX_FLAGS_SW_VLAN
)) ||
8611 (skb
->priority
!= TC_PRIO_CONTROL
))) {
8612 tx_flags
&= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK
;
8613 tx_flags
|= (skb
->priority
& 0x7) <<
8614 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT
;
8615 if (tx_flags
& IXGBE_TX_FLAGS_SW_VLAN
) {
8616 struct vlan_ethhdr
*vhdr
;
8618 if (skb_cow_head(skb
, 0))
8620 vhdr
= (struct vlan_ethhdr
*)skb
->data
;
8621 vhdr
->h_vlan_TCI
= htons(tx_flags
>>
8622 IXGBE_TX_FLAGS_VLAN_SHIFT
);
8624 tx_flags
|= IXGBE_TX_FLAGS_HW_VLAN
;
8628 /* record initial flags and protocol */
8629 first
->tx_flags
= tx_flags
;
8630 first
->protocol
= protocol
;
8633 /* setup tx offload for FCoE */
8634 if ((protocol
== htons(ETH_P_FCOE
)) &&
8635 (tx_ring
->netdev
->features
& (NETIF_F_FSO
| NETIF_F_FCOE_CRC
))) {
8636 tso
= ixgbe_fso(tx_ring
, first
, &hdr_len
);
8643 #endif /* IXGBE_FCOE */
8645 #ifdef CONFIG_XFRM_OFFLOAD
8646 if (xfrm_offload(skb
) &&
8647 !ixgbe_ipsec_tx(tx_ring
, first
, &ipsec_tx
))
8650 tso
= ixgbe_tso(tx_ring
, first
, &hdr_len
, &ipsec_tx
);
8654 ixgbe_tx_csum(tx_ring
, first
, &ipsec_tx
);
8656 /* add the ATR filter if ATR is on */
8657 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE
, &tx_ring
->state
))
8658 ixgbe_atr(tx_ring
, first
);
8662 #endif /* IXGBE_FCOE */
8663 if (ixgbe_tx_map(tx_ring
, first
, hdr_len
))
8664 goto cleanup_tx_timestamp
;
8666 return NETDEV_TX_OK
;
8669 dev_kfree_skb_any(first
->skb
);
8671 cleanup_tx_timestamp
:
8672 if (unlikely(tx_flags
& IXGBE_TX_FLAGS_TSTAMP
)) {
8673 dev_kfree_skb_any(adapter
->ptp_tx_skb
);
8674 adapter
->ptp_tx_skb
= NULL
;
8675 cancel_work_sync(&adapter
->ptp_tx_work
);
8676 clear_bit_unlock(__IXGBE_PTP_TX_IN_PROGRESS
, &adapter
->state
);
8679 return NETDEV_TX_OK
;
8682 static netdev_tx_t
__ixgbe_xmit_frame(struct sk_buff
*skb
,
8683 struct net_device
*netdev
,
8684 struct ixgbe_ring
*ring
)
8686 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
8687 struct ixgbe_ring
*tx_ring
;
8690 * The minimum packet size for olinfo paylen is 17 so pad the skb
8691 * in order to meet this minimum size requirement.
8693 if (skb_put_padto(skb
, 17))
8694 return NETDEV_TX_OK
;
8696 tx_ring
= ring
? ring
: adapter
->tx_ring
[skb
->queue_mapping
];
8698 return ixgbe_xmit_frame_ring(skb
, adapter
, tx_ring
);
8701 static netdev_tx_t
ixgbe_xmit_frame(struct sk_buff
*skb
,
8702 struct net_device
*netdev
)
8704 return __ixgbe_xmit_frame(skb
, netdev
, NULL
);
8708 * ixgbe_set_mac - Change the Ethernet Address of the NIC
8709 * @netdev: network interface device structure
8710 * @p: pointer to an address structure
8712 * Returns 0 on success, negative on failure
8714 static int ixgbe_set_mac(struct net_device
*netdev
, void *p
)
8716 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
8717 struct ixgbe_hw
*hw
= &adapter
->hw
;
8718 struct sockaddr
*addr
= p
;
8720 if (!is_valid_ether_addr(addr
->sa_data
))
8721 return -EADDRNOTAVAIL
;
8723 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
8724 memcpy(hw
->mac
.addr
, addr
->sa_data
, netdev
->addr_len
);
8726 ixgbe_mac_set_default_filter(adapter
);
8732 ixgbe_mdio_read(struct net_device
*netdev
, int prtad
, int devad
, u16 addr
)
8734 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
8735 struct ixgbe_hw
*hw
= &adapter
->hw
;
8739 if (prtad
!= hw
->phy
.mdio
.prtad
)
8741 rc
= hw
->phy
.ops
.read_reg(hw
, addr
, devad
, &value
);
8747 static int ixgbe_mdio_write(struct net_device
*netdev
, int prtad
, int devad
,
8748 u16 addr
, u16 value
)
8750 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
8751 struct ixgbe_hw
*hw
= &adapter
->hw
;
8753 if (prtad
!= hw
->phy
.mdio
.prtad
)
8755 return hw
->phy
.ops
.write_reg(hw
, addr
, devad
, value
);
8758 static int ixgbe_ioctl(struct net_device
*netdev
, struct ifreq
*req
, int cmd
)
8760 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
8764 return ixgbe_ptp_set_ts_config(adapter
, req
);
8766 return ixgbe_ptp_get_ts_config(adapter
, req
);
8768 if (!adapter
->hw
.phy
.ops
.read_reg
)
8772 return mdio_mii_ioctl(&adapter
->hw
.phy
.mdio
, if_mii(req
), cmd
);
8777 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
8779 * @dev: network interface device structure
8781 * Returns non-zero on failure
8783 static int ixgbe_add_sanmac_netdev(struct net_device
*dev
)
8786 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
8787 struct ixgbe_hw
*hw
= &adapter
->hw
;
8789 if (is_valid_ether_addr(hw
->mac
.san_addr
)) {
8791 err
= dev_addr_add(dev
, hw
->mac
.san_addr
, NETDEV_HW_ADDR_T_SAN
);
8794 /* update SAN MAC vmdq pool selection */
8795 hw
->mac
.ops
.set_vmdq_san_mac(hw
, VMDQ_P(0));
8801 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
8803 * @dev: network interface device structure
8805 * Returns non-zero on failure
8807 static int ixgbe_del_sanmac_netdev(struct net_device
*dev
)
8810 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
8811 struct ixgbe_mac_info
*mac
= &adapter
->hw
.mac
;
8813 if (is_valid_ether_addr(mac
->san_addr
)) {
8815 err
= dev_addr_del(dev
, mac
->san_addr
, NETDEV_HW_ADDR_T_SAN
);
8821 static void ixgbe_get_ring_stats64(struct rtnl_link_stats64
*stats
,
8822 struct ixgbe_ring
*ring
)
8829 start
= u64_stats_fetch_begin_irq(&ring
->syncp
);
8830 packets
= ring
->stats
.packets
;
8831 bytes
= ring
->stats
.bytes
;
8832 } while (u64_stats_fetch_retry_irq(&ring
->syncp
, start
));
8833 stats
->tx_packets
+= packets
;
8834 stats
->tx_bytes
+= bytes
;
8838 static void ixgbe_get_stats64(struct net_device
*netdev
,
8839 struct rtnl_link_stats64
*stats
)
8841 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
8845 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
8846 struct ixgbe_ring
*ring
= READ_ONCE(adapter
->rx_ring
[i
]);
8852 start
= u64_stats_fetch_begin_irq(&ring
->syncp
);
8853 packets
= ring
->stats
.packets
;
8854 bytes
= ring
->stats
.bytes
;
8855 } while (u64_stats_fetch_retry_irq(&ring
->syncp
, start
));
8856 stats
->rx_packets
+= packets
;
8857 stats
->rx_bytes
+= bytes
;
8861 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
8862 struct ixgbe_ring
*ring
= READ_ONCE(adapter
->tx_ring
[i
]);
8864 ixgbe_get_ring_stats64(stats
, ring
);
8866 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++) {
8867 struct ixgbe_ring
*ring
= READ_ONCE(adapter
->xdp_ring
[i
]);
8869 ixgbe_get_ring_stats64(stats
, ring
);
8873 /* following stats updated by ixgbe_watchdog_task() */
8874 stats
->multicast
= netdev
->stats
.multicast
;
8875 stats
->rx_errors
= netdev
->stats
.rx_errors
;
8876 stats
->rx_length_errors
= netdev
->stats
.rx_length_errors
;
8877 stats
->rx_crc_errors
= netdev
->stats
.rx_crc_errors
;
8878 stats
->rx_missed_errors
= netdev
->stats
.rx_missed_errors
;
8881 #ifdef CONFIG_IXGBE_DCB
8883 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
8884 * @adapter: pointer to ixgbe_adapter
8885 * @tc: number of traffic classes currently enabled
8887 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
8888 * 802.1Q priority maps to a packet buffer that exists.
8890 static void ixgbe_validate_rtr(struct ixgbe_adapter
*adapter
, u8 tc
)
8892 struct ixgbe_hw
*hw
= &adapter
->hw
;
8896 /* 82598 have a static priority to TC mapping that can not
8897 * be changed so no validation is needed.
8899 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
8902 reg
= IXGBE_READ_REG(hw
, IXGBE_RTRUP2TC
);
8905 for (i
= 0; i
< MAX_TRAFFIC_CLASS
; i
++) {
8906 u8 up2tc
= reg
>> (i
* IXGBE_RTRUP2TC_UP_SHIFT
);
8908 /* If up2tc is out of bounds default to zero */
8910 reg
&= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT
);
8914 IXGBE_WRITE_REG(hw
, IXGBE_RTRUP2TC
, reg
);
8920 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
8921 * @adapter: Pointer to adapter struct
8923 * Populate the netdev user priority to tc map
8925 static void ixgbe_set_prio_tc_map(struct ixgbe_adapter
*adapter
)
8927 struct net_device
*dev
= adapter
->netdev
;
8928 struct ixgbe_dcb_config
*dcb_cfg
= &adapter
->dcb_cfg
;
8929 struct ieee_ets
*ets
= adapter
->ixgbe_ieee_ets
;
8932 for (prio
= 0; prio
< MAX_USER_PRIORITY
; prio
++) {
8935 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
)
8936 tc
= ixgbe_dcb_get_tc_from_up(dcb_cfg
, 0, prio
);
8938 tc
= ets
->prio_tc
[prio
];
8940 netdev_set_prio_tc_map(dev
, prio
, tc
);
8944 #endif /* CONFIG_IXGBE_DCB */
8945 static int ixgbe_reassign_macvlan_pool(struct net_device
*vdev
, void *data
)
8947 struct ixgbe_adapter
*adapter
= data
;
8948 struct ixgbe_fwd_adapter
*accel
;
8951 /* we only care about macvlans... */
8952 if (!netif_is_macvlan(vdev
))
8955 /* that have hardware offload enabled... */
8956 accel
= macvlan_accel_priv(vdev
);
8960 /* If we can relocate to a different bit do so */
8961 pool
= find_first_zero_bit(adapter
->fwd_bitmask
, adapter
->num_rx_pools
);
8962 if (pool
< adapter
->num_rx_pools
) {
8963 set_bit(pool
, adapter
->fwd_bitmask
);
8968 /* if we cannot find a free pool then disable the offload */
8969 netdev_err(vdev
, "L2FW offload disabled due to lack of queue resources\n");
8970 macvlan_release_l2fw_offload(vdev
);
8972 /* unbind the queues and drop the subordinate channel config */
8973 netdev_unbind_sb_channel(adapter
->netdev
, vdev
);
8974 netdev_set_sb_channel(vdev
, 0);
8981 static void ixgbe_defrag_macvlan_pools(struct net_device
*dev
)
8983 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
8985 /* flush any stale bits out of the fwd bitmask */
8986 bitmap_clear(adapter
->fwd_bitmask
, 1, 63);
8988 /* walk through upper devices reassigning pools */
8989 netdev_walk_all_upper_dev_rcu(dev
, ixgbe_reassign_macvlan_pool
,
8994 * ixgbe_setup_tc - configure net_device for multiple traffic classes
8996 * @dev: net device to configure
8997 * @tc: number of traffic classes to enable
8999 int ixgbe_setup_tc(struct net_device
*dev
, u8 tc
)
9001 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9002 struct ixgbe_hw
*hw
= &adapter
->hw
;
9004 /* Hardware supports up to 8 traffic classes */
9005 if (tc
> adapter
->dcb_cfg
.num_tcs
.pg_tcs
)
9008 if (hw
->mac
.type
== ixgbe_mac_82598EB
&& tc
&& tc
< MAX_TRAFFIC_CLASS
)
9011 /* Hardware has to reinitialize queues and interrupts to
9012 * match packet buffer alignment. Unfortunately, the
9013 * hardware is not flexible enough to do this dynamically.
9015 if (netif_running(dev
))
9018 ixgbe_reset(adapter
);
9020 ixgbe_clear_interrupt_scheme(adapter
);
9022 #ifdef CONFIG_IXGBE_DCB
9024 if (adapter
->xdp_prog
) {
9025 e_warn(probe
, "DCB is not supported with XDP\n");
9027 ixgbe_init_interrupt_scheme(adapter
);
9028 if (netif_running(dev
))
9033 netdev_set_num_tc(dev
, tc
);
9034 ixgbe_set_prio_tc_map(adapter
);
9036 adapter
->hw_tcs
= tc
;
9037 adapter
->flags
|= IXGBE_FLAG_DCB_ENABLED
;
9039 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
) {
9040 adapter
->last_lfc_mode
= adapter
->hw
.fc
.requested_mode
;
9041 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
9044 netdev_reset_tc(dev
);
9046 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
9047 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
9049 adapter
->flags
&= ~IXGBE_FLAG_DCB_ENABLED
;
9050 adapter
->hw_tcs
= tc
;
9052 adapter
->temp_dcb_cfg
.pfc_mode_enable
= false;
9053 adapter
->dcb_cfg
.pfc_mode_enable
= false;
9056 ixgbe_validate_rtr(adapter
, tc
);
9058 #endif /* CONFIG_IXGBE_DCB */
9059 ixgbe_init_interrupt_scheme(adapter
);
9061 ixgbe_defrag_macvlan_pools(dev
);
9063 if (netif_running(dev
))
9064 return ixgbe_open(dev
);
9069 static int ixgbe_delete_clsu32(struct ixgbe_adapter
*adapter
,
9070 struct tc_cls_u32_offload
*cls
)
9072 u32 hdl
= cls
->knode
.handle
;
9073 u32 uhtid
= TC_U32_USERHTID(cls
->knode
.handle
);
9074 u32 loc
= cls
->knode
.handle
& 0xfffff;
9076 struct ixgbe_jump_table
*jump
= NULL
;
9078 if (loc
> IXGBE_MAX_HW_ENTRIES
)
9081 if ((uhtid
!= 0x800) && (uhtid
>= IXGBE_MAX_LINK_HANDLE
))
9084 /* Clear this filter in the link data it is associated with */
9085 if (uhtid
!= 0x800) {
9086 jump
= adapter
->jump_tables
[uhtid
];
9089 if (!test_bit(loc
- 1, jump
->child_loc_map
))
9091 clear_bit(loc
- 1, jump
->child_loc_map
);
9094 /* Check if the filter being deleted is a link */
9095 for (i
= 1; i
< IXGBE_MAX_LINK_HANDLE
; i
++) {
9096 jump
= adapter
->jump_tables
[i
];
9097 if (jump
&& jump
->link_hdl
== hdl
) {
9098 /* Delete filters in the hardware in the child hash
9099 * table associated with this link
9101 for (j
= 0; j
< IXGBE_MAX_HW_ENTRIES
; j
++) {
9102 if (!test_bit(j
, jump
->child_loc_map
))
9104 spin_lock(&adapter
->fdir_perfect_lock
);
9105 err
= ixgbe_update_ethtool_fdir_entry(adapter
,
9108 spin_unlock(&adapter
->fdir_perfect_lock
);
9109 clear_bit(j
, jump
->child_loc_map
);
9111 /* Remove resources for this link */
9115 adapter
->jump_tables
[i
] = NULL
;
9120 spin_lock(&adapter
->fdir_perfect_lock
);
9121 err
= ixgbe_update_ethtool_fdir_entry(adapter
, NULL
, loc
);
9122 spin_unlock(&adapter
->fdir_perfect_lock
);
9126 static int ixgbe_configure_clsu32_add_hnode(struct ixgbe_adapter
*adapter
,
9127 struct tc_cls_u32_offload
*cls
)
9129 u32 uhtid
= TC_U32_USERHTID(cls
->hnode
.handle
);
9131 if (uhtid
>= IXGBE_MAX_LINK_HANDLE
)
9134 /* This ixgbe devices do not support hash tables at the moment
9135 * so abort when given hash tables.
9137 if (cls
->hnode
.divisor
> 0)
9140 set_bit(uhtid
- 1, &adapter
->tables
);
9144 static int ixgbe_configure_clsu32_del_hnode(struct ixgbe_adapter
*adapter
,
9145 struct tc_cls_u32_offload
*cls
)
9147 u32 uhtid
= TC_U32_USERHTID(cls
->hnode
.handle
);
9149 if (uhtid
>= IXGBE_MAX_LINK_HANDLE
)
9152 clear_bit(uhtid
- 1, &adapter
->tables
);
9156 #ifdef CONFIG_NET_CLS_ACT
9157 struct upper_walk_data
{
9158 struct ixgbe_adapter
*adapter
;
9164 static int get_macvlan_queue(struct net_device
*upper
, void *_data
)
9166 if (netif_is_macvlan(upper
)) {
9167 struct ixgbe_fwd_adapter
*vadapter
= macvlan_accel_priv(upper
);
9168 struct upper_walk_data
*data
= _data
;
9169 struct ixgbe_adapter
*adapter
= data
->adapter
;
9170 int ifindex
= data
->ifindex
;
9172 if (vadapter
&& upper
->ifindex
== ifindex
) {
9173 data
->queue
= adapter
->rx_ring
[vadapter
->rx_base_queue
]->reg_idx
;
9174 data
->action
= data
->queue
;
9182 static int handle_redirect_action(struct ixgbe_adapter
*adapter
, int ifindex
,
9183 u8
*queue
, u64
*action
)
9185 struct ixgbe_ring_feature
*vmdq
= &adapter
->ring_feature
[RING_F_VMDQ
];
9186 unsigned int num_vfs
= adapter
->num_vfs
, vf
;
9187 struct upper_walk_data data
;
9188 struct net_device
*upper
;
9190 /* redirect to a SRIOV VF */
9191 for (vf
= 0; vf
< num_vfs
; ++vf
) {
9192 upper
= pci_get_drvdata(adapter
->vfinfo
[vf
].vfdev
);
9193 if (upper
->ifindex
== ifindex
) {
9194 *queue
= vf
* __ALIGN_MASK(1, ~vmdq
->mask
);
9196 *action
<<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF
;
9201 /* redirect to a offloaded macvlan netdev */
9202 data
.adapter
= adapter
;
9203 data
.ifindex
= ifindex
;
9206 if (netdev_walk_all_upper_dev_rcu(adapter
->netdev
,
9207 get_macvlan_queue
, &data
)) {
9208 *action
= data
.action
;
9209 *queue
= data
.queue
;
9217 static int parse_tc_actions(struct ixgbe_adapter
*adapter
,
9218 struct tcf_exts
*exts
, u64
*action
, u8
*queue
)
9220 const struct tc_action
*a
;
9223 if (!tcf_exts_has_actions(exts
))
9226 tcf_exts_for_each_action(i
, a
, exts
) {
9228 if (is_tcf_gact_shot(a
)) {
9229 *action
= IXGBE_FDIR_DROP_QUEUE
;
9230 *queue
= IXGBE_FDIR_DROP_QUEUE
;
9234 /* Redirect to a VF or a offloaded macvlan */
9235 if (is_tcf_mirred_egress_redirect(a
)) {
9236 struct net_device
*dev
= tcf_mirred_dev(a
);
9240 return handle_redirect_action(adapter
, dev
->ifindex
,
9250 static int parse_tc_actions(struct ixgbe_adapter
*adapter
,
9251 struct tcf_exts
*exts
, u64
*action
, u8
*queue
)
9255 #endif /* CONFIG_NET_CLS_ACT */
9257 static int ixgbe_clsu32_build_input(struct ixgbe_fdir_filter
*input
,
9258 union ixgbe_atr_input
*mask
,
9259 struct tc_cls_u32_offload
*cls
,
9260 struct ixgbe_mat_field
*field_ptr
,
9261 struct ixgbe_nexthdr
*nexthdr
)
9265 bool found_entry
= false, found_jump_field
= false;
9267 for (i
= 0; i
< cls
->knode
.sel
->nkeys
; i
++) {
9268 off
= cls
->knode
.sel
->keys
[i
].off
;
9269 val
= cls
->knode
.sel
->keys
[i
].val
;
9270 m
= cls
->knode
.sel
->keys
[i
].mask
;
9272 for (j
= 0; field_ptr
[j
].val
; j
++) {
9273 if (field_ptr
[j
].off
== off
) {
9274 field_ptr
[j
].val(input
, mask
, (__force u32
)val
,
9276 input
->filter
.formatted
.flow_type
|=
9283 if (nexthdr
->off
== cls
->knode
.sel
->keys
[i
].off
&&
9285 (__force u32
)cls
->knode
.sel
->keys
[i
].val
&&
9287 (__force u32
)cls
->knode
.sel
->keys
[i
].mask
)
9288 found_jump_field
= true;
9294 if (nexthdr
&& !found_jump_field
)
9300 mask
->formatted
.flow_type
= IXGBE_ATR_L4TYPE_IPV6_MASK
|
9301 IXGBE_ATR_L4TYPE_MASK
;
9303 if (input
->filter
.formatted
.flow_type
== IXGBE_ATR_FLOW_TYPE_IPV4
)
9304 mask
->formatted
.flow_type
&= IXGBE_ATR_L4TYPE_IPV6_MASK
;
9309 static int ixgbe_configure_clsu32(struct ixgbe_adapter
*adapter
,
9310 struct tc_cls_u32_offload
*cls
)
9312 __be16 protocol
= cls
->common
.protocol
;
9313 u32 loc
= cls
->knode
.handle
& 0xfffff;
9314 struct ixgbe_hw
*hw
= &adapter
->hw
;
9315 struct ixgbe_mat_field
*field_ptr
;
9316 struct ixgbe_fdir_filter
*input
= NULL
;
9317 union ixgbe_atr_input
*mask
= NULL
;
9318 struct ixgbe_jump_table
*jump
= NULL
;
9319 int i
, err
= -EINVAL
;
9321 u32 uhtid
, link_uhtid
;
9323 uhtid
= TC_U32_USERHTID(cls
->knode
.handle
);
9324 link_uhtid
= TC_U32_USERHTID(cls
->knode
.link_handle
);
9326 /* At the moment cls_u32 jumps to network layer and skips past
9327 * L2 headers. The canonical method to match L2 frames is to use
9328 * negative values. However this is error prone at best but really
9329 * just broken because there is no way to "know" what sort of hdr
9330 * is in front of the network layer. Fix cls_u32 to support L2
9331 * headers when needed.
9333 if (protocol
!= htons(ETH_P_IP
))
9336 if (loc
>= ((1024 << adapter
->fdir_pballoc
) - 2)) {
9337 e_err(drv
, "Location out of range\n");
9341 /* cls u32 is a graph starting at root node 0x800. The driver tracks
9342 * links and also the fields used to advance the parser across each
9343 * link (e.g. nexthdr/eat parameters from 'tc'). This way we can map
9344 * the u32 graph onto the hardware parse graph denoted in ixgbe_model.h
9345 * To add support for new nodes update ixgbe_model.h parse structures
9346 * this function _should_ be generic try not to hardcode values here.
9348 if (uhtid
== 0x800) {
9349 field_ptr
= (adapter
->jump_tables
[0])->mat
;
9351 if (uhtid
>= IXGBE_MAX_LINK_HANDLE
)
9353 if (!adapter
->jump_tables
[uhtid
])
9355 field_ptr
= (adapter
->jump_tables
[uhtid
])->mat
;
9361 /* At this point we know the field_ptr is valid and need to either
9362 * build cls_u32 link or attach filter. Because adding a link to
9363 * a handle that does not exist is invalid and the same for adding
9364 * rules to handles that don't exist.
9368 struct ixgbe_nexthdr
*nexthdr
= ixgbe_ipv4_jumps
;
9370 if (link_uhtid
>= IXGBE_MAX_LINK_HANDLE
)
9373 if (!test_bit(link_uhtid
- 1, &adapter
->tables
))
9376 /* Multiple filters as links to the same hash table are not
9377 * supported. To add a new filter with the same next header
9378 * but different match/jump conditions, create a new hash table
9381 if (adapter
->jump_tables
[link_uhtid
] &&
9382 (adapter
->jump_tables
[link_uhtid
])->link_hdl
) {
9383 e_err(drv
, "Link filter exists for link: %x\n",
9388 for (i
= 0; nexthdr
[i
].jump
; i
++) {
9389 if (nexthdr
[i
].o
!= cls
->knode
.sel
->offoff
||
9390 nexthdr
[i
].s
!= cls
->knode
.sel
->offshift
||
9392 (__force u32
)cls
->knode
.sel
->offmask
)
9395 jump
= kzalloc(sizeof(*jump
), GFP_KERNEL
);
9398 input
= kzalloc(sizeof(*input
), GFP_KERNEL
);
9403 mask
= kzalloc(sizeof(*mask
), GFP_KERNEL
);
9408 jump
->input
= input
;
9410 jump
->link_hdl
= cls
->knode
.handle
;
9412 err
= ixgbe_clsu32_build_input(input
, mask
, cls
,
9413 field_ptr
, &nexthdr
[i
]);
9415 jump
->mat
= nexthdr
[i
].jump
;
9416 adapter
->jump_tables
[link_uhtid
] = jump
;
9423 input
= kzalloc(sizeof(*input
), GFP_KERNEL
);
9426 mask
= kzalloc(sizeof(*mask
), GFP_KERNEL
);
9432 if ((uhtid
!= 0x800) && (adapter
->jump_tables
[uhtid
])) {
9433 if ((adapter
->jump_tables
[uhtid
])->input
)
9434 memcpy(input
, (adapter
->jump_tables
[uhtid
])->input
,
9436 if ((adapter
->jump_tables
[uhtid
])->mask
)
9437 memcpy(mask
, (adapter
->jump_tables
[uhtid
])->mask
,
9440 /* Lookup in all child hash tables if this location is already
9441 * filled with a filter
9443 for (i
= 1; i
< IXGBE_MAX_LINK_HANDLE
; i
++) {
9444 struct ixgbe_jump_table
*link
= adapter
->jump_tables
[i
];
9446 if (link
&& (test_bit(loc
- 1, link
->child_loc_map
))) {
9447 e_err(drv
, "Filter exists in location: %x\n",
9454 err
= ixgbe_clsu32_build_input(input
, mask
, cls
, field_ptr
, NULL
);
9458 err
= parse_tc_actions(adapter
, cls
->knode
.exts
, &input
->action
,
9463 input
->sw_idx
= loc
;
9465 spin_lock(&adapter
->fdir_perfect_lock
);
9467 if (hlist_empty(&adapter
->fdir_filter_list
)) {
9468 memcpy(&adapter
->fdir_mask
, mask
, sizeof(*mask
));
9469 err
= ixgbe_fdir_set_input_mask_82599(hw
, mask
);
9471 goto err_out_w_lock
;
9472 } else if (memcmp(&adapter
->fdir_mask
, mask
, sizeof(*mask
))) {
9474 goto err_out_w_lock
;
9477 ixgbe_atr_compute_perfect_hash_82599(&input
->filter
, mask
);
9478 err
= ixgbe_fdir_write_perfect_filter_82599(hw
, &input
->filter
,
9479 input
->sw_idx
, queue
);
9481 ixgbe_update_ethtool_fdir_entry(adapter
, input
, input
->sw_idx
);
9482 spin_unlock(&adapter
->fdir_perfect_lock
);
9484 if ((uhtid
!= 0x800) && (adapter
->jump_tables
[uhtid
]))
9485 set_bit(loc
- 1, (adapter
->jump_tables
[uhtid
])->child_loc_map
);
9490 spin_unlock(&adapter
->fdir_perfect_lock
);
9500 static int ixgbe_setup_tc_cls_u32(struct ixgbe_adapter
*adapter
,
9501 struct tc_cls_u32_offload
*cls_u32
)
9503 switch (cls_u32
->command
) {
9504 case TC_CLSU32_NEW_KNODE
:
9505 case TC_CLSU32_REPLACE_KNODE
:
9506 return ixgbe_configure_clsu32(adapter
, cls_u32
);
9507 case TC_CLSU32_DELETE_KNODE
:
9508 return ixgbe_delete_clsu32(adapter
, cls_u32
);
9509 case TC_CLSU32_NEW_HNODE
:
9510 case TC_CLSU32_REPLACE_HNODE
:
9511 return ixgbe_configure_clsu32_add_hnode(adapter
, cls_u32
);
9512 case TC_CLSU32_DELETE_HNODE
:
9513 return ixgbe_configure_clsu32_del_hnode(adapter
, cls_u32
);
9519 static int ixgbe_setup_tc_block_cb(enum tc_setup_type type
, void *type_data
,
9522 struct ixgbe_adapter
*adapter
= cb_priv
;
9524 if (!tc_cls_can_offload_and_chain0(adapter
->netdev
, type_data
))
9528 case TC_SETUP_CLSU32
:
9529 return ixgbe_setup_tc_cls_u32(adapter
, type_data
);
9535 static int ixgbe_setup_tc_block(struct net_device
*dev
,
9536 struct tc_block_offload
*f
)
9538 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9540 if (f
->binder_type
!= TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS
)
9543 switch (f
->command
) {
9545 return tcf_block_cb_register(f
->block
, ixgbe_setup_tc_block_cb
,
9546 adapter
, adapter
, f
->extack
);
9547 case TC_BLOCK_UNBIND
:
9548 tcf_block_cb_unregister(f
->block
, ixgbe_setup_tc_block_cb
,
9556 static int ixgbe_setup_tc_mqprio(struct net_device
*dev
,
9557 struct tc_mqprio_qopt
*mqprio
)
9559 mqprio
->hw
= TC_MQPRIO_HW_OFFLOAD_TCS
;
9560 return ixgbe_setup_tc(dev
, mqprio
->num_tc
);
9563 static int __ixgbe_setup_tc(struct net_device
*dev
, enum tc_setup_type type
,
9567 case TC_SETUP_BLOCK
:
9568 return ixgbe_setup_tc_block(dev
, type_data
);
9569 case TC_SETUP_QDISC_MQPRIO
:
9570 return ixgbe_setup_tc_mqprio(dev
, type_data
);
9576 #ifdef CONFIG_PCI_IOV
9577 void ixgbe_sriov_reinit(struct ixgbe_adapter
*adapter
)
9579 struct net_device
*netdev
= adapter
->netdev
;
9582 ixgbe_setup_tc(netdev
, adapter
->hw_tcs
);
9587 void ixgbe_do_reset(struct net_device
*netdev
)
9589 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
9591 if (netif_running(netdev
))
9592 ixgbe_reinit_locked(adapter
);
9594 ixgbe_reset(adapter
);
9597 static netdev_features_t
ixgbe_fix_features(struct net_device
*netdev
,
9598 netdev_features_t features
)
9600 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
9602 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
9603 if (!(features
& NETIF_F_RXCSUM
))
9604 features
&= ~NETIF_F_LRO
;
9606 /* Turn off LRO if not RSC capable */
9607 if (!(adapter
->flags2
& IXGBE_FLAG2_RSC_CAPABLE
))
9608 features
&= ~NETIF_F_LRO
;
9610 if (adapter
->xdp_prog
&& (features
& NETIF_F_LRO
)) {
9611 e_dev_err("LRO is not supported with XDP\n");
9612 features
&= ~NETIF_F_LRO
;
9618 static void ixgbe_reset_l2fw_offload(struct ixgbe_adapter
*adapter
)
9620 int rss
= min_t(int, ixgbe_max_rss_indices(adapter
),
9623 /* go back to full RSS if we're not running SR-IOV */
9624 if (!adapter
->ring_feature
[RING_F_VMDQ
].offset
)
9625 adapter
->flags
&= ~(IXGBE_FLAG_VMDQ_ENABLED
|
9626 IXGBE_FLAG_SRIOV_ENABLED
);
9628 adapter
->ring_feature
[RING_F_RSS
].limit
= rss
;
9629 adapter
->ring_feature
[RING_F_VMDQ
].limit
= 1;
9631 ixgbe_setup_tc(adapter
->netdev
, adapter
->hw_tcs
);
9634 static int ixgbe_set_features(struct net_device
*netdev
,
9635 netdev_features_t features
)
9637 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
9638 netdev_features_t changed
= netdev
->features
^ features
;
9639 bool need_reset
= false;
9641 /* Make sure RSC matches LRO, reset if change */
9642 if (!(features
& NETIF_F_LRO
)) {
9643 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
9645 adapter
->flags2
&= ~IXGBE_FLAG2_RSC_ENABLED
;
9646 } else if ((adapter
->flags2
& IXGBE_FLAG2_RSC_CAPABLE
) &&
9647 !(adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)) {
9648 if (adapter
->rx_itr_setting
== 1 ||
9649 adapter
->rx_itr_setting
> IXGBE_MIN_RSC_ITR
) {
9650 adapter
->flags2
|= IXGBE_FLAG2_RSC_ENABLED
;
9652 } else if ((changed
^ features
) & NETIF_F_LRO
) {
9653 e_info(probe
, "rx-usecs set too low, "
9659 * Check if Flow Director n-tuple support or hw_tc support was
9660 * enabled or disabled. If the state changed, we need to reset.
9662 if ((features
& NETIF_F_NTUPLE
) || (features
& NETIF_F_HW_TC
)) {
9663 /* turn off ATR, enable perfect filters and reset */
9664 if (!(adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
))
9667 adapter
->flags
&= ~IXGBE_FLAG_FDIR_HASH_CAPABLE
;
9668 adapter
->flags
|= IXGBE_FLAG_FDIR_PERFECT_CAPABLE
;
9670 /* turn off perfect filters, enable ATR and reset */
9671 if (adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
)
9674 adapter
->flags
&= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE
;
9676 /* We cannot enable ATR if SR-IOV is enabled */
9677 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
||
9678 /* We cannot enable ATR if we have 2 or more tcs */
9679 (adapter
->hw_tcs
> 1) ||
9680 /* We cannot enable ATR if RSS is disabled */
9681 (adapter
->ring_feature
[RING_F_RSS
].limit
<= 1) ||
9682 /* A sample rate of 0 indicates ATR disabled */
9683 (!adapter
->atr_sample_rate
))
9684 ; /* do nothing not supported */
9685 else /* otherwise supported and set the flag */
9686 adapter
->flags
|= IXGBE_FLAG_FDIR_HASH_CAPABLE
;
9689 if (changed
& NETIF_F_RXALL
)
9692 netdev
->features
= features
;
9694 if ((adapter
->flags
& IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE
)) {
9695 if (features
& NETIF_F_RXCSUM
) {
9696 adapter
->flags2
|= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED
;
9698 u32 port_mask
= IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK
;
9700 ixgbe_clear_udp_tunnel_port(adapter
, port_mask
);
9704 if ((adapter
->flags
& IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE
)) {
9705 if (features
& NETIF_F_RXCSUM
) {
9706 adapter
->flags2
|= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED
;
9708 u32 port_mask
= IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK
;
9710 ixgbe_clear_udp_tunnel_port(adapter
, port_mask
);
9714 if ((changed
& NETIF_F_HW_L2FW_DOFFLOAD
) && adapter
->num_rx_pools
> 1)
9715 ixgbe_reset_l2fw_offload(adapter
);
9716 else if (need_reset
)
9717 ixgbe_do_reset(netdev
);
9718 else if (changed
& (NETIF_F_HW_VLAN_CTAG_RX
|
9719 NETIF_F_HW_VLAN_CTAG_FILTER
))
9720 ixgbe_set_rx_mode(netdev
);
9726 * ixgbe_add_udp_tunnel_port - Get notifications about adding UDP tunnel ports
9727 * @dev: The port's netdev
9728 * @ti: Tunnel endpoint information
9730 static void ixgbe_add_udp_tunnel_port(struct net_device
*dev
,
9731 struct udp_tunnel_info
*ti
)
9733 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9734 struct ixgbe_hw
*hw
= &adapter
->hw
;
9735 __be16 port
= ti
->port
;
9739 if (ti
->sa_family
!= AF_INET
)
9743 case UDP_TUNNEL_TYPE_VXLAN
:
9744 if (!(adapter
->flags
& IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE
))
9747 if (adapter
->vxlan_port
== port
)
9750 if (adapter
->vxlan_port
) {
9752 "VXLAN port %d set, not adding port %d\n",
9753 ntohs(adapter
->vxlan_port
),
9758 adapter
->vxlan_port
= port
;
9760 case UDP_TUNNEL_TYPE_GENEVE
:
9761 if (!(adapter
->flags
& IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE
))
9764 if (adapter
->geneve_port
== port
)
9767 if (adapter
->geneve_port
) {
9769 "GENEVE port %d set, not adding port %d\n",
9770 ntohs(adapter
->geneve_port
),
9775 port_shift
= IXGBE_VXLANCTRL_GENEVE_UDPPORT_SHIFT
;
9776 adapter
->geneve_port
= port
;
9782 reg
= IXGBE_READ_REG(hw
, IXGBE_VXLANCTRL
) | ntohs(port
) << port_shift
;
9783 IXGBE_WRITE_REG(hw
, IXGBE_VXLANCTRL
, reg
);
9787 * ixgbe_del_udp_tunnel_port - Get notifications about removing UDP tunnel ports
9788 * @dev: The port's netdev
9789 * @ti: Tunnel endpoint information
9791 static void ixgbe_del_udp_tunnel_port(struct net_device
*dev
,
9792 struct udp_tunnel_info
*ti
)
9794 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9797 if (ti
->type
!= UDP_TUNNEL_TYPE_VXLAN
&&
9798 ti
->type
!= UDP_TUNNEL_TYPE_GENEVE
)
9801 if (ti
->sa_family
!= AF_INET
)
9805 case UDP_TUNNEL_TYPE_VXLAN
:
9806 if (!(adapter
->flags
& IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE
))
9809 if (adapter
->vxlan_port
!= ti
->port
) {
9810 netdev_info(dev
, "VXLAN port %d not found\n",
9815 port_mask
= IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK
;
9817 case UDP_TUNNEL_TYPE_GENEVE
:
9818 if (!(adapter
->flags
& IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE
))
9821 if (adapter
->geneve_port
!= ti
->port
) {
9822 netdev_info(dev
, "GENEVE port %d not found\n",
9827 port_mask
= IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK
;
9833 ixgbe_clear_udp_tunnel_port(adapter
, port_mask
);
9834 adapter
->flags2
|= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED
;
9837 static int ixgbe_ndo_fdb_add(struct ndmsg
*ndm
, struct nlattr
*tb
[],
9838 struct net_device
*dev
,
9839 const unsigned char *addr
, u16 vid
,
9842 /* guarantee we can provide a unique filter for the unicast address */
9843 if (is_unicast_ether_addr(addr
) || is_link_local_ether_addr(addr
)) {
9844 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9845 u16 pool
= VMDQ_P(0);
9847 if (netdev_uc_count(dev
) >= ixgbe_available_rars(adapter
, pool
))
9851 return ndo_dflt_fdb_add(ndm
, tb
, dev
, addr
, vid
, flags
);
9855 * ixgbe_configure_bridge_mode - set various bridge modes
9856 * @adapter: the private structure
9857 * @mode: requested bridge mode
9859 * Configure some settings require for various bridge modes.
9861 static int ixgbe_configure_bridge_mode(struct ixgbe_adapter
*adapter
,
9864 struct ixgbe_hw
*hw
= &adapter
->hw
;
9865 unsigned int p
, num_pools
;
9869 case BRIDGE_MODE_VEPA
:
9870 /* disable Tx loopback, rely on switch hairpin mode */
9871 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_PFDTXGSWC
, 0);
9873 /* must enable Rx switching replication to allow multicast
9874 * packet reception on all VFs, and to enable source address
9877 vmdctl
= IXGBE_READ_REG(hw
, IXGBE_VMD_CTL
);
9878 vmdctl
|= IXGBE_VT_CTL_REPLEN
;
9879 IXGBE_WRITE_REG(hw
, IXGBE_VMD_CTL
, vmdctl
);
9881 /* enable Rx source address pruning. Note, this requires
9882 * replication to be enabled or else it does nothing.
9884 num_pools
= adapter
->num_vfs
+ adapter
->num_rx_pools
;
9885 for (p
= 0; p
< num_pools
; p
++) {
9886 if (hw
->mac
.ops
.set_source_address_pruning
)
9887 hw
->mac
.ops
.set_source_address_pruning(hw
,
9892 case BRIDGE_MODE_VEB
:
9893 /* enable Tx loopback for internal VF/PF communication */
9894 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_PFDTXGSWC
,
9895 IXGBE_PFDTXGSWC_VT_LBEN
);
9897 /* disable Rx switching replication unless we have SR-IOV
9900 vmdctl
= IXGBE_READ_REG(hw
, IXGBE_VMD_CTL
);
9901 if (!adapter
->num_vfs
)
9902 vmdctl
&= ~IXGBE_VT_CTL_REPLEN
;
9903 IXGBE_WRITE_REG(hw
, IXGBE_VMD_CTL
, vmdctl
);
9905 /* disable Rx source address pruning, since we don't expect to
9906 * be receiving external loopback of our transmitted frames.
9908 num_pools
= adapter
->num_vfs
+ adapter
->num_rx_pools
;
9909 for (p
= 0; p
< num_pools
; p
++) {
9910 if (hw
->mac
.ops
.set_source_address_pruning
)
9911 hw
->mac
.ops
.set_source_address_pruning(hw
,
9920 adapter
->bridge_mode
= mode
;
9922 e_info(drv
, "enabling bridge mode: %s\n",
9923 mode
== BRIDGE_MODE_VEPA
? "VEPA" : "VEB");
9928 static int ixgbe_ndo_bridge_setlink(struct net_device
*dev
,
9929 struct nlmsghdr
*nlh
, u16 flags
)
9931 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9932 struct nlattr
*attr
, *br_spec
;
9935 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
9938 br_spec
= nlmsg_find_attr(nlh
, sizeof(struct ifinfomsg
), IFLA_AF_SPEC
);
9942 nla_for_each_nested(attr
, br_spec
, rem
) {
9946 if (nla_type(attr
) != IFLA_BRIDGE_MODE
)
9949 if (nla_len(attr
) < sizeof(mode
))
9952 mode
= nla_get_u16(attr
);
9953 status
= ixgbe_configure_bridge_mode(adapter
, mode
);
9963 static int ixgbe_ndo_bridge_getlink(struct sk_buff
*skb
, u32 pid
, u32 seq
,
9964 struct net_device
*dev
,
9965 u32 filter_mask
, int nlflags
)
9967 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
9969 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
9972 return ndo_dflt_bridge_getlink(skb
, pid
, seq
, dev
,
9973 adapter
->bridge_mode
, 0, 0, nlflags
,
9977 static void *ixgbe_fwd_add(struct net_device
*pdev
, struct net_device
*vdev
)
9979 struct ixgbe_adapter
*adapter
= netdev_priv(pdev
);
9980 struct ixgbe_fwd_adapter
*accel
;
9981 int tcs
= adapter
->hw_tcs
? : 1;
9984 if (adapter
->xdp_prog
) {
9985 e_warn(probe
, "L2FW offload is not supported with XDP\n");
9986 return ERR_PTR(-EINVAL
);
9989 /* The hardware supported by ixgbe only filters on the destination MAC
9990 * address. In order to avoid issues we only support offloading modes
9991 * where the hardware can actually provide the functionality.
9993 if (!macvlan_supports_dest_filter(vdev
))
9994 return ERR_PTR(-EMEDIUMTYPE
);
9996 /* We need to lock down the macvlan to be a single queue device so that
9997 * we can reuse the tc_to_txq field in the macvlan netdev to represent
9998 * the queue mapping to our netdev.
10000 if (netif_is_multiqueue(vdev
))
10001 return ERR_PTR(-ERANGE
);
10003 pool
= find_first_zero_bit(adapter
->fwd_bitmask
, adapter
->num_rx_pools
);
10004 if (pool
== adapter
->num_rx_pools
) {
10005 u16 used_pools
= adapter
->num_vfs
+ adapter
->num_rx_pools
;
10006 u16 reserved_pools
;
10008 if (((adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) &&
10009 adapter
->num_rx_pools
>= (MAX_TX_QUEUES
/ tcs
)) ||
10010 adapter
->num_rx_pools
> IXGBE_MAX_MACVLANS
)
10011 return ERR_PTR(-EBUSY
);
10013 /* Hardware has a limited number of available pools. Each VF,
10014 * and the PF require a pool. Check to ensure we don't
10015 * attempt to use more then the available number of pools.
10017 if (used_pools
>= IXGBE_MAX_VF_FUNCTIONS
)
10018 return ERR_PTR(-EBUSY
);
10020 /* Enable VMDq flag so device will be set in VM mode */
10021 adapter
->flags
|= IXGBE_FLAG_VMDQ_ENABLED
|
10022 IXGBE_FLAG_SRIOV_ENABLED
;
10024 /* Try to reserve as many queues per pool as possible,
10025 * we start with the configurations that support 4 queues
10026 * per pools, followed by 2, and then by just 1 per pool.
10028 if (used_pools
< 32 && adapter
->num_rx_pools
< 16)
10029 reserved_pools
= min_t(u16
,
10031 16 - adapter
->num_rx_pools
);
10032 else if (adapter
->num_rx_pools
< 32)
10033 reserved_pools
= min_t(u16
,
10035 32 - adapter
->num_rx_pools
);
10037 reserved_pools
= 64 - used_pools
;
10040 if (!reserved_pools
)
10041 return ERR_PTR(-EBUSY
);
10043 adapter
->ring_feature
[RING_F_VMDQ
].limit
+= reserved_pools
;
10045 /* Force reinit of ring allocation with VMDQ enabled */
10046 err
= ixgbe_setup_tc(pdev
, adapter
->hw_tcs
);
10048 return ERR_PTR(err
);
10050 if (pool
>= adapter
->num_rx_pools
)
10051 return ERR_PTR(-ENOMEM
);
10054 accel
= kzalloc(sizeof(*accel
), GFP_KERNEL
);
10056 return ERR_PTR(-ENOMEM
);
10058 set_bit(pool
, adapter
->fwd_bitmask
);
10059 netdev_set_sb_channel(vdev
, pool
);
10060 accel
->pool
= pool
;
10061 accel
->netdev
= vdev
;
10063 if (!netif_running(pdev
))
10066 err
= ixgbe_fwd_ring_up(adapter
, accel
);
10068 return ERR_PTR(err
);
10073 static void ixgbe_fwd_del(struct net_device
*pdev
, void *priv
)
10075 struct ixgbe_fwd_adapter
*accel
= priv
;
10076 struct ixgbe_adapter
*adapter
= netdev_priv(pdev
);
10077 unsigned int rxbase
= accel
->rx_base_queue
;
10080 /* delete unicast filter associated with offloaded interface */
10081 ixgbe_del_mac_filter(adapter
, accel
->netdev
->dev_addr
,
10082 VMDQ_P(accel
->pool
));
10084 /* Allow remaining Rx packets to get flushed out of the
10085 * Rx FIFO before we drop the netdev for the ring.
10087 usleep_range(10000, 20000);
10089 for (i
= 0; i
< adapter
->num_rx_queues_per_pool
; i
++) {
10090 struct ixgbe_ring
*ring
= adapter
->rx_ring
[rxbase
+ i
];
10091 struct ixgbe_q_vector
*qv
= ring
->q_vector
;
10093 /* Make sure we aren't processing any packets and clear
10094 * netdev to shut down the ring.
10096 if (netif_running(adapter
->netdev
))
10097 napi_synchronize(&qv
->napi
);
10098 ring
->netdev
= NULL
;
10101 /* unbind the queues and drop the subordinate channel config */
10102 netdev_unbind_sb_channel(pdev
, accel
->netdev
);
10103 netdev_set_sb_channel(accel
->netdev
, 0);
10105 clear_bit(accel
->pool
, adapter
->fwd_bitmask
);
10109 #define IXGBE_MAX_MAC_HDR_LEN 127
10110 #define IXGBE_MAX_NETWORK_HDR_LEN 511
10112 static netdev_features_t
10113 ixgbe_features_check(struct sk_buff
*skb
, struct net_device
*dev
,
10114 netdev_features_t features
)
10116 unsigned int network_hdr_len
, mac_hdr_len
;
10118 /* Make certain the headers can be described by a context descriptor */
10119 mac_hdr_len
= skb_network_header(skb
) - skb
->data
;
10120 if (unlikely(mac_hdr_len
> IXGBE_MAX_MAC_HDR_LEN
))
10121 return features
& ~(NETIF_F_HW_CSUM
|
10123 NETIF_F_HW_VLAN_CTAG_TX
|
10127 network_hdr_len
= skb_checksum_start(skb
) - skb_network_header(skb
);
10128 if (unlikely(network_hdr_len
> IXGBE_MAX_NETWORK_HDR_LEN
))
10129 return features
& ~(NETIF_F_HW_CSUM
|
10134 /* We can only support IPV4 TSO in tunnels if we can mangle the
10135 * inner IP ID field, so strip TSO if MANGLEID is not supported.
10136 * IPsec offoad sets skb->encapsulation but still can handle
10137 * the TSO, so it's the exception.
10139 if (skb
->encapsulation
&& !(features
& NETIF_F_TSO_MANGLEID
)) {
10140 #ifdef CONFIG_XFRM_OFFLOAD
10143 features
&= ~NETIF_F_TSO
;
10149 static int ixgbe_xdp_setup(struct net_device
*dev
, struct bpf_prog
*prog
)
10151 int i
, frame_size
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
10152 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
10153 struct bpf_prog
*old_prog
;
10155 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
10158 if (adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
)
10161 /* verify ixgbe ring attributes are sufficient for XDP */
10162 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
10163 struct ixgbe_ring
*ring
= adapter
->rx_ring
[i
];
10165 if (ring_is_rsc_enabled(ring
))
10168 if (frame_size
> ixgbe_rx_bufsz(ring
))
10172 if (nr_cpu_ids
> MAX_XDP_QUEUES
)
10175 old_prog
= xchg(&adapter
->xdp_prog
, prog
);
10177 /* If transitioning XDP modes reconfigure rings */
10178 if (!!prog
!= !!old_prog
) {
10179 int err
= ixgbe_setup_tc(dev
, adapter
->hw_tcs
);
10182 rcu_assign_pointer(adapter
->xdp_prog
, old_prog
);
10186 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
10187 (void)xchg(&adapter
->rx_ring
[i
]->xdp_prog
,
10188 adapter
->xdp_prog
);
10192 bpf_prog_put(old_prog
);
10197 static int ixgbe_xdp(struct net_device
*dev
, struct netdev_bpf
*xdp
)
10199 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
10201 switch (xdp
->command
) {
10202 case XDP_SETUP_PROG
:
10203 return ixgbe_xdp_setup(dev
, xdp
->prog
);
10204 case XDP_QUERY_PROG
:
10205 xdp
->prog_id
= adapter
->xdp_prog
?
10206 adapter
->xdp_prog
->aux
->id
: 0;
10213 static void ixgbe_xdp_ring_update_tail(struct ixgbe_ring
*ring
)
10215 /* Force memory writes to complete before letting h/w know there
10216 * are new descriptors to fetch.
10219 writel(ring
->next_to_use
, ring
->tail
);
10222 static int ixgbe_xdp_xmit(struct net_device
*dev
, int n
,
10223 struct xdp_frame
**frames
, u32 flags
)
10225 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
10226 struct ixgbe_ring
*ring
;
10230 if (unlikely(test_bit(__IXGBE_DOWN
, &adapter
->state
)))
10233 if (unlikely(flags
& ~XDP_XMIT_FLAGS_MASK
))
10236 /* During program transitions its possible adapter->xdp_prog is assigned
10237 * but ring has not been configured yet. In this case simply abort xmit.
10239 ring
= adapter
->xdp_prog
? adapter
->xdp_ring
[smp_processor_id()] : NULL
;
10240 if (unlikely(!ring
))
10243 for (i
= 0; i
< n
; i
++) {
10244 struct xdp_frame
*xdpf
= frames
[i
];
10247 err
= ixgbe_xmit_xdp_ring(adapter
, xdpf
);
10248 if (err
!= IXGBE_XDP_TX
) {
10249 xdp_return_frame_rx_napi(xdpf
);
10254 if (unlikely(flags
& XDP_XMIT_FLUSH
))
10255 ixgbe_xdp_ring_update_tail(ring
);
10260 static const struct net_device_ops ixgbe_netdev_ops
= {
10261 .ndo_open
= ixgbe_open
,
10262 .ndo_stop
= ixgbe_close
,
10263 .ndo_start_xmit
= ixgbe_xmit_frame
,
10264 .ndo_set_rx_mode
= ixgbe_set_rx_mode
,
10265 .ndo_validate_addr
= eth_validate_addr
,
10266 .ndo_set_mac_address
= ixgbe_set_mac
,
10267 .ndo_change_mtu
= ixgbe_change_mtu
,
10268 .ndo_tx_timeout
= ixgbe_tx_timeout
,
10269 .ndo_set_tx_maxrate
= ixgbe_tx_maxrate
,
10270 .ndo_vlan_rx_add_vid
= ixgbe_vlan_rx_add_vid
,
10271 .ndo_vlan_rx_kill_vid
= ixgbe_vlan_rx_kill_vid
,
10272 .ndo_do_ioctl
= ixgbe_ioctl
,
10273 .ndo_set_vf_mac
= ixgbe_ndo_set_vf_mac
,
10274 .ndo_set_vf_vlan
= ixgbe_ndo_set_vf_vlan
,
10275 .ndo_set_vf_rate
= ixgbe_ndo_set_vf_bw
,
10276 .ndo_set_vf_spoofchk
= ixgbe_ndo_set_vf_spoofchk
,
10277 .ndo_set_vf_rss_query_en
= ixgbe_ndo_set_vf_rss_query_en
,
10278 .ndo_set_vf_trust
= ixgbe_ndo_set_vf_trust
,
10279 .ndo_get_vf_config
= ixgbe_ndo_get_vf_config
,
10280 .ndo_get_stats64
= ixgbe_get_stats64
,
10281 .ndo_setup_tc
= __ixgbe_setup_tc
,
10283 .ndo_select_queue
= ixgbe_select_queue
,
10284 .ndo_fcoe_ddp_setup
= ixgbe_fcoe_ddp_get
,
10285 .ndo_fcoe_ddp_target
= ixgbe_fcoe_ddp_target
,
10286 .ndo_fcoe_ddp_done
= ixgbe_fcoe_ddp_put
,
10287 .ndo_fcoe_enable
= ixgbe_fcoe_enable
,
10288 .ndo_fcoe_disable
= ixgbe_fcoe_disable
,
10289 .ndo_fcoe_get_wwn
= ixgbe_fcoe_get_wwn
,
10290 .ndo_fcoe_get_hbainfo
= ixgbe_fcoe_get_hbainfo
,
10291 #endif /* IXGBE_FCOE */
10292 .ndo_set_features
= ixgbe_set_features
,
10293 .ndo_fix_features
= ixgbe_fix_features
,
10294 .ndo_fdb_add
= ixgbe_ndo_fdb_add
,
10295 .ndo_bridge_setlink
= ixgbe_ndo_bridge_setlink
,
10296 .ndo_bridge_getlink
= ixgbe_ndo_bridge_getlink
,
10297 .ndo_dfwd_add_station
= ixgbe_fwd_add
,
10298 .ndo_dfwd_del_station
= ixgbe_fwd_del
,
10299 .ndo_udp_tunnel_add
= ixgbe_add_udp_tunnel_port
,
10300 .ndo_udp_tunnel_del
= ixgbe_del_udp_tunnel_port
,
10301 .ndo_features_check
= ixgbe_features_check
,
10302 .ndo_bpf
= ixgbe_xdp
,
10303 .ndo_xdp_xmit
= ixgbe_xdp_xmit
,
10307 * ixgbe_enumerate_functions - Get the number of ports this device has
10308 * @adapter: adapter structure
10310 * This function enumerates the phsyical functions co-located on a single slot,
10311 * in order to determine how many ports a device has. This is most useful in
10312 * determining the required GT/s of PCIe bandwidth necessary for optimal
10315 static inline int ixgbe_enumerate_functions(struct ixgbe_adapter
*adapter
)
10317 struct pci_dev
*entry
, *pdev
= adapter
->pdev
;
10320 /* Some cards can not use the generic count PCIe functions method,
10321 * because they are behind a parent switch, so we hardcode these with
10322 * the correct number of functions.
10324 if (ixgbe_pcie_from_parent(&adapter
->hw
))
10327 list_for_each_entry(entry
, &adapter
->pdev
->bus
->devices
, bus_list
) {
10328 /* don't count virtual functions */
10329 if (entry
->is_virtfn
)
10332 /* When the devices on the bus don't all match our device ID,
10333 * we can't reliably determine the correct number of
10334 * functions. This can occur if a function has been direct
10335 * attached to a virtual machine using VT-d, for example. In
10336 * this case, simply return -1 to indicate this.
10338 if ((entry
->vendor
!= pdev
->vendor
) ||
10339 (entry
->device
!= pdev
->device
))
10349 * ixgbe_wol_supported - Check whether device supports WoL
10350 * @adapter: the adapter private structure
10351 * @device_id: the device ID
10352 * @subdevice_id: the subsystem device ID
10354 * This function is used by probe and ethtool to determine
10355 * which devices have WoL support
10358 bool ixgbe_wol_supported(struct ixgbe_adapter
*adapter
, u16 device_id
,
10361 struct ixgbe_hw
*hw
= &adapter
->hw
;
10362 u16 wol_cap
= adapter
->eeprom_cap
& IXGBE_DEVICE_CAPS_WOL_MASK
;
10364 /* WOL not supported on 82598 */
10365 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
10368 /* check eeprom to see if WOL is enabled for X540 and newer */
10369 if (hw
->mac
.type
>= ixgbe_mac_X540
) {
10370 if ((wol_cap
== IXGBE_DEVICE_CAPS_WOL_PORT0_1
) ||
10371 ((wol_cap
== IXGBE_DEVICE_CAPS_WOL_PORT0
) &&
10372 (hw
->bus
.func
== 0)))
10376 /* WOL is determined based on device IDs for 82599 MACs */
10377 switch (device_id
) {
10378 case IXGBE_DEV_ID_82599_SFP
:
10379 /* Only these subdevices could supports WOL */
10380 switch (subdevice_id
) {
10381 case IXGBE_SUBDEV_ID_82599_560FLR
:
10382 case IXGBE_SUBDEV_ID_82599_LOM_SNAP6
:
10383 case IXGBE_SUBDEV_ID_82599_SFP_WOL0
:
10384 case IXGBE_SUBDEV_ID_82599_SFP_2OCP
:
10385 /* only support first port */
10386 if (hw
->bus
.func
!= 0)
10389 case IXGBE_SUBDEV_ID_82599_SP_560FLR
:
10390 case IXGBE_SUBDEV_ID_82599_SFP
:
10391 case IXGBE_SUBDEV_ID_82599_RNDC
:
10392 case IXGBE_SUBDEV_ID_82599_ECNA_DP
:
10393 case IXGBE_SUBDEV_ID_82599_SFP_1OCP
:
10394 case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM1
:
10395 case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM2
:
10399 case IXGBE_DEV_ID_82599EN_SFP
:
10400 /* Only these subdevices support WOL */
10401 switch (subdevice_id
) {
10402 case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1
:
10406 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE
:
10407 /* All except this subdevice support WOL */
10408 if (subdevice_id
!= IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ
)
10411 case IXGBE_DEV_ID_82599_KX4
:
10421 * ixgbe_set_fw_version - Set FW version
10422 * @adapter: the adapter private structure
10424 * This function is used by probe and ethtool to determine the FW version to
10425 * format to display. The FW version is taken from the EEPROM/NVM.
10427 static void ixgbe_set_fw_version(struct ixgbe_adapter
*adapter
)
10429 struct ixgbe_hw
*hw
= &adapter
->hw
;
10430 struct ixgbe_nvm_version nvm_ver
;
10432 ixgbe_get_oem_prod_version(hw
, &nvm_ver
);
10433 if (nvm_ver
.oem_valid
) {
10434 snprintf(adapter
->eeprom_id
, sizeof(adapter
->eeprom_id
),
10435 "%x.%x.%x", nvm_ver
.oem_major
, nvm_ver
.oem_minor
,
10436 nvm_ver
.oem_release
);
10440 ixgbe_get_etk_id(hw
, &nvm_ver
);
10441 ixgbe_get_orom_version(hw
, &nvm_ver
);
10443 if (nvm_ver
.or_valid
) {
10444 snprintf(adapter
->eeprom_id
, sizeof(adapter
->eeprom_id
),
10445 "0x%08x, %d.%d.%d", nvm_ver
.etk_id
, nvm_ver
.or_major
,
10446 nvm_ver
.or_build
, nvm_ver
.or_patch
);
10450 /* Set ETrack ID format */
10451 snprintf(adapter
->eeprom_id
, sizeof(adapter
->eeprom_id
),
10452 "0x%08x", nvm_ver
.etk_id
);
10456 * ixgbe_probe - Device Initialization Routine
10457 * @pdev: PCI device information struct
10458 * @ent: entry in ixgbe_pci_tbl
10460 * Returns 0 on success, negative on failure
10462 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
10463 * The OS initialization, configuring of the adapter private structure,
10464 * and a hardware reset occur.
10466 static int ixgbe_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
10468 struct net_device
*netdev
;
10469 struct ixgbe_adapter
*adapter
= NULL
;
10470 struct ixgbe_hw
*hw
;
10471 const struct ixgbe_info
*ii
= ixgbe_info_tbl
[ent
->driver_data
];
10472 int i
, err
, pci_using_dac
, expected_gts
;
10473 unsigned int indices
= MAX_TX_QUEUES
;
10474 u8 part_str
[IXGBE_PBANUM_LENGTH
];
10475 bool disable_dev
= false;
10481 /* Catch broken hardware that put the wrong VF device ID in
10482 * the PCIe SR-IOV capability.
10484 if (pdev
->is_virtfn
) {
10485 WARN(1, KERN_ERR
"%s (%hx:%hx) should not be a VF!\n",
10486 pci_name(pdev
), pdev
->vendor
, pdev
->device
);
10490 err
= pci_enable_device_mem(pdev
);
10494 if (!dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64))) {
10497 err
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
10499 dev_err(&pdev
->dev
,
10500 "No usable DMA configuration, aborting\n");
10506 err
= pci_request_mem_regions(pdev
, ixgbe_driver_name
);
10508 dev_err(&pdev
->dev
,
10509 "pci_request_selected_regions failed 0x%x\n", err
);
10513 pci_enable_pcie_error_reporting(pdev
);
10515 pci_set_master(pdev
);
10516 pci_save_state(pdev
);
10518 if (ii
->mac
== ixgbe_mac_82598EB
) {
10519 #ifdef CONFIG_IXGBE_DCB
10520 /* 8 TC w/ 4 queues per TC */
10521 indices
= 4 * MAX_TRAFFIC_CLASS
;
10523 indices
= IXGBE_MAX_RSS_INDICES
;
10527 netdev
= alloc_etherdev_mq(sizeof(struct ixgbe_adapter
), indices
);
10530 goto err_alloc_etherdev
;
10533 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
10535 adapter
= netdev_priv(netdev
);
10537 adapter
->netdev
= netdev
;
10538 adapter
->pdev
= pdev
;
10540 hw
->back
= adapter
;
10541 adapter
->msg_enable
= netif_msg_init(debug
, DEFAULT_MSG_ENABLE
);
10543 hw
->hw_addr
= ioremap(pci_resource_start(pdev
, 0),
10544 pci_resource_len(pdev
, 0));
10545 adapter
->io_addr
= hw
->hw_addr
;
10546 if (!hw
->hw_addr
) {
10551 netdev
->netdev_ops
= &ixgbe_netdev_ops
;
10552 ixgbe_set_ethtool_ops(netdev
);
10553 netdev
->watchdog_timeo
= 5 * HZ
;
10554 strlcpy(netdev
->name
, pci_name(pdev
), sizeof(netdev
->name
));
10557 hw
->mac
.ops
= *ii
->mac_ops
;
10558 hw
->mac
.type
= ii
->mac
;
10559 hw
->mvals
= ii
->mvals
;
10561 hw
->link
.ops
= *ii
->link_ops
;
10564 hw
->eeprom
.ops
= *ii
->eeprom_ops
;
10565 eec
= IXGBE_READ_REG(hw
, IXGBE_EEC(hw
));
10566 if (ixgbe_removed(hw
->hw_addr
)) {
10570 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
10571 if (!(eec
& BIT(8)))
10572 hw
->eeprom
.ops
.read
= &ixgbe_read_eeprom_bit_bang_generic
;
10575 hw
->phy
.ops
= *ii
->phy_ops
;
10576 hw
->phy
.sfp_type
= ixgbe_sfp_type_unknown
;
10577 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
10578 hw
->phy
.mdio
.prtad
= MDIO_PRTAD_NONE
;
10579 hw
->phy
.mdio
.mmds
= 0;
10580 hw
->phy
.mdio
.mode_support
= MDIO_SUPPORTS_C45
| MDIO_EMULATE_C22
;
10581 hw
->phy
.mdio
.dev
= netdev
;
10582 hw
->phy
.mdio
.mdio_read
= ixgbe_mdio_read
;
10583 hw
->phy
.mdio
.mdio_write
= ixgbe_mdio_write
;
10585 /* setup the private structure */
10586 err
= ixgbe_sw_init(adapter
, ii
);
10590 /* Make sure the SWFW semaphore is in a valid state */
10591 if (hw
->mac
.ops
.init_swfw_sync
)
10592 hw
->mac
.ops
.init_swfw_sync(hw
);
10594 /* Make it possible the adapter to be woken up via WOL */
10595 switch (adapter
->hw
.mac
.type
) {
10596 case ixgbe_mac_82599EB
:
10597 case ixgbe_mac_X540
:
10598 case ixgbe_mac_X550
:
10599 case ixgbe_mac_X550EM_x
:
10600 case ixgbe_mac_x550em_a
:
10601 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_WUS
, ~0);
10608 * If there is a fan on this device and it has failed log the
10611 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
) {
10612 u32 esdp
= IXGBE_READ_REG(hw
, IXGBE_ESDP
);
10613 if (esdp
& IXGBE_ESDP_SDP1
)
10614 e_crit(probe
, "Fan has stopped, replace the adapter\n");
10617 if (allow_unsupported_sfp
)
10618 hw
->allow_unsupported_sfp
= allow_unsupported_sfp
;
10620 /* reset_hw fills in the perm_addr as well */
10621 hw
->phy
.reset_if_overtemp
= true;
10622 err
= hw
->mac
.ops
.reset_hw(hw
);
10623 hw
->phy
.reset_if_overtemp
= false;
10624 ixgbe_set_eee_capable(adapter
);
10625 if (err
== IXGBE_ERR_SFP_NOT_PRESENT
) {
10627 } else if (err
== IXGBE_ERR_SFP_NOT_SUPPORTED
) {
10628 e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n");
10629 e_dev_err("Reload the driver after installing a supported module.\n");
10632 e_dev_err("HW Init failed: %d\n", err
);
10636 #ifdef CONFIG_PCI_IOV
10637 /* SR-IOV not supported on the 82598 */
10638 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
10641 ixgbe_init_mbx_params_pf(hw
);
10642 hw
->mbx
.ops
= ii
->mbx_ops
;
10643 pci_sriov_set_totalvfs(pdev
, IXGBE_MAX_VFS_DRV_LIMIT
);
10644 ixgbe_enable_sriov(adapter
, max_vfs
);
10648 netdev
->features
= NETIF_F_SG
|
10655 #define IXGBE_GSO_PARTIAL_FEATURES (NETIF_F_GSO_GRE | \
10656 NETIF_F_GSO_GRE_CSUM | \
10657 NETIF_F_GSO_IPXIP4 | \
10658 NETIF_F_GSO_IPXIP6 | \
10659 NETIF_F_GSO_UDP_TUNNEL | \
10660 NETIF_F_GSO_UDP_TUNNEL_CSUM)
10662 netdev
->gso_partial_features
= IXGBE_GSO_PARTIAL_FEATURES
;
10663 netdev
->features
|= NETIF_F_GSO_PARTIAL
|
10664 IXGBE_GSO_PARTIAL_FEATURES
;
10666 if (hw
->mac
.type
>= ixgbe_mac_82599EB
)
10667 netdev
->features
|= NETIF_F_SCTP_CRC
;
10669 #ifdef CONFIG_XFRM_OFFLOAD
10670 #define IXGBE_ESP_FEATURES (NETIF_F_HW_ESP | \
10671 NETIF_F_HW_ESP_TX_CSUM | \
10674 if (adapter
->ipsec
)
10675 netdev
->features
|= IXGBE_ESP_FEATURES
;
10677 /* copy netdev features into list of user selectable features */
10678 netdev
->hw_features
|= netdev
->features
|
10679 NETIF_F_HW_VLAN_CTAG_FILTER
|
10680 NETIF_F_HW_VLAN_CTAG_RX
|
10681 NETIF_F_HW_VLAN_CTAG_TX
|
10683 NETIF_F_HW_L2FW_DOFFLOAD
;
10685 if (hw
->mac
.type
>= ixgbe_mac_82599EB
)
10686 netdev
->hw_features
|= NETIF_F_NTUPLE
|
10690 netdev
->features
|= NETIF_F_HIGHDMA
;
10692 netdev
->vlan_features
|= netdev
->features
| NETIF_F_TSO_MANGLEID
;
10693 netdev
->hw_enc_features
|= netdev
->vlan_features
;
10694 netdev
->mpls_features
|= NETIF_F_SG
|
10698 netdev
->mpls_features
|= IXGBE_GSO_PARTIAL_FEATURES
;
10700 /* set this bit last since it cannot be part of vlan_features */
10701 netdev
->features
|= NETIF_F_HW_VLAN_CTAG_FILTER
|
10702 NETIF_F_HW_VLAN_CTAG_RX
|
10703 NETIF_F_HW_VLAN_CTAG_TX
;
10705 netdev
->priv_flags
|= IFF_UNICAST_FLT
;
10706 netdev
->priv_flags
|= IFF_SUPP_NOFCS
;
10708 /* MTU range: 68 - 9710 */
10709 netdev
->min_mtu
= ETH_MIN_MTU
;
10710 netdev
->max_mtu
= IXGBE_MAX_JUMBO_FRAME_SIZE
- (ETH_HLEN
+ ETH_FCS_LEN
);
10712 #ifdef CONFIG_IXGBE_DCB
10713 if (adapter
->flags
& IXGBE_FLAG_DCB_CAPABLE
)
10714 netdev
->dcbnl_ops
= &ixgbe_dcbnl_ops
;
10718 if (adapter
->flags
& IXGBE_FLAG_FCOE_CAPABLE
) {
10719 unsigned int fcoe_l
;
10721 if (hw
->mac
.ops
.get_device_caps
) {
10722 hw
->mac
.ops
.get_device_caps(hw
, &device_caps
);
10723 if (device_caps
& IXGBE_DEVICE_CAPS_FCOE_OFFLOADS
)
10724 adapter
->flags
&= ~IXGBE_FLAG_FCOE_CAPABLE
;
10728 fcoe_l
= min_t(int, IXGBE_FCRETA_SIZE
, num_online_cpus());
10729 adapter
->ring_feature
[RING_F_FCOE
].limit
= fcoe_l
;
10731 netdev
->features
|= NETIF_F_FSO
|
10734 netdev
->vlan_features
|= NETIF_F_FSO
|
10738 #endif /* IXGBE_FCOE */
10739 if (adapter
->flags2
& IXGBE_FLAG2_RSC_CAPABLE
)
10740 netdev
->hw_features
|= NETIF_F_LRO
;
10741 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
10742 netdev
->features
|= NETIF_F_LRO
;
10744 /* make sure the EEPROM is good */
10745 if (hw
->eeprom
.ops
.validate_checksum(hw
, NULL
) < 0) {
10746 e_dev_err("The EEPROM Checksum Is Not Valid\n");
10751 eth_platform_get_mac_address(&adapter
->pdev
->dev
,
10752 adapter
->hw
.mac
.perm_addr
);
10754 memcpy(netdev
->dev_addr
, hw
->mac
.perm_addr
, netdev
->addr_len
);
10756 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
10757 e_dev_err("invalid MAC address\n");
10762 /* Set hw->mac.addr to permanent MAC address */
10763 ether_addr_copy(hw
->mac
.addr
, hw
->mac
.perm_addr
);
10764 ixgbe_mac_set_default_filter(adapter
);
10766 timer_setup(&adapter
->service_timer
, ixgbe_service_timer
, 0);
10768 if (ixgbe_removed(hw
->hw_addr
)) {
10772 INIT_WORK(&adapter
->service_task
, ixgbe_service_task
);
10773 set_bit(__IXGBE_SERVICE_INITED
, &adapter
->state
);
10774 clear_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
);
10776 err
= ixgbe_init_interrupt_scheme(adapter
);
10780 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
10781 u64_stats_init(&adapter
->rx_ring
[i
]->syncp
);
10782 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
10783 u64_stats_init(&adapter
->tx_ring
[i
]->syncp
);
10784 for (i
= 0; i
< adapter
->num_xdp_queues
; i
++)
10785 u64_stats_init(&adapter
->xdp_ring
[i
]->syncp
);
10787 /* WOL not supported for all devices */
10789 hw
->eeprom
.ops
.read(hw
, 0x2c, &adapter
->eeprom_cap
);
10790 hw
->wol_enabled
= ixgbe_wol_supported(adapter
, pdev
->device
,
10791 pdev
->subsystem_device
);
10792 if (hw
->wol_enabled
)
10793 adapter
->wol
= IXGBE_WUFC_MAG
;
10795 device_set_wakeup_enable(&adapter
->pdev
->dev
, adapter
->wol
);
10797 /* save off EEPROM version number */
10798 ixgbe_set_fw_version(adapter
);
10800 /* pick up the PCI bus settings for reporting later */
10801 if (ixgbe_pcie_from_parent(hw
))
10802 ixgbe_get_parent_bus_info(adapter
);
10804 hw
->mac
.ops
.get_bus_info(hw
);
10806 /* calculate the expected PCIe bandwidth required for optimal
10807 * performance. Note that some older parts will never have enough
10808 * bandwidth due to being older generation PCIe parts. We clamp these
10809 * parts to ensure no warning is displayed if it can't be fixed.
10811 switch (hw
->mac
.type
) {
10812 case ixgbe_mac_82598EB
:
10813 expected_gts
= min(ixgbe_enumerate_functions(adapter
) * 10, 16);
10816 expected_gts
= ixgbe_enumerate_functions(adapter
) * 10;
10820 /* don't check link if we failed to enumerate functions */
10821 if (expected_gts
> 0)
10822 ixgbe_check_minimum_link(adapter
, expected_gts
);
10824 err
= ixgbe_read_pba_string_generic(hw
, part_str
, sizeof(part_str
));
10826 strlcpy(part_str
, "Unknown", sizeof(part_str
));
10827 if (ixgbe_is_sfp(hw
) && hw
->phy
.sfp_type
!= ixgbe_sfp_type_not_present
)
10828 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
10829 hw
->mac
.type
, hw
->phy
.type
, hw
->phy
.sfp_type
,
10832 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
10833 hw
->mac
.type
, hw
->phy
.type
, part_str
);
10835 e_dev_info("%pM\n", netdev
->dev_addr
);
10837 /* reset the hardware with the new settings */
10838 err
= hw
->mac
.ops
.start_hw(hw
);
10839 if (err
== IXGBE_ERR_EEPROM_VERSION
) {
10840 /* We are running on a pre-production device, log a warning */
10841 e_dev_warn("This device is a pre-production adapter/LOM. "
10842 "Please be aware there may be issues associated "
10843 "with your hardware. If you are experiencing "
10844 "problems please contact your Intel or hardware "
10845 "representative who provided you with this "
10848 strcpy(netdev
->name
, "eth%d");
10849 pci_set_drvdata(pdev
, adapter
);
10850 err
= register_netdev(netdev
);
10855 /* power down the optics for 82599 SFP+ fiber */
10856 if (hw
->mac
.ops
.disable_tx_laser
)
10857 hw
->mac
.ops
.disable_tx_laser(hw
);
10859 /* carrier off reporting is important to ethtool even BEFORE open */
10860 netif_carrier_off(netdev
);
10862 #ifdef CONFIG_IXGBE_DCA
10863 if (dca_add_requester(&pdev
->dev
) == 0) {
10864 adapter
->flags
|= IXGBE_FLAG_DCA_ENABLED
;
10865 ixgbe_setup_dca(adapter
);
10868 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
10869 e_info(probe
, "IOV is enabled with %d VFs\n", adapter
->num_vfs
);
10870 for (i
= 0; i
< adapter
->num_vfs
; i
++)
10871 ixgbe_vf_configuration(pdev
, (i
| 0x10000000));
10874 /* firmware requires driver version to be 0xFFFFFFFF
10875 * since os does not support feature
10877 if (hw
->mac
.ops
.set_fw_drv_ver
)
10878 hw
->mac
.ops
.set_fw_drv_ver(hw
, 0xFF, 0xFF, 0xFF, 0xFF,
10879 sizeof(ixgbe_driver_version
) - 1,
10880 ixgbe_driver_version
);
10882 /* add san mac addr to netdev */
10883 ixgbe_add_sanmac_netdev(netdev
);
10885 e_dev_info("%s\n", ixgbe_default_device_descr
);
10887 #ifdef CONFIG_IXGBE_HWMON
10888 if (ixgbe_sysfs_init(adapter
))
10889 e_err(probe
, "failed to allocate sysfs resources\n");
10890 #endif /* CONFIG_IXGBE_HWMON */
10892 ixgbe_dbg_adapter_init(adapter
);
10894 /* setup link for SFP devices with MNG FW, else wait for IXGBE_UP */
10895 if (ixgbe_mng_enabled(hw
) && ixgbe_is_sfp(hw
) && hw
->mac
.ops
.setup_link
)
10896 hw
->mac
.ops
.setup_link(hw
,
10897 IXGBE_LINK_SPEED_10GB_FULL
| IXGBE_LINK_SPEED_1GB_FULL
,
10903 ixgbe_release_hw_control(adapter
);
10904 ixgbe_clear_interrupt_scheme(adapter
);
10906 ixgbe_disable_sriov(adapter
);
10907 adapter
->flags2
&= ~IXGBE_FLAG2_SEARCH_FOR_SFP
;
10908 iounmap(adapter
->io_addr
);
10909 kfree(adapter
->jump_tables
[0]);
10910 kfree(adapter
->mac_table
);
10911 kfree(adapter
->rss_key
);
10913 disable_dev
= !test_and_set_bit(__IXGBE_DISABLED
, &adapter
->state
);
10914 free_netdev(netdev
);
10915 err_alloc_etherdev
:
10916 pci_release_mem_regions(pdev
);
10919 if (!adapter
|| disable_dev
)
10920 pci_disable_device(pdev
);
10925 * ixgbe_remove - Device Removal Routine
10926 * @pdev: PCI device information struct
10928 * ixgbe_remove is called by the PCI subsystem to alert the driver
10929 * that it should release a PCI device. The could be caused by a
10930 * Hot-Plug event, or because the driver is going to be removed from
10933 static void ixgbe_remove(struct pci_dev
*pdev
)
10935 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
10936 struct net_device
*netdev
;
10940 /* if !adapter then we already cleaned up in probe */
10944 netdev
= adapter
->netdev
;
10945 ixgbe_dbg_adapter_exit(adapter
);
10947 set_bit(__IXGBE_REMOVING
, &adapter
->state
);
10948 cancel_work_sync(&adapter
->service_task
);
10951 #ifdef CONFIG_IXGBE_DCA
10952 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
) {
10953 adapter
->flags
&= ~IXGBE_FLAG_DCA_ENABLED
;
10954 dca_remove_requester(&pdev
->dev
);
10955 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
,
10956 IXGBE_DCA_CTRL_DCA_DISABLE
);
10960 #ifdef CONFIG_IXGBE_HWMON
10961 ixgbe_sysfs_exit(adapter
);
10962 #endif /* CONFIG_IXGBE_HWMON */
10964 /* remove the added san mac */
10965 ixgbe_del_sanmac_netdev(netdev
);
10967 #ifdef CONFIG_PCI_IOV
10968 ixgbe_disable_sriov(adapter
);
10970 if (netdev
->reg_state
== NETREG_REGISTERED
)
10971 unregister_netdev(netdev
);
10973 ixgbe_stop_ipsec_offload(adapter
);
10974 ixgbe_clear_interrupt_scheme(adapter
);
10976 ixgbe_release_hw_control(adapter
);
10979 kfree(adapter
->ixgbe_ieee_pfc
);
10980 kfree(adapter
->ixgbe_ieee_ets
);
10983 iounmap(adapter
->io_addr
);
10984 pci_release_mem_regions(pdev
);
10986 e_dev_info("complete\n");
10988 for (i
= 0; i
< IXGBE_MAX_LINK_HANDLE
; i
++) {
10989 if (adapter
->jump_tables
[i
]) {
10990 kfree(adapter
->jump_tables
[i
]->input
);
10991 kfree(adapter
->jump_tables
[i
]->mask
);
10993 kfree(adapter
->jump_tables
[i
]);
10996 kfree(adapter
->mac_table
);
10997 kfree(adapter
->rss_key
);
10998 disable_dev
= !test_and_set_bit(__IXGBE_DISABLED
, &adapter
->state
);
10999 free_netdev(netdev
);
11001 pci_disable_pcie_error_reporting(pdev
);
11004 pci_disable_device(pdev
);
11008 * ixgbe_io_error_detected - called when PCI error is detected
11009 * @pdev: Pointer to PCI device
11010 * @state: The current pci connection state
11012 * This function is called after a PCI bus error affecting
11013 * this device has been detected.
11015 static pci_ers_result_t
ixgbe_io_error_detected(struct pci_dev
*pdev
,
11016 pci_channel_state_t state
)
11018 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
11019 struct net_device
*netdev
= adapter
->netdev
;
11021 #ifdef CONFIG_PCI_IOV
11022 struct ixgbe_hw
*hw
= &adapter
->hw
;
11023 struct pci_dev
*bdev
, *vfdev
;
11024 u32 dw0
, dw1
, dw2
, dw3
;
11026 u16 req_id
, pf_func
;
11028 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
||
11029 adapter
->num_vfs
== 0)
11030 goto skip_bad_vf_detection
;
11032 bdev
= pdev
->bus
->self
;
11033 while (bdev
&& (pci_pcie_type(bdev
) != PCI_EXP_TYPE_ROOT_PORT
))
11034 bdev
= bdev
->bus
->self
;
11037 goto skip_bad_vf_detection
;
11039 pos
= pci_find_ext_capability(bdev
, PCI_EXT_CAP_ID_ERR
);
11041 goto skip_bad_vf_detection
;
11043 dw0
= ixgbe_read_pci_cfg_dword(hw
, pos
+ PCI_ERR_HEADER_LOG
);
11044 dw1
= ixgbe_read_pci_cfg_dword(hw
, pos
+ PCI_ERR_HEADER_LOG
+ 4);
11045 dw2
= ixgbe_read_pci_cfg_dword(hw
, pos
+ PCI_ERR_HEADER_LOG
+ 8);
11046 dw3
= ixgbe_read_pci_cfg_dword(hw
, pos
+ PCI_ERR_HEADER_LOG
+ 12);
11047 if (ixgbe_removed(hw
->hw_addr
))
11048 goto skip_bad_vf_detection
;
11050 req_id
= dw1
>> 16;
11051 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
11052 if (!(req_id
& 0x0080))
11053 goto skip_bad_vf_detection
;
11055 pf_func
= req_id
& 0x01;
11056 if ((pf_func
& 1) == (pdev
->devfn
& 1)) {
11057 unsigned int device_id
;
11059 vf
= (req_id
& 0x7F) >> 1;
11060 e_dev_err("VF %d has caused a PCIe error\n", vf
);
11061 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
11062 "%8.8x\tdw3: %8.8x\n",
11063 dw0
, dw1
, dw2
, dw3
);
11064 switch (adapter
->hw
.mac
.type
) {
11065 case ixgbe_mac_82599EB
:
11066 device_id
= IXGBE_82599_VF_DEVICE_ID
;
11068 case ixgbe_mac_X540
:
11069 device_id
= IXGBE_X540_VF_DEVICE_ID
;
11071 case ixgbe_mac_X550
:
11072 device_id
= IXGBE_DEV_ID_X550_VF
;
11074 case ixgbe_mac_X550EM_x
:
11075 device_id
= IXGBE_DEV_ID_X550EM_X_VF
;
11077 case ixgbe_mac_x550em_a
:
11078 device_id
= IXGBE_DEV_ID_X550EM_A_VF
;
11085 /* Find the pci device of the offending VF */
11086 vfdev
= pci_get_device(PCI_VENDOR_ID_INTEL
, device_id
, NULL
);
11088 if (vfdev
->devfn
== (req_id
& 0xFF))
11090 vfdev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
11094 * There's a slim chance the VF could have been hot plugged,
11095 * so if it is no longer present we don't need to issue the
11096 * VFLR. Just clean up the AER in that case.
11100 /* Free device reference count */
11101 pci_dev_put(vfdev
);
11104 pci_cleanup_aer_uncorrect_error_status(pdev
);
11108 * Even though the error may have occurred on the other port
11109 * we still need to increment the vf error reference count for
11110 * both ports because the I/O resume function will be called
11111 * for both of them.
11113 adapter
->vferr_refcount
++;
11115 return PCI_ERS_RESULT_RECOVERED
;
11117 skip_bad_vf_detection
:
11118 #endif /* CONFIG_PCI_IOV */
11119 if (!test_bit(__IXGBE_SERVICE_INITED
, &adapter
->state
))
11120 return PCI_ERS_RESULT_DISCONNECT
;
11122 if (!netif_device_present(netdev
))
11123 return PCI_ERS_RESULT_DISCONNECT
;
11126 netif_device_detach(netdev
);
11128 if (netif_running(netdev
))
11129 ixgbe_close_suspend(adapter
);
11131 if (state
== pci_channel_io_perm_failure
) {
11133 return PCI_ERS_RESULT_DISCONNECT
;
11136 if (!test_and_set_bit(__IXGBE_DISABLED
, &adapter
->state
))
11137 pci_disable_device(pdev
);
11140 /* Request a slot reset. */
11141 return PCI_ERS_RESULT_NEED_RESET
;
11145 * ixgbe_io_slot_reset - called after the pci bus has been reset.
11146 * @pdev: Pointer to PCI device
11148 * Restart the card from scratch, as if from a cold-boot.
11150 static pci_ers_result_t
ixgbe_io_slot_reset(struct pci_dev
*pdev
)
11152 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
11153 pci_ers_result_t result
;
11156 if (pci_enable_device_mem(pdev
)) {
11157 e_err(probe
, "Cannot re-enable PCI device after reset.\n");
11158 result
= PCI_ERS_RESULT_DISCONNECT
;
11160 smp_mb__before_atomic();
11161 clear_bit(__IXGBE_DISABLED
, &adapter
->state
);
11162 adapter
->hw
.hw_addr
= adapter
->io_addr
;
11163 pci_set_master(pdev
);
11164 pci_restore_state(pdev
);
11165 pci_save_state(pdev
);
11167 pci_wake_from_d3(pdev
, false);
11169 ixgbe_reset(adapter
);
11170 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_WUS
, ~0);
11171 result
= PCI_ERS_RESULT_RECOVERED
;
11174 err
= pci_cleanup_aer_uncorrect_error_status(pdev
);
11176 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
11177 "failed 0x%0x\n", err
);
11178 /* non-fatal, continue */
11185 * ixgbe_io_resume - called when traffic can start flowing again.
11186 * @pdev: Pointer to PCI device
11188 * This callback is called when the error recovery driver tells us that
11189 * its OK to resume normal operation.
11191 static void ixgbe_io_resume(struct pci_dev
*pdev
)
11193 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
11194 struct net_device
*netdev
= adapter
->netdev
;
11196 #ifdef CONFIG_PCI_IOV
11197 if (adapter
->vferr_refcount
) {
11198 e_info(drv
, "Resuming after VF err\n");
11199 adapter
->vferr_refcount
--;
11205 if (netif_running(netdev
))
11206 ixgbe_open(netdev
);
11208 netif_device_attach(netdev
);
11212 static const struct pci_error_handlers ixgbe_err_handler
= {
11213 .error_detected
= ixgbe_io_error_detected
,
11214 .slot_reset
= ixgbe_io_slot_reset
,
11215 .resume
= ixgbe_io_resume
,
11218 static struct pci_driver ixgbe_driver
= {
11219 .name
= ixgbe_driver_name
,
11220 .id_table
= ixgbe_pci_tbl
,
11221 .probe
= ixgbe_probe
,
11222 .remove
= ixgbe_remove
,
11224 .suspend
= ixgbe_suspend
,
11225 .resume
= ixgbe_resume
,
11227 .shutdown
= ixgbe_shutdown
,
11228 .sriov_configure
= ixgbe_pci_sriov_configure
,
11229 .err_handler
= &ixgbe_err_handler
11233 * ixgbe_init_module - Driver Registration Routine
11235 * ixgbe_init_module is the first routine called when the driver is
11236 * loaded. All it does is register with the PCI subsystem.
11238 static int __init
ixgbe_init_module(void)
11241 pr_info("%s - version %s\n", ixgbe_driver_string
, ixgbe_driver_version
);
11242 pr_info("%s\n", ixgbe_copyright
);
11244 ixgbe_wq
= create_singlethread_workqueue(ixgbe_driver_name
);
11246 pr_err("%s: Failed to create workqueue\n", ixgbe_driver_name
);
11252 ret
= pci_register_driver(&ixgbe_driver
);
11254 destroy_workqueue(ixgbe_wq
);
11259 #ifdef CONFIG_IXGBE_DCA
11260 dca_register_notify(&dca_notifier
);
11266 module_init(ixgbe_init_module
);
11269 * ixgbe_exit_module - Driver Exit Cleanup Routine
11271 * ixgbe_exit_module is called just before the driver is removed
11274 static void __exit
ixgbe_exit_module(void)
11276 #ifdef CONFIG_IXGBE_DCA
11277 dca_unregister_notify(&dca_notifier
);
11279 pci_unregister_driver(&ixgbe_driver
);
11283 destroy_workqueue(ixgbe_wq
);
11288 #ifdef CONFIG_IXGBE_DCA
11289 static int ixgbe_notify_dca(struct notifier_block
*nb
, unsigned long event
,
11294 ret_val
= driver_for_each_device(&ixgbe_driver
.driver
, NULL
, &event
,
11295 __ixgbe_notify_dca
);
11297 return ret_val
? NOTIFY_BAD
: NOTIFY_DONE
;
11300 #endif /* CONFIG_IXGBE_DCA */
11302 module_exit(ixgbe_exit_module
);