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