1 /*- 2 * Copyright (c) 2016, Vincenzo Maffione 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice unmodified, this list of conditions, and the following 10 * disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 /* Driver for ptnet paravirtualized network device. */ 30 31 #include <sys/cdefs.h> 32 33 #include <sys/types.h> 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/kernel.h> 37 #include <sys/sockio.h> 38 #include <sys/mbuf.h> 39 #include <sys/malloc.h> 40 #include <sys/module.h> 41 #include <sys/socket.h> 42 #include <sys/sysctl.h> 43 #include <sys/lock.h> 44 #include <sys/mutex.h> 45 #include <sys/taskqueue.h> 46 #include <sys/smp.h> 47 #include <sys/time.h> 48 #include <machine/smp.h> 49 50 #include <vm/uma.h> 51 #include <vm/vm.h> 52 #include <vm/pmap.h> 53 54 #include <net/ethernet.h> 55 #include <net/if.h> 56 #include <net/if_var.h> 57 #include <net/if_arp.h> 58 #include <net/if_dl.h> 59 #include <net/if_types.h> 60 #include <net/if_media.h> 61 #include <net/if_vlan_var.h> 62 #include <net/bpf.h> 63 64 #include <netinet/in_systm.h> 65 #include <netinet/in.h> 66 #include <netinet/ip.h> 67 #include <netinet/ip6.h> 68 #include <netinet6/ip6_var.h> 69 #include <netinet/udp.h> 70 #include <netinet/tcp.h> 71 72 #include <machine/bus.h> 73 #include <machine/resource.h> 74 #include <sys/bus.h> 75 #include <sys/rman.h> 76 77 #include <dev/pci/pcivar.h> 78 #include <dev/pci/pcireg.h> 79 80 #include "opt_inet.h" 81 #include "opt_inet6.h" 82 83 #include <sys/selinfo.h> 84 #include <net/netmap.h> 85 #include <dev/netmap/netmap_kern.h> 86 #include <net/netmap_virt.h> 87 #include <dev/netmap/netmap_mem2.h> 88 #include <dev/virtio/network/virtio_net.h> 89 90 #ifndef INET 91 #error "INET not defined, cannot support offloadings" 92 #endif 93 94 #if __FreeBSD_version >= 1100000 95 static uint64_t ptnet_get_counter(if_t, ift_counter); 96 #else 97 typedef struct ifnet *if_t; 98 #define if_getsoftc(_ifp) (_ifp)->if_softc 99 #endif 100 101 //#define PTNETMAP_STATS 102 //#define DEBUG 103 #ifdef DEBUG 104 #define DBG(x) x 105 #else /* !DEBUG */ 106 #define DBG(x) 107 #endif /* !DEBUG */ 108 109 extern int ptnet_vnet_hdr; /* Tunable parameter */ 110 111 struct ptnet_softc; 112 113 struct ptnet_queue_stats { 114 uint64_t packets; /* if_[io]packets */ 115 uint64_t bytes; /* if_[io]bytes */ 116 uint64_t errors; /* if_[io]errors */ 117 uint64_t iqdrops; /* if_iqdrops */ 118 uint64_t mcasts; /* if_[io]mcasts */ 119 #ifdef PTNETMAP_STATS 120 uint64_t intrs; 121 uint64_t kicks; 122 #endif /* PTNETMAP_STATS */ 123 }; 124 125 struct ptnet_queue { 126 struct ptnet_softc *sc; 127 struct resource *irq; 128 void *cookie; 129 int kring_id; 130 struct nm_csb_atok *atok; 131 struct nm_csb_ktoa *ktoa; 132 unsigned int kick; 133 struct mtx lock; 134 struct buf_ring *bufring; /* for TX queues */ 135 struct ptnet_queue_stats stats; 136 #ifdef PTNETMAP_STATS 137 struct ptnet_queue_stats last_stats; 138 #endif /* PTNETMAP_STATS */ 139 struct taskqueue *taskq; 140 struct task task; 141 char lock_name[16]; 142 }; 143 144 #define PTNET_Q_LOCK(_pq) mtx_lock(&(_pq)->lock) 145 #define PTNET_Q_TRYLOCK(_pq) mtx_trylock(&(_pq)->lock) 146 #define PTNET_Q_UNLOCK(_pq) mtx_unlock(&(_pq)->lock) 147 148 struct ptnet_softc { 149 device_t dev; 150 if_t ifp; 151 struct ifmedia media; 152 struct mtx lock; 153 char lock_name[16]; 154 char hwaddr[ETHER_ADDR_LEN]; 155 156 /* Mirror of PTFEAT register. */ 157 uint32_t ptfeatures; 158 unsigned int vnet_hdr_len; 159 160 /* PCI BARs support. */ 161 struct resource *iomem; 162 struct resource *msix_mem; 163 164 unsigned int num_rings; 165 unsigned int num_tx_rings; 166 struct ptnet_queue *queues; 167 struct ptnet_queue *rxqueues; 168 struct nm_csb_atok *csb_gh; 169 struct nm_csb_ktoa *csb_hg; 170 171 unsigned int min_tx_space; 172 173 struct netmap_pt_guest_adapter *ptna; 174 175 struct callout tick; 176 #ifdef PTNETMAP_STATS 177 struct timeval last_ts; 178 #endif /* PTNETMAP_STATS */ 179 }; 180 181 #define PTNET_CORE_LOCK(_sc) mtx_lock(&(_sc)->lock) 182 #define PTNET_CORE_UNLOCK(_sc) mtx_unlock(&(_sc)->lock) 183 184 static int ptnet_probe(device_t); 185 static int ptnet_attach(device_t); 186 static int ptnet_detach(device_t); 187 static int ptnet_suspend(device_t); 188 static int ptnet_resume(device_t); 189 static int ptnet_shutdown(device_t); 190 191 static void ptnet_init(void *opaque); 192 static int ptnet_ioctl(if_t ifp, u_long cmd, caddr_t data); 193 static int ptnet_init_locked(struct ptnet_softc *sc); 194 static int ptnet_stop(struct ptnet_softc *sc); 195 static int ptnet_transmit(if_t ifp, struct mbuf *m); 196 static int ptnet_drain_transmit_queue(struct ptnet_queue *pq, 197 unsigned int budget, 198 bool may_resched); 199 static void ptnet_qflush(if_t ifp); 200 static void ptnet_tx_task(void *context, int pending); 201 202 static int ptnet_media_change(if_t ifp); 203 static void ptnet_media_status(if_t ifp, struct ifmediareq *ifmr); 204 #ifdef PTNETMAP_STATS 205 static void ptnet_tick(void *opaque); 206 #endif 207 208 static int ptnet_irqs_init(struct ptnet_softc *sc); 209 static void ptnet_irqs_fini(struct ptnet_softc *sc); 210 211 static uint32_t ptnet_nm_ptctl(struct ptnet_softc *sc, uint32_t cmd); 212 static int ptnet_nm_config(struct netmap_adapter *na, 213 struct nm_config_info *info); 214 static void ptnet_update_vnet_hdr(struct ptnet_softc *sc); 215 static int ptnet_nm_register(struct netmap_adapter *na, int onoff); 216 static int ptnet_nm_txsync(struct netmap_kring *kring, int flags); 217 static int ptnet_nm_rxsync(struct netmap_kring *kring, int flags); 218 static void ptnet_nm_intr(struct netmap_adapter *na, int onoff); 219 220 static void ptnet_tx_intr(void *opaque); 221 static void ptnet_rx_intr(void *opaque); 222 223 static unsigned ptnet_rx_discard(struct netmap_kring *kring, 224 unsigned int head); 225 static int ptnet_rx_eof(struct ptnet_queue *pq, unsigned int budget, 226 bool may_resched); 227 static void ptnet_rx_task(void *context, int pending); 228 229 #ifdef DEVICE_POLLING 230 static poll_handler_t ptnet_poll; 231 #endif 232 233 static device_method_t ptnet_methods[] = { 234 DEVMETHOD(device_probe, ptnet_probe), 235 DEVMETHOD(device_attach, ptnet_attach), 236 DEVMETHOD(device_detach, ptnet_detach), 237 DEVMETHOD(device_suspend, ptnet_suspend), 238 DEVMETHOD(device_resume, ptnet_resume), 239 DEVMETHOD(device_shutdown, ptnet_shutdown), 240 DEVMETHOD_END 241 }; 242 243 static driver_t ptnet_driver = { 244 "ptnet", 245 ptnet_methods, 246 sizeof(struct ptnet_softc) 247 }; 248 249 /* We use (SI_ORDER_MIDDLE+2) here, see DEV_MODULE_ORDERED() invocation. */ 250 static devclass_t ptnet_devclass; 251 DRIVER_MODULE_ORDERED(ptnet, pci, ptnet_driver, ptnet_devclass, 252 NULL, NULL, SI_ORDER_MIDDLE + 2); 253 254 static int 255 ptnet_probe(device_t dev) 256 { 257 if (pci_get_vendor(dev) != PTNETMAP_PCI_VENDOR_ID || 258 pci_get_device(dev) != PTNETMAP_PCI_NETIF_ID) { 259 return (ENXIO); 260 } 261 262 device_set_desc(dev, "ptnet network adapter"); 263 264 return (BUS_PROBE_DEFAULT); 265 } 266 267 static inline void ptnet_kick(struct ptnet_queue *pq) 268 { 269 #ifdef PTNETMAP_STATS 270 pq->stats.kicks ++; 271 #endif /* PTNETMAP_STATS */ 272 bus_write_4(pq->sc->iomem, pq->kick, 0); 273 } 274 275 #define PTNET_BUF_RING_SIZE 4096 276 #define PTNET_RX_BUDGET 512 277 #define PTNET_RX_BATCH 1 278 #define PTNET_TX_BUDGET 512 279 #define PTNET_TX_BATCH 64 280 #define PTNET_HDR_SIZE sizeof(struct virtio_net_hdr_mrg_rxbuf) 281 #define PTNET_MAX_PKT_SIZE 65536 282 283 #define PTNET_CSUM_OFFLOAD (CSUM_TCP | CSUM_UDP) 284 #define PTNET_CSUM_OFFLOAD_IPV6 (CSUM_TCP_IPV6 | CSUM_UDP_IPV6) 285 #define PTNET_ALL_OFFLOAD (CSUM_TSO | PTNET_CSUM_OFFLOAD |\ 286 PTNET_CSUM_OFFLOAD_IPV6) 287 288 static int 289 ptnet_attach(device_t dev) 290 { 291 uint32_t ptfeatures = 0; 292 unsigned int num_rx_rings, num_tx_rings; 293 struct netmap_adapter na_arg; 294 unsigned int nifp_offset; 295 struct ptnet_softc *sc; 296 if_t ifp; 297 uint32_t macreg; 298 int err, rid; 299 int i; 300 301 sc = device_get_softc(dev); 302 sc->dev = dev; 303 304 /* Setup PCI resources. */ 305 pci_enable_busmaster(dev); 306 307 rid = PCIR_BAR(PTNETMAP_IO_PCI_BAR); 308 sc->iomem = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid, 309 RF_ACTIVE); 310 if (sc->iomem == NULL) { 311 device_printf(dev, "Failed to map I/O BAR\n"); 312 return (ENXIO); 313 } 314 315 /* Negotiate features with the hypervisor. */ 316 if (ptnet_vnet_hdr) { 317 ptfeatures |= PTNETMAP_F_VNET_HDR; 318 } 319 bus_write_4(sc->iomem, PTNET_IO_PTFEAT, ptfeatures); /* wanted */ 320 ptfeatures = bus_read_4(sc->iomem, PTNET_IO_PTFEAT); /* acked */ 321 sc->ptfeatures = ptfeatures; 322 323 num_tx_rings = bus_read_4(sc->iomem, PTNET_IO_NUM_TX_RINGS); 324 num_rx_rings = bus_read_4(sc->iomem, PTNET_IO_NUM_RX_RINGS); 325 sc->num_rings = num_tx_rings + num_rx_rings; 326 sc->num_tx_rings = num_tx_rings; 327 328 if (sc->num_rings * sizeof(struct nm_csb_atok) > PAGE_SIZE) { 329 device_printf(dev, "CSB cannot handle that many rings (%u)\n", 330 sc->num_rings); 331 err = ENOMEM; 332 goto err_path; 333 } 334 335 /* Allocate CSB and carry out CSB allocation protocol. */ 336 sc->csb_gh = contigmalloc(2*PAGE_SIZE, M_DEVBUF, M_NOWAIT | M_ZERO, 337 (size_t)0, -1UL, PAGE_SIZE, 0); 338 if (sc->csb_gh == NULL) { 339 device_printf(dev, "Failed to allocate CSB\n"); 340 err = ENOMEM; 341 goto err_path; 342 } 343 sc->csb_hg = (struct nm_csb_ktoa *)(((char *)sc->csb_gh) + PAGE_SIZE); 344 345 { 346 /* 347 * We use uint64_t rather than vm_paddr_t since we 348 * need 64 bit addresses even on 32 bit platforms. 349 */ 350 uint64_t paddr = vtophys(sc->csb_gh); 351 352 /* CSB allocation protocol: write to BAH first, then 353 * to BAL (for both GH and HG sections). */ 354 bus_write_4(sc->iomem, PTNET_IO_CSB_GH_BAH, 355 (paddr >> 32) & 0xffffffff); 356 bus_write_4(sc->iomem, PTNET_IO_CSB_GH_BAL, 357 paddr & 0xffffffff); 358 paddr = vtophys(sc->csb_hg); 359 bus_write_4(sc->iomem, PTNET_IO_CSB_HG_BAH, 360 (paddr >> 32) & 0xffffffff); 361 bus_write_4(sc->iomem, PTNET_IO_CSB_HG_BAL, 362 paddr & 0xffffffff); 363 } 364 365 /* Allocate and initialize per-queue data structures. */ 366 sc->queues = malloc(sizeof(struct ptnet_queue) * sc->num_rings, 367 M_DEVBUF, M_NOWAIT | M_ZERO); 368 if (sc->queues == NULL) { 369 err = ENOMEM; 370 goto err_path; 371 } 372 sc->rxqueues = sc->queues + num_tx_rings; 373 374 for (i = 0; i < sc->num_rings; i++) { 375 struct ptnet_queue *pq = sc->queues + i; 376 377 pq->sc = sc; 378 pq->kring_id = i; 379 pq->kick = PTNET_IO_KICK_BASE + 4 * i; 380 pq->atok = sc->csb_gh + i; 381 pq->ktoa = sc->csb_hg + i; 382 snprintf(pq->lock_name, sizeof(pq->lock_name), "%s-%d", 383 device_get_nameunit(dev), i); 384 mtx_init(&pq->lock, pq->lock_name, NULL, MTX_DEF); 385 if (i >= num_tx_rings) { 386 /* RX queue: fix kring_id. */ 387 pq->kring_id -= num_tx_rings; 388 } else { 389 /* TX queue: allocate buf_ring. */ 390 pq->bufring = buf_ring_alloc(PTNET_BUF_RING_SIZE, 391 M_DEVBUF, M_NOWAIT, &pq->lock); 392 if (pq->bufring == NULL) { 393 err = ENOMEM; 394 goto err_path; 395 } 396 } 397 } 398 399 sc->min_tx_space = 64; /* Safe initial value. */ 400 401 err = ptnet_irqs_init(sc); 402 if (err) { 403 goto err_path; 404 } 405 406 /* Setup Ethernet interface. */ 407 sc->ifp = ifp = if_alloc(IFT_ETHER); 408 if (ifp == NULL) { 409 device_printf(dev, "Failed to allocate ifnet\n"); 410 err = ENOMEM; 411 goto err_path; 412 } 413 414 if_initname(ifp, device_get_name(dev), device_get_unit(dev)); 415 ifp->if_baudrate = IF_Gbps(10); 416 ifp->if_softc = sc; 417 ifp->if_flags = IFF_BROADCAST | IFF_MULTICAST | IFF_SIMPLEX; 418 ifp->if_init = ptnet_init; 419 ifp->if_ioctl = ptnet_ioctl; 420 #if __FreeBSD_version >= 1100000 421 ifp->if_get_counter = ptnet_get_counter; 422 #endif 423 ifp->if_transmit = ptnet_transmit; 424 ifp->if_qflush = ptnet_qflush; 425 426 ifmedia_init(&sc->media, IFM_IMASK, ptnet_media_change, 427 ptnet_media_status); 428 ifmedia_add(&sc->media, IFM_ETHER | IFM_10G_T | IFM_FDX, 0, NULL); 429 ifmedia_set(&sc->media, IFM_ETHER | IFM_10G_T | IFM_FDX); 430 431 macreg = bus_read_4(sc->iomem, PTNET_IO_MAC_HI); 432 sc->hwaddr[0] = (macreg >> 8) & 0xff; 433 sc->hwaddr[1] = macreg & 0xff; 434 macreg = bus_read_4(sc->iomem, PTNET_IO_MAC_LO); 435 sc->hwaddr[2] = (macreg >> 24) & 0xff; 436 sc->hwaddr[3] = (macreg >> 16) & 0xff; 437 sc->hwaddr[4] = (macreg >> 8) & 0xff; 438 sc->hwaddr[5] = macreg & 0xff; 439 440 ether_ifattach(ifp, sc->hwaddr); 441 442 ifp->if_hdrlen = sizeof(struct ether_vlan_header); 443 ifp->if_capabilities |= IFCAP_JUMBO_MTU | IFCAP_VLAN_MTU; 444 445 if (sc->ptfeatures & PTNETMAP_F_VNET_HDR) { 446 /* Similarly to what the vtnet driver does, we can emulate 447 * VLAN offloadings by inserting and removing the 802.1Q 448 * header during transmit and receive. We are then able 449 * to do checksum offloading of VLAN frames. */ 450 ifp->if_capabilities |= IFCAP_HWCSUM | IFCAP_HWCSUM_IPV6 451 | IFCAP_VLAN_HWCSUM 452 | IFCAP_TSO | IFCAP_LRO 453 | IFCAP_VLAN_HWTSO 454 | IFCAP_VLAN_HWTAGGING; 455 } 456 457 ifp->if_capenable = ifp->if_capabilities; 458 #ifdef DEVICE_POLLING 459 /* Don't enable polling by default. */ 460 ifp->if_capabilities |= IFCAP_POLLING; 461 #endif 462 snprintf(sc->lock_name, sizeof(sc->lock_name), 463 "%s", device_get_nameunit(dev)); 464 mtx_init(&sc->lock, sc->lock_name, "ptnet core lock", MTX_DEF); 465 callout_init_mtx(&sc->tick, &sc->lock, 0); 466 467 /* Prepare a netmap_adapter struct instance to do netmap_attach(). */ 468 nifp_offset = bus_read_4(sc->iomem, PTNET_IO_NIFP_OFS); 469 memset(&na_arg, 0, sizeof(na_arg)); 470 na_arg.ifp = ifp; 471 na_arg.num_tx_desc = bus_read_4(sc->iomem, PTNET_IO_NUM_TX_SLOTS); 472 na_arg.num_rx_desc = bus_read_4(sc->iomem, PTNET_IO_NUM_RX_SLOTS); 473 na_arg.num_tx_rings = num_tx_rings; 474 na_arg.num_rx_rings = num_rx_rings; 475 na_arg.nm_config = ptnet_nm_config; 476 na_arg.nm_krings_create = ptnet_nm_krings_create; 477 na_arg.nm_krings_delete = ptnet_nm_krings_delete; 478 na_arg.nm_dtor = ptnet_nm_dtor; 479 na_arg.nm_intr = ptnet_nm_intr; 480 na_arg.nm_register = ptnet_nm_register; 481 na_arg.nm_txsync = ptnet_nm_txsync; 482 na_arg.nm_rxsync = ptnet_nm_rxsync; 483 484 netmap_pt_guest_attach(&na_arg, nifp_offset, 485 bus_read_4(sc->iomem, PTNET_IO_HOSTMEMID)); 486 487 /* Now a netmap adapter for this ifp has been allocated, and it 488 * can be accessed through NA(ifp). We also have to initialize the CSB 489 * pointer. */ 490 sc->ptna = (struct netmap_pt_guest_adapter *)NA(ifp); 491 492 /* If virtio-net header was negotiated, set the virt_hdr_len field in 493 * the netmap adapter, to inform users that this netmap adapter requires 494 * the application to deal with the headers. */ 495 ptnet_update_vnet_hdr(sc); 496 497 device_printf(dev, "%s() completed\n", __func__); 498 499 return (0); 500 501 err_path: 502 ptnet_detach(dev); 503 return err; 504 } 505 506 /* Stop host sync-kloop if it was running. */ 507 static void 508 ptnet_device_shutdown(struct ptnet_softc *sc) 509 { 510 ptnet_nm_ptctl(sc, PTNETMAP_PTCTL_DELETE); 511 bus_write_4(sc->iomem, PTNET_IO_CSB_GH_BAH, 0); 512 bus_write_4(sc->iomem, PTNET_IO_CSB_GH_BAL, 0); 513 bus_write_4(sc->iomem, PTNET_IO_CSB_HG_BAH, 0); 514 bus_write_4(sc->iomem, PTNET_IO_CSB_HG_BAL, 0); 515 } 516 517 static int 518 ptnet_detach(device_t dev) 519 { 520 struct ptnet_softc *sc = device_get_softc(dev); 521 int i; 522 523 ptnet_device_shutdown(sc); 524 525 #ifdef DEVICE_POLLING 526 if (sc->ifp->if_capenable & IFCAP_POLLING) { 527 ether_poll_deregister(sc->ifp); 528 } 529 #endif 530 callout_drain(&sc->tick); 531 532 if (sc->queues) { 533 /* Drain taskqueues before calling if_detach. */ 534 for (i = 0; i < sc->num_rings; i++) { 535 struct ptnet_queue *pq = sc->queues + i; 536 537 if (pq->taskq) { 538 taskqueue_drain(pq->taskq, &pq->task); 539 } 540 } 541 } 542 543 if (sc->ifp) { 544 ether_ifdetach(sc->ifp); 545 546 /* Uninitialize netmap adapters for this device. */ 547 netmap_detach(sc->ifp); 548 549 ifmedia_removeall(&sc->media); 550 if_free(sc->ifp); 551 sc->ifp = NULL; 552 } 553 554 ptnet_irqs_fini(sc); 555 556 if (sc->csb_gh) { 557 contigfree(sc->csb_gh, 2*PAGE_SIZE, M_DEVBUF); 558 sc->csb_gh = NULL; 559 sc->csb_hg = NULL; 560 } 561 562 if (sc->queues) { 563 for (i = 0; i < sc->num_rings; i++) { 564 struct ptnet_queue *pq = sc->queues + i; 565 566 if (mtx_initialized(&pq->lock)) { 567 mtx_destroy(&pq->lock); 568 } 569 if (pq->bufring != NULL) { 570 buf_ring_free(pq->bufring, M_DEVBUF); 571 } 572 } 573 free(sc->queues, M_DEVBUF); 574 sc->queues = NULL; 575 } 576 577 if (sc->iomem) { 578 bus_release_resource(dev, SYS_RES_IOPORT, 579 PCIR_BAR(PTNETMAP_IO_PCI_BAR), sc->iomem); 580 sc->iomem = NULL; 581 } 582 583 mtx_destroy(&sc->lock); 584 585 device_printf(dev, "%s() completed\n", __func__); 586 587 return (0); 588 } 589 590 static int 591 ptnet_suspend(device_t dev) 592 { 593 struct ptnet_softc *sc = device_get_softc(dev); 594 595 (void)sc; 596 597 return (0); 598 } 599 600 static int 601 ptnet_resume(device_t dev) 602 { 603 struct ptnet_softc *sc = device_get_softc(dev); 604 605 (void)sc; 606 607 return (0); 608 } 609 610 static int 611 ptnet_shutdown(device_t dev) 612 { 613 struct ptnet_softc *sc = device_get_softc(dev); 614 615 ptnet_device_shutdown(sc); 616 617 return (0); 618 } 619 620 static int 621 ptnet_irqs_init(struct ptnet_softc *sc) 622 { 623 int rid = PCIR_BAR(PTNETMAP_MSIX_PCI_BAR); 624 int nvecs = sc->num_rings; 625 device_t dev = sc->dev; 626 int err = ENOSPC; 627 int cpu_cur; 628 int i; 629 630 if (pci_find_cap(dev, PCIY_MSIX, NULL) != 0) { 631 device_printf(dev, "Could not find MSI-X capability\n"); 632 return (ENXIO); 633 } 634 635 sc->msix_mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY, 636 &rid, RF_ACTIVE); 637 if (sc->msix_mem == NULL) { 638 device_printf(dev, "Failed to allocate MSIX PCI BAR\n"); 639 return (ENXIO); 640 } 641 642 if (pci_msix_count(dev) < nvecs) { 643 device_printf(dev, "Not enough MSI-X vectors\n"); 644 goto err_path; 645 } 646 647 err = pci_alloc_msix(dev, &nvecs); 648 if (err) { 649 device_printf(dev, "Failed to allocate MSI-X vectors\n"); 650 goto err_path; 651 } 652 653 for (i = 0; i < nvecs; i++) { 654 struct ptnet_queue *pq = sc->queues + i; 655 656 rid = i + 1; 657 pq->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, 658 RF_ACTIVE); 659 if (pq->irq == NULL) { 660 device_printf(dev, "Failed to allocate interrupt " 661 "for queue #%d\n", i); 662 err = ENOSPC; 663 goto err_path; 664 } 665 } 666 667 cpu_cur = CPU_FIRST(); 668 for (i = 0; i < nvecs; i++) { 669 struct ptnet_queue *pq = sc->queues + i; 670 void (*handler)(void *) = ptnet_tx_intr; 671 672 if (i >= sc->num_tx_rings) { 673 handler = ptnet_rx_intr; 674 } 675 err = bus_setup_intr(dev, pq->irq, INTR_TYPE_NET | INTR_MPSAFE, 676 NULL /* intr_filter */, handler, 677 pq, &pq->cookie); 678 if (err) { 679 device_printf(dev, "Failed to register intr handler " 680 "for queue #%d\n", i); 681 goto err_path; 682 } 683 684 bus_describe_intr(dev, pq->irq, pq->cookie, "q%d", i); 685 #if 0 686 bus_bind_intr(sc->dev, pq->irq, cpu_cur); 687 #endif 688 cpu_cur = CPU_NEXT(cpu_cur); 689 } 690 691 device_printf(dev, "Allocated %d MSI-X vectors\n", nvecs); 692 693 cpu_cur = CPU_FIRST(); 694 for (i = 0; i < nvecs; i++) { 695 struct ptnet_queue *pq = sc->queues + i; 696 static void (*handler)(void *context, int pending); 697 698 handler = (i < sc->num_tx_rings) ? ptnet_tx_task : ptnet_rx_task; 699 700 TASK_INIT(&pq->task, 0, handler, pq); 701 pq->taskq = taskqueue_create_fast("ptnet_queue", M_NOWAIT, 702 taskqueue_thread_enqueue, &pq->taskq); 703 taskqueue_start_threads(&pq->taskq, 1, PI_NET, "%s-pq-%d", 704 device_get_nameunit(sc->dev), cpu_cur); 705 cpu_cur = CPU_NEXT(cpu_cur); 706 } 707 708 return 0; 709 err_path: 710 ptnet_irqs_fini(sc); 711 return err; 712 } 713 714 static void 715 ptnet_irqs_fini(struct ptnet_softc *sc) 716 { 717 device_t dev = sc->dev; 718 int i; 719 720 for (i = 0; i < sc->num_rings; i++) { 721 struct ptnet_queue *pq = sc->queues + i; 722 723 if (pq->taskq) { 724 taskqueue_free(pq->taskq); 725 pq->taskq = NULL; 726 } 727 728 if (pq->cookie) { 729 bus_teardown_intr(dev, pq->irq, pq->cookie); 730 pq->cookie = NULL; 731 } 732 733 if (pq->irq) { 734 bus_release_resource(dev, SYS_RES_IRQ, i + 1, pq->irq); 735 pq->irq = NULL; 736 } 737 } 738 739 if (sc->msix_mem) { 740 pci_release_msi(dev); 741 742 bus_release_resource(dev, SYS_RES_MEMORY, 743 PCIR_BAR(PTNETMAP_MSIX_PCI_BAR), 744 sc->msix_mem); 745 sc->msix_mem = NULL; 746 } 747 } 748 749 static void 750 ptnet_init(void *opaque) 751 { 752 struct ptnet_softc *sc = opaque; 753 754 PTNET_CORE_LOCK(sc); 755 ptnet_init_locked(sc); 756 PTNET_CORE_UNLOCK(sc); 757 } 758 759 static int 760 ptnet_ioctl(if_t ifp, u_long cmd, caddr_t data) 761 { 762 struct ptnet_softc *sc = if_getsoftc(ifp); 763 device_t dev = sc->dev; 764 struct ifreq *ifr = (struct ifreq *)data; 765 int mask __unused, err = 0; 766 767 switch (cmd) { 768 case SIOCSIFFLAGS: 769 device_printf(dev, "SIOCSIFFLAGS %x\n", ifp->if_flags); 770 PTNET_CORE_LOCK(sc); 771 if (ifp->if_flags & IFF_UP) { 772 /* Network stack wants the iff to be up. */ 773 err = ptnet_init_locked(sc); 774 } else { 775 /* Network stack wants the iff to be down. */ 776 err = ptnet_stop(sc); 777 } 778 /* We don't need to do nothing to support IFF_PROMISC, 779 * since that is managed by the backend port. */ 780 PTNET_CORE_UNLOCK(sc); 781 break; 782 783 case SIOCSIFCAP: 784 device_printf(dev, "SIOCSIFCAP %x %x\n", 785 ifr->ifr_reqcap, ifp->if_capenable); 786 mask = ifr->ifr_reqcap ^ ifp->if_capenable; 787 #ifdef DEVICE_POLLING 788 if (mask & IFCAP_POLLING) { 789 struct ptnet_queue *pq; 790 int i; 791 792 if (ifr->ifr_reqcap & IFCAP_POLLING) { 793 err = ether_poll_register(ptnet_poll, ifp); 794 if (err) { 795 break; 796 } 797 /* Stop queues and sync with taskqueues. */ 798 ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 799 for (i = 0; i < sc->num_rings; i++) { 800 pq = sc-> queues + i; 801 /* Make sure the worker sees the 802 * IFF_DRV_RUNNING down. */ 803 PTNET_Q_LOCK(pq); 804 pq->atok->appl_need_kick = 0; 805 PTNET_Q_UNLOCK(pq); 806 /* Wait for rescheduling to finish. */ 807 if (pq->taskq) { 808 taskqueue_drain(pq->taskq, 809 &pq->task); 810 } 811 } 812 ifp->if_drv_flags |= IFF_DRV_RUNNING; 813 } else { 814 err = ether_poll_deregister(ifp); 815 for (i = 0; i < sc->num_rings; i++) { 816 pq = sc-> queues + i; 817 PTNET_Q_LOCK(pq); 818 pq->atok->appl_need_kick = 1; 819 PTNET_Q_UNLOCK(pq); 820 } 821 } 822 } 823 #endif /* DEVICE_POLLING */ 824 ifp->if_capenable = ifr->ifr_reqcap; 825 break; 826 827 case SIOCSIFMTU: 828 /* We support any reasonable MTU. */ 829 if (ifr->ifr_mtu < ETHERMIN || 830 ifr->ifr_mtu > PTNET_MAX_PKT_SIZE) { 831 err = EINVAL; 832 } else { 833 PTNET_CORE_LOCK(sc); 834 ifp->if_mtu = ifr->ifr_mtu; 835 PTNET_CORE_UNLOCK(sc); 836 } 837 break; 838 839 case SIOCSIFMEDIA: 840 case SIOCGIFMEDIA: 841 err = ifmedia_ioctl(ifp, ifr, &sc->media, cmd); 842 break; 843 844 default: 845 err = ether_ioctl(ifp, cmd, data); 846 break; 847 } 848 849 return err; 850 } 851 852 static int 853 ptnet_init_locked(struct ptnet_softc *sc) 854 { 855 if_t ifp = sc->ifp; 856 struct netmap_adapter *na_dr = &sc->ptna->dr.up; 857 struct netmap_adapter *na_nm = &sc->ptna->hwup.up; 858 unsigned int nm_buf_size; 859 int ret; 860 861 if (ifp->if_drv_flags & IFF_DRV_RUNNING) { 862 return 0; /* nothing to do */ 863 } 864 865 device_printf(sc->dev, "%s\n", __func__); 866 867 /* Translate offload capabilities according to if_capenable. */ 868 ifp->if_hwassist = 0; 869 if (ifp->if_capenable & IFCAP_TXCSUM) 870 ifp->if_hwassist |= PTNET_CSUM_OFFLOAD; 871 if (ifp->if_capenable & IFCAP_TXCSUM_IPV6) 872 ifp->if_hwassist |= PTNET_CSUM_OFFLOAD_IPV6; 873 if (ifp->if_capenable & IFCAP_TSO4) 874 ifp->if_hwassist |= CSUM_IP_TSO; 875 if (ifp->if_capenable & IFCAP_TSO6) 876 ifp->if_hwassist |= CSUM_IP6_TSO; 877 878 /* 879 * Prepare the interface for netmap mode access. 880 */ 881 netmap_update_config(na_dr); 882 883 ret = netmap_mem_finalize(na_dr->nm_mem, na_dr); 884 if (ret) { 885 device_printf(sc->dev, "netmap_mem_finalize() failed\n"); 886 return ret; 887 } 888 889 if (sc->ptna->backend_users == 0) { 890 ret = ptnet_nm_krings_create(na_nm); 891 if (ret) { 892 device_printf(sc->dev, "ptnet_nm_krings_create() " 893 "failed\n"); 894 goto err_mem_finalize; 895 } 896 897 ret = netmap_mem_rings_create(na_dr); 898 if (ret) { 899 device_printf(sc->dev, "netmap_mem_rings_create() " 900 "failed\n"); 901 goto err_rings_create; 902 } 903 904 ret = netmap_mem_get_lut(na_dr->nm_mem, &na_dr->na_lut); 905 if (ret) { 906 device_printf(sc->dev, "netmap_mem_get_lut() " 907 "failed\n"); 908 goto err_get_lut; 909 } 910 } 911 912 ret = ptnet_nm_register(na_dr, 1 /* on */); 913 if (ret) { 914 goto err_register; 915 } 916 917 nm_buf_size = NETMAP_BUF_SIZE(na_dr); 918 919 KASSERT(nm_buf_size > 0, ("Invalid netmap buffer size")); 920 sc->min_tx_space = PTNET_MAX_PKT_SIZE / nm_buf_size + 2; 921 device_printf(sc->dev, "%s: min_tx_space = %u\n", __func__, 922 sc->min_tx_space); 923 #ifdef PTNETMAP_STATS 924 callout_reset(&sc->tick, hz, ptnet_tick, sc); 925 #endif 926 927 ifp->if_drv_flags |= IFF_DRV_RUNNING; 928 929 return 0; 930 931 err_register: 932 memset(&na_dr->na_lut, 0, sizeof(na_dr->na_lut)); 933 err_get_lut: 934 netmap_mem_rings_delete(na_dr); 935 err_rings_create: 936 ptnet_nm_krings_delete(na_nm); 937 err_mem_finalize: 938 netmap_mem_deref(na_dr->nm_mem, na_dr); 939 940 return ret; 941 } 942 943 /* To be called under core lock. */ 944 static int 945 ptnet_stop(struct ptnet_softc *sc) 946 { 947 if_t ifp = sc->ifp; 948 struct netmap_adapter *na_dr = &sc->ptna->dr.up; 949 struct netmap_adapter *na_nm = &sc->ptna->hwup.up; 950 int i; 951 952 device_printf(sc->dev, "%s\n", __func__); 953 954 if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) { 955 return 0; /* nothing to do */ 956 } 957 958 /* Clear the driver-ready flag, and synchronize with all the queues, 959 * so that after this loop we are sure nobody is working anymore with 960 * the device. This scheme is taken from the vtnet driver. */ 961 ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 962 callout_stop(&sc->tick); 963 for (i = 0; i < sc->num_rings; i++) { 964 PTNET_Q_LOCK(sc->queues + i); 965 PTNET_Q_UNLOCK(sc->queues + i); 966 } 967 968 ptnet_nm_register(na_dr, 0 /* off */); 969 970 if (sc->ptna->backend_users == 0) { 971 netmap_mem_rings_delete(na_dr); 972 ptnet_nm_krings_delete(na_nm); 973 } 974 netmap_mem_deref(na_dr->nm_mem, na_dr); 975 976 return 0; 977 } 978 979 static void 980 ptnet_qflush(if_t ifp) 981 { 982 struct ptnet_softc *sc = if_getsoftc(ifp); 983 int i; 984 985 /* Flush all the bufrings and do the interface flush. */ 986 for (i = 0; i < sc->num_rings; i++) { 987 struct ptnet_queue *pq = sc->queues + i; 988 struct mbuf *m; 989 990 PTNET_Q_LOCK(pq); 991 if (pq->bufring) { 992 while ((m = buf_ring_dequeue_sc(pq->bufring))) { 993 m_freem(m); 994 } 995 } 996 PTNET_Q_UNLOCK(pq); 997 } 998 999 if_qflush(ifp); 1000 } 1001 1002 static int 1003 ptnet_media_change(if_t ifp) 1004 { 1005 struct ptnet_softc *sc = if_getsoftc(ifp); 1006 struct ifmedia *ifm = &sc->media; 1007 1008 if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER) { 1009 return EINVAL; 1010 } 1011 1012 return 0; 1013 } 1014 1015 #if __FreeBSD_version >= 1100000 1016 static uint64_t 1017 ptnet_get_counter(if_t ifp, ift_counter cnt) 1018 { 1019 struct ptnet_softc *sc = if_getsoftc(ifp); 1020 struct ptnet_queue_stats stats[2]; 1021 int i; 1022 1023 /* Accumulate statistics over the queues. */ 1024 memset(stats, 0, sizeof(stats)); 1025 for (i = 0; i < sc->num_rings; i++) { 1026 struct ptnet_queue *pq = sc->queues + i; 1027 int idx = (i < sc->num_tx_rings) ? 0 : 1; 1028 1029 stats[idx].packets += pq->stats.packets; 1030 stats[idx].bytes += pq->stats.bytes; 1031 stats[idx].errors += pq->stats.errors; 1032 stats[idx].iqdrops += pq->stats.iqdrops; 1033 stats[idx].mcasts += pq->stats.mcasts; 1034 } 1035 1036 switch (cnt) { 1037 case IFCOUNTER_IPACKETS: 1038 return (stats[1].packets); 1039 case IFCOUNTER_IQDROPS: 1040 return (stats[1].iqdrops); 1041 case IFCOUNTER_IERRORS: 1042 return (stats[1].errors); 1043 case IFCOUNTER_OPACKETS: 1044 return (stats[0].packets); 1045 case IFCOUNTER_OBYTES: 1046 return (stats[0].bytes); 1047 case IFCOUNTER_OMCASTS: 1048 return (stats[0].mcasts); 1049 default: 1050 return (if_get_counter_default(ifp, cnt)); 1051 } 1052 } 1053 #endif 1054 1055 1056 #ifdef PTNETMAP_STATS 1057 /* Called under core lock. */ 1058 static void 1059 ptnet_tick(void *opaque) 1060 { 1061 struct ptnet_softc *sc = opaque; 1062 int i; 1063 1064 for (i = 0; i < sc->num_rings; i++) { 1065 struct ptnet_queue *pq = sc->queues + i; 1066 struct ptnet_queue_stats cur = pq->stats; 1067 struct timeval now; 1068 unsigned int delta; 1069 1070 microtime(&now); 1071 delta = now.tv_usec - sc->last_ts.tv_usec + 1072 (now.tv_sec - sc->last_ts.tv_sec) * 1000000; 1073 delta /= 1000; /* in milliseconds */ 1074 1075 if (delta == 0) 1076 continue; 1077 1078 device_printf(sc->dev, "#%d[%u ms]:pkts %lu, kicks %lu, " 1079 "intr %lu\n", i, delta, 1080 (cur.packets - pq->last_stats.packets), 1081 (cur.kicks - pq->last_stats.kicks), 1082 (cur.intrs - pq->last_stats.intrs)); 1083 pq->last_stats = cur; 1084 } 1085 microtime(&sc->last_ts); 1086 callout_schedule(&sc->tick, hz); 1087 } 1088 #endif /* PTNETMAP_STATS */ 1089 1090 static void 1091 ptnet_media_status(if_t ifp, struct ifmediareq *ifmr) 1092 { 1093 /* We are always active, as the backend netmap port is 1094 * always open in netmap mode. */ 1095 ifmr->ifm_status = IFM_AVALID | IFM_ACTIVE; 1096 ifmr->ifm_active = IFM_ETHER | IFM_10G_T | IFM_FDX; 1097 } 1098 1099 static uint32_t 1100 ptnet_nm_ptctl(struct ptnet_softc *sc, uint32_t cmd) 1101 { 1102 /* 1103 * Write a command and read back error status, 1104 * with zero meaning success. 1105 */ 1106 bus_write_4(sc->iomem, PTNET_IO_PTCTL, cmd); 1107 return bus_read_4(sc->iomem, PTNET_IO_PTCTL); 1108 } 1109 1110 static int 1111 ptnet_nm_config(struct netmap_adapter *na, struct nm_config_info *info) 1112 { 1113 struct ptnet_softc *sc = if_getsoftc(na->ifp); 1114 1115 info->num_tx_rings = bus_read_4(sc->iomem, PTNET_IO_NUM_TX_RINGS); 1116 info->num_rx_rings = bus_read_4(sc->iomem, PTNET_IO_NUM_RX_RINGS); 1117 info->num_tx_descs = bus_read_4(sc->iomem, PTNET_IO_NUM_TX_SLOTS); 1118 info->num_rx_descs = bus_read_4(sc->iomem, PTNET_IO_NUM_RX_SLOTS); 1119 info->rx_buf_maxsize = NETMAP_BUF_SIZE(na); 1120 1121 device_printf(sc->dev, "txr %u, rxr %u, txd %u, rxd %u, rxbufsz %u\n", 1122 info->num_tx_rings, info->num_rx_rings, 1123 info->num_tx_descs, info->num_rx_descs, 1124 info->rx_buf_maxsize); 1125 1126 return 0; 1127 } 1128 1129 static void 1130 ptnet_sync_from_csb(struct ptnet_softc *sc, struct netmap_adapter *na) 1131 { 1132 int i; 1133 1134 /* Sync krings from the host, reading from 1135 * CSB. */ 1136 for (i = 0; i < sc->num_rings; i++) { 1137 struct nm_csb_atok *atok = sc->queues[i].atok; 1138 struct nm_csb_ktoa *ktoa = sc->queues[i].ktoa; 1139 struct netmap_kring *kring; 1140 1141 if (i < na->num_tx_rings) { 1142 kring = na->tx_rings[i]; 1143 } else { 1144 kring = na->rx_rings[i - na->num_tx_rings]; 1145 } 1146 kring->rhead = kring->ring->head = atok->head; 1147 kring->rcur = kring->ring->cur = atok->cur; 1148 kring->nr_hwcur = ktoa->hwcur; 1149 kring->nr_hwtail = kring->rtail = 1150 kring->ring->tail = ktoa->hwtail; 1151 1152 nm_prdis("%d,%d: csb {hc %u h %u c %u ht %u}", t, i, 1153 ktoa->hwcur, atok->head, atok->cur, 1154 ktoa->hwtail); 1155 nm_prdis("%d,%d: kring {hc %u rh %u rc %u h %u c %u ht %u rt %u t %u}", 1156 t, i, kring->nr_hwcur, kring->rhead, kring->rcur, 1157 kring->ring->head, kring->ring->cur, kring->nr_hwtail, 1158 kring->rtail, kring->ring->tail); 1159 } 1160 } 1161 1162 static void 1163 ptnet_update_vnet_hdr(struct ptnet_softc *sc) 1164 { 1165 unsigned int wanted_hdr_len = ptnet_vnet_hdr ? PTNET_HDR_SIZE : 0; 1166 1167 bus_write_4(sc->iomem, PTNET_IO_VNET_HDR_LEN, wanted_hdr_len); 1168 sc->vnet_hdr_len = bus_read_4(sc->iomem, PTNET_IO_VNET_HDR_LEN); 1169 sc->ptna->hwup.up.virt_hdr_len = sc->vnet_hdr_len; 1170 } 1171 1172 static int 1173 ptnet_nm_register(struct netmap_adapter *na, int onoff) 1174 { 1175 /* device-specific */ 1176 if_t ifp = na->ifp; 1177 struct ptnet_softc *sc = if_getsoftc(ifp); 1178 int native = (na == &sc->ptna->hwup.up); 1179 struct ptnet_queue *pq; 1180 int ret = 0; 1181 int i; 1182 1183 if (!onoff) { 1184 sc->ptna->backend_users--; 1185 } 1186 1187 /* If this is the last netmap client, guest interrupt enable flags may 1188 * be in arbitrary state. Since these flags are going to be used also 1189 * by the netdevice driver, we have to make sure to start with 1190 * notifications enabled. Also, schedule NAPI to flush pending packets 1191 * in the RX rings, since we will not receive further interrupts 1192 * until these will be processed. */ 1193 if (native && !onoff && na->active_fds == 0) { 1194 nm_prinf("Exit netmap mode, re-enable interrupts"); 1195 for (i = 0; i < sc->num_rings; i++) { 1196 pq = sc->queues + i; 1197 pq->atok->appl_need_kick = 1; 1198 } 1199 } 1200 1201 if (onoff) { 1202 if (sc->ptna->backend_users == 0) { 1203 /* Initialize notification enable fields in the CSB. */ 1204 for (i = 0; i < sc->num_rings; i++) { 1205 pq = sc->queues + i; 1206 pq->ktoa->kern_need_kick = 1; 1207 pq->atok->appl_need_kick = 1208 (!(ifp->if_capenable & IFCAP_POLLING) 1209 && i >= sc->num_tx_rings); 1210 } 1211 1212 /* Set the virtio-net header length. */ 1213 ptnet_update_vnet_hdr(sc); 1214 1215 /* Make sure the host adapter passed through is ready 1216 * for txsync/rxsync. */ 1217 ret = ptnet_nm_ptctl(sc, PTNETMAP_PTCTL_CREATE); 1218 if (ret) { 1219 return ret; 1220 } 1221 1222 /* Align the guest krings and rings to the state stored 1223 * in the CSB. */ 1224 ptnet_sync_from_csb(sc, na); 1225 } 1226 1227 /* If not native, don't call nm_set_native_flags, since we don't want 1228 * to replace if_transmit method, nor set NAF_NETMAP_ON */ 1229 if (native) { 1230 netmap_krings_mode_commit(na, onoff); 1231 nm_set_native_flags(na); 1232 } 1233 1234 } else { 1235 if (native) { 1236 nm_clear_native_flags(na); 1237 netmap_krings_mode_commit(na, onoff); 1238 } 1239 1240 if (sc->ptna->backend_users == 0) { 1241 ret = ptnet_nm_ptctl(sc, PTNETMAP_PTCTL_DELETE); 1242 } 1243 } 1244 1245 if (onoff) { 1246 sc->ptna->backend_users++; 1247 } 1248 1249 return ret; 1250 } 1251 1252 static int 1253 ptnet_nm_txsync(struct netmap_kring *kring, int flags) 1254 { 1255 struct ptnet_softc *sc = if_getsoftc(kring->na->ifp); 1256 struct ptnet_queue *pq = sc->queues + kring->ring_id; 1257 bool notify; 1258 1259 notify = netmap_pt_guest_txsync(pq->atok, pq->ktoa, kring, flags); 1260 if (notify) { 1261 ptnet_kick(pq); 1262 } 1263 1264 return 0; 1265 } 1266 1267 static int 1268 ptnet_nm_rxsync(struct netmap_kring *kring, int flags) 1269 { 1270 struct ptnet_softc *sc = if_getsoftc(kring->na->ifp); 1271 struct ptnet_queue *pq = sc->rxqueues + kring->ring_id; 1272 bool notify; 1273 1274 notify = netmap_pt_guest_rxsync(pq->atok, pq->ktoa, kring, flags); 1275 if (notify) { 1276 ptnet_kick(pq); 1277 } 1278 1279 return 0; 1280 } 1281 1282 static void 1283 ptnet_nm_intr(struct netmap_adapter *na, int onoff) 1284 { 1285 struct ptnet_softc *sc = if_getsoftc(na->ifp); 1286 int i; 1287 1288 for (i = 0; i < sc->num_rings; i++) { 1289 struct ptnet_queue *pq = sc->queues + i; 1290 pq->atok->appl_need_kick = onoff; 1291 } 1292 } 1293 1294 static void 1295 ptnet_tx_intr(void *opaque) 1296 { 1297 struct ptnet_queue *pq = opaque; 1298 struct ptnet_softc *sc = pq->sc; 1299 1300 DBG(device_printf(sc->dev, "Tx interrupt #%d\n", pq->kring_id)); 1301 #ifdef PTNETMAP_STATS 1302 pq->stats.intrs ++; 1303 #endif /* PTNETMAP_STATS */ 1304 1305 if (netmap_tx_irq(sc->ifp, pq->kring_id) != NM_IRQ_PASS) { 1306 return; 1307 } 1308 1309 /* Schedule the tasqueue to flush process transmissions requests. 1310 * However, vtnet, if_em and if_igb just call ptnet_transmit() here, 1311 * at least when using MSI-X interrupts. The if_em driver, instead 1312 * schedule taskqueue when using legacy interrupts. */ 1313 taskqueue_enqueue(pq->taskq, &pq->task); 1314 } 1315 1316 static void 1317 ptnet_rx_intr(void *opaque) 1318 { 1319 struct ptnet_queue *pq = opaque; 1320 struct ptnet_softc *sc = pq->sc; 1321 unsigned int unused; 1322 1323 DBG(device_printf(sc->dev, "Rx interrupt #%d\n", pq->kring_id)); 1324 #ifdef PTNETMAP_STATS 1325 pq->stats.intrs ++; 1326 #endif /* PTNETMAP_STATS */ 1327 1328 if (netmap_rx_irq(sc->ifp, pq->kring_id, &unused) != NM_IRQ_PASS) { 1329 return; 1330 } 1331 1332 /* Like vtnet, if_igb and if_em drivers when using MSI-X interrupts, 1333 * receive-side processing is executed directly in the interrupt 1334 * service routine. Alternatively, we may schedule the taskqueue. */ 1335 ptnet_rx_eof(pq, PTNET_RX_BUDGET, true); 1336 } 1337 1338 static void 1339 ptnet_vlan_tag_remove(struct mbuf *m) 1340 { 1341 struct ether_vlan_header *evh; 1342 1343 evh = mtod(m, struct ether_vlan_header *); 1344 m->m_pkthdr.ether_vtag = ntohs(evh->evl_tag); 1345 m->m_flags |= M_VLANTAG; 1346 1347 /* Strip the 802.1Q header. */ 1348 bcopy((char *) evh, (char *) evh + ETHER_VLAN_ENCAP_LEN, 1349 ETHER_HDR_LEN - ETHER_TYPE_LEN); 1350 m_adj(m, ETHER_VLAN_ENCAP_LEN); 1351 } 1352 1353 static void 1354 ptnet_ring_update(struct ptnet_queue *pq, struct netmap_kring *kring, 1355 unsigned int head, unsigned int sync_flags) 1356 { 1357 struct netmap_ring *ring = kring->ring; 1358 struct nm_csb_atok *atok = pq->atok; 1359 struct nm_csb_ktoa *ktoa = pq->ktoa; 1360 1361 /* Some packets have been pushed to the netmap ring. We have 1362 * to tell the host to process the new packets, updating cur 1363 * and head in the CSB. */ 1364 ring->head = ring->cur = head; 1365 1366 /* Mimic nm_txsync_prologue/nm_rxsync_prologue. */ 1367 kring->rcur = kring->rhead = head; 1368 1369 nm_sync_kloop_appl_write(atok, kring->rcur, kring->rhead); 1370 1371 /* Kick the host if needed. */ 1372 if (NM_ACCESS_ONCE(ktoa->kern_need_kick)) { 1373 atok->sync_flags = sync_flags; 1374 ptnet_kick(pq); 1375 } 1376 } 1377 1378 #define PTNET_TX_NOSPACE(_h, _k, _min) \ 1379 ((((_h) < (_k)->rtail) ? 0 : (_k)->nkr_num_slots) + \ 1380 (_k)->rtail - (_h)) < (_min) 1381 1382 /* This function may be called by the network stack, or by 1383 * by the taskqueue thread. */ 1384 static int 1385 ptnet_drain_transmit_queue(struct ptnet_queue *pq, unsigned int budget, 1386 bool may_resched) 1387 { 1388 struct ptnet_softc *sc = pq->sc; 1389 bool have_vnet_hdr = sc->vnet_hdr_len; 1390 struct netmap_adapter *na = &sc->ptna->dr.up; 1391 if_t ifp = sc->ifp; 1392 unsigned int batch_count = 0; 1393 struct nm_csb_atok *atok; 1394 struct nm_csb_ktoa *ktoa; 1395 struct netmap_kring *kring; 1396 struct netmap_ring *ring; 1397 struct netmap_slot *slot; 1398 unsigned int count = 0; 1399 unsigned int minspace; 1400 unsigned int head; 1401 unsigned int lim; 1402 struct mbuf *mhead; 1403 struct mbuf *mf; 1404 int nmbuf_bytes; 1405 uint8_t *nmbuf; 1406 1407 if (!PTNET_Q_TRYLOCK(pq)) { 1408 /* We failed to acquire the lock, schedule the taskqueue. */ 1409 nm_prlim(1, "Deferring TX work"); 1410 if (may_resched) { 1411 taskqueue_enqueue(pq->taskq, &pq->task); 1412 } 1413 1414 return 0; 1415 } 1416 1417 if (unlikely(!(ifp->if_drv_flags & IFF_DRV_RUNNING))) { 1418 PTNET_Q_UNLOCK(pq); 1419 nm_prlim(1, "Interface is down"); 1420 return ENETDOWN; 1421 } 1422 1423 atok = pq->atok; 1424 ktoa = pq->ktoa; 1425 kring = na->tx_rings[pq->kring_id]; 1426 ring = kring->ring; 1427 lim = kring->nkr_num_slots - 1; 1428 head = ring->head; 1429 minspace = sc->min_tx_space; 1430 1431 while (count < budget) { 1432 if (PTNET_TX_NOSPACE(head, kring, minspace)) { 1433 /* We ran out of slot, let's see if the host has 1434 * freed up some, by reading hwcur and hwtail from 1435 * the CSB. */ 1436 ptnet_sync_tail(ktoa, kring); 1437 1438 if (PTNET_TX_NOSPACE(head, kring, minspace)) { 1439 /* Still no slots available. Reactivate the 1440 * interrupts so that we can be notified 1441 * when some free slots are made available by 1442 * the host. */ 1443 atok->appl_need_kick = 1; 1444 1445 /* Double check. We need a full barrier to 1446 * prevent the store to atok->appl_need_kick 1447 * to be reordered with the load from 1448 * ktoa->hwcur and ktoa->hwtail (store-load 1449 * barrier). */ 1450 nm_stld_barrier(); 1451 ptnet_sync_tail(ktoa, kring); 1452 if (likely(PTNET_TX_NOSPACE(head, kring, 1453 minspace))) { 1454 break; 1455 } 1456 1457 nm_prlim(1, "Found more slots by doublecheck"); 1458 /* More slots were freed before reactivating 1459 * the interrupts. */ 1460 atok->appl_need_kick = 0; 1461 } 1462 } 1463 1464 mhead = drbr_peek(ifp, pq->bufring); 1465 if (!mhead) { 1466 break; 1467 } 1468 1469 /* Initialize transmission state variables. */ 1470 slot = ring->slot + head; 1471 nmbuf = NMB(na, slot); 1472 nmbuf_bytes = 0; 1473 1474 /* If needed, prepare the virtio-net header at the beginning 1475 * of the first slot. */ 1476 if (have_vnet_hdr) { 1477 struct virtio_net_hdr *vh = 1478 (struct virtio_net_hdr *)nmbuf; 1479 1480 /* For performance, we could replace this memset() with 1481 * two 8-bytes-wide writes. */ 1482 memset(nmbuf, 0, PTNET_HDR_SIZE); 1483 if (mhead->m_pkthdr.csum_flags & PTNET_ALL_OFFLOAD) { 1484 mhead = virtio_net_tx_offload(ifp, mhead, false, 1485 vh); 1486 if (unlikely(!mhead)) { 1487 /* Packet dropped because errors 1488 * occurred while preparing the vnet 1489 * header. Let's go ahead with the next 1490 * packet. */ 1491 pq->stats.errors ++; 1492 drbr_advance(ifp, pq->bufring); 1493 continue; 1494 } 1495 } 1496 nm_prdis(1, "%s: [csum_flags %lX] vnet hdr: flags %x " 1497 "csum_start %u csum_ofs %u hdr_len = %u " 1498 "gso_size %u gso_type %x", __func__, 1499 mhead->m_pkthdr.csum_flags, vh->flags, 1500 vh->csum_start, vh->csum_offset, vh->hdr_len, 1501 vh->gso_size, vh->gso_type); 1502 1503 nmbuf += PTNET_HDR_SIZE; 1504 nmbuf_bytes += PTNET_HDR_SIZE; 1505 } 1506 1507 for (mf = mhead; mf; mf = mf->m_next) { 1508 uint8_t *mdata = mf->m_data; 1509 int mlen = mf->m_len; 1510 1511 for (;;) { 1512 int copy = NETMAP_BUF_SIZE(na) - nmbuf_bytes; 1513 1514 if (mlen < copy) { 1515 copy = mlen; 1516 } 1517 memcpy(nmbuf, mdata, copy); 1518 1519 mdata += copy; 1520 mlen -= copy; 1521 nmbuf += copy; 1522 nmbuf_bytes += copy; 1523 1524 if (!mlen) { 1525 break; 1526 } 1527 1528 slot->len = nmbuf_bytes; 1529 slot->flags = NS_MOREFRAG; 1530 1531 head = nm_next(head, lim); 1532 KASSERT(head != ring->tail, 1533 ("Unexpectedly run out of TX space")); 1534 slot = ring->slot + head; 1535 nmbuf = NMB(na, slot); 1536 nmbuf_bytes = 0; 1537 } 1538 } 1539 1540 /* Complete last slot and update head. */ 1541 slot->len = nmbuf_bytes; 1542 slot->flags = 0; 1543 head = nm_next(head, lim); 1544 1545 /* Consume the packet just processed. */ 1546 drbr_advance(ifp, pq->bufring); 1547 1548 /* Copy the packet to listeners. */ 1549 ETHER_BPF_MTAP(ifp, mhead); 1550 1551 pq->stats.packets ++; 1552 pq->stats.bytes += mhead->m_pkthdr.len; 1553 if (mhead->m_flags & M_MCAST) { 1554 pq->stats.mcasts ++; 1555 } 1556 1557 m_freem(mhead); 1558 1559 count ++; 1560 if (++batch_count == PTNET_TX_BATCH) { 1561 ptnet_ring_update(pq, kring, head, NAF_FORCE_RECLAIM); 1562 batch_count = 0; 1563 } 1564 } 1565 1566 if (batch_count) { 1567 ptnet_ring_update(pq, kring, head, NAF_FORCE_RECLAIM); 1568 } 1569 1570 if (count >= budget && may_resched) { 1571 DBG(nm_prlim(1, "out of budget: resched, %d mbufs pending\n", 1572 drbr_inuse(ifp, pq->bufring))); 1573 taskqueue_enqueue(pq->taskq, &pq->task); 1574 } 1575 1576 PTNET_Q_UNLOCK(pq); 1577 1578 return count; 1579 } 1580 1581 static int 1582 ptnet_transmit(if_t ifp, struct mbuf *m) 1583 { 1584 struct ptnet_softc *sc = if_getsoftc(ifp); 1585 struct ptnet_queue *pq; 1586 unsigned int queue_idx; 1587 int err; 1588 1589 DBG(device_printf(sc->dev, "transmit %p\n", m)); 1590 1591 /* Insert 802.1Q header if needed. */ 1592 if (m->m_flags & M_VLANTAG) { 1593 m = ether_vlanencap(m, m->m_pkthdr.ether_vtag); 1594 if (m == NULL) { 1595 return ENOBUFS; 1596 } 1597 m->m_flags &= ~M_VLANTAG; 1598 } 1599 1600 /* Get the flow-id if available. */ 1601 queue_idx = (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) ? 1602 m->m_pkthdr.flowid : curcpu; 1603 1604 if (unlikely(queue_idx >= sc->num_tx_rings)) { 1605 queue_idx %= sc->num_tx_rings; 1606 } 1607 1608 pq = sc->queues + queue_idx; 1609 1610 err = drbr_enqueue(ifp, pq->bufring, m); 1611 if (err) { 1612 /* ENOBUFS when the bufring is full */ 1613 nm_prlim(1, "%s: drbr_enqueue() failed %d\n", 1614 __func__, err); 1615 pq->stats.errors ++; 1616 return err; 1617 } 1618 1619 if (ifp->if_capenable & IFCAP_POLLING) { 1620 /* If polling is on, the transmit queues will be 1621 * drained by the poller. */ 1622 return 0; 1623 } 1624 1625 err = ptnet_drain_transmit_queue(pq, PTNET_TX_BUDGET, true); 1626 1627 return (err < 0) ? err : 0; 1628 } 1629 1630 static unsigned int 1631 ptnet_rx_discard(struct netmap_kring *kring, unsigned int head) 1632 { 1633 struct netmap_ring *ring = kring->ring; 1634 struct netmap_slot *slot = ring->slot + head; 1635 1636 for (;;) { 1637 head = nm_next(head, kring->nkr_num_slots - 1); 1638 if (!(slot->flags & NS_MOREFRAG) || head == ring->tail) { 1639 break; 1640 } 1641 slot = ring->slot + head; 1642 } 1643 1644 return head; 1645 } 1646 1647 static inline struct mbuf * 1648 ptnet_rx_slot(struct mbuf *mtail, uint8_t *nmbuf, unsigned int nmbuf_len) 1649 { 1650 uint8_t *mdata = mtod(mtail, uint8_t *) + mtail->m_len; 1651 1652 do { 1653 unsigned int copy; 1654 1655 if (mtail->m_len == MCLBYTES) { 1656 struct mbuf *mf; 1657 1658 mf = m_getcl(M_NOWAIT, MT_DATA, 0); 1659 if (unlikely(!mf)) { 1660 return NULL; 1661 } 1662 1663 mtail->m_next = mf; 1664 mtail = mf; 1665 mdata = mtod(mtail, uint8_t *); 1666 mtail->m_len = 0; 1667 } 1668 1669 copy = MCLBYTES - mtail->m_len; 1670 if (nmbuf_len < copy) { 1671 copy = nmbuf_len; 1672 } 1673 1674 memcpy(mdata, nmbuf, copy); 1675 1676 nmbuf += copy; 1677 nmbuf_len -= copy; 1678 mdata += copy; 1679 mtail->m_len += copy; 1680 } while (nmbuf_len); 1681 1682 return mtail; 1683 } 1684 1685 static int 1686 ptnet_rx_eof(struct ptnet_queue *pq, unsigned int budget, bool may_resched) 1687 { 1688 struct ptnet_softc *sc = pq->sc; 1689 bool have_vnet_hdr = sc->vnet_hdr_len; 1690 struct nm_csb_atok *atok = pq->atok; 1691 struct nm_csb_ktoa *ktoa = pq->ktoa; 1692 struct netmap_adapter *na = &sc->ptna->dr.up; 1693 struct netmap_kring *kring = na->rx_rings[pq->kring_id]; 1694 struct netmap_ring *ring = kring->ring; 1695 unsigned int const lim = kring->nkr_num_slots - 1; 1696 unsigned int batch_count = 0; 1697 if_t ifp = sc->ifp; 1698 unsigned int count = 0; 1699 uint32_t head; 1700 1701 PTNET_Q_LOCK(pq); 1702 1703 if (unlikely(!(ifp->if_drv_flags & IFF_DRV_RUNNING))) { 1704 goto unlock; 1705 } 1706 1707 kring->nr_kflags &= ~NKR_PENDINTR; 1708 1709 head = ring->head; 1710 while (count < budget) { 1711 uint32_t prev_head = head; 1712 struct mbuf *mhead, *mtail; 1713 struct virtio_net_hdr *vh; 1714 struct netmap_slot *slot; 1715 unsigned int nmbuf_len; 1716 uint8_t *nmbuf; 1717 int deliver = 1; /* the mbuf to the network stack. */ 1718 host_sync: 1719 if (head == ring->tail) { 1720 /* We ran out of slot, let's see if the host has 1721 * added some, by reading hwcur and hwtail from 1722 * the CSB. */ 1723 ptnet_sync_tail(ktoa, kring); 1724 1725 if (head == ring->tail) { 1726 /* Still no slots available. Reactivate 1727 * interrupts as they were disabled by the 1728 * host thread right before issuing the 1729 * last interrupt. */ 1730 atok->appl_need_kick = 1; 1731 1732 /* Double check for more completed RX slots. 1733 * We need a full barrier to prevent the store 1734 * to atok->appl_need_kick to be reordered with 1735 * the load from ktoa->hwcur and ktoa->hwtail 1736 * (store-load barrier). */ 1737 nm_stld_barrier(); 1738 ptnet_sync_tail(ktoa, kring); 1739 if (likely(head == ring->tail)) { 1740 break; 1741 } 1742 atok->appl_need_kick = 0; 1743 } 1744 } 1745 1746 /* Initialize ring state variables, possibly grabbing the 1747 * virtio-net header. */ 1748 slot = ring->slot + head; 1749 nmbuf = NMB(na, slot); 1750 nmbuf_len = slot->len; 1751 1752 vh = (struct virtio_net_hdr *)nmbuf; 1753 if (have_vnet_hdr) { 1754 if (unlikely(nmbuf_len < PTNET_HDR_SIZE)) { 1755 /* There is no good reason why host should 1756 * put the header in multiple netmap slots. 1757 * If this is the case, discard. */ 1758 nm_prlim(1, "Fragmented vnet-hdr: dropping"); 1759 head = ptnet_rx_discard(kring, head); 1760 pq->stats.iqdrops ++; 1761 deliver = 0; 1762 goto skip; 1763 } 1764 nm_prdis(1, "%s: vnet hdr: flags %x csum_start %u " 1765 "csum_ofs %u hdr_len = %u gso_size %u " 1766 "gso_type %x", __func__, vh->flags, 1767 vh->csum_start, vh->csum_offset, vh->hdr_len, 1768 vh->gso_size, vh->gso_type); 1769 nmbuf += PTNET_HDR_SIZE; 1770 nmbuf_len -= PTNET_HDR_SIZE; 1771 } 1772 1773 /* Allocate the head of a new mbuf chain. 1774 * We use m_getcl() to allocate an mbuf with standard cluster 1775 * size (MCLBYTES). In the future we could use m_getjcl() 1776 * to choose different sizes. */ 1777 mhead = mtail = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR); 1778 if (unlikely(mhead == NULL)) { 1779 device_printf(sc->dev, "%s: failed to allocate mbuf " 1780 "head\n", __func__); 1781 pq->stats.errors ++; 1782 break; 1783 } 1784 1785 /* Initialize the mbuf state variables. */ 1786 mhead->m_pkthdr.len = nmbuf_len; 1787 mtail->m_len = 0; 1788 1789 /* Scan all the netmap slots containing the current packet. */ 1790 for (;;) { 1791 DBG(device_printf(sc->dev, "%s: h %u t %u rcv frag " 1792 "len %u, flags %u\n", __func__, 1793 head, ring->tail, slot->len, 1794 slot->flags)); 1795 1796 mtail = ptnet_rx_slot(mtail, nmbuf, nmbuf_len); 1797 if (unlikely(!mtail)) { 1798 /* Ouch. We ran out of memory while processing 1799 * a packet. We have to restore the previous 1800 * head position, free the mbuf chain, and 1801 * schedule the taskqueue to give the packet 1802 * another chance. */ 1803 device_printf(sc->dev, "%s: failed to allocate" 1804 " mbuf frag, reset head %u --> %u\n", 1805 __func__, head, prev_head); 1806 head = prev_head; 1807 m_freem(mhead); 1808 pq->stats.errors ++; 1809 if (may_resched) { 1810 taskqueue_enqueue(pq->taskq, 1811 &pq->task); 1812 } 1813 goto escape; 1814 } 1815 1816 /* We have to increment head irrespective of the 1817 * NS_MOREFRAG being set or not. */ 1818 head = nm_next(head, lim); 1819 1820 if (!(slot->flags & NS_MOREFRAG)) { 1821 break; 1822 } 1823 1824 if (unlikely(head == ring->tail)) { 1825 /* The very last slot prepared by the host has 1826 * the NS_MOREFRAG set. Drop it and continue 1827 * the outer cycle (to do the double-check). */ 1828 nm_prlim(1, "Incomplete packet: dropping"); 1829 m_freem(mhead); 1830 pq->stats.iqdrops ++; 1831 goto host_sync; 1832 } 1833 1834 slot = ring->slot + head; 1835 nmbuf = NMB(na, slot); 1836 nmbuf_len = slot->len; 1837 mhead->m_pkthdr.len += nmbuf_len; 1838 } 1839 1840 mhead->m_pkthdr.rcvif = ifp; 1841 mhead->m_pkthdr.csum_flags = 0; 1842 1843 /* Store the queue idx in the packet header. */ 1844 mhead->m_pkthdr.flowid = pq->kring_id; 1845 M_HASHTYPE_SET(mhead, M_HASHTYPE_OPAQUE); 1846 1847 if (ifp->if_capenable & IFCAP_VLAN_HWTAGGING) { 1848 struct ether_header *eh; 1849 1850 eh = mtod(mhead, struct ether_header *); 1851 if (eh->ether_type == htons(ETHERTYPE_VLAN)) { 1852 ptnet_vlan_tag_remove(mhead); 1853 /* 1854 * With the 802.1Q header removed, update the 1855 * checksum starting location accordingly. 1856 */ 1857 if (vh->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) 1858 vh->csum_start -= ETHER_VLAN_ENCAP_LEN; 1859 } 1860 } 1861 1862 if (unlikely(have_vnet_hdr && virtio_net_rx_csum(mhead, vh))) { 1863 m_freem(mhead); 1864 nm_prlim(1, "Csum offload error: dropping"); 1865 pq->stats.iqdrops ++; 1866 deliver = 0; 1867 } 1868 1869 skip: 1870 count ++; 1871 if (++batch_count >= PTNET_RX_BATCH) { 1872 /* Some packets have been (or will be) pushed to the network 1873 * stack. We need to update the CSB to tell the host about 1874 * the new ring->cur and ring->head (RX buffer refill). */ 1875 ptnet_ring_update(pq, kring, head, NAF_FORCE_READ); 1876 batch_count = 0; 1877 } 1878 1879 if (likely(deliver)) { 1880 pq->stats.packets ++; 1881 pq->stats.bytes += mhead->m_pkthdr.len; 1882 1883 PTNET_Q_UNLOCK(pq); 1884 (*ifp->if_input)(ifp, mhead); 1885 PTNET_Q_LOCK(pq); 1886 /* The ring->head index (and related indices) are 1887 * updated under pq lock by ptnet_ring_update(). 1888 * Since we dropped the lock to call if_input(), we 1889 * must reload ring->head and restart processing the 1890 * ring from there. */ 1891 head = ring->head; 1892 1893 if (unlikely(!(ifp->if_drv_flags & IFF_DRV_RUNNING))) { 1894 /* The interface has gone down while we didn't 1895 * have the lock. Stop any processing and exit. */ 1896 goto unlock; 1897 } 1898 } 1899 } 1900 escape: 1901 if (batch_count) { 1902 ptnet_ring_update(pq, kring, head, NAF_FORCE_READ); 1903 1904 } 1905 1906 if (count >= budget && may_resched) { 1907 /* If we ran out of budget or the double-check found new 1908 * slots to process, schedule the taskqueue. */ 1909 DBG(nm_prlim(1, "out of budget: resched h %u t %u\n", 1910 head, ring->tail)); 1911 taskqueue_enqueue(pq->taskq, &pq->task); 1912 } 1913 unlock: 1914 PTNET_Q_UNLOCK(pq); 1915 1916 return count; 1917 } 1918 1919 static void 1920 ptnet_rx_task(void *context, int pending) 1921 { 1922 struct ptnet_queue *pq = context; 1923 1924 DBG(nm_prlim(1, "%s: pq #%u\n", __func__, pq->kring_id)); 1925 ptnet_rx_eof(pq, PTNET_RX_BUDGET, true); 1926 } 1927 1928 static void 1929 ptnet_tx_task(void *context, int pending) 1930 { 1931 struct ptnet_queue *pq = context; 1932 1933 DBG(nm_prlim(1, "%s: pq #%u\n", __func__, pq->kring_id)); 1934 ptnet_drain_transmit_queue(pq, PTNET_TX_BUDGET, true); 1935 } 1936 1937 #ifdef DEVICE_POLLING 1938 /* We don't need to handle differently POLL_AND_CHECK_STATUS and 1939 * POLL_ONLY, since we don't have an Interrupt Status Register. */ 1940 static int 1941 ptnet_poll(if_t ifp, enum poll_cmd cmd, int budget) 1942 { 1943 struct ptnet_softc *sc = if_getsoftc(ifp); 1944 unsigned int queue_budget; 1945 unsigned int count = 0; 1946 bool borrow = false; 1947 int i; 1948 1949 KASSERT(sc->num_rings > 0, ("Found no queues in while polling ptnet")); 1950 queue_budget = MAX(budget / sc->num_rings, 1); 1951 nm_prlim(1, "Per-queue budget is %d", queue_budget); 1952 1953 while (budget) { 1954 unsigned int rcnt = 0; 1955 1956 for (i = 0; i < sc->num_rings; i++) { 1957 struct ptnet_queue *pq = sc->queues + i; 1958 1959 if (borrow) { 1960 queue_budget = MIN(queue_budget, budget); 1961 if (queue_budget == 0) { 1962 break; 1963 } 1964 } 1965 1966 if (i < sc->num_tx_rings) { 1967 rcnt += ptnet_drain_transmit_queue(pq, 1968 queue_budget, false); 1969 } else { 1970 rcnt += ptnet_rx_eof(pq, queue_budget, 1971 false); 1972 } 1973 } 1974 1975 if (!rcnt) { 1976 /* A scan of the queues gave no result, we can 1977 * stop here. */ 1978 break; 1979 } 1980 1981 if (rcnt > budget) { 1982 /* This may happen when initial budget < sc->num_rings, 1983 * since one packet budget is given to each queue 1984 * anyway. Just pretend we didn't eat "so much". */ 1985 rcnt = budget; 1986 } 1987 count += rcnt; 1988 budget -= rcnt; 1989 borrow = true; 1990 } 1991 1992 1993 return count; 1994 } 1995 #endif /* DEVICE_POLLING */ 1996