1 /* 2 * Copyright 2015 Amazon.com, Inc. or its affiliates. 3 * 4 * This software is available to you under a choice of one of two 5 * licenses. You may choose to be licensed under the terms of the GNU 6 * General Public License (GPL) Version 2, available from the file 7 * COPYING in the main directory of this source tree, or the 8 * BSD license below: 9 * 10 * Redistribution and use in source and binary forms, with or 11 * without modification, are permitted provided that the following 12 * conditions are met: 13 * 14 * - Redistributions of source code must retain the above 15 * copyright notice, this list of conditions and the following 16 * disclaimer. 17 * 18 * - Redistributions in binary form must reproduce the above 19 * copyright notice, this list of conditions and the following 20 * disclaimer in the documentation and/or other materials 21 * provided with the distribution. 22 * 23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 30 * SOFTWARE. 31 */ 32 33 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 34 35 #ifdef CONFIG_RFS_ACCEL 36 #include <linux/cpu_rmap.h> 37 #endif /* CONFIG_RFS_ACCEL */ 38 #include <linux/ethtool.h> 39 #include <linux/if_vlan.h> 40 #include <linux/kernel.h> 41 #include <linux/module.h> 42 #include <linux/moduleparam.h> 43 #include <linux/numa.h> 44 #include <linux/pci.h> 45 #include <linux/utsname.h> 46 #include <linux/version.h> 47 #include <linux/vmalloc.h> 48 #include <net/ip.h> 49 50 #include "ena_netdev.h" 51 #include "ena_pci_id_tbl.h" 52 53 static char version[] = DEVICE_NAME " v" DRV_MODULE_VERSION "\n"; 54 55 MODULE_AUTHOR("Amazon.com, Inc. or its affiliates"); 56 MODULE_DESCRIPTION(DEVICE_NAME); 57 MODULE_LICENSE("GPL"); 58 MODULE_VERSION(DRV_MODULE_VERSION); 59 60 /* Time in jiffies before concluding the transmitter is hung. */ 61 #define TX_TIMEOUT (5 * HZ) 62 63 #define ENA_NAPI_BUDGET 64 64 65 #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | \ 66 NETIF_MSG_TX_DONE | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR) 67 static int debug = -1; 68 module_param(debug, int, 0); 69 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); 70 71 static struct ena_aenq_handlers aenq_handlers; 72 73 static struct workqueue_struct *ena_wq; 74 75 MODULE_DEVICE_TABLE(pci, ena_pci_tbl); 76 77 static int ena_rss_init_default(struct ena_adapter *adapter); 78 static void check_for_admin_com_state(struct ena_adapter *adapter); 79 static void ena_destroy_device(struct ena_adapter *adapter, bool graceful); 80 static int ena_restore_device(struct ena_adapter *adapter); 81 82 static void ena_tx_timeout(struct net_device *dev) 83 { 84 struct ena_adapter *adapter = netdev_priv(dev); 85 86 /* Change the state of the device to trigger reset 87 * Check that we are not in the middle or a trigger already 88 */ 89 90 if (test_and_set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) 91 return; 92 93 adapter->reset_reason = ENA_REGS_RESET_OS_NETDEV_WD; 94 u64_stats_update_begin(&adapter->syncp); 95 adapter->dev_stats.tx_timeout++; 96 u64_stats_update_end(&adapter->syncp); 97 98 netif_err(adapter, tx_err, dev, "Transmit time out\n"); 99 } 100 101 static void update_rx_ring_mtu(struct ena_adapter *adapter, int mtu) 102 { 103 int i; 104 105 for (i = 0; i < adapter->num_queues; i++) 106 adapter->rx_ring[i].mtu = mtu; 107 } 108 109 static int ena_change_mtu(struct net_device *dev, int new_mtu) 110 { 111 struct ena_adapter *adapter = netdev_priv(dev); 112 int ret; 113 114 ret = ena_com_set_dev_mtu(adapter->ena_dev, new_mtu); 115 if (!ret) { 116 netif_dbg(adapter, drv, dev, "set MTU to %d\n", new_mtu); 117 update_rx_ring_mtu(adapter, new_mtu); 118 dev->mtu = new_mtu; 119 } else { 120 netif_err(adapter, drv, dev, "Failed to set MTU to %d\n", 121 new_mtu); 122 } 123 124 return ret; 125 } 126 127 static int ena_init_rx_cpu_rmap(struct ena_adapter *adapter) 128 { 129 #ifdef CONFIG_RFS_ACCEL 130 u32 i; 131 int rc; 132 133 adapter->netdev->rx_cpu_rmap = alloc_irq_cpu_rmap(adapter->num_queues); 134 if (!adapter->netdev->rx_cpu_rmap) 135 return -ENOMEM; 136 for (i = 0; i < adapter->num_queues; i++) { 137 int irq_idx = ENA_IO_IRQ_IDX(i); 138 139 rc = irq_cpu_rmap_add(adapter->netdev->rx_cpu_rmap, 140 pci_irq_vector(adapter->pdev, irq_idx)); 141 if (rc) { 142 free_irq_cpu_rmap(adapter->netdev->rx_cpu_rmap); 143 adapter->netdev->rx_cpu_rmap = NULL; 144 return rc; 145 } 146 } 147 #endif /* CONFIG_RFS_ACCEL */ 148 return 0; 149 } 150 151 static void ena_init_io_rings_common(struct ena_adapter *adapter, 152 struct ena_ring *ring, u16 qid) 153 { 154 ring->qid = qid; 155 ring->pdev = adapter->pdev; 156 ring->dev = &adapter->pdev->dev; 157 ring->netdev = adapter->netdev; 158 ring->napi = &adapter->ena_napi[qid].napi; 159 ring->adapter = adapter; 160 ring->ena_dev = adapter->ena_dev; 161 ring->per_napi_packets = 0; 162 ring->per_napi_bytes = 0; 163 ring->cpu = 0; 164 ring->first_interrupt = false; 165 ring->no_interrupt_event_cnt = 0; 166 u64_stats_init(&ring->syncp); 167 } 168 169 static void ena_init_io_rings(struct ena_adapter *adapter) 170 { 171 struct ena_com_dev *ena_dev; 172 struct ena_ring *txr, *rxr; 173 int i; 174 175 ena_dev = adapter->ena_dev; 176 177 for (i = 0; i < adapter->num_queues; i++) { 178 txr = &adapter->tx_ring[i]; 179 rxr = &adapter->rx_ring[i]; 180 181 /* TX/RX common ring state */ 182 ena_init_io_rings_common(adapter, txr, i); 183 ena_init_io_rings_common(adapter, rxr, i); 184 185 /* TX specific ring state */ 186 txr->ring_size = adapter->tx_ring_size; 187 txr->tx_max_header_size = ena_dev->tx_max_header_size; 188 txr->tx_mem_queue_type = ena_dev->tx_mem_queue_type; 189 txr->sgl_size = adapter->max_tx_sgl_size; 190 txr->smoothed_interval = 191 ena_com_get_nonadaptive_moderation_interval_tx(ena_dev); 192 193 /* RX specific ring state */ 194 rxr->ring_size = adapter->rx_ring_size; 195 rxr->rx_copybreak = adapter->rx_copybreak; 196 rxr->sgl_size = adapter->max_rx_sgl_size; 197 rxr->smoothed_interval = 198 ena_com_get_nonadaptive_moderation_interval_rx(ena_dev); 199 rxr->empty_rx_queue = 0; 200 } 201 } 202 203 /* ena_setup_tx_resources - allocate I/O Tx resources (Descriptors) 204 * @adapter: network interface device structure 205 * @qid: queue index 206 * 207 * Return 0 on success, negative on failure 208 */ 209 static int ena_setup_tx_resources(struct ena_adapter *adapter, int qid) 210 { 211 struct ena_ring *tx_ring = &adapter->tx_ring[qid]; 212 struct ena_irq *ena_irq = &adapter->irq_tbl[ENA_IO_IRQ_IDX(qid)]; 213 int size, i, node; 214 215 if (tx_ring->tx_buffer_info) { 216 netif_err(adapter, ifup, 217 adapter->netdev, "tx_buffer_info info is not NULL"); 218 return -EEXIST; 219 } 220 221 size = sizeof(struct ena_tx_buffer) * tx_ring->ring_size; 222 node = cpu_to_node(ena_irq->cpu); 223 224 tx_ring->tx_buffer_info = vzalloc_node(size, node); 225 if (!tx_ring->tx_buffer_info) { 226 tx_ring->tx_buffer_info = vzalloc(size); 227 if (!tx_ring->tx_buffer_info) 228 return -ENOMEM; 229 } 230 231 size = sizeof(u16) * tx_ring->ring_size; 232 tx_ring->free_tx_ids = vzalloc_node(size, node); 233 if (!tx_ring->free_tx_ids) { 234 tx_ring->free_tx_ids = vzalloc(size); 235 if (!tx_ring->free_tx_ids) { 236 vfree(tx_ring->tx_buffer_info); 237 return -ENOMEM; 238 } 239 } 240 241 /* Req id ring for TX out of order completions */ 242 for (i = 0; i < tx_ring->ring_size; i++) 243 tx_ring->free_tx_ids[i] = i; 244 245 /* Reset tx statistics */ 246 memset(&tx_ring->tx_stats, 0x0, sizeof(tx_ring->tx_stats)); 247 248 tx_ring->next_to_use = 0; 249 tx_ring->next_to_clean = 0; 250 tx_ring->cpu = ena_irq->cpu; 251 return 0; 252 } 253 254 /* ena_free_tx_resources - Free I/O Tx Resources per Queue 255 * @adapter: network interface device structure 256 * @qid: queue index 257 * 258 * Free all transmit software resources 259 */ 260 static void ena_free_tx_resources(struct ena_adapter *adapter, int qid) 261 { 262 struct ena_ring *tx_ring = &adapter->tx_ring[qid]; 263 264 vfree(tx_ring->tx_buffer_info); 265 tx_ring->tx_buffer_info = NULL; 266 267 vfree(tx_ring->free_tx_ids); 268 tx_ring->free_tx_ids = NULL; 269 } 270 271 /* ena_setup_all_tx_resources - allocate I/O Tx queues resources for All queues 272 * @adapter: private structure 273 * 274 * Return 0 on success, negative on failure 275 */ 276 static int ena_setup_all_tx_resources(struct ena_adapter *adapter) 277 { 278 int i, rc = 0; 279 280 for (i = 0; i < adapter->num_queues; i++) { 281 rc = ena_setup_tx_resources(adapter, i); 282 if (rc) 283 goto err_setup_tx; 284 } 285 286 return 0; 287 288 err_setup_tx: 289 290 netif_err(adapter, ifup, adapter->netdev, 291 "Tx queue %d: allocation failed\n", i); 292 293 /* rewind the index freeing the rings as we go */ 294 while (i--) 295 ena_free_tx_resources(adapter, i); 296 return rc; 297 } 298 299 /* ena_free_all_io_tx_resources - Free I/O Tx Resources for All Queues 300 * @adapter: board private structure 301 * 302 * Free all transmit software resources 303 */ 304 static void ena_free_all_io_tx_resources(struct ena_adapter *adapter) 305 { 306 int i; 307 308 for (i = 0; i < adapter->num_queues; i++) 309 ena_free_tx_resources(adapter, i); 310 } 311 312 static inline int validate_rx_req_id(struct ena_ring *rx_ring, u16 req_id) 313 { 314 if (likely(req_id < rx_ring->ring_size)) 315 return 0; 316 317 netif_err(rx_ring->adapter, rx_err, rx_ring->netdev, 318 "Invalid rx req_id: %hu\n", req_id); 319 320 u64_stats_update_begin(&rx_ring->syncp); 321 rx_ring->rx_stats.bad_req_id++; 322 u64_stats_update_end(&rx_ring->syncp); 323 324 /* Trigger device reset */ 325 rx_ring->adapter->reset_reason = ENA_REGS_RESET_INV_RX_REQ_ID; 326 set_bit(ENA_FLAG_TRIGGER_RESET, &rx_ring->adapter->flags); 327 return -EFAULT; 328 } 329 330 /* ena_setup_rx_resources - allocate I/O Rx resources (Descriptors) 331 * @adapter: network interface device structure 332 * @qid: queue index 333 * 334 * Returns 0 on success, negative on failure 335 */ 336 static int ena_setup_rx_resources(struct ena_adapter *adapter, 337 u32 qid) 338 { 339 struct ena_ring *rx_ring = &adapter->rx_ring[qid]; 340 struct ena_irq *ena_irq = &adapter->irq_tbl[ENA_IO_IRQ_IDX(qid)]; 341 int size, node, i; 342 343 if (rx_ring->rx_buffer_info) { 344 netif_err(adapter, ifup, adapter->netdev, 345 "rx_buffer_info is not NULL"); 346 return -EEXIST; 347 } 348 349 /* alloc extra element so in rx path 350 * we can always prefetch rx_info + 1 351 */ 352 size = sizeof(struct ena_rx_buffer) * (rx_ring->ring_size + 1); 353 node = cpu_to_node(ena_irq->cpu); 354 355 rx_ring->rx_buffer_info = vzalloc_node(size, node); 356 if (!rx_ring->rx_buffer_info) { 357 rx_ring->rx_buffer_info = vzalloc(size); 358 if (!rx_ring->rx_buffer_info) 359 return -ENOMEM; 360 } 361 362 size = sizeof(u16) * rx_ring->ring_size; 363 rx_ring->free_rx_ids = vzalloc_node(size, node); 364 if (!rx_ring->free_rx_ids) { 365 rx_ring->free_rx_ids = vzalloc(size); 366 if (!rx_ring->free_rx_ids) { 367 vfree(rx_ring->rx_buffer_info); 368 return -ENOMEM; 369 } 370 } 371 372 /* Req id ring for receiving RX pkts out of order */ 373 for (i = 0; i < rx_ring->ring_size; i++) 374 rx_ring->free_rx_ids[i] = i; 375 376 /* Reset rx statistics */ 377 memset(&rx_ring->rx_stats, 0x0, sizeof(rx_ring->rx_stats)); 378 379 rx_ring->next_to_clean = 0; 380 rx_ring->next_to_use = 0; 381 rx_ring->cpu = ena_irq->cpu; 382 383 return 0; 384 } 385 386 /* ena_free_rx_resources - Free I/O Rx Resources 387 * @adapter: network interface device structure 388 * @qid: queue index 389 * 390 * Free all receive software resources 391 */ 392 static void ena_free_rx_resources(struct ena_adapter *adapter, 393 u32 qid) 394 { 395 struct ena_ring *rx_ring = &adapter->rx_ring[qid]; 396 397 vfree(rx_ring->rx_buffer_info); 398 rx_ring->rx_buffer_info = NULL; 399 400 vfree(rx_ring->free_rx_ids); 401 rx_ring->free_rx_ids = NULL; 402 } 403 404 /* ena_setup_all_rx_resources - allocate I/O Rx queues resources for all queues 405 * @adapter: board private structure 406 * 407 * Return 0 on success, negative on failure 408 */ 409 static int ena_setup_all_rx_resources(struct ena_adapter *adapter) 410 { 411 int i, rc = 0; 412 413 for (i = 0; i < adapter->num_queues; i++) { 414 rc = ena_setup_rx_resources(adapter, i); 415 if (rc) 416 goto err_setup_rx; 417 } 418 419 return 0; 420 421 err_setup_rx: 422 423 netif_err(adapter, ifup, adapter->netdev, 424 "Rx queue %d: allocation failed\n", i); 425 426 /* rewind the index freeing the rings as we go */ 427 while (i--) 428 ena_free_rx_resources(adapter, i); 429 return rc; 430 } 431 432 /* ena_free_all_io_rx_resources - Free I/O Rx Resources for All Queues 433 * @adapter: board private structure 434 * 435 * Free all receive software resources 436 */ 437 static void ena_free_all_io_rx_resources(struct ena_adapter *adapter) 438 { 439 int i; 440 441 for (i = 0; i < adapter->num_queues; i++) 442 ena_free_rx_resources(adapter, i); 443 } 444 445 static inline int ena_alloc_rx_page(struct ena_ring *rx_ring, 446 struct ena_rx_buffer *rx_info, gfp_t gfp) 447 { 448 struct ena_com_buf *ena_buf; 449 struct page *page; 450 dma_addr_t dma; 451 452 /* if previous allocated page is not used */ 453 if (unlikely(rx_info->page)) 454 return 0; 455 456 page = alloc_page(gfp); 457 if (unlikely(!page)) { 458 u64_stats_update_begin(&rx_ring->syncp); 459 rx_ring->rx_stats.page_alloc_fail++; 460 u64_stats_update_end(&rx_ring->syncp); 461 return -ENOMEM; 462 } 463 464 dma = dma_map_page(rx_ring->dev, page, 0, ENA_PAGE_SIZE, 465 DMA_FROM_DEVICE); 466 if (unlikely(dma_mapping_error(rx_ring->dev, dma))) { 467 u64_stats_update_begin(&rx_ring->syncp); 468 rx_ring->rx_stats.dma_mapping_err++; 469 u64_stats_update_end(&rx_ring->syncp); 470 471 __free_page(page); 472 return -EIO; 473 } 474 netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, 475 "alloc page %p, rx_info %p\n", page, rx_info); 476 477 rx_info->page = page; 478 rx_info->page_offset = 0; 479 ena_buf = &rx_info->ena_buf; 480 ena_buf->paddr = dma; 481 ena_buf->len = ENA_PAGE_SIZE; 482 483 return 0; 484 } 485 486 static void ena_free_rx_page(struct ena_ring *rx_ring, 487 struct ena_rx_buffer *rx_info) 488 { 489 struct page *page = rx_info->page; 490 struct ena_com_buf *ena_buf = &rx_info->ena_buf; 491 492 if (unlikely(!page)) { 493 netif_warn(rx_ring->adapter, rx_err, rx_ring->netdev, 494 "Trying to free unallocated buffer\n"); 495 return; 496 } 497 498 dma_unmap_page(rx_ring->dev, ena_buf->paddr, ENA_PAGE_SIZE, 499 DMA_FROM_DEVICE); 500 501 __free_page(page); 502 rx_info->page = NULL; 503 } 504 505 static int ena_refill_rx_bufs(struct ena_ring *rx_ring, u32 num) 506 { 507 u16 next_to_use, req_id; 508 u32 i; 509 int rc; 510 511 next_to_use = rx_ring->next_to_use; 512 513 for (i = 0; i < num; i++) { 514 struct ena_rx_buffer *rx_info; 515 516 req_id = rx_ring->free_rx_ids[next_to_use]; 517 rc = validate_rx_req_id(rx_ring, req_id); 518 if (unlikely(rc < 0)) 519 break; 520 521 rx_info = &rx_ring->rx_buffer_info[req_id]; 522 523 524 rc = ena_alloc_rx_page(rx_ring, rx_info, 525 GFP_ATOMIC | __GFP_COMP); 526 if (unlikely(rc < 0)) { 527 netif_warn(rx_ring->adapter, rx_err, rx_ring->netdev, 528 "failed to alloc buffer for rx queue %d\n", 529 rx_ring->qid); 530 break; 531 } 532 rc = ena_com_add_single_rx_desc(rx_ring->ena_com_io_sq, 533 &rx_info->ena_buf, 534 req_id); 535 if (unlikely(rc)) { 536 netif_warn(rx_ring->adapter, rx_status, rx_ring->netdev, 537 "failed to add buffer for rx queue %d\n", 538 rx_ring->qid); 539 break; 540 } 541 next_to_use = ENA_RX_RING_IDX_NEXT(next_to_use, 542 rx_ring->ring_size); 543 } 544 545 if (unlikely(i < num)) { 546 u64_stats_update_begin(&rx_ring->syncp); 547 rx_ring->rx_stats.refil_partial++; 548 u64_stats_update_end(&rx_ring->syncp); 549 netdev_warn(rx_ring->netdev, 550 "refilled rx qid %d with only %d buffers (from %d)\n", 551 rx_ring->qid, i, num); 552 } 553 554 /* ena_com_write_sq_doorbell issues a wmb() */ 555 if (likely(i)) 556 ena_com_write_sq_doorbell(rx_ring->ena_com_io_sq); 557 558 rx_ring->next_to_use = next_to_use; 559 560 return i; 561 } 562 563 static void ena_free_rx_bufs(struct ena_adapter *adapter, 564 u32 qid) 565 { 566 struct ena_ring *rx_ring = &adapter->rx_ring[qid]; 567 u32 i; 568 569 for (i = 0; i < rx_ring->ring_size; i++) { 570 struct ena_rx_buffer *rx_info = &rx_ring->rx_buffer_info[i]; 571 572 if (rx_info->page) 573 ena_free_rx_page(rx_ring, rx_info); 574 } 575 } 576 577 /* ena_refill_all_rx_bufs - allocate all queues Rx buffers 578 * @adapter: board private structure 579 * 580 */ 581 static void ena_refill_all_rx_bufs(struct ena_adapter *adapter) 582 { 583 struct ena_ring *rx_ring; 584 int i, rc, bufs_num; 585 586 for (i = 0; i < adapter->num_queues; i++) { 587 rx_ring = &adapter->rx_ring[i]; 588 bufs_num = rx_ring->ring_size - 1; 589 rc = ena_refill_rx_bufs(rx_ring, bufs_num); 590 591 if (unlikely(rc != bufs_num)) 592 netif_warn(rx_ring->adapter, rx_status, rx_ring->netdev, 593 "refilling Queue %d failed. allocated %d buffers from: %d\n", 594 i, rc, bufs_num); 595 } 596 } 597 598 static void ena_free_all_rx_bufs(struct ena_adapter *adapter) 599 { 600 int i; 601 602 for (i = 0; i < adapter->num_queues; i++) 603 ena_free_rx_bufs(adapter, i); 604 } 605 606 /* ena_free_tx_bufs - Free Tx Buffers per Queue 607 * @tx_ring: TX ring for which buffers be freed 608 */ 609 static void ena_free_tx_bufs(struct ena_ring *tx_ring) 610 { 611 bool print_once = true; 612 u32 i; 613 614 for (i = 0; i < tx_ring->ring_size; i++) { 615 struct ena_tx_buffer *tx_info = &tx_ring->tx_buffer_info[i]; 616 struct ena_com_buf *ena_buf; 617 int nr_frags; 618 int j; 619 620 if (!tx_info->skb) 621 continue; 622 623 if (print_once) { 624 netdev_notice(tx_ring->netdev, 625 "free uncompleted tx skb qid %d idx 0x%x\n", 626 tx_ring->qid, i); 627 print_once = false; 628 } else { 629 netdev_dbg(tx_ring->netdev, 630 "free uncompleted tx skb qid %d idx 0x%x\n", 631 tx_ring->qid, i); 632 } 633 634 ena_buf = tx_info->bufs; 635 dma_unmap_single(tx_ring->dev, 636 ena_buf->paddr, 637 ena_buf->len, 638 DMA_TO_DEVICE); 639 640 /* unmap remaining mapped pages */ 641 nr_frags = tx_info->num_of_bufs - 1; 642 for (j = 0; j < nr_frags; j++) { 643 ena_buf++; 644 dma_unmap_page(tx_ring->dev, 645 ena_buf->paddr, 646 ena_buf->len, 647 DMA_TO_DEVICE); 648 } 649 650 dev_kfree_skb_any(tx_info->skb); 651 } 652 netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev, 653 tx_ring->qid)); 654 } 655 656 static void ena_free_all_tx_bufs(struct ena_adapter *adapter) 657 { 658 struct ena_ring *tx_ring; 659 int i; 660 661 for (i = 0; i < adapter->num_queues; i++) { 662 tx_ring = &adapter->tx_ring[i]; 663 ena_free_tx_bufs(tx_ring); 664 } 665 } 666 667 static void ena_destroy_all_tx_queues(struct ena_adapter *adapter) 668 { 669 u16 ena_qid; 670 int i; 671 672 for (i = 0; i < adapter->num_queues; i++) { 673 ena_qid = ENA_IO_TXQ_IDX(i); 674 ena_com_destroy_io_queue(adapter->ena_dev, ena_qid); 675 } 676 } 677 678 static void ena_destroy_all_rx_queues(struct ena_adapter *adapter) 679 { 680 u16 ena_qid; 681 int i; 682 683 for (i = 0; i < adapter->num_queues; i++) { 684 ena_qid = ENA_IO_RXQ_IDX(i); 685 ena_com_destroy_io_queue(adapter->ena_dev, ena_qid); 686 } 687 } 688 689 static void ena_destroy_all_io_queues(struct ena_adapter *adapter) 690 { 691 ena_destroy_all_tx_queues(adapter); 692 ena_destroy_all_rx_queues(adapter); 693 } 694 695 static int validate_tx_req_id(struct ena_ring *tx_ring, u16 req_id) 696 { 697 struct ena_tx_buffer *tx_info = NULL; 698 699 if (likely(req_id < tx_ring->ring_size)) { 700 tx_info = &tx_ring->tx_buffer_info[req_id]; 701 if (likely(tx_info->skb)) 702 return 0; 703 } 704 705 if (tx_info) 706 netif_err(tx_ring->adapter, tx_done, tx_ring->netdev, 707 "tx_info doesn't have valid skb\n"); 708 else 709 netif_err(tx_ring->adapter, tx_done, tx_ring->netdev, 710 "Invalid req_id: %hu\n", req_id); 711 712 u64_stats_update_begin(&tx_ring->syncp); 713 tx_ring->tx_stats.bad_req_id++; 714 u64_stats_update_end(&tx_ring->syncp); 715 716 /* Trigger device reset */ 717 tx_ring->adapter->reset_reason = ENA_REGS_RESET_INV_TX_REQ_ID; 718 set_bit(ENA_FLAG_TRIGGER_RESET, &tx_ring->adapter->flags); 719 return -EFAULT; 720 } 721 722 static int ena_clean_tx_irq(struct ena_ring *tx_ring, u32 budget) 723 { 724 struct netdev_queue *txq; 725 bool above_thresh; 726 u32 tx_bytes = 0; 727 u32 total_done = 0; 728 u16 next_to_clean; 729 u16 req_id; 730 int tx_pkts = 0; 731 int rc; 732 733 next_to_clean = tx_ring->next_to_clean; 734 txq = netdev_get_tx_queue(tx_ring->netdev, tx_ring->qid); 735 736 while (tx_pkts < budget) { 737 struct ena_tx_buffer *tx_info; 738 struct sk_buff *skb; 739 struct ena_com_buf *ena_buf; 740 int i, nr_frags; 741 742 rc = ena_com_tx_comp_req_id_get(tx_ring->ena_com_io_cq, 743 &req_id); 744 if (rc) 745 break; 746 747 rc = validate_tx_req_id(tx_ring, req_id); 748 if (rc) 749 break; 750 751 tx_info = &tx_ring->tx_buffer_info[req_id]; 752 skb = tx_info->skb; 753 754 /* prefetch skb_end_pointer() to speedup skb_shinfo(skb) */ 755 prefetch(&skb->end); 756 757 tx_info->skb = NULL; 758 tx_info->last_jiffies = 0; 759 760 if (likely(tx_info->num_of_bufs != 0)) { 761 ena_buf = tx_info->bufs; 762 763 dma_unmap_single(tx_ring->dev, 764 dma_unmap_addr(ena_buf, paddr), 765 dma_unmap_len(ena_buf, len), 766 DMA_TO_DEVICE); 767 768 /* unmap remaining mapped pages */ 769 nr_frags = tx_info->num_of_bufs - 1; 770 for (i = 0; i < nr_frags; i++) { 771 ena_buf++; 772 dma_unmap_page(tx_ring->dev, 773 dma_unmap_addr(ena_buf, paddr), 774 dma_unmap_len(ena_buf, len), 775 DMA_TO_DEVICE); 776 } 777 } 778 779 netif_dbg(tx_ring->adapter, tx_done, tx_ring->netdev, 780 "tx_poll: q %d skb %p completed\n", tx_ring->qid, 781 skb); 782 783 tx_bytes += skb->len; 784 dev_kfree_skb(skb); 785 tx_pkts++; 786 total_done += tx_info->tx_descs; 787 788 tx_ring->free_tx_ids[next_to_clean] = req_id; 789 next_to_clean = ENA_TX_RING_IDX_NEXT(next_to_clean, 790 tx_ring->ring_size); 791 } 792 793 tx_ring->next_to_clean = next_to_clean; 794 ena_com_comp_ack(tx_ring->ena_com_io_sq, total_done); 795 ena_com_update_dev_comp_head(tx_ring->ena_com_io_cq); 796 797 netdev_tx_completed_queue(txq, tx_pkts, tx_bytes); 798 799 netif_dbg(tx_ring->adapter, tx_done, tx_ring->netdev, 800 "tx_poll: q %d done. total pkts: %d\n", 801 tx_ring->qid, tx_pkts); 802 803 /* need to make the rings circular update visible to 804 * ena_start_xmit() before checking for netif_queue_stopped(). 805 */ 806 smp_mb(); 807 808 above_thresh = ena_com_sq_empty_space(tx_ring->ena_com_io_sq) > 809 ENA_TX_WAKEUP_THRESH; 810 if (unlikely(netif_tx_queue_stopped(txq) && above_thresh)) { 811 __netif_tx_lock(txq, smp_processor_id()); 812 above_thresh = ena_com_sq_empty_space(tx_ring->ena_com_io_sq) > 813 ENA_TX_WAKEUP_THRESH; 814 if (netif_tx_queue_stopped(txq) && above_thresh) { 815 netif_tx_wake_queue(txq); 816 u64_stats_update_begin(&tx_ring->syncp); 817 tx_ring->tx_stats.queue_wakeup++; 818 u64_stats_update_end(&tx_ring->syncp); 819 } 820 __netif_tx_unlock(txq); 821 } 822 823 tx_ring->per_napi_bytes += tx_bytes; 824 tx_ring->per_napi_packets += tx_pkts; 825 826 return tx_pkts; 827 } 828 829 static struct sk_buff *ena_alloc_skb(struct ena_ring *rx_ring, bool frags) 830 { 831 struct sk_buff *skb; 832 833 if (frags) 834 skb = napi_get_frags(rx_ring->napi); 835 else 836 skb = netdev_alloc_skb_ip_align(rx_ring->netdev, 837 rx_ring->rx_copybreak); 838 839 if (unlikely(!skb)) { 840 u64_stats_update_begin(&rx_ring->syncp); 841 rx_ring->rx_stats.skb_alloc_fail++; 842 u64_stats_update_end(&rx_ring->syncp); 843 netif_dbg(rx_ring->adapter, rx_err, rx_ring->netdev, 844 "Failed to allocate skb. frags: %d\n", frags); 845 return NULL; 846 } 847 848 return skb; 849 } 850 851 static struct sk_buff *ena_rx_skb(struct ena_ring *rx_ring, 852 struct ena_com_rx_buf_info *ena_bufs, 853 u32 descs, 854 u16 *next_to_clean) 855 { 856 struct sk_buff *skb; 857 struct ena_rx_buffer *rx_info; 858 u16 len, req_id, buf = 0; 859 void *va; 860 861 len = ena_bufs[buf].len; 862 req_id = ena_bufs[buf].req_id; 863 rx_info = &rx_ring->rx_buffer_info[req_id]; 864 865 if (unlikely(!rx_info->page)) { 866 netif_err(rx_ring->adapter, rx_err, rx_ring->netdev, 867 "Page is NULL\n"); 868 return NULL; 869 } 870 871 netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, 872 "rx_info %p page %p\n", 873 rx_info, rx_info->page); 874 875 /* save virt address of first buffer */ 876 va = page_address(rx_info->page) + rx_info->page_offset; 877 prefetch(va + NET_IP_ALIGN); 878 879 if (len <= rx_ring->rx_copybreak) { 880 skb = ena_alloc_skb(rx_ring, false); 881 if (unlikely(!skb)) 882 return NULL; 883 884 netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, 885 "rx allocated small packet. len %d. data_len %d\n", 886 skb->len, skb->data_len); 887 888 /* sync this buffer for CPU use */ 889 dma_sync_single_for_cpu(rx_ring->dev, 890 dma_unmap_addr(&rx_info->ena_buf, paddr), 891 len, 892 DMA_FROM_DEVICE); 893 skb_copy_to_linear_data(skb, va, len); 894 dma_sync_single_for_device(rx_ring->dev, 895 dma_unmap_addr(&rx_info->ena_buf, paddr), 896 len, 897 DMA_FROM_DEVICE); 898 899 skb_put(skb, len); 900 skb->protocol = eth_type_trans(skb, rx_ring->netdev); 901 rx_ring->free_rx_ids[*next_to_clean] = req_id; 902 *next_to_clean = ENA_RX_RING_IDX_ADD(*next_to_clean, descs, 903 rx_ring->ring_size); 904 return skb; 905 } 906 907 skb = ena_alloc_skb(rx_ring, true); 908 if (unlikely(!skb)) 909 return NULL; 910 911 do { 912 dma_unmap_page(rx_ring->dev, 913 dma_unmap_addr(&rx_info->ena_buf, paddr), 914 ENA_PAGE_SIZE, DMA_FROM_DEVICE); 915 916 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_info->page, 917 rx_info->page_offset, len, ENA_PAGE_SIZE); 918 919 netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, 920 "rx skb updated. len %d. data_len %d\n", 921 skb->len, skb->data_len); 922 923 rx_info->page = NULL; 924 925 rx_ring->free_rx_ids[*next_to_clean] = req_id; 926 *next_to_clean = 927 ENA_RX_RING_IDX_NEXT(*next_to_clean, 928 rx_ring->ring_size); 929 if (likely(--descs == 0)) 930 break; 931 932 buf++; 933 len = ena_bufs[buf].len; 934 req_id = ena_bufs[buf].req_id; 935 rx_info = &rx_ring->rx_buffer_info[req_id]; 936 } while (1); 937 938 return skb; 939 } 940 941 /* ena_rx_checksum - indicate in skb if hw indicated a good cksum 942 * @adapter: structure containing adapter specific data 943 * @ena_rx_ctx: received packet context/metadata 944 * @skb: skb currently being received and modified 945 */ 946 static inline void ena_rx_checksum(struct ena_ring *rx_ring, 947 struct ena_com_rx_ctx *ena_rx_ctx, 948 struct sk_buff *skb) 949 { 950 /* Rx csum disabled */ 951 if (unlikely(!(rx_ring->netdev->features & NETIF_F_RXCSUM))) { 952 skb->ip_summed = CHECKSUM_NONE; 953 return; 954 } 955 956 /* For fragmented packets the checksum isn't valid */ 957 if (ena_rx_ctx->frag) { 958 skb->ip_summed = CHECKSUM_NONE; 959 return; 960 } 961 962 /* if IP and error */ 963 if (unlikely((ena_rx_ctx->l3_proto == ENA_ETH_IO_L3_PROTO_IPV4) && 964 (ena_rx_ctx->l3_csum_err))) { 965 /* ipv4 checksum error */ 966 skb->ip_summed = CHECKSUM_NONE; 967 u64_stats_update_begin(&rx_ring->syncp); 968 rx_ring->rx_stats.bad_csum++; 969 u64_stats_update_end(&rx_ring->syncp); 970 netif_dbg(rx_ring->adapter, rx_err, rx_ring->netdev, 971 "RX IPv4 header checksum error\n"); 972 return; 973 } 974 975 /* if TCP/UDP */ 976 if (likely((ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_TCP) || 977 (ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_UDP))) { 978 if (unlikely(ena_rx_ctx->l4_csum_err)) { 979 /* TCP/UDP checksum error */ 980 u64_stats_update_begin(&rx_ring->syncp); 981 rx_ring->rx_stats.bad_csum++; 982 u64_stats_update_end(&rx_ring->syncp); 983 netif_dbg(rx_ring->adapter, rx_err, rx_ring->netdev, 984 "RX L4 checksum error\n"); 985 skb->ip_summed = CHECKSUM_NONE; 986 return; 987 } 988 989 skb->ip_summed = CHECKSUM_UNNECESSARY; 990 } 991 } 992 993 static void ena_set_rx_hash(struct ena_ring *rx_ring, 994 struct ena_com_rx_ctx *ena_rx_ctx, 995 struct sk_buff *skb) 996 { 997 enum pkt_hash_types hash_type; 998 999 if (likely(rx_ring->netdev->features & NETIF_F_RXHASH)) { 1000 if (likely((ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_TCP) || 1001 (ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_UDP))) 1002 1003 hash_type = PKT_HASH_TYPE_L4; 1004 else 1005 hash_type = PKT_HASH_TYPE_NONE; 1006 1007 /* Override hash type if the packet is fragmented */ 1008 if (ena_rx_ctx->frag) 1009 hash_type = PKT_HASH_TYPE_NONE; 1010 1011 skb_set_hash(skb, ena_rx_ctx->hash, hash_type); 1012 } 1013 } 1014 1015 /* ena_clean_rx_irq - Cleanup RX irq 1016 * @rx_ring: RX ring to clean 1017 * @napi: napi handler 1018 * @budget: how many packets driver is allowed to clean 1019 * 1020 * Returns the number of cleaned buffers. 1021 */ 1022 static int ena_clean_rx_irq(struct ena_ring *rx_ring, struct napi_struct *napi, 1023 u32 budget) 1024 { 1025 u16 next_to_clean = rx_ring->next_to_clean; 1026 u32 res_budget, work_done; 1027 1028 struct ena_com_rx_ctx ena_rx_ctx; 1029 struct ena_adapter *adapter; 1030 struct sk_buff *skb; 1031 int refill_required; 1032 int refill_threshold; 1033 int rc = 0; 1034 int total_len = 0; 1035 int rx_copybreak_pkt = 0; 1036 int i; 1037 1038 netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, 1039 "%s qid %d\n", __func__, rx_ring->qid); 1040 res_budget = budget; 1041 1042 do { 1043 ena_rx_ctx.ena_bufs = rx_ring->ena_bufs; 1044 ena_rx_ctx.max_bufs = rx_ring->sgl_size; 1045 ena_rx_ctx.descs = 0; 1046 rc = ena_com_rx_pkt(rx_ring->ena_com_io_cq, 1047 rx_ring->ena_com_io_sq, 1048 &ena_rx_ctx); 1049 if (unlikely(rc)) 1050 goto error; 1051 1052 if (unlikely(ena_rx_ctx.descs == 0)) 1053 break; 1054 1055 netif_dbg(rx_ring->adapter, rx_status, rx_ring->netdev, 1056 "rx_poll: q %d got packet from ena. descs #: %d l3 proto %d l4 proto %d hash: %x\n", 1057 rx_ring->qid, ena_rx_ctx.descs, ena_rx_ctx.l3_proto, 1058 ena_rx_ctx.l4_proto, ena_rx_ctx.hash); 1059 1060 /* allocate skb and fill it */ 1061 skb = ena_rx_skb(rx_ring, rx_ring->ena_bufs, ena_rx_ctx.descs, 1062 &next_to_clean); 1063 1064 /* exit if we failed to retrieve a buffer */ 1065 if (unlikely(!skb)) { 1066 for (i = 0; i < ena_rx_ctx.descs; i++) { 1067 rx_ring->free_tx_ids[next_to_clean] = 1068 rx_ring->ena_bufs[i].req_id; 1069 next_to_clean = 1070 ENA_RX_RING_IDX_NEXT(next_to_clean, 1071 rx_ring->ring_size); 1072 } 1073 break; 1074 } 1075 1076 ena_rx_checksum(rx_ring, &ena_rx_ctx, skb); 1077 1078 ena_set_rx_hash(rx_ring, &ena_rx_ctx, skb); 1079 1080 skb_record_rx_queue(skb, rx_ring->qid); 1081 1082 if (rx_ring->ena_bufs[0].len <= rx_ring->rx_copybreak) { 1083 total_len += rx_ring->ena_bufs[0].len; 1084 rx_copybreak_pkt++; 1085 napi_gro_receive(napi, skb); 1086 } else { 1087 total_len += skb->len; 1088 napi_gro_frags(napi); 1089 } 1090 1091 res_budget--; 1092 } while (likely(res_budget)); 1093 1094 work_done = budget - res_budget; 1095 rx_ring->per_napi_bytes += total_len; 1096 rx_ring->per_napi_packets += work_done; 1097 u64_stats_update_begin(&rx_ring->syncp); 1098 rx_ring->rx_stats.bytes += total_len; 1099 rx_ring->rx_stats.cnt += work_done; 1100 rx_ring->rx_stats.rx_copybreak_pkt += rx_copybreak_pkt; 1101 u64_stats_update_end(&rx_ring->syncp); 1102 1103 rx_ring->next_to_clean = next_to_clean; 1104 1105 refill_required = ena_com_sq_empty_space(rx_ring->ena_com_io_sq); 1106 refill_threshold = rx_ring->ring_size / ENA_RX_REFILL_THRESH_DIVIDER; 1107 1108 /* Optimization, try to batch new rx buffers */ 1109 if (refill_required > refill_threshold) { 1110 ena_com_update_dev_comp_head(rx_ring->ena_com_io_cq); 1111 ena_refill_rx_bufs(rx_ring, refill_required); 1112 } 1113 1114 return work_done; 1115 1116 error: 1117 adapter = netdev_priv(rx_ring->netdev); 1118 1119 u64_stats_update_begin(&rx_ring->syncp); 1120 rx_ring->rx_stats.bad_desc_num++; 1121 u64_stats_update_end(&rx_ring->syncp); 1122 1123 /* Too many desc from the device. Trigger reset */ 1124 adapter->reset_reason = ENA_REGS_RESET_TOO_MANY_RX_DESCS; 1125 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 1126 1127 return 0; 1128 } 1129 1130 inline void ena_adjust_intr_moderation(struct ena_ring *rx_ring, 1131 struct ena_ring *tx_ring) 1132 { 1133 /* We apply adaptive moderation on Rx path only. 1134 * Tx uses static interrupt moderation. 1135 */ 1136 ena_com_calculate_interrupt_delay(rx_ring->ena_dev, 1137 rx_ring->per_napi_packets, 1138 rx_ring->per_napi_bytes, 1139 &rx_ring->smoothed_interval, 1140 &rx_ring->moder_tbl_idx); 1141 1142 /* Reset per napi packets/bytes */ 1143 tx_ring->per_napi_packets = 0; 1144 tx_ring->per_napi_bytes = 0; 1145 rx_ring->per_napi_packets = 0; 1146 rx_ring->per_napi_bytes = 0; 1147 } 1148 1149 static inline void ena_unmask_interrupt(struct ena_ring *tx_ring, 1150 struct ena_ring *rx_ring) 1151 { 1152 struct ena_eth_io_intr_reg intr_reg; 1153 1154 /* Update intr register: rx intr delay, 1155 * tx intr delay and interrupt unmask 1156 */ 1157 ena_com_update_intr_reg(&intr_reg, 1158 rx_ring->smoothed_interval, 1159 tx_ring->smoothed_interval, 1160 true); 1161 1162 /* It is a shared MSI-X. 1163 * Tx and Rx CQ have pointer to it. 1164 * So we use one of them to reach the intr reg 1165 */ 1166 ena_com_unmask_intr(rx_ring->ena_com_io_cq, &intr_reg); 1167 } 1168 1169 static inline void ena_update_ring_numa_node(struct ena_ring *tx_ring, 1170 struct ena_ring *rx_ring) 1171 { 1172 int cpu = get_cpu(); 1173 int numa_node; 1174 1175 /* Check only one ring since the 2 rings are running on the same cpu */ 1176 if (likely(tx_ring->cpu == cpu)) 1177 goto out; 1178 1179 numa_node = cpu_to_node(cpu); 1180 put_cpu(); 1181 1182 if (numa_node != NUMA_NO_NODE) { 1183 ena_com_update_numa_node(tx_ring->ena_com_io_cq, numa_node); 1184 ena_com_update_numa_node(rx_ring->ena_com_io_cq, numa_node); 1185 } 1186 1187 tx_ring->cpu = cpu; 1188 rx_ring->cpu = cpu; 1189 1190 return; 1191 out: 1192 put_cpu(); 1193 } 1194 1195 static int ena_io_poll(struct napi_struct *napi, int budget) 1196 { 1197 struct ena_napi *ena_napi = container_of(napi, struct ena_napi, napi); 1198 struct ena_ring *tx_ring, *rx_ring; 1199 1200 u32 tx_work_done; 1201 u32 rx_work_done; 1202 int tx_budget; 1203 int napi_comp_call = 0; 1204 int ret; 1205 1206 tx_ring = ena_napi->tx_ring; 1207 rx_ring = ena_napi->rx_ring; 1208 1209 tx_budget = tx_ring->ring_size / ENA_TX_POLL_BUDGET_DIVIDER; 1210 1211 if (!test_bit(ENA_FLAG_DEV_UP, &tx_ring->adapter->flags) || 1212 test_bit(ENA_FLAG_TRIGGER_RESET, &tx_ring->adapter->flags)) { 1213 napi_complete_done(napi, 0); 1214 return 0; 1215 } 1216 1217 tx_work_done = ena_clean_tx_irq(tx_ring, tx_budget); 1218 rx_work_done = ena_clean_rx_irq(rx_ring, napi, budget); 1219 1220 /* If the device is about to reset or down, avoid unmask 1221 * the interrupt and return 0 so NAPI won't reschedule 1222 */ 1223 if (unlikely(!test_bit(ENA_FLAG_DEV_UP, &tx_ring->adapter->flags) || 1224 test_bit(ENA_FLAG_TRIGGER_RESET, &tx_ring->adapter->flags))) { 1225 napi_complete_done(napi, 0); 1226 ret = 0; 1227 1228 } else if ((budget > rx_work_done) && (tx_budget > tx_work_done)) { 1229 napi_comp_call = 1; 1230 1231 /* Update numa and unmask the interrupt only when schedule 1232 * from the interrupt context (vs from sk_busy_loop) 1233 */ 1234 if (napi_complete_done(napi, rx_work_done)) { 1235 /* Tx and Rx share the same interrupt vector */ 1236 if (ena_com_get_adaptive_moderation_enabled(rx_ring->ena_dev)) 1237 ena_adjust_intr_moderation(rx_ring, tx_ring); 1238 1239 ena_unmask_interrupt(tx_ring, rx_ring); 1240 } 1241 1242 ena_update_ring_numa_node(tx_ring, rx_ring); 1243 1244 ret = rx_work_done; 1245 } else { 1246 ret = budget; 1247 } 1248 1249 u64_stats_update_begin(&tx_ring->syncp); 1250 tx_ring->tx_stats.napi_comp += napi_comp_call; 1251 tx_ring->tx_stats.tx_poll++; 1252 u64_stats_update_end(&tx_ring->syncp); 1253 1254 return ret; 1255 } 1256 1257 static irqreturn_t ena_intr_msix_mgmnt(int irq, void *data) 1258 { 1259 struct ena_adapter *adapter = (struct ena_adapter *)data; 1260 1261 ena_com_admin_q_comp_intr_handler(adapter->ena_dev); 1262 1263 /* Don't call the aenq handler before probe is done */ 1264 if (likely(test_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags))) 1265 ena_com_aenq_intr_handler(adapter->ena_dev, data); 1266 1267 return IRQ_HANDLED; 1268 } 1269 1270 /* ena_intr_msix_io - MSI-X Interrupt Handler for Tx/Rx 1271 * @irq: interrupt number 1272 * @data: pointer to a network interface private napi device structure 1273 */ 1274 static irqreturn_t ena_intr_msix_io(int irq, void *data) 1275 { 1276 struct ena_napi *ena_napi = data; 1277 1278 ena_napi->tx_ring->first_interrupt = true; 1279 ena_napi->rx_ring->first_interrupt = true; 1280 1281 napi_schedule_irqoff(&ena_napi->napi); 1282 1283 return IRQ_HANDLED; 1284 } 1285 1286 /* Reserve a single MSI-X vector for management (admin + aenq). 1287 * plus reserve one vector for each potential io queue. 1288 * the number of potential io queues is the minimum of what the device 1289 * supports and the number of vCPUs. 1290 */ 1291 static int ena_enable_msix(struct ena_adapter *adapter, int num_queues) 1292 { 1293 int msix_vecs, irq_cnt; 1294 1295 if (test_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags)) { 1296 netif_err(adapter, probe, adapter->netdev, 1297 "Error, MSI-X is already enabled\n"); 1298 return -EPERM; 1299 } 1300 1301 /* Reserved the max msix vectors we might need */ 1302 msix_vecs = ENA_MAX_MSIX_VEC(num_queues); 1303 1304 netif_dbg(adapter, probe, adapter->netdev, 1305 "trying to enable MSI-X, vectors %d\n", msix_vecs); 1306 1307 irq_cnt = pci_alloc_irq_vectors(adapter->pdev, ENA_MIN_MSIX_VEC, 1308 msix_vecs, PCI_IRQ_MSIX); 1309 1310 if (irq_cnt < 0) { 1311 netif_err(adapter, probe, adapter->netdev, 1312 "Failed to enable MSI-X. irq_cnt %d\n", irq_cnt); 1313 return -ENOSPC; 1314 } 1315 1316 if (irq_cnt != msix_vecs) { 1317 netif_notice(adapter, probe, adapter->netdev, 1318 "enable only %d MSI-X (out of %d), reduce the number of queues\n", 1319 irq_cnt, msix_vecs); 1320 adapter->num_queues = irq_cnt - ENA_ADMIN_MSIX_VEC; 1321 } 1322 1323 if (ena_init_rx_cpu_rmap(adapter)) 1324 netif_warn(adapter, probe, adapter->netdev, 1325 "Failed to map IRQs to CPUs\n"); 1326 1327 adapter->msix_vecs = irq_cnt; 1328 set_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags); 1329 1330 return 0; 1331 } 1332 1333 static void ena_setup_mgmnt_intr(struct ena_adapter *adapter) 1334 { 1335 u32 cpu; 1336 1337 snprintf(adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].name, 1338 ENA_IRQNAME_SIZE, "ena-mgmnt@pci:%s", 1339 pci_name(adapter->pdev)); 1340 adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].handler = 1341 ena_intr_msix_mgmnt; 1342 adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].data = adapter; 1343 adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].vector = 1344 pci_irq_vector(adapter->pdev, ENA_MGMNT_IRQ_IDX); 1345 cpu = cpumask_first(cpu_online_mask); 1346 adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].cpu = cpu; 1347 cpumask_set_cpu(cpu, 1348 &adapter->irq_tbl[ENA_MGMNT_IRQ_IDX].affinity_hint_mask); 1349 } 1350 1351 static void ena_setup_io_intr(struct ena_adapter *adapter) 1352 { 1353 struct net_device *netdev; 1354 int irq_idx, i, cpu; 1355 1356 netdev = adapter->netdev; 1357 1358 for (i = 0; i < adapter->num_queues; i++) { 1359 irq_idx = ENA_IO_IRQ_IDX(i); 1360 cpu = i % num_online_cpus(); 1361 1362 snprintf(adapter->irq_tbl[irq_idx].name, ENA_IRQNAME_SIZE, 1363 "%s-Tx-Rx-%d", netdev->name, i); 1364 adapter->irq_tbl[irq_idx].handler = ena_intr_msix_io; 1365 adapter->irq_tbl[irq_idx].data = &adapter->ena_napi[i]; 1366 adapter->irq_tbl[irq_idx].vector = 1367 pci_irq_vector(adapter->pdev, irq_idx); 1368 adapter->irq_tbl[irq_idx].cpu = cpu; 1369 1370 cpumask_set_cpu(cpu, 1371 &adapter->irq_tbl[irq_idx].affinity_hint_mask); 1372 } 1373 } 1374 1375 static int ena_request_mgmnt_irq(struct ena_adapter *adapter) 1376 { 1377 unsigned long flags = 0; 1378 struct ena_irq *irq; 1379 int rc; 1380 1381 irq = &adapter->irq_tbl[ENA_MGMNT_IRQ_IDX]; 1382 rc = request_irq(irq->vector, irq->handler, flags, irq->name, 1383 irq->data); 1384 if (rc) { 1385 netif_err(adapter, probe, adapter->netdev, 1386 "failed to request admin irq\n"); 1387 return rc; 1388 } 1389 1390 netif_dbg(adapter, probe, adapter->netdev, 1391 "set affinity hint of mgmnt irq.to 0x%lx (irq vector: %d)\n", 1392 irq->affinity_hint_mask.bits[0], irq->vector); 1393 1394 irq_set_affinity_hint(irq->vector, &irq->affinity_hint_mask); 1395 1396 return rc; 1397 } 1398 1399 static int ena_request_io_irq(struct ena_adapter *adapter) 1400 { 1401 unsigned long flags = 0; 1402 struct ena_irq *irq; 1403 int rc = 0, i, k; 1404 1405 if (!test_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags)) { 1406 netif_err(adapter, ifup, adapter->netdev, 1407 "Failed to request I/O IRQ: MSI-X is not enabled\n"); 1408 return -EINVAL; 1409 } 1410 1411 for (i = ENA_IO_IRQ_FIRST_IDX; i < adapter->msix_vecs; i++) { 1412 irq = &adapter->irq_tbl[i]; 1413 rc = request_irq(irq->vector, irq->handler, flags, irq->name, 1414 irq->data); 1415 if (rc) { 1416 netif_err(adapter, ifup, adapter->netdev, 1417 "Failed to request I/O IRQ. index %d rc %d\n", 1418 i, rc); 1419 goto err; 1420 } 1421 1422 netif_dbg(adapter, ifup, adapter->netdev, 1423 "set affinity hint of irq. index %d to 0x%lx (irq vector: %d)\n", 1424 i, irq->affinity_hint_mask.bits[0], irq->vector); 1425 1426 irq_set_affinity_hint(irq->vector, &irq->affinity_hint_mask); 1427 } 1428 1429 return rc; 1430 1431 err: 1432 for (k = ENA_IO_IRQ_FIRST_IDX; k < i; k++) { 1433 irq = &adapter->irq_tbl[k]; 1434 free_irq(irq->vector, irq->data); 1435 } 1436 1437 return rc; 1438 } 1439 1440 static void ena_free_mgmnt_irq(struct ena_adapter *adapter) 1441 { 1442 struct ena_irq *irq; 1443 1444 irq = &adapter->irq_tbl[ENA_MGMNT_IRQ_IDX]; 1445 synchronize_irq(irq->vector); 1446 irq_set_affinity_hint(irq->vector, NULL); 1447 free_irq(irq->vector, irq->data); 1448 } 1449 1450 static void ena_free_io_irq(struct ena_adapter *adapter) 1451 { 1452 struct ena_irq *irq; 1453 int i; 1454 1455 #ifdef CONFIG_RFS_ACCEL 1456 if (adapter->msix_vecs >= 1) { 1457 free_irq_cpu_rmap(adapter->netdev->rx_cpu_rmap); 1458 adapter->netdev->rx_cpu_rmap = NULL; 1459 } 1460 #endif /* CONFIG_RFS_ACCEL */ 1461 1462 for (i = ENA_IO_IRQ_FIRST_IDX; i < adapter->msix_vecs; i++) { 1463 irq = &adapter->irq_tbl[i]; 1464 irq_set_affinity_hint(irq->vector, NULL); 1465 free_irq(irq->vector, irq->data); 1466 } 1467 } 1468 1469 static void ena_disable_msix(struct ena_adapter *adapter) 1470 { 1471 if (test_and_clear_bit(ENA_FLAG_MSIX_ENABLED, &adapter->flags)) 1472 pci_free_irq_vectors(adapter->pdev); 1473 } 1474 1475 static void ena_disable_io_intr_sync(struct ena_adapter *adapter) 1476 { 1477 int i; 1478 1479 if (!netif_running(adapter->netdev)) 1480 return; 1481 1482 for (i = ENA_IO_IRQ_FIRST_IDX; i < adapter->msix_vecs; i++) 1483 synchronize_irq(adapter->irq_tbl[i].vector); 1484 } 1485 1486 static void ena_del_napi(struct ena_adapter *adapter) 1487 { 1488 int i; 1489 1490 for (i = 0; i < adapter->num_queues; i++) 1491 netif_napi_del(&adapter->ena_napi[i].napi); 1492 } 1493 1494 static void ena_init_napi(struct ena_adapter *adapter) 1495 { 1496 struct ena_napi *napi; 1497 int i; 1498 1499 for (i = 0; i < adapter->num_queues; i++) { 1500 napi = &adapter->ena_napi[i]; 1501 1502 netif_napi_add(adapter->netdev, 1503 &adapter->ena_napi[i].napi, 1504 ena_io_poll, 1505 ENA_NAPI_BUDGET); 1506 napi->rx_ring = &adapter->rx_ring[i]; 1507 napi->tx_ring = &adapter->tx_ring[i]; 1508 napi->qid = i; 1509 } 1510 } 1511 1512 static void ena_napi_disable_all(struct ena_adapter *adapter) 1513 { 1514 int i; 1515 1516 for (i = 0; i < adapter->num_queues; i++) 1517 napi_disable(&adapter->ena_napi[i].napi); 1518 } 1519 1520 static void ena_napi_enable_all(struct ena_adapter *adapter) 1521 { 1522 int i; 1523 1524 for (i = 0; i < adapter->num_queues; i++) 1525 napi_enable(&adapter->ena_napi[i].napi); 1526 } 1527 1528 static void ena_restore_ethtool_params(struct ena_adapter *adapter) 1529 { 1530 adapter->tx_usecs = 0; 1531 adapter->rx_usecs = 0; 1532 adapter->tx_frames = 1; 1533 adapter->rx_frames = 1; 1534 } 1535 1536 /* Configure the Rx forwarding */ 1537 static int ena_rss_configure(struct ena_adapter *adapter) 1538 { 1539 struct ena_com_dev *ena_dev = adapter->ena_dev; 1540 int rc; 1541 1542 /* In case the RSS table wasn't initialized by probe */ 1543 if (!ena_dev->rss.tbl_log_size) { 1544 rc = ena_rss_init_default(adapter); 1545 if (rc && (rc != -EOPNOTSUPP)) { 1546 netif_err(adapter, ifup, adapter->netdev, 1547 "Failed to init RSS rc: %d\n", rc); 1548 return rc; 1549 } 1550 } 1551 1552 /* Set indirect table */ 1553 rc = ena_com_indirect_table_set(ena_dev); 1554 if (unlikely(rc && rc != -EOPNOTSUPP)) 1555 return rc; 1556 1557 /* Configure hash function (if supported) */ 1558 rc = ena_com_set_hash_function(ena_dev); 1559 if (unlikely(rc && (rc != -EOPNOTSUPP))) 1560 return rc; 1561 1562 /* Configure hash inputs (if supported) */ 1563 rc = ena_com_set_hash_ctrl(ena_dev); 1564 if (unlikely(rc && (rc != -EOPNOTSUPP))) 1565 return rc; 1566 1567 return 0; 1568 } 1569 1570 static int ena_up_complete(struct ena_adapter *adapter) 1571 { 1572 int rc; 1573 1574 rc = ena_rss_configure(adapter); 1575 if (rc) 1576 return rc; 1577 1578 ena_change_mtu(adapter->netdev, adapter->netdev->mtu); 1579 1580 ena_refill_all_rx_bufs(adapter); 1581 1582 /* enable transmits */ 1583 netif_tx_start_all_queues(adapter->netdev); 1584 1585 ena_restore_ethtool_params(adapter); 1586 1587 ena_napi_enable_all(adapter); 1588 1589 return 0; 1590 } 1591 1592 static int ena_create_io_tx_queue(struct ena_adapter *adapter, int qid) 1593 { 1594 struct ena_com_create_io_ctx ctx = { 0 }; 1595 struct ena_com_dev *ena_dev; 1596 struct ena_ring *tx_ring; 1597 u32 msix_vector; 1598 u16 ena_qid; 1599 int rc; 1600 1601 ena_dev = adapter->ena_dev; 1602 1603 tx_ring = &adapter->tx_ring[qid]; 1604 msix_vector = ENA_IO_IRQ_IDX(qid); 1605 ena_qid = ENA_IO_TXQ_IDX(qid); 1606 1607 ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_TX; 1608 ctx.qid = ena_qid; 1609 ctx.mem_queue_type = ena_dev->tx_mem_queue_type; 1610 ctx.msix_vector = msix_vector; 1611 ctx.queue_size = adapter->tx_ring_size; 1612 ctx.numa_node = cpu_to_node(tx_ring->cpu); 1613 1614 rc = ena_com_create_io_queue(ena_dev, &ctx); 1615 if (rc) { 1616 netif_err(adapter, ifup, adapter->netdev, 1617 "Failed to create I/O TX queue num %d rc: %d\n", 1618 qid, rc); 1619 return rc; 1620 } 1621 1622 rc = ena_com_get_io_handlers(ena_dev, ena_qid, 1623 &tx_ring->ena_com_io_sq, 1624 &tx_ring->ena_com_io_cq); 1625 if (rc) { 1626 netif_err(adapter, ifup, adapter->netdev, 1627 "Failed to get TX queue handlers. TX queue num %d rc: %d\n", 1628 qid, rc); 1629 ena_com_destroy_io_queue(ena_dev, ena_qid); 1630 return rc; 1631 } 1632 1633 ena_com_update_numa_node(tx_ring->ena_com_io_cq, ctx.numa_node); 1634 return rc; 1635 } 1636 1637 static int ena_create_all_io_tx_queues(struct ena_adapter *adapter) 1638 { 1639 struct ena_com_dev *ena_dev = adapter->ena_dev; 1640 int rc, i; 1641 1642 for (i = 0; i < adapter->num_queues; i++) { 1643 rc = ena_create_io_tx_queue(adapter, i); 1644 if (rc) 1645 goto create_err; 1646 } 1647 1648 return 0; 1649 1650 create_err: 1651 while (i--) 1652 ena_com_destroy_io_queue(ena_dev, ENA_IO_TXQ_IDX(i)); 1653 1654 return rc; 1655 } 1656 1657 static int ena_create_io_rx_queue(struct ena_adapter *adapter, int qid) 1658 { 1659 struct ena_com_dev *ena_dev; 1660 struct ena_com_create_io_ctx ctx = { 0 }; 1661 struct ena_ring *rx_ring; 1662 u32 msix_vector; 1663 u16 ena_qid; 1664 int rc; 1665 1666 ena_dev = adapter->ena_dev; 1667 1668 rx_ring = &adapter->rx_ring[qid]; 1669 msix_vector = ENA_IO_IRQ_IDX(qid); 1670 ena_qid = ENA_IO_RXQ_IDX(qid); 1671 1672 ctx.qid = ena_qid; 1673 ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_RX; 1674 ctx.mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST; 1675 ctx.msix_vector = msix_vector; 1676 ctx.queue_size = adapter->rx_ring_size; 1677 ctx.numa_node = cpu_to_node(rx_ring->cpu); 1678 1679 rc = ena_com_create_io_queue(ena_dev, &ctx); 1680 if (rc) { 1681 netif_err(adapter, ifup, adapter->netdev, 1682 "Failed to create I/O RX queue num %d rc: %d\n", 1683 qid, rc); 1684 return rc; 1685 } 1686 1687 rc = ena_com_get_io_handlers(ena_dev, ena_qid, 1688 &rx_ring->ena_com_io_sq, 1689 &rx_ring->ena_com_io_cq); 1690 if (rc) { 1691 netif_err(adapter, ifup, adapter->netdev, 1692 "Failed to get RX queue handlers. RX queue num %d rc: %d\n", 1693 qid, rc); 1694 ena_com_destroy_io_queue(ena_dev, ena_qid); 1695 return rc; 1696 } 1697 1698 ena_com_update_numa_node(rx_ring->ena_com_io_cq, ctx.numa_node); 1699 1700 return rc; 1701 } 1702 1703 static int ena_create_all_io_rx_queues(struct ena_adapter *adapter) 1704 { 1705 struct ena_com_dev *ena_dev = adapter->ena_dev; 1706 int rc, i; 1707 1708 for (i = 0; i < adapter->num_queues; i++) { 1709 rc = ena_create_io_rx_queue(adapter, i); 1710 if (rc) 1711 goto create_err; 1712 } 1713 1714 return 0; 1715 1716 create_err: 1717 while (i--) 1718 ena_com_destroy_io_queue(ena_dev, ENA_IO_RXQ_IDX(i)); 1719 1720 return rc; 1721 } 1722 1723 static int ena_up(struct ena_adapter *adapter) 1724 { 1725 int rc, i; 1726 1727 netdev_dbg(adapter->netdev, "%s\n", __func__); 1728 1729 ena_setup_io_intr(adapter); 1730 1731 /* napi poll functions should be initialized before running 1732 * request_irq(), to handle a rare condition where there is a pending 1733 * interrupt, causing the ISR to fire immediately while the poll 1734 * function wasn't set yet, causing a null dereference 1735 */ 1736 ena_init_napi(adapter); 1737 1738 rc = ena_request_io_irq(adapter); 1739 if (rc) 1740 goto err_req_irq; 1741 1742 /* allocate transmit descriptors */ 1743 rc = ena_setup_all_tx_resources(adapter); 1744 if (rc) 1745 goto err_setup_tx; 1746 1747 /* allocate receive descriptors */ 1748 rc = ena_setup_all_rx_resources(adapter); 1749 if (rc) 1750 goto err_setup_rx; 1751 1752 /* Create TX queues */ 1753 rc = ena_create_all_io_tx_queues(adapter); 1754 if (rc) 1755 goto err_create_tx_queues; 1756 1757 /* Create RX queues */ 1758 rc = ena_create_all_io_rx_queues(adapter); 1759 if (rc) 1760 goto err_create_rx_queues; 1761 1762 rc = ena_up_complete(adapter); 1763 if (rc) 1764 goto err_up; 1765 1766 if (test_bit(ENA_FLAG_LINK_UP, &adapter->flags)) 1767 netif_carrier_on(adapter->netdev); 1768 1769 u64_stats_update_begin(&adapter->syncp); 1770 adapter->dev_stats.interface_up++; 1771 u64_stats_update_end(&adapter->syncp); 1772 1773 set_bit(ENA_FLAG_DEV_UP, &adapter->flags); 1774 1775 /* Enable completion queues interrupt */ 1776 for (i = 0; i < adapter->num_queues; i++) 1777 ena_unmask_interrupt(&adapter->tx_ring[i], 1778 &adapter->rx_ring[i]); 1779 1780 /* schedule napi in case we had pending packets 1781 * from the last time we disable napi 1782 */ 1783 for (i = 0; i < adapter->num_queues; i++) 1784 napi_schedule(&adapter->ena_napi[i].napi); 1785 1786 return rc; 1787 1788 err_up: 1789 ena_destroy_all_rx_queues(adapter); 1790 err_create_rx_queues: 1791 ena_destroy_all_tx_queues(adapter); 1792 err_create_tx_queues: 1793 ena_free_all_io_rx_resources(adapter); 1794 err_setup_rx: 1795 ena_free_all_io_tx_resources(adapter); 1796 err_setup_tx: 1797 ena_free_io_irq(adapter); 1798 err_req_irq: 1799 1800 return rc; 1801 } 1802 1803 static void ena_down(struct ena_adapter *adapter) 1804 { 1805 netif_info(adapter, ifdown, adapter->netdev, "%s\n", __func__); 1806 1807 clear_bit(ENA_FLAG_DEV_UP, &adapter->flags); 1808 1809 u64_stats_update_begin(&adapter->syncp); 1810 adapter->dev_stats.interface_down++; 1811 u64_stats_update_end(&adapter->syncp); 1812 1813 netif_carrier_off(adapter->netdev); 1814 netif_tx_disable(adapter->netdev); 1815 1816 /* After this point the napi handler won't enable the tx queue */ 1817 ena_napi_disable_all(adapter); 1818 1819 /* After destroy the queue there won't be any new interrupts */ 1820 1821 if (test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) { 1822 int rc; 1823 1824 rc = ena_com_dev_reset(adapter->ena_dev, adapter->reset_reason); 1825 if (rc) 1826 dev_err(&adapter->pdev->dev, "Device reset failed\n"); 1827 } 1828 1829 ena_destroy_all_io_queues(adapter); 1830 1831 ena_disable_io_intr_sync(adapter); 1832 ena_free_io_irq(adapter); 1833 ena_del_napi(adapter); 1834 1835 ena_free_all_tx_bufs(adapter); 1836 ena_free_all_rx_bufs(adapter); 1837 ena_free_all_io_tx_resources(adapter); 1838 ena_free_all_io_rx_resources(adapter); 1839 } 1840 1841 /* ena_open - Called when a network interface is made active 1842 * @netdev: network interface device structure 1843 * 1844 * Returns 0 on success, negative value on failure 1845 * 1846 * The open entry point is called when a network interface is made 1847 * active by the system (IFF_UP). At this point all resources needed 1848 * for transmit and receive operations are allocated, the interrupt 1849 * handler is registered with the OS, the watchdog timer is started, 1850 * and the stack is notified that the interface is ready. 1851 */ 1852 static int ena_open(struct net_device *netdev) 1853 { 1854 struct ena_adapter *adapter = netdev_priv(netdev); 1855 int rc; 1856 1857 /* Notify the stack of the actual queue counts. */ 1858 rc = netif_set_real_num_tx_queues(netdev, adapter->num_queues); 1859 if (rc) { 1860 netif_err(adapter, ifup, netdev, "Can't set num tx queues\n"); 1861 return rc; 1862 } 1863 1864 rc = netif_set_real_num_rx_queues(netdev, adapter->num_queues); 1865 if (rc) { 1866 netif_err(adapter, ifup, netdev, "Can't set num rx queues\n"); 1867 return rc; 1868 } 1869 1870 rc = ena_up(adapter); 1871 if (rc) 1872 return rc; 1873 1874 return rc; 1875 } 1876 1877 /* ena_close - Disables a network interface 1878 * @netdev: network interface device structure 1879 * 1880 * Returns 0, this is not allowed to fail 1881 * 1882 * The close entry point is called when an interface is de-activated 1883 * by the OS. The hardware is still under the drivers control, but 1884 * needs to be disabled. A global MAC reset is issued to stop the 1885 * hardware, and all transmit and receive resources are freed. 1886 */ 1887 static int ena_close(struct net_device *netdev) 1888 { 1889 struct ena_adapter *adapter = netdev_priv(netdev); 1890 1891 netif_dbg(adapter, ifdown, netdev, "%s\n", __func__); 1892 1893 if (test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) 1894 ena_down(adapter); 1895 1896 /* Check for device status and issue reset if needed*/ 1897 check_for_admin_com_state(adapter); 1898 if (unlikely(test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags))) { 1899 netif_err(adapter, ifdown, adapter->netdev, 1900 "Destroy failure, restarting device\n"); 1901 ena_dump_stats_to_dmesg(adapter); 1902 /* rtnl lock already obtained in dev_ioctl() layer */ 1903 ena_destroy_device(adapter, false); 1904 ena_restore_device(adapter); 1905 } 1906 1907 return 0; 1908 } 1909 1910 static void ena_tx_csum(struct ena_com_tx_ctx *ena_tx_ctx, struct sk_buff *skb) 1911 { 1912 u32 mss = skb_shinfo(skb)->gso_size; 1913 struct ena_com_tx_meta *ena_meta = &ena_tx_ctx->ena_meta; 1914 u8 l4_protocol = 0; 1915 1916 if ((skb->ip_summed == CHECKSUM_PARTIAL) || mss) { 1917 ena_tx_ctx->l4_csum_enable = 1; 1918 if (mss) { 1919 ena_tx_ctx->tso_enable = 1; 1920 ena_meta->l4_hdr_len = tcp_hdr(skb)->doff; 1921 ena_tx_ctx->l4_csum_partial = 0; 1922 } else { 1923 ena_tx_ctx->tso_enable = 0; 1924 ena_meta->l4_hdr_len = 0; 1925 ena_tx_ctx->l4_csum_partial = 1; 1926 } 1927 1928 switch (ip_hdr(skb)->version) { 1929 case IPVERSION: 1930 ena_tx_ctx->l3_proto = ENA_ETH_IO_L3_PROTO_IPV4; 1931 if (ip_hdr(skb)->frag_off & htons(IP_DF)) 1932 ena_tx_ctx->df = 1; 1933 if (mss) 1934 ena_tx_ctx->l3_csum_enable = 1; 1935 l4_protocol = ip_hdr(skb)->protocol; 1936 break; 1937 case 6: 1938 ena_tx_ctx->l3_proto = ENA_ETH_IO_L3_PROTO_IPV6; 1939 l4_protocol = ipv6_hdr(skb)->nexthdr; 1940 break; 1941 default: 1942 break; 1943 } 1944 1945 if (l4_protocol == IPPROTO_TCP) 1946 ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_TCP; 1947 else 1948 ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_UDP; 1949 1950 ena_meta->mss = mss; 1951 ena_meta->l3_hdr_len = skb_network_header_len(skb); 1952 ena_meta->l3_hdr_offset = skb_network_offset(skb); 1953 ena_tx_ctx->meta_valid = 1; 1954 1955 } else { 1956 ena_tx_ctx->meta_valid = 0; 1957 } 1958 } 1959 1960 static int ena_check_and_linearize_skb(struct ena_ring *tx_ring, 1961 struct sk_buff *skb) 1962 { 1963 int num_frags, header_len, rc; 1964 1965 num_frags = skb_shinfo(skb)->nr_frags; 1966 header_len = skb_headlen(skb); 1967 1968 if (num_frags < tx_ring->sgl_size) 1969 return 0; 1970 1971 if ((num_frags == tx_ring->sgl_size) && 1972 (header_len < tx_ring->tx_max_header_size)) 1973 return 0; 1974 1975 u64_stats_update_begin(&tx_ring->syncp); 1976 tx_ring->tx_stats.linearize++; 1977 u64_stats_update_end(&tx_ring->syncp); 1978 1979 rc = skb_linearize(skb); 1980 if (unlikely(rc)) { 1981 u64_stats_update_begin(&tx_ring->syncp); 1982 tx_ring->tx_stats.linearize_failed++; 1983 u64_stats_update_end(&tx_ring->syncp); 1984 } 1985 1986 return rc; 1987 } 1988 1989 /* Called with netif_tx_lock. */ 1990 static netdev_tx_t ena_start_xmit(struct sk_buff *skb, struct net_device *dev) 1991 { 1992 struct ena_adapter *adapter = netdev_priv(dev); 1993 struct ena_tx_buffer *tx_info; 1994 struct ena_com_tx_ctx ena_tx_ctx; 1995 struct ena_ring *tx_ring; 1996 struct netdev_queue *txq; 1997 struct ena_com_buf *ena_buf; 1998 void *push_hdr; 1999 u32 len, last_frag; 2000 u16 next_to_use; 2001 u16 req_id; 2002 u16 push_len; 2003 u16 header_len; 2004 dma_addr_t dma; 2005 int qid, rc, nb_hw_desc; 2006 int i = -1; 2007 2008 netif_dbg(adapter, tx_queued, dev, "%s skb %p\n", __func__, skb); 2009 /* Determine which tx ring we will be placed on */ 2010 qid = skb_get_queue_mapping(skb); 2011 tx_ring = &adapter->tx_ring[qid]; 2012 txq = netdev_get_tx_queue(dev, qid); 2013 2014 rc = ena_check_and_linearize_skb(tx_ring, skb); 2015 if (unlikely(rc)) 2016 goto error_drop_packet; 2017 2018 skb_tx_timestamp(skb); 2019 len = skb_headlen(skb); 2020 2021 next_to_use = tx_ring->next_to_use; 2022 req_id = tx_ring->free_tx_ids[next_to_use]; 2023 tx_info = &tx_ring->tx_buffer_info[req_id]; 2024 tx_info->num_of_bufs = 0; 2025 2026 WARN(tx_info->skb, "SKB isn't NULL req_id %d\n", req_id); 2027 ena_buf = tx_info->bufs; 2028 tx_info->skb = skb; 2029 2030 if (tx_ring->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { 2031 /* prepared the push buffer */ 2032 push_len = min_t(u32, len, tx_ring->tx_max_header_size); 2033 header_len = push_len; 2034 push_hdr = skb->data; 2035 } else { 2036 push_len = 0; 2037 header_len = min_t(u32, len, tx_ring->tx_max_header_size); 2038 push_hdr = NULL; 2039 } 2040 2041 netif_dbg(adapter, tx_queued, dev, 2042 "skb: %p header_buf->vaddr: %p push_len: %d\n", skb, 2043 push_hdr, push_len); 2044 2045 if (len > push_len) { 2046 dma = dma_map_single(tx_ring->dev, skb->data + push_len, 2047 len - push_len, DMA_TO_DEVICE); 2048 if (dma_mapping_error(tx_ring->dev, dma)) 2049 goto error_report_dma_error; 2050 2051 ena_buf->paddr = dma; 2052 ena_buf->len = len - push_len; 2053 2054 ena_buf++; 2055 tx_info->num_of_bufs++; 2056 } 2057 2058 last_frag = skb_shinfo(skb)->nr_frags; 2059 2060 for (i = 0; i < last_frag; i++) { 2061 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; 2062 2063 len = skb_frag_size(frag); 2064 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, len, 2065 DMA_TO_DEVICE); 2066 if (dma_mapping_error(tx_ring->dev, dma)) 2067 goto error_report_dma_error; 2068 2069 ena_buf->paddr = dma; 2070 ena_buf->len = len; 2071 ena_buf++; 2072 } 2073 2074 tx_info->num_of_bufs += last_frag; 2075 2076 memset(&ena_tx_ctx, 0x0, sizeof(struct ena_com_tx_ctx)); 2077 ena_tx_ctx.ena_bufs = tx_info->bufs; 2078 ena_tx_ctx.push_header = push_hdr; 2079 ena_tx_ctx.num_bufs = tx_info->num_of_bufs; 2080 ena_tx_ctx.req_id = req_id; 2081 ena_tx_ctx.header_len = header_len; 2082 2083 /* set flags and meta data */ 2084 ena_tx_csum(&ena_tx_ctx, skb); 2085 2086 /* prepare the packet's descriptors to dma engine */ 2087 rc = ena_com_prepare_tx(tx_ring->ena_com_io_sq, &ena_tx_ctx, 2088 &nb_hw_desc); 2089 2090 if (unlikely(rc)) { 2091 netif_err(adapter, tx_queued, dev, 2092 "failed to prepare tx bufs\n"); 2093 u64_stats_update_begin(&tx_ring->syncp); 2094 tx_ring->tx_stats.queue_stop++; 2095 tx_ring->tx_stats.prepare_ctx_err++; 2096 u64_stats_update_end(&tx_ring->syncp); 2097 netif_tx_stop_queue(txq); 2098 goto error_unmap_dma; 2099 } 2100 2101 netdev_tx_sent_queue(txq, skb->len); 2102 2103 u64_stats_update_begin(&tx_ring->syncp); 2104 tx_ring->tx_stats.cnt++; 2105 tx_ring->tx_stats.bytes += skb->len; 2106 u64_stats_update_end(&tx_ring->syncp); 2107 2108 tx_info->tx_descs = nb_hw_desc; 2109 tx_info->last_jiffies = jiffies; 2110 tx_info->print_once = 0; 2111 2112 tx_ring->next_to_use = ENA_TX_RING_IDX_NEXT(next_to_use, 2113 tx_ring->ring_size); 2114 2115 /* stop the queue when no more space available, the packet can have up 2116 * to sgl_size + 2. one for the meta descriptor and one for header 2117 * (if the header is larger than tx_max_header_size). 2118 */ 2119 if (unlikely(ena_com_sq_empty_space(tx_ring->ena_com_io_sq) < 2120 (tx_ring->sgl_size + 2))) { 2121 netif_dbg(adapter, tx_queued, dev, "%s stop queue %d\n", 2122 __func__, qid); 2123 2124 netif_tx_stop_queue(txq); 2125 u64_stats_update_begin(&tx_ring->syncp); 2126 tx_ring->tx_stats.queue_stop++; 2127 u64_stats_update_end(&tx_ring->syncp); 2128 2129 /* There is a rare condition where this function decide to 2130 * stop the queue but meanwhile clean_tx_irq updates 2131 * next_to_completion and terminates. 2132 * The queue will remain stopped forever. 2133 * To solve this issue add a mb() to make sure that 2134 * netif_tx_stop_queue() write is vissible before checking if 2135 * there is additional space in the queue. 2136 */ 2137 smp_mb(); 2138 2139 if (ena_com_sq_empty_space(tx_ring->ena_com_io_sq) 2140 > ENA_TX_WAKEUP_THRESH) { 2141 netif_tx_wake_queue(txq); 2142 u64_stats_update_begin(&tx_ring->syncp); 2143 tx_ring->tx_stats.queue_wakeup++; 2144 u64_stats_update_end(&tx_ring->syncp); 2145 } 2146 } 2147 2148 if (netif_xmit_stopped(txq) || !skb->xmit_more) { 2149 /* trigger the dma engine. ena_com_write_sq_doorbell() 2150 * has a mb 2151 */ 2152 ena_com_write_sq_doorbell(tx_ring->ena_com_io_sq); 2153 u64_stats_update_begin(&tx_ring->syncp); 2154 tx_ring->tx_stats.doorbells++; 2155 u64_stats_update_end(&tx_ring->syncp); 2156 } 2157 2158 return NETDEV_TX_OK; 2159 2160 error_report_dma_error: 2161 u64_stats_update_begin(&tx_ring->syncp); 2162 tx_ring->tx_stats.dma_mapping_err++; 2163 u64_stats_update_end(&tx_ring->syncp); 2164 netdev_warn(adapter->netdev, "failed to map skb\n"); 2165 2166 tx_info->skb = NULL; 2167 2168 error_unmap_dma: 2169 if (i >= 0) { 2170 /* save value of frag that failed */ 2171 last_frag = i; 2172 2173 /* start back at beginning and unmap skb */ 2174 tx_info->skb = NULL; 2175 ena_buf = tx_info->bufs; 2176 dma_unmap_single(tx_ring->dev, dma_unmap_addr(ena_buf, paddr), 2177 dma_unmap_len(ena_buf, len), DMA_TO_DEVICE); 2178 2179 /* unmap remaining mapped pages */ 2180 for (i = 0; i < last_frag; i++) { 2181 ena_buf++; 2182 dma_unmap_page(tx_ring->dev, dma_unmap_addr(ena_buf, paddr), 2183 dma_unmap_len(ena_buf, len), DMA_TO_DEVICE); 2184 } 2185 } 2186 2187 error_drop_packet: 2188 2189 dev_kfree_skb(skb); 2190 return NETDEV_TX_OK; 2191 } 2192 2193 static u16 ena_select_queue(struct net_device *dev, struct sk_buff *skb, 2194 struct net_device *sb_dev, 2195 select_queue_fallback_t fallback) 2196 { 2197 u16 qid; 2198 /* we suspect that this is good for in--kernel network services that 2199 * want to loop incoming skb rx to tx in normal user generated traffic, 2200 * most probably we will not get to this 2201 */ 2202 if (skb_rx_queue_recorded(skb)) 2203 qid = skb_get_rx_queue(skb); 2204 else 2205 qid = fallback(dev, skb, NULL); 2206 2207 return qid; 2208 } 2209 2210 static void ena_config_host_info(struct ena_com_dev *ena_dev) 2211 { 2212 struct ena_admin_host_info *host_info; 2213 int rc; 2214 2215 /* Allocate only the host info */ 2216 rc = ena_com_allocate_host_info(ena_dev); 2217 if (rc) { 2218 pr_err("Cannot allocate host info\n"); 2219 return; 2220 } 2221 2222 host_info = ena_dev->host_attr.host_info; 2223 2224 host_info->os_type = ENA_ADMIN_OS_LINUX; 2225 host_info->kernel_ver = LINUX_VERSION_CODE; 2226 strncpy(host_info->kernel_ver_str, utsname()->version, 2227 sizeof(host_info->kernel_ver_str) - 1); 2228 host_info->os_dist = 0; 2229 strncpy(host_info->os_dist_str, utsname()->release, 2230 sizeof(host_info->os_dist_str) - 1); 2231 host_info->driver_version = 2232 (DRV_MODULE_VER_MAJOR) | 2233 (DRV_MODULE_VER_MINOR << ENA_ADMIN_HOST_INFO_MINOR_SHIFT) | 2234 (DRV_MODULE_VER_SUBMINOR << ENA_ADMIN_HOST_INFO_SUB_MINOR_SHIFT); 2235 2236 rc = ena_com_set_host_attributes(ena_dev); 2237 if (rc) { 2238 if (rc == -EOPNOTSUPP) 2239 pr_warn("Cannot set host attributes\n"); 2240 else 2241 pr_err("Cannot set host attributes\n"); 2242 2243 goto err; 2244 } 2245 2246 return; 2247 2248 err: 2249 ena_com_delete_host_info(ena_dev); 2250 } 2251 2252 static void ena_config_debug_area(struct ena_adapter *adapter) 2253 { 2254 u32 debug_area_size; 2255 int rc, ss_count; 2256 2257 ss_count = ena_get_sset_count(adapter->netdev, ETH_SS_STATS); 2258 if (ss_count <= 0) { 2259 netif_err(adapter, drv, adapter->netdev, 2260 "SS count is negative\n"); 2261 return; 2262 } 2263 2264 /* allocate 32 bytes for each string and 64bit for the value */ 2265 debug_area_size = ss_count * ETH_GSTRING_LEN + sizeof(u64) * ss_count; 2266 2267 rc = ena_com_allocate_debug_area(adapter->ena_dev, debug_area_size); 2268 if (rc) { 2269 pr_err("Cannot allocate debug area\n"); 2270 return; 2271 } 2272 2273 rc = ena_com_set_host_attributes(adapter->ena_dev); 2274 if (rc) { 2275 if (rc == -EOPNOTSUPP) 2276 netif_warn(adapter, drv, adapter->netdev, 2277 "Cannot set host attributes\n"); 2278 else 2279 netif_err(adapter, drv, adapter->netdev, 2280 "Cannot set host attributes\n"); 2281 goto err; 2282 } 2283 2284 return; 2285 err: 2286 ena_com_delete_debug_area(adapter->ena_dev); 2287 } 2288 2289 static void ena_get_stats64(struct net_device *netdev, 2290 struct rtnl_link_stats64 *stats) 2291 { 2292 struct ena_adapter *adapter = netdev_priv(netdev); 2293 struct ena_ring *rx_ring, *tx_ring; 2294 unsigned int start; 2295 u64 rx_drops; 2296 int i; 2297 2298 if (!test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) 2299 return; 2300 2301 for (i = 0; i < adapter->num_queues; i++) { 2302 u64 bytes, packets; 2303 2304 tx_ring = &adapter->tx_ring[i]; 2305 2306 do { 2307 start = u64_stats_fetch_begin_irq(&tx_ring->syncp); 2308 packets = tx_ring->tx_stats.cnt; 2309 bytes = tx_ring->tx_stats.bytes; 2310 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start)); 2311 2312 stats->tx_packets += packets; 2313 stats->tx_bytes += bytes; 2314 2315 rx_ring = &adapter->rx_ring[i]; 2316 2317 do { 2318 start = u64_stats_fetch_begin_irq(&rx_ring->syncp); 2319 packets = rx_ring->rx_stats.cnt; 2320 bytes = rx_ring->rx_stats.bytes; 2321 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start)); 2322 2323 stats->rx_packets += packets; 2324 stats->rx_bytes += bytes; 2325 } 2326 2327 do { 2328 start = u64_stats_fetch_begin_irq(&adapter->syncp); 2329 rx_drops = adapter->dev_stats.rx_drops; 2330 } while (u64_stats_fetch_retry_irq(&adapter->syncp, start)); 2331 2332 stats->rx_dropped = rx_drops; 2333 2334 stats->multicast = 0; 2335 stats->collisions = 0; 2336 2337 stats->rx_length_errors = 0; 2338 stats->rx_crc_errors = 0; 2339 stats->rx_frame_errors = 0; 2340 stats->rx_fifo_errors = 0; 2341 stats->rx_missed_errors = 0; 2342 stats->tx_window_errors = 0; 2343 2344 stats->rx_errors = 0; 2345 stats->tx_errors = 0; 2346 } 2347 2348 static const struct net_device_ops ena_netdev_ops = { 2349 .ndo_open = ena_open, 2350 .ndo_stop = ena_close, 2351 .ndo_start_xmit = ena_start_xmit, 2352 .ndo_select_queue = ena_select_queue, 2353 .ndo_get_stats64 = ena_get_stats64, 2354 .ndo_tx_timeout = ena_tx_timeout, 2355 .ndo_change_mtu = ena_change_mtu, 2356 .ndo_set_mac_address = NULL, 2357 .ndo_validate_addr = eth_validate_addr, 2358 }; 2359 2360 static int ena_device_validate_params(struct ena_adapter *adapter, 2361 struct ena_com_dev_get_features_ctx *get_feat_ctx) 2362 { 2363 struct net_device *netdev = adapter->netdev; 2364 int rc; 2365 2366 rc = ether_addr_equal(get_feat_ctx->dev_attr.mac_addr, 2367 adapter->mac_addr); 2368 if (!rc) { 2369 netif_err(adapter, drv, netdev, 2370 "Error, mac address are different\n"); 2371 return -EINVAL; 2372 } 2373 2374 if ((get_feat_ctx->max_queues.max_cq_num < adapter->num_queues) || 2375 (get_feat_ctx->max_queues.max_sq_num < adapter->num_queues)) { 2376 netif_err(adapter, drv, netdev, 2377 "Error, device doesn't support enough queues\n"); 2378 return -EINVAL; 2379 } 2380 2381 if (get_feat_ctx->dev_attr.max_mtu < netdev->mtu) { 2382 netif_err(adapter, drv, netdev, 2383 "Error, device max mtu is smaller than netdev MTU\n"); 2384 return -EINVAL; 2385 } 2386 2387 return 0; 2388 } 2389 2390 static int ena_device_init(struct ena_com_dev *ena_dev, struct pci_dev *pdev, 2391 struct ena_com_dev_get_features_ctx *get_feat_ctx, 2392 bool *wd_state) 2393 { 2394 struct device *dev = &pdev->dev; 2395 bool readless_supported; 2396 u32 aenq_groups; 2397 int dma_width; 2398 int rc; 2399 2400 rc = ena_com_mmio_reg_read_request_init(ena_dev); 2401 if (rc) { 2402 dev_err(dev, "failed to init mmio read less\n"); 2403 return rc; 2404 } 2405 2406 /* The PCIe configuration space revision id indicate if mmio reg 2407 * read is disabled 2408 */ 2409 readless_supported = !(pdev->revision & ENA_MMIO_DISABLE_REG_READ); 2410 ena_com_set_mmio_read_mode(ena_dev, readless_supported); 2411 2412 rc = ena_com_dev_reset(ena_dev, ENA_REGS_RESET_NORMAL); 2413 if (rc) { 2414 dev_err(dev, "Can not reset device\n"); 2415 goto err_mmio_read_less; 2416 } 2417 2418 rc = ena_com_validate_version(ena_dev); 2419 if (rc) { 2420 dev_err(dev, "device version is too low\n"); 2421 goto err_mmio_read_less; 2422 } 2423 2424 dma_width = ena_com_get_dma_width(ena_dev); 2425 if (dma_width < 0) { 2426 dev_err(dev, "Invalid dma width value %d", dma_width); 2427 rc = dma_width; 2428 goto err_mmio_read_less; 2429 } 2430 2431 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(dma_width)); 2432 if (rc) { 2433 dev_err(dev, "pci_set_dma_mask failed 0x%x\n", rc); 2434 goto err_mmio_read_less; 2435 } 2436 2437 rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(dma_width)); 2438 if (rc) { 2439 dev_err(dev, "err_pci_set_consistent_dma_mask failed 0x%x\n", 2440 rc); 2441 goto err_mmio_read_less; 2442 } 2443 2444 /* ENA admin level init */ 2445 rc = ena_com_admin_init(ena_dev, &aenq_handlers, true); 2446 if (rc) { 2447 dev_err(dev, 2448 "Can not initialize ena admin queue with device\n"); 2449 goto err_mmio_read_less; 2450 } 2451 2452 /* To enable the msix interrupts the driver needs to know the number 2453 * of queues. So the driver uses polling mode to retrieve this 2454 * information 2455 */ 2456 ena_com_set_admin_polling_mode(ena_dev, true); 2457 2458 ena_config_host_info(ena_dev); 2459 2460 /* Get Device Attributes*/ 2461 rc = ena_com_get_dev_attr_feat(ena_dev, get_feat_ctx); 2462 if (rc) { 2463 dev_err(dev, "Cannot get attribute for ena device rc=%d\n", rc); 2464 goto err_admin_init; 2465 } 2466 2467 /* Try to turn all the available aenq groups */ 2468 aenq_groups = BIT(ENA_ADMIN_LINK_CHANGE) | 2469 BIT(ENA_ADMIN_FATAL_ERROR) | 2470 BIT(ENA_ADMIN_WARNING) | 2471 BIT(ENA_ADMIN_NOTIFICATION) | 2472 BIT(ENA_ADMIN_KEEP_ALIVE); 2473 2474 aenq_groups &= get_feat_ctx->aenq.supported_groups; 2475 2476 rc = ena_com_set_aenq_config(ena_dev, aenq_groups); 2477 if (rc) { 2478 dev_err(dev, "Cannot configure aenq groups rc= %d\n", rc); 2479 goto err_admin_init; 2480 } 2481 2482 *wd_state = !!(aenq_groups & BIT(ENA_ADMIN_KEEP_ALIVE)); 2483 2484 return 0; 2485 2486 err_admin_init: 2487 ena_com_delete_host_info(ena_dev); 2488 ena_com_admin_destroy(ena_dev); 2489 err_mmio_read_less: 2490 ena_com_mmio_reg_read_request_destroy(ena_dev); 2491 2492 return rc; 2493 } 2494 2495 static int ena_enable_msix_and_set_admin_interrupts(struct ena_adapter *adapter, 2496 int io_vectors) 2497 { 2498 struct ena_com_dev *ena_dev = adapter->ena_dev; 2499 struct device *dev = &adapter->pdev->dev; 2500 int rc; 2501 2502 rc = ena_enable_msix(adapter, io_vectors); 2503 if (rc) { 2504 dev_err(dev, "Can not reserve msix vectors\n"); 2505 return rc; 2506 } 2507 2508 ena_setup_mgmnt_intr(adapter); 2509 2510 rc = ena_request_mgmnt_irq(adapter); 2511 if (rc) { 2512 dev_err(dev, "Can not setup management interrupts\n"); 2513 goto err_disable_msix; 2514 } 2515 2516 ena_com_set_admin_polling_mode(ena_dev, false); 2517 2518 ena_com_admin_aenq_enable(ena_dev); 2519 2520 return 0; 2521 2522 err_disable_msix: 2523 ena_disable_msix(adapter); 2524 2525 return rc; 2526 } 2527 2528 static void ena_destroy_device(struct ena_adapter *adapter, bool graceful) 2529 { 2530 struct net_device *netdev = adapter->netdev; 2531 struct ena_com_dev *ena_dev = adapter->ena_dev; 2532 bool dev_up; 2533 2534 if (!test_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags)) 2535 return; 2536 2537 netif_carrier_off(netdev); 2538 2539 del_timer_sync(&adapter->timer_service); 2540 2541 dev_up = test_bit(ENA_FLAG_DEV_UP, &adapter->flags); 2542 adapter->dev_up_before_reset = dev_up; 2543 2544 if (!graceful) 2545 ena_com_set_admin_running_state(ena_dev, false); 2546 2547 if (test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) 2548 ena_down(adapter); 2549 2550 /* Before releasing the ENA resources, a device reset is required. 2551 * (to prevent the device from accessing them). 2552 * In case the reset flag is set and the device is up, ena_down() 2553 * already perform the reset, so it can be skipped. 2554 */ 2555 if (!(test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags) && dev_up)) 2556 ena_com_dev_reset(adapter->ena_dev, adapter->reset_reason); 2557 2558 ena_free_mgmnt_irq(adapter); 2559 2560 ena_disable_msix(adapter); 2561 2562 ena_com_abort_admin_commands(ena_dev); 2563 2564 ena_com_wait_for_abort_completion(ena_dev); 2565 2566 ena_com_admin_destroy(ena_dev); 2567 2568 ena_com_mmio_reg_read_request_destroy(ena_dev); 2569 2570 adapter->reset_reason = ENA_REGS_RESET_NORMAL; 2571 2572 clear_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 2573 clear_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags); 2574 } 2575 2576 static int ena_restore_device(struct ena_adapter *adapter) 2577 { 2578 struct ena_com_dev_get_features_ctx get_feat_ctx; 2579 struct ena_com_dev *ena_dev = adapter->ena_dev; 2580 struct pci_dev *pdev = adapter->pdev; 2581 bool wd_state; 2582 int rc; 2583 2584 set_bit(ENA_FLAG_ONGOING_RESET, &adapter->flags); 2585 rc = ena_device_init(ena_dev, adapter->pdev, &get_feat_ctx, &wd_state); 2586 if (rc) { 2587 dev_err(&pdev->dev, "Can not initialize device\n"); 2588 goto err; 2589 } 2590 adapter->wd_state = wd_state; 2591 2592 rc = ena_device_validate_params(adapter, &get_feat_ctx); 2593 if (rc) { 2594 dev_err(&pdev->dev, "Validation of device parameters failed\n"); 2595 goto err_device_destroy; 2596 } 2597 2598 clear_bit(ENA_FLAG_ONGOING_RESET, &adapter->flags); 2599 /* Make sure we don't have a race with AENQ Links state handler */ 2600 if (test_bit(ENA_FLAG_LINK_UP, &adapter->flags)) 2601 netif_carrier_on(adapter->netdev); 2602 2603 rc = ena_enable_msix_and_set_admin_interrupts(adapter, 2604 adapter->num_queues); 2605 if (rc) { 2606 dev_err(&pdev->dev, "Enable MSI-X failed\n"); 2607 goto err_device_destroy; 2608 } 2609 /* If the interface was up before the reset bring it up */ 2610 if (adapter->dev_up_before_reset) { 2611 rc = ena_up(adapter); 2612 if (rc) { 2613 dev_err(&pdev->dev, "Failed to create I/O queues\n"); 2614 goto err_disable_msix; 2615 } 2616 } 2617 2618 set_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags); 2619 mod_timer(&adapter->timer_service, round_jiffies(jiffies + HZ)); 2620 dev_err(&pdev->dev, "Device reset completed successfully\n"); 2621 2622 return rc; 2623 err_disable_msix: 2624 ena_free_mgmnt_irq(adapter); 2625 ena_disable_msix(adapter); 2626 err_device_destroy: 2627 ena_com_abort_admin_commands(ena_dev); 2628 ena_com_wait_for_abort_completion(ena_dev); 2629 ena_com_admin_destroy(ena_dev); 2630 ena_com_mmio_reg_read_request_destroy(ena_dev); 2631 ena_com_dev_reset(ena_dev, ENA_REGS_RESET_DRIVER_INVALID_STATE); 2632 err: 2633 clear_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags); 2634 clear_bit(ENA_FLAG_ONGOING_RESET, &adapter->flags); 2635 dev_err(&pdev->dev, 2636 "Reset attempt failed. Can not reset the device\n"); 2637 2638 return rc; 2639 } 2640 2641 static void ena_fw_reset_device(struct work_struct *work) 2642 { 2643 struct ena_adapter *adapter = 2644 container_of(work, struct ena_adapter, reset_task); 2645 struct pci_dev *pdev = adapter->pdev; 2646 2647 if (unlikely(!test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags))) { 2648 dev_err(&pdev->dev, 2649 "device reset schedule while reset bit is off\n"); 2650 return; 2651 } 2652 rtnl_lock(); 2653 ena_destroy_device(adapter, false); 2654 ena_restore_device(adapter); 2655 rtnl_unlock(); 2656 } 2657 2658 static int check_for_rx_interrupt_queue(struct ena_adapter *adapter, 2659 struct ena_ring *rx_ring) 2660 { 2661 if (likely(rx_ring->first_interrupt)) 2662 return 0; 2663 2664 if (ena_com_cq_empty(rx_ring->ena_com_io_cq)) 2665 return 0; 2666 2667 rx_ring->no_interrupt_event_cnt++; 2668 2669 if (rx_ring->no_interrupt_event_cnt == ENA_MAX_NO_INTERRUPT_ITERATIONS) { 2670 netif_err(adapter, rx_err, adapter->netdev, 2671 "Potential MSIX issue on Rx side Queue = %d. Reset the device\n", 2672 rx_ring->qid); 2673 adapter->reset_reason = ENA_REGS_RESET_MISS_INTERRUPT; 2674 smp_mb__before_atomic(); 2675 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 2676 return -EIO; 2677 } 2678 2679 return 0; 2680 } 2681 2682 static int check_missing_comp_in_tx_queue(struct ena_adapter *adapter, 2683 struct ena_ring *tx_ring) 2684 { 2685 struct ena_tx_buffer *tx_buf; 2686 unsigned long last_jiffies; 2687 u32 missed_tx = 0; 2688 int i, rc = 0; 2689 2690 for (i = 0; i < tx_ring->ring_size; i++) { 2691 tx_buf = &tx_ring->tx_buffer_info[i]; 2692 last_jiffies = tx_buf->last_jiffies; 2693 2694 if (last_jiffies == 0) 2695 /* no pending Tx at this location */ 2696 continue; 2697 2698 if (unlikely(!tx_ring->first_interrupt && time_is_before_jiffies(last_jiffies + 2699 2 * adapter->missing_tx_completion_to))) { 2700 /* If after graceful period interrupt is still not 2701 * received, we schedule a reset 2702 */ 2703 netif_err(adapter, tx_err, adapter->netdev, 2704 "Potential MSIX issue on Tx side Queue = %d. Reset the device\n", 2705 tx_ring->qid); 2706 adapter->reset_reason = ENA_REGS_RESET_MISS_INTERRUPT; 2707 smp_mb__before_atomic(); 2708 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 2709 return -EIO; 2710 } 2711 2712 if (unlikely(time_is_before_jiffies(last_jiffies + 2713 adapter->missing_tx_completion_to))) { 2714 if (!tx_buf->print_once) 2715 netif_notice(adapter, tx_err, adapter->netdev, 2716 "Found a Tx that wasn't completed on time, qid %d, index %d.\n", 2717 tx_ring->qid, i); 2718 2719 tx_buf->print_once = 1; 2720 missed_tx++; 2721 } 2722 } 2723 2724 if (unlikely(missed_tx > adapter->missing_tx_completion_threshold)) { 2725 netif_err(adapter, tx_err, adapter->netdev, 2726 "The number of lost tx completions is above the threshold (%d > %d). Reset the device\n", 2727 missed_tx, 2728 adapter->missing_tx_completion_threshold); 2729 adapter->reset_reason = 2730 ENA_REGS_RESET_MISS_TX_CMPL; 2731 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 2732 rc = -EIO; 2733 } 2734 2735 u64_stats_update_begin(&tx_ring->syncp); 2736 tx_ring->tx_stats.missed_tx = missed_tx; 2737 u64_stats_update_end(&tx_ring->syncp); 2738 2739 return rc; 2740 } 2741 2742 static void check_for_missing_completions(struct ena_adapter *adapter) 2743 { 2744 struct ena_ring *tx_ring; 2745 struct ena_ring *rx_ring; 2746 int i, budget, rc; 2747 2748 /* Make sure the driver doesn't turn the device in other process */ 2749 smp_rmb(); 2750 2751 if (!test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) 2752 return; 2753 2754 if (test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) 2755 return; 2756 2757 if (adapter->missing_tx_completion_to == ENA_HW_HINTS_NO_TIMEOUT) 2758 return; 2759 2760 budget = ENA_MONITORED_TX_QUEUES; 2761 2762 for (i = adapter->last_monitored_tx_qid; i < adapter->num_queues; i++) { 2763 tx_ring = &adapter->tx_ring[i]; 2764 rx_ring = &adapter->rx_ring[i]; 2765 2766 rc = check_missing_comp_in_tx_queue(adapter, tx_ring); 2767 if (unlikely(rc)) 2768 return; 2769 2770 rc = check_for_rx_interrupt_queue(adapter, rx_ring); 2771 if (unlikely(rc)) 2772 return; 2773 2774 budget--; 2775 if (!budget) 2776 break; 2777 } 2778 2779 adapter->last_monitored_tx_qid = i % adapter->num_queues; 2780 } 2781 2782 /* trigger napi schedule after 2 consecutive detections */ 2783 #define EMPTY_RX_REFILL 2 2784 /* For the rare case where the device runs out of Rx descriptors and the 2785 * napi handler failed to refill new Rx descriptors (due to a lack of memory 2786 * for example). 2787 * This case will lead to a deadlock: 2788 * The device won't send interrupts since all the new Rx packets will be dropped 2789 * The napi handler won't allocate new Rx descriptors so the device will be 2790 * able to send new packets. 2791 * 2792 * This scenario can happen when the kernel's vm.min_free_kbytes is too small. 2793 * It is recommended to have at least 512MB, with a minimum of 128MB for 2794 * constrained environment). 2795 * 2796 * When such a situation is detected - Reschedule napi 2797 */ 2798 static void check_for_empty_rx_ring(struct ena_adapter *adapter) 2799 { 2800 struct ena_ring *rx_ring; 2801 int i, refill_required; 2802 2803 if (!test_bit(ENA_FLAG_DEV_UP, &adapter->flags)) 2804 return; 2805 2806 if (test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags)) 2807 return; 2808 2809 for (i = 0; i < adapter->num_queues; i++) { 2810 rx_ring = &adapter->rx_ring[i]; 2811 2812 refill_required = 2813 ena_com_sq_empty_space(rx_ring->ena_com_io_sq); 2814 if (unlikely(refill_required == (rx_ring->ring_size - 1))) { 2815 rx_ring->empty_rx_queue++; 2816 2817 if (rx_ring->empty_rx_queue >= EMPTY_RX_REFILL) { 2818 u64_stats_update_begin(&rx_ring->syncp); 2819 rx_ring->rx_stats.empty_rx_ring++; 2820 u64_stats_update_end(&rx_ring->syncp); 2821 2822 netif_err(adapter, drv, adapter->netdev, 2823 "trigger refill for ring %d\n", i); 2824 2825 napi_schedule(rx_ring->napi); 2826 rx_ring->empty_rx_queue = 0; 2827 } 2828 } else { 2829 rx_ring->empty_rx_queue = 0; 2830 } 2831 } 2832 } 2833 2834 /* Check for keep alive expiration */ 2835 static void check_for_missing_keep_alive(struct ena_adapter *adapter) 2836 { 2837 unsigned long keep_alive_expired; 2838 2839 if (!adapter->wd_state) 2840 return; 2841 2842 if (adapter->keep_alive_timeout == ENA_HW_HINTS_NO_TIMEOUT) 2843 return; 2844 2845 keep_alive_expired = round_jiffies(adapter->last_keep_alive_jiffies + 2846 adapter->keep_alive_timeout); 2847 if (unlikely(time_is_before_jiffies(keep_alive_expired))) { 2848 netif_err(adapter, drv, adapter->netdev, 2849 "Keep alive watchdog timeout.\n"); 2850 u64_stats_update_begin(&adapter->syncp); 2851 adapter->dev_stats.wd_expired++; 2852 u64_stats_update_end(&adapter->syncp); 2853 adapter->reset_reason = ENA_REGS_RESET_KEEP_ALIVE_TO; 2854 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 2855 } 2856 } 2857 2858 static void check_for_admin_com_state(struct ena_adapter *adapter) 2859 { 2860 if (unlikely(!ena_com_get_admin_running_state(adapter->ena_dev))) { 2861 netif_err(adapter, drv, adapter->netdev, 2862 "ENA admin queue is not in running state!\n"); 2863 u64_stats_update_begin(&adapter->syncp); 2864 adapter->dev_stats.admin_q_pause++; 2865 u64_stats_update_end(&adapter->syncp); 2866 adapter->reset_reason = ENA_REGS_RESET_ADMIN_TO; 2867 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 2868 } 2869 } 2870 2871 static void ena_update_hints(struct ena_adapter *adapter, 2872 struct ena_admin_ena_hw_hints *hints) 2873 { 2874 struct net_device *netdev = adapter->netdev; 2875 2876 if (hints->admin_completion_tx_timeout) 2877 adapter->ena_dev->admin_queue.completion_timeout = 2878 hints->admin_completion_tx_timeout * 1000; 2879 2880 if (hints->mmio_read_timeout) 2881 /* convert to usec */ 2882 adapter->ena_dev->mmio_read.reg_read_to = 2883 hints->mmio_read_timeout * 1000; 2884 2885 if (hints->missed_tx_completion_count_threshold_to_reset) 2886 adapter->missing_tx_completion_threshold = 2887 hints->missed_tx_completion_count_threshold_to_reset; 2888 2889 if (hints->missing_tx_completion_timeout) { 2890 if (hints->missing_tx_completion_timeout == ENA_HW_HINTS_NO_TIMEOUT) 2891 adapter->missing_tx_completion_to = ENA_HW_HINTS_NO_TIMEOUT; 2892 else 2893 adapter->missing_tx_completion_to = 2894 msecs_to_jiffies(hints->missing_tx_completion_timeout); 2895 } 2896 2897 if (hints->netdev_wd_timeout) 2898 netdev->watchdog_timeo = msecs_to_jiffies(hints->netdev_wd_timeout); 2899 2900 if (hints->driver_watchdog_timeout) { 2901 if (hints->driver_watchdog_timeout == ENA_HW_HINTS_NO_TIMEOUT) 2902 adapter->keep_alive_timeout = ENA_HW_HINTS_NO_TIMEOUT; 2903 else 2904 adapter->keep_alive_timeout = 2905 msecs_to_jiffies(hints->driver_watchdog_timeout); 2906 } 2907 } 2908 2909 static void ena_update_host_info(struct ena_admin_host_info *host_info, 2910 struct net_device *netdev) 2911 { 2912 host_info->supported_network_features[0] = 2913 netdev->features & GENMASK_ULL(31, 0); 2914 host_info->supported_network_features[1] = 2915 (netdev->features & GENMASK_ULL(63, 32)) >> 32; 2916 } 2917 2918 static void ena_timer_service(struct timer_list *t) 2919 { 2920 struct ena_adapter *adapter = from_timer(adapter, t, timer_service); 2921 u8 *debug_area = adapter->ena_dev->host_attr.debug_area_virt_addr; 2922 struct ena_admin_host_info *host_info = 2923 adapter->ena_dev->host_attr.host_info; 2924 2925 check_for_missing_keep_alive(adapter); 2926 2927 check_for_admin_com_state(adapter); 2928 2929 check_for_missing_completions(adapter); 2930 2931 check_for_empty_rx_ring(adapter); 2932 2933 if (debug_area) 2934 ena_dump_stats_to_buf(adapter, debug_area); 2935 2936 if (host_info) 2937 ena_update_host_info(host_info, adapter->netdev); 2938 2939 if (unlikely(test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags))) { 2940 netif_err(adapter, drv, adapter->netdev, 2941 "Trigger reset is on\n"); 2942 ena_dump_stats_to_dmesg(adapter); 2943 queue_work(ena_wq, &adapter->reset_task); 2944 return; 2945 } 2946 2947 /* Reset the timer */ 2948 mod_timer(&adapter->timer_service, jiffies + HZ); 2949 } 2950 2951 static int ena_calc_io_queue_num(struct pci_dev *pdev, 2952 struct ena_com_dev *ena_dev, 2953 struct ena_com_dev_get_features_ctx *get_feat_ctx) 2954 { 2955 int io_sq_num, io_queue_num; 2956 2957 /* In case of LLQ use the llq number in the get feature cmd */ 2958 if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { 2959 io_sq_num = get_feat_ctx->max_queues.max_llq_num; 2960 2961 if (io_sq_num == 0) { 2962 dev_err(&pdev->dev, 2963 "Trying to use LLQ but llq_num is 0. Fall back into regular queues\n"); 2964 2965 ena_dev->tx_mem_queue_type = 2966 ENA_ADMIN_PLACEMENT_POLICY_HOST; 2967 io_sq_num = get_feat_ctx->max_queues.max_sq_num; 2968 } 2969 } else { 2970 io_sq_num = get_feat_ctx->max_queues.max_sq_num; 2971 } 2972 2973 io_queue_num = min_t(int, num_online_cpus(), ENA_MAX_NUM_IO_QUEUES); 2974 io_queue_num = min_t(int, io_queue_num, io_sq_num); 2975 io_queue_num = min_t(int, io_queue_num, 2976 get_feat_ctx->max_queues.max_cq_num); 2977 /* 1 IRQ for for mgmnt and 1 IRQs for each IO direction */ 2978 io_queue_num = min_t(int, io_queue_num, pci_msix_vec_count(pdev) - 1); 2979 if (unlikely(!io_queue_num)) { 2980 dev_err(&pdev->dev, "The device doesn't have io queues\n"); 2981 return -EFAULT; 2982 } 2983 2984 return io_queue_num; 2985 } 2986 2987 static void ena_set_push_mode(struct pci_dev *pdev, struct ena_com_dev *ena_dev, 2988 struct ena_com_dev_get_features_ctx *get_feat_ctx) 2989 { 2990 bool has_mem_bar; 2991 2992 has_mem_bar = pci_select_bars(pdev, IORESOURCE_MEM) & BIT(ENA_MEM_BAR); 2993 2994 /* Enable push mode if device supports LLQ */ 2995 if (has_mem_bar && (get_feat_ctx->max_queues.max_llq_num > 0)) 2996 ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_DEV; 2997 else 2998 ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST; 2999 } 3000 3001 static void ena_set_dev_offloads(struct ena_com_dev_get_features_ctx *feat, 3002 struct net_device *netdev) 3003 { 3004 netdev_features_t dev_features = 0; 3005 3006 /* Set offload features */ 3007 if (feat->offload.tx & 3008 ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_PART_MASK) 3009 dev_features |= NETIF_F_IP_CSUM; 3010 3011 if (feat->offload.tx & 3012 ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV6_CSUM_PART_MASK) 3013 dev_features |= NETIF_F_IPV6_CSUM; 3014 3015 if (feat->offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK) 3016 dev_features |= NETIF_F_TSO; 3017 3018 if (feat->offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV6_MASK) 3019 dev_features |= NETIF_F_TSO6; 3020 3021 if (feat->offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_ECN_MASK) 3022 dev_features |= NETIF_F_TSO_ECN; 3023 3024 if (feat->offload.rx_supported & 3025 ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV4_CSUM_MASK) 3026 dev_features |= NETIF_F_RXCSUM; 3027 3028 if (feat->offload.rx_supported & 3029 ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV6_CSUM_MASK) 3030 dev_features |= NETIF_F_RXCSUM; 3031 3032 netdev->features = 3033 dev_features | 3034 NETIF_F_SG | 3035 NETIF_F_RXHASH | 3036 NETIF_F_HIGHDMA; 3037 3038 netdev->hw_features |= netdev->features; 3039 netdev->vlan_features |= netdev->features; 3040 } 3041 3042 static void ena_set_conf_feat_params(struct ena_adapter *adapter, 3043 struct ena_com_dev_get_features_ctx *feat) 3044 { 3045 struct net_device *netdev = adapter->netdev; 3046 3047 /* Copy mac address */ 3048 if (!is_valid_ether_addr(feat->dev_attr.mac_addr)) { 3049 eth_hw_addr_random(netdev); 3050 ether_addr_copy(adapter->mac_addr, netdev->dev_addr); 3051 } else { 3052 ether_addr_copy(adapter->mac_addr, feat->dev_attr.mac_addr); 3053 ether_addr_copy(netdev->dev_addr, adapter->mac_addr); 3054 } 3055 3056 /* Set offload features */ 3057 ena_set_dev_offloads(feat, netdev); 3058 3059 adapter->max_mtu = feat->dev_attr.max_mtu; 3060 netdev->max_mtu = adapter->max_mtu; 3061 netdev->min_mtu = ENA_MIN_MTU; 3062 } 3063 3064 static int ena_rss_init_default(struct ena_adapter *adapter) 3065 { 3066 struct ena_com_dev *ena_dev = adapter->ena_dev; 3067 struct device *dev = &adapter->pdev->dev; 3068 int rc, i; 3069 u32 val; 3070 3071 rc = ena_com_rss_init(ena_dev, ENA_RX_RSS_TABLE_LOG_SIZE); 3072 if (unlikely(rc)) { 3073 dev_err(dev, "Cannot init indirect table\n"); 3074 goto err_rss_init; 3075 } 3076 3077 for (i = 0; i < ENA_RX_RSS_TABLE_SIZE; i++) { 3078 val = ethtool_rxfh_indir_default(i, adapter->num_queues); 3079 rc = ena_com_indirect_table_fill_entry(ena_dev, i, 3080 ENA_IO_RXQ_IDX(val)); 3081 if (unlikely(rc && (rc != -EOPNOTSUPP))) { 3082 dev_err(dev, "Cannot fill indirect table\n"); 3083 goto err_fill_indir; 3084 } 3085 } 3086 3087 rc = ena_com_fill_hash_function(ena_dev, ENA_ADMIN_CRC32, NULL, 3088 ENA_HASH_KEY_SIZE, 0xFFFFFFFF); 3089 if (unlikely(rc && (rc != -EOPNOTSUPP))) { 3090 dev_err(dev, "Cannot fill hash function\n"); 3091 goto err_fill_indir; 3092 } 3093 3094 rc = ena_com_set_default_hash_ctrl(ena_dev); 3095 if (unlikely(rc && (rc != -EOPNOTSUPP))) { 3096 dev_err(dev, "Cannot fill hash control\n"); 3097 goto err_fill_indir; 3098 } 3099 3100 return 0; 3101 3102 err_fill_indir: 3103 ena_com_rss_destroy(ena_dev); 3104 err_rss_init: 3105 3106 return rc; 3107 } 3108 3109 static void ena_release_bars(struct ena_com_dev *ena_dev, struct pci_dev *pdev) 3110 { 3111 int release_bars = pci_select_bars(pdev, IORESOURCE_MEM) & ENA_BAR_MASK; 3112 3113 pci_release_selected_regions(pdev, release_bars); 3114 } 3115 3116 static int ena_calc_queue_size(struct pci_dev *pdev, 3117 struct ena_com_dev *ena_dev, 3118 u16 *max_tx_sgl_size, 3119 u16 *max_rx_sgl_size, 3120 struct ena_com_dev_get_features_ctx *get_feat_ctx) 3121 { 3122 u32 queue_size = ENA_DEFAULT_RING_SIZE; 3123 3124 queue_size = min_t(u32, queue_size, 3125 get_feat_ctx->max_queues.max_cq_depth); 3126 queue_size = min_t(u32, queue_size, 3127 get_feat_ctx->max_queues.max_sq_depth); 3128 3129 if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) 3130 queue_size = min_t(u32, queue_size, 3131 get_feat_ctx->max_queues.max_llq_depth); 3132 3133 queue_size = rounddown_pow_of_two(queue_size); 3134 3135 if (unlikely(!queue_size)) { 3136 dev_err(&pdev->dev, "Invalid queue size\n"); 3137 return -EFAULT; 3138 } 3139 3140 *max_tx_sgl_size = min_t(u16, ENA_PKT_MAX_BUFS, 3141 get_feat_ctx->max_queues.max_packet_tx_descs); 3142 *max_rx_sgl_size = min_t(u16, ENA_PKT_MAX_BUFS, 3143 get_feat_ctx->max_queues.max_packet_rx_descs); 3144 3145 return queue_size; 3146 } 3147 3148 /* ena_probe - Device Initialization Routine 3149 * @pdev: PCI device information struct 3150 * @ent: entry in ena_pci_tbl 3151 * 3152 * Returns 0 on success, negative on failure 3153 * 3154 * ena_probe initializes an adapter identified by a pci_dev structure. 3155 * The OS initialization, configuring of the adapter private structure, 3156 * and a hardware reset occur. 3157 */ 3158 static int ena_probe(struct pci_dev *pdev, const struct pci_device_id *ent) 3159 { 3160 struct ena_com_dev_get_features_ctx get_feat_ctx; 3161 static int version_printed; 3162 struct net_device *netdev; 3163 struct ena_adapter *adapter; 3164 struct ena_com_dev *ena_dev = NULL; 3165 static int adapters_found; 3166 int io_queue_num, bars, rc; 3167 int queue_size; 3168 u16 tx_sgl_size = 0; 3169 u16 rx_sgl_size = 0; 3170 bool wd_state; 3171 3172 dev_dbg(&pdev->dev, "%s\n", __func__); 3173 3174 if (version_printed++ == 0) 3175 dev_info(&pdev->dev, "%s", version); 3176 3177 rc = pci_enable_device_mem(pdev); 3178 if (rc) { 3179 dev_err(&pdev->dev, "pci_enable_device_mem() failed!\n"); 3180 return rc; 3181 } 3182 3183 pci_set_master(pdev); 3184 3185 ena_dev = vzalloc(sizeof(*ena_dev)); 3186 if (!ena_dev) { 3187 rc = -ENOMEM; 3188 goto err_disable_device; 3189 } 3190 3191 bars = pci_select_bars(pdev, IORESOURCE_MEM) & ENA_BAR_MASK; 3192 rc = pci_request_selected_regions(pdev, bars, DRV_MODULE_NAME); 3193 if (rc) { 3194 dev_err(&pdev->dev, "pci_request_selected_regions failed %d\n", 3195 rc); 3196 goto err_free_ena_dev; 3197 } 3198 3199 ena_dev->reg_bar = devm_ioremap(&pdev->dev, 3200 pci_resource_start(pdev, ENA_REG_BAR), 3201 pci_resource_len(pdev, ENA_REG_BAR)); 3202 if (!ena_dev->reg_bar) { 3203 dev_err(&pdev->dev, "failed to remap regs bar\n"); 3204 rc = -EFAULT; 3205 goto err_free_region; 3206 } 3207 3208 ena_dev->dmadev = &pdev->dev; 3209 3210 rc = ena_device_init(ena_dev, pdev, &get_feat_ctx, &wd_state); 3211 if (rc) { 3212 dev_err(&pdev->dev, "ena device init failed\n"); 3213 if (rc == -ETIME) 3214 rc = -EPROBE_DEFER; 3215 goto err_free_region; 3216 } 3217 3218 ena_set_push_mode(pdev, ena_dev, &get_feat_ctx); 3219 3220 if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) { 3221 ena_dev->mem_bar = devm_ioremap_wc(&pdev->dev, 3222 pci_resource_start(pdev, ENA_MEM_BAR), 3223 pci_resource_len(pdev, ENA_MEM_BAR)); 3224 if (!ena_dev->mem_bar) { 3225 rc = -EFAULT; 3226 goto err_device_destroy; 3227 } 3228 } 3229 3230 /* initial Tx interrupt delay, Assumes 1 usec granularity. 3231 * Updated during device initialization with the real granularity 3232 */ 3233 ena_dev->intr_moder_tx_interval = ENA_INTR_INITIAL_TX_INTERVAL_USECS; 3234 io_queue_num = ena_calc_io_queue_num(pdev, ena_dev, &get_feat_ctx); 3235 queue_size = ena_calc_queue_size(pdev, ena_dev, &tx_sgl_size, 3236 &rx_sgl_size, &get_feat_ctx); 3237 if ((queue_size <= 0) || (io_queue_num <= 0)) { 3238 rc = -EFAULT; 3239 goto err_device_destroy; 3240 } 3241 3242 dev_info(&pdev->dev, "creating %d io queues. queue size: %d\n", 3243 io_queue_num, queue_size); 3244 3245 /* dev zeroed in init_etherdev */ 3246 netdev = alloc_etherdev_mq(sizeof(struct ena_adapter), io_queue_num); 3247 if (!netdev) { 3248 dev_err(&pdev->dev, "alloc_etherdev_mq failed\n"); 3249 rc = -ENOMEM; 3250 goto err_device_destroy; 3251 } 3252 3253 SET_NETDEV_DEV(netdev, &pdev->dev); 3254 3255 adapter = netdev_priv(netdev); 3256 pci_set_drvdata(pdev, adapter); 3257 3258 adapter->ena_dev = ena_dev; 3259 adapter->netdev = netdev; 3260 adapter->pdev = pdev; 3261 3262 ena_set_conf_feat_params(adapter, &get_feat_ctx); 3263 3264 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE); 3265 adapter->reset_reason = ENA_REGS_RESET_NORMAL; 3266 3267 adapter->tx_ring_size = queue_size; 3268 adapter->rx_ring_size = queue_size; 3269 3270 adapter->max_tx_sgl_size = tx_sgl_size; 3271 adapter->max_rx_sgl_size = rx_sgl_size; 3272 3273 adapter->num_queues = io_queue_num; 3274 adapter->last_monitored_tx_qid = 0; 3275 3276 adapter->rx_copybreak = ENA_DEFAULT_RX_COPYBREAK; 3277 adapter->wd_state = wd_state; 3278 3279 snprintf(adapter->name, ENA_NAME_MAX_LEN, "ena_%d", adapters_found); 3280 3281 rc = ena_com_init_interrupt_moderation(adapter->ena_dev); 3282 if (rc) { 3283 dev_err(&pdev->dev, 3284 "Failed to query interrupt moderation feature\n"); 3285 goto err_netdev_destroy; 3286 } 3287 ena_init_io_rings(adapter); 3288 3289 netdev->netdev_ops = &ena_netdev_ops; 3290 netdev->watchdog_timeo = TX_TIMEOUT; 3291 ena_set_ethtool_ops(netdev); 3292 3293 netdev->priv_flags |= IFF_UNICAST_FLT; 3294 3295 u64_stats_init(&adapter->syncp); 3296 3297 rc = ena_enable_msix_and_set_admin_interrupts(adapter, io_queue_num); 3298 if (rc) { 3299 dev_err(&pdev->dev, 3300 "Failed to enable and set the admin interrupts\n"); 3301 goto err_worker_destroy; 3302 } 3303 rc = ena_rss_init_default(adapter); 3304 if (rc && (rc != -EOPNOTSUPP)) { 3305 dev_err(&pdev->dev, "Cannot init RSS rc: %d\n", rc); 3306 goto err_free_msix; 3307 } 3308 3309 ena_config_debug_area(adapter); 3310 3311 memcpy(adapter->netdev->perm_addr, adapter->mac_addr, netdev->addr_len); 3312 3313 netif_carrier_off(netdev); 3314 3315 rc = register_netdev(netdev); 3316 if (rc) { 3317 dev_err(&pdev->dev, "Cannot register net device\n"); 3318 goto err_rss; 3319 } 3320 3321 INIT_WORK(&adapter->reset_task, ena_fw_reset_device); 3322 3323 adapter->last_keep_alive_jiffies = jiffies; 3324 adapter->keep_alive_timeout = ENA_DEVICE_KALIVE_TIMEOUT; 3325 adapter->missing_tx_completion_to = TX_TIMEOUT; 3326 adapter->missing_tx_completion_threshold = MAX_NUM_OF_TIMEOUTED_PACKETS; 3327 3328 ena_update_hints(adapter, &get_feat_ctx.hw_hints); 3329 3330 timer_setup(&adapter->timer_service, ena_timer_service, 0); 3331 mod_timer(&adapter->timer_service, round_jiffies(jiffies + HZ)); 3332 3333 dev_info(&pdev->dev, "%s found at mem %lx, mac addr %pM Queues %d\n", 3334 DEVICE_NAME, (long)pci_resource_start(pdev, 0), 3335 netdev->dev_addr, io_queue_num); 3336 3337 set_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags); 3338 3339 adapters_found++; 3340 3341 return 0; 3342 3343 err_rss: 3344 ena_com_delete_debug_area(ena_dev); 3345 ena_com_rss_destroy(ena_dev); 3346 err_free_msix: 3347 ena_com_dev_reset(ena_dev, ENA_REGS_RESET_INIT_ERR); 3348 ena_free_mgmnt_irq(adapter); 3349 ena_disable_msix(adapter); 3350 err_worker_destroy: 3351 ena_com_destroy_interrupt_moderation(ena_dev); 3352 del_timer(&adapter->timer_service); 3353 err_netdev_destroy: 3354 free_netdev(netdev); 3355 err_device_destroy: 3356 ena_com_delete_host_info(ena_dev); 3357 ena_com_admin_destroy(ena_dev); 3358 err_free_region: 3359 ena_release_bars(ena_dev, pdev); 3360 err_free_ena_dev: 3361 vfree(ena_dev); 3362 err_disable_device: 3363 pci_disable_device(pdev); 3364 return rc; 3365 } 3366 3367 /*****************************************************************************/ 3368 3369 /* ena_remove - Device Removal Routine 3370 * @pdev: PCI device information struct 3371 * 3372 * ena_remove is called by the PCI subsystem to alert the driver 3373 * that it should release a PCI device. 3374 */ 3375 static void ena_remove(struct pci_dev *pdev) 3376 { 3377 struct ena_adapter *adapter = pci_get_drvdata(pdev); 3378 struct ena_com_dev *ena_dev; 3379 struct net_device *netdev; 3380 3381 ena_dev = adapter->ena_dev; 3382 netdev = adapter->netdev; 3383 3384 #ifdef CONFIG_RFS_ACCEL 3385 if ((adapter->msix_vecs >= 1) && (netdev->rx_cpu_rmap)) { 3386 free_irq_cpu_rmap(netdev->rx_cpu_rmap); 3387 netdev->rx_cpu_rmap = NULL; 3388 } 3389 #endif /* CONFIG_RFS_ACCEL */ 3390 del_timer_sync(&adapter->timer_service); 3391 3392 cancel_work_sync(&adapter->reset_task); 3393 3394 unregister_netdev(netdev); 3395 3396 /* If the device is running then we want to make sure the device will be 3397 * reset to make sure no more events will be issued by the device. 3398 */ 3399 if (test_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags)) 3400 set_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 3401 3402 rtnl_lock(); 3403 ena_destroy_device(adapter, true); 3404 rtnl_unlock(); 3405 3406 free_netdev(netdev); 3407 3408 ena_com_rss_destroy(ena_dev); 3409 3410 ena_com_delete_debug_area(ena_dev); 3411 3412 ena_com_delete_host_info(ena_dev); 3413 3414 ena_release_bars(ena_dev, pdev); 3415 3416 pci_disable_device(pdev); 3417 3418 ena_com_destroy_interrupt_moderation(ena_dev); 3419 3420 vfree(ena_dev); 3421 } 3422 3423 #ifdef CONFIG_PM 3424 /* ena_suspend - PM suspend callback 3425 * @pdev: PCI device information struct 3426 * @state:power state 3427 */ 3428 static int ena_suspend(struct pci_dev *pdev, pm_message_t state) 3429 { 3430 struct ena_adapter *adapter = pci_get_drvdata(pdev); 3431 3432 u64_stats_update_begin(&adapter->syncp); 3433 adapter->dev_stats.suspend++; 3434 u64_stats_update_end(&adapter->syncp); 3435 3436 rtnl_lock(); 3437 if (unlikely(test_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags))) { 3438 dev_err(&pdev->dev, 3439 "ignoring device reset request as the device is being suspended\n"); 3440 clear_bit(ENA_FLAG_TRIGGER_RESET, &adapter->flags); 3441 } 3442 ena_destroy_device(adapter, true); 3443 rtnl_unlock(); 3444 return 0; 3445 } 3446 3447 /* ena_resume - PM resume callback 3448 * @pdev: PCI device information struct 3449 * 3450 */ 3451 static int ena_resume(struct pci_dev *pdev) 3452 { 3453 struct ena_adapter *adapter = pci_get_drvdata(pdev); 3454 int rc; 3455 3456 u64_stats_update_begin(&adapter->syncp); 3457 adapter->dev_stats.resume++; 3458 u64_stats_update_end(&adapter->syncp); 3459 3460 rtnl_lock(); 3461 rc = ena_restore_device(adapter); 3462 rtnl_unlock(); 3463 return rc; 3464 } 3465 #endif 3466 3467 static struct pci_driver ena_pci_driver = { 3468 .name = DRV_MODULE_NAME, 3469 .id_table = ena_pci_tbl, 3470 .probe = ena_probe, 3471 .remove = ena_remove, 3472 #ifdef CONFIG_PM 3473 .suspend = ena_suspend, 3474 .resume = ena_resume, 3475 #endif 3476 .sriov_configure = pci_sriov_configure_simple, 3477 }; 3478 3479 static int __init ena_init(void) 3480 { 3481 pr_info("%s", version); 3482 3483 ena_wq = create_singlethread_workqueue(DRV_MODULE_NAME); 3484 if (!ena_wq) { 3485 pr_err("Failed to create workqueue\n"); 3486 return -ENOMEM; 3487 } 3488 3489 return pci_register_driver(&ena_pci_driver); 3490 } 3491 3492 static void __exit ena_cleanup(void) 3493 { 3494 pci_unregister_driver(&ena_pci_driver); 3495 3496 if (ena_wq) { 3497 destroy_workqueue(ena_wq); 3498 ena_wq = NULL; 3499 } 3500 } 3501 3502 /****************************************************************************** 3503 ******************************** AENQ Handlers ******************************* 3504 *****************************************************************************/ 3505 /* ena_update_on_link_change: 3506 * Notify the network interface about the change in link status 3507 */ 3508 static void ena_update_on_link_change(void *adapter_data, 3509 struct ena_admin_aenq_entry *aenq_e) 3510 { 3511 struct ena_adapter *adapter = (struct ena_adapter *)adapter_data; 3512 struct ena_admin_aenq_link_change_desc *aenq_desc = 3513 (struct ena_admin_aenq_link_change_desc *)aenq_e; 3514 int status = aenq_desc->flags & 3515 ENA_ADMIN_AENQ_LINK_CHANGE_DESC_LINK_STATUS_MASK; 3516 3517 if (status) { 3518 netdev_dbg(adapter->netdev, "%s\n", __func__); 3519 set_bit(ENA_FLAG_LINK_UP, &adapter->flags); 3520 if (!test_bit(ENA_FLAG_ONGOING_RESET, &adapter->flags)) 3521 netif_carrier_on(adapter->netdev); 3522 } else { 3523 clear_bit(ENA_FLAG_LINK_UP, &adapter->flags); 3524 netif_carrier_off(adapter->netdev); 3525 } 3526 } 3527 3528 static void ena_keep_alive_wd(void *adapter_data, 3529 struct ena_admin_aenq_entry *aenq_e) 3530 { 3531 struct ena_adapter *adapter = (struct ena_adapter *)adapter_data; 3532 struct ena_admin_aenq_keep_alive_desc *desc; 3533 u64 rx_drops; 3534 3535 desc = (struct ena_admin_aenq_keep_alive_desc *)aenq_e; 3536 adapter->last_keep_alive_jiffies = jiffies; 3537 3538 rx_drops = ((u64)desc->rx_drops_high << 32) | desc->rx_drops_low; 3539 3540 u64_stats_update_begin(&adapter->syncp); 3541 adapter->dev_stats.rx_drops = rx_drops; 3542 u64_stats_update_end(&adapter->syncp); 3543 } 3544 3545 static void ena_notification(void *adapter_data, 3546 struct ena_admin_aenq_entry *aenq_e) 3547 { 3548 struct ena_adapter *adapter = (struct ena_adapter *)adapter_data; 3549 struct ena_admin_ena_hw_hints *hints; 3550 3551 WARN(aenq_e->aenq_common_desc.group != ENA_ADMIN_NOTIFICATION, 3552 "Invalid group(%x) expected %x\n", 3553 aenq_e->aenq_common_desc.group, 3554 ENA_ADMIN_NOTIFICATION); 3555 3556 switch (aenq_e->aenq_common_desc.syndrom) { 3557 case ENA_ADMIN_UPDATE_HINTS: 3558 hints = (struct ena_admin_ena_hw_hints *) 3559 (&aenq_e->inline_data_w4); 3560 ena_update_hints(adapter, hints); 3561 break; 3562 default: 3563 netif_err(adapter, drv, adapter->netdev, 3564 "Invalid aenq notification link state %d\n", 3565 aenq_e->aenq_common_desc.syndrom); 3566 } 3567 } 3568 3569 /* This handler will called for unknown event group or unimplemented handlers*/ 3570 static void unimplemented_aenq_handler(void *data, 3571 struct ena_admin_aenq_entry *aenq_e) 3572 { 3573 struct ena_adapter *adapter = (struct ena_adapter *)data; 3574 3575 netif_err(adapter, drv, adapter->netdev, 3576 "Unknown event was received or event with unimplemented handler\n"); 3577 } 3578 3579 static struct ena_aenq_handlers aenq_handlers = { 3580 .handlers = { 3581 [ENA_ADMIN_LINK_CHANGE] = ena_update_on_link_change, 3582 [ENA_ADMIN_NOTIFICATION] = ena_notification, 3583 [ENA_ADMIN_KEEP_ALIVE] = ena_keep_alive_wd, 3584 }, 3585 .unimplemented_handler = unimplemented_aenq_handler 3586 }; 3587 3588 module_init(ena_init); 3589 module_exit(ena_cleanup); 3590