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