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