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