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