xref: /freebsd/sys/dev/cxgbe/adapter.h (revision a3d9bf49b57923118c339642594246ef73872ee8)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2011 Chelsio Communications, Inc.
5  * All rights reserved.
6  * Written by: Navdeep Parhar <np@FreeBSD.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  *
31  */
32 
33 #ifndef __T4_ADAPTER_H__
34 #define __T4_ADAPTER_H__
35 
36 #include <sys/kernel.h>
37 #include <sys/bus.h>
38 #include <sys/counter.h>
39 #include <sys/rman.h>
40 #include <sys/types.h>
41 #include <sys/lock.h>
42 #include <sys/malloc.h>
43 #include <sys/rwlock.h>
44 #include <sys/sx.h>
45 #include <sys/vmem.h>
46 #include <vm/uma.h>
47 
48 #include <dev/pci/pcivar.h>
49 #include <dev/pci/pcireg.h>
50 #include <machine/bus.h>
51 #include <sys/socket.h>
52 #include <sys/sysctl.h>
53 #include <net/ethernet.h>
54 #include <net/if.h>
55 #include <net/if_var.h>
56 #include <net/if_media.h>
57 #include <net/pfil.h>
58 #include <netinet/in.h>
59 #include <netinet/tcp_lro.h>
60 
61 #include "offload.h"
62 #include "t4_ioctl.h"
63 #include "common/t4_msg.h"
64 #include "firmware/t4fw_interface.h"
65 
66 #define KTR_CXGBE	KTR_SPARE3
67 MALLOC_DECLARE(M_CXGBE);
68 #define CXGBE_UNIMPLEMENTED(s) \
69     panic("%s (%s, line %d) not implemented yet.", s, __FILE__, __LINE__)
70 
71 #if defined(__i386__) || defined(__amd64__)
72 static __inline void
73 prefetch(void *x)
74 {
75 	__asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
76 }
77 #else
78 #define prefetch(x) __builtin_prefetch(x)
79 #endif
80 
81 #ifndef SYSCTL_ADD_UQUAD
82 #define SYSCTL_ADD_UQUAD SYSCTL_ADD_QUAD
83 #define sysctl_handle_64 sysctl_handle_quad
84 #define CTLTYPE_U64 CTLTYPE_QUAD
85 #endif
86 
87 SYSCTL_DECL(_hw_cxgbe);
88 
89 struct adapter;
90 typedef struct adapter adapter_t;
91 
92 enum {
93 	/*
94 	 * All ingress queues use this entry size.  Note that the firmware event
95 	 * queue and any iq expecting CPL_RX_PKT in the descriptor needs this to
96 	 * be at least 64.
97 	 */
98 	IQ_ESIZE = 64,
99 
100 	/* Default queue sizes for all kinds of ingress queues */
101 	FW_IQ_QSIZE = 256,
102 	RX_IQ_QSIZE = 1024,
103 
104 	/* All egress queues use this entry size */
105 	EQ_ESIZE = 64,
106 
107 	/* Default queue sizes for all kinds of egress queues */
108 	CTRL_EQ_QSIZE = 1024,
109 	TX_EQ_QSIZE = 1024,
110 
111 #if MJUMPAGESIZE != MCLBYTES
112 	SW_ZONE_SIZES = 4,	/* cluster, jumbop, jumbo9k, jumbo16k */
113 #else
114 	SW_ZONE_SIZES = 3,	/* cluster, jumbo9k, jumbo16k */
115 #endif
116 	CL_METADATA_SIZE = CACHE_LINE_SIZE,
117 
118 	SGE_MAX_WR_NDESC = SGE_MAX_WR_LEN / EQ_ESIZE, /* max WR size in desc */
119 	TX_SGL_SEGS = 39,
120 	TX_SGL_SEGS_TSO = 38,
121 	TX_SGL_SEGS_VM = 38,
122 	TX_SGL_SEGS_VM_TSO = 37,
123 	TX_SGL_SEGS_EO_TSO = 30,	/* XXX: lower for IPv6. */
124 	TX_SGL_SEGS_VXLAN_TSO = 37,
125 	TX_WR_FLITS = SGE_MAX_WR_LEN / 8
126 };
127 
128 enum {
129 	/* adapter intr_type */
130 	INTR_INTX	= (1 << 0),
131 	INTR_MSI 	= (1 << 1),
132 	INTR_MSIX	= (1 << 2)
133 };
134 
135 enum {
136 	XGMAC_MTU	= (1 << 0),
137 	XGMAC_PROMISC	= (1 << 1),
138 	XGMAC_ALLMULTI	= (1 << 2),
139 	XGMAC_VLANEX	= (1 << 3),
140 	XGMAC_UCADDR	= (1 << 4),
141 	XGMAC_MCADDRS	= (1 << 5),
142 
143 	XGMAC_ALL	= 0xffff
144 };
145 
146 enum {
147 	/* flags understood by begin_synchronized_op */
148 	HOLD_LOCK	= (1 << 0),
149 	SLEEP_OK	= (1 << 1),
150 	INTR_OK		= (1 << 2),
151 
152 	/* flags understood by end_synchronized_op */
153 	LOCK_HELD	= HOLD_LOCK,
154 };
155 
156 enum {
157 	/* adapter flags */
158 	FULL_INIT_DONE	= (1 << 0),
159 	FW_OK		= (1 << 1),
160 	CHK_MBOX_ACCESS	= (1 << 2),
161 	MASTER_PF	= (1 << 3),
162 	ADAP_SYSCTL_CTX	= (1 << 4),
163 	ADAP_ERR	= (1 << 5),
164 	BUF_PACKING_OK	= (1 << 6),
165 	IS_VF		= (1 << 7),
166 	KERN_TLS_OK	= (1 << 8),
167 
168 	CXGBE_BUSY	= (1 << 9),
169 
170 	/* port flags */
171 	HAS_TRACEQ	= (1 << 3),
172 	FIXED_IFMEDIA	= (1 << 4),	/* ifmedia list doesn't change. */
173 
174 	/* VI flags */
175 	DOOMED		= (1 << 0),
176 	VI_INIT_DONE	= (1 << 1),
177 	VI_SYSCTL_CTX	= (1 << 2),
178 	TX_USES_VM_WR 	= (1 << 3),
179 
180 	/* adapter debug_flags */
181 	DF_DUMP_MBOX		= (1 << 0),	/* Log all mbox cmd/rpl. */
182 	DF_LOAD_FW_ANYTIME	= (1 << 1),	/* Allow LOAD_FW after init */
183 	DF_DISABLE_TCB_CACHE	= (1 << 2),	/* Disable TCB cache (T6+) */
184 	DF_DISABLE_CFG_RETRY	= (1 << 3),	/* Disable fallback config */
185 	DF_VERBOSE_SLOWINTR	= (1 << 4),	/* Chatty slow intr handler */
186 };
187 
188 #define IS_DOOMED(vi)	((vi)->flags & DOOMED)
189 #define SET_DOOMED(vi)	do {(vi)->flags |= DOOMED;} while (0)
190 #define IS_BUSY(sc)	((sc)->flags & CXGBE_BUSY)
191 #define SET_BUSY(sc)	do {(sc)->flags |= CXGBE_BUSY;} while (0)
192 #define CLR_BUSY(sc)	do {(sc)->flags &= ~CXGBE_BUSY;} while (0)
193 
194 struct vi_info {
195 	device_t dev;
196 	struct port_info *pi;
197 	struct adapter *adapter;
198 
199 	struct ifnet *ifp;
200 	struct pfil_head *pfil;
201 
202 	unsigned long flags;
203 	int if_flags;
204 
205 	uint16_t *rss, *nm_rss;
206 	uint16_t viid;		/* opaque VI identifier */
207 	uint16_t smt_idx;
208 	uint16_t vin;
209 	uint8_t vfvld;
210 	int16_t  xact_addr_filt;/* index of exact MAC address filter */
211 	uint16_t rss_size;	/* size of VI's RSS table slice */
212 	uint16_t rss_base;	/* start of VI's RSS table slice */
213 	int hashen;
214 
215 	int nintr;
216 	int first_intr;
217 
218 	/* These need to be int as they are used in sysctl */
219 	int ntxq;		/* # of tx queues */
220 	int first_txq;		/* index of first tx queue */
221 	int rsrv_noflowq; 	/* Reserve queue 0 for non-flowid packets */
222 	int nrxq;		/* # of rx queues */
223 	int first_rxq;		/* index of first rx queue */
224 	int nofldtxq;		/* # of offload tx queues */
225 	int first_ofld_txq;	/* index of first offload tx queue */
226 	int nofldrxq;		/* # of offload rx queues */
227 	int first_ofld_rxq;	/* index of first offload rx queue */
228 	int nnmtxq;
229 	int first_nm_txq;
230 	int nnmrxq;
231 	int first_nm_rxq;
232 	int tmr_idx;
233 	int ofld_tmr_idx;
234 	int pktc_idx;
235 	int ofld_pktc_idx;
236 	int qsize_rxq;
237 	int qsize_txq;
238 
239 	struct timeval last_refreshed;
240 	struct fw_vi_stats_vf stats;
241 
242 	struct callout tick;
243 	struct sysctl_ctx_list ctx;	/* from ifconfig up to driver detach */
244 
245 	uint8_t hw_addr[ETHER_ADDR_LEN]; /* factory MAC address, won't change */
246 };
247 
248 struct tx_ch_rl_params {
249 	enum fw_sched_params_rate ratemode;	/* %port (REL) or kbps (ABS) */
250 	uint32_t maxrate;
251 };
252 
253 enum {
254 	CLRL_USER	= (1 << 0),	/* allocated manually. */
255 	CLRL_SYNC	= (1 << 1),	/* sync hw update in progress. */
256 	CLRL_ASYNC	= (1 << 2),	/* async hw update requested. */
257 	CLRL_ERR	= (1 << 3),	/* last hw setup ended in error. */
258 };
259 
260 struct tx_cl_rl_params {
261 	int refcount;
262 	uint8_t flags;
263 	enum fw_sched_params_rate ratemode;	/* %port REL or ABS value */
264 	enum fw_sched_params_unit rateunit;	/* kbps or pps (when ABS) */
265 	enum fw_sched_params_mode mode;		/* aggr or per-flow */
266 	uint32_t maxrate;
267 	uint16_t pktsize;
268 	uint16_t burstsize;
269 };
270 
271 /* Tx scheduler parameters for a channel/port */
272 struct tx_sched_params {
273 	/* Channel Rate Limiter */
274 	struct tx_ch_rl_params ch_rl;
275 
276 	/* Class WRR */
277 	/* XXX */
278 
279 	/* Class Rate Limiter (including the default pktsize and burstsize). */
280 	int pktsize;
281 	int burstsize;
282 	struct tx_cl_rl_params cl_rl[];
283 };
284 
285 struct port_info {
286 	device_t dev;
287 	struct adapter *adapter;
288 
289 	struct vi_info *vi;
290 	int nvi;
291 	int up_vis;
292 	int uld_vis;
293 	bool vxlan_tcam_entry;
294 
295 	struct tx_sched_params *sched_params;
296 
297 	struct mtx pi_lock;
298 	char lockname[16];
299 	unsigned long flags;
300 
301 	uint8_t  lport;		/* associated offload logical port */
302 	int8_t   mdio_addr;
303 	uint8_t  port_type;
304 	uint8_t  mod_type;
305 	uint8_t  port_id;
306 	uint8_t  tx_chan;
307 	uint8_t  mps_bg_map;	/* rx MPS buffer group bitmap */
308 	uint8_t  rx_e_chan_map;	/* rx TP e-channel bitmap */
309 
310 	struct link_config link_cfg;
311 	struct ifmedia media;
312 
313 	struct timeval last_refreshed;
314  	struct port_stats stats;
315 	u_int tnl_cong_drops;
316 	u_int tx_parse_error;
317 	u_long	tx_toe_tls_records;
318 	u_long	tx_toe_tls_octets;
319 	u_long	rx_toe_tls_records;
320 	u_long	rx_toe_tls_octets;
321 
322 	struct callout tick;
323 };
324 
325 #define	IS_MAIN_VI(vi)		((vi) == &((vi)->pi->vi[0]))
326 
327 struct cluster_metadata {
328 	uma_zone_t zone;
329 	caddr_t cl;
330 	u_int refcount;
331 };
332 
333 struct fl_sdesc {
334 	caddr_t cl;
335 	uint16_t nmbuf;	/* # of driver originated mbufs with ref on cluster */
336 	int16_t moff;	/* offset of metadata from cl */
337 	uint8_t zidx;
338 };
339 
340 struct tx_desc {
341 	__be64 flit[8];
342 };
343 
344 struct tx_sdesc {
345 	struct mbuf *m;		/* m_nextpkt linked chain of frames */
346 	uint8_t desc_used;	/* # of hardware descriptors used by the WR */
347 };
348 
349 
350 #define IQ_PAD (IQ_ESIZE - sizeof(struct rsp_ctrl) - sizeof(struct rss_header))
351 struct iq_desc {
352 	struct rss_header rss;
353 	uint8_t cpl[IQ_PAD];
354 	struct rsp_ctrl rsp;
355 };
356 #undef IQ_PAD
357 CTASSERT(sizeof(struct iq_desc) == IQ_ESIZE);
358 
359 enum {
360 	/* iq flags */
361 	IQ_ALLOCATED	= (1 << 0),	/* firmware resources allocated */
362 	IQ_HAS_FL	= (1 << 1),	/* iq associated with a freelist */
363 	IQ_RX_TIMESTAMP	= (1 << 2),	/* provide the SGE rx timestamp */
364 	IQ_LRO_ENABLED	= (1 << 3),	/* iq is an eth rxq with LRO enabled */
365 	IQ_ADJ_CREDIT	= (1 << 4),	/* hw is off by 1 credit for this iq */
366 
367 	/* iq state */
368 	IQS_DISABLED	= 0,
369 	IQS_BUSY	= 1,
370 	IQS_IDLE	= 2,
371 
372 	/* netmap related flags */
373 	NM_OFF	= 0,
374 	NM_ON	= 1,
375 	NM_BUSY	= 2,
376 };
377 
378 enum {
379 	CPL_COOKIE_RESERVED = 0,
380 	CPL_COOKIE_FILTER,
381 	CPL_COOKIE_DDP0,
382 	CPL_COOKIE_DDP1,
383 	CPL_COOKIE_TOM,
384 	CPL_COOKIE_HASHFILTER,
385 	CPL_COOKIE_ETHOFLD,
386 	CPL_COOKIE_KERN_TLS,
387 
388 	NUM_CPL_COOKIES = 8	/* Limited by M_COOKIE.  Do not increase. */
389 };
390 
391 struct sge_iq;
392 struct rss_header;
393 typedef int (*cpl_handler_t)(struct sge_iq *, const struct rss_header *,
394     struct mbuf *);
395 typedef int (*an_handler_t)(struct sge_iq *, const struct rsp_ctrl *);
396 typedef int (*fw_msg_handler_t)(struct adapter *, const __be64 *);
397 
398 /*
399  * Ingress Queue: T4 is producer, driver is consumer.
400  */
401 struct sge_iq {
402 	uint32_t flags;
403 	volatile int state;
404 	struct adapter *adapter;
405 	struct iq_desc  *desc;	/* KVA of descriptor ring */
406 	int8_t   intr_pktc_idx;	/* packet count threshold index */
407 	uint8_t  gen;		/* generation bit */
408 	uint8_t  intr_params;	/* interrupt holdoff parameters */
409 	uint8_t  intr_next;	/* XXX: holdoff for next interrupt */
410 	uint16_t qsize;		/* size (# of entries) of the queue */
411 	uint16_t sidx;		/* index of the entry with the status page */
412 	uint16_t cidx;		/* consumer index */
413 	uint16_t cntxt_id;	/* SGE context id for the iq */
414 	uint16_t abs_id;	/* absolute SGE id for the iq */
415 
416 	STAILQ_ENTRY(sge_iq) link;
417 
418 	bus_dma_tag_t desc_tag;
419 	bus_dmamap_t desc_map;
420 	bus_addr_t ba;		/* bus address of descriptor ring */
421 };
422 
423 enum {
424 	EQ_CTRL		= 1,
425 	EQ_ETH		= 2,
426 	EQ_OFLD		= 3,
427 
428 	/* eq flags */
429 	EQ_TYPEMASK	= 0x3,		/* 2 lsbits hold the type (see above) */
430 	EQ_ALLOCATED	= (1 << 2),	/* firmware resources allocated */
431 	EQ_ENABLED	= (1 << 3),	/* open for business */
432 	EQ_QFLUSH	= (1 << 4),	/* if_qflush in progress */
433 };
434 
435 /* Listed in order of preference.  Update t4_sysctls too if you change these */
436 enum {DOORBELL_UDB, DOORBELL_WCWR, DOORBELL_UDBWC, DOORBELL_KDB};
437 
438 /*
439  * Egress Queue: driver is producer, T4 is consumer.
440  *
441  * Note: A free list is an egress queue (driver produces the buffers and T4
442  * consumes them) but it's special enough to have its own struct (see sge_fl).
443  */
444 struct sge_eq {
445 	unsigned int flags;	/* MUST be first */
446 	unsigned int cntxt_id;	/* SGE context id for the eq */
447 	unsigned int abs_id;	/* absolute SGE id for the eq */
448 	struct mtx eq_lock;
449 
450 	struct tx_desc *desc;	/* KVA of descriptor ring */
451 	uint8_t doorbells;
452 	volatile uint32_t *udb;	/* KVA of doorbell (lies within BAR2) */
453 	u_int udb_qid;		/* relative qid within the doorbell page */
454 	uint16_t sidx;		/* index of the entry with the status page */
455 	uint16_t cidx;		/* consumer idx (desc idx) */
456 	uint16_t pidx;		/* producer idx (desc idx) */
457 	uint16_t equeqidx;	/* EQUEQ last requested at this pidx */
458 	uint16_t dbidx;		/* pidx of the most recent doorbell */
459 	uint16_t iqid;		/* iq that gets egr_update for the eq */
460 	uint8_t tx_chan;	/* tx channel used by the eq */
461 	volatile u_int equiq;	/* EQUIQ outstanding */
462 
463 	bus_dma_tag_t desc_tag;
464 	bus_dmamap_t desc_map;
465 	bus_addr_t ba;		/* bus address of descriptor ring */
466 	char lockname[16];
467 };
468 
469 struct rx_buf_info {
470 	uma_zone_t zone;	/* zone that this cluster comes from */
471 	uint16_t size1;		/* same as size of cluster: 2K/4K/9K/16K.
472 				 * hwsize[hwidx1] = size1.  No spare. */
473 	uint16_t size2;		/* hwsize[hwidx2] = size2.
474 				 * spare in cluster = size1 - size2. */
475 	int8_t hwidx1;		/* SGE bufsize idx for size1 */
476 	int8_t hwidx2;		/* SGE bufsize idx for size2 */
477 	uint8_t type;		/* EXT_xxx type of the cluster */
478 };
479 
480 enum {
481 	NUM_MEMWIN = 3,
482 
483 	MEMWIN0_APERTURE = 2048,
484 	MEMWIN0_BASE     = 0x1b800,
485 
486 	MEMWIN1_APERTURE = 32768,
487 	MEMWIN1_BASE     = 0x28000,
488 
489 	MEMWIN2_APERTURE_T4 = 65536,
490 	MEMWIN2_BASE_T4     = 0x30000,
491 
492 	MEMWIN2_APERTURE_T5 = 128 * 1024,
493 	MEMWIN2_BASE_T5     = 0x60000,
494 };
495 
496 struct memwin {
497 	struct rwlock mw_lock __aligned(CACHE_LINE_SIZE);
498 	uint32_t mw_base;	/* constant after setup_memwin */
499 	uint32_t mw_aperture;	/* ditto */
500 	uint32_t mw_curpos;	/* protected by mw_lock */
501 };
502 
503 enum {
504 	FL_STARVING	= (1 << 0), /* on the adapter's list of starving fl's */
505 	FL_DOOMED	= (1 << 1), /* about to be destroyed */
506 	FL_BUF_PACKING	= (1 << 2), /* buffer packing enabled */
507 	FL_BUF_RESUME	= (1 << 3), /* resume from the middle of the frame */
508 };
509 
510 #define FL_RUNNING_LOW(fl) \
511     (IDXDIFF(fl->dbidx * 8, fl->cidx, fl->sidx * 8) <= fl->lowat)
512 #define FL_NOT_RUNNING_LOW(fl) \
513     (IDXDIFF(fl->dbidx * 8, fl->cidx, fl->sidx * 8) >= 2 * fl->lowat)
514 
515 struct sge_fl {
516 	struct mtx fl_lock;
517 	__be64 *desc;		/* KVA of descriptor ring, ptr to addresses */
518 	struct fl_sdesc *sdesc;	/* KVA of software descriptor ring */
519 	uint16_t zidx;		/* refill zone idx */
520 	uint16_t safe_zidx;
521 	uint16_t lowat;		/* # of buffers <= this means fl needs help */
522 	int flags;
523 	uint16_t buf_boundary;
524 
525 	/* The 16b idx all deal with hw descriptors */
526 	uint16_t dbidx;		/* hw pidx after last doorbell */
527 	uint16_t sidx;		/* index of status page */
528 	volatile uint16_t hw_cidx;
529 
530 	/* The 32b idx are all buffer idx, not hardware descriptor idx */
531 	uint32_t cidx;		/* consumer index */
532 	uint32_t pidx;		/* producer index */
533 
534 	uint32_t dbval;
535 	u_int rx_offset;	/* offset in fl buf (when buffer packing) */
536 	volatile uint32_t *udb;
537 
538 	uint64_t cl_allocated;	/* # of clusters allocated */
539 	uint64_t cl_recycled;	/* # of clusters recycled */
540 	uint64_t cl_fast_recycled; /* # of clusters recycled (fast) */
541 
542 	/* These 3 are valid when FL_BUF_RESUME is set, stale otherwise. */
543 	struct mbuf *m0;
544 	struct mbuf **pnext;
545 	u_int remaining;
546 
547 	uint16_t qsize;		/* # of hw descriptors (status page included) */
548 	uint16_t cntxt_id;	/* SGE context id for the freelist */
549 	TAILQ_ENTRY(sge_fl) link; /* All starving freelists */
550 	bus_dma_tag_t desc_tag;
551 	bus_dmamap_t desc_map;
552 	char lockname[16];
553 	bus_addr_t ba;		/* bus address of descriptor ring */
554 };
555 
556 struct mp_ring;
557 
558 struct txpkts {
559 	uint8_t wr_type;	/* type 0 or type 1 */
560 	uint8_t npkt;		/* # of packets in this work request */
561 	uint8_t len16;		/* # of 16B pieces used by this work request */
562 	uint8_t score;		/* 1-10. coalescing attempted if score > 3 */
563 	uint8_t max_npkt;	/* maximum number of packets allowed */
564 	uint16_t plen;		/* total payload (sum of all packets) */
565 
566 	/* straight from fw_eth_tx_pkts_vm_wr. */
567 	__u8   ethmacdst[6];
568 	__u8   ethmacsrc[6];
569 	__be16 ethtype;
570 	__be16 vlantci;
571 
572 	struct mbuf *mb[15];
573 };
574 
575 /* txq: SGE egress queue + what's needed for Ethernet NIC */
576 struct sge_txq {
577 	struct sge_eq eq;	/* MUST be first */
578 
579 	struct ifnet *ifp;	/* the interface this txq belongs to */
580 	struct mp_ring *r;	/* tx software ring */
581 	struct tx_sdesc *sdesc;	/* KVA of software descriptor ring */
582 	struct sglist *gl;
583 	__be32 cpl_ctrl0;	/* for convenience */
584 	int tc_idx;		/* traffic class */
585 	struct txpkts txp;
586 
587 	struct task tx_reclaim_task;
588 	/* stats for common events first */
589 
590 	uint64_t txcsum;	/* # of times hardware assisted with checksum */
591 	uint64_t tso_wrs;	/* # of TSO work requests */
592 	uint64_t vlan_insertion;/* # of times VLAN tag was inserted */
593 	uint64_t imm_wrs;	/* # of work requests with immediate data */
594 	uint64_t sgl_wrs;	/* # of work requests with direct SGL */
595 	uint64_t txpkt_wrs;	/* # of txpkt work requests (not coalesced) */
596 	uint64_t txpkts0_wrs;	/* # of type0 coalesced tx work requests */
597 	uint64_t txpkts1_wrs;	/* # of type1 coalesced tx work requests */
598 	uint64_t txpkts0_pkts;	/* # of frames in type0 coalesced tx WRs */
599 	uint64_t txpkts1_pkts;	/* # of frames in type1 coalesced tx WRs */
600 	uint64_t raw_wrs;	/* # of raw work requests (alloc_wr_mbuf) */
601 	uint64_t vxlan_tso_wrs;	/* # of VXLAN TSO work requests */
602 	uint64_t vxlan_txcsum;
603 
604 	uint64_t kern_tls_records;
605 	uint64_t kern_tls_short;
606 	uint64_t kern_tls_partial;
607 	uint64_t kern_tls_full;
608 	uint64_t kern_tls_octets;
609 	uint64_t kern_tls_waste;
610 	uint64_t kern_tls_options;
611 	uint64_t kern_tls_header;
612 	uint64_t kern_tls_fin;
613 	uint64_t kern_tls_fin_short;
614 	uint64_t kern_tls_cbc;
615 	uint64_t kern_tls_gcm;
616 
617 	/* stats for not-that-common events */
618 
619 	/* Optional scratch space for constructing work requests. */
620 	uint8_t ss[SGE_MAX_WR_LEN] __aligned(16);
621 } __aligned(CACHE_LINE_SIZE);
622 
623 /* rxq: SGE ingress queue + SGE free list + miscellaneous items */
624 struct sge_rxq {
625 	struct sge_iq iq;	/* MUST be first */
626 	struct sge_fl fl;	/* MUST follow iq */
627 
628 	struct ifnet *ifp;	/* the interface this rxq belongs to */
629 	struct lro_ctrl lro;	/* LRO state */
630 
631 	/* stats for common events first */
632 
633 	uint64_t rxcsum;	/* # of times hardware assisted with checksum */
634 	uint64_t vlan_extraction;/* # of times VLAN tag was extracted */
635 	uint64_t vxlan_rxcsum;
636 
637 	/* stats for not-that-common events */
638 
639 } __aligned(CACHE_LINE_SIZE);
640 
641 static inline struct sge_rxq *
642 iq_to_rxq(struct sge_iq *iq)
643 {
644 
645 	return (__containerof(iq, struct sge_rxq, iq));
646 }
647 
648 
649 /* ofld_rxq: SGE ingress queue + SGE free list + miscellaneous items */
650 struct sge_ofld_rxq {
651 	struct sge_iq iq;	/* MUST be first */
652 	struct sge_fl fl;	/* MUST follow iq */
653 } __aligned(CACHE_LINE_SIZE);
654 
655 static inline struct sge_ofld_rxq *
656 iq_to_ofld_rxq(struct sge_iq *iq)
657 {
658 
659 	return (__containerof(iq, struct sge_ofld_rxq, iq));
660 }
661 
662 struct wrqe {
663 	STAILQ_ENTRY(wrqe) link;
664 	struct sge_wrq *wrq;
665 	int wr_len;
666 	char wr[] __aligned(16);
667 };
668 
669 struct wrq_cookie {
670 	TAILQ_ENTRY(wrq_cookie) link;
671 	int ndesc;
672 	int pidx;
673 };
674 
675 /*
676  * wrq: SGE egress queue that is given prebuilt work requests.  Both the control
677  * and offload tx queues are of this type.
678  */
679 struct sge_wrq {
680 	struct sge_eq eq;	/* MUST be first */
681 
682 	struct adapter *adapter;
683 	struct task wrq_tx_task;
684 
685 	/* Tx desc reserved but WR not "committed" yet. */
686 	TAILQ_HEAD(wrq_incomplete_wrs , wrq_cookie) incomplete_wrs;
687 
688 	/* List of WRs ready to go out as soon as descriptors are available. */
689 	STAILQ_HEAD(, wrqe) wr_list;
690 	u_int nwr_pending;
691 	u_int ndesc_needed;
692 
693 	/* stats for common events first */
694 
695 	uint64_t tx_wrs_direct;	/* # of WRs written directly to desc ring. */
696 	uint64_t tx_wrs_ss;	/* # of WRs copied from scratch space. */
697 	uint64_t tx_wrs_copied;	/* # of WRs queued and copied to desc ring. */
698 
699 	/* stats for not-that-common events */
700 
701 	/*
702 	 * Scratch space for work requests that wrap around after reaching the
703 	 * status page, and some information about the last WR that used it.
704 	 */
705 	uint16_t ss_pidx;
706 	uint16_t ss_len;
707 	uint8_t ss[SGE_MAX_WR_LEN];
708 
709 } __aligned(CACHE_LINE_SIZE);
710 
711 #define INVALID_NM_RXQ_CNTXT_ID ((uint16_t)(-1))
712 struct sge_nm_rxq {
713 	/* Items used by the driver rx ithread are in this cacheline. */
714 	volatile int nm_state __aligned(CACHE_LINE_SIZE);	/* NM_OFF, NM_ON, or NM_BUSY */
715 	u_int nid;		/* netmap ring # for this queue */
716 	struct vi_info *vi;
717 
718 	struct iq_desc *iq_desc;
719 	uint16_t iq_abs_id;
720 	uint16_t iq_cntxt_id;
721 	uint16_t iq_cidx;
722 	uint16_t iq_sidx;
723 	uint8_t iq_gen;
724 	uint32_t fl_sidx;
725 
726 	/* Items used by netmap rxsync are in this cacheline. */
727 	__be64  *fl_desc __aligned(CACHE_LINE_SIZE);
728 	uint16_t fl_cntxt_id;
729 	uint32_t fl_pidx;
730 	uint32_t fl_sidx2;	/* copy of fl_sidx */
731 	uint32_t fl_db_val;
732 	u_int fl_db_saved;
733 	u_int fl_hwidx:4;
734 
735 	/*
736 	 * fl_cidx is used by both the ithread and rxsync, the rest are not used
737 	 * in the rx fast path.
738 	 */
739 	uint32_t fl_cidx __aligned(CACHE_LINE_SIZE);
740 
741 	bus_dma_tag_t iq_desc_tag;
742 	bus_dmamap_t iq_desc_map;
743 	bus_addr_t iq_ba;
744 	int intr_idx;
745 
746 	bus_dma_tag_t fl_desc_tag;
747 	bus_dmamap_t fl_desc_map;
748 	bus_addr_t fl_ba;
749 };
750 
751 #define INVALID_NM_TXQ_CNTXT_ID ((u_int)(-1))
752 struct sge_nm_txq {
753 	struct tx_desc *desc;
754 	uint16_t cidx;
755 	uint16_t pidx;
756 	uint16_t sidx;
757 	uint16_t equiqidx;	/* EQUIQ last requested at this pidx */
758 	uint16_t equeqidx;	/* EQUEQ last requested at this pidx */
759 	uint16_t dbidx;		/* pidx of the most recent doorbell */
760 	uint8_t doorbells;
761 	volatile uint32_t *udb;
762 	u_int udb_qid;
763 	u_int cntxt_id;
764 	__be32 cpl_ctrl0;	/* for convenience */
765 	__be32 op_pkd;		/* ditto */
766 	u_int nid;		/* netmap ring # for this queue */
767 
768 	/* infrequently used items after this */
769 
770 	bus_dma_tag_t desc_tag;
771 	bus_dmamap_t desc_map;
772 	bus_addr_t ba;
773 	int iqidx;
774 } __aligned(CACHE_LINE_SIZE);
775 
776 struct sge {
777 	int nrxq;	/* total # of Ethernet rx queues */
778 	int ntxq;	/* total # of Ethernet tx queues */
779 	int nofldrxq;	/* total # of TOE rx queues */
780 	int nofldtxq;	/* total # of TOE tx queues */
781 	int nnmrxq;	/* total # of netmap rx queues */
782 	int nnmtxq;	/* total # of netmap tx queues */
783 	int niq;	/* total # of ingress queues */
784 	int neq;	/* total # of egress queues */
785 
786 	struct sge_iq fwq;	/* Firmware event queue */
787 	struct sge_wrq *ctrlq;	/* Control queues */
788 	struct sge_txq *txq;	/* NIC tx queues */
789 	struct sge_rxq *rxq;	/* NIC rx queues */
790 	struct sge_wrq *ofld_txq;	/* TOE tx queues */
791 	struct sge_ofld_rxq *ofld_rxq;	/* TOE rx queues */
792 	struct sge_nm_txq *nm_txq;	/* netmap tx queues */
793 	struct sge_nm_rxq *nm_rxq;	/* netmap rx queues */
794 
795 	uint16_t iq_start;	/* first cntxt_id */
796 	uint16_t iq_base;	/* first abs_id */
797 	int eq_start;		/* first cntxt_id */
798 	int eq_base;		/* first abs_id */
799 	struct sge_iq **iqmap;	/* iq->cntxt_id to iq mapping */
800 	struct sge_eq **eqmap;	/* eq->cntxt_id to eq mapping */
801 
802 	int8_t safe_zidx;
803 	struct rx_buf_info rx_buf_info[SW_ZONE_SIZES];
804 };
805 
806 struct devnames {
807 	const char *nexus_name;
808 	const char *ifnet_name;
809 	const char *vi_ifnet_name;
810 	const char *pf03_drv_name;
811 	const char *vf_nexus_name;
812 	const char *vf_ifnet_name;
813 };
814 
815 struct clip_entry;
816 
817 struct adapter {
818 	SLIST_ENTRY(adapter) link;
819 	device_t dev;
820 	struct cdev *cdev;
821 	const struct devnames *names;
822 
823 	/* PCIe register resources */
824 	int regs_rid;
825 	struct resource *regs_res;
826 	int msix_rid;
827 	struct resource *msix_res;
828 	bus_space_handle_t bh;
829 	bus_space_tag_t bt;
830 	bus_size_t mmio_len;
831 	int udbs_rid;
832 	struct resource *udbs_res;
833 	volatile uint8_t *udbs_base;
834 
835 	unsigned int pf;
836 	unsigned int mbox;
837 	unsigned int vpd_busy;
838 	unsigned int vpd_flag;
839 
840 	/* Interrupt information */
841 	int intr_type;
842 	int intr_count;
843 	struct irq {
844 		struct resource *res;
845 		int rid;
846 		void *tag;
847 		struct sge_rxq *rxq;
848 		struct sge_nm_rxq *nm_rxq;
849 	} __aligned(CACHE_LINE_SIZE) *irq;
850 	int sge_gts_reg;
851 	int sge_kdoorbell_reg;
852 
853 	bus_dma_tag_t dmat;	/* Parent DMA tag */
854 
855 	struct sge sge;
856 	int lro_timeout;
857 	int sc_do_rxcopy;
858 
859 	int vxlan_port;
860 	u_int vxlan_refcount;
861 	int rawf_base;
862 	int nrawf;
863 
864 	struct taskqueue *tq[MAX_NCHAN];	/* General purpose taskqueues */
865 	struct task async_event_task;
866 	struct port_info *port[MAX_NPORTS];
867 	uint8_t chan_map[MAX_NCHAN];		/* channel -> port */
868 
869 	struct mtx clip_table_lock;
870 	TAILQ_HEAD(, clip_entry) clip_table;
871 	int clip_gen;
872 
873 	void *tom_softc;	/* (struct tom_data *) */
874 	struct tom_tunables tt;
875 	struct t4_offload_policy *policy;
876 	struct rwlock policy_lock;
877 
878 	void *iwarp_softc;	/* (struct c4iw_dev *) */
879 	struct iw_tunables iwt;
880 	void *iscsi_ulp_softc;	/* (struct cxgbei_data *) */
881 	void *ccr_softc;	/* (struct ccr_softc *) */
882 	struct l2t_data *l2t;	/* L2 table */
883 	struct smt_data *smt;	/* Source MAC Table */
884 	struct tid_info tids;
885 	vmem_t *key_map;
886 	struct tls_tunables tlst;
887 
888 	uint8_t doorbells;
889 	int offload_map;	/* ports with IFCAP_TOE enabled */
890 	int active_ulds;	/* ULDs activated on this adapter */
891 	int flags;
892 	int debug_flags;
893 
894 	char ifp_lockname[16];
895 	struct mtx ifp_lock;
896 	struct ifnet *ifp;	/* tracer ifp */
897 	struct ifmedia media;
898 	int traceq;		/* iq used by all tracers, -1 if none */
899 	int tracer_valid;	/* bitmap of valid tracers */
900 	int tracer_enabled;	/* bitmap of enabled tracers */
901 
902 	char fw_version[16];
903 	char tp_version[16];
904 	char er_version[16];
905 	char bs_version[16];
906 	char cfg_file[32];
907 	u_int cfcsum;
908 	struct adapter_params params;
909 	const struct chip_params *chip_params;
910 	struct t4_virt_res vres;
911 
912 	uint16_t nbmcaps;
913 	uint16_t linkcaps;
914 	uint16_t switchcaps;
915 	uint16_t niccaps;
916 	uint16_t toecaps;
917 	uint16_t rdmacaps;
918 	uint16_t cryptocaps;
919 	uint16_t iscsicaps;
920 	uint16_t fcoecaps;
921 
922 	struct sysctl_ctx_list ctx; /* from adapter_full_init to full_uninit */
923 
924 	struct mtx sc_lock;
925 	char lockname[16];
926 
927 	/* Starving free lists */
928 	struct mtx sfl_lock;	/* same cache-line as sc_lock? but that's ok */
929 	TAILQ_HEAD(, sge_fl) sfl;
930 	struct callout sfl_callout;
931 
932 	struct mtx reg_lock;	/* for indirect register access */
933 
934 	struct memwin memwin[NUM_MEMWIN];	/* memory windows */
935 
936 	struct mtx tc_lock;
937 	struct task tc_task;
938 
939 	const char *last_op;
940 	const void *last_op_thr;
941 	int last_op_flags;
942 
943 	int swintr;
944 	int sensor_resets;
945 
946 	struct callout ktls_tick;
947 };
948 
949 #define ADAPTER_LOCK(sc)		mtx_lock(&(sc)->sc_lock)
950 #define ADAPTER_UNLOCK(sc)		mtx_unlock(&(sc)->sc_lock)
951 #define ADAPTER_LOCK_ASSERT_OWNED(sc)	mtx_assert(&(sc)->sc_lock, MA_OWNED)
952 #define ADAPTER_LOCK_ASSERT_NOTOWNED(sc) mtx_assert(&(sc)->sc_lock, MA_NOTOWNED)
953 
954 #define ASSERT_SYNCHRONIZED_OP(sc)	\
955     KASSERT(IS_BUSY(sc) && \
956 	(mtx_owned(&(sc)->sc_lock) || sc->last_op_thr == curthread), \
957 	("%s: operation not synchronized.", __func__))
958 
959 #define PORT_LOCK(pi)			mtx_lock(&(pi)->pi_lock)
960 #define PORT_UNLOCK(pi)			mtx_unlock(&(pi)->pi_lock)
961 #define PORT_LOCK_ASSERT_OWNED(pi)	mtx_assert(&(pi)->pi_lock, MA_OWNED)
962 #define PORT_LOCK_ASSERT_NOTOWNED(pi)	mtx_assert(&(pi)->pi_lock, MA_NOTOWNED)
963 
964 #define FL_LOCK(fl)			mtx_lock(&(fl)->fl_lock)
965 #define FL_TRYLOCK(fl)			mtx_trylock(&(fl)->fl_lock)
966 #define FL_UNLOCK(fl)			mtx_unlock(&(fl)->fl_lock)
967 #define FL_LOCK_ASSERT_OWNED(fl)	mtx_assert(&(fl)->fl_lock, MA_OWNED)
968 #define FL_LOCK_ASSERT_NOTOWNED(fl)	mtx_assert(&(fl)->fl_lock, MA_NOTOWNED)
969 
970 #define RXQ_FL_LOCK(rxq)		FL_LOCK(&(rxq)->fl)
971 #define RXQ_FL_UNLOCK(rxq)		FL_UNLOCK(&(rxq)->fl)
972 #define RXQ_FL_LOCK_ASSERT_OWNED(rxq)	FL_LOCK_ASSERT_OWNED(&(rxq)->fl)
973 #define RXQ_FL_LOCK_ASSERT_NOTOWNED(rxq) FL_LOCK_ASSERT_NOTOWNED(&(rxq)->fl)
974 
975 #define EQ_LOCK(eq)			mtx_lock(&(eq)->eq_lock)
976 #define EQ_TRYLOCK(eq)			mtx_trylock(&(eq)->eq_lock)
977 #define EQ_UNLOCK(eq)			mtx_unlock(&(eq)->eq_lock)
978 #define EQ_LOCK_ASSERT_OWNED(eq)	mtx_assert(&(eq)->eq_lock, MA_OWNED)
979 #define EQ_LOCK_ASSERT_NOTOWNED(eq)	mtx_assert(&(eq)->eq_lock, MA_NOTOWNED)
980 
981 #define TXQ_LOCK(txq)			EQ_LOCK(&(txq)->eq)
982 #define TXQ_TRYLOCK(txq)		EQ_TRYLOCK(&(txq)->eq)
983 #define TXQ_UNLOCK(txq)			EQ_UNLOCK(&(txq)->eq)
984 #define TXQ_LOCK_ASSERT_OWNED(txq)	EQ_LOCK_ASSERT_OWNED(&(txq)->eq)
985 #define TXQ_LOCK_ASSERT_NOTOWNED(txq)	EQ_LOCK_ASSERT_NOTOWNED(&(txq)->eq)
986 
987 #define for_each_txq(vi, iter, q) \
988 	for (q = &vi->adapter->sge.txq[vi->first_txq], iter = 0; \
989 	    iter < vi->ntxq; ++iter, ++q)
990 #define for_each_rxq(vi, iter, q) \
991 	for (q = &vi->adapter->sge.rxq[vi->first_rxq], iter = 0; \
992 	    iter < vi->nrxq; ++iter, ++q)
993 #define for_each_ofld_txq(vi, iter, q) \
994 	for (q = &vi->adapter->sge.ofld_txq[vi->first_ofld_txq], iter = 0; \
995 	    iter < vi->nofldtxq; ++iter, ++q)
996 #define for_each_ofld_rxq(vi, iter, q) \
997 	for (q = &vi->adapter->sge.ofld_rxq[vi->first_ofld_rxq], iter = 0; \
998 	    iter < vi->nofldrxq; ++iter, ++q)
999 #define for_each_nm_txq(vi, iter, q) \
1000 	for (q = &vi->adapter->sge.nm_txq[vi->first_nm_txq], iter = 0; \
1001 	    iter < vi->nnmtxq; ++iter, ++q)
1002 #define for_each_nm_rxq(vi, iter, q) \
1003 	for (q = &vi->adapter->sge.nm_rxq[vi->first_nm_rxq], iter = 0; \
1004 	    iter < vi->nnmrxq; ++iter, ++q)
1005 #define for_each_vi(_pi, _iter, _vi) \
1006 	for ((_vi) = (_pi)->vi, (_iter) = 0; (_iter) < (_pi)->nvi; \
1007 	     ++(_iter), ++(_vi))
1008 
1009 #define IDXINCR(idx, incr, wrap) do { \
1010 	idx = wrap - idx > incr ? idx + incr : incr - (wrap - idx); \
1011 } while (0)
1012 #define IDXDIFF(head, tail, wrap) \
1013 	((head) >= (tail) ? (head) - (tail) : (wrap) - (tail) + (head))
1014 
1015 /* One for errors, one for firmware events */
1016 #define T4_EXTRA_INTR 2
1017 
1018 /* One for firmware events */
1019 #define T4VF_EXTRA_INTR 1
1020 
1021 static inline int
1022 forwarding_intr_to_fwq(struct adapter *sc)
1023 {
1024 
1025 	return (sc->intr_count == 1);
1026 }
1027 
1028 static inline uint32_t
1029 t4_read_reg(struct adapter *sc, uint32_t reg)
1030 {
1031 
1032 	return bus_space_read_4(sc->bt, sc->bh, reg);
1033 }
1034 
1035 static inline void
1036 t4_write_reg(struct adapter *sc, uint32_t reg, uint32_t val)
1037 {
1038 
1039 	bus_space_write_4(sc->bt, sc->bh, reg, val);
1040 }
1041 
1042 static inline uint64_t
1043 t4_read_reg64(struct adapter *sc, uint32_t reg)
1044 {
1045 
1046 #ifdef __LP64__
1047 	return bus_space_read_8(sc->bt, sc->bh, reg);
1048 #else
1049 	return (uint64_t)bus_space_read_4(sc->bt, sc->bh, reg) +
1050 	    ((uint64_t)bus_space_read_4(sc->bt, sc->bh, reg + 4) << 32);
1051 
1052 #endif
1053 }
1054 
1055 static inline void
1056 t4_write_reg64(struct adapter *sc, uint32_t reg, uint64_t val)
1057 {
1058 
1059 #ifdef __LP64__
1060 	bus_space_write_8(sc->bt, sc->bh, reg, val);
1061 #else
1062 	bus_space_write_4(sc->bt, sc->bh, reg, val);
1063 	bus_space_write_4(sc->bt, sc->bh, reg + 4, val>> 32);
1064 #endif
1065 }
1066 
1067 static inline void
1068 t4_os_pci_read_cfg1(struct adapter *sc, int reg, uint8_t *val)
1069 {
1070 
1071 	*val = pci_read_config(sc->dev, reg, 1);
1072 }
1073 
1074 static inline void
1075 t4_os_pci_write_cfg1(struct adapter *sc, int reg, uint8_t val)
1076 {
1077 
1078 	pci_write_config(sc->dev, reg, val, 1);
1079 }
1080 
1081 static inline void
1082 t4_os_pci_read_cfg2(struct adapter *sc, int reg, uint16_t *val)
1083 {
1084 
1085 	*val = pci_read_config(sc->dev, reg, 2);
1086 }
1087 
1088 static inline void
1089 t4_os_pci_write_cfg2(struct adapter *sc, int reg, uint16_t val)
1090 {
1091 
1092 	pci_write_config(sc->dev, reg, val, 2);
1093 }
1094 
1095 static inline void
1096 t4_os_pci_read_cfg4(struct adapter *sc, int reg, uint32_t *val)
1097 {
1098 
1099 	*val = pci_read_config(sc->dev, reg, 4);
1100 }
1101 
1102 static inline void
1103 t4_os_pci_write_cfg4(struct adapter *sc, int reg, uint32_t val)
1104 {
1105 
1106 	pci_write_config(sc->dev, reg, val, 4);
1107 }
1108 
1109 static inline struct port_info *
1110 adap2pinfo(struct adapter *sc, int idx)
1111 {
1112 
1113 	return (sc->port[idx]);
1114 }
1115 
1116 static inline void
1117 t4_os_set_hw_addr(struct port_info *pi, uint8_t hw_addr[])
1118 {
1119 
1120 	bcopy(hw_addr, pi->vi[0].hw_addr, ETHER_ADDR_LEN);
1121 }
1122 
1123 static inline int
1124 tx_resume_threshold(struct sge_eq *eq)
1125 {
1126 
1127 	/* not quite the same as qsize / 4, but this will do. */
1128 	return (eq->sidx / 4);
1129 }
1130 
1131 static inline int
1132 t4_use_ldst(struct adapter *sc)
1133 {
1134 
1135 #ifdef notyet
1136 	return (sc->flags & FW_OK || !sc->use_bd);
1137 #else
1138 	return (0);
1139 #endif
1140 }
1141 
1142 static inline void
1143 CH_DUMP_MBOX(struct adapter *sc, int mbox, const int reg,
1144     const char *msg, const __be64 *const p, const bool err)
1145 {
1146 
1147 	if (!(sc->debug_flags & DF_DUMP_MBOX) && !err)
1148 		return;
1149 	if (p != NULL) {
1150 		log(err ? LOG_ERR : LOG_DEBUG,
1151 		    "%s: mbox %u %s %016llx %016llx %016llx %016llx "
1152 		    "%016llx %016llx %016llx %016llx\n",
1153 		    device_get_nameunit(sc->dev), mbox, msg,
1154 		    (long long)be64_to_cpu(p[0]), (long long)be64_to_cpu(p[1]),
1155 		    (long long)be64_to_cpu(p[2]), (long long)be64_to_cpu(p[3]),
1156 		    (long long)be64_to_cpu(p[4]), (long long)be64_to_cpu(p[5]),
1157 		    (long long)be64_to_cpu(p[6]), (long long)be64_to_cpu(p[7]));
1158 	} else {
1159 		log(err ? LOG_ERR : LOG_DEBUG,
1160 		    "%s: mbox %u %s %016llx %016llx %016llx %016llx "
1161 		    "%016llx %016llx %016llx %016llx\n",
1162 		    device_get_nameunit(sc->dev), mbox, msg,
1163 		    (long long)t4_read_reg64(sc, reg),
1164 		    (long long)t4_read_reg64(sc, reg + 8),
1165 		    (long long)t4_read_reg64(sc, reg + 16),
1166 		    (long long)t4_read_reg64(sc, reg + 24),
1167 		    (long long)t4_read_reg64(sc, reg + 32),
1168 		    (long long)t4_read_reg64(sc, reg + 40),
1169 		    (long long)t4_read_reg64(sc, reg + 48),
1170 		    (long long)t4_read_reg64(sc, reg + 56));
1171 	}
1172 }
1173 
1174 /* t4_main.c */
1175 extern int t4_ntxq;
1176 extern int t4_nrxq;
1177 extern int t4_intr_types;
1178 extern int t4_tmr_idx;
1179 extern int t4_pktc_idx;
1180 extern unsigned int t4_qsize_rxq;
1181 extern unsigned int t4_qsize_txq;
1182 extern device_method_t cxgbe_methods[];
1183 
1184 int t4_os_find_pci_capability(struct adapter *, int);
1185 int t4_os_pci_save_state(struct adapter *);
1186 int t4_os_pci_restore_state(struct adapter *);
1187 void t4_os_portmod_changed(struct port_info *);
1188 void t4_os_link_changed(struct port_info *);
1189 void t4_iterate(void (*)(struct adapter *, void *), void *);
1190 void t4_init_devnames(struct adapter *);
1191 void t4_add_adapter(struct adapter *);
1192 int t4_detach_common(device_t);
1193 int t4_map_bars_0_and_4(struct adapter *);
1194 int t4_map_bar_2(struct adapter *);
1195 int t4_setup_intr_handlers(struct adapter *);
1196 void t4_sysctls(struct adapter *);
1197 int begin_synchronized_op(struct adapter *, struct vi_info *, int, char *);
1198 void doom_vi(struct adapter *, struct vi_info *);
1199 void end_synchronized_op(struct adapter *, int);
1200 int update_mac_settings(struct ifnet *, int);
1201 int adapter_full_init(struct adapter *);
1202 int adapter_full_uninit(struct adapter *);
1203 uint64_t cxgbe_get_counter(struct ifnet *, ift_counter);
1204 void cxgbe_snd_tag_init(struct cxgbe_snd_tag *, struct ifnet *, int);
1205 int vi_full_init(struct vi_info *);
1206 int vi_full_uninit(struct vi_info *);
1207 void vi_sysctls(struct vi_info *);
1208 void vi_tick(void *);
1209 int rw_via_memwin(struct adapter *, int, uint32_t, uint32_t *, int, int);
1210 int alloc_atid(struct adapter *, void *);
1211 void *lookup_atid(struct adapter *, int);
1212 void free_atid(struct adapter *, int);
1213 void release_tid(struct adapter *, int, struct sge_wrq *);
1214 int cxgbe_media_change(struct ifnet *);
1215 void cxgbe_media_status(struct ifnet *, struct ifmediareq *);
1216 bool t4_os_dump_cimla(struct adapter *, int, bool);
1217 void t4_os_dump_devlog(struct adapter *);
1218 
1219 #ifdef KERN_TLS
1220 /* t4_kern_tls.c */
1221 int cxgbe_tls_tag_alloc(struct ifnet *, union if_snd_tag_alloc_params *,
1222     struct m_snd_tag **);
1223 void cxgbe_tls_tag_free(struct m_snd_tag *);
1224 void t6_ktls_modload(void);
1225 void t6_ktls_modunload(void);
1226 int t6_ktls_try(struct ifnet *, struct socket *, struct ktls_session *);
1227 int t6_ktls_parse_pkt(struct mbuf *, int *, int *);
1228 int t6_ktls_write_wr(struct sge_txq *, void *, struct mbuf *, u_int, u_int);
1229 #endif
1230 
1231 /* t4_keyctx.c */
1232 struct auth_hash;
1233 union authctx;
1234 
1235 void t4_aes_getdeckey(void *, const void *, unsigned int);
1236 void t4_copy_partial_hash(int, union authctx *, void *);
1237 void t4_init_gmac_hash(const char *, int, char *);
1238 void t4_init_hmac_digest(struct auth_hash *, u_int, const char *, int, char *);
1239 
1240 #ifdef DEV_NETMAP
1241 /* t4_netmap.c */
1242 struct sge_nm_rxq;
1243 void cxgbe_nm_attach(struct vi_info *);
1244 void cxgbe_nm_detach(struct vi_info *);
1245 void service_nm_rxq(struct sge_nm_rxq *);
1246 #endif
1247 
1248 /* t4_sge.c */
1249 void t4_sge_modload(void);
1250 void t4_sge_modunload(void);
1251 uint64_t t4_sge_extfree_refs(void);
1252 void t4_tweak_chip_settings(struct adapter *);
1253 int t4_read_chip_settings(struct adapter *);
1254 int t4_create_dma_tag(struct adapter *);
1255 void t4_sge_sysctls(struct adapter *, struct sysctl_ctx_list *,
1256     struct sysctl_oid_list *);
1257 int t4_destroy_dma_tag(struct adapter *);
1258 int t4_setup_adapter_queues(struct adapter *);
1259 int t4_teardown_adapter_queues(struct adapter *);
1260 int t4_setup_vi_queues(struct vi_info *);
1261 int t4_teardown_vi_queues(struct vi_info *);
1262 void t4_intr_all(void *);
1263 void t4_intr(void *);
1264 #ifdef DEV_NETMAP
1265 void t4_nm_intr(void *);
1266 void t4_vi_intr(void *);
1267 #endif
1268 void t4_intr_err(void *);
1269 void t4_intr_evt(void *);
1270 void t4_wrq_tx_locked(struct adapter *, struct sge_wrq *, struct wrqe *);
1271 void t4_update_fl_bufsize(struct ifnet *);
1272 struct mbuf *alloc_wr_mbuf(int, int);
1273 int parse_pkt(struct mbuf **, bool);
1274 void *start_wrq_wr(struct sge_wrq *, int, struct wrq_cookie *);
1275 void commit_wrq_wr(struct sge_wrq *, void *, struct wrq_cookie *);
1276 int tnl_cong(struct port_info *, int);
1277 void t4_register_an_handler(an_handler_t);
1278 void t4_register_fw_msg_handler(int, fw_msg_handler_t);
1279 void t4_register_cpl_handler(int, cpl_handler_t);
1280 void t4_register_shared_cpl_handler(int, cpl_handler_t, int);
1281 #ifdef RATELIMIT
1282 int ethofld_transmit(struct ifnet *, struct mbuf *);
1283 void send_etid_flush_wr(struct cxgbe_rate_tag *);
1284 #endif
1285 
1286 /* t4_tracer.c */
1287 struct t4_tracer;
1288 void t4_tracer_modload(void);
1289 void t4_tracer_modunload(void);
1290 void t4_tracer_port_detach(struct adapter *);
1291 int t4_get_tracer(struct adapter *, struct t4_tracer *);
1292 int t4_set_tracer(struct adapter *, struct t4_tracer *);
1293 int t4_trace_pkt(struct sge_iq *, const struct rss_header *, struct mbuf *);
1294 int t5_trace_pkt(struct sge_iq *, const struct rss_header *, struct mbuf *);
1295 
1296 /* t4_sched.c */
1297 int t4_set_sched_class(struct adapter *, struct t4_sched_params *);
1298 int t4_set_sched_queue(struct adapter *, struct t4_sched_queue *);
1299 int t4_init_tx_sched(struct adapter *);
1300 int t4_free_tx_sched(struct adapter *);
1301 void t4_update_tx_sched(struct adapter *);
1302 int t4_reserve_cl_rl_kbps(struct adapter *, int, u_int, int *);
1303 void t4_release_cl_rl(struct adapter *, int, int);
1304 int sysctl_tc(SYSCTL_HANDLER_ARGS);
1305 int sysctl_tc_params(SYSCTL_HANDLER_ARGS);
1306 #ifdef RATELIMIT
1307 void t4_init_etid_table(struct adapter *);
1308 void t4_free_etid_table(struct adapter *);
1309 struct cxgbe_rate_tag *lookup_etid(struct adapter *, int);
1310 int cxgbe_rate_tag_alloc(struct ifnet *, union if_snd_tag_alloc_params *,
1311     struct m_snd_tag **);
1312 int cxgbe_rate_tag_modify(struct m_snd_tag *, union if_snd_tag_modify_params *);
1313 int cxgbe_rate_tag_query(struct m_snd_tag *, union if_snd_tag_query_params *);
1314 void cxgbe_rate_tag_free(struct m_snd_tag *);
1315 void cxgbe_rate_tag_free_locked(struct cxgbe_rate_tag *);
1316 void cxgbe_ratelimit_query(struct ifnet *, struct if_ratelimit_query_results *);
1317 #endif
1318 
1319 /* t4_filter.c */
1320 int get_filter_mode(struct adapter *, uint32_t *);
1321 int set_filter_mode(struct adapter *, uint32_t);
1322 int get_filter(struct adapter *, struct t4_filter *);
1323 int set_filter(struct adapter *, struct t4_filter *);
1324 int del_filter(struct adapter *, struct t4_filter *);
1325 int t4_filter_rpl(struct sge_iq *, const struct rss_header *, struct mbuf *);
1326 int t4_hashfilter_ao_rpl(struct sge_iq *, const struct rss_header *, struct mbuf *);
1327 int t4_hashfilter_tcb_rpl(struct sge_iq *, const struct rss_header *, struct mbuf *);
1328 int t4_del_hashfilter_rpl(struct sge_iq *, const struct rss_header *, struct mbuf *);
1329 void free_hftid_hash(struct tid_info *);
1330 
1331 static inline struct wrqe *
1332 alloc_wrqe(int wr_len, struct sge_wrq *wrq)
1333 {
1334 	int len = offsetof(struct wrqe, wr) + wr_len;
1335 	struct wrqe *wr;
1336 
1337 	wr = malloc(len, M_CXGBE, M_NOWAIT);
1338 	if (__predict_false(wr == NULL))
1339 		return (NULL);
1340 	wr->wr_len = wr_len;
1341 	wr->wrq = wrq;
1342 	return (wr);
1343 }
1344 
1345 static inline void *
1346 wrtod(struct wrqe *wr)
1347 {
1348 	return (&wr->wr[0]);
1349 }
1350 
1351 static inline void
1352 free_wrqe(struct wrqe *wr)
1353 {
1354 	free(wr, M_CXGBE);
1355 }
1356 
1357 static inline void
1358 t4_wrq_tx(struct adapter *sc, struct wrqe *wr)
1359 {
1360 	struct sge_wrq *wrq = wr->wrq;
1361 
1362 	TXQ_LOCK(wrq);
1363 	t4_wrq_tx_locked(sc, wrq, wr);
1364 	TXQ_UNLOCK(wrq);
1365 }
1366 
1367 static inline int
1368 read_via_memwin(struct adapter *sc, int idx, uint32_t addr, uint32_t *val,
1369     int len)
1370 {
1371 
1372 	return (rw_via_memwin(sc, idx, addr, val, len, 0));
1373 }
1374 
1375 static inline int
1376 write_via_memwin(struct adapter *sc, int idx, uint32_t addr,
1377     const uint32_t *val, int len)
1378 {
1379 
1380 	return (rw_via_memwin(sc, idx, addr, (void *)(uintptr_t)val, len, 1));
1381 }
1382 
1383 /* Number of len16 -> number of descriptors */
1384 static inline int
1385 tx_len16_to_desc(int len16)
1386 {
1387 
1388 	return (howmany(len16, EQ_ESIZE / 16));
1389 }
1390 #endif
1391