xref: /freebsd/sys/dev/cxgbe/t4_sge.c (revision b0b1dbdd)
1 /*-
2  * Copyright (c) 2011 Chelsio Communications, Inc.
3  * All rights reserved.
4  * Written by: Navdeep Parhar <np@FreeBSD.org>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * 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 AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include "opt_inet.h"
32 #include "opt_inet6.h"
33 
34 #include <sys/types.h>
35 #include <sys/eventhandler.h>
36 #include <sys/mbuf.h>
37 #include <sys/socket.h>
38 #include <sys/kernel.h>
39 #include <sys/malloc.h>
40 #include <sys/queue.h>
41 #include <sys/sbuf.h>
42 #include <sys/taskqueue.h>
43 #include <sys/time.h>
44 #include <sys/sglist.h>
45 #include <sys/sysctl.h>
46 #include <sys/smp.h>
47 #include <sys/counter.h>
48 #include <net/bpf.h>
49 #include <net/ethernet.h>
50 #include <net/if.h>
51 #include <net/if_vlan_var.h>
52 #include <netinet/in.h>
53 #include <netinet/ip.h>
54 #include <netinet/ip6.h>
55 #include <netinet/tcp.h>
56 #include <machine/in_cksum.h>
57 #include <machine/md_var.h>
58 #include <vm/vm.h>
59 #include <vm/pmap.h>
60 #ifdef DEV_NETMAP
61 #include <machine/bus.h>
62 #include <sys/selinfo.h>
63 #include <net/if_var.h>
64 #include <net/netmap.h>
65 #include <dev/netmap/netmap_kern.h>
66 #endif
67 
68 #include "common/common.h"
69 #include "common/t4_regs.h"
70 #include "common/t4_regs_values.h"
71 #include "common/t4_msg.h"
72 #include "t4_l2t.h"
73 #include "t4_mp_ring.h"
74 
75 #ifdef T4_PKT_TIMESTAMP
76 #define RX_COPY_THRESHOLD (MINCLSIZE - 8)
77 #else
78 #define RX_COPY_THRESHOLD MINCLSIZE
79 #endif
80 
81 /*
82  * Ethernet frames are DMA'd at this byte offset into the freelist buffer.
83  * 0-7 are valid values.
84  */
85 static int fl_pktshift = 2;
86 TUNABLE_INT("hw.cxgbe.fl_pktshift", &fl_pktshift);
87 
88 /*
89  * Pad ethernet payload up to this boundary.
90  * -1: driver should figure out a good value.
91  *  0: disable padding.
92  *  Any power of 2 from 32 to 4096 (both inclusive) is also a valid value.
93  */
94 int fl_pad = -1;
95 TUNABLE_INT("hw.cxgbe.fl_pad", &fl_pad);
96 
97 /*
98  * Status page length.
99  * -1: driver should figure out a good value.
100  *  64 or 128 are the only other valid values.
101  */
102 static int spg_len = -1;
103 TUNABLE_INT("hw.cxgbe.spg_len", &spg_len);
104 
105 /*
106  * Congestion drops.
107  * -1: no congestion feedback (not recommended).
108  *  0: backpressure the channel instead of dropping packets right away.
109  *  1: no backpressure, drop packets for the congested queue immediately.
110  */
111 static int cong_drop = 0;
112 TUNABLE_INT("hw.cxgbe.cong_drop", &cong_drop);
113 
114 /*
115  * Deliver multiple frames in the same free list buffer if they fit.
116  * -1: let the driver decide whether to enable buffer packing or not.
117  *  0: disable buffer packing.
118  *  1: enable buffer packing.
119  */
120 static int buffer_packing = -1;
121 TUNABLE_INT("hw.cxgbe.buffer_packing", &buffer_packing);
122 
123 /*
124  * Start next frame in a packed buffer at this boundary.
125  * -1: driver should figure out a good value.
126  * T4: driver will ignore this and use the same value as fl_pad above.
127  * T5: 16, or a power of 2 from 64 to 4096 (both inclusive) is a valid value.
128  */
129 static int fl_pack = -1;
130 TUNABLE_INT("hw.cxgbe.fl_pack", &fl_pack);
131 
132 /*
133  * Allow the driver to create mbuf(s) in a cluster allocated for rx.
134  * 0: never; always allocate mbufs from the zone_mbuf UMA zone.
135  * 1: ok to create mbuf(s) within a cluster if there is room.
136  */
137 static int allow_mbufs_in_cluster = 1;
138 TUNABLE_INT("hw.cxgbe.allow_mbufs_in_cluster", &allow_mbufs_in_cluster);
139 
140 /*
141  * Largest rx cluster size that the driver is allowed to allocate.
142  */
143 static int largest_rx_cluster = MJUM16BYTES;
144 TUNABLE_INT("hw.cxgbe.largest_rx_cluster", &largest_rx_cluster);
145 
146 /*
147  * Size of cluster allocation that's most likely to succeed.  The driver will
148  * fall back to this size if it fails to allocate clusters larger than this.
149  */
150 static int safest_rx_cluster = PAGE_SIZE;
151 TUNABLE_INT("hw.cxgbe.safest_rx_cluster", &safest_rx_cluster);
152 
153 struct txpkts {
154 	u_int wr_type;		/* type 0 or type 1 */
155 	u_int npkt;		/* # of packets in this work request */
156 	u_int plen;		/* total payload (sum of all packets) */
157 	u_int len16;		/* # of 16B pieces used by this work request */
158 };
159 
160 /* A packet's SGL.  This + m_pkthdr has all info needed for tx */
161 struct sgl {
162 	struct sglist sg;
163 	struct sglist_seg seg[TX_SGL_SEGS];
164 };
165 
166 static int service_iq(struct sge_iq *, int);
167 static struct mbuf *get_fl_payload(struct adapter *, struct sge_fl *, uint32_t);
168 static int t4_eth_rx(struct sge_iq *, const struct rss_header *, struct mbuf *);
169 static inline void init_iq(struct sge_iq *, struct adapter *, int, int, int);
170 static inline void init_fl(struct adapter *, struct sge_fl *, int, int, char *);
171 static inline void init_eq(struct adapter *, struct sge_eq *, int, int, uint8_t,
172     uint16_t, char *);
173 static int alloc_ring(struct adapter *, size_t, bus_dma_tag_t *, bus_dmamap_t *,
174     bus_addr_t *, void **);
175 static int free_ring(struct adapter *, bus_dma_tag_t, bus_dmamap_t, bus_addr_t,
176     void *);
177 static int alloc_iq_fl(struct vi_info *, struct sge_iq *, struct sge_fl *,
178     int, int);
179 static int free_iq_fl(struct vi_info *, struct sge_iq *, struct sge_fl *);
180 static void add_fl_sysctls(struct adapter *, struct sysctl_ctx_list *,
181     struct sysctl_oid *, struct sge_fl *);
182 static int alloc_fwq(struct adapter *);
183 static int free_fwq(struct adapter *);
184 static int alloc_mgmtq(struct adapter *);
185 static int free_mgmtq(struct adapter *);
186 static int alloc_rxq(struct vi_info *, struct sge_rxq *, int, int,
187     struct sysctl_oid *);
188 static int free_rxq(struct vi_info *, struct sge_rxq *);
189 #ifdef TCP_OFFLOAD
190 static int alloc_ofld_rxq(struct vi_info *, struct sge_ofld_rxq *, int, int,
191     struct sysctl_oid *);
192 static int free_ofld_rxq(struct vi_info *, struct sge_ofld_rxq *);
193 #endif
194 #ifdef DEV_NETMAP
195 static int alloc_nm_rxq(struct vi_info *, struct sge_nm_rxq *, int, int,
196     struct sysctl_oid *);
197 static int free_nm_rxq(struct vi_info *, struct sge_nm_rxq *);
198 static int alloc_nm_txq(struct vi_info *, struct sge_nm_txq *, int, int,
199     struct sysctl_oid *);
200 static int free_nm_txq(struct vi_info *, struct sge_nm_txq *);
201 #endif
202 static int ctrl_eq_alloc(struct adapter *, struct sge_eq *);
203 static int eth_eq_alloc(struct adapter *, struct vi_info *, struct sge_eq *);
204 #ifdef TCP_OFFLOAD
205 static int ofld_eq_alloc(struct adapter *, struct vi_info *, struct sge_eq *);
206 #endif
207 static int alloc_eq(struct adapter *, struct vi_info *, struct sge_eq *);
208 static int free_eq(struct adapter *, struct sge_eq *);
209 static int alloc_wrq(struct adapter *, struct vi_info *, struct sge_wrq *,
210     struct sysctl_oid *);
211 static int free_wrq(struct adapter *, struct sge_wrq *);
212 static int alloc_txq(struct vi_info *, struct sge_txq *, int,
213     struct sysctl_oid *);
214 static int free_txq(struct vi_info *, struct sge_txq *);
215 static void oneseg_dma_callback(void *, bus_dma_segment_t *, int, int);
216 static inline void ring_fl_db(struct adapter *, struct sge_fl *);
217 static int refill_fl(struct adapter *, struct sge_fl *, int);
218 static void refill_sfl(void *);
219 static int alloc_fl_sdesc(struct sge_fl *);
220 static void free_fl_sdesc(struct adapter *, struct sge_fl *);
221 static void find_best_refill_source(struct adapter *, struct sge_fl *, int);
222 static void find_safe_refill_source(struct adapter *, struct sge_fl *);
223 static void add_fl_to_sfl(struct adapter *, struct sge_fl *);
224 
225 static inline void get_pkt_gl(struct mbuf *, struct sglist *);
226 static inline u_int txpkt_len16(u_int, u_int);
227 static inline u_int txpkt_vm_len16(u_int, u_int);
228 static inline u_int txpkts0_len16(u_int);
229 static inline u_int txpkts1_len16(void);
230 static u_int write_txpkt_wr(struct sge_txq *, struct fw_eth_tx_pkt_wr *,
231     struct mbuf *, u_int);
232 static u_int write_txpkt_vm_wr(struct adapter *, struct sge_txq *,
233     struct fw_eth_tx_pkt_vm_wr *, struct mbuf *, u_int);
234 static int try_txpkts(struct mbuf *, struct mbuf *, struct txpkts *, u_int);
235 static int add_to_txpkts(struct mbuf *, struct txpkts *, u_int);
236 static u_int write_txpkts_wr(struct sge_txq *, struct fw_eth_tx_pkts_wr *,
237     struct mbuf *, const struct txpkts *, u_int);
238 static void write_gl_to_txd(struct sge_txq *, struct mbuf *, caddr_t *, int);
239 static inline void copy_to_txd(struct sge_eq *, caddr_t, caddr_t *, int);
240 static inline void ring_eq_db(struct adapter *, struct sge_eq *, u_int);
241 static inline uint16_t read_hw_cidx(struct sge_eq *);
242 static inline u_int reclaimable_tx_desc(struct sge_eq *);
243 static inline u_int total_available_tx_desc(struct sge_eq *);
244 static u_int reclaim_tx_descs(struct sge_txq *, u_int);
245 static void tx_reclaim(void *, int);
246 static __be64 get_flit(struct sglist_seg *, int, int);
247 static int handle_sge_egr_update(struct sge_iq *, const struct rss_header *,
248     struct mbuf *);
249 static int handle_fw_msg(struct sge_iq *, const struct rss_header *,
250     struct mbuf *);
251 static int t4_handle_wrerr_rpl(struct adapter *, const __be64 *);
252 static void wrq_tx_drain(void *, int);
253 static void drain_wrq_wr_list(struct adapter *, struct sge_wrq *);
254 
255 static int sysctl_uint16(SYSCTL_HANDLER_ARGS);
256 static int sysctl_bufsizes(SYSCTL_HANDLER_ARGS);
257 static int sysctl_tc(SYSCTL_HANDLER_ARGS);
258 
259 static counter_u64_t extfree_refs;
260 static counter_u64_t extfree_rels;
261 
262 an_handler_t t4_an_handler;
263 fw_msg_handler_t t4_fw_msg_handler[NUM_FW6_TYPES];
264 cpl_handler_t t4_cpl_handler[NUM_CPL_CMDS];
265 
266 
267 static int
268 an_not_handled(struct sge_iq *iq, const struct rsp_ctrl *ctrl)
269 {
270 
271 #ifdef INVARIANTS
272 	panic("%s: async notification on iq %p (ctrl %p)", __func__, iq, ctrl);
273 #else
274 	log(LOG_ERR, "%s: async notification on iq %p (ctrl %p)\n",
275 	    __func__, iq, ctrl);
276 #endif
277 	return (EDOOFUS);
278 }
279 
280 int
281 t4_register_an_handler(an_handler_t h)
282 {
283 	uintptr_t *loc, new;
284 
285 	new = h ? (uintptr_t)h : (uintptr_t)an_not_handled;
286 	loc = (uintptr_t *) &t4_an_handler;
287 	atomic_store_rel_ptr(loc, new);
288 
289 	return (0);
290 }
291 
292 static int
293 fw_msg_not_handled(struct adapter *sc, const __be64 *rpl)
294 {
295 	const struct cpl_fw6_msg *cpl =
296 	    __containerof(rpl, struct cpl_fw6_msg, data[0]);
297 
298 #ifdef INVARIANTS
299 	panic("%s: fw_msg type %d", __func__, cpl->type);
300 #else
301 	log(LOG_ERR, "%s: fw_msg type %d\n", __func__, cpl->type);
302 #endif
303 	return (EDOOFUS);
304 }
305 
306 int
307 t4_register_fw_msg_handler(int type, fw_msg_handler_t h)
308 {
309 	uintptr_t *loc, new;
310 
311 	if (type >= nitems(t4_fw_msg_handler))
312 		return (EINVAL);
313 
314 	/*
315 	 * These are dispatched by the handler for FW{4|6}_CPL_MSG using the CPL
316 	 * handler dispatch table.  Reject any attempt to install a handler for
317 	 * this subtype.
318 	 */
319 	if (type == FW_TYPE_RSSCPL || type == FW6_TYPE_RSSCPL)
320 		return (EINVAL);
321 
322 	new = h ? (uintptr_t)h : (uintptr_t)fw_msg_not_handled;
323 	loc = (uintptr_t *) &t4_fw_msg_handler[type];
324 	atomic_store_rel_ptr(loc, new);
325 
326 	return (0);
327 }
328 
329 static int
330 cpl_not_handled(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m)
331 {
332 
333 #ifdef INVARIANTS
334 	panic("%s: opcode 0x%02x on iq %p with payload %p",
335 	    __func__, rss->opcode, iq, m);
336 #else
337 	log(LOG_ERR, "%s: opcode 0x%02x on iq %p with payload %p\n",
338 	    __func__, rss->opcode, iq, m);
339 	m_freem(m);
340 #endif
341 	return (EDOOFUS);
342 }
343 
344 int
345 t4_register_cpl_handler(int opcode, cpl_handler_t h)
346 {
347 	uintptr_t *loc, new;
348 
349 	if (opcode >= nitems(t4_cpl_handler))
350 		return (EINVAL);
351 
352 	new = h ? (uintptr_t)h : (uintptr_t)cpl_not_handled;
353 	loc = (uintptr_t *) &t4_cpl_handler[opcode];
354 	atomic_store_rel_ptr(loc, new);
355 
356 	return (0);
357 }
358 
359 /*
360  * Called on MOD_LOAD.  Validates and calculates the SGE tunables.
361  */
362 void
363 t4_sge_modload(void)
364 {
365 	int i;
366 
367 	if (fl_pktshift < 0 || fl_pktshift > 7) {
368 		printf("Invalid hw.cxgbe.fl_pktshift value (%d),"
369 		    " using 2 instead.\n", fl_pktshift);
370 		fl_pktshift = 2;
371 	}
372 
373 	if (spg_len != 64 && spg_len != 128) {
374 		int len;
375 
376 #if defined(__i386__) || defined(__amd64__)
377 		len = cpu_clflush_line_size > 64 ? 128 : 64;
378 #else
379 		len = 64;
380 #endif
381 		if (spg_len != -1) {
382 			printf("Invalid hw.cxgbe.spg_len value (%d),"
383 			    " using %d instead.\n", spg_len, len);
384 		}
385 		spg_len = len;
386 	}
387 
388 	if (cong_drop < -1 || cong_drop > 1) {
389 		printf("Invalid hw.cxgbe.cong_drop value (%d),"
390 		    " using 0 instead.\n", cong_drop);
391 		cong_drop = 0;
392 	}
393 
394 	extfree_refs = counter_u64_alloc(M_WAITOK);
395 	extfree_rels = counter_u64_alloc(M_WAITOK);
396 	counter_u64_zero(extfree_refs);
397 	counter_u64_zero(extfree_rels);
398 
399 	t4_an_handler = an_not_handled;
400 	for (i = 0; i < nitems(t4_fw_msg_handler); i++)
401 		t4_fw_msg_handler[i] = fw_msg_not_handled;
402 	for (i = 0; i < nitems(t4_cpl_handler); i++)
403 		t4_cpl_handler[i] = cpl_not_handled;
404 
405 	t4_register_cpl_handler(CPL_FW4_MSG, handle_fw_msg);
406 	t4_register_cpl_handler(CPL_FW6_MSG, handle_fw_msg);
407 	t4_register_cpl_handler(CPL_SGE_EGR_UPDATE, handle_sge_egr_update);
408 	t4_register_cpl_handler(CPL_RX_PKT, t4_eth_rx);
409 	t4_register_fw_msg_handler(FW6_TYPE_CMD_RPL, t4_handle_fw_rpl);
410 	t4_register_fw_msg_handler(FW6_TYPE_WRERR_RPL, t4_handle_wrerr_rpl);
411 }
412 
413 void
414 t4_sge_modunload(void)
415 {
416 
417 	counter_u64_free(extfree_refs);
418 	counter_u64_free(extfree_rels);
419 }
420 
421 uint64_t
422 t4_sge_extfree_refs(void)
423 {
424 	uint64_t refs, rels;
425 
426 	rels = counter_u64_fetch(extfree_rels);
427 	refs = counter_u64_fetch(extfree_refs);
428 
429 	return (refs - rels);
430 }
431 
432 static inline void
433 setup_pad_and_pack_boundaries(struct adapter *sc)
434 {
435 	uint32_t v, m;
436 	int pad, pack, pad_shift;
437 
438 	pad_shift = chip_id(sc) > CHELSIO_T5 ? X_T6_INGPADBOUNDARY_SHIFT :
439 	    X_INGPADBOUNDARY_SHIFT;
440 	pad = fl_pad;
441 	if (fl_pad < (1 << pad_shift) ||
442 	    fl_pad > (1 << (pad_shift + M_INGPADBOUNDARY)) ||
443 	    !powerof2(fl_pad)) {
444 		/*
445 		 * If there is any chance that we might use buffer packing and
446 		 * the chip is a T4, then pick 64 as the pad/pack boundary.  Set
447 		 * it to the minimum allowed in all other cases.
448 		 */
449 		pad = is_t4(sc) && buffer_packing ? 64 : 1 << pad_shift;
450 
451 		/*
452 		 * For fl_pad = 0 we'll still write a reasonable value to the
453 		 * register but all the freelists will opt out of padding.
454 		 * We'll complain here only if the user tried to set it to a
455 		 * value greater than 0 that was invalid.
456 		 */
457 		if (fl_pad > 0) {
458 			device_printf(sc->dev, "Invalid hw.cxgbe.fl_pad value"
459 			    " (%d), using %d instead.\n", fl_pad, pad);
460 		}
461 	}
462 	m = V_INGPADBOUNDARY(M_INGPADBOUNDARY);
463 	v = V_INGPADBOUNDARY(ilog2(pad) - pad_shift);
464 	t4_set_reg_field(sc, A_SGE_CONTROL, m, v);
465 
466 	if (is_t4(sc)) {
467 		if (fl_pack != -1 && fl_pack != pad) {
468 			/* Complain but carry on. */
469 			device_printf(sc->dev, "hw.cxgbe.fl_pack (%d) ignored,"
470 			    " using %d instead.\n", fl_pack, pad);
471 		}
472 		return;
473 	}
474 
475 	pack = fl_pack;
476 	if (fl_pack < 16 || fl_pack == 32 || fl_pack > 4096 ||
477 	    !powerof2(fl_pack)) {
478 		pack = max(sc->params.pci.mps, CACHE_LINE_SIZE);
479 		MPASS(powerof2(pack));
480 		if (pack < 16)
481 			pack = 16;
482 		if (pack == 32)
483 			pack = 64;
484 		if (pack > 4096)
485 			pack = 4096;
486 		if (fl_pack != -1) {
487 			device_printf(sc->dev, "Invalid hw.cxgbe.fl_pack value"
488 			    " (%d), using %d instead.\n", fl_pack, pack);
489 		}
490 	}
491 	m = V_INGPACKBOUNDARY(M_INGPACKBOUNDARY);
492 	if (pack == 16)
493 		v = V_INGPACKBOUNDARY(0);
494 	else
495 		v = V_INGPACKBOUNDARY(ilog2(pack) - 5);
496 
497 	MPASS(!is_t4(sc));	/* T4 doesn't have SGE_CONTROL2 */
498 	t4_set_reg_field(sc, A_SGE_CONTROL2, m, v);
499 }
500 
501 /*
502  * adap->params.vpd.cclk must be set up before this is called.
503  */
504 void
505 t4_tweak_chip_settings(struct adapter *sc)
506 {
507 	int i;
508 	uint32_t v, m;
509 	int intr_timer[SGE_NTIMERS] = {1, 5, 10, 50, 100, 200};
510 	int timer_max = M_TIMERVALUE0 * 1000 / sc->params.vpd.cclk;
511 	int intr_pktcount[SGE_NCOUNTERS] = {1, 8, 16, 32}; /* 63 max */
512 	uint16_t indsz = min(RX_COPY_THRESHOLD - 1, M_INDICATESIZE);
513 	static int sge_flbuf_sizes[] = {
514 		MCLBYTES,
515 #if MJUMPAGESIZE != MCLBYTES
516 		MJUMPAGESIZE,
517 		MJUMPAGESIZE - CL_METADATA_SIZE,
518 		MJUMPAGESIZE - 2 * MSIZE - CL_METADATA_SIZE,
519 #endif
520 		MJUM9BYTES,
521 		MJUM16BYTES,
522 		MCLBYTES - MSIZE - CL_METADATA_SIZE,
523 		MJUM9BYTES - CL_METADATA_SIZE,
524 		MJUM16BYTES - CL_METADATA_SIZE,
525 	};
526 
527 	KASSERT(sc->flags & MASTER_PF,
528 	    ("%s: trying to change chip settings when not master.", __func__));
529 
530 	m = V_PKTSHIFT(M_PKTSHIFT) | F_RXPKTCPLMODE | F_EGRSTATUSPAGESIZE;
531 	v = V_PKTSHIFT(fl_pktshift) | F_RXPKTCPLMODE |
532 	    V_EGRSTATUSPAGESIZE(spg_len == 128);
533 	t4_set_reg_field(sc, A_SGE_CONTROL, m, v);
534 
535 	setup_pad_and_pack_boundaries(sc);
536 
537 	v = V_HOSTPAGESIZEPF0(PAGE_SHIFT - 10) |
538 	    V_HOSTPAGESIZEPF1(PAGE_SHIFT - 10) |
539 	    V_HOSTPAGESIZEPF2(PAGE_SHIFT - 10) |
540 	    V_HOSTPAGESIZEPF3(PAGE_SHIFT - 10) |
541 	    V_HOSTPAGESIZEPF4(PAGE_SHIFT - 10) |
542 	    V_HOSTPAGESIZEPF5(PAGE_SHIFT - 10) |
543 	    V_HOSTPAGESIZEPF6(PAGE_SHIFT - 10) |
544 	    V_HOSTPAGESIZEPF7(PAGE_SHIFT - 10);
545 	t4_write_reg(sc, A_SGE_HOST_PAGE_SIZE, v);
546 
547 	KASSERT(nitems(sge_flbuf_sizes) <= SGE_FLBUF_SIZES,
548 	    ("%s: hw buffer size table too big", __func__));
549 	for (i = 0; i < min(nitems(sge_flbuf_sizes), SGE_FLBUF_SIZES); i++) {
550 		t4_write_reg(sc, A_SGE_FL_BUFFER_SIZE0 + (4 * i),
551 		    sge_flbuf_sizes[i]);
552 	}
553 
554 	v = V_THRESHOLD_0(intr_pktcount[0]) | V_THRESHOLD_1(intr_pktcount[1]) |
555 	    V_THRESHOLD_2(intr_pktcount[2]) | V_THRESHOLD_3(intr_pktcount[3]);
556 	t4_write_reg(sc, A_SGE_INGRESS_RX_THRESHOLD, v);
557 
558 	KASSERT(intr_timer[0] <= timer_max,
559 	    ("%s: not a single usable timer (%d, %d)", __func__, intr_timer[0],
560 	    timer_max));
561 	for (i = 1; i < nitems(intr_timer); i++) {
562 		KASSERT(intr_timer[i] >= intr_timer[i - 1],
563 		    ("%s: timers not listed in increasing order (%d)",
564 		    __func__, i));
565 
566 		while (intr_timer[i] > timer_max) {
567 			if (i == nitems(intr_timer) - 1) {
568 				intr_timer[i] = timer_max;
569 				break;
570 			}
571 			intr_timer[i] += intr_timer[i - 1];
572 			intr_timer[i] /= 2;
573 		}
574 	}
575 
576 	v = V_TIMERVALUE0(us_to_core_ticks(sc, intr_timer[0])) |
577 	    V_TIMERVALUE1(us_to_core_ticks(sc, intr_timer[1]));
578 	t4_write_reg(sc, A_SGE_TIMER_VALUE_0_AND_1, v);
579 	v = V_TIMERVALUE2(us_to_core_ticks(sc, intr_timer[2])) |
580 	    V_TIMERVALUE3(us_to_core_ticks(sc, intr_timer[3]));
581 	t4_write_reg(sc, A_SGE_TIMER_VALUE_2_AND_3, v);
582 	v = V_TIMERVALUE4(us_to_core_ticks(sc, intr_timer[4])) |
583 	    V_TIMERVALUE5(us_to_core_ticks(sc, intr_timer[5]));
584 	t4_write_reg(sc, A_SGE_TIMER_VALUE_4_AND_5, v);
585 
586 	/* 4K, 16K, 64K, 256K DDP "page sizes" for TDDP */
587 	v = V_HPZ0(0) | V_HPZ1(2) | V_HPZ2(4) | V_HPZ3(6);
588 	t4_write_reg(sc, A_ULP_RX_TDDP_PSZ, v);
589 
590 	/*
591 	 * 4K, 8K, 16K, 64K DDP "page sizes" for iSCSI DDP.  These have been
592 	 * chosen with MAXPHYS = 128K in mind.  The largest DDP buffer that we
593 	 * may have to deal with is MAXPHYS + 1 page.
594 	 */
595 	v = V_HPZ0(0) | V_HPZ1(1) | V_HPZ2(2) | V_HPZ3(4);
596 	t4_write_reg(sc, A_ULP_RX_ISCSI_PSZ, v);
597 
598 	/* We use multiple DDP page sizes both in plain-TOE and ISCSI modes. */
599 	m = v = F_TDDPTAGTCB | F_ISCSITAGTCB;
600 	t4_set_reg_field(sc, A_ULP_RX_CTL, m, v);
601 
602 	m = V_INDICATESIZE(M_INDICATESIZE) | F_REARMDDPOFFSET |
603 	    F_RESETDDPOFFSET;
604 	v = V_INDICATESIZE(indsz) | F_REARMDDPOFFSET | F_RESETDDPOFFSET;
605 	t4_set_reg_field(sc, A_TP_PARA_REG5, m, v);
606 }
607 
608 /*
609  * SGE wants the buffer to be at least 64B and then a multiple of 16.  If
610  * padding is in use, the buffer's start and end need to be aligned to the pad
611  * boundary as well.  We'll just make sure that the size is a multiple of the
612  * boundary here, it is up to the buffer allocation code to make sure the start
613  * of the buffer is aligned as well.
614  */
615 static inline int
616 hwsz_ok(struct adapter *sc, int hwsz)
617 {
618 	int mask = fl_pad ? sc->params.sge.pad_boundary - 1 : 16 - 1;
619 
620 	return (hwsz >= 64 && (hwsz & mask) == 0);
621 }
622 
623 /*
624  * XXX: driver really should be able to deal with unexpected settings.
625  */
626 int
627 t4_read_chip_settings(struct adapter *sc)
628 {
629 	struct sge *s = &sc->sge;
630 	struct sge_params *sp = &sc->params.sge;
631 	int i, j, n, rc = 0;
632 	uint32_t m, v, r;
633 	uint16_t indsz = min(RX_COPY_THRESHOLD - 1, M_INDICATESIZE);
634 	static int sw_buf_sizes[] = {	/* Sorted by size */
635 		MCLBYTES,
636 #if MJUMPAGESIZE != MCLBYTES
637 		MJUMPAGESIZE,
638 #endif
639 		MJUM9BYTES,
640 		MJUM16BYTES
641 	};
642 	struct sw_zone_info *swz, *safe_swz;
643 	struct hw_buf_info *hwb;
644 
645 	m = F_RXPKTCPLMODE;
646 	v = F_RXPKTCPLMODE;
647 	r = sc->params.sge.sge_control;
648 	if ((r & m) != v) {
649 		device_printf(sc->dev, "invalid SGE_CONTROL(0x%x)\n", r);
650 		rc = EINVAL;
651 	}
652 
653 	/*
654 	 * If this changes then every single use of PAGE_SHIFT in the driver
655 	 * needs to be carefully reviewed for PAGE_SHIFT vs sp->page_shift.
656 	 */
657 	if (sp->page_shift != PAGE_SHIFT) {
658 		device_printf(sc->dev, "invalid SGE_HOST_PAGE_SIZE(0x%x)\n", r);
659 		rc = EINVAL;
660 	}
661 
662 	/* Filter out unusable hw buffer sizes entirely (mark with -2). */
663 	hwb = &s->hw_buf_info[0];
664 	for (i = 0; i < nitems(s->hw_buf_info); i++, hwb++) {
665 		r = sc->params.sge.sge_fl_buffer_size[i];
666 		hwb->size = r;
667 		hwb->zidx = hwsz_ok(sc, r) ? -1 : -2;
668 		hwb->next = -1;
669 	}
670 
671 	/*
672 	 * Create a sorted list in decreasing order of hw buffer sizes (and so
673 	 * increasing order of spare area) for each software zone.
674 	 *
675 	 * If padding is enabled then the start and end of the buffer must align
676 	 * to the pad boundary; if packing is enabled then they must align with
677 	 * the pack boundary as well.  Allocations from the cluster zones are
678 	 * aligned to min(size, 4K), so the buffer starts at that alignment and
679 	 * ends at hwb->size alignment.  If mbuf inlining is allowed the
680 	 * starting alignment will be reduced to MSIZE and the driver will
681 	 * exercise appropriate caution when deciding on the best buffer layout
682 	 * to use.
683 	 */
684 	n = 0;	/* no usable buffer size to begin with */
685 	swz = &s->sw_zone_info[0];
686 	safe_swz = NULL;
687 	for (i = 0; i < SW_ZONE_SIZES; i++, swz++) {
688 		int8_t head = -1, tail = -1;
689 
690 		swz->size = sw_buf_sizes[i];
691 		swz->zone = m_getzone(swz->size);
692 		swz->type = m_gettype(swz->size);
693 
694 		if (swz->size < PAGE_SIZE) {
695 			MPASS(powerof2(swz->size));
696 			if (fl_pad && (swz->size % sp->pad_boundary != 0))
697 				continue;
698 		}
699 
700 		if (swz->size == safest_rx_cluster)
701 			safe_swz = swz;
702 
703 		hwb = &s->hw_buf_info[0];
704 		for (j = 0; j < SGE_FLBUF_SIZES; j++, hwb++) {
705 			if (hwb->zidx != -1 || hwb->size > swz->size)
706 				continue;
707 #ifdef INVARIANTS
708 			if (fl_pad)
709 				MPASS(hwb->size % sp->pad_boundary == 0);
710 #endif
711 			hwb->zidx = i;
712 			if (head == -1)
713 				head = tail = j;
714 			else if (hwb->size < s->hw_buf_info[tail].size) {
715 				s->hw_buf_info[tail].next = j;
716 				tail = j;
717 			} else {
718 				int8_t *cur;
719 				struct hw_buf_info *t;
720 
721 				for (cur = &head; *cur != -1; cur = &t->next) {
722 					t = &s->hw_buf_info[*cur];
723 					if (hwb->size == t->size) {
724 						hwb->zidx = -2;
725 						break;
726 					}
727 					if (hwb->size > t->size) {
728 						hwb->next = *cur;
729 						*cur = j;
730 						break;
731 					}
732 				}
733 			}
734 		}
735 		swz->head_hwidx = head;
736 		swz->tail_hwidx = tail;
737 
738 		if (tail != -1) {
739 			n++;
740 			if (swz->size - s->hw_buf_info[tail].size >=
741 			    CL_METADATA_SIZE)
742 				sc->flags |= BUF_PACKING_OK;
743 		}
744 	}
745 	if (n == 0) {
746 		device_printf(sc->dev, "no usable SGE FL buffer size.\n");
747 		rc = EINVAL;
748 	}
749 
750 	s->safe_hwidx1 = -1;
751 	s->safe_hwidx2 = -1;
752 	if (safe_swz != NULL) {
753 		s->safe_hwidx1 = safe_swz->head_hwidx;
754 		for (i = safe_swz->head_hwidx; i != -1; i = hwb->next) {
755 			int spare;
756 
757 			hwb = &s->hw_buf_info[i];
758 #ifdef INVARIANTS
759 			if (fl_pad)
760 				MPASS(hwb->size % sp->pad_boundary == 0);
761 #endif
762 			spare = safe_swz->size - hwb->size;
763 			if (spare >= CL_METADATA_SIZE) {
764 				s->safe_hwidx2 = i;
765 				break;
766 			}
767 		}
768 	}
769 
770 	if (sc->flags & IS_VF)
771 		return (0);
772 
773 	v = V_HPZ0(0) | V_HPZ1(2) | V_HPZ2(4) | V_HPZ3(6);
774 	r = t4_read_reg(sc, A_ULP_RX_TDDP_PSZ);
775 	if (r != v) {
776 		device_printf(sc->dev, "invalid ULP_RX_TDDP_PSZ(0x%x)\n", r);
777 		rc = EINVAL;
778 	}
779 
780 	m = v = F_TDDPTAGTCB;
781 	r = t4_read_reg(sc, A_ULP_RX_CTL);
782 	if ((r & m) != v) {
783 		device_printf(sc->dev, "invalid ULP_RX_CTL(0x%x)\n", r);
784 		rc = EINVAL;
785 	}
786 
787 	m = V_INDICATESIZE(M_INDICATESIZE) | F_REARMDDPOFFSET |
788 	    F_RESETDDPOFFSET;
789 	v = V_INDICATESIZE(indsz) | F_REARMDDPOFFSET | F_RESETDDPOFFSET;
790 	r = t4_read_reg(sc, A_TP_PARA_REG5);
791 	if ((r & m) != v) {
792 		device_printf(sc->dev, "invalid TP_PARA_REG5(0x%x)\n", r);
793 		rc = EINVAL;
794 	}
795 
796 	t4_init_tp_params(sc);
797 
798 	t4_read_mtu_tbl(sc, sc->params.mtus, NULL);
799 	t4_load_mtus(sc, sc->params.mtus, sc->params.a_wnd, sc->params.b_wnd);
800 
801 	return (rc);
802 }
803 
804 int
805 t4_create_dma_tag(struct adapter *sc)
806 {
807 	int rc;
808 
809 	rc = bus_dma_tag_create(bus_get_dma_tag(sc->dev), 1, 0,
810 	    BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, BUS_SPACE_MAXSIZE,
811 	    BUS_SPACE_UNRESTRICTED, BUS_SPACE_MAXSIZE, BUS_DMA_ALLOCNOW, NULL,
812 	    NULL, &sc->dmat);
813 	if (rc != 0) {
814 		device_printf(sc->dev,
815 		    "failed to create main DMA tag: %d\n", rc);
816 	}
817 
818 	return (rc);
819 }
820 
821 void
822 t4_sge_sysctls(struct adapter *sc, struct sysctl_ctx_list *ctx,
823     struct sysctl_oid_list *children)
824 {
825 	struct sge_params *sp = &sc->params.sge;
826 
827 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "buffer_sizes",
828 	    CTLTYPE_STRING | CTLFLAG_RD, &sc->sge, 0, sysctl_bufsizes, "A",
829 	    "freelist buffer sizes");
830 
831 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pktshift", CTLFLAG_RD,
832 	    NULL, sp->fl_pktshift, "payload DMA offset in rx buffer (bytes)");
833 
834 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pad", CTLFLAG_RD,
835 	    NULL, sp->pad_boundary, "payload pad boundary (bytes)");
836 
837 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "spg_len", CTLFLAG_RD,
838 	    NULL, sp->spg_len, "status page size (bytes)");
839 
840 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "cong_drop", CTLFLAG_RD,
841 	    NULL, cong_drop, "congestion drop setting");
842 
843 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pack", CTLFLAG_RD,
844 	    NULL, sp->pack_boundary, "payload pack boundary (bytes)");
845 }
846 
847 int
848 t4_destroy_dma_tag(struct adapter *sc)
849 {
850 	if (sc->dmat)
851 		bus_dma_tag_destroy(sc->dmat);
852 
853 	return (0);
854 }
855 
856 /*
857  * Allocate and initialize the firmware event queue and the management queue.
858  *
859  * Returns errno on failure.  Resources allocated up to that point may still be
860  * allocated.  Caller is responsible for cleanup in case this function fails.
861  */
862 int
863 t4_setup_adapter_queues(struct adapter *sc)
864 {
865 	int rc;
866 
867 	ADAPTER_LOCK_ASSERT_NOTOWNED(sc);
868 
869 	sysctl_ctx_init(&sc->ctx);
870 	sc->flags |= ADAP_SYSCTL_CTX;
871 
872 	/*
873 	 * Firmware event queue
874 	 */
875 	rc = alloc_fwq(sc);
876 	if (rc != 0)
877 		return (rc);
878 
879 	/*
880 	 * Management queue.  This is just a control queue that uses the fwq as
881 	 * its associated iq.
882 	 */
883 	if (!(sc->flags & IS_VF))
884 		rc = alloc_mgmtq(sc);
885 
886 	return (rc);
887 }
888 
889 /*
890  * Idempotent
891  */
892 int
893 t4_teardown_adapter_queues(struct adapter *sc)
894 {
895 
896 	ADAPTER_LOCK_ASSERT_NOTOWNED(sc);
897 
898 	/* Do this before freeing the queue */
899 	if (sc->flags & ADAP_SYSCTL_CTX) {
900 		sysctl_ctx_free(&sc->ctx);
901 		sc->flags &= ~ADAP_SYSCTL_CTX;
902 	}
903 
904 	free_mgmtq(sc);
905 	free_fwq(sc);
906 
907 	return (0);
908 }
909 
910 static inline int
911 first_vector(struct vi_info *vi)
912 {
913 	struct adapter *sc = vi->pi->adapter;
914 
915 	if (sc->intr_count == 1)
916 		return (0);
917 
918 	return (vi->first_intr);
919 }
920 
921 /*
922  * Given an arbitrary "index," come up with an iq that can be used by other
923  * queues (of this VI) for interrupt forwarding, SGE egress updates, etc.
924  * The iq returned is guaranteed to be something that takes direct interrupts.
925  */
926 static struct sge_iq *
927 vi_intr_iq(struct vi_info *vi, int idx)
928 {
929 	struct adapter *sc = vi->pi->adapter;
930 	struct sge *s = &sc->sge;
931 	struct sge_iq *iq = NULL;
932 	int nintr, i;
933 
934 	if (sc->intr_count == 1)
935 		return (&sc->sge.fwq);
936 
937 	nintr = vi->nintr;
938 	KASSERT(nintr != 0,
939 	    ("%s: vi %p has no exclusive interrupts, total interrupts = %d",
940 	    __func__, vi, sc->intr_count));
941 	i = idx % nintr;
942 
943 	if (vi->flags & INTR_RXQ) {
944 	       	if (i < vi->nrxq) {
945 			iq = &s->rxq[vi->first_rxq + i].iq;
946 			goto done;
947 		}
948 		i -= vi->nrxq;
949 	}
950 #ifdef TCP_OFFLOAD
951 	if (vi->flags & INTR_OFLD_RXQ) {
952 	       	if (i < vi->nofldrxq) {
953 			iq = &s->ofld_rxq[vi->first_ofld_rxq + i].iq;
954 			goto done;
955 		}
956 		i -= vi->nofldrxq;
957 	}
958 #endif
959 	panic("%s: vi %p, intr_flags 0x%lx, idx %d, total intr %d\n", __func__,
960 	    vi, vi->flags & INTR_ALL, idx, nintr);
961 done:
962 	MPASS(iq != NULL);
963 	KASSERT(iq->flags & IQ_INTR,
964 	    ("%s: iq %p (vi %p, intr_flags 0x%lx, idx %d)", __func__, iq, vi,
965 	    vi->flags & INTR_ALL, idx));
966 	return (iq);
967 }
968 
969 /* Maximum payload that can be delivered with a single iq descriptor */
970 static inline int
971 mtu_to_max_payload(struct adapter *sc, int mtu, const int toe)
972 {
973 	int payload;
974 
975 #ifdef TCP_OFFLOAD
976 	if (toe) {
977 		payload = sc->tt.rx_coalesce ?
978 		    G_RXCOALESCESIZE(t4_read_reg(sc, A_TP_PARA_REG2)) : mtu;
979 	} else {
980 #endif
981 		/* large enough even when hw VLAN extraction is disabled */
982 		payload = sc->params.sge.fl_pktshift + ETHER_HDR_LEN +
983 		    ETHER_VLAN_ENCAP_LEN + mtu;
984 #ifdef TCP_OFFLOAD
985 	}
986 #endif
987 
988 	return (payload);
989 }
990 
991 int
992 t4_setup_vi_queues(struct vi_info *vi)
993 {
994 	int rc = 0, i, j, intr_idx, iqid;
995 	struct sge_rxq *rxq;
996 	struct sge_txq *txq;
997 	struct sge_wrq *ctrlq;
998 #ifdef TCP_OFFLOAD
999 	struct sge_ofld_rxq *ofld_rxq;
1000 	struct sge_wrq *ofld_txq;
1001 #endif
1002 #ifdef DEV_NETMAP
1003 	int saved_idx;
1004 	struct sge_nm_rxq *nm_rxq;
1005 	struct sge_nm_txq *nm_txq;
1006 #endif
1007 	char name[16];
1008 	struct port_info *pi = vi->pi;
1009 	struct adapter *sc = pi->adapter;
1010 	struct ifnet *ifp = vi->ifp;
1011 	struct sysctl_oid *oid = device_get_sysctl_tree(vi->dev);
1012 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
1013 	int maxp, mtu = ifp->if_mtu;
1014 
1015 	/* Interrupt vector to start from (when using multiple vectors) */
1016 	intr_idx = first_vector(vi);
1017 
1018 #ifdef DEV_NETMAP
1019 	saved_idx = intr_idx;
1020 	if (ifp->if_capabilities & IFCAP_NETMAP) {
1021 
1022 		/* netmap is supported with direct interrupts only. */
1023 		MPASS(vi->flags & INTR_RXQ);
1024 
1025 		/*
1026 		 * We don't have buffers to back the netmap rx queues
1027 		 * right now so we create the queues in a way that
1028 		 * doesn't set off any congestion signal in the chip.
1029 		 */
1030 		oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "nm_rxq",
1031 		    CTLFLAG_RD, NULL, "rx queues");
1032 		for_each_nm_rxq(vi, i, nm_rxq) {
1033 			rc = alloc_nm_rxq(vi, nm_rxq, intr_idx, i, oid);
1034 			if (rc != 0)
1035 				goto done;
1036 			intr_idx++;
1037 		}
1038 
1039 		oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "nm_txq",
1040 		    CTLFLAG_RD, NULL, "tx queues");
1041 		for_each_nm_txq(vi, i, nm_txq) {
1042 			iqid = vi->first_nm_rxq + (i % vi->nnmrxq);
1043 			rc = alloc_nm_txq(vi, nm_txq, iqid, i, oid);
1044 			if (rc != 0)
1045 				goto done;
1046 		}
1047 	}
1048 
1049 	/* Normal rx queues and netmap rx queues share the same interrupts. */
1050 	intr_idx = saved_idx;
1051 #endif
1052 
1053 	/*
1054 	 * First pass over all NIC and TOE rx queues:
1055 	 * a) initialize iq and fl
1056 	 * b) allocate queue iff it will take direct interrupts.
1057 	 */
1058 	maxp = mtu_to_max_payload(sc, mtu, 0);
1059 	if (vi->flags & INTR_RXQ) {
1060 		oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "rxq",
1061 		    CTLFLAG_RD, NULL, "rx queues");
1062 	}
1063 	for_each_rxq(vi, i, rxq) {
1064 
1065 		init_iq(&rxq->iq, sc, vi->tmr_idx, vi->pktc_idx, vi->qsize_rxq);
1066 
1067 		snprintf(name, sizeof(name), "%s rxq%d-fl",
1068 		    device_get_nameunit(vi->dev), i);
1069 		init_fl(sc, &rxq->fl, vi->qsize_rxq / 8, maxp, name);
1070 
1071 		if (vi->flags & INTR_RXQ) {
1072 			rxq->iq.flags |= IQ_INTR;
1073 			rc = alloc_rxq(vi, rxq, intr_idx, i, oid);
1074 			if (rc != 0)
1075 				goto done;
1076 			intr_idx++;
1077 		}
1078 	}
1079 #ifdef DEV_NETMAP
1080 	if (ifp->if_capabilities & IFCAP_NETMAP)
1081 		intr_idx = saved_idx + max(vi->nrxq, vi->nnmrxq);
1082 #endif
1083 #ifdef TCP_OFFLOAD
1084 	maxp = mtu_to_max_payload(sc, mtu, 1);
1085 	if (vi->flags & INTR_OFLD_RXQ) {
1086 		oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ofld_rxq",
1087 		    CTLFLAG_RD, NULL,
1088 		    "rx queues for offloaded TCP connections");
1089 	}
1090 	for_each_ofld_rxq(vi, i, ofld_rxq) {
1091 
1092 		init_iq(&ofld_rxq->iq, sc, vi->tmr_idx, vi->pktc_idx,
1093 		    vi->qsize_rxq);
1094 
1095 		snprintf(name, sizeof(name), "%s ofld_rxq%d-fl",
1096 		    device_get_nameunit(vi->dev), i);
1097 		init_fl(sc, &ofld_rxq->fl, vi->qsize_rxq / 8, maxp, name);
1098 
1099 		if (vi->flags & INTR_OFLD_RXQ) {
1100 			ofld_rxq->iq.flags |= IQ_INTR;
1101 			rc = alloc_ofld_rxq(vi, ofld_rxq, intr_idx, i, oid);
1102 			if (rc != 0)
1103 				goto done;
1104 			intr_idx++;
1105 		}
1106 	}
1107 #endif
1108 
1109 	/*
1110 	 * Second pass over all NIC and TOE rx queues.  The queues forwarding
1111 	 * their interrupts are allocated now.
1112 	 */
1113 	j = 0;
1114 	if (!(vi->flags & INTR_RXQ)) {
1115 		oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "rxq",
1116 		    CTLFLAG_RD, NULL, "rx queues");
1117 		for_each_rxq(vi, i, rxq) {
1118 			MPASS(!(rxq->iq.flags & IQ_INTR));
1119 
1120 			intr_idx = vi_intr_iq(vi, j)->abs_id;
1121 
1122 			rc = alloc_rxq(vi, rxq, intr_idx, i, oid);
1123 			if (rc != 0)
1124 				goto done;
1125 			j++;
1126 		}
1127 	}
1128 #ifdef TCP_OFFLOAD
1129 	if (vi->nofldrxq != 0 && !(vi->flags & INTR_OFLD_RXQ)) {
1130 		oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ofld_rxq",
1131 		    CTLFLAG_RD, NULL,
1132 		    "rx queues for offloaded TCP connections");
1133 		for_each_ofld_rxq(vi, i, ofld_rxq) {
1134 			MPASS(!(ofld_rxq->iq.flags & IQ_INTR));
1135 
1136 			intr_idx = vi_intr_iq(vi, j)->abs_id;
1137 
1138 			rc = alloc_ofld_rxq(vi, ofld_rxq, intr_idx, i, oid);
1139 			if (rc != 0)
1140 				goto done;
1141 			j++;
1142 		}
1143 	}
1144 #endif
1145 
1146 	/*
1147 	 * Now the tx queues.  Only one pass needed.
1148 	 */
1149 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "txq", CTLFLAG_RD,
1150 	    NULL, "tx queues");
1151 	j = 0;
1152 	for_each_txq(vi, i, txq) {
1153 		iqid = vi_intr_iq(vi, j)->cntxt_id;
1154 		snprintf(name, sizeof(name), "%s txq%d",
1155 		    device_get_nameunit(vi->dev), i);
1156 		init_eq(sc, &txq->eq, EQ_ETH, vi->qsize_txq, pi->tx_chan, iqid,
1157 		    name);
1158 
1159 		rc = alloc_txq(vi, txq, i, oid);
1160 		if (rc != 0)
1161 			goto done;
1162 		j++;
1163 	}
1164 #ifdef TCP_OFFLOAD
1165 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ofld_txq",
1166 	    CTLFLAG_RD, NULL, "tx queues for offloaded TCP connections");
1167 	for_each_ofld_txq(vi, i, ofld_txq) {
1168 		struct sysctl_oid *oid2;
1169 
1170 		iqid = vi_intr_iq(vi, j)->cntxt_id;
1171 		snprintf(name, sizeof(name), "%s ofld_txq%d",
1172 		    device_get_nameunit(vi->dev), i);
1173 		init_eq(sc, &ofld_txq->eq, EQ_OFLD, vi->qsize_txq, pi->tx_chan,
1174 		    iqid, name);
1175 
1176 		snprintf(name, sizeof(name), "%d", i);
1177 		oid2 = SYSCTL_ADD_NODE(&vi->ctx, SYSCTL_CHILDREN(oid), OID_AUTO,
1178 		    name, CTLFLAG_RD, NULL, "offload tx queue");
1179 
1180 		rc = alloc_wrq(sc, vi, ofld_txq, oid2);
1181 		if (rc != 0)
1182 			goto done;
1183 		j++;
1184 	}
1185 #endif
1186 
1187 	/*
1188 	 * Finally, the control queue.
1189 	 */
1190 	if (!IS_MAIN_VI(vi) || sc->flags & IS_VF)
1191 		goto done;
1192 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ctrlq", CTLFLAG_RD,
1193 	    NULL, "ctrl queue");
1194 	ctrlq = &sc->sge.ctrlq[pi->port_id];
1195 	iqid = vi_intr_iq(vi, 0)->cntxt_id;
1196 	snprintf(name, sizeof(name), "%s ctrlq", device_get_nameunit(vi->dev));
1197 	init_eq(sc, &ctrlq->eq, EQ_CTRL, CTRL_EQ_QSIZE, pi->tx_chan, iqid,
1198 	    name);
1199 	rc = alloc_wrq(sc, vi, ctrlq, oid);
1200 
1201 done:
1202 	if (rc)
1203 		t4_teardown_vi_queues(vi);
1204 
1205 	return (rc);
1206 }
1207 
1208 /*
1209  * Idempotent
1210  */
1211 int
1212 t4_teardown_vi_queues(struct vi_info *vi)
1213 {
1214 	int i;
1215 	struct port_info *pi = vi->pi;
1216 	struct adapter *sc = pi->adapter;
1217 	struct sge_rxq *rxq;
1218 	struct sge_txq *txq;
1219 #ifdef TCP_OFFLOAD
1220 	struct sge_ofld_rxq *ofld_rxq;
1221 	struct sge_wrq *ofld_txq;
1222 #endif
1223 #ifdef DEV_NETMAP
1224 	struct sge_nm_rxq *nm_rxq;
1225 	struct sge_nm_txq *nm_txq;
1226 #endif
1227 
1228 	/* Do this before freeing the queues */
1229 	if (vi->flags & VI_SYSCTL_CTX) {
1230 		sysctl_ctx_free(&vi->ctx);
1231 		vi->flags &= ~VI_SYSCTL_CTX;
1232 	}
1233 
1234 #ifdef DEV_NETMAP
1235 	if (vi->ifp->if_capabilities & IFCAP_NETMAP) {
1236 		for_each_nm_txq(vi, i, nm_txq) {
1237 			free_nm_txq(vi, nm_txq);
1238 		}
1239 
1240 		for_each_nm_rxq(vi, i, nm_rxq) {
1241 			free_nm_rxq(vi, nm_rxq);
1242 		}
1243 	}
1244 #endif
1245 
1246 	/*
1247 	 * Take down all the tx queues first, as they reference the rx queues
1248 	 * (for egress updates, etc.).
1249 	 */
1250 
1251 	if (IS_MAIN_VI(vi) && !(sc->flags & IS_VF))
1252 		free_wrq(sc, &sc->sge.ctrlq[pi->port_id]);
1253 
1254 	for_each_txq(vi, i, txq) {
1255 		free_txq(vi, txq);
1256 	}
1257 #ifdef TCP_OFFLOAD
1258 	for_each_ofld_txq(vi, i, ofld_txq) {
1259 		free_wrq(sc, ofld_txq);
1260 	}
1261 #endif
1262 
1263 	/*
1264 	 * Then take down the rx queues that forward their interrupts, as they
1265 	 * reference other rx queues.
1266 	 */
1267 
1268 	for_each_rxq(vi, i, rxq) {
1269 		if ((rxq->iq.flags & IQ_INTR) == 0)
1270 			free_rxq(vi, rxq);
1271 	}
1272 #ifdef TCP_OFFLOAD
1273 	for_each_ofld_rxq(vi, i, ofld_rxq) {
1274 		if ((ofld_rxq->iq.flags & IQ_INTR) == 0)
1275 			free_ofld_rxq(vi, ofld_rxq);
1276 	}
1277 #endif
1278 
1279 	/*
1280 	 * Then take down the rx queues that take direct interrupts.
1281 	 */
1282 
1283 	for_each_rxq(vi, i, rxq) {
1284 		if (rxq->iq.flags & IQ_INTR)
1285 			free_rxq(vi, rxq);
1286 	}
1287 #ifdef TCP_OFFLOAD
1288 	for_each_ofld_rxq(vi, i, ofld_rxq) {
1289 		if (ofld_rxq->iq.flags & IQ_INTR)
1290 			free_ofld_rxq(vi, ofld_rxq);
1291 	}
1292 #endif
1293 
1294 	return (0);
1295 }
1296 
1297 /*
1298  * Deals with errors and the firmware event queue.  All data rx queues forward
1299  * their interrupt to the firmware event queue.
1300  */
1301 void
1302 t4_intr_all(void *arg)
1303 {
1304 	struct adapter *sc = arg;
1305 	struct sge_iq *fwq = &sc->sge.fwq;
1306 
1307 	t4_intr_err(arg);
1308 	if (atomic_cmpset_int(&fwq->state, IQS_IDLE, IQS_BUSY)) {
1309 		service_iq(fwq, 0);
1310 		atomic_cmpset_int(&fwq->state, IQS_BUSY, IQS_IDLE);
1311 	}
1312 }
1313 
1314 /* Deals with error interrupts */
1315 void
1316 t4_intr_err(void *arg)
1317 {
1318 	struct adapter *sc = arg;
1319 
1320 	t4_write_reg(sc, MYPF_REG(A_PCIE_PF_CLI), 0);
1321 	t4_slow_intr_handler(sc);
1322 }
1323 
1324 void
1325 t4_intr_evt(void *arg)
1326 {
1327 	struct sge_iq *iq = arg;
1328 
1329 	if (atomic_cmpset_int(&iq->state, IQS_IDLE, IQS_BUSY)) {
1330 		service_iq(iq, 0);
1331 		atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE);
1332 	}
1333 }
1334 
1335 void
1336 t4_intr(void *arg)
1337 {
1338 	struct sge_iq *iq = arg;
1339 
1340 	if (atomic_cmpset_int(&iq->state, IQS_IDLE, IQS_BUSY)) {
1341 		service_iq(iq, 0);
1342 		atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE);
1343 	}
1344 }
1345 
1346 void
1347 t4_vi_intr(void *arg)
1348 {
1349 	struct irq *irq = arg;
1350 
1351 #ifdef DEV_NETMAP
1352 	if (atomic_cmpset_int(&irq->nm_state, NM_ON, NM_BUSY)) {
1353 		t4_nm_intr(irq->nm_rxq);
1354 		atomic_cmpset_int(&irq->nm_state, NM_BUSY, NM_ON);
1355 	}
1356 #endif
1357 	if (irq->rxq != NULL)
1358 		t4_intr(irq->rxq);
1359 }
1360 
1361 /*
1362  * Deals with anything and everything on the given ingress queue.
1363  */
1364 static int
1365 service_iq(struct sge_iq *iq, int budget)
1366 {
1367 	struct sge_iq *q;
1368 	struct sge_rxq *rxq = iq_to_rxq(iq);	/* Use iff iq is part of rxq */
1369 	struct sge_fl *fl;			/* Use iff IQ_HAS_FL */
1370 	struct adapter *sc = iq->adapter;
1371 	struct iq_desc *d = &iq->desc[iq->cidx];
1372 	int ndescs = 0, limit;
1373 	int rsp_type, refill;
1374 	uint32_t lq;
1375 	uint16_t fl_hw_cidx;
1376 	struct mbuf *m0;
1377 	STAILQ_HEAD(, sge_iq) iql = STAILQ_HEAD_INITIALIZER(iql);
1378 #if defined(INET) || defined(INET6)
1379 	const struct timeval lro_timeout = {0, sc->lro_timeout};
1380 #endif
1381 
1382 	KASSERT(iq->state == IQS_BUSY, ("%s: iq %p not BUSY", __func__, iq));
1383 
1384 	limit = budget ? budget : iq->qsize / 16;
1385 
1386 	if (iq->flags & IQ_HAS_FL) {
1387 		fl = &rxq->fl;
1388 		fl_hw_cidx = fl->hw_cidx;	/* stable snapshot */
1389 	} else {
1390 		fl = NULL;
1391 		fl_hw_cidx = 0;			/* to silence gcc warning */
1392 	}
1393 
1394 	/*
1395 	 * We always come back and check the descriptor ring for new indirect
1396 	 * interrupts and other responses after running a single handler.
1397 	 */
1398 	for (;;) {
1399 		while ((d->rsp.u.type_gen & F_RSPD_GEN) == iq->gen) {
1400 
1401 			rmb();
1402 
1403 			refill = 0;
1404 			m0 = NULL;
1405 			rsp_type = G_RSPD_TYPE(d->rsp.u.type_gen);
1406 			lq = be32toh(d->rsp.pldbuflen_qid);
1407 
1408 			switch (rsp_type) {
1409 			case X_RSPD_TYPE_FLBUF:
1410 
1411 				KASSERT(iq->flags & IQ_HAS_FL,
1412 				    ("%s: data for an iq (%p) with no freelist",
1413 				    __func__, iq));
1414 
1415 				m0 = get_fl_payload(sc, fl, lq);
1416 				if (__predict_false(m0 == NULL))
1417 					goto process_iql;
1418 				refill = IDXDIFF(fl->hw_cidx, fl_hw_cidx, fl->sidx) > 2;
1419 #ifdef T4_PKT_TIMESTAMP
1420 				/*
1421 				 * 60 bit timestamp for the payload is
1422 				 * *(uint64_t *)m0->m_pktdat.  Note that it is
1423 				 * in the leading free-space in the mbuf.  The
1424 				 * kernel can clobber it during a pullup,
1425 				 * m_copymdata, etc.  You need to make sure that
1426 				 * the mbuf reaches you unmolested if you care
1427 				 * about the timestamp.
1428 				 */
1429 				*(uint64_t *)m0->m_pktdat =
1430 				    be64toh(ctrl->u.last_flit) &
1431 				    0xfffffffffffffff;
1432 #endif
1433 
1434 				/* fall through */
1435 
1436 			case X_RSPD_TYPE_CPL:
1437 				KASSERT(d->rss.opcode < NUM_CPL_CMDS,
1438 				    ("%s: bad opcode %02x.", __func__,
1439 				    d->rss.opcode));
1440 				t4_cpl_handler[d->rss.opcode](iq, &d->rss, m0);
1441 				break;
1442 
1443 			case X_RSPD_TYPE_INTR:
1444 
1445 				/*
1446 				 * Interrupts should be forwarded only to queues
1447 				 * that are not forwarding their interrupts.
1448 				 * This means service_iq can recurse but only 1
1449 				 * level deep.
1450 				 */
1451 				KASSERT(budget == 0,
1452 				    ("%s: budget %u, rsp_type %u", __func__,
1453 				    budget, rsp_type));
1454 
1455 				/*
1456 				 * There are 1K interrupt-capable queues (qids 0
1457 				 * through 1023).  A response type indicating a
1458 				 * forwarded interrupt with a qid >= 1K is an
1459 				 * iWARP async notification.
1460 				 */
1461 				if (lq >= 1024) {
1462                                         t4_an_handler(iq, &d->rsp);
1463                                         break;
1464                                 }
1465 
1466 				q = sc->sge.iqmap[lq - sc->sge.iq_start -
1467 				    sc->sge.iq_base];
1468 				if (atomic_cmpset_int(&q->state, IQS_IDLE,
1469 				    IQS_BUSY)) {
1470 					if (service_iq(q, q->qsize / 16) == 0) {
1471 						atomic_cmpset_int(&q->state,
1472 						    IQS_BUSY, IQS_IDLE);
1473 					} else {
1474 						STAILQ_INSERT_TAIL(&iql, q,
1475 						    link);
1476 					}
1477 				}
1478 				break;
1479 
1480 			default:
1481 				KASSERT(0,
1482 				    ("%s: illegal response type %d on iq %p",
1483 				    __func__, rsp_type, iq));
1484 				log(LOG_ERR,
1485 				    "%s: illegal response type %d on iq %p",
1486 				    device_get_nameunit(sc->dev), rsp_type, iq);
1487 				break;
1488 			}
1489 
1490 			d++;
1491 			if (__predict_false(++iq->cidx == iq->sidx)) {
1492 				iq->cidx = 0;
1493 				iq->gen ^= F_RSPD_GEN;
1494 				d = &iq->desc[0];
1495 			}
1496 			if (__predict_false(++ndescs == limit)) {
1497 				t4_write_reg(sc, sc->sge_gts_reg,
1498 				    V_CIDXINC(ndescs) |
1499 				    V_INGRESSQID(iq->cntxt_id) |
1500 				    V_SEINTARM(V_QINTR_TIMER_IDX(X_TIMERREG_UPDATE_CIDX)));
1501 				ndescs = 0;
1502 
1503 #if defined(INET) || defined(INET6)
1504 				if (iq->flags & IQ_LRO_ENABLED &&
1505 				    sc->lro_timeout != 0) {
1506 					tcp_lro_flush_inactive(&rxq->lro,
1507 					    &lro_timeout);
1508 				}
1509 #endif
1510 
1511 				if (budget) {
1512 					if (iq->flags & IQ_HAS_FL) {
1513 						FL_LOCK(fl);
1514 						refill_fl(sc, fl, 32);
1515 						FL_UNLOCK(fl);
1516 					}
1517 					return (EINPROGRESS);
1518 				}
1519 			}
1520 			if (refill) {
1521 				FL_LOCK(fl);
1522 				refill_fl(sc, fl, 32);
1523 				FL_UNLOCK(fl);
1524 				fl_hw_cidx = fl->hw_cidx;
1525 			}
1526 		}
1527 
1528 process_iql:
1529 		if (STAILQ_EMPTY(&iql))
1530 			break;
1531 
1532 		/*
1533 		 * Process the head only, and send it to the back of the list if
1534 		 * it's still not done.
1535 		 */
1536 		q = STAILQ_FIRST(&iql);
1537 		STAILQ_REMOVE_HEAD(&iql, link);
1538 		if (service_iq(q, q->qsize / 8) == 0)
1539 			atomic_cmpset_int(&q->state, IQS_BUSY, IQS_IDLE);
1540 		else
1541 			STAILQ_INSERT_TAIL(&iql, q, link);
1542 	}
1543 
1544 #if defined(INET) || defined(INET6)
1545 	if (iq->flags & IQ_LRO_ENABLED) {
1546 		struct lro_ctrl *lro = &rxq->lro;
1547 
1548 		tcp_lro_flush_all(lro);
1549 	}
1550 #endif
1551 
1552 	t4_write_reg(sc, sc->sge_gts_reg, V_CIDXINC(ndescs) |
1553 	    V_INGRESSQID((u32)iq->cntxt_id) | V_SEINTARM(iq->intr_params));
1554 
1555 	if (iq->flags & IQ_HAS_FL) {
1556 		int starved;
1557 
1558 		FL_LOCK(fl);
1559 		starved = refill_fl(sc, fl, 64);
1560 		FL_UNLOCK(fl);
1561 		if (__predict_false(starved != 0))
1562 			add_fl_to_sfl(sc, fl);
1563 	}
1564 
1565 	return (0);
1566 }
1567 
1568 static inline int
1569 cl_has_metadata(struct sge_fl *fl, struct cluster_layout *cll)
1570 {
1571 	int rc = fl->flags & FL_BUF_PACKING || cll->region1 > 0;
1572 
1573 	if (rc)
1574 		MPASS(cll->region3 >= CL_METADATA_SIZE);
1575 
1576 	return (rc);
1577 }
1578 
1579 static inline struct cluster_metadata *
1580 cl_metadata(struct adapter *sc, struct sge_fl *fl, struct cluster_layout *cll,
1581     caddr_t cl)
1582 {
1583 
1584 	if (cl_has_metadata(fl, cll)) {
1585 		struct sw_zone_info *swz = &sc->sge.sw_zone_info[cll->zidx];
1586 
1587 		return ((struct cluster_metadata *)(cl + swz->size) - 1);
1588 	}
1589 	return (NULL);
1590 }
1591 
1592 static void
1593 rxb_free(struct mbuf *m, void *arg1, void *arg2)
1594 {
1595 	uma_zone_t zone = arg1;
1596 	caddr_t cl = arg2;
1597 
1598 	uma_zfree(zone, cl);
1599 	counter_u64_add(extfree_rels, 1);
1600 }
1601 
1602 /*
1603  * The mbuf returned by this function could be allocated from zone_mbuf or
1604  * constructed in spare room in the cluster.
1605  *
1606  * The mbuf carries the payload in one of these ways
1607  * a) frame inside the mbuf (mbuf from zone_mbuf)
1608  * b) m_cljset (for clusters without metadata) zone_mbuf
1609  * c) m_extaddref (cluster with metadata) inline mbuf
1610  * d) m_extaddref (cluster with metadata) zone_mbuf
1611  */
1612 static struct mbuf *
1613 get_scatter_segment(struct adapter *sc, struct sge_fl *fl, int fr_offset,
1614     int remaining)
1615 {
1616 	struct mbuf *m;
1617 	struct fl_sdesc *sd = &fl->sdesc[fl->cidx];
1618 	struct cluster_layout *cll = &sd->cll;
1619 	struct sw_zone_info *swz = &sc->sge.sw_zone_info[cll->zidx];
1620 	struct hw_buf_info *hwb = &sc->sge.hw_buf_info[cll->hwidx];
1621 	struct cluster_metadata *clm = cl_metadata(sc, fl, cll, sd->cl);
1622 	int len, blen;
1623 	caddr_t payload;
1624 
1625 	blen = hwb->size - fl->rx_offset;	/* max possible in this buf */
1626 	len = min(remaining, blen);
1627 	payload = sd->cl + cll->region1 + fl->rx_offset;
1628 	if (fl->flags & FL_BUF_PACKING) {
1629 		const u_int l = fr_offset + len;
1630 		const u_int pad = roundup2(l, fl->buf_boundary) - l;
1631 
1632 		if (fl->rx_offset + len + pad < hwb->size)
1633 			blen = len + pad;
1634 		MPASS(fl->rx_offset + blen <= hwb->size);
1635 	} else {
1636 		MPASS(fl->rx_offset == 0);	/* not packing */
1637 	}
1638 
1639 
1640 	if (sc->sc_do_rxcopy && len < RX_COPY_THRESHOLD) {
1641 
1642 		/*
1643 		 * Copy payload into a freshly allocated mbuf.
1644 		 */
1645 
1646 		m = fr_offset == 0 ?
1647 		    m_gethdr(M_NOWAIT, MT_DATA) : m_get(M_NOWAIT, MT_DATA);
1648 		if (m == NULL)
1649 			return (NULL);
1650 		fl->mbuf_allocated++;
1651 #ifdef T4_PKT_TIMESTAMP
1652 		/* Leave room for a timestamp */
1653 		m->m_data += 8;
1654 #endif
1655 		/* copy data to mbuf */
1656 		bcopy(payload, mtod(m, caddr_t), len);
1657 
1658 	} else if (sd->nmbuf * MSIZE < cll->region1) {
1659 
1660 		/*
1661 		 * There's spare room in the cluster for an mbuf.  Create one
1662 		 * and associate it with the payload that's in the cluster.
1663 		 */
1664 
1665 		MPASS(clm != NULL);
1666 		m = (struct mbuf *)(sd->cl + sd->nmbuf * MSIZE);
1667 		/* No bzero required */
1668 		if (m_init(m, M_NOWAIT, MT_DATA,
1669 		    fr_offset == 0 ? M_PKTHDR | M_NOFREE : M_NOFREE))
1670 			return (NULL);
1671 		fl->mbuf_inlined++;
1672 		m_extaddref(m, payload, blen, &clm->refcount, rxb_free,
1673 		    swz->zone, sd->cl);
1674 		if (sd->nmbuf++ == 0)
1675 			counter_u64_add(extfree_refs, 1);
1676 
1677 	} else {
1678 
1679 		/*
1680 		 * Grab an mbuf from zone_mbuf and associate it with the
1681 		 * payload in the cluster.
1682 		 */
1683 
1684 		m = fr_offset == 0 ?
1685 		    m_gethdr(M_NOWAIT, MT_DATA) : m_get(M_NOWAIT, MT_DATA);
1686 		if (m == NULL)
1687 			return (NULL);
1688 		fl->mbuf_allocated++;
1689 		if (clm != NULL) {
1690 			m_extaddref(m, payload, blen, &clm->refcount,
1691 			    rxb_free, swz->zone, sd->cl);
1692 			if (sd->nmbuf++ == 0)
1693 				counter_u64_add(extfree_refs, 1);
1694 		} else {
1695 			m_cljset(m, sd->cl, swz->type);
1696 			sd->cl = NULL;	/* consumed, not a recycle candidate */
1697 		}
1698 	}
1699 	if (fr_offset == 0)
1700 		m->m_pkthdr.len = remaining;
1701 	m->m_len = len;
1702 
1703 	if (fl->flags & FL_BUF_PACKING) {
1704 		fl->rx_offset += blen;
1705 		MPASS(fl->rx_offset <= hwb->size);
1706 		if (fl->rx_offset < hwb->size)
1707 			return (m);	/* without advancing the cidx */
1708 	}
1709 
1710 	if (__predict_false(++fl->cidx % 8 == 0)) {
1711 		uint16_t cidx = fl->cidx / 8;
1712 
1713 		if (__predict_false(cidx == fl->sidx))
1714 			fl->cidx = cidx = 0;
1715 		fl->hw_cidx = cidx;
1716 	}
1717 	fl->rx_offset = 0;
1718 
1719 	return (m);
1720 }
1721 
1722 static struct mbuf *
1723 get_fl_payload(struct adapter *sc, struct sge_fl *fl, uint32_t len_newbuf)
1724 {
1725 	struct mbuf *m0, *m, **pnext;
1726 	u_int remaining;
1727 	const u_int total = G_RSPD_LEN(len_newbuf);
1728 
1729 	if (__predict_false(fl->flags & FL_BUF_RESUME)) {
1730 		M_ASSERTPKTHDR(fl->m0);
1731 		MPASS(fl->m0->m_pkthdr.len == total);
1732 		MPASS(fl->remaining < total);
1733 
1734 		m0 = fl->m0;
1735 		pnext = fl->pnext;
1736 		remaining = fl->remaining;
1737 		fl->flags &= ~FL_BUF_RESUME;
1738 		goto get_segment;
1739 	}
1740 
1741 	if (fl->rx_offset > 0 && len_newbuf & F_RSPD_NEWBUF) {
1742 		fl->rx_offset = 0;
1743 		if (__predict_false(++fl->cidx % 8 == 0)) {
1744 			uint16_t cidx = fl->cidx / 8;
1745 
1746 			if (__predict_false(cidx == fl->sidx))
1747 				fl->cidx = cidx = 0;
1748 			fl->hw_cidx = cidx;
1749 		}
1750 	}
1751 
1752 	/*
1753 	 * Payload starts at rx_offset in the current hw buffer.  Its length is
1754 	 * 'len' and it may span multiple hw buffers.
1755 	 */
1756 
1757 	m0 = get_scatter_segment(sc, fl, 0, total);
1758 	if (m0 == NULL)
1759 		return (NULL);
1760 	remaining = total - m0->m_len;
1761 	pnext = &m0->m_next;
1762 	while (remaining > 0) {
1763 get_segment:
1764 		MPASS(fl->rx_offset == 0);
1765 		m = get_scatter_segment(sc, fl, total - remaining, remaining);
1766 		if (__predict_false(m == NULL)) {
1767 			fl->m0 = m0;
1768 			fl->pnext = pnext;
1769 			fl->remaining = remaining;
1770 			fl->flags |= FL_BUF_RESUME;
1771 			return (NULL);
1772 		}
1773 		*pnext = m;
1774 		pnext = &m->m_next;
1775 		remaining -= m->m_len;
1776 	}
1777 	*pnext = NULL;
1778 
1779 	M_ASSERTPKTHDR(m0);
1780 	return (m0);
1781 }
1782 
1783 static int
1784 t4_eth_rx(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m0)
1785 {
1786 	struct sge_rxq *rxq = iq_to_rxq(iq);
1787 	struct ifnet *ifp = rxq->ifp;
1788 	struct adapter *sc = iq->adapter;
1789 	const struct cpl_rx_pkt *cpl = (const void *)(rss + 1);
1790 #if defined(INET) || defined(INET6)
1791 	struct lro_ctrl *lro = &rxq->lro;
1792 #endif
1793 	static const int sw_hashtype[4][2] = {
1794 		{M_HASHTYPE_NONE, M_HASHTYPE_NONE},
1795 		{M_HASHTYPE_RSS_IPV4, M_HASHTYPE_RSS_IPV6},
1796 		{M_HASHTYPE_RSS_TCP_IPV4, M_HASHTYPE_RSS_TCP_IPV6},
1797 		{M_HASHTYPE_RSS_UDP_IPV4, M_HASHTYPE_RSS_UDP_IPV6},
1798 	};
1799 
1800 	KASSERT(m0 != NULL, ("%s: no payload with opcode %02x", __func__,
1801 	    rss->opcode));
1802 
1803 	m0->m_pkthdr.len -= sc->params.sge.fl_pktshift;
1804 	m0->m_len -= sc->params.sge.fl_pktshift;
1805 	m0->m_data += sc->params.sge.fl_pktshift;
1806 
1807 	m0->m_pkthdr.rcvif = ifp;
1808 	M_HASHTYPE_SET(m0, sw_hashtype[rss->hash_type][rss->ipv6]);
1809 	m0->m_pkthdr.flowid = be32toh(rss->hash_val);
1810 
1811 	if (cpl->csum_calc && !(cpl->err_vec & sc->params.tp.err_vec_mask)) {
1812 		if (ifp->if_capenable & IFCAP_RXCSUM &&
1813 		    cpl->l2info & htobe32(F_RXF_IP)) {
1814 			m0->m_pkthdr.csum_flags = (CSUM_IP_CHECKED |
1815 			    CSUM_IP_VALID | CSUM_DATA_VALID | CSUM_PSEUDO_HDR);
1816 			rxq->rxcsum++;
1817 		} else if (ifp->if_capenable & IFCAP_RXCSUM_IPV6 &&
1818 		    cpl->l2info & htobe32(F_RXF_IP6)) {
1819 			m0->m_pkthdr.csum_flags = (CSUM_DATA_VALID_IPV6 |
1820 			    CSUM_PSEUDO_HDR);
1821 			rxq->rxcsum++;
1822 		}
1823 
1824 		if (__predict_false(cpl->ip_frag))
1825 			m0->m_pkthdr.csum_data = be16toh(cpl->csum);
1826 		else
1827 			m0->m_pkthdr.csum_data = 0xffff;
1828 	}
1829 
1830 	if (cpl->vlan_ex) {
1831 		m0->m_pkthdr.ether_vtag = be16toh(cpl->vlan);
1832 		m0->m_flags |= M_VLANTAG;
1833 		rxq->vlan_extraction++;
1834 	}
1835 
1836 #if defined(INET) || defined(INET6)
1837 	if (iq->flags & IQ_LRO_ENABLED &&
1838 	    tcp_lro_rx(lro, m0, 0) == 0) {
1839 		/* queued for LRO */
1840 	} else
1841 #endif
1842 	ifp->if_input(ifp, m0);
1843 
1844 	return (0);
1845 }
1846 
1847 /*
1848  * Must drain the wrq or make sure that someone else will.
1849  */
1850 static void
1851 wrq_tx_drain(void *arg, int n)
1852 {
1853 	struct sge_wrq *wrq = arg;
1854 	struct sge_eq *eq = &wrq->eq;
1855 
1856 	EQ_LOCK(eq);
1857 	if (TAILQ_EMPTY(&wrq->incomplete_wrs) && !STAILQ_EMPTY(&wrq->wr_list))
1858 		drain_wrq_wr_list(wrq->adapter, wrq);
1859 	EQ_UNLOCK(eq);
1860 }
1861 
1862 static void
1863 drain_wrq_wr_list(struct adapter *sc, struct sge_wrq *wrq)
1864 {
1865 	struct sge_eq *eq = &wrq->eq;
1866 	u_int available, dbdiff;	/* # of hardware descriptors */
1867 	u_int n;
1868 	struct wrqe *wr;
1869 	struct fw_eth_tx_pkt_wr *dst;	/* any fw WR struct will do */
1870 
1871 	EQ_LOCK_ASSERT_OWNED(eq);
1872 	MPASS(TAILQ_EMPTY(&wrq->incomplete_wrs));
1873 	wr = STAILQ_FIRST(&wrq->wr_list);
1874 	MPASS(wr != NULL);	/* Must be called with something useful to do */
1875 	MPASS(eq->pidx == eq->dbidx);
1876 	dbdiff = 0;
1877 
1878 	do {
1879 		eq->cidx = read_hw_cidx(eq);
1880 		if (eq->pidx == eq->cidx)
1881 			available = eq->sidx - 1;
1882 		else
1883 			available = IDXDIFF(eq->cidx, eq->pidx, eq->sidx) - 1;
1884 
1885 		MPASS(wr->wrq == wrq);
1886 		n = howmany(wr->wr_len, EQ_ESIZE);
1887 		if (available < n)
1888 			break;
1889 
1890 		dst = (void *)&eq->desc[eq->pidx];
1891 		if (__predict_true(eq->sidx - eq->pidx > n)) {
1892 			/* Won't wrap, won't end exactly at the status page. */
1893 			bcopy(&wr->wr[0], dst, wr->wr_len);
1894 			eq->pidx += n;
1895 		} else {
1896 			int first_portion = (eq->sidx - eq->pidx) * EQ_ESIZE;
1897 
1898 			bcopy(&wr->wr[0], dst, first_portion);
1899 			if (wr->wr_len > first_portion) {
1900 				bcopy(&wr->wr[first_portion], &eq->desc[0],
1901 				    wr->wr_len - first_portion);
1902 			}
1903 			eq->pidx = n - (eq->sidx - eq->pidx);
1904 		}
1905 		wrq->tx_wrs_copied++;
1906 
1907 		if (available < eq->sidx / 4 &&
1908 		    atomic_cmpset_int(&eq->equiq, 0, 1)) {
1909 			dst->equiq_to_len16 |= htobe32(F_FW_WR_EQUIQ |
1910 			    F_FW_WR_EQUEQ);
1911 			eq->equeqidx = eq->pidx;
1912 		} else if (IDXDIFF(eq->pidx, eq->equeqidx, eq->sidx) >= 32) {
1913 			dst->equiq_to_len16 |= htobe32(F_FW_WR_EQUEQ);
1914 			eq->equeqidx = eq->pidx;
1915 		}
1916 
1917 		dbdiff += n;
1918 		if (dbdiff >= 16) {
1919 			ring_eq_db(sc, eq, dbdiff);
1920 			dbdiff = 0;
1921 		}
1922 
1923 		STAILQ_REMOVE_HEAD(&wrq->wr_list, link);
1924 		free_wrqe(wr);
1925 		MPASS(wrq->nwr_pending > 0);
1926 		wrq->nwr_pending--;
1927 		MPASS(wrq->ndesc_needed >= n);
1928 		wrq->ndesc_needed -= n;
1929 	} while ((wr = STAILQ_FIRST(&wrq->wr_list)) != NULL);
1930 
1931 	if (dbdiff)
1932 		ring_eq_db(sc, eq, dbdiff);
1933 }
1934 
1935 /*
1936  * Doesn't fail.  Holds on to work requests it can't send right away.
1937  */
1938 void
1939 t4_wrq_tx_locked(struct adapter *sc, struct sge_wrq *wrq, struct wrqe *wr)
1940 {
1941 #ifdef INVARIANTS
1942 	struct sge_eq *eq = &wrq->eq;
1943 #endif
1944 
1945 	EQ_LOCK_ASSERT_OWNED(eq);
1946 	MPASS(wr != NULL);
1947 	MPASS(wr->wr_len > 0 && wr->wr_len <= SGE_MAX_WR_LEN);
1948 	MPASS((wr->wr_len & 0x7) == 0);
1949 
1950 	STAILQ_INSERT_TAIL(&wrq->wr_list, wr, link);
1951 	wrq->nwr_pending++;
1952 	wrq->ndesc_needed += howmany(wr->wr_len, EQ_ESIZE);
1953 
1954 	if (!TAILQ_EMPTY(&wrq->incomplete_wrs))
1955 		return;	/* commit_wrq_wr will drain wr_list as well. */
1956 
1957 	drain_wrq_wr_list(sc, wrq);
1958 
1959 	/* Doorbell must have caught up to the pidx. */
1960 	MPASS(eq->pidx == eq->dbidx);
1961 }
1962 
1963 void
1964 t4_update_fl_bufsize(struct ifnet *ifp)
1965 {
1966 	struct vi_info *vi = ifp->if_softc;
1967 	struct adapter *sc = vi->pi->adapter;
1968 	struct sge_rxq *rxq;
1969 #ifdef TCP_OFFLOAD
1970 	struct sge_ofld_rxq *ofld_rxq;
1971 #endif
1972 	struct sge_fl *fl;
1973 	int i, maxp, mtu = ifp->if_mtu;
1974 
1975 	maxp = mtu_to_max_payload(sc, mtu, 0);
1976 	for_each_rxq(vi, i, rxq) {
1977 		fl = &rxq->fl;
1978 
1979 		FL_LOCK(fl);
1980 		find_best_refill_source(sc, fl, maxp);
1981 		FL_UNLOCK(fl);
1982 	}
1983 #ifdef TCP_OFFLOAD
1984 	maxp = mtu_to_max_payload(sc, mtu, 1);
1985 	for_each_ofld_rxq(vi, i, ofld_rxq) {
1986 		fl = &ofld_rxq->fl;
1987 
1988 		FL_LOCK(fl);
1989 		find_best_refill_source(sc, fl, maxp);
1990 		FL_UNLOCK(fl);
1991 	}
1992 #endif
1993 }
1994 
1995 static inline int
1996 mbuf_nsegs(struct mbuf *m)
1997 {
1998 
1999 	M_ASSERTPKTHDR(m);
2000 	KASSERT(m->m_pkthdr.l5hlen > 0,
2001 	    ("%s: mbuf %p missing information on # of segments.", __func__, m));
2002 
2003 	return (m->m_pkthdr.l5hlen);
2004 }
2005 
2006 static inline void
2007 set_mbuf_nsegs(struct mbuf *m, uint8_t nsegs)
2008 {
2009 
2010 	M_ASSERTPKTHDR(m);
2011 	m->m_pkthdr.l5hlen = nsegs;
2012 }
2013 
2014 static inline int
2015 mbuf_len16(struct mbuf *m)
2016 {
2017 	int n;
2018 
2019 	M_ASSERTPKTHDR(m);
2020 	n = m->m_pkthdr.PH_loc.eight[0];
2021 	MPASS(n > 0 && n <= SGE_MAX_WR_LEN / 16);
2022 
2023 	return (n);
2024 }
2025 
2026 static inline void
2027 set_mbuf_len16(struct mbuf *m, uint8_t len16)
2028 {
2029 
2030 	M_ASSERTPKTHDR(m);
2031 	m->m_pkthdr.PH_loc.eight[0] = len16;
2032 }
2033 
2034 static inline int
2035 needs_tso(struct mbuf *m)
2036 {
2037 
2038 	M_ASSERTPKTHDR(m);
2039 
2040 	if (m->m_pkthdr.csum_flags & CSUM_TSO) {
2041 		KASSERT(m->m_pkthdr.tso_segsz > 0,
2042 		    ("%s: TSO requested in mbuf %p but MSS not provided",
2043 		    __func__, m));
2044 		return (1);
2045 	}
2046 
2047 	return (0);
2048 }
2049 
2050 static inline int
2051 needs_l3_csum(struct mbuf *m)
2052 {
2053 
2054 	M_ASSERTPKTHDR(m);
2055 
2056 	if (m->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TSO))
2057 		return (1);
2058 	return (0);
2059 }
2060 
2061 static inline int
2062 needs_l4_csum(struct mbuf *m)
2063 {
2064 
2065 	M_ASSERTPKTHDR(m);
2066 
2067 	if (m->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP | CSUM_UDP_IPV6 |
2068 	    CSUM_TCP_IPV6 | CSUM_TSO))
2069 		return (1);
2070 	return (0);
2071 }
2072 
2073 static inline int
2074 needs_vlan_insertion(struct mbuf *m)
2075 {
2076 
2077 	M_ASSERTPKTHDR(m);
2078 
2079 	if (m->m_flags & M_VLANTAG) {
2080 		KASSERT(m->m_pkthdr.ether_vtag != 0,
2081 		    ("%s: HWVLAN requested in mbuf %p but tag not provided",
2082 		    __func__, m));
2083 		return (1);
2084 	}
2085 	return (0);
2086 }
2087 
2088 static void *
2089 m_advance(struct mbuf **pm, int *poffset, int len)
2090 {
2091 	struct mbuf *m = *pm;
2092 	int offset = *poffset;
2093 	uintptr_t p = 0;
2094 
2095 	MPASS(len > 0);
2096 
2097 	for (;;) {
2098 		if (offset + len < m->m_len) {
2099 			offset += len;
2100 			p = mtod(m, uintptr_t) + offset;
2101 			break;
2102 		}
2103 		len -= m->m_len - offset;
2104 		m = m->m_next;
2105 		offset = 0;
2106 		MPASS(m != NULL);
2107 	}
2108 	*poffset = offset;
2109 	*pm = m;
2110 	return ((void *)p);
2111 }
2112 
2113 /*
2114  * Can deal with empty mbufs in the chain that have m_len = 0, but the chain
2115  * must have at least one mbuf that's not empty.
2116  */
2117 static inline int
2118 count_mbuf_nsegs(struct mbuf *m)
2119 {
2120 	vm_paddr_t lastb, next;
2121 	vm_offset_t va;
2122 	int len, nsegs;
2123 
2124 	MPASS(m != NULL);
2125 
2126 	nsegs = 0;
2127 	lastb = 0;
2128 	for (; m; m = m->m_next) {
2129 
2130 		len = m->m_len;
2131 		if (__predict_false(len == 0))
2132 			continue;
2133 		va = mtod(m, vm_offset_t);
2134 		next = pmap_kextract(va);
2135 		nsegs += sglist_count(m->m_data, len);
2136 		if (lastb + 1 == next)
2137 			nsegs--;
2138 		lastb = pmap_kextract(va + len - 1);
2139 	}
2140 
2141 	MPASS(nsegs > 0);
2142 	return (nsegs);
2143 }
2144 
2145 /*
2146  * Analyze the mbuf to determine its tx needs.  The mbuf passed in may change:
2147  * a) caller can assume it's been freed if this function returns with an error.
2148  * b) it may get defragged up if the gather list is too long for the hardware.
2149  */
2150 int
2151 parse_pkt(struct adapter *sc, struct mbuf **mp)
2152 {
2153 	struct mbuf *m0 = *mp, *m;
2154 	int rc, nsegs, defragged = 0, offset;
2155 	struct ether_header *eh;
2156 	void *l3hdr;
2157 #if defined(INET) || defined(INET6)
2158 	struct tcphdr *tcp;
2159 #endif
2160 	uint16_t eh_type;
2161 
2162 	M_ASSERTPKTHDR(m0);
2163 	if (__predict_false(m0->m_pkthdr.len < ETHER_HDR_LEN)) {
2164 		rc = EINVAL;
2165 fail:
2166 		m_freem(m0);
2167 		*mp = NULL;
2168 		return (rc);
2169 	}
2170 restart:
2171 	/*
2172 	 * First count the number of gather list segments in the payload.
2173 	 * Defrag the mbuf if nsegs exceeds the hardware limit.
2174 	 */
2175 	M_ASSERTPKTHDR(m0);
2176 	MPASS(m0->m_pkthdr.len > 0);
2177 	nsegs = count_mbuf_nsegs(m0);
2178 	if (nsegs > (needs_tso(m0) ? TX_SGL_SEGS_TSO : TX_SGL_SEGS)) {
2179 		if (defragged++ > 0 || (m = m_defrag(m0, M_NOWAIT)) == NULL) {
2180 			rc = EFBIG;
2181 			goto fail;
2182 		}
2183 		*mp = m0 = m;	/* update caller's copy after defrag */
2184 		goto restart;
2185 	}
2186 
2187 	if (__predict_false(nsegs > 2 && m0->m_pkthdr.len <= MHLEN)) {
2188 		m0 = m_pullup(m0, m0->m_pkthdr.len);
2189 		if (m0 == NULL) {
2190 			/* Should have left well enough alone. */
2191 			rc = EFBIG;
2192 			goto fail;
2193 		}
2194 		*mp = m0;	/* update caller's copy after pullup */
2195 		goto restart;
2196 	}
2197 	set_mbuf_nsegs(m0, nsegs);
2198 	if (sc->flags & IS_VF)
2199 		set_mbuf_len16(m0, txpkt_vm_len16(nsegs, needs_tso(m0)));
2200 	else
2201 		set_mbuf_len16(m0, txpkt_len16(nsegs, needs_tso(m0)));
2202 
2203 	if (!needs_tso(m0) &&
2204 	    !(sc->flags & IS_VF && (needs_l3_csum(m0) || needs_l4_csum(m0))))
2205 		return (0);
2206 
2207 	m = m0;
2208 	eh = mtod(m, struct ether_header *);
2209 	eh_type = ntohs(eh->ether_type);
2210 	if (eh_type == ETHERTYPE_VLAN) {
2211 		struct ether_vlan_header *evh = (void *)eh;
2212 
2213 		eh_type = ntohs(evh->evl_proto);
2214 		m0->m_pkthdr.l2hlen = sizeof(*evh);
2215 	} else
2216 		m0->m_pkthdr.l2hlen = sizeof(*eh);
2217 
2218 	offset = 0;
2219 	l3hdr = m_advance(&m, &offset, m0->m_pkthdr.l2hlen);
2220 
2221 	switch (eh_type) {
2222 #ifdef INET6
2223 	case ETHERTYPE_IPV6:
2224 	{
2225 		struct ip6_hdr *ip6 = l3hdr;
2226 
2227 		MPASS(!needs_tso(m0) || ip6->ip6_nxt == IPPROTO_TCP);
2228 
2229 		m0->m_pkthdr.l3hlen = sizeof(*ip6);
2230 		break;
2231 	}
2232 #endif
2233 #ifdef INET
2234 	case ETHERTYPE_IP:
2235 	{
2236 		struct ip *ip = l3hdr;
2237 
2238 		m0->m_pkthdr.l3hlen = ip->ip_hl * 4;
2239 		break;
2240 	}
2241 #endif
2242 	default:
2243 		panic("%s: ethertype 0x%04x unknown.  if_cxgbe must be compiled"
2244 		    " with the same INET/INET6 options as the kernel.",
2245 		    __func__, eh_type);
2246 	}
2247 
2248 #if defined(INET) || defined(INET6)
2249 	if (needs_tso(m0)) {
2250 		tcp = m_advance(&m, &offset, m0->m_pkthdr.l3hlen);
2251 		m0->m_pkthdr.l4hlen = tcp->th_off * 4;
2252 	}
2253 #endif
2254 	MPASS(m0 == *mp);
2255 	return (0);
2256 }
2257 
2258 void *
2259 start_wrq_wr(struct sge_wrq *wrq, int len16, struct wrq_cookie *cookie)
2260 {
2261 	struct sge_eq *eq = &wrq->eq;
2262 	struct adapter *sc = wrq->adapter;
2263 	int ndesc, available;
2264 	struct wrqe *wr;
2265 	void *w;
2266 
2267 	MPASS(len16 > 0);
2268 	ndesc = howmany(len16, EQ_ESIZE / 16);
2269 	MPASS(ndesc > 0 && ndesc <= SGE_MAX_WR_NDESC);
2270 
2271 	EQ_LOCK(eq);
2272 
2273 	if (!STAILQ_EMPTY(&wrq->wr_list))
2274 		drain_wrq_wr_list(sc, wrq);
2275 
2276 	if (!STAILQ_EMPTY(&wrq->wr_list)) {
2277 slowpath:
2278 		EQ_UNLOCK(eq);
2279 		wr = alloc_wrqe(len16 * 16, wrq);
2280 		if (__predict_false(wr == NULL))
2281 			return (NULL);
2282 		cookie->pidx = -1;
2283 		cookie->ndesc = ndesc;
2284 		return (&wr->wr);
2285 	}
2286 
2287 	eq->cidx = read_hw_cidx(eq);
2288 	if (eq->pidx == eq->cidx)
2289 		available = eq->sidx - 1;
2290 	else
2291 		available = IDXDIFF(eq->cidx, eq->pidx, eq->sidx) - 1;
2292 	if (available < ndesc)
2293 		goto slowpath;
2294 
2295 	cookie->pidx = eq->pidx;
2296 	cookie->ndesc = ndesc;
2297 	TAILQ_INSERT_TAIL(&wrq->incomplete_wrs, cookie, link);
2298 
2299 	w = &eq->desc[eq->pidx];
2300 	IDXINCR(eq->pidx, ndesc, eq->sidx);
2301 	if (__predict_false(cookie->pidx + ndesc > eq->sidx)) {
2302 		w = &wrq->ss[0];
2303 		wrq->ss_pidx = cookie->pidx;
2304 		wrq->ss_len = len16 * 16;
2305 	}
2306 
2307 	EQ_UNLOCK(eq);
2308 
2309 	return (w);
2310 }
2311 
2312 void
2313 commit_wrq_wr(struct sge_wrq *wrq, void *w, struct wrq_cookie *cookie)
2314 {
2315 	struct sge_eq *eq = &wrq->eq;
2316 	struct adapter *sc = wrq->adapter;
2317 	int ndesc, pidx;
2318 	struct wrq_cookie *prev, *next;
2319 
2320 	if (cookie->pidx == -1) {
2321 		struct wrqe *wr = __containerof(w, struct wrqe, wr);
2322 
2323 		t4_wrq_tx(sc, wr);
2324 		return;
2325 	}
2326 
2327 	ndesc = cookie->ndesc;	/* Can be more than SGE_MAX_WR_NDESC here. */
2328 	pidx = cookie->pidx;
2329 	MPASS(pidx >= 0 && pidx < eq->sidx);
2330 	if (__predict_false(w == &wrq->ss[0])) {
2331 		int n = (eq->sidx - wrq->ss_pidx) * EQ_ESIZE;
2332 
2333 		MPASS(wrq->ss_len > n);	/* WR had better wrap around. */
2334 		bcopy(&wrq->ss[0], &eq->desc[wrq->ss_pidx], n);
2335 		bcopy(&wrq->ss[n], &eq->desc[0], wrq->ss_len - n);
2336 		wrq->tx_wrs_ss++;
2337 	} else
2338 		wrq->tx_wrs_direct++;
2339 
2340 	EQ_LOCK(eq);
2341 	prev = TAILQ_PREV(cookie, wrq_incomplete_wrs, link);
2342 	next = TAILQ_NEXT(cookie, link);
2343 	if (prev == NULL) {
2344 		MPASS(pidx == eq->dbidx);
2345 		if (next == NULL || ndesc >= 16)
2346 			ring_eq_db(wrq->adapter, eq, ndesc);
2347 		else {
2348 			MPASS(IDXDIFF(next->pidx, pidx, eq->sidx) == ndesc);
2349 			next->pidx = pidx;
2350 			next->ndesc += ndesc;
2351 		}
2352 	} else {
2353 		MPASS(IDXDIFF(pidx, prev->pidx, eq->sidx) == prev->ndesc);
2354 		prev->ndesc += ndesc;
2355 	}
2356 	TAILQ_REMOVE(&wrq->incomplete_wrs, cookie, link);
2357 
2358 	if (TAILQ_EMPTY(&wrq->incomplete_wrs) && !STAILQ_EMPTY(&wrq->wr_list))
2359 		drain_wrq_wr_list(sc, wrq);
2360 
2361 #ifdef INVARIANTS
2362 	if (TAILQ_EMPTY(&wrq->incomplete_wrs)) {
2363 		/* Doorbell must have caught up to the pidx. */
2364 		MPASS(wrq->eq.pidx == wrq->eq.dbidx);
2365 	}
2366 #endif
2367 	EQ_UNLOCK(eq);
2368 }
2369 
2370 static u_int
2371 can_resume_eth_tx(struct mp_ring *r)
2372 {
2373 	struct sge_eq *eq = r->cookie;
2374 
2375 	return (total_available_tx_desc(eq) > eq->sidx / 8);
2376 }
2377 
2378 static inline int
2379 cannot_use_txpkts(struct mbuf *m)
2380 {
2381 	/* maybe put a GL limit too, to avoid silliness? */
2382 
2383 	return (needs_tso(m));
2384 }
2385 
2386 /*
2387  * r->items[cidx] to r->items[pidx], with a wraparound at r->size, are ready to
2388  * be consumed.  Return the actual number consumed.  0 indicates a stall.
2389  */
2390 static u_int
2391 eth_tx(struct mp_ring *r, u_int cidx, u_int pidx)
2392 {
2393 	struct sge_txq *txq = r->cookie;
2394 	struct sge_eq *eq = &txq->eq;
2395 	struct ifnet *ifp = txq->ifp;
2396 	struct vi_info *vi = ifp->if_softc;
2397 	struct port_info *pi = vi->pi;
2398 	struct adapter *sc = pi->adapter;
2399 	u_int total, remaining;		/* # of packets */
2400 	u_int available, dbdiff;	/* # of hardware descriptors */
2401 	u_int n, next_cidx;
2402 	struct mbuf *m0, *tail;
2403 	struct txpkts txp;
2404 	struct fw_eth_tx_pkts_wr *wr;	/* any fw WR struct will do */
2405 
2406 	remaining = IDXDIFF(pidx, cidx, r->size);
2407 	MPASS(remaining > 0);	/* Must not be called without work to do. */
2408 	total = 0;
2409 
2410 	TXQ_LOCK(txq);
2411 	if (__predict_false((eq->flags & EQ_ENABLED) == 0)) {
2412 		while (cidx != pidx) {
2413 			m0 = r->items[cidx];
2414 			m_freem(m0);
2415 			if (++cidx == r->size)
2416 				cidx = 0;
2417 		}
2418 		reclaim_tx_descs(txq, 2048);
2419 		total = remaining;
2420 		goto done;
2421 	}
2422 
2423 	/* How many hardware descriptors do we have readily available. */
2424 	if (eq->pidx == eq->cidx)
2425 		available = eq->sidx - 1;
2426 	else
2427 		available = IDXDIFF(eq->cidx, eq->pidx, eq->sidx) - 1;
2428 	dbdiff = IDXDIFF(eq->pidx, eq->dbidx, eq->sidx);
2429 
2430 	while (remaining > 0) {
2431 
2432 		m0 = r->items[cidx];
2433 		M_ASSERTPKTHDR(m0);
2434 		MPASS(m0->m_nextpkt == NULL);
2435 
2436 		if (available < SGE_MAX_WR_NDESC) {
2437 			available += reclaim_tx_descs(txq, 64);
2438 			if (available < howmany(mbuf_len16(m0), EQ_ESIZE / 16))
2439 				break;	/* out of descriptors */
2440 		}
2441 
2442 		next_cidx = cidx + 1;
2443 		if (__predict_false(next_cidx == r->size))
2444 			next_cidx = 0;
2445 
2446 		wr = (void *)&eq->desc[eq->pidx];
2447 		if (sc->flags & IS_VF) {
2448 			total++;
2449 			remaining--;
2450 			ETHER_BPF_MTAP(ifp, m0);
2451 			n = write_txpkt_vm_wr(sc, txq, (void *)wr, m0,
2452 			    available);
2453 		} else if (remaining > 1 &&
2454 		    try_txpkts(m0, r->items[next_cidx], &txp, available) == 0) {
2455 
2456 			/* pkts at cidx, next_cidx should both be in txp. */
2457 			MPASS(txp.npkt == 2);
2458 			tail = r->items[next_cidx];
2459 			MPASS(tail->m_nextpkt == NULL);
2460 			ETHER_BPF_MTAP(ifp, m0);
2461 			ETHER_BPF_MTAP(ifp, tail);
2462 			m0->m_nextpkt = tail;
2463 
2464 			if (__predict_false(++next_cidx == r->size))
2465 				next_cidx = 0;
2466 
2467 			while (next_cidx != pidx) {
2468 				if (add_to_txpkts(r->items[next_cidx], &txp,
2469 				    available) != 0)
2470 					break;
2471 				tail->m_nextpkt = r->items[next_cidx];
2472 				tail = tail->m_nextpkt;
2473 				ETHER_BPF_MTAP(ifp, tail);
2474 				if (__predict_false(++next_cidx == r->size))
2475 					next_cidx = 0;
2476 			}
2477 
2478 			n = write_txpkts_wr(txq, wr, m0, &txp, available);
2479 			total += txp.npkt;
2480 			remaining -= txp.npkt;
2481 		} else {
2482 			total++;
2483 			remaining--;
2484 			ETHER_BPF_MTAP(ifp, m0);
2485 			n = write_txpkt_wr(txq, (void *)wr, m0, available);
2486 		}
2487 		MPASS(n >= 1 && n <= available && n <= SGE_MAX_WR_NDESC);
2488 
2489 		available -= n;
2490 		dbdiff += n;
2491 		IDXINCR(eq->pidx, n, eq->sidx);
2492 
2493 		if (total_available_tx_desc(eq) < eq->sidx / 4 &&
2494 		    atomic_cmpset_int(&eq->equiq, 0, 1)) {
2495 			wr->equiq_to_len16 |= htobe32(F_FW_WR_EQUIQ |
2496 			    F_FW_WR_EQUEQ);
2497 			eq->equeqidx = eq->pidx;
2498 		} else if (IDXDIFF(eq->pidx, eq->equeqidx, eq->sidx) >= 32) {
2499 			wr->equiq_to_len16 |= htobe32(F_FW_WR_EQUEQ);
2500 			eq->equeqidx = eq->pidx;
2501 		}
2502 
2503 		if (dbdiff >= 16 && remaining >= 4) {
2504 			ring_eq_db(sc, eq, dbdiff);
2505 			available += reclaim_tx_descs(txq, 4 * dbdiff);
2506 			dbdiff = 0;
2507 		}
2508 
2509 		cidx = next_cidx;
2510 	}
2511 	if (dbdiff != 0) {
2512 		ring_eq_db(sc, eq, dbdiff);
2513 		reclaim_tx_descs(txq, 32);
2514 	}
2515 done:
2516 	TXQ_UNLOCK(txq);
2517 
2518 	return (total);
2519 }
2520 
2521 static inline void
2522 init_iq(struct sge_iq *iq, struct adapter *sc, int tmr_idx, int pktc_idx,
2523     int qsize)
2524 {
2525 
2526 	KASSERT(tmr_idx >= 0 && tmr_idx < SGE_NTIMERS,
2527 	    ("%s: bad tmr_idx %d", __func__, tmr_idx));
2528 	KASSERT(pktc_idx < SGE_NCOUNTERS,	/* -ve is ok, means don't use */
2529 	    ("%s: bad pktc_idx %d", __func__, pktc_idx));
2530 
2531 	iq->flags = 0;
2532 	iq->adapter = sc;
2533 	iq->intr_params = V_QINTR_TIMER_IDX(tmr_idx);
2534 	iq->intr_pktc_idx = SGE_NCOUNTERS - 1;
2535 	if (pktc_idx >= 0) {
2536 		iq->intr_params |= F_QINTR_CNT_EN;
2537 		iq->intr_pktc_idx = pktc_idx;
2538 	}
2539 	iq->qsize = roundup2(qsize, 16);	/* See FW_IQ_CMD/iqsize */
2540 	iq->sidx = iq->qsize - sc->params.sge.spg_len / IQ_ESIZE;
2541 }
2542 
2543 static inline void
2544 init_fl(struct adapter *sc, struct sge_fl *fl, int qsize, int maxp, char *name)
2545 {
2546 
2547 	fl->qsize = qsize;
2548 	fl->sidx = qsize - sc->params.sge.spg_len / EQ_ESIZE;
2549 	strlcpy(fl->lockname, name, sizeof(fl->lockname));
2550 	if (sc->flags & BUF_PACKING_OK &&
2551 	    ((!is_t4(sc) && buffer_packing) ||	/* T5+: enabled unless 0 */
2552 	    (is_t4(sc) && buffer_packing == 1)))/* T4: disabled unless 1 */
2553 		fl->flags |= FL_BUF_PACKING;
2554 	find_best_refill_source(sc, fl, maxp);
2555 	find_safe_refill_source(sc, fl);
2556 }
2557 
2558 static inline void
2559 init_eq(struct adapter *sc, struct sge_eq *eq, int eqtype, int qsize,
2560     uint8_t tx_chan, uint16_t iqid, char *name)
2561 {
2562 	KASSERT(eqtype <= EQ_TYPEMASK, ("%s: bad qtype %d", __func__, eqtype));
2563 
2564 	eq->flags = eqtype & EQ_TYPEMASK;
2565 	eq->tx_chan = tx_chan;
2566 	eq->iqid = iqid;
2567 	eq->sidx = qsize - sc->params.sge.spg_len / EQ_ESIZE;
2568 	strlcpy(eq->lockname, name, sizeof(eq->lockname));
2569 }
2570 
2571 static int
2572 alloc_ring(struct adapter *sc, size_t len, bus_dma_tag_t *tag,
2573     bus_dmamap_t *map, bus_addr_t *pa, void **va)
2574 {
2575 	int rc;
2576 
2577 	rc = bus_dma_tag_create(sc->dmat, 512, 0, BUS_SPACE_MAXADDR,
2578 	    BUS_SPACE_MAXADDR, NULL, NULL, len, 1, len, 0, NULL, NULL, tag);
2579 	if (rc != 0) {
2580 		device_printf(sc->dev, "cannot allocate DMA tag: %d\n", rc);
2581 		goto done;
2582 	}
2583 
2584 	rc = bus_dmamem_alloc(*tag, va,
2585 	    BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_ZERO, map);
2586 	if (rc != 0) {
2587 		device_printf(sc->dev, "cannot allocate DMA memory: %d\n", rc);
2588 		goto done;
2589 	}
2590 
2591 	rc = bus_dmamap_load(*tag, *map, *va, len, oneseg_dma_callback, pa, 0);
2592 	if (rc != 0) {
2593 		device_printf(sc->dev, "cannot load DMA map: %d\n", rc);
2594 		goto done;
2595 	}
2596 done:
2597 	if (rc)
2598 		free_ring(sc, *tag, *map, *pa, *va);
2599 
2600 	return (rc);
2601 }
2602 
2603 static int
2604 free_ring(struct adapter *sc, bus_dma_tag_t tag, bus_dmamap_t map,
2605     bus_addr_t pa, void *va)
2606 {
2607 	if (pa)
2608 		bus_dmamap_unload(tag, map);
2609 	if (va)
2610 		bus_dmamem_free(tag, va, map);
2611 	if (tag)
2612 		bus_dma_tag_destroy(tag);
2613 
2614 	return (0);
2615 }
2616 
2617 /*
2618  * Allocates the ring for an ingress queue and an optional freelist.  If the
2619  * freelist is specified it will be allocated and then associated with the
2620  * ingress queue.
2621  *
2622  * Returns errno on failure.  Resources allocated up to that point may still be
2623  * allocated.  Caller is responsible for cleanup in case this function fails.
2624  *
2625  * If the ingress queue will take interrupts directly (iq->flags & IQ_INTR) then
2626  * the intr_idx specifies the vector, starting from 0.  Otherwise it specifies
2627  * the abs_id of the ingress queue to which its interrupts should be forwarded.
2628  */
2629 static int
2630 alloc_iq_fl(struct vi_info *vi, struct sge_iq *iq, struct sge_fl *fl,
2631     int intr_idx, int cong)
2632 {
2633 	int rc, i, cntxt_id;
2634 	size_t len;
2635 	struct fw_iq_cmd c;
2636 	struct port_info *pi = vi->pi;
2637 	struct adapter *sc = iq->adapter;
2638 	struct sge_params *sp = &sc->params.sge;
2639 	__be32 v = 0;
2640 
2641 	len = iq->qsize * IQ_ESIZE;
2642 	rc = alloc_ring(sc, len, &iq->desc_tag, &iq->desc_map, &iq->ba,
2643 	    (void **)&iq->desc);
2644 	if (rc != 0)
2645 		return (rc);
2646 
2647 	bzero(&c, sizeof(c));
2648 	c.op_to_vfn = htobe32(V_FW_CMD_OP(FW_IQ_CMD) | F_FW_CMD_REQUEST |
2649 	    F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_IQ_CMD_PFN(sc->pf) |
2650 	    V_FW_IQ_CMD_VFN(0));
2651 
2652 	c.alloc_to_len16 = htobe32(F_FW_IQ_CMD_ALLOC | F_FW_IQ_CMD_IQSTART |
2653 	    FW_LEN16(c));
2654 
2655 	/* Special handling for firmware event queue */
2656 	if (iq == &sc->sge.fwq)
2657 		v |= F_FW_IQ_CMD_IQASYNCH;
2658 
2659 	if (iq->flags & IQ_INTR) {
2660 		KASSERT(intr_idx < sc->intr_count,
2661 		    ("%s: invalid direct intr_idx %d", __func__, intr_idx));
2662 	} else
2663 		v |= F_FW_IQ_CMD_IQANDST;
2664 	v |= V_FW_IQ_CMD_IQANDSTINDEX(intr_idx);
2665 
2666 	c.type_to_iqandstindex = htobe32(v |
2667 	    V_FW_IQ_CMD_TYPE(FW_IQ_TYPE_FL_INT_CAP) |
2668 	    V_FW_IQ_CMD_VIID(vi->viid) |
2669 	    V_FW_IQ_CMD_IQANUD(X_UPDATEDELIVERY_INTERRUPT));
2670 	c.iqdroprss_to_iqesize = htobe16(V_FW_IQ_CMD_IQPCIECH(pi->tx_chan) |
2671 	    F_FW_IQ_CMD_IQGTSMODE |
2672 	    V_FW_IQ_CMD_IQINTCNTTHRESH(iq->intr_pktc_idx) |
2673 	    V_FW_IQ_CMD_IQESIZE(ilog2(IQ_ESIZE) - 4));
2674 	c.iqsize = htobe16(iq->qsize);
2675 	c.iqaddr = htobe64(iq->ba);
2676 	if (cong >= 0)
2677 		c.iqns_to_fl0congen = htobe32(F_FW_IQ_CMD_IQFLINTCONGEN);
2678 
2679 	if (fl) {
2680 		mtx_init(&fl->fl_lock, fl->lockname, NULL, MTX_DEF);
2681 
2682 		len = fl->qsize * EQ_ESIZE;
2683 		rc = alloc_ring(sc, len, &fl->desc_tag, &fl->desc_map,
2684 		    &fl->ba, (void **)&fl->desc);
2685 		if (rc)
2686 			return (rc);
2687 
2688 		/* Allocate space for one software descriptor per buffer. */
2689 		rc = alloc_fl_sdesc(fl);
2690 		if (rc != 0) {
2691 			device_printf(sc->dev,
2692 			    "failed to setup fl software descriptors: %d\n",
2693 			    rc);
2694 			return (rc);
2695 		}
2696 
2697 		if (fl->flags & FL_BUF_PACKING) {
2698 			fl->lowat = roundup2(sp->fl_starve_threshold2, 8);
2699 			fl->buf_boundary = sp->pack_boundary;
2700 		} else {
2701 			fl->lowat = roundup2(sp->fl_starve_threshold, 8);
2702 			fl->buf_boundary = 16;
2703 		}
2704 		if (fl_pad && fl->buf_boundary < sp->pad_boundary)
2705 			fl->buf_boundary = sp->pad_boundary;
2706 
2707 		c.iqns_to_fl0congen |=
2708 		    htobe32(V_FW_IQ_CMD_FL0HOSTFCMODE(X_HOSTFCMODE_NONE) |
2709 			F_FW_IQ_CMD_FL0FETCHRO | F_FW_IQ_CMD_FL0DATARO |
2710 			(fl_pad ? F_FW_IQ_CMD_FL0PADEN : 0) |
2711 			(fl->flags & FL_BUF_PACKING ? F_FW_IQ_CMD_FL0PACKEN :
2712 			    0));
2713 		if (cong >= 0) {
2714 			c.iqns_to_fl0congen |=
2715 				htobe32(V_FW_IQ_CMD_FL0CNGCHMAP(cong) |
2716 				    F_FW_IQ_CMD_FL0CONGCIF |
2717 				    F_FW_IQ_CMD_FL0CONGEN);
2718 		}
2719 		c.fl0dcaen_to_fl0cidxfthresh =
2720 		    htobe16(V_FW_IQ_CMD_FL0FBMIN(chip_id(sc) <= CHELSIO_T5 ?
2721 			X_FETCHBURSTMIN_128B : X_FETCHBURSTMIN_64B) |
2722 			V_FW_IQ_CMD_FL0FBMAX(chip_id(sc) <= CHELSIO_T5 ?
2723 			X_FETCHBURSTMAX_512B : X_FETCHBURSTMAX_256B));
2724 		c.fl0size = htobe16(fl->qsize);
2725 		c.fl0addr = htobe64(fl->ba);
2726 	}
2727 
2728 	rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c);
2729 	if (rc != 0) {
2730 		device_printf(sc->dev,
2731 		    "failed to create ingress queue: %d\n", rc);
2732 		return (rc);
2733 	}
2734 
2735 	iq->cidx = 0;
2736 	iq->gen = F_RSPD_GEN;
2737 	iq->intr_next = iq->intr_params;
2738 	iq->cntxt_id = be16toh(c.iqid);
2739 	iq->abs_id = be16toh(c.physiqid);
2740 	iq->flags |= IQ_ALLOCATED;
2741 
2742 	cntxt_id = iq->cntxt_id - sc->sge.iq_start;
2743 	if (cntxt_id >= sc->sge.niq) {
2744 		panic ("%s: iq->cntxt_id (%d) more than the max (%d)", __func__,
2745 		    cntxt_id, sc->sge.niq - 1);
2746 	}
2747 	sc->sge.iqmap[cntxt_id] = iq;
2748 
2749 	if (fl) {
2750 		u_int qid;
2751 
2752 		iq->flags |= IQ_HAS_FL;
2753 		fl->cntxt_id = be16toh(c.fl0id);
2754 		fl->pidx = fl->cidx = 0;
2755 
2756 		cntxt_id = fl->cntxt_id - sc->sge.eq_start;
2757 		if (cntxt_id >= sc->sge.neq) {
2758 			panic("%s: fl->cntxt_id (%d) more than the max (%d)",
2759 			    __func__, cntxt_id, sc->sge.neq - 1);
2760 		}
2761 		sc->sge.eqmap[cntxt_id] = (void *)fl;
2762 
2763 		qid = fl->cntxt_id;
2764 		if (isset(&sc->doorbells, DOORBELL_UDB)) {
2765 			uint32_t s_qpp = sc->params.sge.eq_s_qpp;
2766 			uint32_t mask = (1 << s_qpp) - 1;
2767 			volatile uint8_t *udb;
2768 
2769 			udb = sc->udbs_base + UDBS_DB_OFFSET;
2770 			udb += (qid >> s_qpp) << PAGE_SHIFT;
2771 			qid &= mask;
2772 			if (qid < PAGE_SIZE / UDBS_SEG_SIZE) {
2773 				udb += qid << UDBS_SEG_SHIFT;
2774 				qid = 0;
2775 			}
2776 			fl->udb = (volatile void *)udb;
2777 		}
2778 		fl->dbval = V_QID(qid) | sc->chip_params->sge_fl_db;
2779 
2780 		FL_LOCK(fl);
2781 		/* Enough to make sure the SGE doesn't think it's starved */
2782 		refill_fl(sc, fl, fl->lowat);
2783 		FL_UNLOCK(fl);
2784 	}
2785 
2786 	if (chip_id(sc) >= CHELSIO_T5 && !(sc->flags & IS_VF) && cong >= 0) {
2787 		uint32_t param, val;
2788 
2789 		param = V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) |
2790 		    V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DMAQ_CONM_CTXT) |
2791 		    V_FW_PARAMS_PARAM_YZ(iq->cntxt_id);
2792 		if (cong == 0)
2793 			val = 1 << 19;
2794 		else {
2795 			val = 2 << 19;
2796 			for (i = 0; i < 4; i++) {
2797 				if (cong & (1 << i))
2798 					val |= 1 << (i << 2);
2799 			}
2800 		}
2801 
2802 		rc = -t4_set_params(sc, sc->mbox, sc->pf, 0, 1, &param, &val);
2803 		if (rc != 0) {
2804 			/* report error but carry on */
2805 			device_printf(sc->dev,
2806 			    "failed to set congestion manager context for "
2807 			    "ingress queue %d: %d\n", iq->cntxt_id, rc);
2808 		}
2809 	}
2810 
2811 	/* Enable IQ interrupts */
2812 	atomic_store_rel_int(&iq->state, IQS_IDLE);
2813 	t4_write_reg(sc, sc->sge_gts_reg, V_SEINTARM(iq->intr_params) |
2814 	    V_INGRESSQID(iq->cntxt_id));
2815 
2816 	return (0);
2817 }
2818 
2819 static int
2820 free_iq_fl(struct vi_info *vi, struct sge_iq *iq, struct sge_fl *fl)
2821 {
2822 	int rc;
2823 	struct adapter *sc = iq->adapter;
2824 	device_t dev;
2825 
2826 	if (sc == NULL)
2827 		return (0);	/* nothing to do */
2828 
2829 	dev = vi ? vi->dev : sc->dev;
2830 
2831 	if (iq->flags & IQ_ALLOCATED) {
2832 		rc = -t4_iq_free(sc, sc->mbox, sc->pf, 0,
2833 		    FW_IQ_TYPE_FL_INT_CAP, iq->cntxt_id,
2834 		    fl ? fl->cntxt_id : 0xffff, 0xffff);
2835 		if (rc != 0) {
2836 			device_printf(dev,
2837 			    "failed to free queue %p: %d\n", iq, rc);
2838 			return (rc);
2839 		}
2840 		iq->flags &= ~IQ_ALLOCATED;
2841 	}
2842 
2843 	free_ring(sc, iq->desc_tag, iq->desc_map, iq->ba, iq->desc);
2844 
2845 	bzero(iq, sizeof(*iq));
2846 
2847 	if (fl) {
2848 		free_ring(sc, fl->desc_tag, fl->desc_map, fl->ba,
2849 		    fl->desc);
2850 
2851 		if (fl->sdesc)
2852 			free_fl_sdesc(sc, fl);
2853 
2854 		if (mtx_initialized(&fl->fl_lock))
2855 			mtx_destroy(&fl->fl_lock);
2856 
2857 		bzero(fl, sizeof(*fl));
2858 	}
2859 
2860 	return (0);
2861 }
2862 
2863 static void
2864 add_fl_sysctls(struct adapter *sc, struct sysctl_ctx_list *ctx,
2865     struct sysctl_oid *oid, struct sge_fl *fl)
2866 {
2867 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
2868 
2869 	oid = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, "fl", CTLFLAG_RD, NULL,
2870 	    "freelist");
2871 	children = SYSCTL_CHILDREN(oid);
2872 
2873 	SYSCTL_ADD_UAUTO(ctx, children, OID_AUTO, "ba", CTLFLAG_RD,
2874 	    &fl->ba, "bus address of descriptor ring");
2875 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL,
2876 	    fl->sidx * EQ_ESIZE + sc->params.sge.spg_len,
2877 	    "desc ring size in bytes");
2878 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cntxt_id",
2879 	    CTLTYPE_INT | CTLFLAG_RD, &fl->cntxt_id, 0, sysctl_uint16, "I",
2880 	    "SGE context id of the freelist");
2881 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "padding", CTLFLAG_RD, NULL,
2882 	    fl_pad ? 1 : 0, "padding enabled");
2883 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "packing", CTLFLAG_RD, NULL,
2884 	    fl->flags & FL_BUF_PACKING ? 1 : 0, "packing enabled");
2885 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "cidx", CTLFLAG_RD, &fl->cidx,
2886 	    0, "consumer index");
2887 	if (fl->flags & FL_BUF_PACKING) {
2888 		SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "rx_offset",
2889 		    CTLFLAG_RD, &fl->rx_offset, 0, "packing rx offset");
2890 	}
2891 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "pidx", CTLFLAG_RD, &fl->pidx,
2892 	    0, "producer index");
2893 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "mbuf_allocated",
2894 	    CTLFLAG_RD, &fl->mbuf_allocated, "# of mbuf allocated");
2895 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "mbuf_inlined",
2896 	    CTLFLAG_RD, &fl->mbuf_inlined, "# of mbuf inlined in clusters");
2897 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "cluster_allocated",
2898 	    CTLFLAG_RD, &fl->cl_allocated, "# of clusters allocated");
2899 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "cluster_recycled",
2900 	    CTLFLAG_RD, &fl->cl_recycled, "# of clusters recycled");
2901 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "cluster_fast_recycled",
2902 	    CTLFLAG_RD, &fl->cl_fast_recycled, "# of clusters recycled (fast)");
2903 }
2904 
2905 static int
2906 alloc_fwq(struct adapter *sc)
2907 {
2908 	int rc, intr_idx;
2909 	struct sge_iq *fwq = &sc->sge.fwq;
2910 	struct sysctl_oid *oid = device_get_sysctl_tree(sc->dev);
2911 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
2912 
2913 	init_iq(fwq, sc, 0, 0, FW_IQ_QSIZE);
2914 	fwq->flags |= IQ_INTR;	/* always */
2915 	if (sc->flags & IS_VF)
2916 		intr_idx = 0;
2917 	else {
2918 		intr_idx = sc->intr_count > 1 ? 1 : 0;
2919 		fwq->set_tcb_rpl = t4_filter_rpl;
2920 		fwq->l2t_write_rpl = do_l2t_write_rpl;
2921 	}
2922 	rc = alloc_iq_fl(&sc->port[0]->vi[0], fwq, NULL, intr_idx, -1);
2923 	if (rc != 0) {
2924 		device_printf(sc->dev,
2925 		    "failed to create firmware event queue: %d\n", rc);
2926 		return (rc);
2927 	}
2928 
2929 	oid = SYSCTL_ADD_NODE(&sc->ctx, children, OID_AUTO, "fwq", CTLFLAG_RD,
2930 	    NULL, "firmware event queue");
2931 	children = SYSCTL_CHILDREN(oid);
2932 
2933 	SYSCTL_ADD_UAUTO(&sc->ctx, children, OID_AUTO, "ba", CTLFLAG_RD,
2934 	    &fwq->ba, "bus address of descriptor ring");
2935 	SYSCTL_ADD_INT(&sc->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL,
2936 	    fwq->qsize * IQ_ESIZE, "descriptor ring size in bytes");
2937 	SYSCTL_ADD_PROC(&sc->ctx, children, OID_AUTO, "abs_id",
2938 	    CTLTYPE_INT | CTLFLAG_RD, &fwq->abs_id, 0, sysctl_uint16, "I",
2939 	    "absolute id of the queue");
2940 	SYSCTL_ADD_PROC(&sc->ctx, children, OID_AUTO, "cntxt_id",
2941 	    CTLTYPE_INT | CTLFLAG_RD, &fwq->cntxt_id, 0, sysctl_uint16, "I",
2942 	    "SGE context id of the queue");
2943 	SYSCTL_ADD_PROC(&sc->ctx, children, OID_AUTO, "cidx",
2944 	    CTLTYPE_INT | CTLFLAG_RD, &fwq->cidx, 0, sysctl_uint16, "I",
2945 	    "consumer index");
2946 
2947 	return (0);
2948 }
2949 
2950 static int
2951 free_fwq(struct adapter *sc)
2952 {
2953 	return free_iq_fl(NULL, &sc->sge.fwq, NULL);
2954 }
2955 
2956 static int
2957 alloc_mgmtq(struct adapter *sc)
2958 {
2959 	int rc;
2960 	struct sge_wrq *mgmtq = &sc->sge.mgmtq;
2961 	char name[16];
2962 	struct sysctl_oid *oid = device_get_sysctl_tree(sc->dev);
2963 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
2964 
2965 	oid = SYSCTL_ADD_NODE(&sc->ctx, children, OID_AUTO, "mgmtq", CTLFLAG_RD,
2966 	    NULL, "management queue");
2967 
2968 	snprintf(name, sizeof(name), "%s mgmtq", device_get_nameunit(sc->dev));
2969 	init_eq(sc, &mgmtq->eq, EQ_CTRL, CTRL_EQ_QSIZE, sc->port[0]->tx_chan,
2970 	    sc->sge.fwq.cntxt_id, name);
2971 	rc = alloc_wrq(sc, NULL, mgmtq, oid);
2972 	if (rc != 0) {
2973 		device_printf(sc->dev,
2974 		    "failed to create management queue: %d\n", rc);
2975 		return (rc);
2976 	}
2977 
2978 	return (0);
2979 }
2980 
2981 static int
2982 free_mgmtq(struct adapter *sc)
2983 {
2984 
2985 	return free_wrq(sc, &sc->sge.mgmtq);
2986 }
2987 
2988 int
2989 tnl_cong(struct port_info *pi, int drop)
2990 {
2991 
2992 	if (drop == -1)
2993 		return (-1);
2994 	else if (drop == 1)
2995 		return (0);
2996 	else
2997 		return (pi->rx_chan_map);
2998 }
2999 
3000 static int
3001 alloc_rxq(struct vi_info *vi, struct sge_rxq *rxq, int intr_idx, int idx,
3002     struct sysctl_oid *oid)
3003 {
3004 	int rc;
3005 	struct adapter *sc = vi->pi->adapter;
3006 	struct sysctl_oid_list *children;
3007 	char name[16];
3008 
3009 	rc = alloc_iq_fl(vi, &rxq->iq, &rxq->fl, intr_idx,
3010 	    tnl_cong(vi->pi, cong_drop));
3011 	if (rc != 0)
3012 		return (rc);
3013 
3014 	if (idx == 0)
3015 		sc->sge.iq_base = rxq->iq.abs_id - rxq->iq.cntxt_id;
3016 	else
3017 		KASSERT(rxq->iq.cntxt_id + sc->sge.iq_base == rxq->iq.abs_id,
3018 		    ("iq_base mismatch"));
3019 	KASSERT(sc->sge.iq_base == 0 || sc->flags & IS_VF,
3020 	    ("PF with non-zero iq_base"));
3021 
3022 	/*
3023 	 * The freelist is just barely above the starvation threshold right now,
3024 	 * fill it up a bit more.
3025 	 */
3026 	FL_LOCK(&rxq->fl);
3027 	refill_fl(sc, &rxq->fl, 128);
3028 	FL_UNLOCK(&rxq->fl);
3029 
3030 #if defined(INET) || defined(INET6)
3031 	rc = tcp_lro_init(&rxq->lro);
3032 	if (rc != 0)
3033 		return (rc);
3034 	rxq->lro.ifp = vi->ifp; /* also indicates LRO init'ed */
3035 
3036 	if (vi->ifp->if_capenable & IFCAP_LRO)
3037 		rxq->iq.flags |= IQ_LRO_ENABLED;
3038 #endif
3039 	rxq->ifp = vi->ifp;
3040 
3041 	children = SYSCTL_CHILDREN(oid);
3042 
3043 	snprintf(name, sizeof(name), "%d", idx);
3044 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD,
3045 	    NULL, "rx queue");
3046 	children = SYSCTL_CHILDREN(oid);
3047 
3048 	SYSCTL_ADD_UAUTO(&vi->ctx, children, OID_AUTO, "ba", CTLFLAG_RD,
3049 	    &rxq->iq.ba, "bus address of descriptor ring");
3050 	SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL,
3051 	    rxq->iq.qsize * IQ_ESIZE, "descriptor ring size in bytes");
3052 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "abs_id",
3053 	    CTLTYPE_INT | CTLFLAG_RD, &rxq->iq.abs_id, 0, sysctl_uint16, "I",
3054 	    "absolute id of the queue");
3055 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cntxt_id",
3056 	    CTLTYPE_INT | CTLFLAG_RD, &rxq->iq.cntxt_id, 0, sysctl_uint16, "I",
3057 	    "SGE context id of the queue");
3058 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx",
3059 	    CTLTYPE_INT | CTLFLAG_RD, &rxq->iq.cidx, 0, sysctl_uint16, "I",
3060 	    "consumer index");
3061 #if defined(INET) || defined(INET6)
3062 	SYSCTL_ADD_U64(&vi->ctx, children, OID_AUTO, "lro_queued", CTLFLAG_RD,
3063 	    &rxq->lro.lro_queued, 0, NULL);
3064 	SYSCTL_ADD_U64(&vi->ctx, children, OID_AUTO, "lro_flushed", CTLFLAG_RD,
3065 	    &rxq->lro.lro_flushed, 0, NULL);
3066 #endif
3067 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "rxcsum", CTLFLAG_RD,
3068 	    &rxq->rxcsum, "# of times hardware assisted with checksum");
3069 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "vlan_extraction",
3070 	    CTLFLAG_RD, &rxq->vlan_extraction,
3071 	    "# of times hardware extracted 802.1Q tag");
3072 
3073 	add_fl_sysctls(sc, &vi->ctx, oid, &rxq->fl);
3074 
3075 	return (rc);
3076 }
3077 
3078 static int
3079 free_rxq(struct vi_info *vi, struct sge_rxq *rxq)
3080 {
3081 	int rc;
3082 
3083 #if defined(INET) || defined(INET6)
3084 	if (rxq->lro.ifp) {
3085 		tcp_lro_free(&rxq->lro);
3086 		rxq->lro.ifp = NULL;
3087 	}
3088 #endif
3089 
3090 	rc = free_iq_fl(vi, &rxq->iq, &rxq->fl);
3091 	if (rc == 0)
3092 		bzero(rxq, sizeof(*rxq));
3093 
3094 	return (rc);
3095 }
3096 
3097 #ifdef TCP_OFFLOAD
3098 static int
3099 alloc_ofld_rxq(struct vi_info *vi, struct sge_ofld_rxq *ofld_rxq,
3100     int intr_idx, int idx, struct sysctl_oid *oid)
3101 {
3102 	struct port_info *pi = vi->pi;
3103 	int rc;
3104 	struct sysctl_oid_list *children;
3105 	char name[16];
3106 
3107 	rc = alloc_iq_fl(vi, &ofld_rxq->iq, &ofld_rxq->fl, intr_idx,
3108 	    pi->rx_chan_map);
3109 	if (rc != 0)
3110 		return (rc);
3111 
3112 	children = SYSCTL_CHILDREN(oid);
3113 
3114 	snprintf(name, sizeof(name), "%d", idx);
3115 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD,
3116 	    NULL, "rx queue");
3117 	children = SYSCTL_CHILDREN(oid);
3118 
3119 	SYSCTL_ADD_UAUTO(&vi->ctx, children, OID_AUTO, "ba", CTLFLAG_RD,
3120 	    &ofld_rxq->iq.ba, "bus address of descriptor ring");
3121 	SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL,
3122 	    ofld_rxq->iq.qsize * IQ_ESIZE, "descriptor ring size in bytes");
3123 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "abs_id",
3124 	    CTLTYPE_INT | CTLFLAG_RD, &ofld_rxq->iq.abs_id, 0, sysctl_uint16,
3125 	    "I", "absolute id of the queue");
3126 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cntxt_id",
3127 	    CTLTYPE_INT | CTLFLAG_RD, &ofld_rxq->iq.cntxt_id, 0, sysctl_uint16,
3128 	    "I", "SGE context id of the queue");
3129 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx",
3130 	    CTLTYPE_INT | CTLFLAG_RD, &ofld_rxq->iq.cidx, 0, sysctl_uint16, "I",
3131 	    "consumer index");
3132 
3133 	add_fl_sysctls(pi->adapter, &vi->ctx, oid, &ofld_rxq->fl);
3134 
3135 	return (rc);
3136 }
3137 
3138 static int
3139 free_ofld_rxq(struct vi_info *vi, struct sge_ofld_rxq *ofld_rxq)
3140 {
3141 	int rc;
3142 
3143 	rc = free_iq_fl(vi, &ofld_rxq->iq, &ofld_rxq->fl);
3144 	if (rc == 0)
3145 		bzero(ofld_rxq, sizeof(*ofld_rxq));
3146 
3147 	return (rc);
3148 }
3149 #endif
3150 
3151 #ifdef DEV_NETMAP
3152 static int
3153 alloc_nm_rxq(struct vi_info *vi, struct sge_nm_rxq *nm_rxq, int intr_idx,
3154     int idx, struct sysctl_oid *oid)
3155 {
3156 	int rc;
3157 	struct sysctl_oid_list *children;
3158 	struct sysctl_ctx_list *ctx;
3159 	char name[16];
3160 	size_t len;
3161 	struct adapter *sc = vi->pi->adapter;
3162 	struct netmap_adapter *na = NA(vi->ifp);
3163 
3164 	MPASS(na != NULL);
3165 
3166 	len = vi->qsize_rxq * IQ_ESIZE;
3167 	rc = alloc_ring(sc, len, &nm_rxq->iq_desc_tag, &nm_rxq->iq_desc_map,
3168 	    &nm_rxq->iq_ba, (void **)&nm_rxq->iq_desc);
3169 	if (rc != 0)
3170 		return (rc);
3171 
3172 	len = na->num_rx_desc * EQ_ESIZE + sc->params.sge.spg_len;
3173 	rc = alloc_ring(sc, len, &nm_rxq->fl_desc_tag, &nm_rxq->fl_desc_map,
3174 	    &nm_rxq->fl_ba, (void **)&nm_rxq->fl_desc);
3175 	if (rc != 0)
3176 		return (rc);
3177 
3178 	nm_rxq->vi = vi;
3179 	nm_rxq->nid = idx;
3180 	nm_rxq->iq_cidx = 0;
3181 	nm_rxq->iq_sidx = vi->qsize_rxq - sc->params.sge.spg_len / IQ_ESIZE;
3182 	nm_rxq->iq_gen = F_RSPD_GEN;
3183 	nm_rxq->fl_pidx = nm_rxq->fl_cidx = 0;
3184 	nm_rxq->fl_sidx = na->num_rx_desc;
3185 	nm_rxq->intr_idx = intr_idx;
3186 
3187 	ctx = &vi->ctx;
3188 	children = SYSCTL_CHILDREN(oid);
3189 
3190 	snprintf(name, sizeof(name), "%d", idx);
3191 	oid = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, name, CTLFLAG_RD, NULL,
3192 	    "rx queue");
3193 	children = SYSCTL_CHILDREN(oid);
3194 
3195 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "abs_id",
3196 	    CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->iq_abs_id, 0, sysctl_uint16,
3197 	    "I", "absolute id of the queue");
3198 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cntxt_id",
3199 	    CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->iq_cntxt_id, 0, sysctl_uint16,
3200 	    "I", "SGE context id of the queue");
3201 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cidx",
3202 	    CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->iq_cidx, 0, sysctl_uint16, "I",
3203 	    "consumer index");
3204 
3205 	children = SYSCTL_CHILDREN(oid);
3206 	oid = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, "fl", CTLFLAG_RD, NULL,
3207 	    "freelist");
3208 	children = SYSCTL_CHILDREN(oid);
3209 
3210 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cntxt_id",
3211 	    CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->fl_cntxt_id, 0, sysctl_uint16,
3212 	    "I", "SGE context id of the freelist");
3213 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "cidx", CTLFLAG_RD,
3214 	    &nm_rxq->fl_cidx, 0, "consumer index");
3215 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "pidx", CTLFLAG_RD,
3216 	    &nm_rxq->fl_pidx, 0, "producer index");
3217 
3218 	return (rc);
3219 }
3220 
3221 
3222 static int
3223 free_nm_rxq(struct vi_info *vi, struct sge_nm_rxq *nm_rxq)
3224 {
3225 	struct adapter *sc = vi->pi->adapter;
3226 
3227 	free_ring(sc, nm_rxq->iq_desc_tag, nm_rxq->iq_desc_map, nm_rxq->iq_ba,
3228 	    nm_rxq->iq_desc);
3229 	free_ring(sc, nm_rxq->fl_desc_tag, nm_rxq->fl_desc_map, nm_rxq->fl_ba,
3230 	    nm_rxq->fl_desc);
3231 
3232 	return (0);
3233 }
3234 
3235 static int
3236 alloc_nm_txq(struct vi_info *vi, struct sge_nm_txq *nm_txq, int iqidx, int idx,
3237     struct sysctl_oid *oid)
3238 {
3239 	int rc;
3240 	size_t len;
3241 	struct port_info *pi = vi->pi;
3242 	struct adapter *sc = pi->adapter;
3243 	struct netmap_adapter *na = NA(vi->ifp);
3244 	char name[16];
3245 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
3246 
3247 	len = na->num_tx_desc * EQ_ESIZE + sc->params.sge.spg_len;
3248 	rc = alloc_ring(sc, len, &nm_txq->desc_tag, &nm_txq->desc_map,
3249 	    &nm_txq->ba, (void **)&nm_txq->desc);
3250 	if (rc)
3251 		return (rc);
3252 
3253 	nm_txq->pidx = nm_txq->cidx = 0;
3254 	nm_txq->sidx = na->num_tx_desc;
3255 	nm_txq->nid = idx;
3256 	nm_txq->iqidx = iqidx;
3257 	nm_txq->cpl_ctrl0 = htobe32(V_TXPKT_OPCODE(CPL_TX_PKT) |
3258 	    V_TXPKT_INTF(pi->tx_chan) | V_TXPKT_PF(G_FW_VIID_PFN(vi->viid)) |
3259 	    V_TXPKT_VF(G_FW_VIID_VIN(vi->viid)) |
3260 	    V_TXPKT_VF_VLD(G_FW_VIID_VIVLD(vi->viid)));
3261 
3262 	snprintf(name, sizeof(name), "%d", idx);
3263 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD,
3264 	    NULL, "netmap tx queue");
3265 	children = SYSCTL_CHILDREN(oid);
3266 
3267 	SYSCTL_ADD_UINT(&vi->ctx, children, OID_AUTO, "cntxt_id", CTLFLAG_RD,
3268 	    &nm_txq->cntxt_id, 0, "SGE context id of the queue");
3269 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx",
3270 	    CTLTYPE_INT | CTLFLAG_RD, &nm_txq->cidx, 0, sysctl_uint16, "I",
3271 	    "consumer index");
3272 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "pidx",
3273 	    CTLTYPE_INT | CTLFLAG_RD, &nm_txq->pidx, 0, sysctl_uint16, "I",
3274 	    "producer index");
3275 
3276 	return (rc);
3277 }
3278 
3279 static int
3280 free_nm_txq(struct vi_info *vi, struct sge_nm_txq *nm_txq)
3281 {
3282 	struct adapter *sc = vi->pi->adapter;
3283 
3284 	free_ring(sc, nm_txq->desc_tag, nm_txq->desc_map, nm_txq->ba,
3285 	    nm_txq->desc);
3286 
3287 	return (0);
3288 }
3289 #endif
3290 
3291 static int
3292 ctrl_eq_alloc(struct adapter *sc, struct sge_eq *eq)
3293 {
3294 	int rc, cntxt_id;
3295 	struct fw_eq_ctrl_cmd c;
3296 	int qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE;
3297 
3298 	bzero(&c, sizeof(c));
3299 
3300 	c.op_to_vfn = htobe32(V_FW_CMD_OP(FW_EQ_CTRL_CMD) | F_FW_CMD_REQUEST |
3301 	    F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_EQ_CTRL_CMD_PFN(sc->pf) |
3302 	    V_FW_EQ_CTRL_CMD_VFN(0));
3303 	c.alloc_to_len16 = htobe32(F_FW_EQ_CTRL_CMD_ALLOC |
3304 	    F_FW_EQ_CTRL_CMD_EQSTART | FW_LEN16(c));
3305 	c.cmpliqid_eqid = htonl(V_FW_EQ_CTRL_CMD_CMPLIQID(eq->iqid));
3306 	c.physeqid_pkd = htobe32(0);
3307 	c.fetchszm_to_iqid =
3308 	    htobe32(V_FW_EQ_CTRL_CMD_HOSTFCMODE(X_HOSTFCMODE_STATUS_PAGE) |
3309 		V_FW_EQ_CTRL_CMD_PCIECHN(eq->tx_chan) |
3310 		F_FW_EQ_CTRL_CMD_FETCHRO | V_FW_EQ_CTRL_CMD_IQID(eq->iqid));
3311 	c.dcaen_to_eqsize =
3312 	    htobe32(V_FW_EQ_CTRL_CMD_FBMIN(X_FETCHBURSTMIN_64B) |
3313 		V_FW_EQ_CTRL_CMD_FBMAX(X_FETCHBURSTMAX_512B) |
3314 		V_FW_EQ_CTRL_CMD_CIDXFTHRESH(X_CIDXFLUSHTHRESH_32) |
3315 		V_FW_EQ_CTRL_CMD_EQSIZE(qsize));
3316 	c.eqaddr = htobe64(eq->ba);
3317 
3318 	rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c);
3319 	if (rc != 0) {
3320 		device_printf(sc->dev,
3321 		    "failed to create control queue %d: %d\n", eq->tx_chan, rc);
3322 		return (rc);
3323 	}
3324 	eq->flags |= EQ_ALLOCATED;
3325 
3326 	eq->cntxt_id = G_FW_EQ_CTRL_CMD_EQID(be32toh(c.cmpliqid_eqid));
3327 	cntxt_id = eq->cntxt_id - sc->sge.eq_start;
3328 	if (cntxt_id >= sc->sge.neq)
3329 	    panic("%s: eq->cntxt_id (%d) more than the max (%d)", __func__,
3330 		cntxt_id, sc->sge.neq - 1);
3331 	sc->sge.eqmap[cntxt_id] = eq;
3332 
3333 	return (rc);
3334 }
3335 
3336 static int
3337 eth_eq_alloc(struct adapter *sc, struct vi_info *vi, struct sge_eq *eq)
3338 {
3339 	int rc, cntxt_id;
3340 	struct fw_eq_eth_cmd c;
3341 	int qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE;
3342 
3343 	bzero(&c, sizeof(c));
3344 
3345 	c.op_to_vfn = htobe32(V_FW_CMD_OP(FW_EQ_ETH_CMD) | F_FW_CMD_REQUEST |
3346 	    F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_EQ_ETH_CMD_PFN(sc->pf) |
3347 	    V_FW_EQ_ETH_CMD_VFN(0));
3348 	c.alloc_to_len16 = htobe32(F_FW_EQ_ETH_CMD_ALLOC |
3349 	    F_FW_EQ_ETH_CMD_EQSTART | FW_LEN16(c));
3350 	c.autoequiqe_to_viid = htobe32(F_FW_EQ_ETH_CMD_AUTOEQUIQE |
3351 	    F_FW_EQ_ETH_CMD_AUTOEQUEQE | V_FW_EQ_ETH_CMD_VIID(vi->viid));
3352 	c.fetchszm_to_iqid =
3353 	    htobe32(V_FW_EQ_ETH_CMD_HOSTFCMODE(X_HOSTFCMODE_NONE) |
3354 		V_FW_EQ_ETH_CMD_PCIECHN(eq->tx_chan) | F_FW_EQ_ETH_CMD_FETCHRO |
3355 		V_FW_EQ_ETH_CMD_IQID(eq->iqid));
3356 	c.dcaen_to_eqsize = htobe32(V_FW_EQ_ETH_CMD_FBMIN(X_FETCHBURSTMIN_64B) |
3357 	    V_FW_EQ_ETH_CMD_FBMAX(X_FETCHBURSTMAX_512B) |
3358 	    V_FW_EQ_ETH_CMD_EQSIZE(qsize));
3359 	c.eqaddr = htobe64(eq->ba);
3360 
3361 	rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c);
3362 	if (rc != 0) {
3363 		device_printf(vi->dev,
3364 		    "failed to create Ethernet egress queue: %d\n", rc);
3365 		return (rc);
3366 	}
3367 	eq->flags |= EQ_ALLOCATED;
3368 
3369 	eq->cntxt_id = G_FW_EQ_ETH_CMD_EQID(be32toh(c.eqid_pkd));
3370 	eq->abs_id = G_FW_EQ_ETH_CMD_PHYSEQID(be32toh(c.physeqid_pkd));
3371 	cntxt_id = eq->cntxt_id - sc->sge.eq_start;
3372 	if (cntxt_id >= sc->sge.neq)
3373 	    panic("%s: eq->cntxt_id (%d) more than the max (%d)", __func__,
3374 		cntxt_id, sc->sge.neq - 1);
3375 	sc->sge.eqmap[cntxt_id] = eq;
3376 
3377 	return (rc);
3378 }
3379 
3380 #ifdef TCP_OFFLOAD
3381 static int
3382 ofld_eq_alloc(struct adapter *sc, struct vi_info *vi, struct sge_eq *eq)
3383 {
3384 	int rc, cntxt_id;
3385 	struct fw_eq_ofld_cmd c;
3386 	int qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE;
3387 
3388 	bzero(&c, sizeof(c));
3389 
3390 	c.op_to_vfn = htonl(V_FW_CMD_OP(FW_EQ_OFLD_CMD) | F_FW_CMD_REQUEST |
3391 	    F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_EQ_OFLD_CMD_PFN(sc->pf) |
3392 	    V_FW_EQ_OFLD_CMD_VFN(0));
3393 	c.alloc_to_len16 = htonl(F_FW_EQ_OFLD_CMD_ALLOC |
3394 	    F_FW_EQ_OFLD_CMD_EQSTART | FW_LEN16(c));
3395 	c.fetchszm_to_iqid =
3396 		htonl(V_FW_EQ_OFLD_CMD_HOSTFCMODE(X_HOSTFCMODE_NONE) |
3397 		    V_FW_EQ_OFLD_CMD_PCIECHN(eq->tx_chan) |
3398 		    F_FW_EQ_OFLD_CMD_FETCHRO | V_FW_EQ_OFLD_CMD_IQID(eq->iqid));
3399 	c.dcaen_to_eqsize =
3400 	    htobe32(V_FW_EQ_OFLD_CMD_FBMIN(X_FETCHBURSTMIN_64B) |
3401 		V_FW_EQ_OFLD_CMD_FBMAX(X_FETCHBURSTMAX_512B) |
3402 		V_FW_EQ_OFLD_CMD_EQSIZE(qsize));
3403 	c.eqaddr = htobe64(eq->ba);
3404 
3405 	rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c);
3406 	if (rc != 0) {
3407 		device_printf(vi->dev,
3408 		    "failed to create egress queue for TCP offload: %d\n", rc);
3409 		return (rc);
3410 	}
3411 	eq->flags |= EQ_ALLOCATED;
3412 
3413 	eq->cntxt_id = G_FW_EQ_OFLD_CMD_EQID(be32toh(c.eqid_pkd));
3414 	cntxt_id = eq->cntxt_id - sc->sge.eq_start;
3415 	if (cntxt_id >= sc->sge.neq)
3416 	    panic("%s: eq->cntxt_id (%d) more than the max (%d)", __func__,
3417 		cntxt_id, sc->sge.neq - 1);
3418 	sc->sge.eqmap[cntxt_id] = eq;
3419 
3420 	return (rc);
3421 }
3422 #endif
3423 
3424 static int
3425 alloc_eq(struct adapter *sc, struct vi_info *vi, struct sge_eq *eq)
3426 {
3427 	int rc, qsize;
3428 	size_t len;
3429 
3430 	mtx_init(&eq->eq_lock, eq->lockname, NULL, MTX_DEF);
3431 
3432 	qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE;
3433 	len = qsize * EQ_ESIZE;
3434 	rc = alloc_ring(sc, len, &eq->desc_tag, &eq->desc_map,
3435 	    &eq->ba, (void **)&eq->desc);
3436 	if (rc)
3437 		return (rc);
3438 
3439 	eq->pidx = eq->cidx = 0;
3440 	eq->equeqidx = eq->dbidx = 0;
3441 	eq->doorbells = sc->doorbells;
3442 
3443 	switch (eq->flags & EQ_TYPEMASK) {
3444 	case EQ_CTRL:
3445 		rc = ctrl_eq_alloc(sc, eq);
3446 		break;
3447 
3448 	case EQ_ETH:
3449 		rc = eth_eq_alloc(sc, vi, eq);
3450 		break;
3451 
3452 #ifdef TCP_OFFLOAD
3453 	case EQ_OFLD:
3454 		rc = ofld_eq_alloc(sc, vi, eq);
3455 		break;
3456 #endif
3457 
3458 	default:
3459 		panic("%s: invalid eq type %d.", __func__,
3460 		    eq->flags & EQ_TYPEMASK);
3461 	}
3462 	if (rc != 0) {
3463 		device_printf(sc->dev,
3464 		    "failed to allocate egress queue(%d): %d\n",
3465 		    eq->flags & EQ_TYPEMASK, rc);
3466 	}
3467 
3468 	if (isset(&eq->doorbells, DOORBELL_UDB) ||
3469 	    isset(&eq->doorbells, DOORBELL_UDBWC) ||
3470 	    isset(&eq->doorbells, DOORBELL_WCWR)) {
3471 		uint32_t s_qpp = sc->params.sge.eq_s_qpp;
3472 		uint32_t mask = (1 << s_qpp) - 1;
3473 		volatile uint8_t *udb;
3474 
3475 		udb = sc->udbs_base + UDBS_DB_OFFSET;
3476 		udb += (eq->cntxt_id >> s_qpp) << PAGE_SHIFT;	/* pg offset */
3477 		eq->udb_qid = eq->cntxt_id & mask;		/* id in page */
3478 		if (eq->udb_qid >= PAGE_SIZE / UDBS_SEG_SIZE)
3479 	    		clrbit(&eq->doorbells, DOORBELL_WCWR);
3480 		else {
3481 			udb += eq->udb_qid << UDBS_SEG_SHIFT;	/* seg offset */
3482 			eq->udb_qid = 0;
3483 		}
3484 		eq->udb = (volatile void *)udb;
3485 	}
3486 
3487 	return (rc);
3488 }
3489 
3490 static int
3491 free_eq(struct adapter *sc, struct sge_eq *eq)
3492 {
3493 	int rc;
3494 
3495 	if (eq->flags & EQ_ALLOCATED) {
3496 		switch (eq->flags & EQ_TYPEMASK) {
3497 		case EQ_CTRL:
3498 			rc = -t4_ctrl_eq_free(sc, sc->mbox, sc->pf, 0,
3499 			    eq->cntxt_id);
3500 			break;
3501 
3502 		case EQ_ETH:
3503 			rc = -t4_eth_eq_free(sc, sc->mbox, sc->pf, 0,
3504 			    eq->cntxt_id);
3505 			break;
3506 
3507 #ifdef TCP_OFFLOAD
3508 		case EQ_OFLD:
3509 			rc = -t4_ofld_eq_free(sc, sc->mbox, sc->pf, 0,
3510 			    eq->cntxt_id);
3511 			break;
3512 #endif
3513 
3514 		default:
3515 			panic("%s: invalid eq type %d.", __func__,
3516 			    eq->flags & EQ_TYPEMASK);
3517 		}
3518 		if (rc != 0) {
3519 			device_printf(sc->dev,
3520 			    "failed to free egress queue (%d): %d\n",
3521 			    eq->flags & EQ_TYPEMASK, rc);
3522 			return (rc);
3523 		}
3524 		eq->flags &= ~EQ_ALLOCATED;
3525 	}
3526 
3527 	free_ring(sc, eq->desc_tag, eq->desc_map, eq->ba, eq->desc);
3528 
3529 	if (mtx_initialized(&eq->eq_lock))
3530 		mtx_destroy(&eq->eq_lock);
3531 
3532 	bzero(eq, sizeof(*eq));
3533 	return (0);
3534 }
3535 
3536 static int
3537 alloc_wrq(struct adapter *sc, struct vi_info *vi, struct sge_wrq *wrq,
3538     struct sysctl_oid *oid)
3539 {
3540 	int rc;
3541 	struct sysctl_ctx_list *ctx = vi ? &vi->ctx : &sc->ctx;
3542 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
3543 
3544 	rc = alloc_eq(sc, vi, &wrq->eq);
3545 	if (rc)
3546 		return (rc);
3547 
3548 	wrq->adapter = sc;
3549 	TASK_INIT(&wrq->wrq_tx_task, 0, wrq_tx_drain, wrq);
3550 	TAILQ_INIT(&wrq->incomplete_wrs);
3551 	STAILQ_INIT(&wrq->wr_list);
3552 	wrq->nwr_pending = 0;
3553 	wrq->ndesc_needed = 0;
3554 
3555 	SYSCTL_ADD_UAUTO(ctx, children, OID_AUTO, "ba", CTLFLAG_RD,
3556 	    &wrq->eq.ba, "bus address of descriptor ring");
3557 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL,
3558 	    wrq->eq.sidx * EQ_ESIZE + sc->params.sge.spg_len,
3559 	    "desc ring size in bytes");
3560 	SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "cntxt_id", CTLFLAG_RD,
3561 	    &wrq->eq.cntxt_id, 0, "SGE context id of the queue");
3562 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cidx",
3563 	    CTLTYPE_INT | CTLFLAG_RD, &wrq->eq.cidx, 0, sysctl_uint16, "I",
3564 	    "consumer index");
3565 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "pidx",
3566 	    CTLTYPE_INT | CTLFLAG_RD, &wrq->eq.pidx, 0, sysctl_uint16, "I",
3567 	    "producer index");
3568 	SYSCTL_ADD_INT(ctx, children, OID_AUTO, "sidx", CTLFLAG_RD, NULL,
3569 	    wrq->eq.sidx, "status page index");
3570 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "tx_wrs_direct", CTLFLAG_RD,
3571 	    &wrq->tx_wrs_direct, "# of work requests (direct)");
3572 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "tx_wrs_copied", CTLFLAG_RD,
3573 	    &wrq->tx_wrs_copied, "# of work requests (copied)");
3574 	SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "tx_wrs_sspace", CTLFLAG_RD,
3575 	    &wrq->tx_wrs_ss, "# of work requests (copied from scratch space)");
3576 
3577 	return (rc);
3578 }
3579 
3580 static int
3581 free_wrq(struct adapter *sc, struct sge_wrq *wrq)
3582 {
3583 	int rc;
3584 
3585 	rc = free_eq(sc, &wrq->eq);
3586 	if (rc)
3587 		return (rc);
3588 
3589 	bzero(wrq, sizeof(*wrq));
3590 	return (0);
3591 }
3592 
3593 static int
3594 alloc_txq(struct vi_info *vi, struct sge_txq *txq, int idx,
3595     struct sysctl_oid *oid)
3596 {
3597 	int rc;
3598 	struct port_info *pi = vi->pi;
3599 	struct adapter *sc = pi->adapter;
3600 	struct sge_eq *eq = &txq->eq;
3601 	char name[16];
3602 	struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid);
3603 
3604 	rc = mp_ring_alloc(&txq->r, eq->sidx, txq, eth_tx, can_resume_eth_tx,
3605 	    M_CXGBE, M_WAITOK);
3606 	if (rc != 0) {
3607 		device_printf(sc->dev, "failed to allocate mp_ring: %d\n", rc);
3608 		return (rc);
3609 	}
3610 
3611 	rc = alloc_eq(sc, vi, eq);
3612 	if (rc != 0) {
3613 		mp_ring_free(txq->r);
3614 		txq->r = NULL;
3615 		return (rc);
3616 	}
3617 
3618 	/* Can't fail after this point. */
3619 
3620 	if (idx == 0)
3621 		sc->sge.eq_base = eq->abs_id - eq->cntxt_id;
3622 	else
3623 		KASSERT(eq->cntxt_id + sc->sge.eq_base == eq->abs_id,
3624 		    ("eq_base mismatch"));
3625 	KASSERT(sc->sge.eq_base == 0 || sc->flags & IS_VF,
3626 	    ("PF with non-zero eq_base"));
3627 
3628 	TASK_INIT(&txq->tx_reclaim_task, 0, tx_reclaim, eq);
3629 	txq->ifp = vi->ifp;
3630 	txq->gl = sglist_alloc(TX_SGL_SEGS, M_WAITOK);
3631 	if (sc->flags & IS_VF)
3632 		txq->cpl_ctrl0 = htobe32(V_TXPKT_OPCODE(CPL_TX_PKT_XT) |
3633 		    V_TXPKT_INTF(pi->tx_chan));
3634 	else
3635 		txq->cpl_ctrl0 = htobe32(V_TXPKT_OPCODE(CPL_TX_PKT) |
3636 		    V_TXPKT_INTF(pi->tx_chan) |
3637 		    V_TXPKT_PF(G_FW_VIID_PFN(vi->viid)) |
3638 		    V_TXPKT_VF(G_FW_VIID_VIN(vi->viid)) |
3639 		    V_TXPKT_VF_VLD(G_FW_VIID_VIVLD(vi->viid)));
3640 	txq->tc_idx = -1;
3641 	txq->sdesc = malloc(eq->sidx * sizeof(struct tx_sdesc), M_CXGBE,
3642 	    M_ZERO | M_WAITOK);
3643 
3644 	snprintf(name, sizeof(name), "%d", idx);
3645 	oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD,
3646 	    NULL, "tx queue");
3647 	children = SYSCTL_CHILDREN(oid);
3648 
3649 	SYSCTL_ADD_UAUTO(&vi->ctx, children, OID_AUTO, "ba", CTLFLAG_RD,
3650 	    &eq->ba, "bus address of descriptor ring");
3651 	SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL,
3652 	    eq->sidx * EQ_ESIZE + sc->params.sge.spg_len,
3653 	    "desc ring size in bytes");
3654 	SYSCTL_ADD_UINT(&vi->ctx, children, OID_AUTO, "abs_id", CTLFLAG_RD,
3655 	    &eq->abs_id, 0, "absolute id of the queue");
3656 	SYSCTL_ADD_UINT(&vi->ctx, children, OID_AUTO, "cntxt_id", CTLFLAG_RD,
3657 	    &eq->cntxt_id, 0, "SGE context id of the queue");
3658 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx",
3659 	    CTLTYPE_INT | CTLFLAG_RD, &eq->cidx, 0, sysctl_uint16, "I",
3660 	    "consumer index");
3661 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "pidx",
3662 	    CTLTYPE_INT | CTLFLAG_RD, &eq->pidx, 0, sysctl_uint16, "I",
3663 	    "producer index");
3664 	SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "sidx", CTLFLAG_RD, NULL,
3665 	    eq->sidx, "status page index");
3666 
3667 	SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "tc",
3668 	    CTLTYPE_INT | CTLFLAG_RW, vi, idx, sysctl_tc, "I",
3669 	    "traffic class (-1 means none)");
3670 
3671 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txcsum", CTLFLAG_RD,
3672 	    &txq->txcsum, "# of times hardware assisted with checksum");
3673 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "vlan_insertion",
3674 	    CTLFLAG_RD, &txq->vlan_insertion,
3675 	    "# of times hardware inserted 802.1Q tag");
3676 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "tso_wrs", CTLFLAG_RD,
3677 	    &txq->tso_wrs, "# of TSO work requests");
3678 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "imm_wrs", CTLFLAG_RD,
3679 	    &txq->imm_wrs, "# of work requests with immediate data");
3680 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "sgl_wrs", CTLFLAG_RD,
3681 	    &txq->sgl_wrs, "# of work requests with direct SGL");
3682 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkt_wrs", CTLFLAG_RD,
3683 	    &txq->txpkt_wrs, "# of txpkt work requests (one pkt/WR)");
3684 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts0_wrs",
3685 	    CTLFLAG_RD, &txq->txpkts0_wrs,
3686 	    "# of txpkts (type 0) work requests");
3687 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts1_wrs",
3688 	    CTLFLAG_RD, &txq->txpkts1_wrs,
3689 	    "# of txpkts (type 1) work requests");
3690 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts0_pkts",
3691 	    CTLFLAG_RD, &txq->txpkts0_pkts,
3692 	    "# of frames tx'd using type0 txpkts work requests");
3693 	SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts1_pkts",
3694 	    CTLFLAG_RD, &txq->txpkts1_pkts,
3695 	    "# of frames tx'd using type1 txpkts work requests");
3696 
3697 	SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_enqueues",
3698 	    CTLFLAG_RD, &txq->r->enqueues,
3699 	    "# of enqueues to the mp_ring for this queue");
3700 	SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_drops",
3701 	    CTLFLAG_RD, &txq->r->drops,
3702 	    "# of drops in the mp_ring for this queue");
3703 	SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_starts",
3704 	    CTLFLAG_RD, &txq->r->starts,
3705 	    "# of normal consumer starts in the mp_ring for this queue");
3706 	SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_stalls",
3707 	    CTLFLAG_RD, &txq->r->stalls,
3708 	    "# of consumer stalls in the mp_ring for this queue");
3709 	SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_restarts",
3710 	    CTLFLAG_RD, &txq->r->restarts,
3711 	    "# of consumer restarts in the mp_ring for this queue");
3712 	SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_abdications",
3713 	    CTLFLAG_RD, &txq->r->abdications,
3714 	    "# of consumer abdications in the mp_ring for this queue");
3715 
3716 	return (0);
3717 }
3718 
3719 static int
3720 free_txq(struct vi_info *vi, struct sge_txq *txq)
3721 {
3722 	int rc;
3723 	struct adapter *sc = vi->pi->adapter;
3724 	struct sge_eq *eq = &txq->eq;
3725 
3726 	rc = free_eq(sc, eq);
3727 	if (rc)
3728 		return (rc);
3729 
3730 	sglist_free(txq->gl);
3731 	free(txq->sdesc, M_CXGBE);
3732 	mp_ring_free(txq->r);
3733 
3734 	bzero(txq, sizeof(*txq));
3735 	return (0);
3736 }
3737 
3738 static void
3739 oneseg_dma_callback(void *arg, bus_dma_segment_t *segs, int nseg, int error)
3740 {
3741 	bus_addr_t *ba = arg;
3742 
3743 	KASSERT(nseg == 1,
3744 	    ("%s meant for single segment mappings only.", __func__));
3745 
3746 	*ba = error ? 0 : segs->ds_addr;
3747 }
3748 
3749 static inline void
3750 ring_fl_db(struct adapter *sc, struct sge_fl *fl)
3751 {
3752 	uint32_t n, v;
3753 
3754 	n = IDXDIFF(fl->pidx / 8, fl->dbidx, fl->sidx);
3755 	MPASS(n > 0);
3756 
3757 	wmb();
3758 	v = fl->dbval | V_PIDX(n);
3759 	if (fl->udb)
3760 		*fl->udb = htole32(v);
3761 	else
3762 		t4_write_reg(sc, sc->sge_kdoorbell_reg, v);
3763 	IDXINCR(fl->dbidx, n, fl->sidx);
3764 }
3765 
3766 /*
3767  * Fills up the freelist by allocating up to 'n' buffers.  Buffers that are
3768  * recycled do not count towards this allocation budget.
3769  *
3770  * Returns non-zero to indicate that this freelist should be added to the list
3771  * of starving freelists.
3772  */
3773 static int
3774 refill_fl(struct adapter *sc, struct sge_fl *fl, int n)
3775 {
3776 	__be64 *d;
3777 	struct fl_sdesc *sd;
3778 	uintptr_t pa;
3779 	caddr_t cl;
3780 	struct cluster_layout *cll;
3781 	struct sw_zone_info *swz;
3782 	struct cluster_metadata *clm;
3783 	uint16_t max_pidx;
3784 	uint16_t hw_cidx = fl->hw_cidx;		/* stable snapshot */
3785 
3786 	FL_LOCK_ASSERT_OWNED(fl);
3787 
3788 	/*
3789 	 * We always stop at the beginning of the hardware descriptor that's just
3790 	 * before the one with the hw cidx.  This is to avoid hw pidx = hw cidx,
3791 	 * which would mean an empty freelist to the chip.
3792 	 */
3793 	max_pidx = __predict_false(hw_cidx == 0) ? fl->sidx - 1 : hw_cidx - 1;
3794 	if (fl->pidx == max_pidx * 8)
3795 		return (0);
3796 
3797 	d = &fl->desc[fl->pidx];
3798 	sd = &fl->sdesc[fl->pidx];
3799 	cll = &fl->cll_def;	/* default layout */
3800 	swz = &sc->sge.sw_zone_info[cll->zidx];
3801 
3802 	while (n > 0) {
3803 
3804 		if (sd->cl != NULL) {
3805 
3806 			if (sd->nmbuf == 0) {
3807 				/*
3808 				 * Fast recycle without involving any atomics on
3809 				 * the cluster's metadata (if the cluster has
3810 				 * metadata).  This happens when all frames
3811 				 * received in the cluster were small enough to
3812 				 * fit within a single mbuf each.
3813 				 */
3814 				fl->cl_fast_recycled++;
3815 #ifdef INVARIANTS
3816 				clm = cl_metadata(sc, fl, &sd->cll, sd->cl);
3817 				if (clm != NULL)
3818 					MPASS(clm->refcount == 1);
3819 #endif
3820 				goto recycled_fast;
3821 			}
3822 
3823 			/*
3824 			 * Cluster is guaranteed to have metadata.  Clusters
3825 			 * without metadata always take the fast recycle path
3826 			 * when they're recycled.
3827 			 */
3828 			clm = cl_metadata(sc, fl, &sd->cll, sd->cl);
3829 			MPASS(clm != NULL);
3830 
3831 			if (atomic_fetchadd_int(&clm->refcount, -1) == 1) {
3832 				fl->cl_recycled++;
3833 				counter_u64_add(extfree_rels, 1);
3834 				goto recycled;
3835 			}
3836 			sd->cl = NULL;	/* gave up my reference */
3837 		}
3838 		MPASS(sd->cl == NULL);
3839 alloc:
3840 		cl = uma_zalloc(swz->zone, M_NOWAIT);
3841 		if (__predict_false(cl == NULL)) {
3842 			if (cll == &fl->cll_alt || fl->cll_alt.zidx == -1 ||
3843 			    fl->cll_def.zidx == fl->cll_alt.zidx)
3844 				break;
3845 
3846 			/* fall back to the safe zone */
3847 			cll = &fl->cll_alt;
3848 			swz = &sc->sge.sw_zone_info[cll->zidx];
3849 			goto alloc;
3850 		}
3851 		fl->cl_allocated++;
3852 		n--;
3853 
3854 		pa = pmap_kextract((vm_offset_t)cl);
3855 		pa += cll->region1;
3856 		sd->cl = cl;
3857 		sd->cll = *cll;
3858 		*d = htobe64(pa | cll->hwidx);
3859 		clm = cl_metadata(sc, fl, cll, cl);
3860 		if (clm != NULL) {
3861 recycled:
3862 #ifdef INVARIANTS
3863 			clm->sd = sd;
3864 #endif
3865 			clm->refcount = 1;
3866 		}
3867 		sd->nmbuf = 0;
3868 recycled_fast:
3869 		d++;
3870 		sd++;
3871 		if (__predict_false(++fl->pidx % 8 == 0)) {
3872 			uint16_t pidx = fl->pidx / 8;
3873 
3874 			if (__predict_false(pidx == fl->sidx)) {
3875 				fl->pidx = 0;
3876 				pidx = 0;
3877 				sd = fl->sdesc;
3878 				d = fl->desc;
3879 			}
3880 			if (pidx == max_pidx)
3881 				break;
3882 
3883 			if (IDXDIFF(pidx, fl->dbidx, fl->sidx) >= 4)
3884 				ring_fl_db(sc, fl);
3885 		}
3886 	}
3887 
3888 	if (fl->pidx / 8 != fl->dbidx)
3889 		ring_fl_db(sc, fl);
3890 
3891 	return (FL_RUNNING_LOW(fl) && !(fl->flags & FL_STARVING));
3892 }
3893 
3894 /*
3895  * Attempt to refill all starving freelists.
3896  */
3897 static void
3898 refill_sfl(void *arg)
3899 {
3900 	struct adapter *sc = arg;
3901 	struct sge_fl *fl, *fl_temp;
3902 
3903 	mtx_assert(&sc->sfl_lock, MA_OWNED);
3904 	TAILQ_FOREACH_SAFE(fl, &sc->sfl, link, fl_temp) {
3905 		FL_LOCK(fl);
3906 		refill_fl(sc, fl, 64);
3907 		if (FL_NOT_RUNNING_LOW(fl) || fl->flags & FL_DOOMED) {
3908 			TAILQ_REMOVE(&sc->sfl, fl, link);
3909 			fl->flags &= ~FL_STARVING;
3910 		}
3911 		FL_UNLOCK(fl);
3912 	}
3913 
3914 	if (!TAILQ_EMPTY(&sc->sfl))
3915 		callout_schedule(&sc->sfl_callout, hz / 5);
3916 }
3917 
3918 static int
3919 alloc_fl_sdesc(struct sge_fl *fl)
3920 {
3921 
3922 	fl->sdesc = malloc(fl->sidx * 8 * sizeof(struct fl_sdesc), M_CXGBE,
3923 	    M_ZERO | M_WAITOK);
3924 
3925 	return (0);
3926 }
3927 
3928 static void
3929 free_fl_sdesc(struct adapter *sc, struct sge_fl *fl)
3930 {
3931 	struct fl_sdesc *sd;
3932 	struct cluster_metadata *clm;
3933 	struct cluster_layout *cll;
3934 	int i;
3935 
3936 	sd = fl->sdesc;
3937 	for (i = 0; i < fl->sidx * 8; i++, sd++) {
3938 		if (sd->cl == NULL)
3939 			continue;
3940 
3941 		cll = &sd->cll;
3942 		clm = cl_metadata(sc, fl, cll, sd->cl);
3943 		if (sd->nmbuf == 0)
3944 			uma_zfree(sc->sge.sw_zone_info[cll->zidx].zone, sd->cl);
3945 		else if (clm && atomic_fetchadd_int(&clm->refcount, -1) == 1) {
3946 			uma_zfree(sc->sge.sw_zone_info[cll->zidx].zone, sd->cl);
3947 			counter_u64_add(extfree_rels, 1);
3948 		}
3949 		sd->cl = NULL;
3950 	}
3951 
3952 	free(fl->sdesc, M_CXGBE);
3953 	fl->sdesc = NULL;
3954 }
3955 
3956 static inline void
3957 get_pkt_gl(struct mbuf *m, struct sglist *gl)
3958 {
3959 	int rc;
3960 
3961 	M_ASSERTPKTHDR(m);
3962 
3963 	sglist_reset(gl);
3964 	rc = sglist_append_mbuf(gl, m);
3965 	if (__predict_false(rc != 0)) {
3966 		panic("%s: mbuf %p (%d segs) was vetted earlier but now fails "
3967 		    "with %d.", __func__, m, mbuf_nsegs(m), rc);
3968 	}
3969 
3970 	KASSERT(gl->sg_nseg == mbuf_nsegs(m),
3971 	    ("%s: nsegs changed for mbuf %p from %d to %d", __func__, m,
3972 	    mbuf_nsegs(m), gl->sg_nseg));
3973 	KASSERT(gl->sg_nseg > 0 &&
3974 	    gl->sg_nseg <= (needs_tso(m) ? TX_SGL_SEGS_TSO : TX_SGL_SEGS),
3975 	    ("%s: %d segments, should have been 1 <= nsegs <= %d", __func__,
3976 		gl->sg_nseg, needs_tso(m) ? TX_SGL_SEGS_TSO : TX_SGL_SEGS));
3977 }
3978 
3979 /*
3980  * len16 for a txpkt WR with a GL.  Includes the firmware work request header.
3981  */
3982 static inline u_int
3983 txpkt_len16(u_int nsegs, u_int tso)
3984 {
3985 	u_int n;
3986 
3987 	MPASS(nsegs > 0);
3988 
3989 	nsegs--; /* first segment is part of ulptx_sgl */
3990 	n = sizeof(struct fw_eth_tx_pkt_wr) + sizeof(struct cpl_tx_pkt_core) +
3991 	    sizeof(struct ulptx_sgl) + 8 * ((3 * nsegs) / 2 + (nsegs & 1));
3992 	if (tso)
3993 		n += sizeof(struct cpl_tx_pkt_lso_core);
3994 
3995 	return (howmany(n, 16));
3996 }
3997 
3998 /*
3999  * len16 for a txpkt_vm WR with a GL.  Includes the firmware work
4000  * request header.
4001  */
4002 static inline u_int
4003 txpkt_vm_len16(u_int nsegs, u_int tso)
4004 {
4005 	u_int n;
4006 
4007 	MPASS(nsegs > 0);
4008 
4009 	nsegs--; /* first segment is part of ulptx_sgl */
4010 	n = sizeof(struct fw_eth_tx_pkt_vm_wr) +
4011 	    sizeof(struct cpl_tx_pkt_core) +
4012 	    sizeof(struct ulptx_sgl) + 8 * ((3 * nsegs) / 2 + (nsegs & 1));
4013 	if (tso)
4014 		n += sizeof(struct cpl_tx_pkt_lso_core);
4015 
4016 	return (howmany(n, 16));
4017 }
4018 
4019 /*
4020  * len16 for a txpkts type 0 WR with a GL.  Does not include the firmware work
4021  * request header.
4022  */
4023 static inline u_int
4024 txpkts0_len16(u_int nsegs)
4025 {
4026 	u_int n;
4027 
4028 	MPASS(nsegs > 0);
4029 
4030 	nsegs--; /* first segment is part of ulptx_sgl */
4031 	n = sizeof(struct ulp_txpkt) + sizeof(struct ulptx_idata) +
4032 	    sizeof(struct cpl_tx_pkt_core) + sizeof(struct ulptx_sgl) +
4033 	    8 * ((3 * nsegs) / 2 + (nsegs & 1));
4034 
4035 	return (howmany(n, 16));
4036 }
4037 
4038 /*
4039  * len16 for a txpkts type 1 WR with a GL.  Does not include the firmware work
4040  * request header.
4041  */
4042 static inline u_int
4043 txpkts1_len16(void)
4044 {
4045 	u_int n;
4046 
4047 	n = sizeof(struct cpl_tx_pkt_core) + sizeof(struct ulptx_sgl);
4048 
4049 	return (howmany(n, 16));
4050 }
4051 
4052 static inline u_int
4053 imm_payload(u_int ndesc)
4054 {
4055 	u_int n;
4056 
4057 	n = ndesc * EQ_ESIZE - sizeof(struct fw_eth_tx_pkt_wr) -
4058 	    sizeof(struct cpl_tx_pkt_core);
4059 
4060 	return (n);
4061 }
4062 
4063 /*
4064  * Write a VM txpkt WR for this packet to the hardware descriptors, update the
4065  * software descriptor, and advance the pidx.  It is guaranteed that enough
4066  * descriptors are available.
4067  *
4068  * The return value is the # of hardware descriptors used.
4069  */
4070 static u_int
4071 write_txpkt_vm_wr(struct adapter *sc, struct sge_txq *txq,
4072     struct fw_eth_tx_pkt_vm_wr *wr, struct mbuf *m0, u_int available)
4073 {
4074 	struct sge_eq *eq = &txq->eq;
4075 	struct tx_sdesc *txsd;
4076 	struct cpl_tx_pkt_core *cpl;
4077 	uint32_t ctrl;	/* used in many unrelated places */
4078 	uint64_t ctrl1;
4079 	int csum_type, len16, ndesc, pktlen, nsegs;
4080 	caddr_t dst;
4081 
4082 	TXQ_LOCK_ASSERT_OWNED(txq);
4083 	M_ASSERTPKTHDR(m0);
4084 	MPASS(available > 0 && available < eq->sidx);
4085 
4086 	len16 = mbuf_len16(m0);
4087 	nsegs = mbuf_nsegs(m0);
4088 	pktlen = m0->m_pkthdr.len;
4089 	ctrl = sizeof(struct cpl_tx_pkt_core);
4090 	if (needs_tso(m0))
4091 		ctrl += sizeof(struct cpl_tx_pkt_lso_core);
4092 	ndesc = howmany(len16, EQ_ESIZE / 16);
4093 	MPASS(ndesc <= available);
4094 
4095 	/* Firmware work request header */
4096 	MPASS(wr == (void *)&eq->desc[eq->pidx]);
4097 	wr->op_immdlen = htobe32(V_FW_WR_OP(FW_ETH_TX_PKT_VM_WR) |
4098 	    V_FW_ETH_TX_PKT_WR_IMMDLEN(ctrl));
4099 
4100 	ctrl = V_FW_WR_LEN16(len16);
4101 	wr->equiq_to_len16 = htobe32(ctrl);
4102 	wr->r3[0] = 0;
4103 	wr->r3[1] = 0;
4104 
4105 	/*
4106 	 * Copy over ethmacdst, ethmacsrc, ethtype, and vlantci.
4107 	 * vlantci is ignored unless the ethtype is 0x8100, so it's
4108 	 * simpler to always copy it rather than making it
4109 	 * conditional.  Also, it seems that we do not have to set
4110 	 * vlantci or fake the ethtype when doing VLAN tag insertion.
4111 	 */
4112 	m_copydata(m0, 0, sizeof(struct ether_header) + 2, wr->ethmacdst);
4113 
4114 	csum_type = -1;
4115 	if (needs_tso(m0)) {
4116 		struct cpl_tx_pkt_lso_core *lso = (void *)(wr + 1);
4117 
4118 		KASSERT(m0->m_pkthdr.l2hlen > 0 && m0->m_pkthdr.l3hlen > 0 &&
4119 		    m0->m_pkthdr.l4hlen > 0,
4120 		    ("%s: mbuf %p needs TSO but missing header lengths",
4121 			__func__, m0));
4122 
4123 		ctrl = V_LSO_OPCODE(CPL_TX_PKT_LSO) | F_LSO_FIRST_SLICE |
4124 		    F_LSO_LAST_SLICE | V_LSO_IPHDR_LEN(m0->m_pkthdr.l3hlen >> 2)
4125 		    | V_LSO_TCPHDR_LEN(m0->m_pkthdr.l4hlen >> 2);
4126 		if (m0->m_pkthdr.l2hlen == sizeof(struct ether_vlan_header))
4127 			ctrl |= V_LSO_ETHHDR_LEN(1);
4128 		if (m0->m_pkthdr.l3hlen == sizeof(struct ip6_hdr))
4129 			ctrl |= F_LSO_IPV6;
4130 
4131 		lso->lso_ctrl = htobe32(ctrl);
4132 		lso->ipid_ofst = htobe16(0);
4133 		lso->mss = htobe16(m0->m_pkthdr.tso_segsz);
4134 		lso->seqno_offset = htobe32(0);
4135 		lso->len = htobe32(pktlen);
4136 
4137 		if (m0->m_pkthdr.l3hlen == sizeof(struct ip6_hdr))
4138 			csum_type = TX_CSUM_TCPIP6;
4139 		else
4140 			csum_type = TX_CSUM_TCPIP;
4141 
4142 		cpl = (void *)(lso + 1);
4143 
4144 		txq->tso_wrs++;
4145 	} else {
4146 		if (m0->m_pkthdr.csum_flags & CSUM_IP_TCP)
4147 			csum_type = TX_CSUM_TCPIP;
4148 		else if (m0->m_pkthdr.csum_flags & CSUM_IP_UDP)
4149 			csum_type = TX_CSUM_UDPIP;
4150 		else if (m0->m_pkthdr.csum_flags & CSUM_IP6_TCP)
4151 			csum_type = TX_CSUM_TCPIP6;
4152 		else if (m0->m_pkthdr.csum_flags & CSUM_IP6_UDP)
4153 			csum_type = TX_CSUM_UDPIP6;
4154 #if defined(INET)
4155 		else if (m0->m_pkthdr.csum_flags & CSUM_IP) {
4156 			/*
4157 			 * XXX: The firmware appears to stomp on the
4158 			 * fragment/flags field of the IP header when
4159 			 * using TX_CSUM_IP.  Fall back to doing
4160 			 * software checksums.
4161 			 */
4162 			u_short *sump;
4163 			struct mbuf *m;
4164 			int offset;
4165 
4166 			m = m0;
4167 			offset = 0;
4168 			sump = m_advance(&m, &offset, m0->m_pkthdr.l2hlen +
4169 			    offsetof(struct ip, ip_sum));
4170 			*sump = in_cksum_skip(m0, m0->m_pkthdr.l2hlen +
4171 			    m0->m_pkthdr.l3hlen, m0->m_pkthdr.l2hlen);
4172 			m0->m_pkthdr.csum_flags &= ~CSUM_IP;
4173 		}
4174 #endif
4175 
4176 		cpl = (void *)(wr + 1);
4177 	}
4178 
4179 	/* Checksum offload */
4180 	ctrl1 = 0;
4181 	if (needs_l3_csum(m0) == 0)
4182 		ctrl1 |= F_TXPKT_IPCSUM_DIS;
4183 	if (csum_type >= 0) {
4184 		KASSERT(m0->m_pkthdr.l2hlen > 0 && m0->m_pkthdr.l3hlen > 0,
4185 	    ("%s: mbuf %p needs checksum offload but missing header lengths",
4186 			__func__, m0));
4187 
4188 		if (chip_id(sc) <= CHELSIO_T5) {
4189 			ctrl1 |= V_TXPKT_ETHHDR_LEN(m0->m_pkthdr.l2hlen -
4190 			    ETHER_HDR_LEN);
4191 		} else {
4192 			ctrl1 |= V_T6_TXPKT_ETHHDR_LEN(m0->m_pkthdr.l2hlen -
4193 			    ETHER_HDR_LEN);
4194 		}
4195 		ctrl1 |= V_TXPKT_IPHDR_LEN(m0->m_pkthdr.l3hlen);
4196 		ctrl1 |= V_TXPKT_CSUM_TYPE(csum_type);
4197 	} else
4198 		ctrl1 |= F_TXPKT_L4CSUM_DIS;
4199 	if (m0->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP |
4200 	    CSUM_UDP_IPV6 | CSUM_TCP_IPV6 | CSUM_TSO))
4201 		txq->txcsum++;	/* some hardware assistance provided */
4202 
4203 	/* VLAN tag insertion */
4204 	if (needs_vlan_insertion(m0)) {
4205 		ctrl1 |= F_TXPKT_VLAN_VLD |
4206 		    V_TXPKT_VLAN(m0->m_pkthdr.ether_vtag);
4207 		txq->vlan_insertion++;
4208 	}
4209 
4210 	/* CPL header */
4211 	cpl->ctrl0 = txq->cpl_ctrl0;
4212 	cpl->pack = 0;
4213 	cpl->len = htobe16(pktlen);
4214 	cpl->ctrl1 = htobe64(ctrl1);
4215 
4216 	/* SGL */
4217 	dst = (void *)(cpl + 1);
4218 
4219 	/*
4220 	 * A packet using TSO will use up an entire descriptor for the
4221 	 * firmware work request header, LSO CPL, and TX_PKT_XT CPL.
4222 	 * If this descriptor is the last descriptor in the ring, wrap
4223 	 * around to the front of the ring explicitly for the start of
4224 	 * the sgl.
4225 	 */
4226 	if (dst == (void *)&eq->desc[eq->sidx]) {
4227 		dst = (void *)&eq->desc[0];
4228 		write_gl_to_txd(txq, m0, &dst, 0);
4229 	} else
4230 		write_gl_to_txd(txq, m0, &dst, eq->sidx - ndesc < eq->pidx);
4231 	txq->sgl_wrs++;
4232 
4233 	txq->txpkt_wrs++;
4234 
4235 	txsd = &txq->sdesc[eq->pidx];
4236 	txsd->m = m0;
4237 	txsd->desc_used = ndesc;
4238 
4239 	return (ndesc);
4240 }
4241 
4242 /*
4243  * Write a txpkt WR for this packet to the hardware descriptors, update the
4244  * software descriptor, and advance the pidx.  It is guaranteed that enough
4245  * descriptors are available.
4246  *
4247  * The return value is the # of hardware descriptors used.
4248  */
4249 static u_int
4250 write_txpkt_wr(struct sge_txq *txq, struct fw_eth_tx_pkt_wr *wr,
4251     struct mbuf *m0, u_int available)
4252 {
4253 	struct sge_eq *eq = &txq->eq;
4254 	struct tx_sdesc *txsd;
4255 	struct cpl_tx_pkt_core *cpl;
4256 	uint32_t ctrl;	/* used in many unrelated places */
4257 	uint64_t ctrl1;
4258 	int len16, ndesc, pktlen, nsegs;
4259 	caddr_t dst;
4260 
4261 	TXQ_LOCK_ASSERT_OWNED(txq);
4262 	M_ASSERTPKTHDR(m0);
4263 	MPASS(available > 0 && available < eq->sidx);
4264 
4265 	len16 = mbuf_len16(m0);
4266 	nsegs = mbuf_nsegs(m0);
4267 	pktlen = m0->m_pkthdr.len;
4268 	ctrl = sizeof(struct cpl_tx_pkt_core);
4269 	if (needs_tso(m0))
4270 		ctrl += sizeof(struct cpl_tx_pkt_lso_core);
4271 	else if (pktlen <= imm_payload(2) && available >= 2) {
4272 		/* Immediate data.  Recalculate len16 and set nsegs to 0. */
4273 		ctrl += pktlen;
4274 		len16 = howmany(sizeof(struct fw_eth_tx_pkt_wr) +
4275 		    sizeof(struct cpl_tx_pkt_core) + pktlen, 16);
4276 		nsegs = 0;
4277 	}
4278 	ndesc = howmany(len16, EQ_ESIZE / 16);
4279 	MPASS(ndesc <= available);
4280 
4281 	/* Firmware work request header */
4282 	MPASS(wr == (void *)&eq->desc[eq->pidx]);
4283 	wr->op_immdlen = htobe32(V_FW_WR_OP(FW_ETH_TX_PKT_WR) |
4284 	    V_FW_ETH_TX_PKT_WR_IMMDLEN(ctrl));
4285 
4286 	ctrl = V_FW_WR_LEN16(len16);
4287 	wr->equiq_to_len16 = htobe32(ctrl);
4288 	wr->r3 = 0;
4289 
4290 	if (needs_tso(m0)) {
4291 		struct cpl_tx_pkt_lso_core *lso = (void *)(wr + 1);
4292 
4293 		KASSERT(m0->m_pkthdr.l2hlen > 0 && m0->m_pkthdr.l3hlen > 0 &&
4294 		    m0->m_pkthdr.l4hlen > 0,
4295 		    ("%s: mbuf %p needs TSO but missing header lengths",
4296 			__func__, m0));
4297 
4298 		ctrl = V_LSO_OPCODE(CPL_TX_PKT_LSO) | F_LSO_FIRST_SLICE |
4299 		    F_LSO_LAST_SLICE | V_LSO_IPHDR_LEN(m0->m_pkthdr.l3hlen >> 2)
4300 		    | V_LSO_TCPHDR_LEN(m0->m_pkthdr.l4hlen >> 2);
4301 		if (m0->m_pkthdr.l2hlen == sizeof(struct ether_vlan_header))
4302 			ctrl |= V_LSO_ETHHDR_LEN(1);
4303 		if (m0->m_pkthdr.l3hlen == sizeof(struct ip6_hdr))
4304 			ctrl |= F_LSO_IPV6;
4305 
4306 		lso->lso_ctrl = htobe32(ctrl);
4307 		lso->ipid_ofst = htobe16(0);
4308 		lso->mss = htobe16(m0->m_pkthdr.tso_segsz);
4309 		lso->seqno_offset = htobe32(0);
4310 		lso->len = htobe32(pktlen);
4311 
4312 		cpl = (void *)(lso + 1);
4313 
4314 		txq->tso_wrs++;
4315 	} else
4316 		cpl = (void *)(wr + 1);
4317 
4318 	/* Checksum offload */
4319 	ctrl1 = 0;
4320 	if (needs_l3_csum(m0) == 0)
4321 		ctrl1 |= F_TXPKT_IPCSUM_DIS;
4322 	if (needs_l4_csum(m0) == 0)
4323 		ctrl1 |= F_TXPKT_L4CSUM_DIS;
4324 	if (m0->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP |
4325 	    CSUM_UDP_IPV6 | CSUM_TCP_IPV6 | CSUM_TSO))
4326 		txq->txcsum++;	/* some hardware assistance provided */
4327 
4328 	/* VLAN tag insertion */
4329 	if (needs_vlan_insertion(m0)) {
4330 		ctrl1 |= F_TXPKT_VLAN_VLD | V_TXPKT_VLAN(m0->m_pkthdr.ether_vtag);
4331 		txq->vlan_insertion++;
4332 	}
4333 
4334 	/* CPL header */
4335 	cpl->ctrl0 = txq->cpl_ctrl0;
4336 	cpl->pack = 0;
4337 	cpl->len = htobe16(pktlen);
4338 	cpl->ctrl1 = htobe64(ctrl1);
4339 
4340 	/* SGL */
4341 	dst = (void *)(cpl + 1);
4342 	if (nsegs > 0) {
4343 
4344 		write_gl_to_txd(txq, m0, &dst, eq->sidx - ndesc < eq->pidx);
4345 		txq->sgl_wrs++;
4346 	} else {
4347 		struct mbuf *m;
4348 
4349 		for (m = m0; m != NULL; m = m->m_next) {
4350 			copy_to_txd(eq, mtod(m, caddr_t), &dst, m->m_len);
4351 #ifdef INVARIANTS
4352 			pktlen -= m->m_len;
4353 #endif
4354 		}
4355 #ifdef INVARIANTS
4356 		KASSERT(pktlen == 0, ("%s: %d bytes left.", __func__, pktlen));
4357 #endif
4358 		txq->imm_wrs++;
4359 	}
4360 
4361 	txq->txpkt_wrs++;
4362 
4363 	txsd = &txq->sdesc[eq->pidx];
4364 	txsd->m = m0;
4365 	txsd->desc_used = ndesc;
4366 
4367 	return (ndesc);
4368 }
4369 
4370 static int
4371 try_txpkts(struct mbuf *m, struct mbuf *n, struct txpkts *txp, u_int available)
4372 {
4373 	u_int needed, nsegs1, nsegs2, l1, l2;
4374 
4375 	if (cannot_use_txpkts(m) || cannot_use_txpkts(n))
4376 		return (1);
4377 
4378 	nsegs1 = mbuf_nsegs(m);
4379 	nsegs2 = mbuf_nsegs(n);
4380 	if (nsegs1 + nsegs2 == 2) {
4381 		txp->wr_type = 1;
4382 		l1 = l2 = txpkts1_len16();
4383 	} else {
4384 		txp->wr_type = 0;
4385 		l1 = txpkts0_len16(nsegs1);
4386 		l2 = txpkts0_len16(nsegs2);
4387 	}
4388 	txp->len16 = howmany(sizeof(struct fw_eth_tx_pkts_wr), 16) + l1 + l2;
4389 	needed = howmany(txp->len16, EQ_ESIZE / 16);
4390 	if (needed > SGE_MAX_WR_NDESC || needed > available)
4391 		return (1);
4392 
4393 	txp->plen = m->m_pkthdr.len + n->m_pkthdr.len;
4394 	if (txp->plen > 65535)
4395 		return (1);
4396 
4397 	txp->npkt = 2;
4398 	set_mbuf_len16(m, l1);
4399 	set_mbuf_len16(n, l2);
4400 
4401 	return (0);
4402 }
4403 
4404 static int
4405 add_to_txpkts(struct mbuf *m, struct txpkts *txp, u_int available)
4406 {
4407 	u_int plen, len16, needed, nsegs;
4408 
4409 	MPASS(txp->wr_type == 0 || txp->wr_type == 1);
4410 
4411 	nsegs = mbuf_nsegs(m);
4412 	if (needs_tso(m) || (txp->wr_type == 1 && nsegs != 1))
4413 		return (1);
4414 
4415 	plen = txp->plen + m->m_pkthdr.len;
4416 	if (plen > 65535)
4417 		return (1);
4418 
4419 	if (txp->wr_type == 0)
4420 		len16 = txpkts0_len16(nsegs);
4421 	else
4422 		len16 = txpkts1_len16();
4423 	needed = howmany(txp->len16 + len16, EQ_ESIZE / 16);
4424 	if (needed > SGE_MAX_WR_NDESC || needed > available)
4425 		return (1);
4426 
4427 	txp->npkt++;
4428 	txp->plen = plen;
4429 	txp->len16 += len16;
4430 	set_mbuf_len16(m, len16);
4431 
4432 	return (0);
4433 }
4434 
4435 /*
4436  * Write a txpkts WR for the packets in txp to the hardware descriptors, update
4437  * the software descriptor, and advance the pidx.  It is guaranteed that enough
4438  * descriptors are available.
4439  *
4440  * The return value is the # of hardware descriptors used.
4441  */
4442 static u_int
4443 write_txpkts_wr(struct sge_txq *txq, struct fw_eth_tx_pkts_wr *wr,
4444     struct mbuf *m0, const struct txpkts *txp, u_int available)
4445 {
4446 	struct sge_eq *eq = &txq->eq;
4447 	struct tx_sdesc *txsd;
4448 	struct cpl_tx_pkt_core *cpl;
4449 	uint32_t ctrl;
4450 	uint64_t ctrl1;
4451 	int ndesc, checkwrap;
4452 	struct mbuf *m;
4453 	void *flitp;
4454 
4455 	TXQ_LOCK_ASSERT_OWNED(txq);
4456 	MPASS(txp->npkt > 0);
4457 	MPASS(txp->plen < 65536);
4458 	MPASS(m0 != NULL);
4459 	MPASS(m0->m_nextpkt != NULL);
4460 	MPASS(txp->len16 <= howmany(SGE_MAX_WR_LEN, 16));
4461 	MPASS(available > 0 && available < eq->sidx);
4462 
4463 	ndesc = howmany(txp->len16, EQ_ESIZE / 16);
4464 	MPASS(ndesc <= available);
4465 
4466 	MPASS(wr == (void *)&eq->desc[eq->pidx]);
4467 	wr->op_pkd = htobe32(V_FW_WR_OP(FW_ETH_TX_PKTS_WR));
4468 	ctrl = V_FW_WR_LEN16(txp->len16);
4469 	wr->equiq_to_len16 = htobe32(ctrl);
4470 	wr->plen = htobe16(txp->plen);
4471 	wr->npkt = txp->npkt;
4472 	wr->r3 = 0;
4473 	wr->type = txp->wr_type;
4474 	flitp = wr + 1;
4475 
4476 	/*
4477 	 * At this point we are 16B into a hardware descriptor.  If checkwrap is
4478 	 * set then we know the WR is going to wrap around somewhere.  We'll
4479 	 * check for that at appropriate points.
4480 	 */
4481 	checkwrap = eq->sidx - ndesc < eq->pidx;
4482 	for (m = m0; m != NULL; m = m->m_nextpkt) {
4483 		if (txp->wr_type == 0) {
4484 			struct ulp_txpkt *ulpmc;
4485 			struct ulptx_idata *ulpsc;
4486 
4487 			/* ULP master command */
4488 			ulpmc = flitp;
4489 			ulpmc->cmd_dest = htobe32(V_ULPTX_CMD(ULP_TX_PKT) |
4490 			    V_ULP_TXPKT_DEST(0) | V_ULP_TXPKT_FID(eq->iqid));
4491 			ulpmc->len = htobe32(mbuf_len16(m));
4492 
4493 			/* ULP subcommand */
4494 			ulpsc = (void *)(ulpmc + 1);
4495 			ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_IMM) |
4496 			    F_ULP_TX_SC_MORE);
4497 			ulpsc->len = htobe32(sizeof(struct cpl_tx_pkt_core));
4498 
4499 			cpl = (void *)(ulpsc + 1);
4500 			if (checkwrap &&
4501 			    (uintptr_t)cpl == (uintptr_t)&eq->desc[eq->sidx])
4502 				cpl = (void *)&eq->desc[0];
4503 			txq->txpkts0_pkts += txp->npkt;
4504 			txq->txpkts0_wrs++;
4505 		} else {
4506 			cpl = flitp;
4507 			txq->txpkts1_pkts += txp->npkt;
4508 			txq->txpkts1_wrs++;
4509 		}
4510 
4511 		/* Checksum offload */
4512 		ctrl1 = 0;
4513 		if (needs_l3_csum(m) == 0)
4514 			ctrl1 |= F_TXPKT_IPCSUM_DIS;
4515 		if (needs_l4_csum(m) == 0)
4516 			ctrl1 |= F_TXPKT_L4CSUM_DIS;
4517 		if (m->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP |
4518 		    CSUM_UDP_IPV6 | CSUM_TCP_IPV6 | CSUM_TSO))
4519 			txq->txcsum++;	/* some hardware assistance provided */
4520 
4521 		/* VLAN tag insertion */
4522 		if (needs_vlan_insertion(m)) {
4523 			ctrl1 |= F_TXPKT_VLAN_VLD |
4524 			    V_TXPKT_VLAN(m->m_pkthdr.ether_vtag);
4525 			txq->vlan_insertion++;
4526 		}
4527 
4528 		/* CPL header */
4529 		cpl->ctrl0 = txq->cpl_ctrl0;
4530 		cpl->pack = 0;
4531 		cpl->len = htobe16(m->m_pkthdr.len);
4532 		cpl->ctrl1 = htobe64(ctrl1);
4533 
4534 		flitp = cpl + 1;
4535 		if (checkwrap &&
4536 		    (uintptr_t)flitp == (uintptr_t)&eq->desc[eq->sidx])
4537 			flitp = (void *)&eq->desc[0];
4538 
4539 		write_gl_to_txd(txq, m, (caddr_t *)(&flitp), checkwrap);
4540 
4541 	}
4542 
4543 	txsd = &txq->sdesc[eq->pidx];
4544 	txsd->m = m0;
4545 	txsd->desc_used = ndesc;
4546 
4547 	return (ndesc);
4548 }
4549 
4550 /*
4551  * If the SGL ends on an address that is not 16 byte aligned, this function will
4552  * add a 0 filled flit at the end.
4553  */
4554 static void
4555 write_gl_to_txd(struct sge_txq *txq, struct mbuf *m, caddr_t *to, int checkwrap)
4556 {
4557 	struct sge_eq *eq = &txq->eq;
4558 	struct sglist *gl = txq->gl;
4559 	struct sglist_seg *seg;
4560 	__be64 *flitp, *wrap;
4561 	struct ulptx_sgl *usgl;
4562 	int i, nflits, nsegs;
4563 
4564 	KASSERT(((uintptr_t)(*to) & 0xf) == 0,
4565 	    ("%s: SGL must start at a 16 byte boundary: %p", __func__, *to));
4566 	MPASS((uintptr_t)(*to) >= (uintptr_t)&eq->desc[0]);
4567 	MPASS((uintptr_t)(*to) < (uintptr_t)&eq->desc[eq->sidx]);
4568 
4569 	get_pkt_gl(m, gl);
4570 	nsegs = gl->sg_nseg;
4571 	MPASS(nsegs > 0);
4572 
4573 	nflits = (3 * (nsegs - 1)) / 2 + ((nsegs - 1) & 1) + 2;
4574 	flitp = (__be64 *)(*to);
4575 	wrap = (__be64 *)(&eq->desc[eq->sidx]);
4576 	seg = &gl->sg_segs[0];
4577 	usgl = (void *)flitp;
4578 
4579 	/*
4580 	 * We start at a 16 byte boundary somewhere inside the tx descriptor
4581 	 * ring, so we're at least 16 bytes away from the status page.  There is
4582 	 * no chance of a wrap around in the middle of usgl (which is 16 bytes).
4583 	 */
4584 
4585 	usgl->cmd_nsge = htobe32(V_ULPTX_CMD(ULP_TX_SC_DSGL) |
4586 	    V_ULPTX_NSGE(nsegs));
4587 	usgl->len0 = htobe32(seg->ss_len);
4588 	usgl->addr0 = htobe64(seg->ss_paddr);
4589 	seg++;
4590 
4591 	if (checkwrap == 0 || (uintptr_t)(flitp + nflits) <= (uintptr_t)wrap) {
4592 
4593 		/* Won't wrap around at all */
4594 
4595 		for (i = 0; i < nsegs - 1; i++, seg++) {
4596 			usgl->sge[i / 2].len[i & 1] = htobe32(seg->ss_len);
4597 			usgl->sge[i / 2].addr[i & 1] = htobe64(seg->ss_paddr);
4598 		}
4599 		if (i & 1)
4600 			usgl->sge[i / 2].len[1] = htobe32(0);
4601 		flitp += nflits;
4602 	} else {
4603 
4604 		/* Will wrap somewhere in the rest of the SGL */
4605 
4606 		/* 2 flits already written, write the rest flit by flit */
4607 		flitp = (void *)(usgl + 1);
4608 		for (i = 0; i < nflits - 2; i++) {
4609 			if (flitp == wrap)
4610 				flitp = (void *)eq->desc;
4611 			*flitp++ = get_flit(seg, nsegs - 1, i);
4612 		}
4613 	}
4614 
4615 	if (nflits & 1) {
4616 		MPASS(((uintptr_t)flitp) & 0xf);
4617 		*flitp++ = 0;
4618 	}
4619 
4620 	MPASS((((uintptr_t)flitp) & 0xf) == 0);
4621 	if (__predict_false(flitp == wrap))
4622 		*to = (void *)eq->desc;
4623 	else
4624 		*to = (void *)flitp;
4625 }
4626 
4627 static inline void
4628 copy_to_txd(struct sge_eq *eq, caddr_t from, caddr_t *to, int len)
4629 {
4630 
4631 	MPASS((uintptr_t)(*to) >= (uintptr_t)&eq->desc[0]);
4632 	MPASS((uintptr_t)(*to) < (uintptr_t)&eq->desc[eq->sidx]);
4633 
4634 	if (__predict_true((uintptr_t)(*to) + len <=
4635 	    (uintptr_t)&eq->desc[eq->sidx])) {
4636 		bcopy(from, *to, len);
4637 		(*to) += len;
4638 	} else {
4639 		int portion = (uintptr_t)&eq->desc[eq->sidx] - (uintptr_t)(*to);
4640 
4641 		bcopy(from, *to, portion);
4642 		from += portion;
4643 		portion = len - portion;	/* remaining */
4644 		bcopy(from, (void *)eq->desc, portion);
4645 		(*to) = (caddr_t)eq->desc + portion;
4646 	}
4647 }
4648 
4649 static inline void
4650 ring_eq_db(struct adapter *sc, struct sge_eq *eq, u_int n)
4651 {
4652 	u_int db;
4653 
4654 	MPASS(n > 0);
4655 
4656 	db = eq->doorbells;
4657 	if (n > 1)
4658 		clrbit(&db, DOORBELL_WCWR);
4659 	wmb();
4660 
4661 	switch (ffs(db) - 1) {
4662 	case DOORBELL_UDB:
4663 		*eq->udb = htole32(V_QID(eq->udb_qid) | V_PIDX(n));
4664 		break;
4665 
4666 	case DOORBELL_WCWR: {
4667 		volatile uint64_t *dst, *src;
4668 		int i;
4669 
4670 		/*
4671 		 * Queues whose 128B doorbell segment fits in the page do not
4672 		 * use relative qid (udb_qid is always 0).  Only queues with
4673 		 * doorbell segments can do WCWR.
4674 		 */
4675 		KASSERT(eq->udb_qid == 0 && n == 1,
4676 		    ("%s: inappropriate doorbell (0x%x, %d, %d) for eq %p",
4677 		    __func__, eq->doorbells, n, eq->dbidx, eq));
4678 
4679 		dst = (volatile void *)((uintptr_t)eq->udb + UDBS_WR_OFFSET -
4680 		    UDBS_DB_OFFSET);
4681 		i = eq->dbidx;
4682 		src = (void *)&eq->desc[i];
4683 		while (src != (void *)&eq->desc[i + 1])
4684 			*dst++ = *src++;
4685 		wmb();
4686 		break;
4687 	}
4688 
4689 	case DOORBELL_UDBWC:
4690 		*eq->udb = htole32(V_QID(eq->udb_qid) | V_PIDX(n));
4691 		wmb();
4692 		break;
4693 
4694 	case DOORBELL_KDB:
4695 		t4_write_reg(sc, sc->sge_kdoorbell_reg,
4696 		    V_QID(eq->cntxt_id) | V_PIDX(n));
4697 		break;
4698 	}
4699 
4700 	IDXINCR(eq->dbidx, n, eq->sidx);
4701 }
4702 
4703 static inline u_int
4704 reclaimable_tx_desc(struct sge_eq *eq)
4705 {
4706 	uint16_t hw_cidx;
4707 
4708 	hw_cidx = read_hw_cidx(eq);
4709 	return (IDXDIFF(hw_cidx, eq->cidx, eq->sidx));
4710 }
4711 
4712 static inline u_int
4713 total_available_tx_desc(struct sge_eq *eq)
4714 {
4715 	uint16_t hw_cidx, pidx;
4716 
4717 	hw_cidx = read_hw_cidx(eq);
4718 	pidx = eq->pidx;
4719 
4720 	if (pidx == hw_cidx)
4721 		return (eq->sidx - 1);
4722 	else
4723 		return (IDXDIFF(hw_cidx, pidx, eq->sidx) - 1);
4724 }
4725 
4726 static inline uint16_t
4727 read_hw_cidx(struct sge_eq *eq)
4728 {
4729 	struct sge_qstat *spg = (void *)&eq->desc[eq->sidx];
4730 	uint16_t cidx = spg->cidx;	/* stable snapshot */
4731 
4732 	return (be16toh(cidx));
4733 }
4734 
4735 /*
4736  * Reclaim 'n' descriptors approximately.
4737  */
4738 static u_int
4739 reclaim_tx_descs(struct sge_txq *txq, u_int n)
4740 {
4741 	struct tx_sdesc *txsd;
4742 	struct sge_eq *eq = &txq->eq;
4743 	u_int can_reclaim, reclaimed;
4744 
4745 	TXQ_LOCK_ASSERT_OWNED(txq);
4746 	MPASS(n > 0);
4747 
4748 	reclaimed = 0;
4749 	can_reclaim = reclaimable_tx_desc(eq);
4750 	while (can_reclaim && reclaimed < n) {
4751 		int ndesc;
4752 		struct mbuf *m, *nextpkt;
4753 
4754 		txsd = &txq->sdesc[eq->cidx];
4755 		ndesc = txsd->desc_used;
4756 
4757 		/* Firmware doesn't return "partial" credits. */
4758 		KASSERT(can_reclaim >= ndesc,
4759 		    ("%s: unexpected number of credits: %d, %d",
4760 		    __func__, can_reclaim, ndesc));
4761 
4762 		for (m = txsd->m; m != NULL; m = nextpkt) {
4763 			nextpkt = m->m_nextpkt;
4764 			m->m_nextpkt = NULL;
4765 			m_freem(m);
4766 		}
4767 		reclaimed += ndesc;
4768 		can_reclaim -= ndesc;
4769 		IDXINCR(eq->cidx, ndesc, eq->sidx);
4770 	}
4771 
4772 	return (reclaimed);
4773 }
4774 
4775 static void
4776 tx_reclaim(void *arg, int n)
4777 {
4778 	struct sge_txq *txq = arg;
4779 	struct sge_eq *eq = &txq->eq;
4780 
4781 	do {
4782 		if (TXQ_TRYLOCK(txq) == 0)
4783 			break;
4784 		n = reclaim_tx_descs(txq, 32);
4785 		if (eq->cidx == eq->pidx)
4786 			eq->equeqidx = eq->pidx;
4787 		TXQ_UNLOCK(txq);
4788 	} while (n > 0);
4789 }
4790 
4791 static __be64
4792 get_flit(struct sglist_seg *segs, int nsegs, int idx)
4793 {
4794 	int i = (idx / 3) * 2;
4795 
4796 	switch (idx % 3) {
4797 	case 0: {
4798 		__be64 rc;
4799 
4800 		rc = htobe32(segs[i].ss_len);
4801 		if (i + 1 < nsegs)
4802 			rc |= (uint64_t)htobe32(segs[i + 1].ss_len) << 32;
4803 
4804 		return (rc);
4805 	}
4806 	case 1:
4807 		return (htobe64(segs[i].ss_paddr));
4808 	case 2:
4809 		return (htobe64(segs[i + 1].ss_paddr));
4810 	}
4811 
4812 	return (0);
4813 }
4814 
4815 static void
4816 find_best_refill_source(struct adapter *sc, struct sge_fl *fl, int maxp)
4817 {
4818 	int8_t zidx, hwidx, idx;
4819 	uint16_t region1, region3;
4820 	int spare, spare_needed, n;
4821 	struct sw_zone_info *swz;
4822 	struct hw_buf_info *hwb, *hwb_list = &sc->sge.hw_buf_info[0];
4823 
4824 	/*
4825 	 * Buffer Packing: Look for PAGE_SIZE or larger zone which has a bufsize
4826 	 * large enough for the max payload and cluster metadata.  Otherwise
4827 	 * settle for the largest bufsize that leaves enough room in the cluster
4828 	 * for metadata.
4829 	 *
4830 	 * Without buffer packing: Look for the smallest zone which has a
4831 	 * bufsize large enough for the max payload.  Settle for the largest
4832 	 * bufsize available if there's nothing big enough for max payload.
4833 	 */
4834 	spare_needed = fl->flags & FL_BUF_PACKING ? CL_METADATA_SIZE : 0;
4835 	swz = &sc->sge.sw_zone_info[0];
4836 	hwidx = -1;
4837 	for (zidx = 0; zidx < SW_ZONE_SIZES; zidx++, swz++) {
4838 		if (swz->size > largest_rx_cluster) {
4839 			if (__predict_true(hwidx != -1))
4840 				break;
4841 
4842 			/*
4843 			 * This is a misconfiguration.  largest_rx_cluster is
4844 			 * preventing us from finding a refill source.  See
4845 			 * dev.t5nex.<n>.buffer_sizes to figure out why.
4846 			 */
4847 			device_printf(sc->dev, "largest_rx_cluster=%u leaves no"
4848 			    " refill source for fl %p (dma %u).  Ignored.\n",
4849 			    largest_rx_cluster, fl, maxp);
4850 		}
4851 		for (idx = swz->head_hwidx; idx != -1; idx = hwb->next) {
4852 			hwb = &hwb_list[idx];
4853 			spare = swz->size - hwb->size;
4854 			if (spare < spare_needed)
4855 				continue;
4856 
4857 			hwidx = idx;		/* best option so far */
4858 			if (hwb->size >= maxp) {
4859 
4860 				if ((fl->flags & FL_BUF_PACKING) == 0)
4861 					goto done; /* stop looking (not packing) */
4862 
4863 				if (swz->size >= safest_rx_cluster)
4864 					goto done; /* stop looking (packing) */
4865 			}
4866 			break;		/* keep looking, next zone */
4867 		}
4868 	}
4869 done:
4870 	/* A usable hwidx has been located. */
4871 	MPASS(hwidx != -1);
4872 	hwb = &hwb_list[hwidx];
4873 	zidx = hwb->zidx;
4874 	swz = &sc->sge.sw_zone_info[zidx];
4875 	region1 = 0;
4876 	region3 = swz->size - hwb->size;
4877 
4878 	/*
4879 	 * Stay within this zone and see if there is a better match when mbuf
4880 	 * inlining is allowed.  Remember that the hwidx's are sorted in
4881 	 * decreasing order of size (so in increasing order of spare area).
4882 	 */
4883 	for (idx = hwidx; idx != -1; idx = hwb->next) {
4884 		hwb = &hwb_list[idx];
4885 		spare = swz->size - hwb->size;
4886 
4887 		if (allow_mbufs_in_cluster == 0 || hwb->size < maxp)
4888 			break;
4889 
4890 		/*
4891 		 * Do not inline mbufs if doing so would violate the pad/pack
4892 		 * boundary alignment requirement.
4893 		 */
4894 		if (fl_pad && (MSIZE % sc->params.sge.pad_boundary) != 0)
4895 			continue;
4896 		if (fl->flags & FL_BUF_PACKING &&
4897 		    (MSIZE % sc->params.sge.pack_boundary) != 0)
4898 			continue;
4899 
4900 		if (spare < CL_METADATA_SIZE + MSIZE)
4901 			continue;
4902 		n = (spare - CL_METADATA_SIZE) / MSIZE;
4903 		if (n > howmany(hwb->size, maxp))
4904 			break;
4905 
4906 		hwidx = idx;
4907 		if (fl->flags & FL_BUF_PACKING) {
4908 			region1 = n * MSIZE;
4909 			region3 = spare - region1;
4910 		} else {
4911 			region1 = MSIZE;
4912 			region3 = spare - region1;
4913 			break;
4914 		}
4915 	}
4916 
4917 	KASSERT(zidx >= 0 && zidx < SW_ZONE_SIZES,
4918 	    ("%s: bad zone %d for fl %p, maxp %d", __func__, zidx, fl, maxp));
4919 	KASSERT(hwidx >= 0 && hwidx <= SGE_FLBUF_SIZES,
4920 	    ("%s: bad hwidx %d for fl %p, maxp %d", __func__, hwidx, fl, maxp));
4921 	KASSERT(region1 + sc->sge.hw_buf_info[hwidx].size + region3 ==
4922 	    sc->sge.sw_zone_info[zidx].size,
4923 	    ("%s: bad buffer layout for fl %p, maxp %d. "
4924 		"cl %d; r1 %d, payload %d, r3 %d", __func__, fl, maxp,
4925 		sc->sge.sw_zone_info[zidx].size, region1,
4926 		sc->sge.hw_buf_info[hwidx].size, region3));
4927 	if (fl->flags & FL_BUF_PACKING || region1 > 0) {
4928 		KASSERT(region3 >= CL_METADATA_SIZE,
4929 		    ("%s: no room for metadata.  fl %p, maxp %d; "
4930 		    "cl %d; r1 %d, payload %d, r3 %d", __func__, fl, maxp,
4931 		    sc->sge.sw_zone_info[zidx].size, region1,
4932 		    sc->sge.hw_buf_info[hwidx].size, region3));
4933 		KASSERT(region1 % MSIZE == 0,
4934 		    ("%s: bad mbuf region for fl %p, maxp %d. "
4935 		    "cl %d; r1 %d, payload %d, r3 %d", __func__, fl, maxp,
4936 		    sc->sge.sw_zone_info[zidx].size, region1,
4937 		    sc->sge.hw_buf_info[hwidx].size, region3));
4938 	}
4939 
4940 	fl->cll_def.zidx = zidx;
4941 	fl->cll_def.hwidx = hwidx;
4942 	fl->cll_def.region1 = region1;
4943 	fl->cll_def.region3 = region3;
4944 }
4945 
4946 static void
4947 find_safe_refill_source(struct adapter *sc, struct sge_fl *fl)
4948 {
4949 	struct sge *s = &sc->sge;
4950 	struct hw_buf_info *hwb;
4951 	struct sw_zone_info *swz;
4952 	int spare;
4953 	int8_t hwidx;
4954 
4955 	if (fl->flags & FL_BUF_PACKING)
4956 		hwidx = s->safe_hwidx2;	/* with room for metadata */
4957 	else if (allow_mbufs_in_cluster && s->safe_hwidx2 != -1) {
4958 		hwidx = s->safe_hwidx2;
4959 		hwb = &s->hw_buf_info[hwidx];
4960 		swz = &s->sw_zone_info[hwb->zidx];
4961 		spare = swz->size - hwb->size;
4962 
4963 		/* no good if there isn't room for an mbuf as well */
4964 		if (spare < CL_METADATA_SIZE + MSIZE)
4965 			hwidx = s->safe_hwidx1;
4966 	} else
4967 		hwidx = s->safe_hwidx1;
4968 
4969 	if (hwidx == -1) {
4970 		/* No fallback source */
4971 		fl->cll_alt.hwidx = -1;
4972 		fl->cll_alt.zidx = -1;
4973 
4974 		return;
4975 	}
4976 
4977 	hwb = &s->hw_buf_info[hwidx];
4978 	swz = &s->sw_zone_info[hwb->zidx];
4979 	spare = swz->size - hwb->size;
4980 	fl->cll_alt.hwidx = hwidx;
4981 	fl->cll_alt.zidx = hwb->zidx;
4982 	if (allow_mbufs_in_cluster &&
4983 	    (fl_pad == 0 || (MSIZE % sc->params.sge.pad_boundary) == 0))
4984 		fl->cll_alt.region1 = ((spare - CL_METADATA_SIZE) / MSIZE) * MSIZE;
4985 	else
4986 		fl->cll_alt.region1 = 0;
4987 	fl->cll_alt.region3 = spare - fl->cll_alt.region1;
4988 }
4989 
4990 static void
4991 add_fl_to_sfl(struct adapter *sc, struct sge_fl *fl)
4992 {
4993 	mtx_lock(&sc->sfl_lock);
4994 	FL_LOCK(fl);
4995 	if ((fl->flags & FL_DOOMED) == 0) {
4996 		fl->flags |= FL_STARVING;
4997 		TAILQ_INSERT_TAIL(&sc->sfl, fl, link);
4998 		callout_reset(&sc->sfl_callout, hz / 5, refill_sfl, sc);
4999 	}
5000 	FL_UNLOCK(fl);
5001 	mtx_unlock(&sc->sfl_lock);
5002 }
5003 
5004 static void
5005 handle_wrq_egr_update(struct adapter *sc, struct sge_eq *eq)
5006 {
5007 	struct sge_wrq *wrq = (void *)eq;
5008 
5009 	atomic_readandclear_int(&eq->equiq);
5010 	taskqueue_enqueue(sc->tq[eq->tx_chan], &wrq->wrq_tx_task);
5011 }
5012 
5013 static void
5014 handle_eth_egr_update(struct adapter *sc, struct sge_eq *eq)
5015 {
5016 	struct sge_txq *txq = (void *)eq;
5017 
5018 	MPASS((eq->flags & EQ_TYPEMASK) == EQ_ETH);
5019 
5020 	atomic_readandclear_int(&eq->equiq);
5021 	mp_ring_check_drainage(txq->r, 0);
5022 	taskqueue_enqueue(sc->tq[eq->tx_chan], &txq->tx_reclaim_task);
5023 }
5024 
5025 static int
5026 handle_sge_egr_update(struct sge_iq *iq, const struct rss_header *rss,
5027     struct mbuf *m)
5028 {
5029 	const struct cpl_sge_egr_update *cpl = (const void *)(rss + 1);
5030 	unsigned int qid = G_EGR_QID(ntohl(cpl->opcode_qid));
5031 	struct adapter *sc = iq->adapter;
5032 	struct sge *s = &sc->sge;
5033 	struct sge_eq *eq;
5034 	static void (*h[])(struct adapter *, struct sge_eq *) = {NULL,
5035 		&handle_wrq_egr_update, &handle_eth_egr_update,
5036 		&handle_wrq_egr_update};
5037 
5038 	KASSERT(m == NULL, ("%s: payload with opcode %02x", __func__,
5039 	    rss->opcode));
5040 
5041 	eq = s->eqmap[qid - s->eq_start - s->eq_base];
5042 	(*h[eq->flags & EQ_TYPEMASK])(sc, eq);
5043 
5044 	return (0);
5045 }
5046 
5047 /* handle_fw_msg works for both fw4_msg and fw6_msg because this is valid */
5048 CTASSERT(offsetof(struct cpl_fw4_msg, data) == \
5049     offsetof(struct cpl_fw6_msg, data));
5050 
5051 static int
5052 handle_fw_msg(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m)
5053 {
5054 	struct adapter *sc = iq->adapter;
5055 	const struct cpl_fw6_msg *cpl = (const void *)(rss + 1);
5056 
5057 	KASSERT(m == NULL, ("%s: payload with opcode %02x", __func__,
5058 	    rss->opcode));
5059 
5060 	if (cpl->type == FW_TYPE_RSSCPL || cpl->type == FW6_TYPE_RSSCPL) {
5061 		const struct rss_header *rss2;
5062 
5063 		rss2 = (const struct rss_header *)&cpl->data[0];
5064 		return (t4_cpl_handler[rss2->opcode](iq, rss2, m));
5065 	}
5066 
5067 	return (t4_fw_msg_handler[cpl->type](sc, &cpl->data[0]));
5068 }
5069 
5070 /**
5071  *	t4_handle_wrerr_rpl - process a FW work request error message
5072  *	@adap: the adapter
5073  *	@rpl: start of the FW message
5074  */
5075 static int
5076 t4_handle_wrerr_rpl(struct adapter *adap, const __be64 *rpl)
5077 {
5078 	u8 opcode = *(const u8 *)rpl;
5079 	const struct fw_error_cmd *e = (const void *)rpl;
5080 	unsigned int i;
5081 
5082 	if (opcode != FW_ERROR_CMD) {
5083 		log(LOG_ERR,
5084 		    "%s: Received WRERR_RPL message with opcode %#x\n",
5085 		    device_get_nameunit(adap->dev), opcode);
5086 		return (EINVAL);
5087 	}
5088 	log(LOG_ERR, "%s: FW_ERROR (%s) ", device_get_nameunit(adap->dev),
5089 	    G_FW_ERROR_CMD_FATAL(be32toh(e->op_to_type)) ? "fatal" :
5090 	    "non-fatal");
5091 	switch (G_FW_ERROR_CMD_TYPE(be32toh(e->op_to_type))) {
5092 	case FW_ERROR_TYPE_EXCEPTION:
5093 		log(LOG_ERR, "exception info:\n");
5094 		for (i = 0; i < nitems(e->u.exception.info); i++)
5095 			log(LOG_ERR, "%s%08x", i == 0 ? "\t" : " ",
5096 			    be32toh(e->u.exception.info[i]));
5097 		log(LOG_ERR, "\n");
5098 		break;
5099 	case FW_ERROR_TYPE_HWMODULE:
5100 		log(LOG_ERR, "HW module regaddr %08x regval %08x\n",
5101 		    be32toh(e->u.hwmodule.regaddr),
5102 		    be32toh(e->u.hwmodule.regval));
5103 		break;
5104 	case FW_ERROR_TYPE_WR:
5105 		log(LOG_ERR, "WR cidx %d PF %d VF %d eqid %d hdr:\n",
5106 		    be16toh(e->u.wr.cidx),
5107 		    G_FW_ERROR_CMD_PFN(be16toh(e->u.wr.pfn_vfn)),
5108 		    G_FW_ERROR_CMD_VFN(be16toh(e->u.wr.pfn_vfn)),
5109 		    be32toh(e->u.wr.eqid));
5110 		for (i = 0; i < nitems(e->u.wr.wrhdr); i++)
5111 			log(LOG_ERR, "%s%02x", i == 0 ? "\t" : " ",
5112 			    e->u.wr.wrhdr[i]);
5113 		log(LOG_ERR, "\n");
5114 		break;
5115 	case FW_ERROR_TYPE_ACL:
5116 		log(LOG_ERR, "ACL cidx %d PF %d VF %d eqid %d %s",
5117 		    be16toh(e->u.acl.cidx),
5118 		    G_FW_ERROR_CMD_PFN(be16toh(e->u.acl.pfn_vfn)),
5119 		    G_FW_ERROR_CMD_VFN(be16toh(e->u.acl.pfn_vfn)),
5120 		    be32toh(e->u.acl.eqid),
5121 		    G_FW_ERROR_CMD_MV(be16toh(e->u.acl.mv_pkd)) ? "vlanid" :
5122 		    "MAC");
5123 		for (i = 0; i < nitems(e->u.acl.val); i++)
5124 			log(LOG_ERR, " %02x", e->u.acl.val[i]);
5125 		log(LOG_ERR, "\n");
5126 		break;
5127 	default:
5128 		log(LOG_ERR, "type %#x\n",
5129 		    G_FW_ERROR_CMD_TYPE(be32toh(e->op_to_type)));
5130 		return (EINVAL);
5131 	}
5132 	return (0);
5133 }
5134 
5135 static int
5136 sysctl_uint16(SYSCTL_HANDLER_ARGS)
5137 {
5138 	uint16_t *id = arg1;
5139 	int i = *id;
5140 
5141 	return sysctl_handle_int(oidp, &i, 0, req);
5142 }
5143 
5144 static int
5145 sysctl_bufsizes(SYSCTL_HANDLER_ARGS)
5146 {
5147 	struct sge *s = arg1;
5148 	struct hw_buf_info *hwb = &s->hw_buf_info[0];
5149 	struct sw_zone_info *swz = &s->sw_zone_info[0];
5150 	int i, rc;
5151 	struct sbuf sb;
5152 	char c;
5153 
5154 	sbuf_new(&sb, NULL, 32, SBUF_AUTOEXTEND);
5155 	for (i = 0; i < SGE_FLBUF_SIZES; i++, hwb++) {
5156 		if (hwb->zidx >= 0 && swz[hwb->zidx].size <= largest_rx_cluster)
5157 			c = '*';
5158 		else
5159 			c = '\0';
5160 
5161 		sbuf_printf(&sb, "%u%c ", hwb->size, c);
5162 	}
5163 	sbuf_trim(&sb);
5164 	sbuf_finish(&sb);
5165 	rc = sysctl_handle_string(oidp, sbuf_data(&sb), sbuf_len(&sb), req);
5166 	sbuf_delete(&sb);
5167 	return (rc);
5168 }
5169 
5170 static int
5171 sysctl_tc(SYSCTL_HANDLER_ARGS)
5172 {
5173 	struct vi_info *vi = arg1;
5174 	struct port_info *pi;
5175 	struct adapter *sc;
5176 	struct sge_txq *txq;
5177 	struct tx_sched_class *tc;
5178 	int qidx = arg2, rc, tc_idx;
5179 	uint32_t fw_queue, fw_class;
5180 
5181 	MPASS(qidx >= 0 && qidx < vi->ntxq);
5182 	pi = vi->pi;
5183 	sc = pi->adapter;
5184 	txq = &sc->sge.txq[vi->first_txq + qidx];
5185 
5186 	tc_idx = txq->tc_idx;
5187 	rc = sysctl_handle_int(oidp, &tc_idx, 0, req);
5188 	if (rc != 0 || req->newptr == NULL)
5189 		return (rc);
5190 
5191 	/* Note that -1 is legitimate input (it means unbind). */
5192 	if (tc_idx < -1 || tc_idx >= sc->chip_params->nsched_cls)
5193 		return (EINVAL);
5194 
5195 	rc = begin_synchronized_op(sc, vi, SLEEP_OK | INTR_OK, "t4stc");
5196 	if (rc)
5197 		return (rc);
5198 
5199 	if (tc_idx == txq->tc_idx) {
5200 		rc = 0;		/* No change, nothing to do. */
5201 		goto done;
5202 	}
5203 
5204 	fw_queue = V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) |
5205 	    V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DMAQ_EQ_SCHEDCLASS_ETH) |
5206 	    V_FW_PARAMS_PARAM_YZ(txq->eq.cntxt_id);
5207 
5208 	if (tc_idx == -1)
5209 		fw_class = 0xffffffff;	/* Unbind. */
5210 	else {
5211 		/*
5212 		 * Bind to a different class.  Ethernet txq's are only allowed
5213 		 * to bind to cl-rl mode-class for now.  XXX: too restrictive.
5214 		 */
5215 		tc = &pi->tc[tc_idx];
5216 		if (tc->flags & TX_SC_OK &&
5217 		    tc->params.level == SCHED_CLASS_LEVEL_CL_RL &&
5218 		    tc->params.mode == SCHED_CLASS_MODE_CLASS) {
5219 			/* Ok to proceed. */
5220 			fw_class = tc_idx;
5221 		} else {
5222 			rc = tc->flags & TX_SC_OK ? EBUSY : ENXIO;
5223 			goto done;
5224 		}
5225 	}
5226 
5227 	rc = -t4_set_params(sc, sc->mbox, sc->pf, 0, 1, &fw_queue, &fw_class);
5228 	if (rc == 0) {
5229 		if (txq->tc_idx != -1) {
5230 			tc = &pi->tc[txq->tc_idx];
5231 			MPASS(tc->refcount > 0);
5232 			tc->refcount--;
5233 		}
5234 		if (tc_idx != -1) {
5235 			tc = &pi->tc[tc_idx];
5236 			tc->refcount++;
5237 		}
5238 		txq->tc_idx = tc_idx;
5239 	}
5240 done:
5241 	end_synchronized_op(sc, 0);
5242 	return (rc);
5243 }
5244