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