xref: /freebsd/sys/dev/cxgbe/adapter.h (revision 91ebf7d76582a73ac4c0a32964e4d3912010671e)
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  * $FreeBSD$
28  *
29  */
30 
31 #ifndef __T4_ADAPTER_H__
32 #define __T4_ADAPTER_H__
33 
34 #include <sys/kernel.h>
35 #include <sys/bus.h>
36 #include <sys/rman.h>
37 #include <sys/types.h>
38 #include <sys/lock.h>
39 #include <sys/malloc.h>
40 #include <sys/rwlock.h>
41 #include <sys/sx.h>
42 #include <vm/uma.h>
43 
44 #include <dev/pci/pcivar.h>
45 #include <dev/pci/pcireg.h>
46 #include <machine/bus.h>
47 #include <sys/socket.h>
48 #include <sys/sysctl.h>
49 #include <net/ethernet.h>
50 #include <net/if.h>
51 #include <net/if_var.h>
52 #include <net/if_media.h>
53 #include <netinet/in.h>
54 #include <netinet/tcp_lro.h>
55 
56 #include "offload.h"
57 #include "t4_ioctl.h"
58 #include "common/t4_msg.h"
59 #include "firmware/t4fw_interface.h"
60 
61 #define KTR_CXGBE	KTR_SPARE3
62 MALLOC_DECLARE(M_CXGBE);
63 #define CXGBE_UNIMPLEMENTED(s) \
64     panic("%s (%s, line %d) not implemented yet.", s, __FILE__, __LINE__)
65 
66 #if defined(__i386__) || defined(__amd64__)
67 static __inline void
68 prefetch(void *x)
69 {
70 	__asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
71 }
72 #else
73 #define prefetch(x)
74 #endif
75 
76 #ifndef SYSCTL_ADD_UQUAD
77 #define SYSCTL_ADD_UQUAD SYSCTL_ADD_QUAD
78 #define sysctl_handle_64 sysctl_handle_quad
79 #define CTLTYPE_U64 CTLTYPE_QUAD
80 #endif
81 
82 #if (__FreeBSD_version >= 900030) || \
83     ((__FreeBSD_version >= 802507) && (__FreeBSD_version < 900000))
84 #define SBUF_DRAIN 1
85 #endif
86 
87 #ifdef __amd64__
88 /* XXX: need systemwide bus_space_read_8/bus_space_write_8 */
89 static __inline uint64_t
90 t4_bus_space_read_8(bus_space_tag_t tag, bus_space_handle_t handle,
91     bus_size_t offset)
92 {
93 	KASSERT(tag == X86_BUS_SPACE_MEM,
94 	    ("%s: can only handle mem space", __func__));
95 
96 	return (*(volatile uint64_t *)(handle + offset));
97 }
98 
99 static __inline void
100 t4_bus_space_write_8(bus_space_tag_t tag, bus_space_handle_t bsh,
101     bus_size_t offset, uint64_t value)
102 {
103 	KASSERT(tag == X86_BUS_SPACE_MEM,
104 	    ("%s: can only handle mem space", __func__));
105 
106 	*(volatile uint64_t *)(bsh + offset) = value;
107 }
108 #else
109 static __inline uint64_t
110 t4_bus_space_read_8(bus_space_tag_t tag, bus_space_handle_t handle,
111     bus_size_t offset)
112 {
113 	return (uint64_t)bus_space_read_4(tag, handle, offset) +
114 	    ((uint64_t)bus_space_read_4(tag, handle, offset + 4) << 32);
115 }
116 
117 static __inline void
118 t4_bus_space_write_8(bus_space_tag_t tag, bus_space_handle_t bsh,
119     bus_size_t offset, uint64_t value)
120 {
121 	bus_space_write_4(tag, bsh, offset, value);
122 	bus_space_write_4(tag, bsh, offset + 4, value >> 32);
123 }
124 #endif
125 
126 struct adapter;
127 typedef struct adapter adapter_t;
128 
129 enum {
130 	/*
131 	 * All ingress queues use this entry size.  Note that the firmware event
132 	 * queue and any iq expecting CPL_RX_PKT in the descriptor needs this to
133 	 * be at least 64.
134 	 */
135 	IQ_ESIZE = 64,
136 
137 	/* Default queue sizes for all kinds of ingress queues */
138 	FW_IQ_QSIZE = 256,
139 	RX_IQ_QSIZE = 1024,
140 
141 	/* All egress queues use this entry size */
142 	EQ_ESIZE = 64,
143 
144 	/* Default queue sizes for all kinds of egress queues */
145 	CTRL_EQ_QSIZE = 128,
146 	TX_EQ_QSIZE = 1024,
147 
148 #if MJUMPAGESIZE != MCLBYTES
149 	SW_ZONE_SIZES = 4,	/* cluster, jumbop, jumbo9k, jumbo16k */
150 #else
151 	SW_ZONE_SIZES = 3,	/* cluster, jumbo9k, jumbo16k */
152 #endif
153 	CL_METADATA_SIZE = CACHE_LINE_SIZE,
154 
155 	SGE_MAX_WR_NDESC = SGE_MAX_WR_LEN / EQ_ESIZE, /* max WR size in desc */
156 	TX_SGL_SEGS = 39,
157 	TX_SGL_SEGS_TSO = 38,
158 	TX_WR_FLITS = SGE_MAX_WR_LEN / 8
159 };
160 
161 enum {
162 	/* adapter intr_type */
163 	INTR_INTX	= (1 << 0),
164 	INTR_MSI 	= (1 << 1),
165 	INTR_MSIX	= (1 << 2)
166 };
167 
168 enum {
169 	XGMAC_MTU	= (1 << 0),
170 	XGMAC_PROMISC	= (1 << 1),
171 	XGMAC_ALLMULTI	= (1 << 2),
172 	XGMAC_VLANEX	= (1 << 3),
173 	XGMAC_UCADDR	= (1 << 4),
174 	XGMAC_MCADDRS	= (1 << 5),
175 
176 	XGMAC_ALL	= 0xffff
177 };
178 
179 enum {
180 	/* flags understood by begin_synchronized_op */
181 	HOLD_LOCK	= (1 << 0),
182 	SLEEP_OK	= (1 << 1),
183 	INTR_OK		= (1 << 2),
184 
185 	/* flags understood by end_synchronized_op */
186 	LOCK_HELD	= HOLD_LOCK,
187 };
188 
189 enum {
190 	/* adapter flags */
191 	FULL_INIT_DONE	= (1 << 0),
192 	FW_OK		= (1 << 1),
193 	/* INTR_DIRECT	= (1 << 2),	No longer used. */
194 	MASTER_PF	= (1 << 3),
195 	ADAP_SYSCTL_CTX	= (1 << 4),
196 	/* TOM_INIT_DONE= (1 << 5),	No longer used */
197 	BUF_PACKING_OK	= (1 << 6),
198 
199 	CXGBE_BUSY	= (1 << 9),
200 
201 	/* port flags */
202 	HAS_TRACEQ	= (1 << 3),
203 
204 	/* VI flags */
205 	DOOMED		= (1 << 0),
206 	VI_INIT_DONE	= (1 << 1),
207 	VI_SYSCTL_CTX	= (1 << 2),
208 	INTR_RXQ	= (1 << 4),	/* All NIC rxq's take interrupts */
209 	INTR_OFLD_RXQ	= (1 << 5),	/* All TOE rxq's take interrupts */
210 	INTR_ALL	= (INTR_RXQ | INTR_OFLD_RXQ),
211 
212 	/* adapter debug_flags */
213 	DF_DUMP_MBOX	= (1 << 0),
214 };
215 
216 #define IS_DOOMED(vi)	((vi)->flags & DOOMED)
217 #define SET_DOOMED(vi)	do {(vi)->flags |= DOOMED;} while (0)
218 #define IS_BUSY(sc)	((sc)->flags & CXGBE_BUSY)
219 #define SET_BUSY(sc)	do {(sc)->flags |= CXGBE_BUSY;} while (0)
220 #define CLR_BUSY(sc)	do {(sc)->flags &= ~CXGBE_BUSY;} while (0)
221 
222 struct vi_info {
223 	device_t dev;
224 	struct port_info *pi;
225 
226 	struct ifnet *ifp;
227 	struct ifmedia media;
228 
229 	unsigned long flags;
230 	int if_flags;
231 
232 	uint16_t *rss, *nm_rss;
233 	uint16_t viid;
234 	int16_t  xact_addr_filt;/* index of exact MAC address filter */
235 	uint16_t rss_size;	/* size of VI's RSS table slice */
236 	uint16_t rss_base;	/* start of VI's RSS table slice */
237 
238 	eventhandler_tag vlan_c;
239 
240 	int nintr;
241 	int first_intr;
242 
243 	/* These need to be int as they are used in sysctl */
244 	int ntxq;	/* # of tx queues */
245 	int first_txq;	/* index of first tx queue */
246 	int rsrv_noflowq; /* Reserve queue 0 for non-flowid packets */
247 	int nrxq;	/* # of rx queues */
248 	int first_rxq;	/* index of first rx queue */
249 	int nofldtxq;		/* # of offload tx queues */
250 	int first_ofld_txq;	/* index of first offload tx queue */
251 	int nofldrxq;		/* # of offload rx queues */
252 	int first_ofld_rxq;	/* index of first offload rx queue */
253 	int nnmtxq;
254 	int first_nm_txq;
255 	int nnmrxq;
256 	int first_nm_rxq;
257 	int tmr_idx;
258 	int pktc_idx;
259 	int qsize_rxq;
260 	int qsize_txq;
261 
262 	struct timeval last_refreshed;
263 	struct fw_vi_stats_vf stats;
264 
265 	struct callout tick;
266 	struct sysctl_ctx_list ctx;	/* from ifconfig up to driver detach */
267 
268 	uint8_t hw_addr[ETHER_ADDR_LEN]; /* factory MAC address, won't change */
269 };
270 
271 enum {
272 	/* tx_sched_class flags */
273 	TX_SC_OK	= (1 << 0),	/* Set up in hardware, active. */
274 };
275 
276 struct tx_sched_class {
277 	int refcount;
278 	int flags;
279 	struct t4_sched_class_params params;
280 };
281 
282 struct port_info {
283 	device_t dev;
284 	struct adapter *adapter;
285 
286 	struct vi_info *vi;
287 	int nvi;
288 	int up_vis;
289 	int uld_vis;
290 
291 	struct tx_sched_class *tc;	/* traffic classes for this channel */
292 
293 	struct mtx pi_lock;
294 	char lockname[16];
295 	unsigned long flags;
296 
297 	uint8_t  lport;		/* associated offload logical port */
298 	int8_t   mdio_addr;
299 	uint8_t  port_type;
300 	uint8_t  mod_type;
301 	uint8_t  port_id;
302 	uint8_t  tx_chan;
303 	uint8_t  rx_chan_map;	/* rx MPS channel bitmap */
304 
305 	int linkdnrc;
306 	struct link_config link_cfg;
307 
308 	struct timeval last_refreshed;
309  	struct port_stats stats;
310 	u_int tnl_cong_drops;
311 	u_int tx_parse_error;
312 
313 	struct callout tick;
314 };
315 
316 #define	IS_MAIN_VI(vi)		((vi) == &((vi)->pi->vi[0]))
317 
318 /* Where the cluster came from, how it has been carved up. */
319 struct cluster_layout {
320 	int8_t zidx;
321 	int8_t hwidx;
322 	uint16_t region1;	/* mbufs laid out within this region */
323 				/* region2 is the DMA region */
324 	uint16_t region3;	/* cluster_metadata within this region */
325 };
326 
327 struct cluster_metadata {
328 	u_int refcount;
329 	struct fl_sdesc *sd;	/* For debug only.  Could easily be stale */
330 };
331 
332 struct fl_sdesc {
333 	caddr_t cl;
334 	uint16_t nmbuf;	/* # of driver originated mbufs with ref on cluster */
335 	struct cluster_layout cll;
336 };
337 
338 struct tx_desc {
339 	__be64 flit[8];
340 };
341 
342 struct tx_sdesc {
343 	struct mbuf *m;		/* m_nextpkt linked chain of frames */
344 	uint8_t desc_used;	/* # of hardware descriptors used by the WR */
345 };
346 
347 
348 #define IQ_PAD (IQ_ESIZE - sizeof(struct rsp_ctrl) - sizeof(struct rss_header))
349 struct iq_desc {
350 	struct rss_header rss;
351 	uint8_t cpl[IQ_PAD];
352 	struct rsp_ctrl rsp;
353 };
354 #undef IQ_PAD
355 CTASSERT(sizeof(struct iq_desc) == IQ_ESIZE);
356 
357 enum {
358 	/* iq flags */
359 	IQ_ALLOCATED	= (1 << 0),	/* firmware resources allocated */
360 	IQ_HAS_FL	= (1 << 1),	/* iq associated with a freelist */
361 	IQ_INTR		= (1 << 2),	/* iq takes direct interrupt */
362 	IQ_LRO_ENABLED	= (1 << 3),	/* iq is an eth rxq with LRO enabled */
363 
364 	/* iq state */
365 	IQS_DISABLED	= 0,
366 	IQS_BUSY	= 1,
367 	IQS_IDLE	= 2,
368 
369 	/* netmap related flags */
370 	NM_OFF	= 0,
371 	NM_ON	= 1,
372 	NM_BUSY	= 2,
373 };
374 
375 struct sge_iq;
376 struct rss_header;
377 typedef int (*cpl_handler_t)(struct sge_iq *, const struct rss_header *,
378     struct mbuf *);
379 typedef int (*an_handler_t)(struct sge_iq *, const struct rsp_ctrl *);
380 typedef int (*fw_msg_handler_t)(struct adapter *, const __be64 *);
381 
382 /*
383  * Ingress Queue: T4 is producer, driver is consumer.
384  */
385 struct sge_iq {
386 	uint32_t flags;
387 	volatile int state;
388 	struct adapter *adapter;
389 	cpl_handler_t set_tcb_rpl;
390 	cpl_handler_t l2t_write_rpl;
391 	struct iq_desc  *desc;	/* KVA of descriptor ring */
392 	int8_t   intr_pktc_idx;	/* packet count threshold index */
393 	uint8_t  gen;		/* generation bit */
394 	uint8_t  intr_params;	/* interrupt holdoff parameters */
395 	uint8_t  intr_next;	/* XXX: holdoff for next interrupt */
396 	uint16_t qsize;		/* size (# of entries) of the queue */
397 	uint16_t sidx;		/* index of the entry with the status page */
398 	uint16_t cidx;		/* consumer index */
399 	uint16_t cntxt_id;	/* SGE context id for the iq */
400 	uint16_t abs_id;	/* absolute SGE id for the iq */
401 
402 	STAILQ_ENTRY(sge_iq) link;
403 
404 	bus_dma_tag_t desc_tag;
405 	bus_dmamap_t desc_map;
406 	bus_addr_t ba;		/* bus address of descriptor ring */
407 };
408 
409 enum {
410 	EQ_CTRL		= 1,
411 	EQ_ETH		= 2,
412 	EQ_OFLD		= 3,
413 
414 	/* eq flags */
415 	EQ_TYPEMASK	= 0x3,		/* 2 lsbits hold the type (see above) */
416 	EQ_ALLOCATED	= (1 << 2),	/* firmware resources allocated */
417 	EQ_ENABLED	= (1 << 3),	/* open for business */
418 };
419 
420 /* Listed in order of preference.  Update t4_sysctls too if you change these */
421 enum {DOORBELL_UDB, DOORBELL_WCWR, DOORBELL_UDBWC, DOORBELL_KDB};
422 
423 /*
424  * Egress Queue: driver is producer, T4 is consumer.
425  *
426  * Note: A free list is an egress queue (driver produces the buffers and T4
427  * consumes them) but it's special enough to have its own struct (see sge_fl).
428  */
429 struct sge_eq {
430 	unsigned int flags;	/* MUST be first */
431 	unsigned int cntxt_id;	/* SGE context id for the eq */
432 	struct mtx eq_lock;
433 
434 	struct tx_desc *desc;	/* KVA of descriptor ring */
435 	uint16_t doorbells;
436 	volatile uint32_t *udb;	/* KVA of doorbell (lies within BAR2) */
437 	u_int udb_qid;		/* relative qid within the doorbell page */
438 	uint16_t sidx;		/* index of the entry with the status page */
439 	uint16_t cidx;		/* consumer idx (desc idx) */
440 	uint16_t pidx;		/* producer idx (desc idx) */
441 	uint16_t equeqidx;	/* EQUEQ last requested at this pidx */
442 	uint16_t dbidx;		/* pidx of the most recent doorbell */
443 	uint16_t iqid;		/* iq that gets egr_update for the eq */
444 	uint8_t tx_chan;	/* tx channel used by the eq */
445 	volatile u_int equiq;	/* EQUIQ outstanding */
446 
447 	bus_dma_tag_t desc_tag;
448 	bus_dmamap_t desc_map;
449 	bus_addr_t ba;		/* bus address of descriptor ring */
450 	char lockname[16];
451 };
452 
453 struct sw_zone_info {
454 	uma_zone_t zone;	/* zone that this cluster comes from */
455 	int size;		/* size of cluster: 2K, 4K, 9K, 16K, etc. */
456 	int type;		/* EXT_xxx type of the cluster */
457 	int8_t head_hwidx;
458 	int8_t tail_hwidx;
459 };
460 
461 struct hw_buf_info {
462 	int8_t zidx;		/* backpointer to zone; -ve means unused */
463 	int8_t next;		/* next hwidx for this zone; -1 means no more */
464 	int size;
465 };
466 
467 enum {
468 	NUM_MEMWIN = 3,
469 
470 	MEMWIN0_APERTURE = 2048,
471 	MEMWIN0_BASE     = 0x1b800,
472 
473 	MEMWIN1_APERTURE = 32768,
474 	MEMWIN1_BASE     = 0x28000,
475 
476 	MEMWIN2_APERTURE_T4 = 65536,
477 	MEMWIN2_BASE_T4     = 0x30000,
478 
479 	MEMWIN2_APERTURE_T5 = 128 * 1024,
480 	MEMWIN2_BASE_T5     = 0x60000,
481 };
482 
483 struct memwin {
484 	struct rwlock mw_lock __aligned(CACHE_LINE_SIZE);
485 	uint32_t mw_base;	/* constant after setup_memwin */
486 	uint32_t mw_aperture;	/* ditto */
487 	uint32_t mw_curpos;	/* protected by mw_lock */
488 };
489 
490 enum {
491 	FL_STARVING	= (1 << 0), /* on the adapter's list of starving fl's */
492 	FL_DOOMED	= (1 << 1), /* about to be destroyed */
493 	FL_BUF_PACKING	= (1 << 2), /* buffer packing enabled */
494 	FL_BUF_RESUME	= (1 << 3), /* resume from the middle of the frame */
495 };
496 
497 #define FL_RUNNING_LOW(fl) \
498     (IDXDIFF(fl->dbidx * 8, fl->cidx, fl->sidx * 8) <= fl->lowat)
499 #define FL_NOT_RUNNING_LOW(fl) \
500     (IDXDIFF(fl->dbidx * 8, fl->cidx, fl->sidx * 8) >= 2 * fl->lowat)
501 
502 struct sge_fl {
503 	struct mtx fl_lock;
504 	__be64 *desc;		/* KVA of descriptor ring, ptr to addresses */
505 	struct fl_sdesc *sdesc;	/* KVA of software descriptor ring */
506 	struct cluster_layout cll_def;	/* default refill zone, layout */
507 	uint16_t lowat;		/* # of buffers <= this means fl needs help */
508 	int flags;
509 	uint16_t buf_boundary;
510 
511 	/* The 16b idx all deal with hw descriptors */
512 	uint16_t dbidx;		/* hw pidx after last doorbell */
513 	uint16_t sidx;		/* index of status page */
514 	volatile uint16_t hw_cidx;
515 
516 	/* The 32b idx are all buffer idx, not hardware descriptor idx */
517 	uint32_t cidx;		/* consumer index */
518 	uint32_t pidx;		/* producer index */
519 
520 	uint32_t dbval;
521 	u_int rx_offset;	/* offset in fl buf (when buffer packing) */
522 	volatile uint32_t *udb;
523 
524 	uint64_t mbuf_allocated;/* # of mbuf allocated from zone_mbuf */
525 	uint64_t mbuf_inlined;	/* # of mbuf created within clusters */
526 	uint64_t cl_allocated;	/* # of clusters allocated */
527 	uint64_t cl_recycled;	/* # of clusters recycled */
528 	uint64_t cl_fast_recycled; /* # of clusters recycled (fast) */
529 
530 	/* These 3 are valid when FL_BUF_RESUME is set, stale otherwise. */
531 	struct mbuf *m0;
532 	struct mbuf **pnext;
533 	u_int remaining;
534 
535 	uint16_t qsize;		/* # of hw descriptors (status page included) */
536 	uint16_t cntxt_id;	/* SGE context id for the freelist */
537 	TAILQ_ENTRY(sge_fl) link; /* All starving freelists */
538 	bus_dma_tag_t desc_tag;
539 	bus_dmamap_t desc_map;
540 	char lockname[16];
541 	bus_addr_t ba;		/* bus address of descriptor ring */
542 	struct cluster_layout cll_alt;	/* alternate refill zone, layout */
543 };
544 
545 struct mp_ring;
546 
547 /* txq: SGE egress queue + what's needed for Ethernet NIC */
548 struct sge_txq {
549 	struct sge_eq eq;	/* MUST be first */
550 
551 	struct ifnet *ifp;	/* the interface this txq belongs to */
552 	struct mp_ring *r;	/* tx software ring */
553 	struct tx_sdesc *sdesc;	/* KVA of software descriptor ring */
554 	struct sglist *gl;
555 	__be32 cpl_ctrl0;	/* for convenience */
556 	int tc_idx;		/* traffic class */
557 
558 	struct task tx_reclaim_task;
559 	/* stats for common events first */
560 
561 	uint64_t txcsum;	/* # of times hardware assisted with checksum */
562 	uint64_t tso_wrs;	/* # of TSO work requests */
563 	uint64_t vlan_insertion;/* # of times VLAN tag was inserted */
564 	uint64_t imm_wrs;	/* # of work requests with immediate data */
565 	uint64_t sgl_wrs;	/* # of work requests with direct SGL */
566 	uint64_t txpkt_wrs;	/* # of txpkt work requests (not coalesced) */
567 	uint64_t txpkts0_wrs;	/* # of type0 coalesced tx work requests */
568 	uint64_t txpkts1_wrs;	/* # of type1 coalesced tx work requests */
569 	uint64_t txpkts0_pkts;	/* # of frames in type0 coalesced tx WRs */
570 	uint64_t txpkts1_pkts;	/* # of frames in type1 coalesced tx WRs */
571 
572 	/* stats for not-that-common events */
573 } __aligned(CACHE_LINE_SIZE);
574 
575 /* rxq: SGE ingress queue + SGE free list + miscellaneous items */
576 struct sge_rxq {
577 	struct sge_iq iq;	/* MUST be first */
578 	struct sge_fl fl;	/* MUST follow iq */
579 
580 	struct ifnet *ifp;	/* the interface this rxq belongs to */
581 #if defined(INET) || defined(INET6)
582 	struct lro_ctrl lro;	/* LRO state */
583 #endif
584 
585 	/* stats for common events first */
586 
587 	uint64_t rxcsum;	/* # of times hardware assisted with checksum */
588 	uint64_t vlan_extraction;/* # of times VLAN tag was extracted */
589 
590 	/* stats for not-that-common events */
591 
592 } __aligned(CACHE_LINE_SIZE);
593 
594 static inline struct sge_rxq *
595 iq_to_rxq(struct sge_iq *iq)
596 {
597 
598 	return (__containerof(iq, struct sge_rxq, iq));
599 }
600 
601 
602 /* ofld_rxq: SGE ingress queue + SGE free list + miscellaneous items */
603 struct sge_ofld_rxq {
604 	struct sge_iq iq;	/* MUST be first */
605 	struct sge_fl fl;	/* MUST follow iq */
606 } __aligned(CACHE_LINE_SIZE);
607 
608 static inline struct sge_ofld_rxq *
609 iq_to_ofld_rxq(struct sge_iq *iq)
610 {
611 
612 	return (__containerof(iq, struct sge_ofld_rxq, iq));
613 }
614 
615 struct wrqe {
616 	STAILQ_ENTRY(wrqe) link;
617 	struct sge_wrq *wrq;
618 	int wr_len;
619 	char wr[] __aligned(16);
620 };
621 
622 struct wrq_cookie {
623 	TAILQ_ENTRY(wrq_cookie) link;
624 	int ndesc;
625 	int pidx;
626 };
627 
628 /*
629  * wrq: SGE egress queue that is given prebuilt work requests.  Both the control
630  * and offload tx queues are of this type.
631  */
632 struct sge_wrq {
633 	struct sge_eq eq;	/* MUST be first */
634 
635 	struct adapter *adapter;
636 	struct task wrq_tx_task;
637 
638 	/* Tx desc reserved but WR not "committed" yet. */
639 	TAILQ_HEAD(wrq_incomplete_wrs , wrq_cookie) incomplete_wrs;
640 
641 	/* List of WRs ready to go out as soon as descriptors are available. */
642 	STAILQ_HEAD(, wrqe) wr_list;
643 	u_int nwr_pending;
644 	u_int ndesc_needed;
645 
646 	/* stats for common events first */
647 
648 	uint64_t tx_wrs_direct;	/* # of WRs written directly to desc ring. */
649 	uint64_t tx_wrs_ss;	/* # of WRs copied from scratch space. */
650 	uint64_t tx_wrs_copied;	/* # of WRs queued and copied to desc ring. */
651 
652 	/* stats for not-that-common events */
653 
654 	/*
655 	 * Scratch space for work requests that wrap around after reaching the
656 	 * status page, and some information about the last WR that used it.
657 	 */
658 	uint16_t ss_pidx;
659 	uint16_t ss_len;
660 	uint8_t ss[SGE_MAX_WR_LEN];
661 
662 } __aligned(CACHE_LINE_SIZE);
663 
664 
665 struct sge_nm_rxq {
666 	struct vi_info *vi;
667 
668 	struct iq_desc *iq_desc;
669 	uint16_t iq_abs_id;
670 	uint16_t iq_cntxt_id;
671 	uint16_t iq_cidx;
672 	uint16_t iq_sidx;
673 	uint8_t iq_gen;
674 
675 	__be64  *fl_desc;
676 	uint16_t fl_cntxt_id;
677 	uint32_t fl_cidx;
678 	uint32_t fl_pidx;
679 	uint32_t fl_sidx;
680 	uint32_t fl_db_val;
681 	u_int fl_hwidx:4;
682 
683 	u_int nid;		/* netmap ring # for this queue */
684 
685 	/* infrequently used items after this */
686 
687 	bus_dma_tag_t iq_desc_tag;
688 	bus_dmamap_t iq_desc_map;
689 	bus_addr_t iq_ba;
690 	int intr_idx;
691 
692 	bus_dma_tag_t fl_desc_tag;
693 	bus_dmamap_t fl_desc_map;
694 	bus_addr_t fl_ba;
695 } __aligned(CACHE_LINE_SIZE);
696 
697 struct sge_nm_txq {
698 	struct tx_desc *desc;
699 	uint16_t cidx;
700 	uint16_t pidx;
701 	uint16_t sidx;
702 	uint16_t equiqidx;	/* EQUIQ last requested at this pidx */
703 	uint16_t equeqidx;	/* EQUEQ last requested at this pidx */
704 	uint16_t dbidx;		/* pidx of the most recent doorbell */
705 	uint16_t doorbells;
706 	volatile uint32_t *udb;
707 	u_int udb_qid;
708 	u_int cntxt_id;
709 	__be32 cpl_ctrl0;	/* for convenience */
710 	u_int nid;		/* netmap ring # for this queue */
711 
712 	/* infrequently used items after this */
713 
714 	bus_dma_tag_t desc_tag;
715 	bus_dmamap_t desc_map;
716 	bus_addr_t ba;
717 	int iqidx;
718 } __aligned(CACHE_LINE_SIZE);
719 
720 struct sge {
721 	int nrxq;	/* total # of Ethernet rx queues */
722 	int ntxq;	/* total # of Ethernet tx tx queues */
723 	int nofldrxq;	/* total # of TOE rx queues */
724 	int nofldtxq;	/* total # of TOE tx queues */
725 	int nnmrxq;	/* total # of netmap rx queues */
726 	int nnmtxq;	/* total # of netmap tx queues */
727 	int niq;	/* total # of ingress queues */
728 	int neq;	/* total # of egress queues */
729 
730 	struct sge_iq fwq;	/* Firmware event queue */
731 	struct sge_wrq mgmtq;	/* Management queue (control queue) */
732 	struct sge_wrq *ctrlq;	/* Control queues */
733 	struct sge_txq *txq;	/* NIC tx queues */
734 	struct sge_rxq *rxq;	/* NIC rx queues */
735 	struct sge_wrq *ofld_txq;	/* TOE tx queues */
736 	struct sge_ofld_rxq *ofld_rxq;	/* TOE rx queues */
737 	struct sge_nm_txq *nm_txq;	/* netmap tx queues */
738 	struct sge_nm_rxq *nm_rxq;	/* netmap rx queues */
739 
740 	uint16_t iq_start;
741 	int eq_start;
742 	struct sge_iq **iqmap;	/* iq->cntxt_id to iq mapping */
743 	struct sge_eq **eqmap;	/* eq->cntxt_id to eq mapping */
744 
745 	int8_t safe_hwidx1;	/* may not have room for metadata */
746 	int8_t safe_hwidx2;	/* with room for metadata and maybe more */
747 	struct sw_zone_info sw_zone_info[SW_ZONE_SIZES];
748 	struct hw_buf_info hw_buf_info[SGE_FLBUF_SIZES];
749 };
750 
751 struct adapter {
752 	SLIST_ENTRY(adapter) link;
753 	device_t dev;
754 	struct cdev *cdev;
755 
756 	/* PCIe register resources */
757 	int regs_rid;
758 	struct resource *regs_res;
759 	int msix_rid;
760 	struct resource *msix_res;
761 	bus_space_handle_t bh;
762 	bus_space_tag_t bt;
763 	bus_size_t mmio_len;
764 	int udbs_rid;
765 	struct resource *udbs_res;
766 	volatile uint8_t *udbs_base;
767 
768 	unsigned int pf;
769 	unsigned int mbox;
770 	unsigned int vpd_busy;
771 	unsigned int vpd_flag;
772 
773 	/* Interrupt information */
774 	int intr_type;
775 	int intr_count;
776 	struct irq {
777 		struct resource *res;
778 		int rid;
779 		volatile int nm_state;	/* NM_OFF, NM_ON, or NM_BUSY */
780 		void *tag;
781 		struct sge_rxq *rxq;
782 		struct sge_nm_rxq *nm_rxq;
783 	} __aligned(CACHE_LINE_SIZE) *irq;
784 
785 	bus_dma_tag_t dmat;	/* Parent DMA tag */
786 
787 	struct sge sge;
788 	int lro_timeout;
789 	int sc_do_rxcopy;
790 
791 	struct taskqueue *tq[MAX_NCHAN];	/* General purpose taskqueues */
792 	struct port_info *port[MAX_NPORTS];
793 	uint8_t chan_map[MAX_NCHAN];
794 
795 	void *tom_softc;	/* (struct tom_data *) */
796 	struct tom_tunables tt;
797 	void *iwarp_softc;	/* (struct c4iw_dev *) */
798 	void *iscsi_ulp_softc;	/* (struct cxgbei_data *) */
799 	struct l2t_data *l2t;	/* L2 table */
800 	struct tid_info tids;
801 
802 	uint16_t doorbells;
803 	int offload_map;	/* ports with IFCAP_TOE enabled */
804 	int active_ulds;	/* ULDs activated on this adapter */
805 	int flags;
806 	int debug_flags;
807 
808 	char ifp_lockname[16];
809 	struct mtx ifp_lock;
810 	struct ifnet *ifp;	/* tracer ifp */
811 	struct ifmedia media;
812 	int traceq;		/* iq used by all tracers, -1 if none */
813 	int tracer_valid;	/* bitmap of valid tracers */
814 	int tracer_enabled;	/* bitmap of enabled tracers */
815 
816 	char fw_version[16];
817 	char tp_version[16];
818 	char exprom_version[16];
819 	char cfg_file[32];
820 	u_int cfcsum;
821 	struct adapter_params params;
822 	const struct chip_params *chip_params;
823 	struct t4_virt_res vres;
824 
825 	uint16_t nbmcaps;
826 	uint16_t linkcaps;
827 	uint16_t switchcaps;
828 	uint16_t niccaps;
829 	uint16_t toecaps;
830 	uint16_t rdmacaps;
831 	uint16_t tlscaps;
832 	uint16_t iscsicaps;
833 	uint16_t fcoecaps;
834 
835 	struct sysctl_ctx_list ctx; /* from adapter_full_init to full_uninit */
836 
837 	struct mtx sc_lock;
838 	char lockname[16];
839 
840 	/* Starving free lists */
841 	struct mtx sfl_lock;	/* same cache-line as sc_lock? but that's ok */
842 	TAILQ_HEAD(, sge_fl) sfl;
843 	struct callout sfl_callout;
844 
845 	struct mtx reg_lock;	/* for indirect register access */
846 
847 	struct memwin memwin[NUM_MEMWIN];	/* memory windows */
848 
849 	const char *last_op;
850 	const void *last_op_thr;
851 	int last_op_flags;
852 };
853 
854 #define ADAPTER_LOCK(sc)		mtx_lock(&(sc)->sc_lock)
855 #define ADAPTER_UNLOCK(sc)		mtx_unlock(&(sc)->sc_lock)
856 #define ADAPTER_LOCK_ASSERT_OWNED(sc)	mtx_assert(&(sc)->sc_lock, MA_OWNED)
857 #define ADAPTER_LOCK_ASSERT_NOTOWNED(sc) mtx_assert(&(sc)->sc_lock, MA_NOTOWNED)
858 
859 #define ASSERT_SYNCHRONIZED_OP(sc)	\
860     KASSERT(IS_BUSY(sc) && \
861 	(mtx_owned(&(sc)->sc_lock) || sc->last_op_thr == curthread), \
862 	("%s: operation not synchronized.", __func__))
863 
864 #define PORT_LOCK(pi)			mtx_lock(&(pi)->pi_lock)
865 #define PORT_UNLOCK(pi)			mtx_unlock(&(pi)->pi_lock)
866 #define PORT_LOCK_ASSERT_OWNED(pi)	mtx_assert(&(pi)->pi_lock, MA_OWNED)
867 #define PORT_LOCK_ASSERT_NOTOWNED(pi)	mtx_assert(&(pi)->pi_lock, MA_NOTOWNED)
868 
869 #define FL_LOCK(fl)			mtx_lock(&(fl)->fl_lock)
870 #define FL_TRYLOCK(fl)			mtx_trylock(&(fl)->fl_lock)
871 #define FL_UNLOCK(fl)			mtx_unlock(&(fl)->fl_lock)
872 #define FL_LOCK_ASSERT_OWNED(fl)	mtx_assert(&(fl)->fl_lock, MA_OWNED)
873 #define FL_LOCK_ASSERT_NOTOWNED(fl)	mtx_assert(&(fl)->fl_lock, MA_NOTOWNED)
874 
875 #define RXQ_FL_LOCK(rxq)		FL_LOCK(&(rxq)->fl)
876 #define RXQ_FL_UNLOCK(rxq)		FL_UNLOCK(&(rxq)->fl)
877 #define RXQ_FL_LOCK_ASSERT_OWNED(rxq)	FL_LOCK_ASSERT_OWNED(&(rxq)->fl)
878 #define RXQ_FL_LOCK_ASSERT_NOTOWNED(rxq) FL_LOCK_ASSERT_NOTOWNED(&(rxq)->fl)
879 
880 #define EQ_LOCK(eq)			mtx_lock(&(eq)->eq_lock)
881 #define EQ_TRYLOCK(eq)			mtx_trylock(&(eq)->eq_lock)
882 #define EQ_UNLOCK(eq)			mtx_unlock(&(eq)->eq_lock)
883 #define EQ_LOCK_ASSERT_OWNED(eq)	mtx_assert(&(eq)->eq_lock, MA_OWNED)
884 #define EQ_LOCK_ASSERT_NOTOWNED(eq)	mtx_assert(&(eq)->eq_lock, MA_NOTOWNED)
885 
886 #define TXQ_LOCK(txq)			EQ_LOCK(&(txq)->eq)
887 #define TXQ_TRYLOCK(txq)		EQ_TRYLOCK(&(txq)->eq)
888 #define TXQ_UNLOCK(txq)			EQ_UNLOCK(&(txq)->eq)
889 #define TXQ_LOCK_ASSERT_OWNED(txq)	EQ_LOCK_ASSERT_OWNED(&(txq)->eq)
890 #define TXQ_LOCK_ASSERT_NOTOWNED(txq)	EQ_LOCK_ASSERT_NOTOWNED(&(txq)->eq)
891 
892 #define CH_DUMP_MBOX(sc, mbox, data_reg) \
893 	do { \
894 		if (sc->debug_flags & DF_DUMP_MBOX) { \
895 			log(LOG_NOTICE, \
896 			    "%s mbox %u: %016llx %016llx %016llx %016llx " \
897 			    "%016llx %016llx %016llx %016llx\n", \
898 			    device_get_nameunit(sc->dev), mbox, \
899 			    (unsigned long long)t4_read_reg64(sc, data_reg), \
900 			    (unsigned long long)t4_read_reg64(sc, data_reg + 8), \
901 			    (unsigned long long)t4_read_reg64(sc, data_reg + 16), \
902 			    (unsigned long long)t4_read_reg64(sc, data_reg + 24), \
903 			    (unsigned long long)t4_read_reg64(sc, data_reg + 32), \
904 			    (unsigned long long)t4_read_reg64(sc, data_reg + 40), \
905 			    (unsigned long long)t4_read_reg64(sc, data_reg + 48), \
906 			    (unsigned long long)t4_read_reg64(sc, data_reg + 56)); \
907 		} \
908 	} while (0)
909 
910 #define for_each_txq(vi, iter, q) \
911 	for (q = &vi->pi->adapter->sge.txq[vi->first_txq], iter = 0; \
912 	    iter < vi->ntxq; ++iter, ++q)
913 #define for_each_rxq(vi, iter, q) \
914 	for (q = &vi->pi->adapter->sge.rxq[vi->first_rxq], iter = 0; \
915 	    iter < vi->nrxq; ++iter, ++q)
916 #define for_each_ofld_txq(vi, iter, q) \
917 	for (q = &vi->pi->adapter->sge.ofld_txq[vi->first_ofld_txq], iter = 0; \
918 	    iter < vi->nofldtxq; ++iter, ++q)
919 #define for_each_ofld_rxq(vi, iter, q) \
920 	for (q = &vi->pi->adapter->sge.ofld_rxq[vi->first_ofld_rxq], iter = 0; \
921 	    iter < vi->nofldrxq; ++iter, ++q)
922 #define for_each_nm_txq(vi, iter, q) \
923 	for (q = &vi->pi->adapter->sge.nm_txq[vi->first_nm_txq], iter = 0; \
924 	    iter < vi->nnmtxq; ++iter, ++q)
925 #define for_each_nm_rxq(vi, iter, q) \
926 	for (q = &vi->pi->adapter->sge.nm_rxq[vi->first_nm_rxq], iter = 0; \
927 	    iter < vi->nnmrxq; ++iter, ++q)
928 #define for_each_vi(_pi, _iter, _vi) \
929 	for ((_vi) = (_pi)->vi, (_iter) = 0; (_iter) < (_pi)->nvi; \
930 	     ++(_iter), ++(_vi))
931 
932 #define IDXINCR(idx, incr, wrap) do { \
933 	idx = wrap - idx > incr ? idx + incr : incr - (wrap - idx); \
934 } while (0)
935 #define IDXDIFF(head, tail, wrap) \
936 	((head) >= (tail) ? (head) - (tail) : (wrap) - (tail) + (head))
937 
938 /* One for errors, one for firmware events */
939 #define T4_EXTRA_INTR 2
940 
941 static inline uint32_t
942 t4_read_reg(struct adapter *sc, uint32_t reg)
943 {
944 
945 	return bus_space_read_4(sc->bt, sc->bh, reg);
946 }
947 
948 static inline void
949 t4_write_reg(struct adapter *sc, uint32_t reg, uint32_t val)
950 {
951 
952 	bus_space_write_4(sc->bt, sc->bh, reg, val);
953 }
954 
955 static inline uint64_t
956 t4_read_reg64(struct adapter *sc, uint32_t reg)
957 {
958 
959 	return t4_bus_space_read_8(sc->bt, sc->bh, reg);
960 }
961 
962 static inline void
963 t4_write_reg64(struct adapter *sc, uint32_t reg, uint64_t val)
964 {
965 
966 	t4_bus_space_write_8(sc->bt, sc->bh, reg, val);
967 }
968 
969 static inline void
970 t4_os_pci_read_cfg1(struct adapter *sc, int reg, uint8_t *val)
971 {
972 
973 	*val = pci_read_config(sc->dev, reg, 1);
974 }
975 
976 static inline void
977 t4_os_pci_write_cfg1(struct adapter *sc, int reg, uint8_t val)
978 {
979 
980 	pci_write_config(sc->dev, reg, val, 1);
981 }
982 
983 static inline void
984 t4_os_pci_read_cfg2(struct adapter *sc, int reg, uint16_t *val)
985 {
986 
987 	*val = pci_read_config(sc->dev, reg, 2);
988 }
989 
990 static inline void
991 t4_os_pci_write_cfg2(struct adapter *sc, int reg, uint16_t val)
992 {
993 
994 	pci_write_config(sc->dev, reg, val, 2);
995 }
996 
997 static inline void
998 t4_os_pci_read_cfg4(struct adapter *sc, int reg, uint32_t *val)
999 {
1000 
1001 	*val = pci_read_config(sc->dev, reg, 4);
1002 }
1003 
1004 static inline void
1005 t4_os_pci_write_cfg4(struct adapter *sc, int reg, uint32_t val)
1006 {
1007 
1008 	pci_write_config(sc->dev, reg, val, 4);
1009 }
1010 
1011 static inline struct port_info *
1012 adap2pinfo(struct adapter *sc, int idx)
1013 {
1014 
1015 	return (sc->port[idx]);
1016 }
1017 
1018 static inline void
1019 t4_os_set_hw_addr(struct adapter *sc, int idx, uint8_t hw_addr[])
1020 {
1021 
1022 	bcopy(hw_addr, sc->port[idx]->vi[0].hw_addr, ETHER_ADDR_LEN);
1023 }
1024 
1025 static inline bool
1026 is_10G_port(const struct port_info *pi)
1027 {
1028 
1029 	return ((pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G) != 0);
1030 }
1031 
1032 static inline bool
1033 is_40G_port(const struct port_info *pi)
1034 {
1035 
1036 	return ((pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G) != 0);
1037 }
1038 
1039 static inline int
1040 port_top_speed(const struct port_info *pi)
1041 {
1042 
1043 	if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100G)
1044 		return (100);
1045 	if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
1046 		return (40);
1047 	if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
1048 		return (10);
1049 	if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
1050 		return (1);
1051 
1052 	return (0);
1053 }
1054 
1055 static inline int
1056 tx_resume_threshold(struct sge_eq *eq)
1057 {
1058 
1059 	/* not quite the same as qsize / 4, but this will do. */
1060 	return (eq->sidx / 4);
1061 }
1062 
1063 static inline int
1064 t4_use_ldst(struct adapter *sc)
1065 {
1066 
1067 #ifdef notyet
1068 	return (sc->flags & FW_OK || !sc->use_bd);
1069 #else
1070 	return (0);
1071 #endif
1072 }
1073 
1074 /* t4_main.c */
1075 int t4_os_find_pci_capability(struct adapter *, int);
1076 int t4_os_pci_save_state(struct adapter *);
1077 int t4_os_pci_restore_state(struct adapter *);
1078 void t4_os_portmod_changed(const struct adapter *, int);
1079 void t4_os_link_changed(struct adapter *, int, int, int);
1080 void t4_iterate(void (*)(struct adapter *, void *), void *);
1081 int t4_filter_rpl(struct sge_iq *, const struct rss_header *, struct mbuf *);
1082 int begin_synchronized_op(struct adapter *, struct vi_info *, int, char *);
1083 void doom_vi(struct adapter *, struct vi_info *);
1084 void end_synchronized_op(struct adapter *, int);
1085 int update_mac_settings(struct ifnet *, int);
1086 int adapter_full_init(struct adapter *);
1087 int adapter_full_uninit(struct adapter *);
1088 uint64_t cxgbe_get_counter(struct ifnet *, ift_counter);
1089 int vi_full_init(struct vi_info *);
1090 int vi_full_uninit(struct vi_info *);
1091 void vi_sysctls(struct vi_info *);
1092 void vi_tick(void *);
1093 
1094 #ifdef DEV_NETMAP
1095 /* t4_netmap.c */
1096 void cxgbe_nm_attach(struct vi_info *);
1097 void cxgbe_nm_detach(struct vi_info *);
1098 void t4_nm_intr(void *);
1099 #endif
1100 
1101 /* t4_sge.c */
1102 void t4_sge_modload(void);
1103 void t4_sge_modunload(void);
1104 uint64_t t4_sge_extfree_refs(void);
1105 void t4_tweak_chip_settings(struct adapter *);
1106 int t4_read_chip_settings(struct adapter *);
1107 int t4_create_dma_tag(struct adapter *);
1108 void t4_sge_sysctls(struct adapter *, struct sysctl_ctx_list *,
1109     struct sysctl_oid_list *);
1110 int t4_destroy_dma_tag(struct adapter *);
1111 int t4_setup_adapter_queues(struct adapter *);
1112 int t4_teardown_adapter_queues(struct adapter *);
1113 int t4_setup_vi_queues(struct vi_info *);
1114 int t4_teardown_vi_queues(struct vi_info *);
1115 void t4_intr_all(void *);
1116 void t4_intr(void *);
1117 void t4_vi_intr(void *);
1118 void t4_intr_err(void *);
1119 void t4_intr_evt(void *);
1120 void t4_wrq_tx_locked(struct adapter *, struct sge_wrq *, struct wrqe *);
1121 void t4_update_fl_bufsize(struct ifnet *);
1122 int parse_pkt(struct mbuf **);
1123 void *start_wrq_wr(struct sge_wrq *, int, struct wrq_cookie *);
1124 void commit_wrq_wr(struct sge_wrq *, void *, struct wrq_cookie *);
1125 int tnl_cong(struct port_info *, int);
1126 int t4_register_an_handler(an_handler_t);
1127 int t4_register_fw_msg_handler(int, fw_msg_handler_t);
1128 int t4_register_cpl_handler(int, cpl_handler_t);
1129 
1130 /* t4_tracer.c */
1131 struct t4_tracer;
1132 void t4_tracer_modload(void);
1133 void t4_tracer_modunload(void);
1134 void t4_tracer_port_detach(struct adapter *);
1135 int t4_get_tracer(struct adapter *, struct t4_tracer *);
1136 int t4_set_tracer(struct adapter *, struct t4_tracer *);
1137 int t4_trace_pkt(struct sge_iq *, const struct rss_header *, struct mbuf *);
1138 int t5_trace_pkt(struct sge_iq *, const struct rss_header *, struct mbuf *);
1139 
1140 static inline struct wrqe *
1141 alloc_wrqe(int wr_len, struct sge_wrq *wrq)
1142 {
1143 	int len = offsetof(struct wrqe, wr) + wr_len;
1144 	struct wrqe *wr;
1145 
1146 	wr = malloc(len, M_CXGBE, M_NOWAIT);
1147 	if (__predict_false(wr == NULL))
1148 		return (NULL);
1149 	wr->wr_len = wr_len;
1150 	wr->wrq = wrq;
1151 	return (wr);
1152 }
1153 
1154 static inline void *
1155 wrtod(struct wrqe *wr)
1156 {
1157 	return (&wr->wr[0]);
1158 }
1159 
1160 static inline void
1161 free_wrqe(struct wrqe *wr)
1162 {
1163 	free(wr, M_CXGBE);
1164 }
1165 
1166 static inline void
1167 t4_wrq_tx(struct adapter *sc, struct wrqe *wr)
1168 {
1169 	struct sge_wrq *wrq = wr->wrq;
1170 
1171 	TXQ_LOCK(wrq);
1172 	t4_wrq_tx_locked(sc, wrq, wr);
1173 	TXQ_UNLOCK(wrq);
1174 }
1175 
1176 #endif
1177