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