]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/net/iflib.c
Make taskqgroup_attach{,_cpu}(9) work across architectures
[FreeBSD/FreeBSD.git] / sys / net / iflib.c
1 /*-
2  * Copyright (c) 2014-2018, Matthew Macy <mmacy@mattmacy.io>
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 are met:
7  *
8  *  1. Redistributions of source code must retain the above copyright notice,
9  *     this list of conditions and the following disclaimer.
10  *
11  *  2. Neither the name of Matthew Macy nor the names of its
12  *     contributors may be used to endorse or promote products derived from
13  *     this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include "opt_inet.h"
32 #include "opt_inet6.h"
33 #include "opt_acpi.h"
34 #include "opt_sched.h"
35
36 #include <sys/param.h>
37 #include <sys/types.h>
38 #include <sys/bus.h>
39 #include <sys/eventhandler.h>
40 #include <sys/jail.h>
41 #include <sys/kernel.h>
42 #include <sys/lock.h>
43 #include <sys/md5.h>
44 #include <sys/mutex.h>
45 #include <sys/module.h>
46 #include <sys/kobj.h>
47 #include <sys/rman.h>
48 #include <sys/proc.h>
49 #include <sys/sbuf.h>
50 #include <sys/smp.h>
51 #include <sys/socket.h>
52 #include <sys/sockio.h>
53 #include <sys/sysctl.h>
54 #include <sys/syslog.h>
55 #include <sys/taskqueue.h>
56 #include <sys/limits.h>
57
58 #include <net/if.h>
59 #include <net/if_var.h>
60 #include <net/if_types.h>
61 #include <net/if_media.h>
62 #include <net/bpf.h>
63 #include <net/ethernet.h>
64 #include <net/mp_ring.h>
65 #include <net/vnet.h>
66
67 #include <netinet/in.h>
68 #include <netinet/in_pcb.h>
69 #include <netinet/tcp_lro.h>
70 #include <netinet/in_systm.h>
71 #include <netinet/if_ether.h>
72 #include <netinet/ip.h>
73 #include <netinet/ip6.h>
74 #include <netinet/tcp.h>
75 #include <netinet/ip_var.h>
76 #include <netinet/netdump/netdump.h>
77 #include <netinet6/ip6_var.h>
78
79 #include <machine/bus.h>
80 #include <machine/in_cksum.h>
81
82 #include <vm/vm.h>
83 #include <vm/pmap.h>
84
85 #include <dev/led/led.h>
86 #include <dev/pci/pcireg.h>
87 #include <dev/pci/pcivar.h>
88 #include <dev/pci/pci_private.h>
89
90 #include <net/iflib.h>
91 #include <net/iflib_private.h>
92
93 #include "ifdi_if.h"
94
95 #ifdef PCI_IOV
96 #include <dev/pci/pci_iov.h>
97 #endif
98
99 #include <sys/bitstring.h>
100 /*
101  * enable accounting of every mbuf as it comes in to and goes out of
102  * iflib's software descriptor references
103  */
104 #define MEMORY_LOGGING 0
105 /*
106  * Enable mbuf vectors for compressing long mbuf chains
107  */
108
109 /*
110  * NB:
111  * - Prefetching in tx cleaning should perhaps be a tunable. The distance ahead
112  *   we prefetch needs to be determined by the time spent in m_free vis a vis
113  *   the cost of a prefetch. This will of course vary based on the workload:
114  *      - NFLX's m_free path is dominated by vm-based M_EXT manipulation which
115  *        is quite expensive, thus suggesting very little prefetch.
116  *      - small packet forwarding which is just returning a single mbuf to
117  *        UMA will typically be very fast vis a vis the cost of a memory
118  *        access.
119  */
120
121
122 /*
123  * File organization:
124  *  - private structures
125  *  - iflib private utility functions
126  *  - ifnet functions
127  *  - vlan registry and other exported functions
128  *  - iflib public core functions
129  *
130  *
131  */
132 MALLOC_DEFINE(M_IFLIB, "iflib", "ifnet library");
133
134 struct iflib_txq;
135 typedef struct iflib_txq *iflib_txq_t;
136 struct iflib_rxq;
137 typedef struct iflib_rxq *iflib_rxq_t;
138 struct iflib_fl;
139 typedef struct iflib_fl *iflib_fl_t;
140
141 struct iflib_ctx;
142
143 static void iru_init(if_rxd_update_t iru, iflib_rxq_t rxq, uint8_t flid);
144 static void iflib_timer(void *arg);
145
146 typedef struct iflib_filter_info {
147         driver_filter_t *ifi_filter;
148         void *ifi_filter_arg;
149         struct grouptask *ifi_task;
150         void *ifi_ctx;
151 } *iflib_filter_info_t;
152
153 struct iflib_ctx {
154         KOBJ_FIELDS;
155         /*
156          * Pointer to hardware driver's softc
157          */
158         void *ifc_softc;
159         device_t ifc_dev;
160         if_t ifc_ifp;
161
162         cpuset_t ifc_cpus;
163         if_shared_ctx_t ifc_sctx;
164         struct if_softc_ctx ifc_softc_ctx;
165
166         struct sx ifc_ctx_sx;
167         struct mtx ifc_state_mtx;
168
169         iflib_txq_t ifc_txqs;
170         iflib_rxq_t ifc_rxqs;
171         uint32_t ifc_if_flags;
172         uint32_t ifc_flags;
173         uint32_t ifc_max_fl_buf_size;
174
175         int ifc_link_state;
176         int ifc_link_irq;
177         int ifc_watchdog_events;
178         struct cdev *ifc_led_dev;
179         struct resource *ifc_msix_mem;
180
181         struct if_irq ifc_legacy_irq;
182         struct grouptask ifc_admin_task;
183         struct grouptask ifc_vflr_task;
184         struct iflib_filter_info ifc_filter_info;
185         struct ifmedia  ifc_media;
186
187         struct sysctl_oid *ifc_sysctl_node;
188         uint16_t ifc_sysctl_ntxqs;
189         uint16_t ifc_sysctl_nrxqs;
190         uint16_t ifc_sysctl_qs_eq_override;
191         uint16_t ifc_sysctl_rx_budget;
192         uint16_t ifc_sysctl_tx_abdicate;
193
194         qidx_t ifc_sysctl_ntxds[8];
195         qidx_t ifc_sysctl_nrxds[8];
196         struct if_txrx ifc_txrx;
197 #define isc_txd_encap  ifc_txrx.ift_txd_encap
198 #define isc_txd_flush  ifc_txrx.ift_txd_flush
199 #define isc_txd_credits_update  ifc_txrx.ift_txd_credits_update
200 #define isc_rxd_available ifc_txrx.ift_rxd_available
201 #define isc_rxd_pkt_get ifc_txrx.ift_rxd_pkt_get
202 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
203 #define isc_rxd_flush ifc_txrx.ift_rxd_flush
204 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
205 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
206 #define isc_legacy_intr ifc_txrx.ift_legacy_intr
207         eventhandler_tag ifc_vlan_attach_event;
208         eventhandler_tag ifc_vlan_detach_event;
209         uint8_t ifc_mac[ETHER_ADDR_LEN];
210         char ifc_mtx_name[16];
211 };
212
213
214 void *
215 iflib_get_softc(if_ctx_t ctx)
216 {
217
218         return (ctx->ifc_softc);
219 }
220
221 device_t
222 iflib_get_dev(if_ctx_t ctx)
223 {
224
225         return (ctx->ifc_dev);
226 }
227
228 if_t
229 iflib_get_ifp(if_ctx_t ctx)
230 {
231
232         return (ctx->ifc_ifp);
233 }
234
235 struct ifmedia *
236 iflib_get_media(if_ctx_t ctx)
237 {
238
239         return (&ctx->ifc_media);
240 }
241
242 uint32_t
243 iflib_get_flags(if_ctx_t ctx)
244 {
245         return (ctx->ifc_flags);
246 }
247
248 void
249 iflib_set_mac(if_ctx_t ctx, uint8_t mac[ETHER_ADDR_LEN])
250 {
251
252         bcopy(mac, ctx->ifc_mac, ETHER_ADDR_LEN);
253 }
254
255 if_softc_ctx_t
256 iflib_get_softc_ctx(if_ctx_t ctx)
257 {
258
259         return (&ctx->ifc_softc_ctx);
260 }
261
262 if_shared_ctx_t
263 iflib_get_sctx(if_ctx_t ctx)
264 {
265
266         return (ctx->ifc_sctx);
267 }
268
269 #define IP_ALIGNED(m) ((((uintptr_t)(m)->m_data) & 0x3) == 0x2)
270 #define CACHE_PTR_INCREMENT (CACHE_LINE_SIZE/sizeof(void*))
271 #define CACHE_PTR_NEXT(ptr) ((void *)(((uintptr_t)(ptr)+CACHE_LINE_SIZE-1) & (CACHE_LINE_SIZE-1)))
272
273 #define LINK_ACTIVE(ctx) ((ctx)->ifc_link_state == LINK_STATE_UP)
274 #define CTX_IS_VF(ctx) ((ctx)->ifc_sctx->isc_flags & IFLIB_IS_VF)
275
276 typedef struct iflib_sw_rx_desc_array {
277         bus_dmamap_t    *ifsd_map;         /* bus_dma maps for packet */
278         struct mbuf     **ifsd_m;           /* pkthdr mbufs */
279         caddr_t         *ifsd_cl;          /* direct cluster pointer for rx */
280         bus_addr_t      *ifsd_ba;          /* bus addr of cluster for rx */
281 } iflib_rxsd_array_t;
282
283 typedef struct iflib_sw_tx_desc_array {
284         bus_dmamap_t    *ifsd_map;         /* bus_dma maps for packet */
285         bus_dmamap_t    *ifsd_tso_map;     /* bus_dma maps for TSO packet */
286         struct mbuf    **ifsd_m;           /* pkthdr mbufs */
287 } if_txsd_vec_t;
288
289
290 /* magic number that should be high enough for any hardware */
291 #define IFLIB_MAX_TX_SEGS               128
292 #define IFLIB_RX_COPY_THRESH            128
293 #define IFLIB_MAX_RX_REFRESH            32
294 /* The minimum descriptors per second before we start coalescing */
295 #define IFLIB_MIN_DESC_SEC              16384
296 #define IFLIB_DEFAULT_TX_UPDATE_FREQ    16
297 #define IFLIB_QUEUE_IDLE                0
298 #define IFLIB_QUEUE_HUNG                1
299 #define IFLIB_QUEUE_WORKING             2
300 /* maximum number of txqs that can share an rx interrupt */
301 #define IFLIB_MAX_TX_SHARED_INTR        4
302
303 /* this should really scale with ring size - this is a fairly arbitrary value */
304 #define TX_BATCH_SIZE                   32
305
306 #define IFLIB_RESTART_BUDGET            8
307
308
309 #define CSUM_OFFLOAD            (CSUM_IP_TSO|CSUM_IP6_TSO|CSUM_IP| \
310                                  CSUM_IP_UDP|CSUM_IP_TCP|CSUM_IP_SCTP| \
311                                  CSUM_IP6_UDP|CSUM_IP6_TCP|CSUM_IP6_SCTP)
312 struct iflib_txq {
313         qidx_t          ift_in_use;
314         qidx_t          ift_cidx;
315         qidx_t          ift_cidx_processed;
316         qidx_t          ift_pidx;
317         uint8_t         ift_gen;
318         uint8_t         ift_br_offset;
319         uint16_t        ift_npending;
320         uint16_t        ift_db_pending;
321         uint16_t        ift_rs_pending;
322         /* implicit pad */
323         uint8_t         ift_txd_size[8];
324         uint64_t        ift_processed;
325         uint64_t        ift_cleaned;
326         uint64_t        ift_cleaned_prev;
327 #if MEMORY_LOGGING
328         uint64_t        ift_enqueued;
329         uint64_t        ift_dequeued;
330 #endif
331         uint64_t        ift_no_tx_dma_setup;
332         uint64_t        ift_no_desc_avail;
333         uint64_t        ift_mbuf_defrag_failed;
334         uint64_t        ift_mbuf_defrag;
335         uint64_t        ift_map_failed;
336         uint64_t        ift_txd_encap_efbig;
337         uint64_t        ift_pullups;
338         uint64_t        ift_last_timer_tick;
339
340         struct mtx      ift_mtx;
341         struct mtx      ift_db_mtx;
342
343         /* constant values */
344         if_ctx_t        ift_ctx;
345         struct ifmp_ring        *ift_br;
346         struct grouptask        ift_task;
347         qidx_t          ift_size;
348         uint16_t        ift_id;
349         struct callout  ift_timer;
350
351         if_txsd_vec_t   ift_sds;
352         uint8_t         ift_qstatus;
353         uint8_t         ift_closed;
354         uint8_t         ift_update_freq;
355         struct iflib_filter_info ift_filter_info;
356         bus_dma_tag_t   ift_buf_tag;
357         bus_dma_tag_t   ift_tso_buf_tag;
358         iflib_dma_info_t        ift_ifdi;
359 #define MTX_NAME_LEN 16
360         char                    ift_mtx_name[MTX_NAME_LEN];
361         char                    ift_db_mtx_name[MTX_NAME_LEN];
362         bus_dma_segment_t       ift_segs[IFLIB_MAX_TX_SEGS]  __aligned(CACHE_LINE_SIZE);
363 #ifdef IFLIB_DIAGNOSTICS
364         uint64_t ift_cpu_exec_count[256];
365 #endif
366 } __aligned(CACHE_LINE_SIZE);
367
368 struct iflib_fl {
369         qidx_t          ifl_cidx;
370         qidx_t          ifl_pidx;
371         qidx_t          ifl_credits;
372         uint8_t         ifl_gen;
373         uint8_t         ifl_rxd_size;
374 #if MEMORY_LOGGING
375         uint64_t        ifl_m_enqueued;
376         uint64_t        ifl_m_dequeued;
377         uint64_t        ifl_cl_enqueued;
378         uint64_t        ifl_cl_dequeued;
379 #endif
380         /* implicit pad */
381
382         bitstr_t        *ifl_rx_bitmap;
383         qidx_t          ifl_fragidx;
384         /* constant */
385         qidx_t          ifl_size;
386         uint16_t        ifl_buf_size;
387         uint16_t        ifl_cltype;
388         uma_zone_t      ifl_zone;
389         iflib_rxsd_array_t      ifl_sds;
390         iflib_rxq_t     ifl_rxq;
391         uint8_t         ifl_id;
392         bus_dma_tag_t   ifl_buf_tag;
393         iflib_dma_info_t        ifl_ifdi;
394         uint64_t        ifl_bus_addrs[IFLIB_MAX_RX_REFRESH] __aligned(CACHE_LINE_SIZE);
395         caddr_t         ifl_vm_addrs[IFLIB_MAX_RX_REFRESH];
396         qidx_t  ifl_rxd_idxs[IFLIB_MAX_RX_REFRESH];
397 }  __aligned(CACHE_LINE_SIZE);
398
399 static inline qidx_t
400 get_inuse(int size, qidx_t cidx, qidx_t pidx, uint8_t gen)
401 {
402         qidx_t used;
403
404         if (pidx > cidx)
405                 used = pidx - cidx;
406         else if (pidx < cidx)
407                 used = size - cidx + pidx;
408         else if (gen == 0 && pidx == cidx)
409                 used = 0;
410         else if (gen == 1 && pidx == cidx)
411                 used = size;
412         else
413                 panic("bad state");
414
415         return (used);
416 }
417
418 #define TXQ_AVAIL(txq) (txq->ift_size - get_inuse(txq->ift_size, txq->ift_cidx, txq->ift_pidx, txq->ift_gen))
419
420 #define IDXDIFF(head, tail, wrap) \
421         ((head) >= (tail) ? (head) - (tail) : (wrap) - (tail) + (head))
422
423 struct iflib_rxq {
424         /* If there is a separate completion queue -
425          * these are the cq cidx and pidx. Otherwise
426          * these are unused.
427          */
428         qidx_t          ifr_size;
429         qidx_t          ifr_cq_cidx;
430         qidx_t          ifr_cq_pidx;
431         uint8_t         ifr_cq_gen;
432         uint8_t         ifr_fl_offset;
433
434         if_ctx_t        ifr_ctx;
435         iflib_fl_t      ifr_fl;
436         uint64_t        ifr_rx_irq;
437         uint16_t        ifr_id;
438         uint8_t         ifr_lro_enabled;
439         uint8_t         ifr_nfl;
440         uint8_t         ifr_ntxqirq;
441         uint8_t         ifr_txqid[IFLIB_MAX_TX_SHARED_INTR];
442         struct lro_ctrl                 ifr_lc;
443         struct grouptask        ifr_task;
444         struct iflib_filter_info ifr_filter_info;
445         iflib_dma_info_t                ifr_ifdi;
446
447         /* dynamically allocate if any drivers need a value substantially larger than this */
448         struct if_rxd_frag      ifr_frags[IFLIB_MAX_RX_SEGS] __aligned(CACHE_LINE_SIZE);
449 #ifdef IFLIB_DIAGNOSTICS
450         uint64_t ifr_cpu_exec_count[256];
451 #endif
452 }  __aligned(CACHE_LINE_SIZE);
453
454 typedef struct if_rxsd {
455         caddr_t *ifsd_cl;
456         struct mbuf **ifsd_m;
457         iflib_fl_t ifsd_fl;
458         qidx_t ifsd_cidx;
459 } *if_rxsd_t;
460
461 /* multiple of word size */
462 #ifdef __LP64__
463 #define PKT_INFO_SIZE   6
464 #define RXD_INFO_SIZE   5
465 #define PKT_TYPE uint64_t
466 #else
467 #define PKT_INFO_SIZE   11
468 #define RXD_INFO_SIZE   8
469 #define PKT_TYPE uint32_t
470 #endif
471 #define PKT_LOOP_BOUND  ((PKT_INFO_SIZE/3)*3)
472 #define RXD_LOOP_BOUND  ((RXD_INFO_SIZE/4)*4)
473
474 typedef struct if_pkt_info_pad {
475         PKT_TYPE pkt_val[PKT_INFO_SIZE];
476 } *if_pkt_info_pad_t;
477 typedef struct if_rxd_info_pad {
478         PKT_TYPE rxd_val[RXD_INFO_SIZE];
479 } *if_rxd_info_pad_t;
480
481 CTASSERT(sizeof(struct if_pkt_info_pad) == sizeof(struct if_pkt_info));
482 CTASSERT(sizeof(struct if_rxd_info_pad) == sizeof(struct if_rxd_info));
483
484
485 static inline void
486 pkt_info_zero(if_pkt_info_t pi)
487 {
488         if_pkt_info_pad_t pi_pad;
489
490         pi_pad = (if_pkt_info_pad_t)pi;
491         pi_pad->pkt_val[0] = 0; pi_pad->pkt_val[1] = 0; pi_pad->pkt_val[2] = 0;
492         pi_pad->pkt_val[3] = 0; pi_pad->pkt_val[4] = 0; pi_pad->pkt_val[5] = 0;
493 #ifndef __LP64__
494         pi_pad->pkt_val[6] = 0; pi_pad->pkt_val[7] = 0; pi_pad->pkt_val[8] = 0;
495         pi_pad->pkt_val[9] = 0; pi_pad->pkt_val[10] = 0;
496 #endif  
497 }
498
499 static device_method_t iflib_pseudo_methods[] = {
500         DEVMETHOD(device_attach, noop_attach),
501         DEVMETHOD(device_detach, iflib_pseudo_detach),
502         DEVMETHOD_END
503 };
504
505 driver_t iflib_pseudodriver = {
506         "iflib_pseudo", iflib_pseudo_methods, sizeof(struct iflib_ctx),
507 };
508
509 static inline void
510 rxd_info_zero(if_rxd_info_t ri)
511 {
512         if_rxd_info_pad_t ri_pad;
513         int i;
514
515         ri_pad = (if_rxd_info_pad_t)ri;
516         for (i = 0; i < RXD_LOOP_BOUND; i += 4) {
517                 ri_pad->rxd_val[i] = 0;
518                 ri_pad->rxd_val[i+1] = 0;
519                 ri_pad->rxd_val[i+2] = 0;
520                 ri_pad->rxd_val[i+3] = 0;
521         }
522 #ifdef __LP64__
523         ri_pad->rxd_val[RXD_INFO_SIZE-1] = 0;
524 #endif
525 }
526
527 /*
528  * Only allow a single packet to take up most 1/nth of the tx ring
529  */
530 #define MAX_SINGLE_PACKET_FRACTION 12
531 #define IF_BAD_DMA (bus_addr_t)-1
532
533 #define CTX_ACTIVE(ctx) ((if_getdrvflags((ctx)->ifc_ifp) & IFF_DRV_RUNNING))
534
535 #define CTX_LOCK_INIT(_sc)  sx_init(&(_sc)->ifc_ctx_sx, "iflib ctx lock")
536 #define CTX_LOCK(ctx) sx_xlock(&(ctx)->ifc_ctx_sx)
537 #define CTX_UNLOCK(ctx) sx_xunlock(&(ctx)->ifc_ctx_sx)
538 #define CTX_LOCK_DESTROY(ctx) sx_destroy(&(ctx)->ifc_ctx_sx)
539
540
541 #define STATE_LOCK_INIT(_sc, _name)  mtx_init(&(_sc)->ifc_state_mtx, _name, "iflib state lock", MTX_DEF)
542 #define STATE_LOCK(ctx) mtx_lock(&(ctx)->ifc_state_mtx)
543 #define STATE_UNLOCK(ctx) mtx_unlock(&(ctx)->ifc_state_mtx)
544 #define STATE_LOCK_DESTROY(ctx) mtx_destroy(&(ctx)->ifc_state_mtx)
545
546
547
548 #define CALLOUT_LOCK(txq)       mtx_lock(&txq->ift_mtx)
549 #define CALLOUT_UNLOCK(txq)     mtx_unlock(&txq->ift_mtx)
550
551 void
552 iflib_set_detach(if_ctx_t ctx)
553 {
554         STATE_LOCK(ctx);
555         ctx->ifc_flags |= IFC_IN_DETACH;
556         STATE_UNLOCK(ctx);
557 }
558
559 /* Our boot-time initialization hook */
560 static int      iflib_module_event_handler(module_t, int, void *);
561
562 static moduledata_t iflib_moduledata = {
563         "iflib",
564         iflib_module_event_handler,
565         NULL
566 };
567
568 DECLARE_MODULE(iflib, iflib_moduledata, SI_SUB_INIT_IF, SI_ORDER_ANY);
569 MODULE_VERSION(iflib, 1);
570
571 MODULE_DEPEND(iflib, pci, 1, 1, 1);
572 MODULE_DEPEND(iflib, ether, 1, 1, 1);
573
574 TASKQGROUP_DEFINE(if_io_tqg, mp_ncpus, 1);
575 TASKQGROUP_DEFINE(if_config_tqg, 1, 1);
576
577 #ifndef IFLIB_DEBUG_COUNTERS
578 #ifdef INVARIANTS
579 #define IFLIB_DEBUG_COUNTERS 1
580 #else
581 #define IFLIB_DEBUG_COUNTERS 0
582 #endif /* !INVARIANTS */
583 #endif
584
585 static SYSCTL_NODE(_net, OID_AUTO, iflib, CTLFLAG_RD, 0,
586                    "iflib driver parameters");
587
588 /*
589  * XXX need to ensure that this can't accidentally cause the head to be moved backwards 
590  */
591 static int iflib_min_tx_latency = 0;
592 SYSCTL_INT(_net_iflib, OID_AUTO, min_tx_latency, CTLFLAG_RW,
593                    &iflib_min_tx_latency, 0, "minimize transmit latency at the possible expense of throughput");
594 static int iflib_no_tx_batch = 0;
595 SYSCTL_INT(_net_iflib, OID_AUTO, no_tx_batch, CTLFLAG_RW,
596                    &iflib_no_tx_batch, 0, "minimize transmit latency at the possible expense of throughput");
597
598
599 #if IFLIB_DEBUG_COUNTERS
600
601 static int iflib_tx_seen;
602 static int iflib_tx_sent;
603 static int iflib_tx_encap;
604 static int iflib_rx_allocs;
605 static int iflib_fl_refills;
606 static int iflib_fl_refills_large;
607 static int iflib_tx_frees;
608
609 SYSCTL_INT(_net_iflib, OID_AUTO, tx_seen, CTLFLAG_RD,
610                    &iflib_tx_seen, 0, "# tx mbufs seen");
611 SYSCTL_INT(_net_iflib, OID_AUTO, tx_sent, CTLFLAG_RD,
612                    &iflib_tx_sent, 0, "# tx mbufs sent");
613 SYSCTL_INT(_net_iflib, OID_AUTO, tx_encap, CTLFLAG_RD,
614                    &iflib_tx_encap, 0, "# tx mbufs encapped");
615 SYSCTL_INT(_net_iflib, OID_AUTO, tx_frees, CTLFLAG_RD,
616                    &iflib_tx_frees, 0, "# tx frees");
617 SYSCTL_INT(_net_iflib, OID_AUTO, rx_allocs, CTLFLAG_RD,
618                    &iflib_rx_allocs, 0, "# rx allocations");
619 SYSCTL_INT(_net_iflib, OID_AUTO, fl_refills, CTLFLAG_RD,
620                    &iflib_fl_refills, 0, "# refills");
621 SYSCTL_INT(_net_iflib, OID_AUTO, fl_refills_large, CTLFLAG_RD,
622                    &iflib_fl_refills_large, 0, "# large refills");
623
624
625 static int iflib_txq_drain_flushing;
626 static int iflib_txq_drain_oactive;
627 static int iflib_txq_drain_notready;
628
629 SYSCTL_INT(_net_iflib, OID_AUTO, txq_drain_flushing, CTLFLAG_RD,
630                    &iflib_txq_drain_flushing, 0, "# drain flushes");
631 SYSCTL_INT(_net_iflib, OID_AUTO, txq_drain_oactive, CTLFLAG_RD,
632                    &iflib_txq_drain_oactive, 0, "# drain oactives");
633 SYSCTL_INT(_net_iflib, OID_AUTO, txq_drain_notready, CTLFLAG_RD,
634                    &iflib_txq_drain_notready, 0, "# drain notready");
635
636
637 static int iflib_encap_load_mbuf_fail;
638 static int iflib_encap_pad_mbuf_fail;
639 static int iflib_encap_txq_avail_fail;
640 static int iflib_encap_txd_encap_fail;
641
642 SYSCTL_INT(_net_iflib, OID_AUTO, encap_load_mbuf_fail, CTLFLAG_RD,
643                    &iflib_encap_load_mbuf_fail, 0, "# busdma load failures");
644 SYSCTL_INT(_net_iflib, OID_AUTO, encap_pad_mbuf_fail, CTLFLAG_RD,
645                    &iflib_encap_pad_mbuf_fail, 0, "# runt frame pad failures");
646 SYSCTL_INT(_net_iflib, OID_AUTO, encap_txq_avail_fail, CTLFLAG_RD,
647                    &iflib_encap_txq_avail_fail, 0, "# txq avail failures");
648 SYSCTL_INT(_net_iflib, OID_AUTO, encap_txd_encap_fail, CTLFLAG_RD,
649                    &iflib_encap_txd_encap_fail, 0, "# driver encap failures");
650
651 static int iflib_task_fn_rxs;
652 static int iflib_rx_intr_enables;
653 static int iflib_fast_intrs;
654 static int iflib_rx_unavail;
655 static int iflib_rx_ctx_inactive;
656 static int iflib_rx_if_input;
657 static int iflib_rx_mbuf_null;
658 static int iflib_rxd_flush;
659
660 static int iflib_verbose_debug;
661
662 SYSCTL_INT(_net_iflib, OID_AUTO, task_fn_rx, CTLFLAG_RD,
663                    &iflib_task_fn_rxs, 0, "# task_fn_rx calls");
664 SYSCTL_INT(_net_iflib, OID_AUTO, rx_intr_enables, CTLFLAG_RD,
665                    &iflib_rx_intr_enables, 0, "# rx intr enables");
666 SYSCTL_INT(_net_iflib, OID_AUTO, fast_intrs, CTLFLAG_RD,
667                    &iflib_fast_intrs, 0, "# fast_intr calls");
668 SYSCTL_INT(_net_iflib, OID_AUTO, rx_unavail, CTLFLAG_RD,
669                    &iflib_rx_unavail, 0, "# times rxeof called with no available data");
670 SYSCTL_INT(_net_iflib, OID_AUTO, rx_ctx_inactive, CTLFLAG_RD,
671                    &iflib_rx_ctx_inactive, 0, "# times rxeof called with inactive context");
672 SYSCTL_INT(_net_iflib, OID_AUTO, rx_if_input, CTLFLAG_RD,
673                    &iflib_rx_if_input, 0, "# times rxeof called if_input");
674 SYSCTL_INT(_net_iflib, OID_AUTO, rx_mbuf_null, CTLFLAG_RD,
675                    &iflib_rx_mbuf_null, 0, "# times rxeof got null mbuf");
676 SYSCTL_INT(_net_iflib, OID_AUTO, rxd_flush, CTLFLAG_RD,
677                  &iflib_rxd_flush, 0, "# times rxd_flush called");
678 SYSCTL_INT(_net_iflib, OID_AUTO, verbose_debug, CTLFLAG_RW,
679                    &iflib_verbose_debug, 0, "enable verbose debugging");
680
681 #define DBG_COUNTER_INC(name) atomic_add_int(&(iflib_ ## name), 1)
682 static void
683 iflib_debug_reset(void)
684 {
685         iflib_tx_seen = iflib_tx_sent = iflib_tx_encap = iflib_rx_allocs =
686                 iflib_fl_refills = iflib_fl_refills_large = iflib_tx_frees =
687                 iflib_txq_drain_flushing = iflib_txq_drain_oactive =
688                 iflib_txq_drain_notready =
689                 iflib_encap_load_mbuf_fail = iflib_encap_pad_mbuf_fail =
690                 iflib_encap_txq_avail_fail = iflib_encap_txd_encap_fail =
691                 iflib_task_fn_rxs = iflib_rx_intr_enables = iflib_fast_intrs =
692                 iflib_rx_unavail =
693                 iflib_rx_ctx_inactive = iflib_rx_if_input =
694                 iflib_rx_mbuf_null = iflib_rxd_flush = 0;
695 }
696
697 #else
698 #define DBG_COUNTER_INC(name)
699 static void iflib_debug_reset(void) {}
700 #endif
701
702 #define IFLIB_DEBUG 0
703
704 static void iflib_tx_structures_free(if_ctx_t ctx);
705 static void iflib_rx_structures_free(if_ctx_t ctx);
706 static int iflib_queues_alloc(if_ctx_t ctx);
707 static int iflib_tx_credits_update(if_ctx_t ctx, iflib_txq_t txq);
708 static int iflib_rxd_avail(if_ctx_t ctx, iflib_rxq_t rxq, qidx_t cidx, qidx_t budget);
709 static int iflib_qset_structures_setup(if_ctx_t ctx);
710 static int iflib_msix_init(if_ctx_t ctx);
711 static int iflib_legacy_setup(if_ctx_t ctx, driver_filter_t filter, void *filterarg, int *rid, const char *str);
712 static void iflib_txq_check_drain(iflib_txq_t txq, int budget);
713 static uint32_t iflib_txq_can_drain(struct ifmp_ring *);
714 #ifdef ALTQ
715 static void iflib_altq_if_start(if_t ifp);
716 static int iflib_altq_if_transmit(if_t ifp, struct mbuf *m);
717 #endif
718 static int iflib_register(if_ctx_t);
719 static void iflib_init_locked(if_ctx_t ctx);
720 static void iflib_add_device_sysctl_pre(if_ctx_t ctx);
721 static void iflib_add_device_sysctl_post(if_ctx_t ctx);
722 static void iflib_ifmp_purge(iflib_txq_t txq);
723 static void _iflib_pre_assert(if_softc_ctx_t scctx);
724 static void iflib_if_init_locked(if_ctx_t ctx);
725 static void iflib_free_intr_mem(if_ctx_t ctx);
726 #ifndef __NO_STRICT_ALIGNMENT
727 static struct mbuf * iflib_fixup_rx(struct mbuf *m);
728 #endif
729
730 NETDUMP_DEFINE(iflib);
731
732 #ifdef DEV_NETMAP
733 #include <sys/selinfo.h>
734 #include <net/netmap.h>
735 #include <dev/netmap/netmap_kern.h>
736
737 MODULE_DEPEND(iflib, netmap, 1, 1, 1);
738
739 static int netmap_fl_refill(iflib_rxq_t rxq, struct netmap_kring *kring, uint32_t nm_i, bool init);
740
741 /*
742  * device-specific sysctl variables:
743  *
744  * iflib_crcstrip: 0: keep CRC in rx frames (default), 1: strip it.
745  *      During regular operations the CRC is stripped, but on some
746  *      hardware reception of frames not multiple of 64 is slower,
747  *      so using crcstrip=0 helps in benchmarks.
748  *
749  * iflib_rx_miss, iflib_rx_miss_bufs:
750  *      count packets that might be missed due to lost interrupts.
751  */
752 SYSCTL_DECL(_dev_netmap);
753 /*
754  * The xl driver by default strips CRCs and we do not override it.
755  */
756
757 int iflib_crcstrip = 1;
758 SYSCTL_INT(_dev_netmap, OID_AUTO, iflib_crcstrip,
759     CTLFLAG_RW, &iflib_crcstrip, 1, "strip CRC on rx frames");
760
761 int iflib_rx_miss, iflib_rx_miss_bufs;
762 SYSCTL_INT(_dev_netmap, OID_AUTO, iflib_rx_miss,
763     CTLFLAG_RW, &iflib_rx_miss, 0, "potentially missed rx intr");
764 SYSCTL_INT(_dev_netmap, OID_AUTO, iflib_rx_miss_bufs,
765     CTLFLAG_RW, &iflib_rx_miss_bufs, 0, "potentially missed rx intr bufs");
766
767 /*
768  * Register/unregister. We are already under netmap lock.
769  * Only called on the first register or the last unregister.
770  */
771 static int
772 iflib_netmap_register(struct netmap_adapter *na, int onoff)
773 {
774         struct ifnet *ifp = na->ifp;
775         if_ctx_t ctx = ifp->if_softc;
776         int status;
777
778         CTX_LOCK(ctx);
779         IFDI_INTR_DISABLE(ctx);
780
781         /* Tell the stack that the interface is no longer active */
782         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
783
784         if (!CTX_IS_VF(ctx))
785                 IFDI_CRCSTRIP_SET(ctx, onoff, iflib_crcstrip);
786
787         /* enable or disable flags and callbacks in na and ifp */
788         if (onoff) {
789                 nm_set_native_flags(na);
790         } else {
791                 nm_clear_native_flags(na);
792         }
793         iflib_stop(ctx);
794         iflib_init_locked(ctx);
795         IFDI_CRCSTRIP_SET(ctx, onoff, iflib_crcstrip); // XXX why twice ?
796         status = ifp->if_drv_flags & IFF_DRV_RUNNING ? 0 : 1;
797         if (status)
798                 nm_clear_native_flags(na);
799         CTX_UNLOCK(ctx);
800         return (status);
801 }
802
803 static int
804 netmap_fl_refill(iflib_rxq_t rxq, struct netmap_kring *kring, uint32_t nm_i, bool init)
805 {
806         struct netmap_adapter *na = kring->na;
807         u_int const lim = kring->nkr_num_slots - 1;
808         u_int head = kring->rhead;
809         struct netmap_ring *ring = kring->ring;
810         bus_dmamap_t *map;
811         struct if_rxd_update iru;
812         if_ctx_t ctx = rxq->ifr_ctx;
813         iflib_fl_t fl = &rxq->ifr_fl[0];
814         uint32_t refill_pidx, nic_i;
815 #if IFLIB_DEBUG_COUNTERS
816         int rf_count = 0;
817 #endif
818
819         if (nm_i == head && __predict_true(!init))
820                 return 0;
821         iru_init(&iru, rxq, 0 /* flid */);
822         map = fl->ifl_sds.ifsd_map;
823         refill_pidx = netmap_idx_k2n(kring, nm_i);
824         /*
825          * IMPORTANT: we must leave one free slot in the ring,
826          * so move head back by one unit
827          */
828         head = nm_prev(head, lim);
829         nic_i = UINT_MAX;
830         DBG_COUNTER_INC(fl_refills);
831         while (nm_i != head) {
832 #if IFLIB_DEBUG_COUNTERS
833                 if (++rf_count == 9)
834                         DBG_COUNTER_INC(fl_refills_large);
835 #endif
836                 for (int tmp_pidx = 0; tmp_pidx < IFLIB_MAX_RX_REFRESH && nm_i != head; tmp_pidx++) {
837                         struct netmap_slot *slot = &ring->slot[nm_i];
838                         void *addr = PNMB(na, slot, &fl->ifl_bus_addrs[tmp_pidx]);
839                         uint32_t nic_i_dma = refill_pidx;
840                         nic_i = netmap_idx_k2n(kring, nm_i);
841
842                         MPASS(tmp_pidx < IFLIB_MAX_RX_REFRESH);
843
844                         if (addr == NETMAP_BUF_BASE(na)) /* bad buf */
845                                 return netmap_ring_reinit(kring);
846
847                         fl->ifl_vm_addrs[tmp_pidx] = addr;
848                         if (__predict_false(init)) {
849                                 netmap_load_map(na, fl->ifl_buf_tag,
850                                     map[nic_i], addr);
851                         } else if (slot->flags & NS_BUF_CHANGED) {
852                                 /* buffer has changed, reload map */
853                                 netmap_reload_map(na, fl->ifl_buf_tag,
854                                     map[nic_i], addr);
855                         }
856                         slot->flags &= ~NS_BUF_CHANGED;
857
858                         nm_i = nm_next(nm_i, lim);
859                         fl->ifl_rxd_idxs[tmp_pidx] = nic_i = nm_next(nic_i, lim);
860                         if (nm_i != head && tmp_pidx < IFLIB_MAX_RX_REFRESH-1)
861                                 continue;
862
863                         iru.iru_pidx = refill_pidx;
864                         iru.iru_count = tmp_pidx+1;
865                         ctx->isc_rxd_refill(ctx->ifc_softc, &iru);
866                         refill_pidx = nic_i;
867                         for (int n = 0; n < iru.iru_count; n++) {
868                                 bus_dmamap_sync(fl->ifl_buf_tag, map[nic_i_dma],
869                                                 BUS_DMASYNC_PREREAD);
870                                 /* XXX - change this to not use the netmap func*/
871                                 nic_i_dma = nm_next(nic_i_dma, lim);
872                         }
873                 }
874         }
875         kring->nr_hwcur = head;
876
877         bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
878             BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
879         if (__predict_true(nic_i != UINT_MAX)) {
880                 ctx->isc_rxd_flush(ctx->ifc_softc, rxq->ifr_id, fl->ifl_id, nic_i);
881                 DBG_COUNTER_INC(rxd_flush);
882         }
883         return (0);
884 }
885
886 /*
887  * Reconcile kernel and user view of the transmit ring.
888  *
889  * All information is in the kring.
890  * Userspace wants to send packets up to the one before kring->rhead,
891  * kernel knows kring->nr_hwcur is the first unsent packet.
892  *
893  * Here we push packets out (as many as possible), and possibly
894  * reclaim buffers from previously completed transmission.
895  *
896  * The caller (netmap) guarantees that there is only one instance
897  * running at any time. Any interference with other driver
898  * methods should be handled by the individual drivers.
899  */
900 static int
901 iflib_netmap_txsync(struct netmap_kring *kring, int flags)
902 {
903         struct netmap_adapter *na = kring->na;
904         struct ifnet *ifp = na->ifp;
905         struct netmap_ring *ring = kring->ring;
906         u_int nm_i;     /* index into the netmap kring */
907         u_int nic_i;    /* index into the NIC ring */
908         u_int n;
909         u_int const lim = kring->nkr_num_slots - 1;
910         u_int const head = kring->rhead;
911         struct if_pkt_info pi;
912
913         /*
914          * interrupts on every tx packet are expensive so request
915          * them every half ring, or where NS_REPORT is set
916          */
917         u_int report_frequency = kring->nkr_num_slots >> 1;
918         /* device-specific */
919         if_ctx_t ctx = ifp->if_softc;
920         iflib_txq_t txq = &ctx->ifc_txqs[kring->ring_id];
921
922         bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
923             BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
924
925         /*
926          * First part: process new packets to send.
927          * nm_i is the current index in the netmap kring,
928          * nic_i is the corresponding index in the NIC ring.
929          *
930          * If we have packets to send (nm_i != head)
931          * iterate over the netmap ring, fetch length and update
932          * the corresponding slot in the NIC ring. Some drivers also
933          * need to update the buffer's physical address in the NIC slot
934          * even NS_BUF_CHANGED is not set (PNMB computes the addresses).
935          *
936          * The netmap_reload_map() calls is especially expensive,
937          * even when (as in this case) the tag is 0, so do only
938          * when the buffer has actually changed.
939          *
940          * If possible do not set the report/intr bit on all slots,
941          * but only a few times per ring or when NS_REPORT is set.
942          *
943          * Finally, on 10G and faster drivers, it might be useful
944          * to prefetch the next slot and txr entry.
945          */
946
947         nm_i = kring->nr_hwcur;
948         if (nm_i != head) {     /* we have new packets to send */
949                 pkt_info_zero(&pi);
950                 pi.ipi_segs = txq->ift_segs;
951                 pi.ipi_qsidx = kring->ring_id;
952                 nic_i = netmap_idx_k2n(kring, nm_i);
953
954                 __builtin_prefetch(&ring->slot[nm_i]);
955                 __builtin_prefetch(&txq->ift_sds.ifsd_m[nic_i]);
956                 __builtin_prefetch(&txq->ift_sds.ifsd_map[nic_i]);
957
958                 for (n = 0; nm_i != head; n++) {
959                         struct netmap_slot *slot = &ring->slot[nm_i];
960                         u_int len = slot->len;
961                         uint64_t paddr;
962                         void *addr = PNMB(na, slot, &paddr);
963                         int flags = (slot->flags & NS_REPORT ||
964                                 nic_i == 0 || nic_i == report_frequency) ?
965                                 IPI_TX_INTR : 0;
966
967                         /* device-specific */
968                         pi.ipi_len = len;
969                         pi.ipi_segs[0].ds_addr = paddr;
970                         pi.ipi_segs[0].ds_len = len;
971                         pi.ipi_nsegs = 1;
972                         pi.ipi_ndescs = 0;
973                         pi.ipi_pidx = nic_i;
974                         pi.ipi_flags = flags;
975
976                         /* Fill the slot in the NIC ring. */
977                         ctx->isc_txd_encap(ctx->ifc_softc, &pi);
978                         DBG_COUNTER_INC(tx_encap);
979
980                         /* prefetch for next round */
981                         __builtin_prefetch(&ring->slot[nm_i + 1]);
982                         __builtin_prefetch(&txq->ift_sds.ifsd_m[nic_i + 1]);
983                         __builtin_prefetch(&txq->ift_sds.ifsd_map[nic_i + 1]);
984
985                         NM_CHECK_ADDR_LEN(na, addr, len);
986
987                         if (slot->flags & NS_BUF_CHANGED) {
988                                 /* buffer has changed, reload map */
989                                 netmap_reload_map(na, txq->ift_buf_tag,
990                                     txq->ift_sds.ifsd_map[nic_i], addr);
991                         }
992                         /* make sure changes to the buffer are synced */
993                         bus_dmamap_sync(txq->ift_buf_tag,
994                             txq->ift_sds.ifsd_map[nic_i],
995                             BUS_DMASYNC_PREWRITE);
996
997                         slot->flags &= ~(NS_REPORT | NS_BUF_CHANGED);
998                         nm_i = nm_next(nm_i, lim);
999                         nic_i = nm_next(nic_i, lim);
1000                 }
1001                 kring->nr_hwcur = nm_i;
1002
1003                 /* synchronize the NIC ring */
1004                 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
1005                     BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1006
1007                 /* (re)start the tx unit up to slot nic_i (excluded) */
1008                 ctx->isc_txd_flush(ctx->ifc_softc, txq->ift_id, nic_i);
1009         }
1010
1011         /*
1012          * Second part: reclaim buffers for completed transmissions.
1013          *
1014          * If there are unclaimed buffers, attempt to reclaim them.
1015          * If none are reclaimed, and TX IRQs are not in use, do an initial
1016          * minimal delay, then trigger the tx handler which will spin in the
1017          * group task queue.
1018          */
1019         if (kring->nr_hwtail != nm_prev(kring->nr_hwcur, lim)) {
1020                 if (iflib_tx_credits_update(ctx, txq)) {
1021                         /* some tx completed, increment avail */
1022                         nic_i = txq->ift_cidx_processed;
1023                         kring->nr_hwtail = nm_prev(netmap_idx_n2k(kring, nic_i), lim);
1024                 }
1025         }
1026         if (!(ctx->ifc_flags & IFC_NETMAP_TX_IRQ))
1027                 if (kring->nr_hwtail != nm_prev(kring->nr_hwcur, lim)) {
1028                         callout_reset_on(&txq->ift_timer, hz < 2000 ? 1 : hz / 1000,
1029                             iflib_timer, txq, txq->ift_timer.c_cpu);
1030         }
1031         return (0);
1032 }
1033
1034 /*
1035  * Reconcile kernel and user view of the receive ring.
1036  * Same as for the txsync, this routine must be efficient.
1037  * The caller guarantees a single invocations, but races against
1038  * the rest of the driver should be handled here.
1039  *
1040  * On call, kring->rhead is the first packet that userspace wants
1041  * to keep, and kring->rcur is the wakeup point.
1042  * The kernel has previously reported packets up to kring->rtail.
1043  *
1044  * If (flags & NAF_FORCE_READ) also check for incoming packets irrespective
1045  * of whether or not we received an interrupt.
1046  */
1047 static int
1048 iflib_netmap_rxsync(struct netmap_kring *kring, int flags)
1049 {
1050         struct netmap_adapter *na = kring->na;
1051         struct netmap_ring *ring = kring->ring;
1052         iflib_fl_t fl;
1053         uint32_t nm_i;  /* index into the netmap ring */
1054         uint32_t nic_i; /* index into the NIC ring */
1055         u_int i, n;
1056         u_int const lim = kring->nkr_num_slots - 1;
1057         u_int const head = kring->rhead;
1058         int force_update = (flags & NAF_FORCE_READ) || kring->nr_kflags & NKR_PENDINTR;
1059         struct if_rxd_info ri;
1060
1061         struct ifnet *ifp = na->ifp;
1062         if_ctx_t ctx = ifp->if_softc;
1063         iflib_rxq_t rxq = &ctx->ifc_rxqs[kring->ring_id];
1064         if (head > lim)
1065                 return netmap_ring_reinit(kring);
1066
1067         /*
1068          * XXX netmap_fl_refill() only ever (re)fills free list 0 so far.
1069          */
1070
1071         for (i = 0, fl = rxq->ifr_fl; i < rxq->ifr_nfl; i++, fl++) {
1072                 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
1073                     BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1074         }
1075
1076         /*
1077          * First part: import newly received packets.
1078          *
1079          * nm_i is the index of the next free slot in the netmap ring,
1080          * nic_i is the index of the next received packet in the NIC ring,
1081          * and they may differ in case if_init() has been called while
1082          * in netmap mode. For the receive ring we have
1083          *
1084          *      nic_i = rxr->next_check;
1085          *      nm_i = kring->nr_hwtail (previous)
1086          * and
1087          *      nm_i == (nic_i + kring->nkr_hwofs) % ring_size
1088          *
1089          * rxr->next_check is set to 0 on a ring reinit
1090          */
1091         if (netmap_no_pendintr || force_update) {
1092                 int crclen = iflib_crcstrip ? 0 : 4;
1093                 int error, avail;
1094
1095                 for (i = 0; i < rxq->ifr_nfl; i++) {
1096                         fl = &rxq->ifr_fl[i];
1097                         nic_i = fl->ifl_cidx;
1098                         nm_i = netmap_idx_n2k(kring, nic_i);
1099                         avail = ctx->isc_rxd_available(ctx->ifc_softc,
1100                             rxq->ifr_id, nic_i, USHRT_MAX);
1101                         for (n = 0; avail > 0; n++, avail--) {
1102                                 rxd_info_zero(&ri);
1103                                 ri.iri_frags = rxq->ifr_frags;
1104                                 ri.iri_qsidx = kring->ring_id;
1105                                 ri.iri_ifp = ctx->ifc_ifp;
1106                                 ri.iri_cidx = nic_i;
1107
1108                                 error = ctx->isc_rxd_pkt_get(ctx->ifc_softc, &ri);
1109                                 ring->slot[nm_i].len = error ? 0 : ri.iri_len - crclen;
1110                                 ring->slot[nm_i].flags = 0;
1111                                 bus_dmamap_sync(fl->ifl_buf_tag,
1112                                     fl->ifl_sds.ifsd_map[nic_i], BUS_DMASYNC_POSTREAD);
1113                                 nm_i = nm_next(nm_i, lim);
1114                                 nic_i = nm_next(nic_i, lim);
1115                         }
1116                         if (n) { /* update the state variables */
1117                                 if (netmap_no_pendintr && !force_update) {
1118                                         /* diagnostics */
1119                                         iflib_rx_miss ++;
1120                                         iflib_rx_miss_bufs += n;
1121                                 }
1122                                 fl->ifl_cidx = nic_i;
1123                                 kring->nr_hwtail = nm_i;
1124                         }
1125                         kring->nr_kflags &= ~NKR_PENDINTR;
1126                 }
1127         }
1128         /*
1129          * Second part: skip past packets that userspace has released.
1130          * (kring->nr_hwcur to head excluded),
1131          * and make the buffers available for reception.
1132          * As usual nm_i is the index in the netmap ring,
1133          * nic_i is the index in the NIC ring, and
1134          * nm_i == (nic_i + kring->nkr_hwofs) % ring_size
1135          */
1136         /* XXX not sure how this will work with multiple free lists */
1137         nm_i = kring->nr_hwcur;
1138
1139         return (netmap_fl_refill(rxq, kring, nm_i, false));
1140 }
1141
1142 static void
1143 iflib_netmap_intr(struct netmap_adapter *na, int onoff)
1144 {
1145         struct ifnet *ifp = na->ifp;
1146         if_ctx_t ctx = ifp->if_softc;
1147
1148         CTX_LOCK(ctx);
1149         if (onoff) {
1150                 IFDI_INTR_ENABLE(ctx);
1151         } else {
1152                 IFDI_INTR_DISABLE(ctx);
1153         }
1154         CTX_UNLOCK(ctx);
1155 }
1156
1157
1158 static int
1159 iflib_netmap_attach(if_ctx_t ctx)
1160 {
1161         struct netmap_adapter na;
1162         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1163
1164         bzero(&na, sizeof(na));
1165
1166         na.ifp = ctx->ifc_ifp;
1167         na.na_flags = NAF_BDG_MAYSLEEP;
1168         MPASS(ctx->ifc_softc_ctx.isc_ntxqsets);
1169         MPASS(ctx->ifc_softc_ctx.isc_nrxqsets);
1170
1171         na.num_tx_desc = scctx->isc_ntxd[0];
1172         na.num_rx_desc = scctx->isc_nrxd[0];
1173         na.nm_txsync = iflib_netmap_txsync;
1174         na.nm_rxsync = iflib_netmap_rxsync;
1175         na.nm_register = iflib_netmap_register;
1176         na.nm_intr = iflib_netmap_intr;
1177         na.num_tx_rings = ctx->ifc_softc_ctx.isc_ntxqsets;
1178         na.num_rx_rings = ctx->ifc_softc_ctx.isc_nrxqsets;
1179         return (netmap_attach(&na));
1180 }
1181
1182 static void
1183 iflib_netmap_txq_init(if_ctx_t ctx, iflib_txq_t txq)
1184 {
1185         struct netmap_adapter *na = NA(ctx->ifc_ifp);
1186         struct netmap_slot *slot;
1187
1188         slot = netmap_reset(na, NR_TX, txq->ift_id, 0);
1189         if (slot == NULL)
1190                 return;
1191         for (int i = 0; i < ctx->ifc_softc_ctx.isc_ntxd[0]; i++) {
1192
1193                 /*
1194                  * In netmap mode, set the map for the packet buffer.
1195                  * NOTE: Some drivers (not this one) also need to set
1196                  * the physical buffer address in the NIC ring.
1197                  * netmap_idx_n2k() maps a nic index, i, into the corresponding
1198                  * netmap slot index, si
1199                  */
1200                 int si = netmap_idx_n2k(na->tx_rings[txq->ift_id], i);
1201                 netmap_load_map(na, txq->ift_buf_tag, txq->ift_sds.ifsd_map[i],
1202                     NMB(na, slot + si));
1203         }
1204 }
1205
1206 static void
1207 iflib_netmap_rxq_init(if_ctx_t ctx, iflib_rxq_t rxq)
1208 {
1209         struct netmap_adapter *na = NA(ctx->ifc_ifp);
1210         struct netmap_kring *kring = na->rx_rings[rxq->ifr_id];
1211         struct netmap_slot *slot;
1212         uint32_t nm_i;
1213
1214         slot = netmap_reset(na, NR_RX, rxq->ifr_id, 0);
1215         if (slot == NULL)
1216                 return;
1217         nm_i = netmap_idx_n2k(kring, 0);
1218         netmap_fl_refill(rxq, kring, nm_i, true);
1219 }
1220
1221 static void
1222 iflib_netmap_timer_adjust(if_ctx_t ctx, iflib_txq_t txq, uint32_t *reset_on)
1223 {
1224         struct netmap_kring *kring;
1225         uint16_t txqid;
1226
1227         txqid = txq->ift_id;
1228         kring = NA(ctx->ifc_ifp)->tx_rings[txqid];
1229
1230         if (kring->nr_hwcur != nm_next(kring->nr_hwtail, kring->nkr_num_slots - 1)) {
1231                 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
1232                     BUS_DMASYNC_POSTREAD);
1233                 if (ctx->isc_txd_credits_update(ctx->ifc_softc, txqid, false))
1234                         netmap_tx_irq(ctx->ifc_ifp, txqid);
1235                 if (!(ctx->ifc_flags & IFC_NETMAP_TX_IRQ)) {
1236                         if (hz < 2000)
1237                                 *reset_on = 1;
1238                         else
1239                                 *reset_on = hz / 1000;
1240                 }
1241         }
1242 }
1243
1244 #define iflib_netmap_detach(ifp) netmap_detach(ifp)
1245
1246 #else
1247 #define iflib_netmap_txq_init(ctx, txq)
1248 #define iflib_netmap_rxq_init(ctx, rxq)
1249 #define iflib_netmap_detach(ifp)
1250
1251 #define iflib_netmap_attach(ctx) (0)
1252 #define netmap_rx_irq(ifp, qid, budget) (0)
1253 #define netmap_tx_irq(ifp, qid) do {} while (0)
1254 #define iflib_netmap_timer_adjust(ctx, txq, reset_on)
1255
1256 #endif
1257
1258 #if defined(__i386__) || defined(__amd64__)
1259 static __inline void
1260 prefetch(void *x)
1261 {
1262         __asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
1263 }
1264 static __inline void
1265 prefetch2cachelines(void *x)
1266 {
1267         __asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
1268 #if (CACHE_LINE_SIZE < 128)
1269         __asm volatile("prefetcht0 %0" :: "m" (*(((unsigned long *)x)+CACHE_LINE_SIZE/(sizeof(unsigned long)))));
1270 #endif
1271 }
1272 #else
1273 #define prefetch(x)
1274 #define prefetch2cachelines(x)
1275 #endif
1276
1277 static void
1278 iflib_gen_mac(if_ctx_t ctx)
1279 {
1280         struct thread *td;
1281         MD5_CTX mdctx;
1282         char uuid[HOSTUUIDLEN+1];
1283         char buf[HOSTUUIDLEN+16];
1284         uint8_t *mac;
1285         unsigned char digest[16];
1286
1287         td = curthread;
1288         mac = ctx->ifc_mac;
1289         uuid[HOSTUUIDLEN] = 0;
1290         bcopy(td->td_ucred->cr_prison->pr_hostuuid, uuid, HOSTUUIDLEN);
1291         snprintf(buf, HOSTUUIDLEN+16, "%s-%s", uuid, device_get_nameunit(ctx->ifc_dev));
1292         /*
1293          * Generate a pseudo-random, deterministic MAC
1294          * address based on the UUID and unit number.
1295          * The FreeBSD Foundation OUI of 58-9C-FC is used.
1296          */
1297         MD5Init(&mdctx);
1298         MD5Update(&mdctx, buf, strlen(buf));
1299         MD5Final(digest, &mdctx);
1300
1301         mac[0] = 0x58;
1302         mac[1] = 0x9C;
1303         mac[2] = 0xFC;
1304         mac[3] = digest[0];
1305         mac[4] = digest[1];
1306         mac[5] = digest[2];
1307 }
1308
1309 static void
1310 iru_init(if_rxd_update_t iru, iflib_rxq_t rxq, uint8_t flid)
1311 {
1312         iflib_fl_t fl;
1313
1314         fl = &rxq->ifr_fl[flid];
1315         iru->iru_paddrs = fl->ifl_bus_addrs;
1316         iru->iru_vaddrs = &fl->ifl_vm_addrs[0];
1317         iru->iru_idxs = fl->ifl_rxd_idxs;
1318         iru->iru_qsidx = rxq->ifr_id;
1319         iru->iru_buf_size = fl->ifl_buf_size;
1320         iru->iru_flidx = fl->ifl_id;
1321 }
1322
1323 static void
1324 _iflib_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nseg, int err)
1325 {
1326         if (err)
1327                 return;
1328         *(bus_addr_t *) arg = segs[0].ds_addr;
1329 }
1330
1331 int
1332 iflib_dma_alloc_align(if_ctx_t ctx, int size, int align, iflib_dma_info_t dma, int mapflags)
1333 {
1334         int err;
1335         device_t dev = ctx->ifc_dev;
1336
1337         err = bus_dma_tag_create(bus_get_dma_tag(dev),  /* parent */
1338                                 align, 0,               /* alignment, bounds */
1339                                 BUS_SPACE_MAXADDR,      /* lowaddr */
1340                                 BUS_SPACE_MAXADDR,      /* highaddr */
1341                                 NULL, NULL,             /* filter, filterarg */
1342                                 size,                   /* maxsize */
1343                                 1,                      /* nsegments */
1344                                 size,                   /* maxsegsize */
1345                                 BUS_DMA_ALLOCNOW,       /* flags */
1346                                 NULL,                   /* lockfunc */
1347                                 NULL,                   /* lockarg */
1348                                 &dma->idi_tag);
1349         if (err) {
1350                 device_printf(dev,
1351                     "%s: bus_dma_tag_create failed: %d\n",
1352                     __func__, err);
1353                 goto fail_0;
1354         }
1355
1356         err = bus_dmamem_alloc(dma->idi_tag, (void**) &dma->idi_vaddr,
1357             BUS_DMA_NOWAIT | BUS_DMA_COHERENT | BUS_DMA_ZERO, &dma->idi_map);
1358         if (err) {
1359                 device_printf(dev,
1360                     "%s: bus_dmamem_alloc(%ju) failed: %d\n",
1361                     __func__, (uintmax_t)size, err);
1362                 goto fail_1;
1363         }
1364
1365         dma->idi_paddr = IF_BAD_DMA;
1366         err = bus_dmamap_load(dma->idi_tag, dma->idi_map, dma->idi_vaddr,
1367             size, _iflib_dmamap_cb, &dma->idi_paddr, mapflags | BUS_DMA_NOWAIT);
1368         if (err || dma->idi_paddr == IF_BAD_DMA) {
1369                 device_printf(dev,
1370                     "%s: bus_dmamap_load failed: %d\n",
1371                     __func__, err);
1372                 goto fail_2;
1373         }
1374
1375         dma->idi_size = size;
1376         return (0);
1377
1378 fail_2:
1379         bus_dmamem_free(dma->idi_tag, dma->idi_vaddr, dma->idi_map);
1380 fail_1:
1381         bus_dma_tag_destroy(dma->idi_tag);
1382 fail_0:
1383         dma->idi_tag = NULL;
1384
1385         return (err);
1386 }
1387
1388 int
1389 iflib_dma_alloc(if_ctx_t ctx, int size, iflib_dma_info_t dma, int mapflags)
1390 {
1391         if_shared_ctx_t sctx = ctx->ifc_sctx;
1392
1393         KASSERT(sctx->isc_q_align != 0, ("alignment value not initialized"));
1394
1395         return (iflib_dma_alloc_align(ctx, size, sctx->isc_q_align, dma, mapflags));
1396 }
1397
1398 int
1399 iflib_dma_alloc_multi(if_ctx_t ctx, int *sizes, iflib_dma_info_t *dmalist, int mapflags, int count)
1400 {
1401         int i, err;
1402         iflib_dma_info_t *dmaiter;
1403
1404         dmaiter = dmalist;
1405         for (i = 0; i < count; i++, dmaiter++) {
1406                 if ((err = iflib_dma_alloc(ctx, sizes[i], *dmaiter, mapflags)) != 0)
1407                         break;
1408         }
1409         if (err)
1410                 iflib_dma_free_multi(dmalist, i);
1411         return (err);
1412 }
1413
1414 void
1415 iflib_dma_free(iflib_dma_info_t dma)
1416 {
1417         if (dma->idi_tag == NULL)
1418                 return;
1419         if (dma->idi_paddr != IF_BAD_DMA) {
1420                 bus_dmamap_sync(dma->idi_tag, dma->idi_map,
1421                     BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1422                 bus_dmamap_unload(dma->idi_tag, dma->idi_map);
1423                 dma->idi_paddr = IF_BAD_DMA;
1424         }
1425         if (dma->idi_vaddr != NULL) {
1426                 bus_dmamem_free(dma->idi_tag, dma->idi_vaddr, dma->idi_map);
1427                 dma->idi_vaddr = NULL;
1428         }
1429         bus_dma_tag_destroy(dma->idi_tag);
1430         dma->idi_tag = NULL;
1431 }
1432
1433 void
1434 iflib_dma_free_multi(iflib_dma_info_t *dmalist, int count)
1435 {
1436         int i;
1437         iflib_dma_info_t *dmaiter = dmalist;
1438
1439         for (i = 0; i < count; i++, dmaiter++)
1440                 iflib_dma_free(*dmaiter);
1441 }
1442
1443 #ifdef EARLY_AP_STARTUP
1444 static const int iflib_started = 1;
1445 #else
1446 /*
1447  * We used to abuse the smp_started flag to decide if the queues have been
1448  * fully initialized (by late taskqgroup_adjust() calls in a SYSINIT()).
1449  * That gave bad races, since the SYSINIT() runs strictly after smp_started
1450  * is set.  Run a SYSINIT() strictly after that to just set a usable
1451  * completion flag.
1452  */
1453
1454 static int iflib_started;
1455
1456 static void
1457 iflib_record_started(void *arg)
1458 {
1459         iflib_started = 1;
1460 }
1461
1462 SYSINIT(iflib_record_started, SI_SUB_SMP + 1, SI_ORDER_FIRST,
1463         iflib_record_started, NULL);
1464 #endif
1465
1466 static int
1467 iflib_fast_intr(void *arg)
1468 {
1469         iflib_filter_info_t info = arg;
1470         struct grouptask *gtask = info->ifi_task;
1471         if (!iflib_started)
1472                 return (FILTER_HANDLED);
1473
1474         DBG_COUNTER_INC(fast_intrs);
1475         if (info->ifi_filter != NULL && info->ifi_filter(info->ifi_filter_arg) == FILTER_HANDLED)
1476                 return (FILTER_HANDLED);
1477
1478         GROUPTASK_ENQUEUE(gtask);
1479         return (FILTER_HANDLED);
1480 }
1481
1482 static int
1483 iflib_fast_intr_rxtx(void *arg)
1484 {
1485         iflib_filter_info_t info = arg;
1486         struct grouptask *gtask = info->ifi_task;
1487         if_ctx_t ctx;
1488         iflib_rxq_t rxq = (iflib_rxq_t)info->ifi_ctx;
1489         iflib_txq_t txq;
1490         void *sc;
1491         int i, cidx;
1492         qidx_t txqid;
1493
1494         if (!iflib_started)
1495                 return (FILTER_HANDLED);
1496
1497         DBG_COUNTER_INC(fast_intrs);
1498         if (info->ifi_filter != NULL && info->ifi_filter(info->ifi_filter_arg) == FILTER_HANDLED)
1499                 return (FILTER_HANDLED);
1500
1501         ctx = rxq->ifr_ctx;
1502         sc = ctx->ifc_softc;
1503         MPASS(rxq->ifr_ntxqirq);
1504         for (i = 0; i < rxq->ifr_ntxqirq; i++) {
1505                 txqid = rxq->ifr_txqid[i];
1506                 txq = &ctx->ifc_txqs[txqid];
1507                 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
1508                     BUS_DMASYNC_POSTREAD);
1509                 if (!ctx->isc_txd_credits_update(sc, txqid, false)) {
1510                         IFDI_TX_QUEUE_INTR_ENABLE(ctx, txqid);
1511                         continue;
1512                 }
1513                 GROUPTASK_ENQUEUE(&txq->ift_task);
1514         }
1515         if (ctx->ifc_sctx->isc_flags & IFLIB_HAS_RXCQ)
1516                 cidx = rxq->ifr_cq_cidx;
1517         else
1518                 cidx = rxq->ifr_fl[0].ifl_cidx;
1519         if (iflib_rxd_avail(ctx, rxq, cidx, 1))
1520                 GROUPTASK_ENQUEUE(gtask);
1521         else {
1522                 IFDI_RX_QUEUE_INTR_ENABLE(ctx, rxq->ifr_id);
1523                 DBG_COUNTER_INC(rx_intr_enables);
1524         }
1525         return (FILTER_HANDLED);
1526 }
1527
1528
1529 static int
1530 iflib_fast_intr_ctx(void *arg)
1531 {
1532         iflib_filter_info_t info = arg;
1533         struct grouptask *gtask = info->ifi_task;
1534
1535         if (!iflib_started)
1536                 return (FILTER_HANDLED);
1537
1538         DBG_COUNTER_INC(fast_intrs);
1539         if (info->ifi_filter != NULL && info->ifi_filter(info->ifi_filter_arg) == FILTER_HANDLED)
1540                 return (FILTER_HANDLED);
1541
1542         GROUPTASK_ENQUEUE(gtask);
1543         return (FILTER_HANDLED);
1544 }
1545
1546 static int
1547 _iflib_irq_alloc(if_ctx_t ctx, if_irq_t irq, int rid,
1548                  driver_filter_t filter, driver_intr_t handler, void *arg,
1549                  const char *name)
1550 {
1551         int rc, flags;
1552         struct resource *res;
1553         void *tag = NULL;
1554         device_t dev = ctx->ifc_dev;
1555
1556         flags = RF_ACTIVE;
1557         if (ctx->ifc_flags & IFC_LEGACY)
1558                 flags |= RF_SHAREABLE;
1559         MPASS(rid < 512);
1560         irq->ii_rid = rid;
1561         res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &irq->ii_rid, flags);
1562         if (res == NULL) {
1563                 device_printf(dev,
1564                     "failed to allocate IRQ for rid %d, name %s.\n", rid, name);
1565                 return (ENOMEM);
1566         }
1567         irq->ii_res = res;
1568         KASSERT(filter == NULL || handler == NULL, ("filter and handler can't both be non-NULL"));
1569         rc = bus_setup_intr(dev, res, INTR_MPSAFE | INTR_TYPE_NET,
1570                                                 filter, handler, arg, &tag);
1571         if (rc != 0) {
1572                 device_printf(dev,
1573                     "failed to setup interrupt for rid %d, name %s: %d\n",
1574                                           rid, name ? name : "unknown", rc);
1575                 return (rc);
1576         } else if (name)
1577                 bus_describe_intr(dev, res, tag, "%s", name);
1578
1579         irq->ii_tag = tag;
1580         return (0);
1581 }
1582
1583
1584 /*********************************************************************
1585  *
1586  *  Allocate DMA resources for TX buffers as well as memory for the TX
1587  *  mbuf map.  TX DMA maps (non-TSO/TSO) and TX mbuf map are kept in a
1588  *  iflib_sw_tx_desc_array structure, storing all the information that
1589  *  is needed to transmit a packet on the wire.  This is called only
1590  *  once at attach, setup is done every reset.
1591  *
1592  **********************************************************************/
1593 static int
1594 iflib_txsd_alloc(iflib_txq_t txq)
1595 {
1596         if_ctx_t ctx = txq->ift_ctx;
1597         if_shared_ctx_t sctx = ctx->ifc_sctx;
1598         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1599         device_t dev = ctx->ifc_dev;
1600         bus_size_t tsomaxsize;
1601         int err, nsegments, ntsosegments;
1602         bool tso;
1603
1604         nsegments = scctx->isc_tx_nsegments;
1605         ntsosegments = scctx->isc_tx_tso_segments_max;
1606         tsomaxsize = scctx->isc_tx_tso_size_max;
1607         if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_VLAN_MTU)
1608                 tsomaxsize += sizeof(struct ether_vlan_header);
1609         MPASS(scctx->isc_ntxd[0] > 0);
1610         MPASS(scctx->isc_ntxd[txq->ift_br_offset] > 0);
1611         MPASS(nsegments > 0);
1612         if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_TSO) {
1613                 MPASS(ntsosegments > 0);
1614                 MPASS(sctx->isc_tso_maxsize >= tsomaxsize);
1615         }
1616
1617         /*
1618          * Set up DMA tags for TX buffers.
1619          */
1620         if ((err = bus_dma_tag_create(bus_get_dma_tag(dev),
1621                                1, 0,                    /* alignment, bounds */
1622                                BUS_SPACE_MAXADDR,       /* lowaddr */
1623                                BUS_SPACE_MAXADDR,       /* highaddr */
1624                                NULL, NULL,              /* filter, filterarg */
1625                                sctx->isc_tx_maxsize,            /* maxsize */
1626                                nsegments,       /* nsegments */
1627                                sctx->isc_tx_maxsegsize, /* maxsegsize */
1628                                0,                       /* flags */
1629                                NULL,                    /* lockfunc */
1630                                NULL,                    /* lockfuncarg */
1631                                &txq->ift_buf_tag))) {
1632                 device_printf(dev,"Unable to allocate TX DMA tag: %d\n", err);
1633                 device_printf(dev,"maxsize: %ju nsegments: %d maxsegsize: %ju\n",
1634                     (uintmax_t)sctx->isc_tx_maxsize, nsegments, (uintmax_t)sctx->isc_tx_maxsegsize);
1635                 goto fail;
1636         }
1637         tso = (if_getcapabilities(ctx->ifc_ifp) & IFCAP_TSO) != 0;
1638         if (tso && (err = bus_dma_tag_create(bus_get_dma_tag(dev),
1639                                1, 0,                    /* alignment, bounds */
1640                                BUS_SPACE_MAXADDR,       /* lowaddr */
1641                                BUS_SPACE_MAXADDR,       /* highaddr */
1642                                NULL, NULL,              /* filter, filterarg */
1643                                tsomaxsize,              /* maxsize */
1644                                ntsosegments,    /* nsegments */
1645                                sctx->isc_tso_maxsegsize,/* maxsegsize */
1646                                0,                       /* flags */
1647                                NULL,                    /* lockfunc */
1648                                NULL,                    /* lockfuncarg */
1649                                &txq->ift_tso_buf_tag))) {
1650                 device_printf(dev, "Unable to allocate TSO TX DMA tag: %d\n",
1651                     err);
1652                 goto fail;
1653         }
1654
1655         /* Allocate memory for the TX mbuf map. */
1656         if (!(txq->ift_sds.ifsd_m =
1657             (struct mbuf **) malloc(sizeof(struct mbuf *) *
1658             scctx->isc_ntxd[txq->ift_br_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1659                 device_printf(dev, "Unable to allocate TX mbuf map memory\n");
1660                 err = ENOMEM;
1661                 goto fail;
1662         }
1663
1664         /*
1665          * Create the DMA maps for TX buffers.
1666          */
1667         if ((txq->ift_sds.ifsd_map = (bus_dmamap_t *)malloc(
1668             sizeof(bus_dmamap_t) * scctx->isc_ntxd[txq->ift_br_offset],
1669             M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
1670                 device_printf(dev,
1671                     "Unable to allocate TX buffer DMA map memory\n");
1672                 err = ENOMEM;
1673                 goto fail;
1674         }
1675         if (tso && (txq->ift_sds.ifsd_tso_map = (bus_dmamap_t *)malloc(
1676             sizeof(bus_dmamap_t) * scctx->isc_ntxd[txq->ift_br_offset],
1677             M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
1678                 device_printf(dev,
1679                     "Unable to allocate TSO TX buffer map memory\n");
1680                 err = ENOMEM;
1681                 goto fail;
1682         }
1683         for (int i = 0; i < scctx->isc_ntxd[txq->ift_br_offset]; i++) {
1684                 err = bus_dmamap_create(txq->ift_buf_tag, 0,
1685                     &txq->ift_sds.ifsd_map[i]);
1686                 if (err != 0) {
1687                         device_printf(dev, "Unable to create TX DMA map\n");
1688                         goto fail;
1689                 }
1690                 if (!tso)
1691                         continue;
1692                 err = bus_dmamap_create(txq->ift_tso_buf_tag, 0,
1693                     &txq->ift_sds.ifsd_tso_map[i]);
1694                 if (err != 0) {
1695                         device_printf(dev, "Unable to create TSO TX DMA map\n");
1696                         goto fail;
1697                 }
1698         }
1699         return (0);
1700 fail:
1701         /* We free all, it handles case where we are in the middle */
1702         iflib_tx_structures_free(ctx);
1703         return (err);
1704 }
1705
1706 static void
1707 iflib_txsd_destroy(if_ctx_t ctx, iflib_txq_t txq, int i)
1708 {
1709         bus_dmamap_t map;
1710
1711         map = NULL;
1712         if (txq->ift_sds.ifsd_map != NULL)
1713                 map = txq->ift_sds.ifsd_map[i];
1714         if (map != NULL) {
1715                 bus_dmamap_sync(txq->ift_buf_tag, map, BUS_DMASYNC_POSTWRITE);
1716                 bus_dmamap_unload(txq->ift_buf_tag, map);
1717                 bus_dmamap_destroy(txq->ift_buf_tag, map);
1718                 txq->ift_sds.ifsd_map[i] = NULL;
1719         }
1720
1721         map = NULL;
1722         if (txq->ift_sds.ifsd_tso_map != NULL)
1723                 map = txq->ift_sds.ifsd_tso_map[i];
1724         if (map != NULL) {
1725                 bus_dmamap_sync(txq->ift_tso_buf_tag, map,
1726                     BUS_DMASYNC_POSTWRITE);
1727                 bus_dmamap_unload(txq->ift_tso_buf_tag, map);
1728                 bus_dmamap_destroy(txq->ift_tso_buf_tag, map);
1729                 txq->ift_sds.ifsd_tso_map[i] = NULL;
1730         }
1731 }
1732
1733 static void
1734 iflib_txq_destroy(iflib_txq_t txq)
1735 {
1736         if_ctx_t ctx = txq->ift_ctx;
1737
1738         for (int i = 0; i < txq->ift_size; i++)
1739                 iflib_txsd_destroy(ctx, txq, i);
1740         if (txq->ift_sds.ifsd_map != NULL) {
1741                 free(txq->ift_sds.ifsd_map, M_IFLIB);
1742                 txq->ift_sds.ifsd_map = NULL;
1743         }
1744         if (txq->ift_sds.ifsd_tso_map != NULL) {
1745                 free(txq->ift_sds.ifsd_tso_map, M_IFLIB);
1746                 txq->ift_sds.ifsd_tso_map = NULL;
1747         }
1748         if (txq->ift_sds.ifsd_m != NULL) {
1749                 free(txq->ift_sds.ifsd_m, M_IFLIB);
1750                 txq->ift_sds.ifsd_m = NULL;
1751         }
1752         if (txq->ift_buf_tag != NULL) {
1753                 bus_dma_tag_destroy(txq->ift_buf_tag);
1754                 txq->ift_buf_tag = NULL;
1755         }
1756         if (txq->ift_tso_buf_tag != NULL) {
1757                 bus_dma_tag_destroy(txq->ift_tso_buf_tag);
1758                 txq->ift_tso_buf_tag = NULL;
1759         }
1760 }
1761
1762 static void
1763 iflib_txsd_free(if_ctx_t ctx, iflib_txq_t txq, int i)
1764 {
1765         struct mbuf **mp;
1766
1767         mp = &txq->ift_sds.ifsd_m[i];
1768         if (*mp == NULL)
1769                 return;
1770
1771         if (txq->ift_sds.ifsd_map != NULL) {
1772                 bus_dmamap_sync(txq->ift_buf_tag,
1773                     txq->ift_sds.ifsd_map[i], BUS_DMASYNC_POSTWRITE);
1774                 bus_dmamap_unload(txq->ift_buf_tag, txq->ift_sds.ifsd_map[i]);
1775         }
1776         if (txq->ift_sds.ifsd_tso_map != NULL) {
1777                 bus_dmamap_sync(txq->ift_tso_buf_tag,
1778                     txq->ift_sds.ifsd_tso_map[i], BUS_DMASYNC_POSTWRITE);
1779                 bus_dmamap_unload(txq->ift_tso_buf_tag,
1780                     txq->ift_sds.ifsd_tso_map[i]);
1781         }
1782         m_free(*mp);
1783         DBG_COUNTER_INC(tx_frees);
1784         *mp = NULL;
1785 }
1786
1787 static int
1788 iflib_txq_setup(iflib_txq_t txq)
1789 {
1790         if_ctx_t ctx = txq->ift_ctx;
1791         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1792         if_shared_ctx_t sctx = ctx->ifc_sctx;
1793         iflib_dma_info_t di;
1794         int i;
1795
1796         /* Set number of descriptors available */
1797         txq->ift_qstatus = IFLIB_QUEUE_IDLE;
1798         /* XXX make configurable */
1799         txq->ift_update_freq = IFLIB_DEFAULT_TX_UPDATE_FREQ;
1800
1801         /* Reset indices */
1802         txq->ift_cidx_processed = 0;
1803         txq->ift_pidx = txq->ift_cidx = txq->ift_npending = 0;
1804         txq->ift_size = scctx->isc_ntxd[txq->ift_br_offset];
1805
1806         for (i = 0, di = txq->ift_ifdi; i < sctx->isc_ntxqs; i++, di++)
1807                 bzero((void *)di->idi_vaddr, di->idi_size);
1808
1809         IFDI_TXQ_SETUP(ctx, txq->ift_id);
1810         for (i = 0, di = txq->ift_ifdi; i < sctx->isc_ntxqs; i++, di++)
1811                 bus_dmamap_sync(di->idi_tag, di->idi_map,
1812                     BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1813         return (0);
1814 }
1815
1816 /*********************************************************************
1817  *
1818  *  Allocate DMA resources for RX buffers as well as memory for the RX
1819  *  mbuf map, direct RX cluster pointer map and RX cluster bus address
1820  *  map.  RX DMA map, RX mbuf map, direct RX cluster pointer map and
1821  *  RX cluster map are kept in a iflib_sw_rx_desc_array structure.
1822  *  Since we use use one entry in iflib_sw_rx_desc_array per received
1823  *  packet, the maximum number of entries we'll need is equal to the
1824  *  number of hardware receive descriptors that we've allocated.
1825  *
1826  **********************************************************************/
1827 static int
1828 iflib_rxsd_alloc(iflib_rxq_t rxq)
1829 {
1830         if_ctx_t ctx = rxq->ifr_ctx;
1831         if_shared_ctx_t sctx = ctx->ifc_sctx;
1832         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1833         device_t dev = ctx->ifc_dev;
1834         iflib_fl_t fl;
1835         int                     err;
1836
1837         MPASS(scctx->isc_nrxd[0] > 0);
1838         MPASS(scctx->isc_nrxd[rxq->ifr_fl_offset] > 0);
1839
1840         fl = rxq->ifr_fl;
1841         for (int i = 0; i <  rxq->ifr_nfl; i++, fl++) {
1842                 fl->ifl_size = scctx->isc_nrxd[rxq->ifr_fl_offset]; /* this isn't necessarily the same */
1843                 /* Set up DMA tag for RX buffers. */
1844                 err = bus_dma_tag_create(bus_get_dma_tag(dev), /* parent */
1845                                          1, 0,                  /* alignment, bounds */
1846                                          BUS_SPACE_MAXADDR,     /* lowaddr */
1847                                          BUS_SPACE_MAXADDR,     /* highaddr */
1848                                          NULL, NULL,            /* filter, filterarg */
1849                                          sctx->isc_rx_maxsize,  /* maxsize */
1850                                          sctx->isc_rx_nsegments,        /* nsegments */
1851                                          sctx->isc_rx_maxsegsize,       /* maxsegsize */
1852                                          0,                     /* flags */
1853                                          NULL,                  /* lockfunc */
1854                                          NULL,                  /* lockarg */
1855                                          &fl->ifl_buf_tag);
1856                 if (err) {
1857                         device_printf(dev,
1858                             "Unable to allocate RX DMA tag: %d\n", err);
1859                         goto fail;
1860                 }
1861
1862                 /* Allocate memory for the RX mbuf map. */
1863                 if (!(fl->ifl_sds.ifsd_m =
1864                       (struct mbuf **) malloc(sizeof(struct mbuf *) *
1865                                               scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1866                         device_printf(dev,
1867                             "Unable to allocate RX mbuf map memory\n");
1868                         err = ENOMEM;
1869                         goto fail;
1870                 }
1871
1872                 /* Allocate memory for the direct RX cluster pointer map. */
1873                 if (!(fl->ifl_sds.ifsd_cl =
1874                       (caddr_t *) malloc(sizeof(caddr_t) *
1875                                               scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1876                         device_printf(dev,
1877                             "Unable to allocate RX cluster map memory\n");
1878                         err = ENOMEM;
1879                         goto fail;
1880                 }
1881
1882                 /* Allocate memory for the RX cluster bus address map. */
1883                 if (!(fl->ifl_sds.ifsd_ba =
1884                       (bus_addr_t *) malloc(sizeof(bus_addr_t) *
1885                                               scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1886                         device_printf(dev,
1887                             "Unable to allocate RX bus address map memory\n");
1888                         err = ENOMEM;
1889                         goto fail;
1890                 }
1891
1892                 /*
1893                  * Create the DMA maps for RX buffers.
1894                  */
1895                 if (!(fl->ifl_sds.ifsd_map =
1896                       (bus_dmamap_t *) malloc(sizeof(bus_dmamap_t) * scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1897                         device_printf(dev,
1898                             "Unable to allocate RX buffer DMA map memory\n");
1899                         err = ENOMEM;
1900                         goto fail;
1901                 }
1902                 for (int i = 0; i < scctx->isc_nrxd[rxq->ifr_fl_offset]; i++) {
1903                         err = bus_dmamap_create(fl->ifl_buf_tag, 0,
1904                             &fl->ifl_sds.ifsd_map[i]);
1905                         if (err != 0) {
1906                                 device_printf(dev, "Unable to create RX buffer DMA map\n");
1907                                 goto fail;
1908                         }
1909                 }
1910         }
1911         return (0);
1912
1913 fail:
1914         iflib_rx_structures_free(ctx);
1915         return (err);
1916 }
1917
1918
1919 /*
1920  * Internal service routines
1921  */
1922
1923 struct rxq_refill_cb_arg {
1924         int               error;
1925         bus_dma_segment_t seg;
1926         int               nseg;
1927 };
1928
1929 static void
1930 _rxq_refill_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
1931 {
1932         struct rxq_refill_cb_arg *cb_arg = arg;
1933
1934         cb_arg->error = error;
1935         cb_arg->seg = segs[0];
1936         cb_arg->nseg = nseg;
1937 }
1938
1939 /**
1940  *      rxq_refill - refill an rxq  free-buffer list
1941  *      @ctx: the iflib context
1942  *      @rxq: the free-list to refill
1943  *      @n: the number of new buffers to allocate
1944  *
1945  *      (Re)populate an rxq free-buffer list with up to @n new packet buffers.
1946  *      The caller must assure that @n does not exceed the queue's capacity.
1947  */
1948 static void
1949 _iflib_fl_refill(if_ctx_t ctx, iflib_fl_t fl, int count)
1950 {
1951         struct if_rxd_update iru;
1952         struct rxq_refill_cb_arg cb_arg;
1953         struct mbuf *m;
1954         caddr_t cl, *sd_cl;
1955         struct mbuf **sd_m;
1956         bus_dmamap_t *sd_map;
1957         bus_addr_t bus_addr, *sd_ba;
1958         int err, frag_idx, i, idx, n, pidx;
1959         qidx_t credits;
1960
1961         sd_m = fl->ifl_sds.ifsd_m;
1962         sd_map = fl->ifl_sds.ifsd_map;
1963         sd_cl = fl->ifl_sds.ifsd_cl;
1964         sd_ba = fl->ifl_sds.ifsd_ba;
1965         pidx = fl->ifl_pidx;
1966         idx = pidx;
1967         frag_idx = fl->ifl_fragidx;
1968         credits = fl->ifl_credits;
1969
1970         i = 0;
1971         n = count;
1972         MPASS(n > 0);
1973         MPASS(credits + n <= fl->ifl_size);
1974
1975         if (pidx < fl->ifl_cidx)
1976                 MPASS(pidx + n <= fl->ifl_cidx);
1977         if (pidx == fl->ifl_cidx && (credits < fl->ifl_size))
1978                 MPASS(fl->ifl_gen == 0);
1979         if (pidx > fl->ifl_cidx)
1980                 MPASS(n <= fl->ifl_size - pidx + fl->ifl_cidx);
1981
1982         DBG_COUNTER_INC(fl_refills);
1983         if (n > 8)
1984                 DBG_COUNTER_INC(fl_refills_large);
1985         iru_init(&iru, fl->ifl_rxq, fl->ifl_id);
1986         while (n--) {
1987                 /*
1988                  * We allocate an uninitialized mbuf + cluster, mbuf is
1989                  * initialized after rx.
1990                  *
1991                  * If the cluster is still set then we know a minimum sized packet was received
1992                  */
1993                 bit_ffc_at(fl->ifl_rx_bitmap, frag_idx, fl->ifl_size,
1994                     &frag_idx);
1995                 if (frag_idx < 0)
1996                         bit_ffc(fl->ifl_rx_bitmap, fl->ifl_size, &frag_idx);
1997                 MPASS(frag_idx >= 0);
1998                 if ((cl = sd_cl[frag_idx]) == NULL) {
1999                         if ((cl = m_cljget(NULL, M_NOWAIT, fl->ifl_buf_size)) == NULL)
2000                                 break;
2001
2002                         cb_arg.error = 0;
2003                         MPASS(sd_map != NULL);
2004                         err = bus_dmamap_load(fl->ifl_buf_tag, sd_map[frag_idx],
2005                             cl, fl->ifl_buf_size, _rxq_refill_cb, &cb_arg,
2006                             BUS_DMA_NOWAIT);
2007                         if (err != 0 || cb_arg.error) {
2008                                 /*
2009                                  * !zone_pack ?
2010                                  */
2011                                 if (fl->ifl_zone == zone_pack)
2012                                         uma_zfree(fl->ifl_zone, cl);
2013                                 break;
2014                         }
2015
2016                         sd_ba[frag_idx] =  bus_addr = cb_arg.seg.ds_addr;
2017                         sd_cl[frag_idx] = cl;
2018 #if MEMORY_LOGGING
2019                         fl->ifl_cl_enqueued++;
2020 #endif
2021                 } else {
2022                         bus_addr = sd_ba[frag_idx];
2023                 }
2024                 bus_dmamap_sync(fl->ifl_buf_tag, sd_map[frag_idx],
2025                     BUS_DMASYNC_PREREAD);
2026
2027                 MPASS(sd_m[frag_idx] == NULL);
2028                 if ((m = m_gethdr(M_NOWAIT, MT_NOINIT)) == NULL) {
2029                         break;
2030                 }
2031                 sd_m[frag_idx] = m;
2032                 bit_set(fl->ifl_rx_bitmap, frag_idx);
2033 #if MEMORY_LOGGING
2034                 fl->ifl_m_enqueued++;
2035 #endif
2036
2037                 DBG_COUNTER_INC(rx_allocs);
2038                 fl->ifl_rxd_idxs[i] = frag_idx;
2039                 fl->ifl_bus_addrs[i] = bus_addr;
2040                 fl->ifl_vm_addrs[i] = cl;
2041                 credits++;
2042                 i++;
2043                 MPASS(credits <= fl->ifl_size);
2044                 if (++idx == fl->ifl_size) {
2045                         fl->ifl_gen = 1;
2046                         idx = 0;
2047                 }
2048                 if (n == 0 || i == IFLIB_MAX_RX_REFRESH) {
2049                         iru.iru_pidx = pidx;
2050                         iru.iru_count = i;
2051                         ctx->isc_rxd_refill(ctx->ifc_softc, &iru);
2052                         i = 0;
2053                         pidx = idx;
2054                         fl->ifl_pidx = idx;
2055                         fl->ifl_credits = credits;
2056                 }
2057         }
2058
2059         if (i) {
2060                 iru.iru_pidx = pidx;
2061                 iru.iru_count = i;
2062                 ctx->isc_rxd_refill(ctx->ifc_softc, &iru);
2063                 fl->ifl_pidx = idx;
2064                 fl->ifl_credits = credits;
2065         }
2066         DBG_COUNTER_INC(rxd_flush);
2067         if (fl->ifl_pidx == 0)
2068                 pidx = fl->ifl_size - 1;
2069         else
2070                 pidx = fl->ifl_pidx - 1;
2071
2072         bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
2073             BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2074         ctx->isc_rxd_flush(ctx->ifc_softc, fl->ifl_rxq->ifr_id, fl->ifl_id, pidx);
2075         fl->ifl_fragidx = frag_idx;
2076 }
2077
2078 static __inline void
2079 __iflib_fl_refill_lt(if_ctx_t ctx, iflib_fl_t fl, int max)
2080 {
2081         /* we avoid allowing pidx to catch up with cidx as it confuses ixl */
2082         int32_t reclaimable = fl->ifl_size - fl->ifl_credits - 1;
2083 #ifdef INVARIANTS
2084         int32_t delta = fl->ifl_size - get_inuse(fl->ifl_size, fl->ifl_cidx, fl->ifl_pidx, fl->ifl_gen) - 1;
2085 #endif
2086
2087         MPASS(fl->ifl_credits <= fl->ifl_size);
2088         MPASS(reclaimable == delta);
2089
2090         if (reclaimable > 0)
2091                 _iflib_fl_refill(ctx, fl, min(max, reclaimable));
2092 }
2093
2094 uint8_t
2095 iflib_in_detach(if_ctx_t ctx)
2096 {
2097         bool in_detach;
2098         STATE_LOCK(ctx);
2099         in_detach = !!(ctx->ifc_flags & IFC_IN_DETACH);
2100         STATE_UNLOCK(ctx);
2101         return (in_detach);
2102 }
2103
2104 static void
2105 iflib_fl_bufs_free(iflib_fl_t fl)
2106 {
2107         iflib_dma_info_t idi = fl->ifl_ifdi;
2108         bus_dmamap_t sd_map;
2109         uint32_t i;
2110
2111         for (i = 0; i < fl->ifl_size; i++) {
2112                 struct mbuf **sd_m = &fl->ifl_sds.ifsd_m[i];
2113                 caddr_t *sd_cl = &fl->ifl_sds.ifsd_cl[i];
2114
2115                 if (*sd_cl != NULL) {
2116                         sd_map = fl->ifl_sds.ifsd_map[i];
2117                         bus_dmamap_sync(fl->ifl_buf_tag, sd_map,
2118                             BUS_DMASYNC_POSTREAD);
2119                         bus_dmamap_unload(fl->ifl_buf_tag, sd_map);
2120                         if (*sd_cl != NULL)
2121                                 uma_zfree(fl->ifl_zone, *sd_cl);
2122                         // XXX: Should this get moved out?
2123                         if (iflib_in_detach(fl->ifl_rxq->ifr_ctx))
2124                                 bus_dmamap_destroy(fl->ifl_buf_tag, sd_map);
2125                         if (*sd_m != NULL) {
2126                                 m_init(*sd_m, M_NOWAIT, MT_DATA, 0);
2127                                 uma_zfree(zone_mbuf, *sd_m);
2128                         }
2129                 } else {
2130                         MPASS(*sd_cl == NULL);
2131                         MPASS(*sd_m == NULL);
2132                 }
2133 #if MEMORY_LOGGING
2134                 fl->ifl_m_dequeued++;
2135                 fl->ifl_cl_dequeued++;
2136 #endif
2137                 *sd_cl = NULL;
2138                 *sd_m = NULL;
2139         }
2140 #ifdef INVARIANTS
2141         for (i = 0; i < fl->ifl_size; i++) {
2142                 MPASS(fl->ifl_sds.ifsd_cl[i] == NULL);
2143                 MPASS(fl->ifl_sds.ifsd_m[i] == NULL);
2144         }
2145 #endif
2146         /*
2147          * Reset free list values
2148          */
2149         fl->ifl_credits = fl->ifl_cidx = fl->ifl_pidx = fl->ifl_gen = fl->ifl_fragidx = 0;
2150         bzero(idi->idi_vaddr, idi->idi_size);
2151 }
2152
2153 /*********************************************************************
2154  *
2155  *  Initialize a receive ring and its buffers.
2156  *
2157  **********************************************************************/
2158 static int
2159 iflib_fl_setup(iflib_fl_t fl)
2160 {
2161         iflib_rxq_t rxq = fl->ifl_rxq;
2162         if_ctx_t ctx = rxq->ifr_ctx;
2163         if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
2164
2165         bit_nclear(fl->ifl_rx_bitmap, 0, fl->ifl_size - 1);
2166         /*
2167         ** Free current RX buffer structs and their mbufs
2168         */
2169         iflib_fl_bufs_free(fl);
2170         /* Now replenish the mbufs */
2171         MPASS(fl->ifl_credits == 0);
2172         /*
2173          * XXX don't set the max_frame_size to larger
2174          * than the hardware can handle
2175          */
2176         if (sctx->isc_max_frame_size <= 2048)
2177                 fl->ifl_buf_size = MCLBYTES;
2178 #ifndef CONTIGMALLOC_WORKS
2179         else
2180                 fl->ifl_buf_size = MJUMPAGESIZE;
2181 #else
2182         else if (sctx->isc_max_frame_size <= 4096)
2183                 fl->ifl_buf_size = MJUMPAGESIZE;
2184         else if (sctx->isc_max_frame_size <= 9216)
2185                 fl->ifl_buf_size = MJUM9BYTES;
2186         else
2187                 fl->ifl_buf_size = MJUM16BYTES;
2188 #endif
2189         if (fl->ifl_buf_size > ctx->ifc_max_fl_buf_size)
2190                 ctx->ifc_max_fl_buf_size = fl->ifl_buf_size;
2191         fl->ifl_cltype = m_gettype(fl->ifl_buf_size);
2192         fl->ifl_zone = m_getzone(fl->ifl_buf_size);
2193
2194
2195         /* avoid pre-allocating zillions of clusters to an idle card
2196          * potentially speeding up attach
2197          */
2198         _iflib_fl_refill(ctx, fl, min(128, fl->ifl_size));
2199         MPASS(min(128, fl->ifl_size) == fl->ifl_credits);
2200         if (min(128, fl->ifl_size) != fl->ifl_credits)
2201                 return (ENOBUFS);
2202         /*
2203          * handle failure
2204          */
2205         MPASS(rxq != NULL);
2206         MPASS(fl->ifl_ifdi != NULL);
2207         bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
2208             BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2209         return (0);
2210 }
2211
2212 /*********************************************************************
2213  *
2214  *  Free receive ring data structures
2215  *
2216  **********************************************************************/
2217 static void
2218 iflib_rx_sds_free(iflib_rxq_t rxq)
2219 {
2220         iflib_fl_t fl;
2221         int i, j;
2222
2223         if (rxq->ifr_fl != NULL) {
2224                 for (i = 0; i < rxq->ifr_nfl; i++) {
2225                         fl = &rxq->ifr_fl[i];
2226                         if (fl->ifl_buf_tag != NULL) {
2227                                 if (fl->ifl_sds.ifsd_map != NULL) {
2228                                         for (j = 0; j < fl->ifl_size; j++) {
2229                                                 if (fl->ifl_sds.ifsd_map[j] ==
2230                                                     NULL)
2231                                                         continue;
2232                                                 bus_dmamap_sync(
2233                                                     fl->ifl_buf_tag,
2234                                                     fl->ifl_sds.ifsd_map[j],
2235                                                     BUS_DMASYNC_POSTREAD);
2236                                                 bus_dmamap_unload(
2237                                                     fl->ifl_buf_tag,
2238                                                     fl->ifl_sds.ifsd_map[j]);
2239                                         }
2240                                 }
2241                                 bus_dma_tag_destroy(fl->ifl_buf_tag);
2242                                 fl->ifl_buf_tag = NULL;
2243                         }
2244                         free(fl->ifl_sds.ifsd_m, M_IFLIB);
2245                         free(fl->ifl_sds.ifsd_cl, M_IFLIB);
2246                         free(fl->ifl_sds.ifsd_ba, M_IFLIB);
2247                         free(fl->ifl_sds.ifsd_map, M_IFLIB);
2248                         fl->ifl_sds.ifsd_m = NULL;
2249                         fl->ifl_sds.ifsd_cl = NULL;
2250                         fl->ifl_sds.ifsd_ba = NULL;
2251                         fl->ifl_sds.ifsd_map = NULL;
2252                 }
2253                 free(rxq->ifr_fl, M_IFLIB);
2254                 rxq->ifr_fl = NULL;
2255                 rxq->ifr_cq_gen = rxq->ifr_cq_cidx = rxq->ifr_cq_pidx = 0;
2256         }
2257 }
2258
2259 /*
2260  * MI independent logic
2261  *
2262  */
2263 static void
2264 iflib_timer(void *arg)
2265 {
2266         iflib_txq_t txq = arg;
2267         if_ctx_t ctx = txq->ift_ctx;
2268         if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
2269         uint64_t this_tick = ticks;
2270         uint32_t reset_on = hz / 2;
2271
2272         if (!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING))
2273                 return;
2274         /*
2275         ** Check on the state of the TX queue(s), this
2276         ** can be done without the lock because its RO
2277         ** and the HUNG state will be static if set.
2278         */
2279         if (this_tick - txq->ift_last_timer_tick >= hz / 2) {
2280                 txq->ift_last_timer_tick = this_tick;
2281                 IFDI_TIMER(ctx, txq->ift_id);
2282                 if ((txq->ift_qstatus == IFLIB_QUEUE_HUNG) &&
2283                     ((txq->ift_cleaned_prev == txq->ift_cleaned) ||
2284                      (sctx->isc_pause_frames == 0)))
2285                         goto hung;
2286
2287                 if (ifmp_ring_is_stalled(txq->ift_br))
2288                         txq->ift_qstatus = IFLIB_QUEUE_HUNG;
2289                 txq->ift_cleaned_prev = txq->ift_cleaned;
2290         }
2291 #ifdef DEV_NETMAP
2292         if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP)
2293                 iflib_netmap_timer_adjust(ctx, txq, &reset_on);
2294 #endif
2295         /* handle any laggards */
2296         if (txq->ift_db_pending)
2297                 GROUPTASK_ENQUEUE(&txq->ift_task);
2298
2299         sctx->isc_pause_frames = 0;
2300         if (if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING) 
2301                 callout_reset_on(&txq->ift_timer, reset_on, iflib_timer, txq, txq->ift_timer.c_cpu);
2302         return;
2303  hung:
2304         device_printf(ctx->ifc_dev,  "TX(%d) desc avail = %d, pidx = %d\n",
2305                                   txq->ift_id, TXQ_AVAIL(txq), txq->ift_pidx);
2306         STATE_LOCK(ctx);
2307         if_setdrvflagbits(ctx->ifc_ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2308         ctx->ifc_flags |= (IFC_DO_WATCHDOG|IFC_DO_RESET);
2309         iflib_admin_intr_deferred(ctx);
2310         STATE_UNLOCK(ctx);
2311 }
2312
2313 static void
2314 iflib_init_locked(if_ctx_t ctx)
2315 {
2316         if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
2317         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
2318         if_t ifp = ctx->ifc_ifp;
2319         iflib_fl_t fl;
2320         iflib_txq_t txq;
2321         iflib_rxq_t rxq;
2322         int i, j, tx_ip_csum_flags, tx_ip6_csum_flags;
2323
2324
2325         if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2326         IFDI_INTR_DISABLE(ctx);
2327
2328         tx_ip_csum_flags = scctx->isc_tx_csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP | CSUM_SCTP);
2329         tx_ip6_csum_flags = scctx->isc_tx_csum_flags & (CSUM_IP6_TCP | CSUM_IP6_UDP | CSUM_IP6_SCTP);
2330         /* Set hardware offload abilities */
2331         if_clearhwassist(ifp);
2332         if (if_getcapenable(ifp) & IFCAP_TXCSUM)
2333                 if_sethwassistbits(ifp, tx_ip_csum_flags, 0);
2334         if (if_getcapenable(ifp) & IFCAP_TXCSUM_IPV6)
2335                 if_sethwassistbits(ifp,  tx_ip6_csum_flags, 0);
2336         if (if_getcapenable(ifp) & IFCAP_TSO4)
2337                 if_sethwassistbits(ifp, CSUM_IP_TSO, 0);
2338         if (if_getcapenable(ifp) & IFCAP_TSO6)
2339                 if_sethwassistbits(ifp, CSUM_IP6_TSO, 0);
2340
2341         for (i = 0, txq = ctx->ifc_txqs; i < sctx->isc_ntxqsets; i++, txq++) {
2342                 CALLOUT_LOCK(txq);
2343                 callout_stop(&txq->ift_timer);
2344                 CALLOUT_UNLOCK(txq);
2345                 iflib_netmap_txq_init(ctx, txq);
2346         }
2347 #ifdef INVARIANTS
2348         i = if_getdrvflags(ifp);
2349 #endif
2350         IFDI_INIT(ctx);
2351         MPASS(if_getdrvflags(ifp) == i);
2352         for (i = 0, rxq = ctx->ifc_rxqs; i < sctx->isc_nrxqsets; i++, rxq++) {
2353                 /* XXX this should really be done on a per-queue basis */
2354                 if (if_getcapenable(ifp) & IFCAP_NETMAP) {
2355                         MPASS(rxq->ifr_id == i);
2356                         iflib_netmap_rxq_init(ctx, rxq);
2357                         continue;
2358                 }
2359                 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++) {
2360                         if (iflib_fl_setup(fl)) {
2361                                 device_printf(ctx->ifc_dev, "freelist setup failed - check cluster settings\n");
2362                                 goto done;
2363                         }
2364                 }
2365         }
2366 done:
2367         if_setdrvflagbits(ctx->ifc_ifp, IFF_DRV_RUNNING, IFF_DRV_OACTIVE);
2368         IFDI_INTR_ENABLE(ctx);
2369         txq = ctx->ifc_txqs;
2370         for (i = 0; i < sctx->isc_ntxqsets; i++, txq++)
2371                 callout_reset_on(&txq->ift_timer, hz/2, iflib_timer, txq,
2372                         txq->ift_timer.c_cpu);
2373 }
2374
2375 static int
2376 iflib_media_change(if_t ifp)
2377 {
2378         if_ctx_t ctx = if_getsoftc(ifp);
2379         int err;
2380
2381         CTX_LOCK(ctx);
2382         if ((err = IFDI_MEDIA_CHANGE(ctx)) == 0)
2383                 iflib_init_locked(ctx);
2384         CTX_UNLOCK(ctx);
2385         return (err);
2386 }
2387
2388 static void
2389 iflib_media_status(if_t ifp, struct ifmediareq *ifmr)
2390 {
2391         if_ctx_t ctx = if_getsoftc(ifp);
2392
2393         CTX_LOCK(ctx);
2394         IFDI_UPDATE_ADMIN_STATUS(ctx);
2395         IFDI_MEDIA_STATUS(ctx, ifmr);
2396         CTX_UNLOCK(ctx);
2397 }
2398
2399 void
2400 iflib_stop(if_ctx_t ctx)
2401 {
2402         iflib_txq_t txq = ctx->ifc_txqs;
2403         iflib_rxq_t rxq = ctx->ifc_rxqs;
2404         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
2405         if_shared_ctx_t sctx = ctx->ifc_sctx;
2406         iflib_dma_info_t di;
2407         iflib_fl_t fl;
2408         int i, j;
2409
2410         /* Tell the stack that the interface is no longer active */
2411         if_setdrvflagbits(ctx->ifc_ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2412
2413         IFDI_INTR_DISABLE(ctx);
2414         DELAY(1000);
2415         IFDI_STOP(ctx);
2416         DELAY(1000);
2417
2418         iflib_debug_reset();
2419         /* Wait for current tx queue users to exit to disarm watchdog timer. */
2420         for (i = 0; i < scctx->isc_ntxqsets; i++, txq++) {
2421                 /* make sure all transmitters have completed before proceeding XXX */
2422
2423                 CALLOUT_LOCK(txq);
2424                 callout_stop(&txq->ift_timer);
2425                 CALLOUT_UNLOCK(txq);
2426
2427                 /* clean any enqueued buffers */
2428                 iflib_ifmp_purge(txq);
2429                 /* Free any existing tx buffers. */
2430                 for (j = 0; j < txq->ift_size; j++) {
2431                         iflib_txsd_free(ctx, txq, j);
2432                 }
2433                 txq->ift_processed = txq->ift_cleaned = txq->ift_cidx_processed = 0;
2434                 txq->ift_in_use = txq->ift_gen = txq->ift_cidx = txq->ift_pidx = txq->ift_no_desc_avail = 0;
2435                 txq->ift_closed = txq->ift_mbuf_defrag = txq->ift_mbuf_defrag_failed = 0;
2436                 txq->ift_no_tx_dma_setup = txq->ift_txd_encap_efbig = txq->ift_map_failed = 0;
2437                 txq->ift_pullups = 0;
2438                 ifmp_ring_reset_stats(txq->ift_br);
2439                 for (j = 0, di = txq->ift_ifdi; j < sctx->isc_ntxqs; j++, di++)
2440                         bzero((void *)di->idi_vaddr, di->idi_size);
2441         }
2442         for (i = 0; i < scctx->isc_nrxqsets; i++, rxq++) {
2443                 /* make sure all transmitters have completed before proceeding XXX */
2444
2445                 rxq->ifr_cq_gen = rxq->ifr_cq_cidx = rxq->ifr_cq_pidx = 0;
2446                 for (j = 0, di = rxq->ifr_ifdi; j < sctx->isc_nrxqs; j++, di++)
2447                         bzero((void *)di->idi_vaddr, di->idi_size);
2448                 /* also resets the free lists pidx/cidx */
2449                 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
2450                         iflib_fl_bufs_free(fl);
2451         }
2452 }
2453
2454 static inline caddr_t
2455 calc_next_rxd(iflib_fl_t fl, int cidx)
2456 {
2457         qidx_t size;
2458         int nrxd;
2459         caddr_t start, end, cur, next;
2460
2461         nrxd = fl->ifl_size;
2462         size = fl->ifl_rxd_size;
2463         start = fl->ifl_ifdi->idi_vaddr;
2464
2465         if (__predict_false(size == 0))
2466                 return (start);
2467         cur = start + size*cidx;
2468         end = start + size*nrxd;
2469         next = CACHE_PTR_NEXT(cur);
2470         return (next < end ? next : start);
2471 }
2472
2473 static inline void
2474 prefetch_pkts(iflib_fl_t fl, int cidx)
2475 {
2476         int nextptr;
2477         int nrxd = fl->ifl_size;
2478         caddr_t next_rxd;
2479
2480
2481         nextptr = (cidx + CACHE_PTR_INCREMENT) & (nrxd-1);
2482         prefetch(&fl->ifl_sds.ifsd_m[nextptr]);
2483         prefetch(&fl->ifl_sds.ifsd_cl[nextptr]);
2484         next_rxd = calc_next_rxd(fl, cidx);
2485         prefetch(next_rxd);
2486         prefetch(fl->ifl_sds.ifsd_m[(cidx + 1) & (nrxd-1)]);
2487         prefetch(fl->ifl_sds.ifsd_m[(cidx + 2) & (nrxd-1)]);
2488         prefetch(fl->ifl_sds.ifsd_m[(cidx + 3) & (nrxd-1)]);
2489         prefetch(fl->ifl_sds.ifsd_m[(cidx + 4) & (nrxd-1)]);
2490         prefetch(fl->ifl_sds.ifsd_cl[(cidx + 1) & (nrxd-1)]);
2491         prefetch(fl->ifl_sds.ifsd_cl[(cidx + 2) & (nrxd-1)]);
2492         prefetch(fl->ifl_sds.ifsd_cl[(cidx + 3) & (nrxd-1)]);
2493         prefetch(fl->ifl_sds.ifsd_cl[(cidx + 4) & (nrxd-1)]);
2494 }
2495
2496 static void
2497 rxd_frag_to_sd(iflib_rxq_t rxq, if_rxd_frag_t irf, int unload, if_rxsd_t sd)
2498 {
2499         int flid, cidx;
2500         bus_dmamap_t map;
2501         iflib_fl_t fl;
2502         int next;
2503
2504         map = NULL;
2505         flid = irf->irf_flid;
2506         cidx = irf->irf_idx;
2507         fl = &rxq->ifr_fl[flid];
2508         sd->ifsd_fl = fl;
2509         sd->ifsd_cidx = cidx;
2510         sd->ifsd_m = &fl->ifl_sds.ifsd_m[cidx];
2511         sd->ifsd_cl = &fl->ifl_sds.ifsd_cl[cidx];
2512         fl->ifl_credits--;
2513 #if MEMORY_LOGGING
2514         fl->ifl_m_dequeued++;
2515 #endif
2516         if (rxq->ifr_ctx->ifc_flags & IFC_PREFETCH)
2517                 prefetch_pkts(fl, cidx);
2518         next = (cidx + CACHE_PTR_INCREMENT) & (fl->ifl_size-1);
2519         prefetch(&fl->ifl_sds.ifsd_map[next]);
2520         map = fl->ifl_sds.ifsd_map[cidx];
2521         next = (cidx + CACHE_LINE_SIZE) & (fl->ifl_size-1);
2522
2523         /* not valid assert if bxe really does SGE from non-contiguous elements */
2524         MPASS(fl->ifl_cidx == cidx);
2525         bus_dmamap_sync(fl->ifl_buf_tag, map, BUS_DMASYNC_POSTREAD);
2526         if (unload)
2527                 bus_dmamap_unload(fl->ifl_buf_tag, map);
2528         fl->ifl_cidx = (fl->ifl_cidx + 1) & (fl->ifl_size-1);
2529         if (__predict_false(fl->ifl_cidx == 0))
2530                 fl->ifl_gen = 0;
2531         bit_clear(fl->ifl_rx_bitmap, cidx);
2532 }
2533
2534 static struct mbuf *
2535 assemble_segments(iflib_rxq_t rxq, if_rxd_info_t ri, if_rxsd_t sd)
2536 {
2537         int i, padlen , flags;
2538         struct mbuf *m, *mh, *mt;
2539         caddr_t cl;
2540
2541         i = 0;
2542         mh = NULL;
2543         do {
2544                 rxd_frag_to_sd(rxq, &ri->iri_frags[i], TRUE, sd);
2545
2546                 MPASS(*sd->ifsd_cl != NULL);
2547                 MPASS(*sd->ifsd_m != NULL);
2548
2549                 /* Don't include zero-length frags */
2550                 if (ri->iri_frags[i].irf_len == 0) {
2551                         /* XXX we can save the cluster here, but not the mbuf */
2552                         m_init(*sd->ifsd_m, M_NOWAIT, MT_DATA, 0);
2553                         m_free(*sd->ifsd_m);
2554                         *sd->ifsd_m = NULL;
2555                         continue;
2556                 }
2557                 m = *sd->ifsd_m;
2558                 *sd->ifsd_m = NULL;
2559                 if (mh == NULL) {
2560                         flags = M_PKTHDR|M_EXT;
2561                         mh = mt = m;
2562                         padlen = ri->iri_pad;
2563                 } else {
2564                         flags = M_EXT;
2565                         mt->m_next = m;
2566                         mt = m;
2567                         /* assuming padding is only on the first fragment */
2568                         padlen = 0;
2569                 }
2570                 cl = *sd->ifsd_cl;
2571                 *sd->ifsd_cl = NULL;
2572
2573                 /* Can these two be made one ? */
2574                 m_init(m, M_NOWAIT, MT_DATA, flags);
2575                 m_cljset(m, cl, sd->ifsd_fl->ifl_cltype);
2576                 /*
2577                  * These must follow m_init and m_cljset
2578                  */
2579                 m->m_data += padlen;
2580                 ri->iri_len -= padlen;
2581                 m->m_len = ri->iri_frags[i].irf_len;
2582         } while (++i < ri->iri_nfrags);
2583
2584         return (mh);
2585 }
2586
2587 /*
2588  * Process one software descriptor
2589  */
2590 static struct mbuf *
2591 iflib_rxd_pkt_get(iflib_rxq_t rxq, if_rxd_info_t ri)
2592 {
2593         struct if_rxsd sd;
2594         struct mbuf *m;
2595
2596         /* should I merge this back in now that the two paths are basically duplicated? */
2597         if (ri->iri_nfrags == 1 &&
2598             ri->iri_frags[0].irf_len <= MIN(IFLIB_RX_COPY_THRESH, MHLEN)) {
2599                 rxd_frag_to_sd(rxq, &ri->iri_frags[0], FALSE, &sd);
2600                 m = *sd.ifsd_m;
2601                 *sd.ifsd_m = NULL;
2602                 m_init(m, M_NOWAIT, MT_DATA, M_PKTHDR);
2603 #ifndef __NO_STRICT_ALIGNMENT
2604                 if (!IP_ALIGNED(m))
2605                         m->m_data += 2;
2606 #endif
2607                 memcpy(m->m_data, *sd.ifsd_cl, ri->iri_len);
2608                 m->m_len = ri->iri_frags[0].irf_len;
2609        } else {
2610                 m = assemble_segments(rxq, ri, &sd);
2611         }
2612         m->m_pkthdr.len = ri->iri_len;
2613         m->m_pkthdr.rcvif = ri->iri_ifp;
2614         m->m_flags |= ri->iri_flags;
2615         m->m_pkthdr.ether_vtag = ri->iri_vtag;
2616         m->m_pkthdr.flowid = ri->iri_flowid;
2617         M_HASHTYPE_SET(m, ri->iri_rsstype);
2618         m->m_pkthdr.csum_flags = ri->iri_csum_flags;
2619         m->m_pkthdr.csum_data = ri->iri_csum_data;
2620         return (m);
2621 }
2622
2623 #if defined(INET6) || defined(INET)
2624 static void
2625 iflib_get_ip_forwarding(struct lro_ctrl *lc, bool *v4, bool *v6)
2626 {
2627         CURVNET_SET(lc->ifp->if_vnet);
2628 #if defined(INET6)
2629         *v6 = VNET(ip6_forwarding);
2630 #endif
2631 #if defined(INET)
2632         *v4 = VNET(ipforwarding);
2633 #endif
2634         CURVNET_RESTORE();
2635 }
2636
2637 /*
2638  * Returns true if it's possible this packet could be LROed.
2639  * if it returns false, it is guaranteed that tcp_lro_rx()
2640  * would not return zero.
2641  */
2642 static bool
2643 iflib_check_lro_possible(struct mbuf *m, bool v4_forwarding, bool v6_forwarding)
2644 {
2645         struct ether_header *eh;
2646         uint16_t eh_type;
2647
2648         eh = mtod(m, struct ether_header *);
2649         eh_type = ntohs(eh->ether_type);
2650         switch (eh_type) {
2651 #if defined(INET6)
2652                 case ETHERTYPE_IPV6:
2653                         return !v6_forwarding;
2654 #endif
2655 #if defined (INET)
2656                 case ETHERTYPE_IP:
2657                         return !v4_forwarding;
2658 #endif
2659         }
2660
2661         return false;
2662 }
2663 #else
2664 static void
2665 iflib_get_ip_forwarding(struct lro_ctrl *lc __unused, bool *v4 __unused, bool *v6 __unused)
2666 {
2667 }
2668 #endif
2669
2670 static bool
2671 iflib_rxeof(iflib_rxq_t rxq, qidx_t budget)
2672 {
2673         if_ctx_t ctx = rxq->ifr_ctx;
2674         if_shared_ctx_t sctx = ctx->ifc_sctx;
2675         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
2676         int avail, i;
2677         qidx_t *cidxp;
2678         struct if_rxd_info ri;
2679         int err, budget_left, rx_bytes, rx_pkts;
2680         iflib_fl_t fl;
2681         struct ifnet *ifp;
2682         int lro_enabled;
2683         bool v4_forwarding, v6_forwarding, lro_possible;
2684
2685         /*
2686          * XXX early demux data packets so that if_input processing only handles
2687          * acks in interrupt context
2688          */
2689         struct mbuf *m, *mh, *mt, *mf;
2690
2691         lro_possible = v4_forwarding = v6_forwarding = false;
2692         ifp = ctx->ifc_ifp;
2693         mh = mt = NULL;
2694         MPASS(budget > 0);
2695         rx_pkts = rx_bytes = 0;
2696         if (sctx->isc_flags & IFLIB_HAS_RXCQ)
2697                 cidxp = &rxq->ifr_cq_cidx;
2698         else
2699                 cidxp = &rxq->ifr_fl[0].ifl_cidx;
2700         if ((avail = iflib_rxd_avail(ctx, rxq, *cidxp, budget)) == 0) {
2701                 for (i = 0, fl = &rxq->ifr_fl[0]; i < sctx->isc_nfl; i++, fl++)
2702                         __iflib_fl_refill_lt(ctx, fl, budget + 8);
2703                 DBG_COUNTER_INC(rx_unavail);
2704                 return (false);
2705         }
2706
2707         for (budget_left = budget; budget_left > 0 && avail > 0;) {
2708                 if (__predict_false(!CTX_ACTIVE(ctx))) {
2709                         DBG_COUNTER_INC(rx_ctx_inactive);
2710                         break;
2711                 }
2712                 /*
2713                  * Reset client set fields to their default values
2714                  */
2715                 rxd_info_zero(&ri);
2716                 ri.iri_qsidx = rxq->ifr_id;
2717                 ri.iri_cidx = *cidxp;
2718                 ri.iri_ifp = ifp;
2719                 ri.iri_frags = rxq->ifr_frags;
2720                 err = ctx->isc_rxd_pkt_get(ctx->ifc_softc, &ri);
2721
2722                 if (err)
2723                         goto err;
2724                 if (sctx->isc_flags & IFLIB_HAS_RXCQ) {
2725                         *cidxp = ri.iri_cidx;
2726                         /* Update our consumer index */
2727                         /* XXX NB: shurd - check if this is still safe */
2728                         while (rxq->ifr_cq_cidx >= scctx->isc_nrxd[0]) {
2729                                 rxq->ifr_cq_cidx -= scctx->isc_nrxd[0];
2730                                 rxq->ifr_cq_gen = 0;
2731                         }
2732                         /* was this only a completion queue message? */
2733                         if (__predict_false(ri.iri_nfrags == 0))
2734                                 continue;
2735                 }
2736                 MPASS(ri.iri_nfrags != 0);
2737                 MPASS(ri.iri_len != 0);
2738
2739                 /* will advance the cidx on the corresponding free lists */
2740                 m = iflib_rxd_pkt_get(rxq, &ri);
2741                 avail--;
2742                 budget_left--;
2743                 if (avail == 0 && budget_left)
2744                         avail = iflib_rxd_avail(ctx, rxq, *cidxp, budget_left);
2745
2746                 if (__predict_false(m == NULL)) {
2747                         DBG_COUNTER_INC(rx_mbuf_null);
2748                         continue;
2749                 }
2750                 /* imm_pkt: -- cxgb */
2751                 if (mh == NULL)
2752                         mh = mt = m;
2753                 else {
2754                         mt->m_nextpkt = m;
2755                         mt = m;
2756                 }
2757         }
2758         /* make sure that we can refill faster than drain */
2759         for (i = 0, fl = &rxq->ifr_fl[0]; i < sctx->isc_nfl; i++, fl++)
2760                 __iflib_fl_refill_lt(ctx, fl, budget + 8);
2761
2762         lro_enabled = (if_getcapenable(ifp) & IFCAP_LRO);
2763         if (lro_enabled)
2764                 iflib_get_ip_forwarding(&rxq->ifr_lc, &v4_forwarding, &v6_forwarding);
2765         mt = mf = NULL;
2766         while (mh != NULL) {
2767                 m = mh;
2768                 mh = mh->m_nextpkt;
2769                 m->m_nextpkt = NULL;
2770 #ifndef __NO_STRICT_ALIGNMENT
2771                 if (!IP_ALIGNED(m) && (m = iflib_fixup_rx(m)) == NULL)
2772                         continue;
2773 #endif
2774                 rx_bytes += m->m_pkthdr.len;
2775                 rx_pkts++;
2776 #if defined(INET6) || defined(INET)
2777                 if (lro_enabled) {
2778                         if (!lro_possible) {
2779                                 lro_possible = iflib_check_lro_possible(m, v4_forwarding, v6_forwarding);
2780                                 if (lro_possible && mf != NULL) {
2781                                         ifp->if_input(ifp, mf);
2782                                         DBG_COUNTER_INC(rx_if_input);
2783                                         mt = mf = NULL;
2784                                 }
2785                         }
2786                         if ((m->m_pkthdr.csum_flags & (CSUM_L4_CALC|CSUM_L4_VALID)) ==
2787                             (CSUM_L4_CALC|CSUM_L4_VALID)) {
2788                                 if (lro_possible && tcp_lro_rx(&rxq->ifr_lc, m, 0) == 0)
2789                                         continue;
2790                         }
2791                 }
2792 #endif
2793                 if (lro_possible) {
2794                         ifp->if_input(ifp, m);
2795                         DBG_COUNTER_INC(rx_if_input);
2796                         continue;
2797                 }
2798
2799                 if (mf == NULL)
2800                         mf = m;
2801                 if (mt != NULL)
2802                         mt->m_nextpkt = m;
2803                 mt = m;
2804         }
2805         if (mf != NULL) {
2806                 ifp->if_input(ifp, mf);
2807                 DBG_COUNTER_INC(rx_if_input);
2808         }
2809
2810         if_inc_counter(ifp, IFCOUNTER_IBYTES, rx_bytes);
2811         if_inc_counter(ifp, IFCOUNTER_IPACKETS, rx_pkts);
2812
2813         /*
2814          * Flush any outstanding LRO work
2815          */
2816 #if defined(INET6) || defined(INET)
2817         tcp_lro_flush_all(&rxq->ifr_lc);
2818 #endif
2819         if (avail)
2820                 return true;
2821         return (iflib_rxd_avail(ctx, rxq, *cidxp, 1));
2822 err:
2823         STATE_LOCK(ctx);
2824         ctx->ifc_flags |= IFC_DO_RESET;
2825         iflib_admin_intr_deferred(ctx);
2826         STATE_UNLOCK(ctx);
2827         return (false);
2828 }
2829
2830 #define TXD_NOTIFY_COUNT(txq) (((txq)->ift_size / (txq)->ift_update_freq)-1)
2831 static inline qidx_t
2832 txq_max_db_deferred(iflib_txq_t txq, qidx_t in_use)
2833 {
2834         qidx_t notify_count = TXD_NOTIFY_COUNT(txq);
2835         qidx_t minthresh = txq->ift_size / 8;
2836         if (in_use > 4*minthresh)
2837                 return (notify_count);
2838         if (in_use > 2*minthresh)
2839                 return (notify_count >> 1);
2840         if (in_use > minthresh)
2841                 return (notify_count >> 3);
2842         return (0);
2843 }
2844
2845 static inline qidx_t
2846 txq_max_rs_deferred(iflib_txq_t txq)
2847 {
2848         qidx_t notify_count = TXD_NOTIFY_COUNT(txq);
2849         qidx_t minthresh = txq->ift_size / 8;
2850         if (txq->ift_in_use > 4*minthresh)
2851                 return (notify_count);
2852         if (txq->ift_in_use > 2*minthresh)
2853                 return (notify_count >> 1);
2854         if (txq->ift_in_use > minthresh)
2855                 return (notify_count >> 2);
2856         return (2);
2857 }
2858
2859 #define M_CSUM_FLAGS(m) ((m)->m_pkthdr.csum_flags)
2860 #define M_HAS_VLANTAG(m) (m->m_flags & M_VLANTAG)
2861
2862 #define TXQ_MAX_DB_DEFERRED(txq, in_use) txq_max_db_deferred((txq), (in_use))
2863 #define TXQ_MAX_RS_DEFERRED(txq) txq_max_rs_deferred(txq)
2864 #define TXQ_MAX_DB_CONSUMED(size) (size >> 4)
2865
2866 /* forward compatibility for cxgb */
2867 #define FIRST_QSET(ctx) 0
2868 #define NTXQSETS(ctx) ((ctx)->ifc_softc_ctx.isc_ntxqsets)
2869 #define NRXQSETS(ctx) ((ctx)->ifc_softc_ctx.isc_nrxqsets)
2870 #define QIDX(ctx, m) ((((m)->m_pkthdr.flowid & ctx->ifc_softc_ctx.isc_rss_table_mask) % NTXQSETS(ctx)) + FIRST_QSET(ctx))
2871 #define DESC_RECLAIMABLE(q) ((int)((q)->ift_processed - (q)->ift_cleaned - (q)->ift_ctx->ifc_softc_ctx.isc_tx_nsegments))
2872
2873 /* XXX we should be setting this to something other than zero */
2874 #define RECLAIM_THRESH(ctx) ((ctx)->ifc_sctx->isc_tx_reclaim_thresh)
2875 #define MAX_TX_DESC(ctx) max((ctx)->ifc_softc_ctx.isc_tx_tso_segments_max, \
2876     (ctx)->ifc_softc_ctx.isc_tx_nsegments)
2877
2878 static inline bool
2879 iflib_txd_db_check(if_ctx_t ctx, iflib_txq_t txq, int ring, qidx_t in_use)
2880 {
2881         qidx_t dbval, max;
2882         bool rang;
2883
2884         rang = false;
2885         max = TXQ_MAX_DB_DEFERRED(txq, in_use);
2886         if (ring || txq->ift_db_pending >= max) {
2887                 dbval = txq->ift_npending ? txq->ift_npending : txq->ift_pidx;
2888                 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
2889                     BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2890                 ctx->isc_txd_flush(ctx->ifc_softc, txq->ift_id, dbval);
2891                 txq->ift_db_pending = txq->ift_npending = 0;
2892                 rang = true;
2893         }
2894         return (rang);
2895 }
2896
2897 #ifdef PKT_DEBUG
2898 static void
2899 print_pkt(if_pkt_info_t pi)
2900 {
2901         printf("pi len:  %d qsidx: %d nsegs: %d ndescs: %d flags: %x pidx: %d\n",
2902                pi->ipi_len, pi->ipi_qsidx, pi->ipi_nsegs, pi->ipi_ndescs, pi->ipi_flags, pi->ipi_pidx);
2903         printf("pi new_pidx: %d csum_flags: %lx tso_segsz: %d mflags: %x vtag: %d\n",
2904                pi->ipi_new_pidx, pi->ipi_csum_flags, pi->ipi_tso_segsz, pi->ipi_mflags, pi->ipi_vtag);
2905         printf("pi etype: %d ehdrlen: %d ip_hlen: %d ipproto: %d\n",
2906                pi->ipi_etype, pi->ipi_ehdrlen, pi->ipi_ip_hlen, pi->ipi_ipproto);
2907 }
2908 #endif
2909
2910 #define IS_TSO4(pi) ((pi)->ipi_csum_flags & CSUM_IP_TSO)
2911 #define IS_TX_OFFLOAD4(pi) ((pi)->ipi_csum_flags & (CSUM_IP_TCP | CSUM_IP_TSO))
2912 #define IS_TSO6(pi) ((pi)->ipi_csum_flags & CSUM_IP6_TSO)
2913 #define IS_TX_OFFLOAD6(pi) ((pi)->ipi_csum_flags & (CSUM_IP6_TCP | CSUM_IP6_TSO))
2914
2915 static int
2916 iflib_parse_header(iflib_txq_t txq, if_pkt_info_t pi, struct mbuf **mp)
2917 {
2918         if_shared_ctx_t sctx = txq->ift_ctx->ifc_sctx;
2919         struct ether_vlan_header *eh;
2920         struct mbuf *m;
2921
2922         m = *mp;
2923         if ((sctx->isc_flags & IFLIB_NEED_SCRATCH) &&
2924             M_WRITABLE(m) == 0) {
2925                 if ((m = m_dup(m, M_NOWAIT)) == NULL) {
2926                         return (ENOMEM);
2927                 } else {
2928                         m_freem(*mp);
2929                         DBG_COUNTER_INC(tx_frees);
2930                         *mp = m;
2931                 }
2932         }
2933
2934         /*
2935          * Determine where frame payload starts.
2936          * Jump over vlan headers if already present,
2937          * helpful for QinQ too.
2938          */
2939         if (__predict_false(m->m_len < sizeof(*eh))) {
2940                 txq->ift_pullups++;
2941                 if (__predict_false((m = m_pullup(m, sizeof(*eh))) == NULL))
2942                         return (ENOMEM);
2943         }
2944         eh = mtod(m, struct ether_vlan_header *);
2945         if (eh->evl_encap_proto == htons(ETHERTYPE_VLAN)) {
2946                 pi->ipi_etype = ntohs(eh->evl_proto);
2947                 pi->ipi_ehdrlen = ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN;
2948         } else {
2949                 pi->ipi_etype = ntohs(eh->evl_encap_proto);
2950                 pi->ipi_ehdrlen = ETHER_HDR_LEN;
2951         }
2952
2953         switch (pi->ipi_etype) {
2954 #ifdef INET
2955         case ETHERTYPE_IP:
2956         {
2957                 struct mbuf *n;
2958                 struct ip *ip = NULL;
2959                 struct tcphdr *th = NULL;
2960                 int minthlen;
2961
2962                 minthlen = min(m->m_pkthdr.len, pi->ipi_ehdrlen + sizeof(*ip) + sizeof(*th));
2963                 if (__predict_false(m->m_len < minthlen)) {
2964                         /*
2965                          * if this code bloat is causing too much of a hit
2966                          * move it to a separate function and mark it noinline
2967                          */
2968                         if (m->m_len == pi->ipi_ehdrlen) {
2969                                 n = m->m_next;
2970                                 MPASS(n);
2971                                 if (n->m_len >= sizeof(*ip))  {
2972                                         ip = (struct ip *)n->m_data;
2973                                         if (n->m_len >= (ip->ip_hl << 2) + sizeof(*th))
2974                                                 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
2975                                 } else {
2976                                         txq->ift_pullups++;
2977                                         if (__predict_false((m = m_pullup(m, minthlen)) == NULL))
2978                                                 return (ENOMEM);
2979                                         ip = (struct ip *)(m->m_data + pi->ipi_ehdrlen);
2980                                 }
2981                         } else {
2982                                 txq->ift_pullups++;
2983                                 if (__predict_false((m = m_pullup(m, minthlen)) == NULL))
2984                                         return (ENOMEM);
2985                                 ip = (struct ip *)(m->m_data + pi->ipi_ehdrlen);
2986                                 if (m->m_len >= (ip->ip_hl << 2) + sizeof(*th))
2987                                         th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
2988                         }
2989                 } else {
2990                         ip = (struct ip *)(m->m_data + pi->ipi_ehdrlen);
2991                         if (m->m_len >= (ip->ip_hl << 2) + sizeof(*th))
2992                                 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
2993                 }
2994                 pi->ipi_ip_hlen = ip->ip_hl << 2;
2995                 pi->ipi_ipproto = ip->ip_p;
2996                 pi->ipi_flags |= IPI_TX_IPV4;
2997
2998                 /* TCP checksum offload may require TCP header length */
2999                 if (IS_TX_OFFLOAD4(pi)) {
3000                         if (__predict_true(pi->ipi_ipproto == IPPROTO_TCP)) {
3001                                 if (__predict_false(th == NULL)) {
3002                                         txq->ift_pullups++;
3003                                         if (__predict_false((m = m_pullup(m, (ip->ip_hl << 2) + sizeof(*th))) == NULL))
3004                                                 return (ENOMEM);
3005                                         th = (struct tcphdr *)((caddr_t)ip + pi->ipi_ip_hlen);
3006                                 }
3007                                 pi->ipi_tcp_hflags = th->th_flags;
3008                                 pi->ipi_tcp_hlen = th->th_off << 2;
3009                                 pi->ipi_tcp_seq = th->th_seq;
3010                         }
3011                         if (IS_TSO4(pi)) {
3012                                 if (__predict_false(ip->ip_p != IPPROTO_TCP))
3013                                         return (ENXIO);
3014                                 /*
3015                                  * TSO always requires hardware checksum offload.
3016                                  */
3017                                 pi->ipi_csum_flags |= (CSUM_IP_TCP | CSUM_IP);
3018                                 th->th_sum = in_pseudo(ip->ip_src.s_addr,
3019                                                        ip->ip_dst.s_addr, htons(IPPROTO_TCP));
3020                                 pi->ipi_tso_segsz = m->m_pkthdr.tso_segsz;
3021                                 if (sctx->isc_flags & IFLIB_TSO_INIT_IP) {
3022                                         ip->ip_sum = 0;
3023                                         ip->ip_len = htons(pi->ipi_ip_hlen + pi->ipi_tcp_hlen + pi->ipi_tso_segsz);
3024                                 }
3025                         }
3026                 }
3027                 if ((sctx->isc_flags & IFLIB_NEED_ZERO_CSUM) && (pi->ipi_csum_flags & CSUM_IP))
3028                        ip->ip_sum = 0;
3029
3030                 break;
3031         }
3032 #endif
3033 #ifdef INET6
3034         case ETHERTYPE_IPV6:
3035         {
3036                 struct ip6_hdr *ip6 = (struct ip6_hdr *)(m->m_data + pi->ipi_ehdrlen);
3037                 struct tcphdr *th;
3038                 pi->ipi_ip_hlen = sizeof(struct ip6_hdr);
3039
3040                 if (__predict_false(m->m_len < pi->ipi_ehdrlen + sizeof(struct ip6_hdr))) {
3041                         txq->ift_pullups++;
3042                         if (__predict_false((m = m_pullup(m, pi->ipi_ehdrlen + sizeof(struct ip6_hdr))) == NULL))
3043                                 return (ENOMEM);
3044                 }
3045                 th = (struct tcphdr *)((caddr_t)ip6 + pi->ipi_ip_hlen);
3046
3047                 /* XXX-BZ this will go badly in case of ext hdrs. */
3048                 pi->ipi_ipproto = ip6->ip6_nxt;
3049                 pi->ipi_flags |= IPI_TX_IPV6;
3050
3051                 /* TCP checksum offload may require TCP header length */
3052                 if (IS_TX_OFFLOAD6(pi)) {
3053                         if (pi->ipi_ipproto == IPPROTO_TCP) {
3054                                 if (__predict_false(m->m_len < pi->ipi_ehdrlen + sizeof(struct ip6_hdr) + sizeof(struct tcphdr))) {
3055                                         txq->ift_pullups++;
3056                                         if (__predict_false((m = m_pullup(m, pi->ipi_ehdrlen + sizeof(struct ip6_hdr) + sizeof(struct tcphdr))) == NULL))
3057                                                 return (ENOMEM);
3058                                 }
3059                                 pi->ipi_tcp_hflags = th->th_flags;
3060                                 pi->ipi_tcp_hlen = th->th_off << 2;
3061                                 pi->ipi_tcp_seq = th->th_seq;
3062                         }
3063                         if (IS_TSO6(pi)) {
3064                                 if (__predict_false(ip6->ip6_nxt != IPPROTO_TCP))
3065                                         return (ENXIO);
3066                                 /*
3067                                  * TSO always requires hardware checksum offload.
3068                                  */
3069                                 pi->ipi_csum_flags |= CSUM_IP6_TCP;
3070                                 th->th_sum = in6_cksum_pseudo(ip6, 0, IPPROTO_TCP, 0);
3071                                 pi->ipi_tso_segsz = m->m_pkthdr.tso_segsz;
3072                         }
3073                 }
3074                 break;
3075         }
3076 #endif
3077         default:
3078                 pi->ipi_csum_flags &= ~CSUM_OFFLOAD;
3079                 pi->ipi_ip_hlen = 0;
3080                 break;
3081         }
3082         *mp = m;
3083
3084         return (0);
3085 }
3086
3087 /*
3088  * If dodgy hardware rejects the scatter gather chain we've handed it
3089  * we'll need to remove the mbuf chain from ifsg_m[] before we can add the
3090  * m_defrag'd mbufs
3091  */
3092 static __noinline struct mbuf *
3093 iflib_remove_mbuf(iflib_txq_t txq)
3094 {
3095         int ntxd, pidx;
3096         struct mbuf *m, **ifsd_m;
3097
3098         ifsd_m = txq->ift_sds.ifsd_m;
3099         ntxd = txq->ift_size;
3100         pidx = txq->ift_pidx & (ntxd - 1);
3101         ifsd_m = txq->ift_sds.ifsd_m;
3102         m = ifsd_m[pidx];
3103         ifsd_m[pidx] = NULL;
3104         bus_dmamap_unload(txq->ift_buf_tag, txq->ift_sds.ifsd_map[pidx]);
3105         if (txq->ift_sds.ifsd_tso_map != NULL)
3106                 bus_dmamap_unload(txq->ift_tso_buf_tag,
3107                     txq->ift_sds.ifsd_tso_map[pidx]);
3108 #if MEMORY_LOGGING
3109         txq->ift_dequeued++;
3110 #endif
3111         return (m);
3112 }
3113
3114 static inline caddr_t
3115 calc_next_txd(iflib_txq_t txq, int cidx, uint8_t qid)
3116 {
3117         qidx_t size;
3118         int ntxd;
3119         caddr_t start, end, cur, next;
3120
3121         ntxd = txq->ift_size;
3122         size = txq->ift_txd_size[qid];
3123         start = txq->ift_ifdi[qid].idi_vaddr;
3124
3125         if (__predict_false(size == 0))
3126                 return (start);
3127         cur = start + size*cidx;
3128         end = start + size*ntxd;
3129         next = CACHE_PTR_NEXT(cur);
3130         return (next < end ? next : start);
3131 }
3132
3133 /*
3134  * Pad an mbuf to ensure a minimum ethernet frame size.
3135  * min_frame_size is the frame size (less CRC) to pad the mbuf to
3136  */
3137 static __noinline int
3138 iflib_ether_pad(device_t dev, struct mbuf **m_head, uint16_t min_frame_size)
3139 {
3140         /*
3141          * 18 is enough bytes to pad an ARP packet to 46 bytes, and
3142          * and ARP message is the smallest common payload I can think of
3143          */
3144         static char pad[18];    /* just zeros */
3145         int n;
3146         struct mbuf *new_head;
3147
3148         if (!M_WRITABLE(*m_head)) {
3149                 new_head = m_dup(*m_head, M_NOWAIT);
3150                 if (new_head == NULL) {
3151                         m_freem(*m_head);
3152                         device_printf(dev, "cannot pad short frame, m_dup() failed");
3153                         DBG_COUNTER_INC(encap_pad_mbuf_fail);
3154                         DBG_COUNTER_INC(tx_frees);
3155                         return ENOMEM;
3156                 }
3157                 m_freem(*m_head);
3158                 *m_head = new_head;
3159         }
3160
3161         for (n = min_frame_size - (*m_head)->m_pkthdr.len;
3162              n > 0; n -= sizeof(pad))
3163                 if (!m_append(*m_head, min(n, sizeof(pad)), pad))
3164                         break;
3165
3166         if (n > 0) {
3167                 m_freem(*m_head);
3168                 device_printf(dev, "cannot pad short frame\n");
3169                 DBG_COUNTER_INC(encap_pad_mbuf_fail);
3170                 DBG_COUNTER_INC(tx_frees);
3171                 return (ENOBUFS);
3172         }
3173
3174         return 0;
3175 }
3176
3177 static int
3178 iflib_encap(iflib_txq_t txq, struct mbuf **m_headp)
3179 {
3180         if_ctx_t                ctx;
3181         if_shared_ctx_t         sctx;
3182         if_softc_ctx_t          scctx;
3183         bus_dma_tag_t           buf_tag;
3184         bus_dma_segment_t       *segs;
3185         struct mbuf             *m_head, **ifsd_m;
3186         void                    *next_txd;
3187         bus_dmamap_t            map;
3188         struct if_pkt_info      pi;
3189         int remap = 0;
3190         int err, nsegs, ndesc, max_segs, pidx, cidx, next, ntxd;
3191
3192         ctx = txq->ift_ctx;
3193         sctx = ctx->ifc_sctx;
3194         scctx = &ctx->ifc_softc_ctx;
3195         segs = txq->ift_segs;
3196         ntxd = txq->ift_size;
3197         m_head = *m_headp;
3198         map = NULL;
3199
3200         /*
3201          * If we're doing TSO the next descriptor to clean may be quite far ahead
3202          */
3203         cidx = txq->ift_cidx;
3204         pidx = txq->ift_pidx;
3205         if (ctx->ifc_flags & IFC_PREFETCH) {
3206                 next = (cidx + CACHE_PTR_INCREMENT) & (ntxd-1);
3207                 if (!(ctx->ifc_flags & IFLIB_HAS_TXCQ)) {
3208                         next_txd = calc_next_txd(txq, cidx, 0);
3209                         prefetch(next_txd);
3210                 }
3211
3212                 /* prefetch the next cache line of mbuf pointers and flags */
3213                 prefetch(&txq->ift_sds.ifsd_m[next]);
3214                 prefetch(&txq->ift_sds.ifsd_map[next]);
3215                 next = (cidx + CACHE_LINE_SIZE) & (ntxd-1);
3216         }
3217         map = txq->ift_sds.ifsd_map[pidx];
3218         ifsd_m = txq->ift_sds.ifsd_m;
3219
3220         if (m_head->m_pkthdr.csum_flags & CSUM_TSO) {
3221                 buf_tag = txq->ift_tso_buf_tag;
3222                 max_segs = scctx->isc_tx_tso_segments_max;
3223                 map = txq->ift_sds.ifsd_tso_map[pidx];
3224                 MPASS(buf_tag != NULL);
3225                 MPASS(max_segs > 0);
3226         } else {
3227                 buf_tag = txq->ift_buf_tag;
3228                 max_segs = scctx->isc_tx_nsegments;
3229                 map = txq->ift_sds.ifsd_map[pidx];
3230         }
3231         if ((sctx->isc_flags & IFLIB_NEED_ETHER_PAD) &&
3232             __predict_false(m_head->m_pkthdr.len < scctx->isc_min_frame_size)) {
3233                 err = iflib_ether_pad(ctx->ifc_dev, m_headp, scctx->isc_min_frame_size);
3234                 if (err) {
3235                         DBG_COUNTER_INC(encap_txd_encap_fail);
3236                         return err;
3237                 }
3238         }
3239         m_head = *m_headp;
3240
3241         pkt_info_zero(&pi);
3242         pi.ipi_mflags = (m_head->m_flags & (M_VLANTAG|M_BCAST|M_MCAST));
3243         pi.ipi_pidx = pidx;
3244         pi.ipi_qsidx = txq->ift_id;
3245         pi.ipi_len = m_head->m_pkthdr.len;
3246         pi.ipi_csum_flags = m_head->m_pkthdr.csum_flags;
3247         pi.ipi_vtag = (m_head->m_flags & M_VLANTAG) ? m_head->m_pkthdr.ether_vtag : 0;
3248
3249         /* deliberate bitwise OR to make one condition */
3250         if (__predict_true((pi.ipi_csum_flags | pi.ipi_vtag))) {
3251                 if (__predict_false((err = iflib_parse_header(txq, &pi, m_headp)) != 0)) {
3252                         DBG_COUNTER_INC(encap_txd_encap_fail);
3253                         return (err);
3254                 }
3255                 m_head = *m_headp;
3256         }
3257
3258 retry:
3259         err = bus_dmamap_load_mbuf_sg(buf_tag, map, m_head, segs, &nsegs,
3260             BUS_DMA_NOWAIT);
3261 defrag:
3262         if (__predict_false(err)) {
3263                 switch (err) {
3264                 case EFBIG:
3265                         /* try collapse once and defrag once */
3266                         if (remap == 0) {
3267                                 m_head = m_collapse(*m_headp, M_NOWAIT, max_segs);
3268                                 /* try defrag if collapsing fails */
3269                                 if (m_head == NULL)
3270                                         remap++;
3271                         }
3272                         if (remap == 1) {
3273                                 txq->ift_mbuf_defrag++;
3274                                 m_head = m_defrag(*m_headp, M_NOWAIT);
3275                         }
3276                         remap++;
3277                         if (__predict_false(m_head == NULL))
3278                                 goto defrag_failed;
3279                         *m_headp = m_head;
3280                         goto retry;
3281                         break;
3282                 case ENOMEM:
3283                         txq->ift_no_tx_dma_setup++;
3284                         break;
3285                 default:
3286                         txq->ift_no_tx_dma_setup++;
3287                         m_freem(*m_headp);
3288                         DBG_COUNTER_INC(tx_frees);
3289                         *m_headp = NULL;
3290                         break;
3291                 }
3292                 txq->ift_map_failed++;
3293                 DBG_COUNTER_INC(encap_load_mbuf_fail);
3294                 DBG_COUNTER_INC(encap_txd_encap_fail);
3295                 return (err);
3296         }
3297         ifsd_m[pidx] = m_head;
3298         /*
3299          * XXX assumes a 1 to 1 relationship between segments and
3300          *        descriptors - this does not hold true on all drivers, e.g.
3301          *        cxgb
3302          */
3303         if (__predict_false(nsegs + 2 > TXQ_AVAIL(txq))) {
3304                 txq->ift_no_desc_avail++;
3305                 bus_dmamap_unload(buf_tag, map);
3306                 DBG_COUNTER_INC(encap_txq_avail_fail);
3307                 DBG_COUNTER_INC(encap_txd_encap_fail);
3308                 if ((txq->ift_task.gt_task.ta_flags & TASK_ENQUEUED) == 0)
3309                         GROUPTASK_ENQUEUE(&txq->ift_task);
3310                 return (ENOBUFS);
3311         }
3312         /*
3313          * On Intel cards we can greatly reduce the number of TX interrupts
3314          * we see by only setting report status on every Nth descriptor.
3315          * However, this also means that the driver will need to keep track
3316          * of the descriptors that RS was set on to check them for the DD bit.
3317          */
3318         txq->ift_rs_pending += nsegs + 1;
3319         if (txq->ift_rs_pending > TXQ_MAX_RS_DEFERRED(txq) ||
3320              iflib_no_tx_batch || (TXQ_AVAIL(txq) - nsegs) <= MAX_TX_DESC(ctx) + 2) {
3321                 pi.ipi_flags |= IPI_TX_INTR;
3322                 txq->ift_rs_pending = 0;
3323         }
3324
3325         pi.ipi_segs = segs;
3326         pi.ipi_nsegs = nsegs;
3327
3328         MPASS(pidx >= 0 && pidx < txq->ift_size);
3329 #ifdef PKT_DEBUG
3330         print_pkt(&pi);
3331 #endif
3332         if ((err = ctx->isc_txd_encap(ctx->ifc_softc, &pi)) == 0) {
3333                 bus_dmamap_sync(buf_tag, map, BUS_DMASYNC_PREWRITE);
3334                 DBG_COUNTER_INC(tx_encap);
3335                 MPASS(pi.ipi_new_pidx < txq->ift_size);
3336
3337                 ndesc = pi.ipi_new_pidx - pi.ipi_pidx;
3338                 if (pi.ipi_new_pidx < pi.ipi_pidx) {
3339                         ndesc += txq->ift_size;
3340                         txq->ift_gen = 1;
3341                 }
3342                 /*
3343                  * drivers can need as many as 
3344                  * two sentinels
3345                  */
3346                 MPASS(ndesc <= pi.ipi_nsegs + 2);
3347                 MPASS(pi.ipi_new_pidx != pidx);
3348                 MPASS(ndesc > 0);
3349                 txq->ift_in_use += ndesc;
3350
3351                 /*
3352                  * We update the last software descriptor again here because there may
3353                  * be a sentinel and/or there may be more mbufs than segments
3354                  */
3355                 txq->ift_pidx = pi.ipi_new_pidx;
3356                 txq->ift_npending += pi.ipi_ndescs;
3357         } else {
3358                 *m_headp = m_head = iflib_remove_mbuf(txq);
3359                 if (err == EFBIG) {
3360                         txq->ift_txd_encap_efbig++;
3361                         if (remap < 2) {
3362                                 remap = 1;
3363                                 goto defrag;
3364                         }
3365                 }
3366                 goto defrag_failed;
3367         }
3368         /*
3369          * err can't possibly be non-zero here, so we don't neet to test it
3370          * to see if we need to DBG_COUNTER_INC(encap_txd_encap_fail).
3371          */
3372         return (err);
3373
3374 defrag_failed:
3375         txq->ift_mbuf_defrag_failed++;
3376         txq->ift_map_failed++;
3377         m_freem(*m_headp);
3378         DBG_COUNTER_INC(tx_frees);
3379         *m_headp = NULL;
3380         DBG_COUNTER_INC(encap_txd_encap_fail);
3381         return (ENOMEM);
3382 }
3383
3384 static void
3385 iflib_tx_desc_free(iflib_txq_t txq, int n)
3386 {
3387         uint32_t qsize, cidx, mask, gen;
3388         struct mbuf *m, **ifsd_m;
3389         bool do_prefetch;
3390
3391         cidx = txq->ift_cidx;
3392         gen = txq->ift_gen;
3393         qsize = txq->ift_size;
3394         mask = qsize-1;
3395         ifsd_m = txq->ift_sds.ifsd_m;
3396         do_prefetch = (txq->ift_ctx->ifc_flags & IFC_PREFETCH);
3397
3398         while (n-- > 0) {
3399                 if (do_prefetch) {
3400                         prefetch(ifsd_m[(cidx + 3) & mask]);
3401                         prefetch(ifsd_m[(cidx + 4) & mask]);
3402                 }
3403                 if ((m = ifsd_m[cidx]) != NULL) {
3404                         prefetch(&ifsd_m[(cidx + CACHE_PTR_INCREMENT) & mask]);
3405                         if (m->m_pkthdr.csum_flags & CSUM_TSO) {
3406                                 bus_dmamap_sync(txq->ift_tso_buf_tag,
3407                                     txq->ift_sds.ifsd_tso_map[cidx],
3408                                     BUS_DMASYNC_POSTWRITE);
3409                                 bus_dmamap_unload(txq->ift_tso_buf_tag,
3410                                     txq->ift_sds.ifsd_tso_map[cidx]);
3411                         } else {
3412                                 bus_dmamap_sync(txq->ift_buf_tag,
3413                                     txq->ift_sds.ifsd_map[cidx],
3414                                     BUS_DMASYNC_POSTWRITE);
3415                                 bus_dmamap_unload(txq->ift_buf_tag,
3416                                     txq->ift_sds.ifsd_map[cidx]);
3417                         }
3418                         /* XXX we don't support any drivers that batch packets yet */
3419                         MPASS(m->m_nextpkt == NULL);
3420                         m_freem(m);
3421                         ifsd_m[cidx] = NULL;
3422 #if MEMORY_LOGGING
3423                         txq->ift_dequeued++;
3424 #endif
3425                         DBG_COUNTER_INC(tx_frees);
3426                 }
3427                 if (__predict_false(++cidx == qsize)) {
3428                         cidx = 0;
3429                         gen = 0;
3430                 }
3431         }
3432         txq->ift_cidx = cidx;
3433         txq->ift_gen = gen;
3434 }
3435
3436 static __inline int
3437 iflib_completed_tx_reclaim(iflib_txq_t txq, int thresh)
3438 {
3439         int reclaim;
3440         if_ctx_t ctx = txq->ift_ctx;
3441
3442         KASSERT(thresh >= 0, ("invalid threshold to reclaim"));
3443         MPASS(thresh /*+ MAX_TX_DESC(txq->ift_ctx) */ < txq->ift_size);
3444
3445         /*
3446          * Need a rate-limiting check so that this isn't called every time
3447          */
3448         iflib_tx_credits_update(ctx, txq);
3449         reclaim = DESC_RECLAIMABLE(txq);
3450
3451         if (reclaim <= thresh /* + MAX_TX_DESC(txq->ift_ctx) */) {
3452 #ifdef INVARIANTS
3453                 if (iflib_verbose_debug) {
3454                         printf("%s processed=%ju cleaned=%ju tx_nsegments=%d reclaim=%d thresh=%d\n", __FUNCTION__,
3455                                txq->ift_processed, txq->ift_cleaned, txq->ift_ctx->ifc_softc_ctx.isc_tx_nsegments,
3456                                reclaim, thresh);
3457
3458                 }
3459 #endif
3460                 return (0);
3461         }
3462         iflib_tx_desc_free(txq, reclaim);
3463         txq->ift_cleaned += reclaim;
3464         txq->ift_in_use -= reclaim;
3465
3466         return (reclaim);
3467 }
3468
3469 static struct mbuf **
3470 _ring_peek_one(struct ifmp_ring *r, int cidx, int offset, int remaining)
3471 {
3472         int next, size;
3473         struct mbuf **items;
3474
3475         size = r->size;
3476         next = (cidx + CACHE_PTR_INCREMENT) & (size-1);
3477         items = __DEVOLATILE(struct mbuf **, &r->items[0]);
3478
3479         prefetch(items[(cidx + offset) & (size-1)]);
3480         if (remaining > 1) {
3481                 prefetch2cachelines(&items[next]);
3482                 prefetch2cachelines(items[(cidx + offset + 1) & (size-1)]);
3483                 prefetch2cachelines(items[(cidx + offset + 2) & (size-1)]);
3484                 prefetch2cachelines(items[(cidx + offset + 3) & (size-1)]);
3485         }
3486         return (__DEVOLATILE(struct mbuf **, &r->items[(cidx + offset) & (size-1)]));
3487 }
3488
3489 static void
3490 iflib_txq_check_drain(iflib_txq_t txq, int budget)
3491 {
3492
3493         ifmp_ring_check_drainage(txq->ift_br, budget);
3494 }
3495
3496 static uint32_t
3497 iflib_txq_can_drain(struct ifmp_ring *r)
3498 {
3499         iflib_txq_t txq = r->cookie;
3500         if_ctx_t ctx = txq->ift_ctx;
3501
3502         if (TXQ_AVAIL(txq) > MAX_TX_DESC(ctx) + 2)
3503                 return (1);
3504         bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
3505             BUS_DMASYNC_POSTREAD);
3506         return (ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id,
3507             false));
3508 }
3509
3510 static uint32_t
3511 iflib_txq_drain(struct ifmp_ring *r, uint32_t cidx, uint32_t pidx)
3512 {
3513         iflib_txq_t txq = r->cookie;
3514         if_ctx_t ctx = txq->ift_ctx;
3515         struct ifnet *ifp = ctx->ifc_ifp;
3516         struct mbuf **mp, *m;
3517         int i, count, consumed, pkt_sent, bytes_sent, mcast_sent, avail;
3518         int reclaimed, err, in_use_prev, desc_used;
3519         bool do_prefetch, ring, rang;
3520
3521         if (__predict_false(!(if_getdrvflags(ifp) & IFF_DRV_RUNNING) ||
3522                             !LINK_ACTIVE(ctx))) {
3523                 DBG_COUNTER_INC(txq_drain_notready);
3524                 return (0);
3525         }
3526         reclaimed = iflib_completed_tx_reclaim(txq, RECLAIM_THRESH(ctx));
3527         rang = iflib_txd_db_check(ctx, txq, reclaimed, txq->ift_in_use);
3528         avail = IDXDIFF(pidx, cidx, r->size);
3529         if (__predict_false(ctx->ifc_flags & IFC_QFLUSH)) {
3530                 DBG_COUNTER_INC(txq_drain_flushing);
3531                 for (i = 0; i < avail; i++) {
3532                         if (__predict_true(r->items[(cidx + i) & (r->size-1)] != (void *)txq))
3533                                 m_free(r->items[(cidx + i) & (r->size-1)]);
3534                         r->items[(cidx + i) & (r->size-1)] = NULL;
3535                 }
3536                 return (avail);
3537         }
3538
3539         if (__predict_false(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_OACTIVE)) {
3540                 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
3541                 CALLOUT_LOCK(txq);
3542                 callout_stop(&txq->ift_timer);
3543                 CALLOUT_UNLOCK(txq);
3544                 DBG_COUNTER_INC(txq_drain_oactive);
3545                 return (0);
3546         }
3547         if (reclaimed)
3548                 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
3549         consumed = mcast_sent = bytes_sent = pkt_sent = 0;
3550         count = MIN(avail, TX_BATCH_SIZE);
3551 #ifdef INVARIANTS
3552         if (iflib_verbose_debug)
3553                 printf("%s avail=%d ifc_flags=%x txq_avail=%d ", __FUNCTION__,
3554                        avail, ctx->ifc_flags, TXQ_AVAIL(txq));
3555 #endif
3556         do_prefetch = (ctx->ifc_flags & IFC_PREFETCH);
3557         avail = TXQ_AVAIL(txq);
3558         err = 0;
3559         for (desc_used = i = 0; i < count && avail > MAX_TX_DESC(ctx) + 2; i++) {
3560                 int rem = do_prefetch ? count - i : 0;
3561
3562                 mp = _ring_peek_one(r, cidx, i, rem);
3563                 MPASS(mp != NULL && *mp != NULL);
3564                 if (__predict_false(*mp == (struct mbuf *)txq)) {
3565                         consumed++;
3566                         reclaimed++;
3567                         continue;
3568                 }
3569                 in_use_prev = txq->ift_in_use;
3570                 err = iflib_encap(txq, mp);
3571                 if (__predict_false(err)) {
3572                         /* no room - bail out */
3573                         if (err == ENOBUFS)
3574                                 break;
3575                         consumed++;
3576                         /* we can't send this packet - skip it */
3577                         continue;
3578                 }
3579                 consumed++;
3580                 pkt_sent++;
3581                 m = *mp;
3582                 DBG_COUNTER_INC(tx_sent);
3583                 bytes_sent += m->m_pkthdr.len;
3584                 mcast_sent += !!(m->m_flags & M_MCAST);
3585                 avail = TXQ_AVAIL(txq);
3586
3587                 txq->ift_db_pending += (txq->ift_in_use - in_use_prev);
3588                 desc_used += (txq->ift_in_use - in_use_prev);
3589                 ETHER_BPF_MTAP(ifp, m);
3590                 if (__predict_false(!(ifp->if_drv_flags & IFF_DRV_RUNNING)))
3591                         break;
3592                 rang = iflib_txd_db_check(ctx, txq, false, in_use_prev);
3593         }
3594
3595         /* deliberate use of bitwise or to avoid gratuitous short-circuit */
3596         ring = rang ? false  : (iflib_min_tx_latency | err) || (TXQ_AVAIL(txq) < MAX_TX_DESC(ctx));
3597         iflib_txd_db_check(ctx, txq, ring, txq->ift_in_use);
3598         if_inc_counter(ifp, IFCOUNTER_OBYTES, bytes_sent);
3599         if_inc_counter(ifp, IFCOUNTER_OPACKETS, pkt_sent);
3600         if (mcast_sent)
3601                 if_inc_counter(ifp, IFCOUNTER_OMCASTS, mcast_sent);
3602 #ifdef INVARIANTS
3603         if (iflib_verbose_debug)
3604                 printf("consumed=%d\n", consumed);
3605 #endif
3606         return (consumed);
3607 }
3608
3609 static uint32_t
3610 iflib_txq_drain_always(struct ifmp_ring *r)
3611 {
3612         return (1);
3613 }
3614
3615 static uint32_t
3616 iflib_txq_drain_free(struct ifmp_ring *r, uint32_t cidx, uint32_t pidx)
3617 {
3618         int i, avail;
3619         struct mbuf **mp;
3620         iflib_txq_t txq;
3621
3622         txq = r->cookie;
3623
3624         txq->ift_qstatus = IFLIB_QUEUE_IDLE;
3625         CALLOUT_LOCK(txq);
3626         callout_stop(&txq->ift_timer);
3627         CALLOUT_UNLOCK(txq);
3628
3629         avail = IDXDIFF(pidx, cidx, r->size);
3630         for (i = 0; i < avail; i++) {
3631                 mp = _ring_peek_one(r, cidx, i, avail - i);
3632                 if (__predict_false(*mp == (struct mbuf *)txq))
3633                         continue;
3634                 m_freem(*mp);
3635                 DBG_COUNTER_INC(tx_frees);
3636         }
3637         MPASS(ifmp_ring_is_stalled(r) == 0);
3638         return (avail);
3639 }
3640
3641 static void
3642 iflib_ifmp_purge(iflib_txq_t txq)
3643 {
3644         struct ifmp_ring *r;
3645
3646         r = txq->ift_br;
3647         r->drain = iflib_txq_drain_free;
3648         r->can_drain = iflib_txq_drain_always;
3649
3650         ifmp_ring_check_drainage(r, r->size);
3651
3652         r->drain = iflib_txq_drain;
3653         r->can_drain = iflib_txq_can_drain;
3654 }
3655
3656 static void
3657 _task_fn_tx(void *context)
3658 {
3659         iflib_txq_t txq = context;
3660         if_ctx_t ctx = txq->ift_ctx;
3661         int abdicate = ctx->ifc_sysctl_tx_abdicate;
3662
3663 #ifdef IFLIB_DIAGNOSTICS
3664         txq->ift_cpu_exec_count[curcpu]++;
3665 #endif
3666         if (!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING))
3667                 return;
3668 #ifdef DEV_NETMAP
3669         if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP) {
3670                 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
3671                     BUS_DMASYNC_POSTREAD);
3672                 if (ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id, false))
3673                         netmap_tx_irq(ctx->ifc_ifp, txq->ift_id);
3674                 IFDI_TX_QUEUE_INTR_ENABLE(ctx, txq->ift_id);
3675                 return;
3676         }
3677 #endif
3678 #ifdef ALTQ
3679         if (ALTQ_IS_ENABLED(&ifp->if_snd))
3680                 iflib_altq_if_start(ifp);
3681 #endif
3682         if (txq->ift_db_pending)
3683                 ifmp_ring_enqueue(txq->ift_br, (void **)&txq, 1, TX_BATCH_SIZE, abdicate);
3684         else if (!abdicate)
3685                 ifmp_ring_check_drainage(txq->ift_br, TX_BATCH_SIZE);
3686         /*
3687          * When abdicating, we always need to check drainage, not just when we don't enqueue
3688          */
3689         if (abdicate)
3690                 ifmp_ring_check_drainage(txq->ift_br, TX_BATCH_SIZE);
3691         if (ctx->ifc_flags & IFC_LEGACY)
3692                 IFDI_INTR_ENABLE(ctx);
3693         else {
3694 #ifdef INVARIANTS
3695                 int rc =
3696 #endif
3697                         IFDI_TX_QUEUE_INTR_ENABLE(ctx, txq->ift_id);
3698                         KASSERT(rc != ENOTSUP, ("MSI-X support requires queue_intr_enable, but not implemented in driver"));
3699         }
3700 }
3701
3702 static void
3703 _task_fn_rx(void *context)
3704 {
3705         iflib_rxq_t rxq = context;
3706         if_ctx_t ctx = rxq->ifr_ctx;
3707         bool more;
3708         uint16_t budget;
3709
3710 #ifdef IFLIB_DIAGNOSTICS
3711         rxq->ifr_cpu_exec_count[curcpu]++;
3712 #endif
3713         DBG_COUNTER_INC(task_fn_rxs);
3714         if (__predict_false(!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING)))
3715                 return;
3716         more = true;
3717 #ifdef DEV_NETMAP
3718         if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP) {
3719                 u_int work = 0;
3720                 if (netmap_rx_irq(ctx->ifc_ifp, rxq->ifr_id, &work)) {
3721                         more = false;
3722                 }
3723         }
3724 #endif
3725         budget = ctx->ifc_sysctl_rx_budget;
3726         if (budget == 0)
3727                 budget = 16;    /* XXX */
3728         if (more == false || (more = iflib_rxeof(rxq, budget)) == false) {
3729                 if (ctx->ifc_flags & IFC_LEGACY)
3730                         IFDI_INTR_ENABLE(ctx);
3731                 else {
3732 #ifdef INVARIANTS
3733                         int rc =
3734 #endif
3735                                 IFDI_RX_QUEUE_INTR_ENABLE(ctx, rxq->ifr_id);
3736                         KASSERT(rc != ENOTSUP, ("MSI-X support requires queue_intr_enable, but not implemented in driver"));
3737                         DBG_COUNTER_INC(rx_intr_enables);
3738                 }
3739         }
3740         if (__predict_false(!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING)))
3741                 return;
3742         if (more)
3743                 GROUPTASK_ENQUEUE(&rxq->ifr_task);
3744 }
3745
3746 static void
3747 _task_fn_admin(void *context)
3748 {
3749         if_ctx_t ctx = context;
3750         if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
3751         iflib_txq_t txq;
3752         int i;
3753         bool oactive, running, do_reset, do_watchdog, in_detach;
3754         uint32_t reset_on = hz / 2;
3755
3756         STATE_LOCK(ctx);
3757         running = (if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING);
3758         oactive = (if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_OACTIVE);
3759         do_reset = (ctx->ifc_flags & IFC_DO_RESET);
3760         do_watchdog = (ctx->ifc_flags & IFC_DO_WATCHDOG);
3761         in_detach = (ctx->ifc_flags & IFC_IN_DETACH);
3762         ctx->ifc_flags &= ~(IFC_DO_RESET|IFC_DO_WATCHDOG);
3763         STATE_UNLOCK(ctx);
3764
3765         if ((!running && !oactive) && !(ctx->ifc_sctx->isc_flags & IFLIB_ADMIN_ALWAYS_RUN))
3766                 return;
3767         if (in_detach)
3768                 return;
3769
3770         CTX_LOCK(ctx);
3771         for (txq = ctx->ifc_txqs, i = 0; i < sctx->isc_ntxqsets; i++, txq++) {
3772                 CALLOUT_LOCK(txq);
3773                 callout_stop(&txq->ift_timer);
3774                 CALLOUT_UNLOCK(txq);
3775         }
3776         if (do_watchdog) {
3777                 ctx->ifc_watchdog_events++;
3778                 IFDI_WATCHDOG_RESET(ctx);
3779         }
3780         IFDI_UPDATE_ADMIN_STATUS(ctx);
3781         for (txq = ctx->ifc_txqs, i = 0; i < sctx->isc_ntxqsets; i++, txq++) {
3782 #ifdef DEV_NETMAP
3783                 reset_on = hz / 2;
3784                 if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP)
3785                         iflib_netmap_timer_adjust(ctx, txq, &reset_on);
3786 #endif
3787                 callout_reset_on(&txq->ift_timer, reset_on, iflib_timer, txq, txq->ift_timer.c_cpu);
3788         }
3789         IFDI_LINK_INTR_ENABLE(ctx);
3790         if (do_reset)
3791                 iflib_if_init_locked(ctx);
3792         CTX_UNLOCK(ctx);
3793
3794         if (LINK_ACTIVE(ctx) == 0)
3795                 return;
3796         for (txq = ctx->ifc_txqs, i = 0; i < sctx->isc_ntxqsets; i++, txq++)
3797                 iflib_txq_check_drain(txq, IFLIB_RESTART_BUDGET);
3798 }
3799
3800
3801 static void
3802 _task_fn_iov(void *context)
3803 {
3804         if_ctx_t ctx = context;
3805
3806         if (!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING) &&
3807             !(ctx->ifc_sctx->isc_flags & IFLIB_ADMIN_ALWAYS_RUN))
3808                 return;
3809
3810         CTX_LOCK(ctx);
3811         IFDI_VFLR_HANDLE(ctx);
3812         CTX_UNLOCK(ctx);
3813 }
3814
3815 static int
3816 iflib_sysctl_int_delay(SYSCTL_HANDLER_ARGS)
3817 {
3818         int err;
3819         if_int_delay_info_t info;
3820         if_ctx_t ctx;
3821
3822         info = (if_int_delay_info_t)arg1;
3823         ctx = info->iidi_ctx;
3824         info->iidi_req = req;
3825         info->iidi_oidp = oidp;
3826         CTX_LOCK(ctx);
3827         err = IFDI_SYSCTL_INT_DELAY(ctx, info);
3828         CTX_UNLOCK(ctx);
3829         return (err);
3830 }
3831
3832 /*********************************************************************
3833  *
3834  *  IFNET FUNCTIONS
3835  *
3836  **********************************************************************/
3837
3838 static void
3839 iflib_if_init_locked(if_ctx_t ctx)
3840 {
3841         iflib_stop(ctx);
3842         iflib_init_locked(ctx);
3843 }
3844
3845
3846 static void
3847 iflib_if_init(void *arg)
3848 {
3849         if_ctx_t ctx = arg;
3850
3851         CTX_LOCK(ctx);
3852         iflib_if_init_locked(ctx);
3853         CTX_UNLOCK(ctx);
3854 }
3855
3856 static int
3857 iflib_if_transmit(if_t ifp, struct mbuf *m)
3858 {
3859         if_ctx_t        ctx = if_getsoftc(ifp);
3860
3861         iflib_txq_t txq;
3862         int err, qidx;
3863         int abdicate = ctx->ifc_sysctl_tx_abdicate;
3864
3865         if (__predict_false((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 || !LINK_ACTIVE(ctx))) {
3866                 DBG_COUNTER_INC(tx_frees);
3867                 m_freem(m);
3868                 return (ENOBUFS);
3869         }
3870
3871         MPASS(m->m_nextpkt == NULL);
3872         /* ALTQ-enabled interfaces always use queue 0. */
3873         qidx = 0;
3874         if ((NTXQSETS(ctx) > 1) && M_HASHTYPE_GET(m) && !ALTQ_IS_ENABLED(&ifp->if_snd))
3875                 qidx = QIDX(ctx, m);
3876         /*
3877          * XXX calculate buf_ring based on flowid (divvy up bits?)
3878          */
3879         txq = &ctx->ifc_txqs[qidx];
3880
3881 #ifdef DRIVER_BACKPRESSURE
3882         if (txq->ift_closed) {
3883                 while (m != NULL) {
3884                         next = m->m_nextpkt;
3885                         m->m_nextpkt = NULL;
3886                         m_freem(m);
3887                         DBG_COUNTER_INC(tx_frees);
3888                         m = next;
3889                 }
3890                 return (ENOBUFS);
3891         }
3892 #endif
3893 #ifdef notyet
3894         qidx = count = 0;
3895         mp = marr;
3896         next = m;
3897         do {
3898                 count++;
3899                 next = next->m_nextpkt;
3900         } while (next != NULL);
3901
3902         if (count > nitems(marr))
3903                 if ((mp = malloc(count*sizeof(struct mbuf *), M_IFLIB, M_NOWAIT)) == NULL) {
3904                         /* XXX check nextpkt */
3905                         m_freem(m);
3906                         /* XXX simplify for now */
3907                         DBG_COUNTER_INC(tx_frees);
3908                         return (ENOBUFS);
3909                 }
3910         for (next = m, i = 0; next != NULL; i++) {
3911                 mp[i] = next;
3912                 next = next->m_nextpkt;
3913                 mp[i]->m_nextpkt = NULL;
3914         }
3915 #endif
3916         DBG_COUNTER_INC(tx_seen);
3917         err = ifmp_ring_enqueue(txq->ift_br, (void **)&m, 1, TX_BATCH_SIZE, abdicate);
3918
3919         if (abdicate)
3920                 GROUPTASK_ENQUEUE(&txq->ift_task);
3921         if (err) {
3922                 if (!abdicate)
3923                         GROUPTASK_ENQUEUE(&txq->ift_task);
3924                 /* support forthcoming later */
3925 #ifdef DRIVER_BACKPRESSURE
3926                 txq->ift_closed = TRUE;
3927 #endif
3928                 ifmp_ring_check_drainage(txq->ift_br, TX_BATCH_SIZE);
3929                 m_freem(m);
3930                 DBG_COUNTER_INC(tx_frees);
3931         }
3932
3933         return (err);
3934 }
3935
3936 #ifdef ALTQ
3937 /*
3938  * The overall approach to integrating iflib with ALTQ is to continue to use
3939  * the iflib mp_ring machinery between the ALTQ queue(s) and the hardware
3940  * ring.  Technically, when using ALTQ, queueing to an intermediate mp_ring
3941  * is redundant/unnecessary, but doing so minimizes the amount of
3942  * ALTQ-specific code required in iflib.  It is assumed that the overhead of
3943  * redundantly queueing to an intermediate mp_ring is swamped by the
3944  * performance limitations inherent in using ALTQ.
3945  *
3946  * When ALTQ support is compiled in, all iflib drivers will use a transmit
3947  * routine, iflib_altq_if_transmit(), that checks if ALTQ is enabled for the
3948  * given interface.  If ALTQ is enabled for an interface, then all
3949  * transmitted packets for that interface will be submitted to the ALTQ
3950  * subsystem via IFQ_ENQUEUE().  We don't use the legacy if_transmit()
3951  * implementation because it uses IFQ_HANDOFF(), which will duplicatively
3952  * update stats that the iflib machinery handles, and which is sensitve to
3953  * the disused IFF_DRV_OACTIVE flag.  Additionally, iflib_altq_if_start()
3954  * will be installed as the start routine for use by ALTQ facilities that
3955  * need to trigger queue drains on a scheduled basis.
3956  *
3957  */
3958 static void
3959 iflib_altq_if_start(if_t ifp)
3960 {
3961         struct ifaltq *ifq = &ifp->if_snd;
3962         struct mbuf *m;
3963         
3964         IFQ_LOCK(ifq);
3965         IFQ_DEQUEUE_NOLOCK(ifq, m);
3966         while (m != NULL) {
3967                 iflib_if_transmit(ifp, m);
3968                 IFQ_DEQUEUE_NOLOCK(ifq, m);
3969         }
3970         IFQ_UNLOCK(ifq);
3971 }
3972
3973 static int
3974 iflib_altq_if_transmit(if_t ifp, struct mbuf *m)
3975 {
3976         int err;
3977
3978         if (ALTQ_IS_ENABLED(&ifp->if_snd)) {
3979                 IFQ_ENQUEUE(&ifp->if_snd, m, err);
3980                 if (err == 0)
3981                         iflib_altq_if_start(ifp);
3982         } else
3983                 err = iflib_if_transmit(ifp, m);
3984
3985         return (err);
3986 }
3987 #endif /* ALTQ */
3988
3989 static void
3990 iflib_if_qflush(if_t ifp)
3991 {
3992         if_ctx_t ctx = if_getsoftc(ifp);
3993         iflib_txq_t txq = ctx->ifc_txqs;
3994         int i;
3995
3996         STATE_LOCK(ctx);
3997         ctx->ifc_flags |= IFC_QFLUSH;
3998         STATE_UNLOCK(ctx);
3999         for (i = 0; i < NTXQSETS(ctx); i++, txq++)
4000                 while (!(ifmp_ring_is_idle(txq->ift_br) || ifmp_ring_is_stalled(txq->ift_br)))
4001                         iflib_txq_check_drain(txq, 0);
4002         STATE_LOCK(ctx);
4003         ctx->ifc_flags &= ~IFC_QFLUSH;
4004         STATE_UNLOCK(ctx);
4005
4006         /*
4007          * When ALTQ is enabled, this will also take care of purging the
4008          * ALTQ queue(s).
4009          */
4010         if_qflush(ifp);
4011 }
4012
4013
4014 #define IFCAP_FLAGS (IFCAP_HWCSUM_IPV6 | IFCAP_HWCSUM | IFCAP_LRO | \
4015                      IFCAP_TSO | IFCAP_VLAN_HWTAGGING | IFCAP_HWSTATS | \
4016                      IFCAP_VLAN_MTU | IFCAP_VLAN_HWFILTER | \
4017                      IFCAP_VLAN_HWTSO | IFCAP_VLAN_HWCSUM)
4018
4019 static int
4020 iflib_if_ioctl(if_t ifp, u_long command, caddr_t data)
4021 {
4022         if_ctx_t ctx = if_getsoftc(ifp);
4023         struct ifreq    *ifr = (struct ifreq *)data;
4024 #if defined(INET) || defined(INET6)
4025         struct ifaddr   *ifa = (struct ifaddr *)data;
4026 #endif
4027         bool            avoid_reset = FALSE;
4028         int             err = 0, reinit = 0, bits;
4029
4030         switch (command) {
4031         case SIOCSIFADDR:
4032 #ifdef INET
4033                 if (ifa->ifa_addr->sa_family == AF_INET)
4034                         avoid_reset = TRUE;
4035 #endif
4036 #ifdef INET6
4037                 if (ifa->ifa_addr->sa_family == AF_INET6)
4038                         avoid_reset = TRUE;
4039 #endif
4040                 /*
4041                 ** Calling init results in link renegotiation,
4042                 ** so we avoid doing it when possible.
4043                 */
4044                 if (avoid_reset) {
4045                         if_setflagbits(ifp, IFF_UP,0);
4046                         if (!(if_getdrvflags(ifp) & IFF_DRV_RUNNING))
4047                                 reinit = 1;
4048 #ifdef INET
4049                         if (!(if_getflags(ifp) & IFF_NOARP))
4050                                 arp_ifinit(ifp, ifa);
4051 #endif
4052                 } else
4053                         err = ether_ioctl(ifp, command, data);
4054                 break;
4055         case SIOCSIFMTU:
4056                 CTX_LOCK(ctx);
4057                 if (ifr->ifr_mtu == if_getmtu(ifp)) {
4058                         CTX_UNLOCK(ctx);
4059                         break;
4060                 }
4061                 bits = if_getdrvflags(ifp);
4062                 /* stop the driver and free any clusters before proceeding */
4063                 iflib_stop(ctx);
4064
4065                 if ((err = IFDI_MTU_SET(ctx, ifr->ifr_mtu)) == 0) {
4066                         STATE_LOCK(ctx);
4067                         if (ifr->ifr_mtu > ctx->ifc_max_fl_buf_size)
4068                                 ctx->ifc_flags |= IFC_MULTISEG;
4069                         else
4070                                 ctx->ifc_flags &= ~IFC_MULTISEG;
4071                         STATE_UNLOCK(ctx);
4072                         err = if_setmtu(ifp, ifr->ifr_mtu);
4073                 }
4074                 iflib_init_locked(ctx);
4075                 STATE_LOCK(ctx);
4076                 if_setdrvflags(ifp, bits);
4077                 STATE_UNLOCK(ctx);
4078                 CTX_UNLOCK(ctx);
4079                 break;
4080         case SIOCSIFFLAGS:
4081                 CTX_LOCK(ctx);
4082                 if (if_getflags(ifp) & IFF_UP) {
4083                         if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4084                                 if ((if_getflags(ifp) ^ ctx->ifc_if_flags) &
4085                                     (IFF_PROMISC | IFF_ALLMULTI)) {
4086                                         err = IFDI_PROMISC_SET(ctx, if_getflags(ifp));
4087                                 }
4088                         } else
4089                                 reinit = 1;
4090                 } else if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4091                         iflib_stop(ctx);
4092                 }
4093                 ctx->ifc_if_flags = if_getflags(ifp);
4094                 CTX_UNLOCK(ctx);
4095                 break;
4096         case SIOCADDMULTI:
4097         case SIOCDELMULTI:
4098                 if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4099                         CTX_LOCK(ctx);
4100                         IFDI_INTR_DISABLE(ctx);
4101                         IFDI_MULTI_SET(ctx);
4102                         IFDI_INTR_ENABLE(ctx);
4103                         CTX_UNLOCK(ctx);
4104                 }
4105                 break;
4106         case SIOCSIFMEDIA:
4107                 CTX_LOCK(ctx);
4108                 IFDI_MEDIA_SET(ctx);
4109                 CTX_UNLOCK(ctx);
4110                 /* falls thru */
4111         case SIOCGIFMEDIA:
4112         case SIOCGIFXMEDIA:
4113                 err = ifmedia_ioctl(ifp, ifr, &ctx->ifc_media, command);
4114                 break;
4115         case SIOCGI2C:
4116         {
4117                 struct ifi2creq i2c;
4118
4119                 err = copyin(ifr_data_get_ptr(ifr), &i2c, sizeof(i2c));
4120                 if (err != 0)
4121                         break;
4122                 if (i2c.dev_addr != 0xA0 && i2c.dev_addr != 0xA2) {
4123                         err = EINVAL;
4124                         break;
4125                 }
4126                 if (i2c.len > sizeof(i2c.data)) {
4127                         err = EINVAL;
4128                         break;
4129                 }
4130
4131                 if ((err = IFDI_I2C_REQ(ctx, &i2c)) == 0)
4132                         err = copyout(&i2c, ifr_data_get_ptr(ifr),
4133                             sizeof(i2c));
4134                 break;
4135         }
4136         case SIOCSIFCAP:
4137         {
4138                 int mask, setmask, oldmask;
4139
4140                 oldmask = if_getcapenable(ifp);
4141                 mask = ifr->ifr_reqcap ^ oldmask;
4142                 mask &= ctx->ifc_softc_ctx.isc_capabilities;
4143                 setmask = 0;
4144 #ifdef TCP_OFFLOAD
4145                 setmask |= mask & (IFCAP_TOE4|IFCAP_TOE6);
4146 #endif
4147                 setmask |= (mask & IFCAP_FLAGS);
4148                 setmask |= (mask & IFCAP_WOL);
4149
4150                 /*
4151                  * If any RX csum has changed, change all the ones that
4152                  * are supported by the driver.
4153                  */
4154                 if (setmask & (IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6)) {
4155                         setmask |= ctx->ifc_softc_ctx.isc_capabilities &
4156                             (IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6);
4157                 }
4158
4159                 /*
4160                  * want to ensure that traffic has stopped before we change any of the flags
4161                  */
4162                 if (setmask) {
4163                         CTX_LOCK(ctx);
4164                         bits = if_getdrvflags(ifp);
4165                         if (bits & IFF_DRV_RUNNING && setmask & ~IFCAP_WOL)
4166                                 iflib_stop(ctx);
4167                         STATE_LOCK(ctx);
4168                         if_togglecapenable(ifp, setmask);
4169                         STATE_UNLOCK(ctx);
4170                         if (bits & IFF_DRV_RUNNING && setmask & ~IFCAP_WOL)
4171                                 iflib_init_locked(ctx);
4172                         STATE_LOCK(ctx);
4173                         if_setdrvflags(ifp, bits);
4174                         STATE_UNLOCK(ctx);
4175                         CTX_UNLOCK(ctx);
4176                 }
4177                 if_vlancap(ifp);
4178                 break;
4179         }
4180         case SIOCGPRIVATE_0:
4181         case SIOCSDRVSPEC:
4182         case SIOCGDRVSPEC:
4183                 CTX_LOCK(ctx);
4184                 err = IFDI_PRIV_IOCTL(ctx, command, data);
4185                 CTX_UNLOCK(ctx);
4186                 break;
4187         default:
4188                 err = ether_ioctl(ifp, command, data);
4189                 break;
4190         }
4191         if (reinit)
4192                 iflib_if_init(ctx);
4193         return (err);
4194 }
4195
4196 static uint64_t
4197 iflib_if_get_counter(if_t ifp, ift_counter cnt)
4198 {
4199         if_ctx_t ctx = if_getsoftc(ifp);
4200
4201         return (IFDI_GET_COUNTER(ctx, cnt));
4202 }
4203
4204 /*********************************************************************
4205  *
4206  *  OTHER FUNCTIONS EXPORTED TO THE STACK
4207  *
4208  **********************************************************************/
4209
4210 static void
4211 iflib_vlan_register(void *arg, if_t ifp, uint16_t vtag)
4212 {
4213         if_ctx_t ctx = if_getsoftc(ifp);
4214
4215         if ((void *)ctx != arg)
4216                 return;
4217
4218         if ((vtag == 0) || (vtag > 4095))
4219                 return;
4220
4221         CTX_LOCK(ctx);
4222         IFDI_VLAN_REGISTER(ctx, vtag);
4223         /* Re-init to load the changes */
4224         if (if_getcapenable(ifp) & IFCAP_VLAN_HWFILTER)
4225                 iflib_if_init_locked(ctx);
4226         CTX_UNLOCK(ctx);
4227 }
4228
4229 static void
4230 iflib_vlan_unregister(void *arg, if_t ifp, uint16_t vtag)
4231 {
4232         if_ctx_t ctx = if_getsoftc(ifp);
4233
4234         if ((void *)ctx != arg)
4235                 return;
4236
4237         if ((vtag == 0) || (vtag > 4095))
4238                 return;
4239
4240         CTX_LOCK(ctx);
4241         IFDI_VLAN_UNREGISTER(ctx, vtag);
4242         /* Re-init to load the changes */
4243         if (if_getcapenable(ifp) & IFCAP_VLAN_HWFILTER)
4244                 iflib_if_init_locked(ctx);
4245         CTX_UNLOCK(ctx);
4246 }
4247
4248 static void
4249 iflib_led_func(void *arg, int onoff)
4250 {
4251         if_ctx_t ctx = arg;
4252
4253         CTX_LOCK(ctx);
4254         IFDI_LED_FUNC(ctx, onoff);
4255         CTX_UNLOCK(ctx);
4256 }
4257
4258 /*********************************************************************
4259  *
4260  *  BUS FUNCTION DEFINITIONS
4261  *
4262  **********************************************************************/
4263
4264 int
4265 iflib_device_probe(device_t dev)
4266 {
4267         pci_vendor_info_t *ent;
4268
4269         uint16_t        pci_vendor_id, pci_device_id;
4270         uint16_t        pci_subvendor_id, pci_subdevice_id;
4271         uint16_t        pci_rev_id;
4272         if_shared_ctx_t sctx;
4273
4274         if ((sctx = DEVICE_REGISTER(dev)) == NULL || sctx->isc_magic != IFLIB_MAGIC)
4275                 return (ENOTSUP);
4276
4277         pci_vendor_id = pci_get_vendor(dev);
4278         pci_device_id = pci_get_device(dev);
4279         pci_subvendor_id = pci_get_subvendor(dev);
4280         pci_subdevice_id = pci_get_subdevice(dev);
4281         pci_rev_id = pci_get_revid(dev);
4282         if (sctx->isc_parse_devinfo != NULL)
4283                 sctx->isc_parse_devinfo(&pci_device_id, &pci_subvendor_id, &pci_subdevice_id, &pci_rev_id);
4284
4285         ent = sctx->isc_vendor_info;
4286         while (ent->pvi_vendor_id != 0) {
4287                 if (pci_vendor_id != ent->pvi_vendor_id) {
4288                         ent++;
4289                         continue;
4290                 }
4291                 if ((pci_device_id == ent->pvi_device_id) &&
4292                     ((pci_subvendor_id == ent->pvi_subvendor_id) ||
4293                      (ent->pvi_subvendor_id == 0)) &&
4294                     ((pci_subdevice_id == ent->pvi_subdevice_id) ||
4295                      (ent->pvi_subdevice_id == 0)) &&
4296                     ((pci_rev_id == ent->pvi_rev_id) ||
4297                      (ent->pvi_rev_id == 0))) {
4298
4299                         device_set_desc_copy(dev, ent->pvi_name);
4300                         /* this needs to be changed to zero if the bus probing code
4301                          * ever stops re-probing on best match because the sctx
4302                          * may have its values over written by register calls
4303                          * in subsequent probes
4304                          */
4305                         return (BUS_PROBE_DEFAULT);
4306                 }
4307                 ent++;
4308         }
4309         return (ENXIO);
4310 }
4311
4312 static void
4313 iflib_reset_qvalues(if_ctx_t ctx)
4314 {
4315         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
4316         if_shared_ctx_t sctx = ctx->ifc_sctx;
4317         device_t dev = ctx->ifc_dev;
4318         int i;
4319
4320         scctx->isc_txrx_budget_bytes_max = IFLIB_MAX_TX_BYTES;
4321         scctx->isc_tx_qdepth = IFLIB_DEFAULT_TX_QDEPTH;
4322         /*
4323          * XXX sanity check that ntxd & nrxd are a power of 2
4324          */
4325         if (ctx->ifc_sysctl_ntxqs != 0)
4326                 scctx->isc_ntxqsets = ctx->ifc_sysctl_ntxqs;
4327         if (ctx->ifc_sysctl_nrxqs != 0)
4328                 scctx->isc_nrxqsets = ctx->ifc_sysctl_nrxqs;
4329
4330         for (i = 0; i < sctx->isc_ntxqs; i++) {
4331                 if (ctx->ifc_sysctl_ntxds[i] != 0)
4332                         scctx->isc_ntxd[i] = ctx->ifc_sysctl_ntxds[i];
4333                 else
4334                         scctx->isc_ntxd[i] = sctx->isc_ntxd_default[i];
4335         }
4336
4337         for (i = 0; i < sctx->isc_nrxqs; i++) {
4338                 if (ctx->ifc_sysctl_nrxds[i] != 0)
4339                         scctx->isc_nrxd[i] = ctx->ifc_sysctl_nrxds[i];
4340                 else
4341                         scctx->isc_nrxd[i] = sctx->isc_nrxd_default[i];
4342         }
4343
4344         for (i = 0; i < sctx->isc_nrxqs; i++) {
4345                 if (scctx->isc_nrxd[i] < sctx->isc_nrxd_min[i]) {
4346                         device_printf(dev, "nrxd%d: %d less than nrxd_min %d - resetting to min\n",
4347                                       i, scctx->isc_nrxd[i], sctx->isc_nrxd_min[i]);
4348                         scctx->isc_nrxd[i] = sctx->isc_nrxd_min[i];
4349                 }
4350                 if (scctx->isc_nrxd[i] > sctx->isc_nrxd_max[i]) {
4351                         device_printf(dev, "nrxd%d: %d greater than nrxd_max %d - resetting to max\n",
4352                                       i, scctx->isc_nrxd[i], sctx->isc_nrxd_max[i]);
4353                         scctx->isc_nrxd[i] = sctx->isc_nrxd_max[i];
4354                 }
4355         }
4356
4357         for (i = 0; i < sctx->isc_ntxqs; i++) {
4358                 if (scctx->isc_ntxd[i] < sctx->isc_ntxd_min[i]) {
4359                         device_printf(dev, "ntxd%d: %d less than ntxd_min %d - resetting to min\n",
4360                                       i, scctx->isc_ntxd[i], sctx->isc_ntxd_min[i]);
4361                         scctx->isc_ntxd[i] = sctx->isc_ntxd_min[i];
4362                 }
4363                 if (scctx->isc_ntxd[i] > sctx->isc_ntxd_max[i]) {
4364                         device_printf(dev, "ntxd%d: %d greater than ntxd_max %d - resetting to max\n",
4365                                       i, scctx->isc_ntxd[i], sctx->isc_ntxd_max[i]);
4366                         scctx->isc_ntxd[i] = sctx->isc_ntxd_max[i];
4367                 }
4368         }
4369 }
4370
4371 int
4372 iflib_device_register(device_t dev, void *sc, if_shared_ctx_t sctx, if_ctx_t *ctxp)
4373 {
4374         int err, rid, msix;
4375         if_ctx_t ctx;
4376         if_t ifp;
4377         if_softc_ctx_t scctx;
4378         int i;
4379         uint16_t main_txq;
4380         uint16_t main_rxq;
4381
4382
4383         ctx = malloc(sizeof(* ctx), M_IFLIB, M_WAITOK|M_ZERO);
4384
4385         if (sc == NULL) {
4386                 sc = malloc(sctx->isc_driver->size, M_IFLIB, M_WAITOK|M_ZERO);
4387                 device_set_softc(dev, ctx);
4388                 ctx->ifc_flags |= IFC_SC_ALLOCATED;
4389         }
4390
4391         ctx->ifc_sctx = sctx;
4392         ctx->ifc_dev = dev;
4393         ctx->ifc_softc = sc;
4394
4395         if ((err = iflib_register(ctx)) != 0) {
4396                 device_printf(dev, "iflib_register failed %d\n", err);
4397                 goto fail_ctx_free;
4398         }
4399         iflib_add_device_sysctl_pre(ctx);
4400
4401         scctx = &ctx->ifc_softc_ctx;
4402         ifp = ctx->ifc_ifp;
4403
4404         iflib_reset_qvalues(ctx);
4405         CTX_LOCK(ctx);
4406         if ((err = IFDI_ATTACH_PRE(ctx)) != 0) {
4407                 device_printf(dev, "IFDI_ATTACH_PRE failed %d\n", err);
4408                 goto fail_unlock;
4409         }
4410         _iflib_pre_assert(scctx);
4411         ctx->ifc_txrx = *scctx->isc_txrx;
4412
4413 #ifdef INVARIANTS
4414         MPASS(scctx->isc_capabilities);
4415         if (scctx->isc_capabilities & IFCAP_TXCSUM)
4416                 MPASS(scctx->isc_tx_csum_flags);
4417 #endif
4418
4419         if_setcapabilities(ifp, scctx->isc_capabilities | IFCAP_HWSTATS);
4420         if_setcapenable(ifp, scctx->isc_capenable | IFCAP_HWSTATS);
4421
4422         if (scctx->isc_ntxqsets == 0 || (scctx->isc_ntxqsets_max && scctx->isc_ntxqsets_max < scctx->isc_ntxqsets))
4423                 scctx->isc_ntxqsets = scctx->isc_ntxqsets_max;
4424         if (scctx->isc_nrxqsets == 0 || (scctx->isc_nrxqsets_max && scctx->isc_nrxqsets_max < scctx->isc_nrxqsets))
4425                 scctx->isc_nrxqsets = scctx->isc_nrxqsets_max;
4426
4427         main_txq = (sctx->isc_flags & IFLIB_HAS_TXCQ) ? 1 : 0;
4428         main_rxq = (sctx->isc_flags & IFLIB_HAS_RXCQ) ? 1 : 0;
4429
4430         /* XXX change for per-queue sizes */
4431         device_printf(dev, "Using %d tx descriptors and %d rx descriptors\n",
4432             scctx->isc_ntxd[main_txq], scctx->isc_nrxd[main_rxq]);
4433         for (i = 0; i < sctx->isc_nrxqs; i++) {
4434                 if (!powerof2(scctx->isc_nrxd[i])) {
4435                         /* round down instead? */
4436                         device_printf(dev, "# rx descriptors must be a power of 2\n");
4437                         err = EINVAL;
4438                         goto fail_iflib_detach;
4439                 }
4440         }
4441         for (i = 0; i < sctx->isc_ntxqs; i++) {
4442                 if (!powerof2(scctx->isc_ntxd[i])) {
4443                         device_printf(dev,
4444                             "# tx descriptors must be a power of 2");
4445                         err = EINVAL;
4446                         goto fail_iflib_detach;
4447                 }
4448         }
4449
4450         if (scctx->isc_tx_nsegments > scctx->isc_ntxd[main_txq] /
4451             MAX_SINGLE_PACKET_FRACTION)
4452                 scctx->isc_tx_nsegments = max(1, scctx->isc_ntxd[main_txq] /
4453                     MAX_SINGLE_PACKET_FRACTION);
4454         if (scctx->isc_tx_tso_segments_max > scctx->isc_ntxd[main_txq] /
4455             MAX_SINGLE_PACKET_FRACTION)
4456                 scctx->isc_tx_tso_segments_max = max(1,
4457                     scctx->isc_ntxd[main_txq] / MAX_SINGLE_PACKET_FRACTION);
4458
4459         /* TSO parameters - dig these out of the data sheet - simply correspond to tag setup */
4460         if (if_getcapabilities(ifp) & IFCAP_TSO) {
4461                 /*
4462                  * The stack can't handle a TSO size larger than IP_MAXPACKET,
4463                  * but some MACs do.
4464                  */
4465                 if_sethwtsomax(ifp, min(scctx->isc_tx_tso_size_max,
4466                     IP_MAXPACKET));
4467                 /*
4468                  * Take maximum number of m_pullup(9)'s in iflib_parse_header()
4469                  * into account.  In the worst case, each of these calls will
4470                  * add another mbuf and, thus, the requirement for another DMA
4471                  * segment.  So for best performance, it doesn't make sense to
4472                  * advertize a maximum of TSO segments that typically will
4473                  * require defragmentation in iflib_encap().
4474                  */
4475                 if_sethwtsomaxsegcount(ifp, scctx->isc_tx_tso_segments_max - 3);
4476                 if_sethwtsomaxsegsize(ifp, scctx->isc_tx_tso_segsize_max);
4477         }
4478         if (scctx->isc_rss_table_size == 0)
4479                 scctx->isc_rss_table_size = 64;
4480         scctx->isc_rss_table_mask = scctx->isc_rss_table_size-1;
4481
4482         GROUPTASK_INIT(&ctx->ifc_admin_task, 0, _task_fn_admin, ctx);
4483         /* XXX format name */
4484         taskqgroup_attach(qgroup_if_config_tqg, &ctx->ifc_admin_task, ctx,
4485             NULL, NULL, "admin");
4486
4487         /* Set up cpu set.  If it fails, use the set of all CPUs. */
4488         if (bus_get_cpus(dev, INTR_CPUS, sizeof(ctx->ifc_cpus), &ctx->ifc_cpus) != 0) {
4489                 device_printf(dev, "Unable to fetch CPU list\n");
4490                 CPU_COPY(&all_cpus, &ctx->ifc_cpus);
4491         }
4492         MPASS(CPU_COUNT(&ctx->ifc_cpus) > 0);
4493
4494         /*
4495         ** Now set up MSI or MSI-X, should return us the number of supported
4496         ** vectors (will be 1 for a legacy interrupt and MSI).
4497         */
4498         if (sctx->isc_flags & IFLIB_SKIP_MSIX) {
4499                 msix = scctx->isc_vectors;
4500         } else if (scctx->isc_msix_bar != 0)
4501                /*
4502                 * The simple fact that isc_msix_bar is not 0 does not mean we
4503                 * we have a good value there that is known to work.
4504                 */
4505                 msix = iflib_msix_init(ctx);
4506         else {
4507                 scctx->isc_vectors = 1;
4508                 scctx->isc_ntxqsets = 1;
4509                 scctx->isc_nrxqsets = 1;
4510                 scctx->isc_intr = IFLIB_INTR_LEGACY;
4511                 msix = 0;
4512         }
4513         /* Get memory for the station queues */
4514         if ((err = iflib_queues_alloc(ctx))) {
4515                 device_printf(dev, "Unable to allocate queue memory\n");
4516                 goto fail_intr_free;
4517         }
4518
4519         if ((err = iflib_qset_structures_setup(ctx)))
4520                 goto fail_queues;
4521
4522         /*
4523          * Group taskqueues aren't properly set up until SMP is started,
4524          * so we disable interrupts until we can handle them post
4525          * SI_SUB_SMP.
4526          *
4527          * XXX: disabling interrupts doesn't actually work, at least for
4528          * the non-MSI case.  When they occur before SI_SUB_SMP completes,
4529          * we do null handling and depend on this not causing too large an
4530          * interrupt storm.
4531          */
4532         IFDI_INTR_DISABLE(ctx);
4533         if (msix > 1 && (err = IFDI_MSIX_INTR_ASSIGN(ctx, msix)) != 0) {
4534                 device_printf(dev, "IFDI_MSIX_INTR_ASSIGN failed %d\n", err);
4535                 goto fail_queues;
4536         }
4537         if (msix <= 1) {
4538                 rid = 0;
4539                 if (scctx->isc_intr == IFLIB_INTR_MSI) {
4540                         MPASS(msix == 1);
4541                         rid = 1;
4542                 }
4543                 if ((err = iflib_legacy_setup(ctx, ctx->isc_legacy_intr, ctx->ifc_softc, &rid, "irq0")) != 0) {
4544                         device_printf(dev, "iflib_legacy_setup failed %d\n", err);
4545                         goto fail_queues;
4546                 }
4547         }
4548
4549         ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac);
4550
4551         if ((err = IFDI_ATTACH_POST(ctx)) != 0) {
4552                 device_printf(dev, "IFDI_ATTACH_POST failed %d\n", err);
4553                 goto fail_detach;
4554         }
4555
4556         /*
4557          * Tell the upper layer(s) if IFCAP_VLAN_MTU is supported.
4558          * This must appear after the call to ether_ifattach() because
4559          * ether_ifattach() sets if_hdrlen to the default value.
4560          */
4561         if (if_getcapabilities(ifp) & IFCAP_VLAN_MTU)
4562                 if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
4563
4564         if ((err = iflib_netmap_attach(ctx))) {
4565                 device_printf(ctx->ifc_dev, "netmap attach failed: %d\n", err);
4566                 goto fail_detach;
4567         }
4568         *ctxp = ctx;
4569
4570         NETDUMP_SET(ctx->ifc_ifp, iflib);
4571
4572         if_setgetcounterfn(ctx->ifc_ifp, iflib_if_get_counter);
4573         iflib_add_device_sysctl_post(ctx);
4574         ctx->ifc_flags |= IFC_INIT_DONE;
4575         CTX_UNLOCK(ctx);
4576         return (0);
4577
4578 fail_detach:
4579         ether_ifdetach(ctx->ifc_ifp);
4580 fail_intr_free:
4581         iflib_free_intr_mem(ctx);
4582 fail_queues:
4583         iflib_tx_structures_free(ctx);
4584         iflib_rx_structures_free(ctx);
4585 fail_iflib_detach:
4586         IFDI_DETACH(ctx);
4587 fail_unlock:
4588         CTX_UNLOCK(ctx);
4589 fail_ctx_free:
4590         if (ctx->ifc_flags & IFC_SC_ALLOCATED)
4591                 free(ctx->ifc_softc, M_IFLIB);
4592         free(ctx, M_IFLIB);
4593         return (err);
4594 }
4595
4596 int
4597 iflib_pseudo_register(device_t dev, if_shared_ctx_t sctx, if_ctx_t *ctxp,
4598                                           struct iflib_cloneattach_ctx *clctx)
4599 {
4600         int err;
4601         if_ctx_t ctx;
4602         if_t ifp;
4603         if_softc_ctx_t scctx;
4604         int i;
4605         void *sc;
4606         uint16_t main_txq;
4607         uint16_t main_rxq;
4608
4609         ctx = malloc(sizeof(*ctx), M_IFLIB, M_WAITOK|M_ZERO);
4610         sc = malloc(sctx->isc_driver->size, M_IFLIB, M_WAITOK|M_ZERO);
4611         ctx->ifc_flags |= IFC_SC_ALLOCATED;
4612         if (sctx->isc_flags & (IFLIB_PSEUDO|IFLIB_VIRTUAL))
4613                 ctx->ifc_flags |= IFC_PSEUDO;
4614
4615         ctx->ifc_sctx = sctx;
4616         ctx->ifc_softc = sc;
4617         ctx->ifc_dev = dev;
4618
4619         if ((err = iflib_register(ctx)) != 0) {
4620                 device_printf(dev, "%s: iflib_register failed %d\n", __func__, err);
4621                 goto fail_ctx_free;
4622         }
4623         iflib_add_device_sysctl_pre(ctx);
4624
4625         scctx = &ctx->ifc_softc_ctx;
4626         ifp = ctx->ifc_ifp;
4627
4628         /*
4629          * XXX sanity check that ntxd & nrxd are a power of 2
4630          */
4631         iflib_reset_qvalues(ctx);
4632
4633         if ((err = IFDI_ATTACH_PRE(ctx)) != 0) {
4634                 device_printf(dev, "IFDI_ATTACH_PRE failed %d\n", err);
4635                 goto fail_ctx_free;
4636         }
4637         if (sctx->isc_flags & IFLIB_GEN_MAC)
4638                 iflib_gen_mac(ctx);
4639         if ((err = IFDI_CLONEATTACH(ctx, clctx->cc_ifc, clctx->cc_name,
4640                                                                 clctx->cc_params)) != 0) {
4641                 device_printf(dev, "IFDI_CLONEATTACH failed %d\n", err);
4642                 goto fail_ctx_free;
4643         }
4644         ifmedia_add(&ctx->ifc_media, IFM_ETHER | IFM_1000_T | IFM_FDX, 0, NULL);
4645         ifmedia_add(&ctx->ifc_media, IFM_ETHER | IFM_AUTO, 0, NULL);
4646         ifmedia_set(&ctx->ifc_media, IFM_ETHER | IFM_AUTO);
4647
4648 #ifdef INVARIANTS
4649         MPASS(scctx->isc_capabilities);
4650         if (scctx->isc_capabilities & IFCAP_TXCSUM)
4651                 MPASS(scctx->isc_tx_csum_flags);
4652 #endif
4653
4654         if_setcapabilities(ifp, scctx->isc_capabilities | IFCAP_HWSTATS | IFCAP_LINKSTATE);
4655         if_setcapenable(ifp, scctx->isc_capenable | IFCAP_HWSTATS | IFCAP_LINKSTATE);
4656
4657         ifp->if_flags |= IFF_NOGROUP;
4658         if (sctx->isc_flags & IFLIB_PSEUDO) {
4659                 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac);
4660
4661                 if ((err = IFDI_ATTACH_POST(ctx)) != 0) {
4662                         device_printf(dev, "IFDI_ATTACH_POST failed %d\n", err);
4663                         goto fail_detach;
4664                 }
4665                 *ctxp = ctx;
4666
4667                 /*
4668                  * Tell the upper layer(s) if IFCAP_VLAN_MTU is supported.
4669                  * This must appear after the call to ether_ifattach() because
4670                  * ether_ifattach() sets if_hdrlen to the default value.
4671                  */
4672                 if (if_getcapabilities(ifp) & IFCAP_VLAN_MTU)
4673                         if_setifheaderlen(ifp,
4674                             sizeof(struct ether_vlan_header));
4675
4676                 if_setgetcounterfn(ctx->ifc_ifp, iflib_if_get_counter);
4677                 iflib_add_device_sysctl_post(ctx);
4678                 ctx->ifc_flags |= IFC_INIT_DONE;
4679                 return (0);
4680         }
4681         _iflib_pre_assert(scctx);
4682         ctx->ifc_txrx = *scctx->isc_txrx;
4683
4684         if (scctx->isc_ntxqsets == 0 || (scctx->isc_ntxqsets_max && scctx->isc_ntxqsets_max < scctx->isc_ntxqsets))
4685                 scctx->isc_ntxqsets = scctx->isc_ntxqsets_max;
4686         if (scctx->isc_nrxqsets == 0 || (scctx->isc_nrxqsets_max && scctx->isc_nrxqsets_max < scctx->isc_nrxqsets))
4687                 scctx->isc_nrxqsets = scctx->isc_nrxqsets_max;
4688
4689         main_txq = (sctx->isc_flags & IFLIB_HAS_TXCQ) ? 1 : 0;
4690         main_rxq = (sctx->isc_flags & IFLIB_HAS_RXCQ) ? 1 : 0;
4691
4692         /* XXX change for per-queue sizes */
4693         device_printf(dev, "Using %d tx descriptors and %d rx descriptors\n",
4694             scctx->isc_ntxd[main_txq], scctx->isc_nrxd[main_rxq]);
4695         for (i = 0; i < sctx->isc_nrxqs; i++) {
4696                 if (!powerof2(scctx->isc_nrxd[i])) {
4697                         /* round down instead? */
4698                         device_printf(dev, "# rx descriptors must be a power of 2\n");
4699                         err = EINVAL;
4700                         goto fail_iflib_detach;
4701                 }
4702         }
4703         for (i = 0; i < sctx->isc_ntxqs; i++) {
4704                 if (!powerof2(scctx->isc_ntxd[i])) {
4705                         device_printf(dev,
4706                             "# tx descriptors must be a power of 2");
4707                         err = EINVAL;
4708                         goto fail_iflib_detach;
4709                 }
4710         }
4711
4712         if (scctx->isc_tx_nsegments > scctx->isc_ntxd[main_txq] /
4713             MAX_SINGLE_PACKET_FRACTION)
4714                 scctx->isc_tx_nsegments = max(1, scctx->isc_ntxd[main_txq] /
4715                     MAX_SINGLE_PACKET_FRACTION);
4716         if (scctx->isc_tx_tso_segments_max > scctx->isc_ntxd[main_txq] /
4717             MAX_SINGLE_PACKET_FRACTION)
4718                 scctx->isc_tx_tso_segments_max = max(1,
4719                     scctx->isc_ntxd[main_txq] / MAX_SINGLE_PACKET_FRACTION);
4720
4721         /* TSO parameters - dig these out of the data sheet - simply correspond to tag setup */
4722         if (if_getcapabilities(ifp) & IFCAP_TSO) {
4723                 /*
4724                  * The stack can't handle a TSO size larger than IP_MAXPACKET,
4725                  * but some MACs do.
4726                  */
4727                 if_sethwtsomax(ifp, min(scctx->isc_tx_tso_size_max,
4728                     IP_MAXPACKET));
4729                 /*
4730                  * Take maximum number of m_pullup(9)'s in iflib_parse_header()
4731                  * into account.  In the worst case, each of these calls will
4732                  * add another mbuf and, thus, the requirement for another DMA
4733                  * segment.  So for best performance, it doesn't make sense to
4734                  * advertize a maximum of TSO segments that typically will
4735                  * require defragmentation in iflib_encap().
4736                  */
4737                 if_sethwtsomaxsegcount(ifp, scctx->isc_tx_tso_segments_max - 3);
4738                 if_sethwtsomaxsegsize(ifp, scctx->isc_tx_tso_segsize_max);
4739         }
4740         if (scctx->isc_rss_table_size == 0)
4741                 scctx->isc_rss_table_size = 64;
4742         scctx->isc_rss_table_mask = scctx->isc_rss_table_size-1;
4743
4744         GROUPTASK_INIT(&ctx->ifc_admin_task, 0, _task_fn_admin, ctx);
4745         /* XXX format name */
4746         taskqgroup_attach(qgroup_if_config_tqg, &ctx->ifc_admin_task, ctx,
4747             NULL, NULL, "admin");
4748
4749         /* XXX --- can support > 1 -- but keep it simple for now */
4750         scctx->isc_intr = IFLIB_INTR_LEGACY;
4751
4752         /* Get memory for the station queues */
4753         if ((err = iflib_queues_alloc(ctx))) {
4754                 device_printf(dev, "Unable to allocate queue memory\n");
4755                 goto fail_iflib_detach;
4756         }
4757
4758         if ((err = iflib_qset_structures_setup(ctx))) {
4759                 device_printf(dev, "qset structure setup failed %d\n", err);
4760                 goto fail_queues;
4761         }
4762
4763         /*
4764          * XXX What if anything do we want to do about interrupts?
4765          */
4766         ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac);
4767         if ((err = IFDI_ATTACH_POST(ctx)) != 0) {
4768                 device_printf(dev, "IFDI_ATTACH_POST failed %d\n", err);
4769                 goto fail_detach;
4770         }
4771
4772         /*
4773          * Tell the upper layer(s) if IFCAP_VLAN_MTU is supported.
4774          * This must appear after the call to ether_ifattach() because
4775          * ether_ifattach() sets if_hdrlen to the default value.
4776          */
4777         if (if_getcapabilities(ifp) & IFCAP_VLAN_MTU)
4778                 if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
4779
4780         /* XXX handle more than one queue */
4781         for (i = 0; i < scctx->isc_nrxqsets; i++)
4782                 IFDI_RX_CLSET(ctx, 0, i, ctx->ifc_rxqs[i].ifr_fl[0].ifl_sds.ifsd_cl);
4783
4784         *ctxp = ctx;
4785
4786         if_setgetcounterfn(ctx->ifc_ifp, iflib_if_get_counter);
4787         iflib_add_device_sysctl_post(ctx);
4788         ctx->ifc_flags |= IFC_INIT_DONE;
4789         return (0);
4790 fail_detach:
4791         ether_ifdetach(ctx->ifc_ifp);
4792 fail_queues:
4793         iflib_tx_structures_free(ctx);
4794         iflib_rx_structures_free(ctx);
4795 fail_iflib_detach:
4796         IFDI_DETACH(ctx);
4797 fail_ctx_free:
4798         free(ctx->ifc_softc, M_IFLIB);
4799         free(ctx, M_IFLIB);
4800         return (err);
4801 }
4802
4803 int
4804 iflib_pseudo_deregister(if_ctx_t ctx)
4805 {
4806         if_t ifp = ctx->ifc_ifp;
4807         iflib_txq_t txq;
4808         iflib_rxq_t rxq;
4809         int i, j;
4810         struct taskqgroup *tqg;
4811         iflib_fl_t fl;
4812
4813         /* Unregister VLAN events */
4814         if (ctx->ifc_vlan_attach_event != NULL)
4815                 EVENTHANDLER_DEREGISTER(vlan_config, ctx->ifc_vlan_attach_event);
4816         if (ctx->ifc_vlan_detach_event != NULL)
4817                 EVENTHANDLER_DEREGISTER(vlan_unconfig, ctx->ifc_vlan_detach_event);
4818
4819         ether_ifdetach(ifp);
4820         /* ether_ifdetach calls if_qflush - lock must be destroy afterwards*/
4821         CTX_LOCK_DESTROY(ctx);
4822         /* XXX drain any dependent tasks */
4823         tqg = qgroup_if_io_tqg;
4824         for (txq = ctx->ifc_txqs, i = 0; i < NTXQSETS(ctx); i++, txq++) {
4825                 callout_drain(&txq->ift_timer);
4826                 if (txq->ift_task.gt_uniq != NULL)
4827                         taskqgroup_detach(tqg, &txq->ift_task);
4828         }
4829         for (i = 0, rxq = ctx->ifc_rxqs; i < NRXQSETS(ctx); i++, rxq++) {
4830                 if (rxq->ifr_task.gt_uniq != NULL)
4831                         taskqgroup_detach(tqg, &rxq->ifr_task);
4832
4833                 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
4834                         free(fl->ifl_rx_bitmap, M_IFLIB);
4835         }
4836         tqg = qgroup_if_config_tqg;
4837         if (ctx->ifc_admin_task.gt_uniq != NULL)
4838                 taskqgroup_detach(tqg, &ctx->ifc_admin_task);
4839         if (ctx->ifc_vflr_task.gt_uniq != NULL)
4840                 taskqgroup_detach(tqg, &ctx->ifc_vflr_task);
4841
4842         if_free(ifp);
4843
4844         iflib_tx_structures_free(ctx);
4845         iflib_rx_structures_free(ctx);
4846         if (ctx->ifc_flags & IFC_SC_ALLOCATED)
4847                 free(ctx->ifc_softc, M_IFLIB);
4848         free(ctx, M_IFLIB);
4849         return (0);
4850 }
4851
4852 int
4853 iflib_device_attach(device_t dev)
4854 {
4855         if_ctx_t ctx;
4856         if_shared_ctx_t sctx;
4857
4858         if ((sctx = DEVICE_REGISTER(dev)) == NULL || sctx->isc_magic != IFLIB_MAGIC)
4859                 return (ENOTSUP);
4860
4861         pci_enable_busmaster(dev);
4862
4863         return (iflib_device_register(dev, NULL, sctx, &ctx));
4864 }
4865
4866 int
4867 iflib_device_deregister(if_ctx_t ctx)
4868 {
4869         if_t ifp = ctx->ifc_ifp;
4870         iflib_txq_t txq;
4871         iflib_rxq_t rxq;
4872         device_t dev = ctx->ifc_dev;
4873         int i, j;
4874         struct taskqgroup *tqg;
4875         iflib_fl_t fl;
4876
4877         /* Make sure VLANS are not using driver */
4878         if (if_vlantrunkinuse(ifp)) {
4879                 device_printf(dev, "Vlan in use, detach first\n");
4880                 return (EBUSY);
4881         }
4882 #ifdef PCI_IOV
4883         if (!CTX_IS_VF(ctx) && pci_iov_detach(dev) != 0) {
4884                 device_printf(dev, "SR-IOV in use; detach first.\n");
4885                 return (EBUSY);
4886         }
4887 #endif
4888
4889         STATE_LOCK(ctx);
4890         ctx->ifc_flags |= IFC_IN_DETACH;
4891         STATE_UNLOCK(ctx);
4892
4893         CTX_LOCK(ctx);
4894         iflib_stop(ctx);
4895         CTX_UNLOCK(ctx);
4896
4897         /* Unregister VLAN events */
4898         if (ctx->ifc_vlan_attach_event != NULL)
4899                 EVENTHANDLER_DEREGISTER(vlan_config, ctx->ifc_vlan_attach_event);
4900         if (ctx->ifc_vlan_detach_event != NULL)
4901                 EVENTHANDLER_DEREGISTER(vlan_unconfig, ctx->ifc_vlan_detach_event);
4902
4903         iflib_netmap_detach(ifp);
4904         ether_ifdetach(ifp);
4905         if (ctx->ifc_led_dev != NULL)
4906                 led_destroy(ctx->ifc_led_dev);
4907         /* XXX drain any dependent tasks */
4908         tqg = qgroup_if_io_tqg;
4909         for (txq = ctx->ifc_txqs, i = 0; i < NTXQSETS(ctx); i++, txq++) {
4910                 callout_drain(&txq->ift_timer);
4911                 if (txq->ift_task.gt_uniq != NULL)
4912                         taskqgroup_detach(tqg, &txq->ift_task);
4913         }
4914         for (i = 0, rxq = ctx->ifc_rxqs; i < NRXQSETS(ctx); i++, rxq++) {
4915                 if (rxq->ifr_task.gt_uniq != NULL)
4916                         taskqgroup_detach(tqg, &rxq->ifr_task);
4917
4918                 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
4919                         free(fl->ifl_rx_bitmap, M_IFLIB);
4920         }
4921         tqg = qgroup_if_config_tqg;
4922         if (ctx->ifc_admin_task.gt_uniq != NULL)
4923                 taskqgroup_detach(tqg, &ctx->ifc_admin_task);
4924         if (ctx->ifc_vflr_task.gt_uniq != NULL)
4925                 taskqgroup_detach(tqg, &ctx->ifc_vflr_task);
4926         CTX_LOCK(ctx);
4927         IFDI_DETACH(ctx);
4928         CTX_UNLOCK(ctx);
4929
4930         /* ether_ifdetach calls if_qflush - lock must be destroy afterwards*/
4931         CTX_LOCK_DESTROY(ctx);
4932         device_set_softc(ctx->ifc_dev, NULL);
4933         iflib_free_intr_mem(ctx);
4934
4935         bus_generic_detach(dev);
4936         if_free(ifp);
4937
4938         iflib_tx_structures_free(ctx);
4939         iflib_rx_structures_free(ctx);
4940         if (ctx->ifc_flags & IFC_SC_ALLOCATED)
4941                 free(ctx->ifc_softc, M_IFLIB);
4942         STATE_LOCK_DESTROY(ctx);
4943         free(ctx, M_IFLIB);
4944         return (0);
4945 }
4946
4947 static void
4948 iflib_free_intr_mem(if_ctx_t ctx)
4949 {
4950
4951         if (ctx->ifc_softc_ctx.isc_intr != IFLIB_INTR_MSIX) {
4952                 iflib_irq_free(ctx, &ctx->ifc_legacy_irq);
4953         }
4954         if (ctx->ifc_softc_ctx.isc_intr != IFLIB_INTR_LEGACY) {
4955                 pci_release_msi(ctx->ifc_dev);
4956         }
4957         if (ctx->ifc_msix_mem != NULL) {
4958                 bus_release_resource(ctx->ifc_dev, SYS_RES_MEMORY,
4959                     rman_get_rid(ctx->ifc_msix_mem), ctx->ifc_msix_mem);
4960                 ctx->ifc_msix_mem = NULL;
4961         }
4962 }
4963
4964 int
4965 iflib_device_detach(device_t dev)
4966 {
4967         if_ctx_t ctx = device_get_softc(dev);
4968
4969         return (iflib_device_deregister(ctx));
4970 }
4971
4972 int
4973 iflib_device_suspend(device_t dev)
4974 {
4975         if_ctx_t ctx = device_get_softc(dev);
4976
4977         CTX_LOCK(ctx);
4978         IFDI_SUSPEND(ctx);
4979         CTX_UNLOCK(ctx);
4980
4981         return bus_generic_suspend(dev);
4982 }
4983 int
4984 iflib_device_shutdown(device_t dev)
4985 {
4986         if_ctx_t ctx = device_get_softc(dev);
4987
4988         CTX_LOCK(ctx);
4989         IFDI_SHUTDOWN(ctx);
4990         CTX_UNLOCK(ctx);
4991
4992         return bus_generic_suspend(dev);
4993 }
4994
4995
4996 int
4997 iflib_device_resume(device_t dev)
4998 {
4999         if_ctx_t ctx = device_get_softc(dev);
5000         iflib_txq_t txq = ctx->ifc_txqs;
5001
5002         CTX_LOCK(ctx);
5003         IFDI_RESUME(ctx);
5004         iflib_if_init_locked(ctx);
5005         CTX_UNLOCK(ctx);
5006         for (int i = 0; i < NTXQSETS(ctx); i++, txq++)
5007                 iflib_txq_check_drain(txq, IFLIB_RESTART_BUDGET);
5008
5009         return (bus_generic_resume(dev));
5010 }
5011
5012 int
5013 iflib_device_iov_init(device_t dev, uint16_t num_vfs, const nvlist_t *params)
5014 {
5015         int error;
5016         if_ctx_t ctx = device_get_softc(dev);
5017
5018         CTX_LOCK(ctx);
5019         error = IFDI_IOV_INIT(ctx, num_vfs, params);
5020         CTX_UNLOCK(ctx);
5021
5022         return (error);
5023 }
5024
5025 void
5026 iflib_device_iov_uninit(device_t dev)
5027 {
5028         if_ctx_t ctx = device_get_softc(dev);
5029
5030         CTX_LOCK(ctx);
5031         IFDI_IOV_UNINIT(ctx);
5032         CTX_UNLOCK(ctx);
5033 }
5034
5035 int
5036 iflib_device_iov_add_vf(device_t dev, uint16_t vfnum, const nvlist_t *params)
5037 {
5038         int error;
5039         if_ctx_t ctx = device_get_softc(dev);
5040
5041         CTX_LOCK(ctx);
5042         error = IFDI_IOV_VF_ADD(ctx, vfnum, params);
5043         CTX_UNLOCK(ctx);
5044
5045         return (error);
5046 }
5047
5048 /*********************************************************************
5049  *
5050  *  MODULE FUNCTION DEFINITIONS
5051  *
5052  **********************************************************************/
5053
5054 /*
5055  * - Start a fast taskqueue thread for each core
5056  * - Start a taskqueue for control operations
5057  */
5058 static int
5059 iflib_module_init(void)
5060 {
5061         return (0);
5062 }
5063
5064 static int
5065 iflib_module_event_handler(module_t mod, int what, void *arg)
5066 {
5067         int err;
5068
5069         switch (what) {
5070         case MOD_LOAD:
5071                 if ((err = iflib_module_init()) != 0)
5072                         return (err);
5073                 break;
5074         case MOD_UNLOAD:
5075                 return (EBUSY);
5076         default:
5077                 return (EOPNOTSUPP);
5078         }
5079
5080         return (0);
5081 }
5082
5083 /*********************************************************************
5084  *
5085  *  PUBLIC FUNCTION DEFINITIONS
5086  *     ordered as in iflib.h
5087  *
5088  **********************************************************************/
5089
5090
5091 static void
5092 _iflib_assert(if_shared_ctx_t sctx)
5093 {
5094         MPASS(sctx->isc_tx_maxsize);
5095         MPASS(sctx->isc_tx_maxsegsize);
5096
5097         MPASS(sctx->isc_rx_maxsize);
5098         MPASS(sctx->isc_rx_nsegments);
5099         MPASS(sctx->isc_rx_maxsegsize);
5100
5101         MPASS(sctx->isc_nrxd_min[0]);
5102         MPASS(sctx->isc_nrxd_max[0]);
5103         MPASS(sctx->isc_nrxd_default[0]);
5104         MPASS(sctx->isc_ntxd_min[0]);
5105         MPASS(sctx->isc_ntxd_max[0]);
5106         MPASS(sctx->isc_ntxd_default[0]);
5107 }
5108
5109 static void
5110 _iflib_pre_assert(if_softc_ctx_t scctx)
5111 {
5112
5113         MPASS(scctx->isc_txrx->ift_txd_encap);
5114         MPASS(scctx->isc_txrx->ift_txd_flush);
5115         MPASS(scctx->isc_txrx->ift_txd_credits_update);
5116         MPASS(scctx->isc_txrx->ift_rxd_available);
5117         MPASS(scctx->isc_txrx->ift_rxd_pkt_get);
5118         MPASS(scctx->isc_txrx->ift_rxd_refill);
5119         MPASS(scctx->isc_txrx->ift_rxd_flush);
5120 }
5121
5122 static int
5123 iflib_register(if_ctx_t ctx)
5124 {
5125         if_shared_ctx_t sctx = ctx->ifc_sctx;
5126         driver_t *driver = sctx->isc_driver;
5127         device_t dev = ctx->ifc_dev;
5128         if_t ifp;
5129
5130         _iflib_assert(sctx);
5131
5132         CTX_LOCK_INIT(ctx);
5133         STATE_LOCK_INIT(ctx, device_get_nameunit(ctx->ifc_dev));
5134         ifp = ctx->ifc_ifp = if_alloc(IFT_ETHER);
5135         if (ifp == NULL) {
5136                 device_printf(dev, "can not allocate ifnet structure\n");
5137                 return (ENOMEM);
5138         }
5139
5140         /*
5141          * Initialize our context's device specific methods
5142          */
5143         kobj_init((kobj_t) ctx, (kobj_class_t) driver);
5144         kobj_class_compile((kobj_class_t) driver);
5145         driver->refs++;
5146
5147         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
5148         if_setsoftc(ifp, ctx);
5149         if_setdev(ifp, dev);
5150         if_setinitfn(ifp, iflib_if_init);
5151         if_setioctlfn(ifp, iflib_if_ioctl);
5152 #ifdef ALTQ
5153         if_setstartfn(ifp, iflib_altq_if_start);
5154         if_settransmitfn(ifp, iflib_altq_if_transmit);
5155         if_setsendqready(ifp);
5156 #else
5157         if_settransmitfn(ifp, iflib_if_transmit);
5158 #endif
5159         if_setqflushfn(ifp, iflib_if_qflush);
5160         if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
5161
5162         ctx->ifc_vlan_attach_event =
5163                 EVENTHANDLER_REGISTER(vlan_config, iflib_vlan_register, ctx,
5164                                                           EVENTHANDLER_PRI_FIRST);
5165         ctx->ifc_vlan_detach_event =
5166                 EVENTHANDLER_REGISTER(vlan_unconfig, iflib_vlan_unregister, ctx,
5167                                                           EVENTHANDLER_PRI_FIRST);
5168
5169         ifmedia_init(&ctx->ifc_media, IFM_IMASK,
5170                                          iflib_media_change, iflib_media_status);
5171
5172         return (0);
5173 }
5174
5175
5176 static int
5177 iflib_queues_alloc(if_ctx_t ctx)
5178 {
5179         if_shared_ctx_t sctx = ctx->ifc_sctx;
5180         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
5181         device_t dev = ctx->ifc_dev;
5182         int nrxqsets = scctx->isc_nrxqsets;
5183         int ntxqsets = scctx->isc_ntxqsets;
5184         iflib_txq_t txq;
5185         iflib_rxq_t rxq;
5186         iflib_fl_t fl = NULL;
5187         int i, j, cpu, err, txconf, rxconf;
5188         iflib_dma_info_t ifdip;
5189         uint32_t *rxqsizes = scctx->isc_rxqsizes;
5190         uint32_t *txqsizes = scctx->isc_txqsizes;
5191         uint8_t nrxqs = sctx->isc_nrxqs;
5192         uint8_t ntxqs = sctx->isc_ntxqs;
5193         int nfree_lists = sctx->isc_nfl ? sctx->isc_nfl : 1;
5194         caddr_t *vaddrs;
5195         uint64_t *paddrs;
5196
5197         KASSERT(ntxqs > 0, ("number of queues per qset must be at least 1"));
5198         KASSERT(nrxqs > 0, ("number of queues per qset must be at least 1"));
5199
5200         /* Allocate the TX ring struct memory */
5201         if (!(ctx->ifc_txqs =
5202             (iflib_txq_t) malloc(sizeof(struct iflib_txq) *
5203             ntxqsets, M_IFLIB, M_NOWAIT | M_ZERO))) {
5204                 device_printf(dev, "Unable to allocate TX ring memory\n");
5205                 err = ENOMEM;
5206                 goto fail;
5207         }
5208
5209         /* Now allocate the RX */
5210         if (!(ctx->ifc_rxqs =
5211             (iflib_rxq_t) malloc(sizeof(struct iflib_rxq) *
5212             nrxqsets, M_IFLIB, M_NOWAIT | M_ZERO))) {
5213                 device_printf(dev, "Unable to allocate RX ring memory\n");
5214                 err = ENOMEM;
5215                 goto rx_fail;
5216         }
5217
5218         txq = ctx->ifc_txqs;
5219         rxq = ctx->ifc_rxqs;
5220
5221         /*
5222          * XXX handle allocation failure
5223          */
5224         for (txconf = i = 0, cpu = CPU_FIRST(); i < ntxqsets; i++, txconf++, txq++, cpu = CPU_NEXT(cpu)) {
5225                 /* Set up some basics */
5226
5227                 if ((ifdip = malloc(sizeof(struct iflib_dma_info) * ntxqs,
5228                     M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
5229                         device_printf(dev,
5230                             "Unable to allocate TX DMA info memory\n");
5231                         err = ENOMEM;
5232                         goto err_tx_desc;
5233                 }
5234                 txq->ift_ifdi = ifdip;
5235                 for (j = 0; j < ntxqs; j++, ifdip++) {
5236                         if (iflib_dma_alloc(ctx, txqsizes[j], ifdip, 0)) {
5237                                 device_printf(dev,
5238                                     "Unable to allocate TX descriptors\n");
5239                                 err = ENOMEM;
5240                                 goto err_tx_desc;
5241                         }
5242                         txq->ift_txd_size[j] = scctx->isc_txd_size[j];
5243                         bzero((void *)ifdip->idi_vaddr, txqsizes[j]);
5244                 }
5245                 txq->ift_ctx = ctx;
5246                 txq->ift_id = i;
5247                 if (sctx->isc_flags & IFLIB_HAS_TXCQ) {
5248                         txq->ift_br_offset = 1;
5249                 } else {
5250                         txq->ift_br_offset = 0;
5251                 }
5252                 /* XXX fix this */
5253                 txq->ift_timer.c_cpu = cpu;
5254
5255                 if (iflib_txsd_alloc(txq)) {
5256                         device_printf(dev, "Critical Failure setting up TX buffers\n");
5257                         err = ENOMEM;
5258                         goto err_tx_desc;
5259                 }
5260
5261                 /* Initialize the TX lock */
5262                 snprintf(txq->ift_mtx_name, MTX_NAME_LEN, "%s:tx(%d):callout",
5263                     device_get_nameunit(dev), txq->ift_id);
5264                 mtx_init(&txq->ift_mtx, txq->ift_mtx_name, NULL, MTX_DEF);
5265                 callout_init_mtx(&txq->ift_timer, &txq->ift_mtx, 0);
5266
5267                 snprintf(txq->ift_db_mtx_name, MTX_NAME_LEN, "%s:tx(%d):db",
5268                          device_get_nameunit(dev), txq->ift_id);
5269
5270                 err = ifmp_ring_alloc(&txq->ift_br, 2048, txq, iflib_txq_drain,
5271                                       iflib_txq_can_drain, M_IFLIB, M_WAITOK);
5272                 if (err) {
5273                         /* XXX free any allocated rings */
5274                         device_printf(dev, "Unable to allocate buf_ring\n");
5275                         goto err_tx_desc;
5276                 }
5277         }
5278
5279         for (rxconf = i = 0; i < nrxqsets; i++, rxconf++, rxq++) {
5280                 /* Set up some basics */
5281
5282                 if ((ifdip = malloc(sizeof(struct iflib_dma_info) * nrxqs,
5283                    M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
5284                         device_printf(dev,
5285                             "Unable to allocate RX DMA info memory\n");
5286                         err = ENOMEM;
5287                         goto err_tx_desc;
5288                 }
5289
5290                 rxq->ifr_ifdi = ifdip;
5291                 /* XXX this needs to be changed if #rx queues != #tx queues */
5292                 rxq->ifr_ntxqirq = 1;
5293                 rxq->ifr_txqid[0] = i;
5294                 for (j = 0; j < nrxqs; j++, ifdip++) {
5295                         if (iflib_dma_alloc(ctx, rxqsizes[j], ifdip, 0)) {
5296                                 device_printf(dev,
5297                                     "Unable to allocate RX descriptors\n");
5298                                 err = ENOMEM;
5299                                 goto err_tx_desc;
5300                         }
5301                         bzero((void *)ifdip->idi_vaddr, rxqsizes[j]);
5302                 }
5303                 rxq->ifr_ctx = ctx;
5304                 rxq->ifr_id = i;
5305                 if (sctx->isc_flags & IFLIB_HAS_RXCQ) {
5306                         rxq->ifr_fl_offset = 1;
5307                 } else {
5308                         rxq->ifr_fl_offset = 0;
5309                 }
5310                 rxq->ifr_nfl = nfree_lists;
5311                 if (!(fl =
5312                           (iflib_fl_t) malloc(sizeof(struct iflib_fl) * nfree_lists, M_IFLIB, M_NOWAIT | M_ZERO))) {
5313                         device_printf(dev, "Unable to allocate free list memory\n");
5314                         err = ENOMEM;
5315                         goto err_tx_desc;
5316                 }
5317                 rxq->ifr_fl = fl;
5318                 for (j = 0; j < nfree_lists; j++) {
5319                         fl[j].ifl_rxq = rxq;
5320                         fl[j].ifl_id = j;
5321                         fl[j].ifl_ifdi = &rxq->ifr_ifdi[j + rxq->ifr_fl_offset];
5322                         fl[j].ifl_rxd_size = scctx->isc_rxd_size[j];
5323                 }
5324                 /* Allocate receive buffers for the ring */
5325                 if (iflib_rxsd_alloc(rxq)) {
5326                         device_printf(dev,
5327                             "Critical Failure setting up receive buffers\n");
5328                         err = ENOMEM;
5329                         goto err_rx_desc;
5330                 }
5331
5332                 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++) 
5333                         fl->ifl_rx_bitmap = bit_alloc(fl->ifl_size, M_IFLIB,
5334                             M_WAITOK);
5335         }
5336
5337         /* TXQs */
5338         vaddrs = malloc(sizeof(caddr_t)*ntxqsets*ntxqs, M_IFLIB, M_WAITOK);
5339         paddrs = malloc(sizeof(uint64_t)*ntxqsets*ntxqs, M_IFLIB, M_WAITOK);
5340         for (i = 0; i < ntxqsets; i++) {
5341                 iflib_dma_info_t di = ctx->ifc_txqs[i].ift_ifdi;
5342
5343                 for (j = 0; j < ntxqs; j++, di++) {
5344                         vaddrs[i*ntxqs + j] = di->idi_vaddr;
5345                         paddrs[i*ntxqs + j] = di->idi_paddr;
5346                 }
5347         }
5348         if ((err = IFDI_TX_QUEUES_ALLOC(ctx, vaddrs, paddrs, ntxqs, ntxqsets)) != 0) {
5349                 device_printf(ctx->ifc_dev,
5350                     "Unable to allocate device TX queue\n");
5351                 iflib_tx_structures_free(ctx);
5352                 free(vaddrs, M_IFLIB);
5353                 free(paddrs, M_IFLIB);
5354                 goto err_rx_desc;
5355         }
5356         free(vaddrs, M_IFLIB);
5357         free(paddrs, M_IFLIB);
5358
5359         /* RXQs */
5360         vaddrs = malloc(sizeof(caddr_t)*nrxqsets*nrxqs, M_IFLIB, M_WAITOK);
5361         paddrs = malloc(sizeof(uint64_t)*nrxqsets*nrxqs, M_IFLIB, M_WAITOK);
5362         for (i = 0; i < nrxqsets; i++) {
5363                 iflib_dma_info_t di = ctx->ifc_rxqs[i].ifr_ifdi;
5364
5365                 for (j = 0; j < nrxqs; j++, di++) {
5366                         vaddrs[i*nrxqs + j] = di->idi_vaddr;
5367                         paddrs[i*nrxqs + j] = di->idi_paddr;
5368                 }
5369         }
5370         if ((err = IFDI_RX_QUEUES_ALLOC(ctx, vaddrs, paddrs, nrxqs, nrxqsets)) != 0) {
5371                 device_printf(ctx->ifc_dev,
5372                     "Unable to allocate device RX queue\n");
5373                 iflib_tx_structures_free(ctx);
5374                 free(vaddrs, M_IFLIB);
5375                 free(paddrs, M_IFLIB);
5376                 goto err_rx_desc;
5377         }
5378         free(vaddrs, M_IFLIB);
5379         free(paddrs, M_IFLIB);
5380
5381         return (0);
5382
5383 /* XXX handle allocation failure changes */
5384 err_rx_desc:
5385 err_tx_desc:
5386 rx_fail:
5387         if (ctx->ifc_rxqs != NULL)
5388                 free(ctx->ifc_rxqs, M_IFLIB);
5389         ctx->ifc_rxqs = NULL;
5390         if (ctx->ifc_txqs != NULL)
5391                 free(ctx->ifc_txqs, M_IFLIB);
5392         ctx->ifc_txqs = NULL;
5393 fail:
5394         return (err);
5395 }
5396
5397 static int
5398 iflib_tx_structures_setup(if_ctx_t ctx)
5399 {
5400         iflib_txq_t txq = ctx->ifc_txqs;
5401         int i;
5402
5403         for (i = 0; i < NTXQSETS(ctx); i++, txq++)
5404                 iflib_txq_setup(txq);
5405
5406         return (0);
5407 }
5408
5409 static void
5410 iflib_tx_structures_free(if_ctx_t ctx)
5411 {
5412         iflib_txq_t txq = ctx->ifc_txqs;
5413         if_shared_ctx_t sctx = ctx->ifc_sctx;
5414         int i, j;
5415
5416         for (i = 0; i < NTXQSETS(ctx); i++, txq++) {
5417                 iflib_txq_destroy(txq);
5418                 for (j = 0; j < sctx->isc_ntxqs; j++)
5419                         iflib_dma_free(&txq->ift_ifdi[j]);
5420         }
5421         free(ctx->ifc_txqs, M_IFLIB);
5422         ctx->ifc_txqs = NULL;
5423         IFDI_QUEUES_FREE(ctx);
5424 }
5425
5426 /*********************************************************************
5427  *
5428  *  Initialize all receive rings.
5429  *
5430  **********************************************************************/
5431 static int
5432 iflib_rx_structures_setup(if_ctx_t ctx)
5433 {
5434         iflib_rxq_t rxq = ctx->ifc_rxqs;
5435         int q;
5436 #if defined(INET6) || defined(INET)
5437         int i, err;
5438 #endif
5439
5440         for (q = 0; q < ctx->ifc_softc_ctx.isc_nrxqsets; q++, rxq++) {
5441 #if defined(INET6) || defined(INET)
5442                 tcp_lro_free(&rxq->ifr_lc);
5443                 if ((err = tcp_lro_init_args(&rxq->ifr_lc, ctx->ifc_ifp,
5444                     TCP_LRO_ENTRIES, min(1024,
5445                     ctx->ifc_softc_ctx.isc_nrxd[rxq->ifr_fl_offset]))) != 0) {
5446                         device_printf(ctx->ifc_dev, "LRO Initialization failed!\n");
5447                         goto fail;
5448                 }
5449                 rxq->ifr_lro_enabled = TRUE;
5450 #endif
5451                 IFDI_RXQ_SETUP(ctx, rxq->ifr_id);
5452         }
5453         return (0);
5454 #if defined(INET6) || defined(INET)
5455 fail:
5456         /*
5457          * Free RX software descriptors allocated so far, we will only handle
5458          * the rings that completed, the failing case will have
5459          * cleaned up for itself. 'q' failed, so its the terminus.
5460          */
5461         rxq = ctx->ifc_rxqs;
5462         for (i = 0; i < q; ++i, rxq++) {
5463                 iflib_rx_sds_free(rxq);
5464                 rxq->ifr_cq_gen = rxq->ifr_cq_cidx = rxq->ifr_cq_pidx = 0;
5465         }
5466         return (err);
5467 #endif
5468 }
5469
5470 /*********************************************************************
5471  *
5472  *  Free all receive rings.
5473  *
5474  **********************************************************************/
5475 static void
5476 iflib_rx_structures_free(if_ctx_t ctx)
5477 {
5478         iflib_rxq_t rxq = ctx->ifc_rxqs;
5479
5480         for (int i = 0; i < ctx->ifc_softc_ctx.isc_nrxqsets; i++, rxq++) {
5481                 iflib_rx_sds_free(rxq);
5482         }
5483         free(ctx->ifc_rxqs, M_IFLIB);
5484         ctx->ifc_rxqs = NULL;
5485 }
5486
5487 static int
5488 iflib_qset_structures_setup(if_ctx_t ctx)
5489 {
5490         int err;
5491
5492         /*
5493          * It is expected that the caller takes care of freeing queues if this
5494          * fails.
5495          */
5496         if ((err = iflib_tx_structures_setup(ctx)) != 0) {
5497                 device_printf(ctx->ifc_dev, "iflib_tx_structures_setup failed: %d\n", err);
5498                 return (err);
5499         }
5500
5501         if ((err = iflib_rx_structures_setup(ctx)) != 0)
5502                 device_printf(ctx->ifc_dev, "iflib_rx_structures_setup failed: %d\n", err);
5503
5504         return (err);
5505 }
5506
5507 int
5508 iflib_irq_alloc(if_ctx_t ctx, if_irq_t irq, int rid,
5509                 driver_filter_t filter, void *filter_arg, driver_intr_t handler, void *arg, const char *name)
5510 {
5511
5512         return (_iflib_irq_alloc(ctx, irq, rid, filter, handler, arg, name));
5513 }
5514
5515 #ifdef SMP
5516 static int
5517 find_nth(if_ctx_t ctx, int qid)
5518 {
5519         cpuset_t cpus;
5520         int i, cpuid, eqid, count;
5521
5522         CPU_COPY(&ctx->ifc_cpus, &cpus);
5523         count = CPU_COUNT(&cpus);
5524         eqid = qid % count;
5525         /* clear up to the qid'th bit */
5526         for (i = 0; i < eqid; i++) {
5527                 cpuid = CPU_FFS(&cpus);
5528                 MPASS(cpuid != 0);
5529                 CPU_CLR(cpuid-1, &cpus);
5530         }
5531         cpuid = CPU_FFS(&cpus);
5532         MPASS(cpuid != 0);
5533         return (cpuid-1);
5534 }
5535
5536 #ifdef SCHED_ULE
5537 extern struct cpu_group *cpu_top;              /* CPU topology */
5538
5539 static int
5540 find_child_with_core(int cpu, struct cpu_group *grp)
5541 {
5542         int i;
5543
5544         if (grp->cg_children == 0)
5545                 return -1;
5546
5547         MPASS(grp->cg_child);
5548         for (i = 0; i < grp->cg_children; i++) {
5549                 if (CPU_ISSET(cpu, &grp->cg_child[i].cg_mask))
5550                         return i;
5551         }
5552
5553         return -1;
5554 }
5555
5556 /*
5557  * Find the nth "close" core to the specified core
5558  * "close" is defined as the deepest level that shares
5559  * at least an L2 cache.  With threads, this will be
5560  * threads on the same core.  If the sahred cache is L3
5561  * or higher, simply returns the same core.
5562  */
5563 static int
5564 find_close_core(int cpu, int core_offset)
5565 {
5566         struct cpu_group *grp;
5567         int i;
5568         int fcpu;
5569         cpuset_t cs;
5570
5571         grp = cpu_top;
5572         if (grp == NULL)
5573                 return cpu;
5574         i = 0;
5575         while ((i = find_child_with_core(cpu, grp)) != -1) {
5576                 /* If the child only has one cpu, don't descend */
5577                 if (grp->cg_child[i].cg_count <= 1)
5578                         break;
5579                 grp = &grp->cg_child[i];
5580         }
5581
5582         /* If they don't share at least an L2 cache, use the same CPU */
5583         if (grp->cg_level > CG_SHARE_L2 || grp->cg_level == CG_SHARE_NONE)
5584                 return cpu;
5585
5586         /* Now pick one */
5587         CPU_COPY(&grp->cg_mask, &cs);
5588
5589         /* Add the selected CPU offset to core offset. */
5590         for (i = 0; (fcpu = CPU_FFS(&cs)) != 0; i++) {
5591                 if (fcpu - 1 == cpu)
5592                         break;
5593                 CPU_CLR(fcpu - 1, &cs);
5594         }
5595         MPASS(fcpu);
5596
5597         core_offset += i;
5598
5599         CPU_COPY(&grp->cg_mask, &cs);
5600         for (i = core_offset % grp->cg_count; i > 0; i--) {
5601                 MPASS(CPU_FFS(&cs));
5602                 CPU_CLR(CPU_FFS(&cs) - 1, &cs);
5603         }
5604         MPASS(CPU_FFS(&cs));
5605         return CPU_FFS(&cs) - 1;
5606 }
5607 #else
5608 static int
5609 find_close_core(int cpu, int core_offset __unused)
5610 {
5611         return cpu;
5612 }
5613 #endif
5614
5615 static int
5616 get_core_offset(if_ctx_t ctx, iflib_intr_type_t type, int qid)
5617 {
5618         switch (type) {
5619         case IFLIB_INTR_TX:
5620                 /* TX queues get cores which share at least an L2 cache with the corresponding RX queue */
5621                 /* XXX handle multiple RX threads per core and more than two core per L2 group */
5622                 return qid / CPU_COUNT(&ctx->ifc_cpus) + 1;
5623         case IFLIB_INTR_RX:
5624         case IFLIB_INTR_RXTX:
5625                 /* RX queues get the specified core */
5626                 return qid / CPU_COUNT(&ctx->ifc_cpus);
5627         default:
5628                 return -1;
5629         }
5630 }
5631 #else
5632 #define get_core_offset(ctx, type, qid) CPU_FIRST()
5633 #define find_close_core(cpuid, tid)     CPU_FIRST()
5634 #define find_nth(ctx, gid)              CPU_FIRST()
5635 #endif
5636
5637 /* Just to avoid copy/paste */
5638 static inline int
5639 iflib_irq_set_affinity(if_ctx_t ctx, if_irq_t irq, iflib_intr_type_t type,
5640     int qid, struct grouptask *gtask, struct taskqgroup *tqg, void *uniq,
5641     const char *name)
5642 {
5643         device_t dev;
5644         int err, cpuid, tid;
5645
5646         dev = ctx->ifc_dev;
5647         cpuid = find_nth(ctx, qid);
5648         tid = get_core_offset(ctx, type, qid);
5649         MPASS(tid >= 0);
5650         cpuid = find_close_core(cpuid, tid);
5651         err = taskqgroup_attach_cpu(tqg, gtask, uniq, cpuid, dev, irq->ii_res,
5652             name);
5653         if (err) {
5654                 device_printf(dev, "taskqgroup_attach_cpu failed %d\n", err);
5655                 return (err);
5656         }
5657 #ifdef notyet
5658         if (cpuid > ctx->ifc_cpuid_highest)
5659                 ctx->ifc_cpuid_highest = cpuid;
5660 #endif
5661         return 0;
5662 }
5663
5664 int
5665 iflib_irq_alloc_generic(if_ctx_t ctx, if_irq_t irq, int rid,
5666                         iflib_intr_type_t type, driver_filter_t *filter,
5667                         void *filter_arg, int qid, const char *name)
5668 {
5669         device_t dev;
5670         struct grouptask *gtask;
5671         struct taskqgroup *tqg;
5672         iflib_filter_info_t info;
5673         gtask_fn_t *fn;
5674         int tqrid, err;
5675         driver_filter_t *intr_fast;
5676         void *q;
5677
5678         info = &ctx->ifc_filter_info;
5679         tqrid = rid;
5680
5681         switch (type) {
5682         /* XXX merge tx/rx for netmap? */
5683         case IFLIB_INTR_TX:
5684                 q = &ctx->ifc_txqs[qid];
5685                 info = &ctx->ifc_txqs[qid].ift_filter_info;
5686                 gtask = &ctx->ifc_txqs[qid].ift_task;
5687                 tqg = qgroup_if_io_tqg;
5688                 fn = _task_fn_tx;
5689                 intr_fast = iflib_fast_intr;
5690                 GROUPTASK_INIT(gtask, 0, fn, q);
5691                 ctx->ifc_flags |= IFC_NETMAP_TX_IRQ;
5692                 break;
5693         case IFLIB_INTR_RX:
5694                 q = &ctx->ifc_rxqs[qid];
5695                 info = &ctx->ifc_rxqs[qid].ifr_filter_info;
5696                 gtask = &ctx->ifc_rxqs[qid].ifr_task;
5697                 tqg = qgroup_if_io_tqg;
5698                 fn = _task_fn_rx;
5699                 intr_fast = iflib_fast_intr;
5700                 GROUPTASK_INIT(gtask, 0, fn, q);
5701                 break;
5702         case IFLIB_INTR_RXTX:
5703                 q = &ctx->ifc_rxqs[qid];
5704                 info = &ctx->ifc_rxqs[qid].ifr_filter_info;
5705                 gtask = &ctx->ifc_rxqs[qid].ifr_task;
5706                 tqg = qgroup_if_io_tqg;
5707                 fn = _task_fn_rx;
5708                 intr_fast = iflib_fast_intr_rxtx;
5709                 GROUPTASK_INIT(gtask, 0, fn, q);
5710                 break;
5711         case IFLIB_INTR_ADMIN:
5712                 q = ctx;
5713                 tqrid = -1;
5714                 info = &ctx->ifc_filter_info;
5715                 gtask = &ctx->ifc_admin_task;
5716                 tqg = qgroup_if_config_tqg;
5717                 fn = _task_fn_admin;
5718                 intr_fast = iflib_fast_intr_ctx;
5719                 break;
5720         default:
5721                 panic("unknown net intr type");
5722         }
5723
5724         info->ifi_filter = filter;
5725         info->ifi_filter_arg = filter_arg;
5726         info->ifi_task = gtask;
5727         info->ifi_ctx = q;
5728
5729         dev = ctx->ifc_dev;
5730         err = _iflib_irq_alloc(ctx, irq, rid, intr_fast, NULL, info,  name);
5731         if (err != 0) {
5732                 device_printf(dev, "_iflib_irq_alloc failed %d\n", err);
5733                 return (err);
5734         }
5735         if (type == IFLIB_INTR_ADMIN)
5736                 return (0);
5737
5738         if (tqrid != -1) {
5739                 err = iflib_irq_set_affinity(ctx, irq, type, qid, gtask, tqg,
5740                     q, name);
5741                 if (err)
5742                         return (err);
5743         } else {
5744                 taskqgroup_attach(tqg, gtask, q, dev, irq->ii_res, name);
5745         }
5746
5747         return (0);
5748 }
5749
5750 void
5751 iflib_softirq_alloc_generic(if_ctx_t ctx, if_irq_t irq, iflib_intr_type_t type, void *arg, int qid, const char *name)
5752 {
5753         struct grouptask *gtask;
5754         struct taskqgroup *tqg;
5755         gtask_fn_t *fn;
5756         void *q;
5757         int err;
5758
5759         switch (type) {
5760         case IFLIB_INTR_TX:
5761                 q = &ctx->ifc_txqs[qid];
5762                 gtask = &ctx->ifc_txqs[qid].ift_task;
5763                 tqg = qgroup_if_io_tqg;
5764                 fn = _task_fn_tx;
5765                 break;
5766         case IFLIB_INTR_RX:
5767                 q = &ctx->ifc_rxqs[qid];
5768                 gtask = &ctx->ifc_rxqs[qid].ifr_task;
5769                 tqg = qgroup_if_io_tqg;
5770                 fn = _task_fn_rx;
5771                 break;
5772         case IFLIB_INTR_IOV:
5773                 q = ctx;
5774                 gtask = &ctx->ifc_vflr_task;
5775                 tqg = qgroup_if_config_tqg;
5776                 fn = _task_fn_iov;
5777                 break;
5778         default:
5779                 panic("unknown net intr type");
5780         }
5781         GROUPTASK_INIT(gtask, 0, fn, q);
5782         if (irq != NULL) {
5783                 err = iflib_irq_set_affinity(ctx, irq, type, qid, gtask, tqg,
5784                     q, name);
5785                 if (err)
5786                         taskqgroup_attach(tqg, gtask, q, ctx->ifc_dev,
5787                             irq->ii_res, name);
5788         } else {
5789                 taskqgroup_attach(tqg, gtask, q, NULL, NULL, name);
5790         }
5791 }
5792
5793 void
5794 iflib_irq_free(if_ctx_t ctx, if_irq_t irq)
5795 {
5796
5797         if (irq->ii_tag)
5798                 bus_teardown_intr(ctx->ifc_dev, irq->ii_res, irq->ii_tag);
5799
5800         if (irq->ii_res)
5801                 bus_release_resource(ctx->ifc_dev, SYS_RES_IRQ,
5802                     rman_get_rid(irq->ii_res), irq->ii_res);
5803 }
5804
5805 static int
5806 iflib_legacy_setup(if_ctx_t ctx, driver_filter_t filter, void *filter_arg, int *rid, const char *name)
5807 {
5808         iflib_txq_t txq = ctx->ifc_txqs;
5809         iflib_rxq_t rxq = ctx->ifc_rxqs;
5810         if_irq_t irq = &ctx->ifc_legacy_irq;
5811         iflib_filter_info_t info;
5812         device_t dev;
5813         struct grouptask *gtask;
5814         struct resource *res;
5815         struct taskqgroup *tqg;
5816         gtask_fn_t *fn;
5817         int tqrid;
5818         void *q;
5819         int err;
5820
5821         q = &ctx->ifc_rxqs[0];
5822         info = &rxq[0].ifr_filter_info;
5823         gtask = &rxq[0].ifr_task;
5824         tqg = qgroup_if_io_tqg;
5825         tqrid = irq->ii_rid = *rid;
5826         fn = _task_fn_rx;
5827
5828         ctx->ifc_flags |= IFC_LEGACY;
5829         info->ifi_filter = filter;
5830         info->ifi_filter_arg = filter_arg;
5831         info->ifi_task = gtask;
5832         info->ifi_ctx = ctx;
5833
5834         dev = ctx->ifc_dev;
5835         /* We allocate a single interrupt resource */
5836         if ((err = _iflib_irq_alloc(ctx, irq, tqrid, iflib_fast_intr_ctx, NULL, info, name)) != 0)
5837                 return (err);
5838         GROUPTASK_INIT(gtask, 0, fn, q);
5839         res = irq->ii_res;
5840         taskqgroup_attach(tqg, gtask, q, dev, res, name);
5841
5842         GROUPTASK_INIT(&txq->ift_task, 0, _task_fn_tx, txq);
5843         taskqgroup_attach(qgroup_if_io_tqg, &txq->ift_task, txq, dev, res,
5844             "tx");
5845         return (0);
5846 }
5847
5848 void
5849 iflib_led_create(if_ctx_t ctx)
5850 {
5851
5852         ctx->ifc_led_dev = led_create(iflib_led_func, ctx,
5853             device_get_nameunit(ctx->ifc_dev));
5854 }
5855
5856 void
5857 iflib_tx_intr_deferred(if_ctx_t ctx, int txqid)
5858 {
5859
5860         GROUPTASK_ENQUEUE(&ctx->ifc_txqs[txqid].ift_task);
5861 }
5862
5863 void
5864 iflib_rx_intr_deferred(if_ctx_t ctx, int rxqid)
5865 {
5866
5867         GROUPTASK_ENQUEUE(&ctx->ifc_rxqs[rxqid].ifr_task);
5868 }
5869
5870 void
5871 iflib_admin_intr_deferred(if_ctx_t ctx)
5872 {
5873 #ifdef INVARIANTS
5874         struct grouptask *gtask;
5875
5876         gtask = &ctx->ifc_admin_task;
5877         MPASS(gtask != NULL && gtask->gt_taskqueue != NULL);
5878 #endif
5879
5880         GROUPTASK_ENQUEUE(&ctx->ifc_admin_task);
5881 }
5882
5883 void
5884 iflib_iov_intr_deferred(if_ctx_t ctx)
5885 {
5886
5887         GROUPTASK_ENQUEUE(&ctx->ifc_vflr_task);
5888 }
5889
5890 void
5891 iflib_io_tqg_attach(struct grouptask *gt, void *uniq, int cpu, char *name)
5892 {
5893
5894         taskqgroup_attach_cpu(qgroup_if_io_tqg, gt, uniq, cpu, NULL, NULL,
5895             name);
5896 }
5897
5898 void
5899 iflib_config_gtask_init(void *ctx, struct grouptask *gtask, gtask_fn_t *fn,
5900         const char *name)
5901 {
5902
5903         GROUPTASK_INIT(gtask, 0, fn, ctx);
5904         taskqgroup_attach(qgroup_if_config_tqg, gtask, gtask, NULL, NULL,
5905             name);
5906 }
5907
5908 void
5909 iflib_config_gtask_deinit(struct grouptask *gtask)
5910 {
5911
5912         taskqgroup_detach(qgroup_if_config_tqg, gtask); 
5913 }
5914
5915 void
5916 iflib_link_state_change(if_ctx_t ctx, int link_state, uint64_t baudrate)
5917 {
5918         if_t ifp = ctx->ifc_ifp;
5919         iflib_txq_t txq = ctx->ifc_txqs;
5920
5921         if_setbaudrate(ifp, baudrate);
5922         if (baudrate >= IF_Gbps(10)) {
5923                 STATE_LOCK(ctx);
5924                 ctx->ifc_flags |= IFC_PREFETCH;
5925                 STATE_UNLOCK(ctx);
5926         }
5927         /* If link down, disable watchdog */
5928         if ((ctx->ifc_link_state == LINK_STATE_UP) && (link_state == LINK_STATE_DOWN)) {
5929                 for (int i = 0; i < ctx->ifc_softc_ctx.isc_ntxqsets; i++, txq++)
5930                         txq->ift_qstatus = IFLIB_QUEUE_IDLE;
5931         }
5932         ctx->ifc_link_state = link_state;
5933         if_link_state_change(ifp, link_state);
5934 }
5935
5936 static int
5937 iflib_tx_credits_update(if_ctx_t ctx, iflib_txq_t txq)
5938 {
5939         int credits;
5940 #ifdef INVARIANTS
5941         int credits_pre = txq->ift_cidx_processed;
5942 #endif
5943
5944         if (ctx->isc_txd_credits_update == NULL)
5945                 return (0);
5946
5947         bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
5948             BUS_DMASYNC_POSTREAD);
5949         if ((credits = ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id, true)) == 0)
5950                 return (0);
5951
5952         txq->ift_processed += credits;
5953         txq->ift_cidx_processed += credits;
5954
5955         MPASS(credits_pre + credits == txq->ift_cidx_processed);
5956         if (txq->ift_cidx_processed >= txq->ift_size)
5957                 txq->ift_cidx_processed -= txq->ift_size;
5958         return (credits);
5959 }
5960
5961 static int
5962 iflib_rxd_avail(if_ctx_t ctx, iflib_rxq_t rxq, qidx_t cidx, qidx_t budget)
5963 {
5964         iflib_fl_t fl;
5965         u_int i;
5966
5967         for (i = 0, fl = &rxq->ifr_fl[0]; i < rxq->ifr_nfl; i++, fl++)
5968                 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
5969                     BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
5970         return (ctx->isc_rxd_available(ctx->ifc_softc, rxq->ifr_id, cidx,
5971             budget));
5972 }
5973
5974 void
5975 iflib_add_int_delay_sysctl(if_ctx_t ctx, const char *name,
5976         const char *description, if_int_delay_info_t info,
5977         int offset, int value)
5978 {
5979         info->iidi_ctx = ctx;
5980         info->iidi_offset = offset;
5981         info->iidi_value = value;
5982         SYSCTL_ADD_PROC(device_get_sysctl_ctx(ctx->ifc_dev),
5983             SYSCTL_CHILDREN(device_get_sysctl_tree(ctx->ifc_dev)),
5984             OID_AUTO, name, CTLTYPE_INT|CTLFLAG_RW,
5985             info, 0, iflib_sysctl_int_delay, "I", description);
5986 }
5987
5988 struct sx *
5989 iflib_ctx_lock_get(if_ctx_t ctx)
5990 {
5991
5992         return (&ctx->ifc_ctx_sx);
5993 }
5994
5995 static int
5996 iflib_msix_init(if_ctx_t ctx)
5997 {
5998         device_t dev = ctx->ifc_dev;
5999         if_shared_ctx_t sctx = ctx->ifc_sctx;
6000         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
6001         int vectors, queues, rx_queues, tx_queues, queuemsgs, msgs;
6002         int iflib_num_tx_queues, iflib_num_rx_queues;
6003         int err, admincnt, bar;
6004
6005         iflib_num_tx_queues = ctx->ifc_sysctl_ntxqs;
6006         iflib_num_rx_queues = ctx->ifc_sysctl_nrxqs;
6007
6008         if (bootverbose)
6009                 device_printf(dev, "msix_init qsets capped at %d\n",
6010                     imax(scctx->isc_ntxqsets, scctx->isc_nrxqsets));
6011
6012         bar = ctx->ifc_softc_ctx.isc_msix_bar;
6013         admincnt = sctx->isc_admin_intrcnt;
6014         /* Override by tuneable */
6015         if (scctx->isc_disable_msix)
6016                 goto msi;
6017
6018         /* First try MSI-X */
6019         if ((msgs = pci_msix_count(dev)) == 0) {
6020                 if (bootverbose)
6021                         device_printf(dev, "MSI-X not supported or disabled\n");
6022                 goto msi;
6023         }
6024         /*
6025          * bar == -1 => "trust me I know what I'm doing"
6026          * Some drivers are for hardware that is so shoddily
6027          * documented that no one knows which bars are which
6028          * so the developer has to map all bars. This hack
6029          * allows shoddy garbage to use MSI-X in this framework.
6030          */
6031         if (bar != -1) {
6032                 ctx->ifc_msix_mem = bus_alloc_resource_any(dev,
6033                     SYS_RES_MEMORY, &bar, RF_ACTIVE);
6034                 if (ctx->ifc_msix_mem == NULL) {
6035                         device_printf(dev, "Unable to map MSI-X table\n");
6036                         goto msi;
6037                 }
6038         }
6039 #if IFLIB_DEBUG
6040         /* use only 1 qset in debug mode */
6041         queuemsgs = min(msgs - admincnt, 1);
6042 #else
6043         queuemsgs = msgs - admincnt;
6044 #endif
6045 #ifdef RSS
6046         queues = imin(queuemsgs, rss_getnumbuckets());
6047 #else
6048         queues = queuemsgs;
6049 #endif
6050         queues = imin(CPU_COUNT(&ctx->ifc_cpus), queues);
6051         if (bootverbose)
6052                 device_printf(dev,
6053                     "intr CPUs: %d queue msgs: %d admincnt: %d\n",
6054                     CPU_COUNT(&ctx->ifc_cpus), queuemsgs, admincnt);
6055 #ifdef  RSS
6056         /* If we're doing RSS, clamp at the number of RSS buckets */
6057         if (queues > rss_getnumbuckets())
6058                 queues = rss_getnumbuckets();
6059 #endif
6060         if (iflib_num_rx_queues > 0 && iflib_num_rx_queues < queuemsgs - admincnt)
6061                 rx_queues = iflib_num_rx_queues;
6062         else
6063                 rx_queues = queues;
6064
6065         if (rx_queues > scctx->isc_nrxqsets)
6066                 rx_queues = scctx->isc_nrxqsets;
6067
6068         /*
6069          * We want this to be all logical CPUs by default
6070          */
6071         if (iflib_num_tx_queues > 0 && iflib_num_tx_queues < queues)
6072                 tx_queues = iflib_num_tx_queues;
6073         else
6074                 tx_queues = mp_ncpus;
6075
6076         if (tx_queues > scctx->isc_ntxqsets)
6077                 tx_queues = scctx->isc_ntxqsets;
6078
6079         if (ctx->ifc_sysctl_qs_eq_override == 0) {
6080 #ifdef INVARIANTS
6081                 if (tx_queues != rx_queues)
6082                         device_printf(dev,
6083                             "queue equality override not set, capping rx_queues at %d and tx_queues at %d\n",
6084                             min(rx_queues, tx_queues), min(rx_queues, tx_queues));
6085 #endif
6086                 tx_queues = min(rx_queues, tx_queues);
6087                 rx_queues = min(rx_queues, tx_queues);
6088         }
6089
6090         device_printf(dev, "Using %d rx queues %d tx queues\n",
6091             rx_queues, tx_queues);
6092
6093         vectors = rx_queues + admincnt;
6094         if ((err = pci_alloc_msix(dev, &vectors)) == 0) {
6095                 device_printf(dev, "Using MSI-X interrupts with %d vectors\n",
6096                     vectors);
6097                 scctx->isc_vectors = vectors;
6098                 scctx->isc_nrxqsets = rx_queues;
6099                 scctx->isc_ntxqsets = tx_queues;
6100                 scctx->isc_intr = IFLIB_INTR_MSIX;
6101
6102                 return (vectors);
6103         } else {
6104                 device_printf(dev,
6105                     "failed to allocate %d MSI-X vectors, err: %d - using MSI\n",
6106                     vectors, err);
6107                 bus_release_resource(dev, SYS_RES_MEMORY, bar,
6108                     ctx->ifc_msix_mem);
6109                 ctx->ifc_msix_mem = NULL;
6110         }
6111 msi:
6112         vectors = pci_msi_count(dev);
6113         scctx->isc_nrxqsets = 1;
6114         scctx->isc_ntxqsets = 1;
6115         scctx->isc_vectors = vectors;
6116         if (vectors == 1 && pci_alloc_msi(dev, &vectors) == 0) {
6117                 device_printf(dev,"Using an MSI interrupt\n");
6118                 scctx->isc_intr = IFLIB_INTR_MSI;
6119         } else {
6120                 scctx->isc_vectors = 1;
6121                 device_printf(dev,"Using a Legacy interrupt\n");
6122                 scctx->isc_intr = IFLIB_INTR_LEGACY;
6123         }
6124
6125         return (vectors);
6126 }
6127
6128 static const char *ring_states[] = { "IDLE", "BUSY", "STALLED", "ABDICATED" };
6129
6130 static int
6131 mp_ring_state_handler(SYSCTL_HANDLER_ARGS)
6132 {
6133         int rc;
6134         uint16_t *state = ((uint16_t *)oidp->oid_arg1);
6135         struct sbuf *sb;
6136         const char *ring_state = "UNKNOWN";
6137
6138         /* XXX needed ? */
6139         rc = sysctl_wire_old_buffer(req, 0);
6140         MPASS(rc == 0);
6141         if (rc != 0)
6142                 return (rc);
6143         sb = sbuf_new_for_sysctl(NULL, NULL, 80, req);
6144         MPASS(sb != NULL);
6145         if (sb == NULL)
6146                 return (ENOMEM);
6147         if (state[3] <= 3)
6148                 ring_state = ring_states[state[3]];
6149
6150         sbuf_printf(sb, "pidx_head: %04hd pidx_tail: %04hd cidx: %04hd state: %s",
6151                     state[0], state[1], state[2], ring_state);
6152         rc = sbuf_finish(sb);
6153         sbuf_delete(sb);
6154         return(rc);
6155 }
6156
6157 enum iflib_ndesc_handler {
6158         IFLIB_NTXD_HANDLER,
6159         IFLIB_NRXD_HANDLER,
6160 };
6161
6162 static int
6163 mp_ndesc_handler(SYSCTL_HANDLER_ARGS)
6164 {
6165         if_ctx_t ctx = (void *)arg1;
6166         enum iflib_ndesc_handler type = arg2;
6167         char buf[256] = {0};
6168         qidx_t *ndesc;
6169         char *p, *next;
6170         int nqs, rc, i;
6171
6172         MPASS(type == IFLIB_NTXD_HANDLER || type == IFLIB_NRXD_HANDLER);
6173
6174         nqs = 8;
6175         switch(type) {
6176         case IFLIB_NTXD_HANDLER:
6177                 ndesc = ctx->ifc_sysctl_ntxds;
6178                 if (ctx->ifc_sctx)
6179                         nqs = ctx->ifc_sctx->isc_ntxqs;
6180                 break;
6181         case IFLIB_NRXD_HANDLER:
6182                 ndesc = ctx->ifc_sysctl_nrxds;
6183                 if (ctx->ifc_sctx)
6184                         nqs = ctx->ifc_sctx->isc_nrxqs;
6185                 break;
6186         default:
6187                         panic("unhandled type");
6188         }
6189         if (nqs == 0)
6190                 nqs = 8;
6191
6192         for (i=0; i<8; i++) {
6193                 if (i >= nqs)
6194                         break;
6195                 if (i)
6196                         strcat(buf, ",");
6197                 sprintf(strchr(buf, 0), "%d", ndesc[i]);
6198         }
6199
6200         rc = sysctl_handle_string(oidp, buf, sizeof(buf), req);
6201         if (rc || req->newptr == NULL)
6202                 return rc;
6203
6204         for (i = 0, next = buf, p = strsep(&next, " ,"); i < 8 && p;
6205             i++, p = strsep(&next, " ,")) {
6206                 ndesc[i] = strtoul(p, NULL, 10);
6207         }
6208
6209         return(rc);
6210 }
6211
6212 #define NAME_BUFLEN 32
6213 static void
6214 iflib_add_device_sysctl_pre(if_ctx_t ctx)
6215 {
6216         device_t dev = iflib_get_dev(ctx);
6217         struct sysctl_oid_list *child, *oid_list;
6218         struct sysctl_ctx_list *ctx_list;
6219         struct sysctl_oid *node;
6220
6221         ctx_list = device_get_sysctl_ctx(dev);
6222         child = SYSCTL_CHILDREN(device_get_sysctl_tree(dev));
6223         ctx->ifc_sysctl_node = node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, "iflib",
6224                                                       CTLFLAG_RD, NULL, "IFLIB fields");
6225         oid_list = SYSCTL_CHILDREN(node);
6226
6227         SYSCTL_ADD_STRING(ctx_list, oid_list, OID_AUTO, "driver_version",
6228                        CTLFLAG_RD, ctx->ifc_sctx->isc_driver_version, 0,
6229                        "driver version");
6230
6231         SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "override_ntxqs",
6232                        CTLFLAG_RWTUN, &ctx->ifc_sysctl_ntxqs, 0,
6233                         "# of txqs to use, 0 => use default #");
6234         SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "override_nrxqs",
6235                        CTLFLAG_RWTUN, &ctx->ifc_sysctl_nrxqs, 0,
6236                         "# of rxqs to use, 0 => use default #");
6237         SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "override_qs_enable",
6238                        CTLFLAG_RWTUN, &ctx->ifc_sysctl_qs_eq_override, 0,
6239                        "permit #txq != #rxq");
6240         SYSCTL_ADD_INT(ctx_list, oid_list, OID_AUTO, "disable_msix",
6241                       CTLFLAG_RWTUN, &ctx->ifc_softc_ctx.isc_disable_msix, 0,
6242                       "disable MSI-X (default 0)");
6243         SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "rx_budget",
6244                        CTLFLAG_RWTUN, &ctx->ifc_sysctl_rx_budget, 0,
6245                        "set the rx budget");
6246         SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "tx_abdicate",
6247                        CTLFLAG_RWTUN, &ctx->ifc_sysctl_tx_abdicate, 0,
6248                        "cause tx to abdicate instead of running to completion");
6249
6250         /* XXX change for per-queue sizes */
6251         SYSCTL_ADD_PROC(ctx_list, oid_list, OID_AUTO, "override_ntxds",
6252                        CTLTYPE_STRING|CTLFLAG_RWTUN, ctx, IFLIB_NTXD_HANDLER,
6253                        mp_ndesc_handler, "A",
6254                        "list of # of tx descriptors to use, 0 = use default #");
6255         SYSCTL_ADD_PROC(ctx_list, oid_list, OID_AUTO, "override_nrxds",
6256                        CTLTYPE_STRING|CTLFLAG_RWTUN, ctx, IFLIB_NRXD_HANDLER,
6257                        mp_ndesc_handler, "A",
6258                        "list of # of rx descriptors to use, 0 = use default #");
6259 }
6260
6261 static void
6262 iflib_add_device_sysctl_post(if_ctx_t ctx)
6263 {
6264         if_shared_ctx_t sctx = ctx->ifc_sctx;
6265         if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
6266         device_t dev = iflib_get_dev(ctx);
6267         struct sysctl_oid_list *child;
6268         struct sysctl_ctx_list *ctx_list;
6269         iflib_fl_t fl;
6270         iflib_txq_t txq;
6271         iflib_rxq_t rxq;
6272         int i, j;
6273         char namebuf[NAME_BUFLEN];
6274         char *qfmt;
6275         struct sysctl_oid *queue_node, *fl_node, *node;
6276         struct sysctl_oid_list *queue_list, *fl_list;
6277         ctx_list = device_get_sysctl_ctx(dev);
6278
6279         node = ctx->ifc_sysctl_node;
6280         child = SYSCTL_CHILDREN(node);
6281
6282         if (scctx->isc_ntxqsets > 100)
6283                 qfmt = "txq%03d";
6284         else if (scctx->isc_ntxqsets > 10)
6285                 qfmt = "txq%02d";
6286         else
6287                 qfmt = "txq%d";
6288         for (i = 0, txq = ctx->ifc_txqs; i < scctx->isc_ntxqsets; i++, txq++) {
6289                 snprintf(namebuf, NAME_BUFLEN, qfmt, i);
6290                 queue_node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, namebuf,
6291                                              CTLFLAG_RD, NULL, "Queue Name");
6292                 queue_list = SYSCTL_CHILDREN(queue_node);
6293 #if MEMORY_LOGGING
6294                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_dequeued",
6295                                 CTLFLAG_RD,
6296                                 &txq->ift_dequeued, "total mbufs freed");
6297                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_enqueued",
6298                                 CTLFLAG_RD,
6299                                 &txq->ift_enqueued, "total mbufs enqueued");
6300 #endif
6301                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "mbuf_defrag",
6302                                    CTLFLAG_RD,
6303                                    &txq->ift_mbuf_defrag, "# of times m_defrag was called");
6304                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "m_pullups",
6305                                    CTLFLAG_RD,
6306                                    &txq->ift_pullups, "# of times m_pullup was called");
6307                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "mbuf_defrag_failed",
6308                                    CTLFLAG_RD,
6309                                    &txq->ift_mbuf_defrag_failed, "# of times m_defrag failed");
6310                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "no_desc_avail",
6311                                    CTLFLAG_RD,
6312                                    &txq->ift_no_desc_avail, "# of times no descriptors were available");
6313                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "tx_map_failed",
6314                                    CTLFLAG_RD,
6315                                    &txq->ift_map_failed, "# of times dma map failed");
6316                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txd_encap_efbig",
6317                                    CTLFLAG_RD,
6318                                    &txq->ift_txd_encap_efbig, "# of times txd_encap returned EFBIG");
6319                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "no_tx_dma_setup",
6320                                    CTLFLAG_RD,
6321                                    &txq->ift_no_tx_dma_setup, "# of times map failed for other than EFBIG");
6322                 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_pidx",
6323                                    CTLFLAG_RD,
6324                                    &txq->ift_pidx, 1, "Producer Index");
6325                 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_cidx",
6326                                    CTLFLAG_RD,
6327                                    &txq->ift_cidx, 1, "Consumer Index");
6328                 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_cidx_processed",
6329                                    CTLFLAG_RD,
6330                                    &txq->ift_cidx_processed, 1, "Consumer Index seen by credit update");
6331                 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_in_use",
6332                                    CTLFLAG_RD,
6333                                    &txq->ift_in_use, 1, "descriptors in use");
6334                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_processed",
6335                                    CTLFLAG_RD,
6336                                    &txq->ift_processed, "descriptors procesed for clean");
6337                 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_cleaned",
6338                                    CTLFLAG_RD,
6339                                    &txq->ift_cleaned, "total cleaned");
6340                 SYSCTL_ADD_PROC(ctx_list, queue_list, OID_AUTO, "ring_state",
6341                                 CTLTYPE_STRING | CTLFLAG_RD, __DEVOLATILE(uint64_t *, &txq->ift_br->state),
6342                                 0, mp_ring_state_handler, "A", "soft ring state");
6343                 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_enqueues",
6344                                        CTLFLAG_RD, &txq->ift_br->enqueues,
6345                                        "# of enqueues to the mp_ring for this queue");
6346                 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_drops",
6347                                        CTLFLAG_RD, &txq->ift_br->drops,
6348                                        "# of drops in the mp_ring for this queue");
6349                 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_starts",
6350                                        CTLFLAG_RD, &txq->ift_br->starts,
6351                                        "# of normal consumer starts in the mp_ring for this queue");
6352                 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_stalls",
6353                                        CTLFLAG_RD, &txq->ift_br->stalls,
6354                                                "# of consumer stalls in the mp_ring for this queue");
6355                 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_restarts",
6356                                CTLFLAG_RD, &txq->ift_br->restarts,
6357                                        "# of consumer restarts in the mp_ring for this queue");
6358                 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_abdications",
6359                                        CTLFLAG_RD, &txq->ift_br->abdications,
6360                                        "# of consumer abdications in the mp_ring for this queue");
6361         }
6362
6363         if (scctx->isc_nrxqsets > 100)
6364                 qfmt = "rxq%03d";
6365         else if (scctx->isc_nrxqsets > 10)
6366                 qfmt = "rxq%02d";
6367         else
6368                 qfmt = "rxq%d";
6369         for (i = 0, rxq = ctx->ifc_rxqs; i < scctx->isc_nrxqsets; i++, rxq++) {
6370                 snprintf(namebuf, NAME_BUFLEN, qfmt, i);
6371                 queue_node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, namebuf,
6372                                              CTLFLAG_RD, NULL, "Queue Name");
6373                 queue_list = SYSCTL_CHILDREN(queue_node);
6374                 if (sctx->isc_flags & IFLIB_HAS_RXCQ) {
6375                         SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "rxq_cq_pidx",
6376                                        CTLFLAG_RD,
6377                                        &rxq->ifr_cq_pidx, 1, "Producer Index");
6378                         SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "rxq_cq_cidx",
6379                                        CTLFLAG_RD,
6380                                        &rxq->ifr_cq_cidx, 1, "Consumer Index");
6381                 }
6382
6383                 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++) {
6384                         snprintf(namebuf, NAME_BUFLEN, "rxq_fl%d", j);
6385                         fl_node = SYSCTL_ADD_NODE(ctx_list, queue_list, OID_AUTO, namebuf,
6386                                                      CTLFLAG_RD, NULL, "freelist Name");
6387                         fl_list = SYSCTL_CHILDREN(fl_node);
6388                         SYSCTL_ADD_U16(ctx_list, fl_list, OID_AUTO, "pidx",
6389                                        CTLFLAG_RD,
6390                                        &fl->ifl_pidx, 1, "Producer Index");
6391                         SYSCTL_ADD_U16(ctx_list, fl_list, OID_AUTO, "cidx",
6392                                        CTLFLAG_RD,
6393                                        &fl->ifl_cidx, 1, "Consumer Index");
6394                         SYSCTL_ADD_U16(ctx_list, fl_list, OID_AUTO, "credits",
6395                                        CTLFLAG_RD,
6396                                        &fl->ifl_credits, 1, "credits available");
6397 #if MEMORY_LOGGING
6398                         SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_m_enqueued",
6399                                         CTLFLAG_RD,
6400                                         &fl->ifl_m_enqueued, "mbufs allocated");
6401                         SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_m_dequeued",
6402                                         CTLFLAG_RD,
6403                                         &fl->ifl_m_dequeued, "mbufs freed");
6404                         SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_cl_enqueued",
6405                                         CTLFLAG_RD,
6406                                         &fl->ifl_cl_enqueued, "clusters allocated");
6407                         SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_cl_dequeued",
6408                                         CTLFLAG_RD,
6409                                         &fl->ifl_cl_dequeued, "clusters freed");
6410 #endif
6411
6412                 }
6413         }
6414
6415 }
6416
6417 void
6418 iflib_request_reset(if_ctx_t ctx)
6419 {
6420
6421         STATE_LOCK(ctx);
6422         ctx->ifc_flags |= IFC_DO_RESET;
6423         STATE_UNLOCK(ctx);
6424 }
6425
6426 #ifndef __NO_STRICT_ALIGNMENT
6427 static struct mbuf *
6428 iflib_fixup_rx(struct mbuf *m)
6429 {
6430         struct mbuf *n;
6431
6432         if (m->m_len <= (MCLBYTES - ETHER_HDR_LEN)) {
6433                 bcopy(m->m_data, m->m_data + ETHER_HDR_LEN, m->m_len);
6434                 m->m_data += ETHER_HDR_LEN;
6435                 n = m;
6436         } else {
6437                 MGETHDR(n, M_NOWAIT, MT_DATA);
6438                 if (n == NULL) {
6439                         m_freem(m);
6440                         return (NULL);
6441                 }
6442                 bcopy(m->m_data, n->m_data, ETHER_HDR_LEN);
6443                 m->m_data += ETHER_HDR_LEN;
6444                 m->m_len -= ETHER_HDR_LEN;
6445                 n->m_len = ETHER_HDR_LEN;
6446                 M_MOVE_PKTHDR(n, m);
6447                 n->m_next = m;
6448         }
6449         return (n);
6450 }
6451 #endif
6452
6453 #ifdef NETDUMP
6454 static void
6455 iflib_netdump_init(struct ifnet *ifp, int *nrxr, int *ncl, int *clsize)
6456 {
6457         if_ctx_t ctx;
6458
6459         ctx = if_getsoftc(ifp);
6460         CTX_LOCK(ctx);
6461         *nrxr = NRXQSETS(ctx);
6462         *ncl = ctx->ifc_rxqs[0].ifr_fl->ifl_size;
6463         *clsize = ctx->ifc_rxqs[0].ifr_fl->ifl_buf_size;
6464         CTX_UNLOCK(ctx);
6465 }
6466
6467 static void
6468 iflib_netdump_event(struct ifnet *ifp, enum netdump_ev event)
6469 {
6470         if_ctx_t ctx;
6471         if_softc_ctx_t scctx;
6472         iflib_fl_t fl;
6473         iflib_rxq_t rxq;
6474         int i, j;
6475
6476         ctx = if_getsoftc(ifp);
6477         scctx = &ctx->ifc_softc_ctx;
6478
6479         switch (event) {
6480         case NETDUMP_START:
6481                 for (i = 0; i < scctx->isc_nrxqsets; i++) {
6482                         rxq = &ctx->ifc_rxqs[i];
6483                         for (j = 0; j < rxq->ifr_nfl; j++) {
6484                                 fl = rxq->ifr_fl;
6485                                 fl->ifl_zone = m_getzone(fl->ifl_buf_size);
6486                         }
6487                 }
6488                 iflib_no_tx_batch = 1;
6489                 break;
6490         default:
6491                 break;
6492         }
6493 }
6494
6495 static int
6496 iflib_netdump_transmit(struct ifnet *ifp, struct mbuf *m)
6497 {
6498         if_ctx_t ctx;
6499         iflib_txq_t txq;
6500         int error;
6501
6502         ctx = if_getsoftc(ifp);
6503         if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
6504             IFF_DRV_RUNNING)
6505                 return (EBUSY);
6506
6507         txq = &ctx->ifc_txqs[0];
6508         error = iflib_encap(txq, &m);
6509         if (error == 0)
6510                 (void)iflib_txd_db_check(ctx, txq, true, txq->ift_in_use);
6511         return (error);
6512 }
6513
6514 static int
6515 iflib_netdump_poll(struct ifnet *ifp, int count)
6516 {
6517         if_ctx_t ctx;
6518         if_softc_ctx_t scctx;
6519         iflib_txq_t txq;
6520         int i;
6521
6522         ctx = if_getsoftc(ifp);
6523         scctx = &ctx->ifc_softc_ctx;
6524
6525         if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
6526             IFF_DRV_RUNNING)
6527                 return (EBUSY);
6528
6529         txq = &ctx->ifc_txqs[0];
6530         (void)iflib_completed_tx_reclaim(txq, RECLAIM_THRESH(ctx));
6531
6532         for (i = 0; i < scctx->isc_nrxqsets; i++)
6533                 (void)iflib_rxeof(&ctx->ifc_rxqs[i], 16 /* XXX */);
6534         return (0);
6535 }
6536 #endif /* NETDUMP */