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