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