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