1 /*- 2 * Copyright (c) 2011 Chelsio Communications, Inc. 3 * All rights reserved. 4 * Written by: Navdeep Parhar <np@FreeBSD.org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <sys/cdefs.h> 29 __FBSDID("$FreeBSD$"); 30 31 #include "opt_inet.h" 32 #include "opt_inet6.h" 33 34 #include <sys/types.h> 35 #include <sys/eventhandler.h> 36 #include <sys/mbuf.h> 37 #include <sys/socket.h> 38 #include <sys/kernel.h> 39 #include <sys/malloc.h> 40 #include <sys/queue.h> 41 #include <sys/sbuf.h> 42 #include <sys/taskqueue.h> 43 #include <sys/time.h> 44 #include <sys/sglist.h> 45 #include <sys/sysctl.h> 46 #include <sys/smp.h> 47 #include <sys/counter.h> 48 #include <net/bpf.h> 49 #include <net/ethernet.h> 50 #include <net/if.h> 51 #include <net/if_vlan_var.h> 52 #include <netinet/in.h> 53 #include <netinet/ip.h> 54 #include <netinet/ip6.h> 55 #include <netinet/tcp.h> 56 #include <machine/in_cksum.h> 57 #include <machine/md_var.h> 58 #include <vm/vm.h> 59 #include <vm/pmap.h> 60 #ifdef DEV_NETMAP 61 #include <machine/bus.h> 62 #include <sys/selinfo.h> 63 #include <net/if_var.h> 64 #include <net/netmap.h> 65 #include <dev/netmap/netmap_kern.h> 66 #endif 67 68 #include "common/common.h" 69 #include "common/t4_regs.h" 70 #include "common/t4_regs_values.h" 71 #include "common/t4_msg.h" 72 #include "t4_l2t.h" 73 #include "t4_mp_ring.h" 74 75 #ifdef T4_PKT_TIMESTAMP 76 #define RX_COPY_THRESHOLD (MINCLSIZE - 8) 77 #else 78 #define RX_COPY_THRESHOLD MINCLSIZE 79 #endif 80 81 /* 82 * Ethernet frames are DMA'd at this byte offset into the freelist buffer. 83 * 0-7 are valid values. 84 */ 85 static int fl_pktshift = 2; 86 TUNABLE_INT("hw.cxgbe.fl_pktshift", &fl_pktshift); 87 88 /* 89 * Pad ethernet payload up to this boundary. 90 * -1: driver should figure out a good value. 91 * 0: disable padding. 92 * Any power of 2 from 32 to 4096 (both inclusive) is also a valid value. 93 */ 94 int fl_pad = -1; 95 TUNABLE_INT("hw.cxgbe.fl_pad", &fl_pad); 96 97 /* 98 * Status page length. 99 * -1: driver should figure out a good value. 100 * 64 or 128 are the only other valid values. 101 */ 102 static int spg_len = -1; 103 TUNABLE_INT("hw.cxgbe.spg_len", &spg_len); 104 105 /* 106 * Congestion drops. 107 * -1: no congestion feedback (not recommended). 108 * 0: backpressure the channel instead of dropping packets right away. 109 * 1: no backpressure, drop packets for the congested queue immediately. 110 */ 111 static int cong_drop = 0; 112 TUNABLE_INT("hw.cxgbe.cong_drop", &cong_drop); 113 114 /* 115 * Deliver multiple frames in the same free list buffer if they fit. 116 * -1: let the driver decide whether to enable buffer packing or not. 117 * 0: disable buffer packing. 118 * 1: enable buffer packing. 119 */ 120 static int buffer_packing = -1; 121 TUNABLE_INT("hw.cxgbe.buffer_packing", &buffer_packing); 122 123 /* 124 * Start next frame in a packed buffer at this boundary. 125 * -1: driver should figure out a good value. 126 * T4: driver will ignore this and use the same value as fl_pad above. 127 * T5: 16, or a power of 2 from 64 to 4096 (both inclusive) is a valid value. 128 */ 129 static int fl_pack = -1; 130 TUNABLE_INT("hw.cxgbe.fl_pack", &fl_pack); 131 132 /* 133 * Allow the driver to create mbuf(s) in a cluster allocated for rx. 134 * 0: never; always allocate mbufs from the zone_mbuf UMA zone. 135 * 1: ok to create mbuf(s) within a cluster if there is room. 136 */ 137 static int allow_mbufs_in_cluster = 1; 138 TUNABLE_INT("hw.cxgbe.allow_mbufs_in_cluster", &allow_mbufs_in_cluster); 139 140 /* 141 * Largest rx cluster size that the driver is allowed to allocate. 142 */ 143 static int largest_rx_cluster = MJUM16BYTES; 144 TUNABLE_INT("hw.cxgbe.largest_rx_cluster", &largest_rx_cluster); 145 146 /* 147 * Size of cluster allocation that's most likely to succeed. The driver will 148 * fall back to this size if it fails to allocate clusters larger than this. 149 */ 150 static int safest_rx_cluster = PAGE_SIZE; 151 TUNABLE_INT("hw.cxgbe.safest_rx_cluster", &safest_rx_cluster); 152 153 struct txpkts { 154 u_int wr_type; /* type 0 or type 1 */ 155 u_int npkt; /* # of packets in this work request */ 156 u_int plen; /* total payload (sum of all packets) */ 157 u_int len16; /* # of 16B pieces used by this work request */ 158 }; 159 160 /* A packet's SGL. This + m_pkthdr has all info needed for tx */ 161 struct sgl { 162 struct sglist sg; 163 struct sglist_seg seg[TX_SGL_SEGS]; 164 }; 165 166 static int service_iq(struct sge_iq *, int); 167 static struct mbuf *get_fl_payload(struct adapter *, struct sge_fl *, uint32_t); 168 static int t4_eth_rx(struct sge_iq *, const struct rss_header *, struct mbuf *); 169 static inline void init_iq(struct sge_iq *, struct adapter *, int, int, int); 170 static inline void init_fl(struct adapter *, struct sge_fl *, int, int, char *); 171 static inline void init_eq(struct adapter *, struct sge_eq *, int, int, uint8_t, 172 uint16_t, char *); 173 static int alloc_ring(struct adapter *, size_t, bus_dma_tag_t *, bus_dmamap_t *, 174 bus_addr_t *, void **); 175 static int free_ring(struct adapter *, bus_dma_tag_t, bus_dmamap_t, bus_addr_t, 176 void *); 177 static int alloc_iq_fl(struct vi_info *, struct sge_iq *, struct sge_fl *, 178 int, int); 179 static int free_iq_fl(struct vi_info *, struct sge_iq *, struct sge_fl *); 180 static void add_fl_sysctls(struct adapter *, struct sysctl_ctx_list *, 181 struct sysctl_oid *, struct sge_fl *); 182 static int alloc_fwq(struct adapter *); 183 static int free_fwq(struct adapter *); 184 static int alloc_mgmtq(struct adapter *); 185 static int free_mgmtq(struct adapter *); 186 static int alloc_rxq(struct vi_info *, struct sge_rxq *, int, int, 187 struct sysctl_oid *); 188 static int free_rxq(struct vi_info *, struct sge_rxq *); 189 #ifdef TCP_OFFLOAD 190 static int alloc_ofld_rxq(struct vi_info *, struct sge_ofld_rxq *, int, int, 191 struct sysctl_oid *); 192 static int free_ofld_rxq(struct vi_info *, struct sge_ofld_rxq *); 193 #endif 194 #ifdef DEV_NETMAP 195 static int alloc_nm_rxq(struct vi_info *, struct sge_nm_rxq *, int, int, 196 struct sysctl_oid *); 197 static int free_nm_rxq(struct vi_info *, struct sge_nm_rxq *); 198 static int alloc_nm_txq(struct vi_info *, struct sge_nm_txq *, int, int, 199 struct sysctl_oid *); 200 static int free_nm_txq(struct vi_info *, struct sge_nm_txq *); 201 #endif 202 static int ctrl_eq_alloc(struct adapter *, struct sge_eq *); 203 static int eth_eq_alloc(struct adapter *, struct vi_info *, struct sge_eq *); 204 #ifdef TCP_OFFLOAD 205 static int ofld_eq_alloc(struct adapter *, struct vi_info *, struct sge_eq *); 206 #endif 207 static int alloc_eq(struct adapter *, struct vi_info *, struct sge_eq *); 208 static int free_eq(struct adapter *, struct sge_eq *); 209 static int alloc_wrq(struct adapter *, struct vi_info *, struct sge_wrq *, 210 struct sysctl_oid *); 211 static int free_wrq(struct adapter *, struct sge_wrq *); 212 static int alloc_txq(struct vi_info *, struct sge_txq *, int, 213 struct sysctl_oid *); 214 static int free_txq(struct vi_info *, struct sge_txq *); 215 static void oneseg_dma_callback(void *, bus_dma_segment_t *, int, int); 216 static inline void ring_fl_db(struct adapter *, struct sge_fl *); 217 static int refill_fl(struct adapter *, struct sge_fl *, int); 218 static void refill_sfl(void *); 219 static int alloc_fl_sdesc(struct sge_fl *); 220 static void free_fl_sdesc(struct adapter *, struct sge_fl *); 221 static void find_best_refill_source(struct adapter *, struct sge_fl *, int); 222 static void find_safe_refill_source(struct adapter *, struct sge_fl *); 223 static void add_fl_to_sfl(struct adapter *, struct sge_fl *); 224 225 static inline void get_pkt_gl(struct mbuf *, struct sglist *); 226 static inline u_int txpkt_len16(u_int, u_int); 227 static inline u_int txpkt_vm_len16(u_int, u_int); 228 static inline u_int txpkts0_len16(u_int); 229 static inline u_int txpkts1_len16(void); 230 static u_int write_txpkt_wr(struct sge_txq *, struct fw_eth_tx_pkt_wr *, 231 struct mbuf *, u_int); 232 static u_int write_txpkt_vm_wr(struct adapter *, struct sge_txq *, 233 struct fw_eth_tx_pkt_vm_wr *, struct mbuf *, u_int); 234 static int try_txpkts(struct mbuf *, struct mbuf *, struct txpkts *, u_int); 235 static int add_to_txpkts(struct mbuf *, struct txpkts *, u_int); 236 static u_int write_txpkts_wr(struct sge_txq *, struct fw_eth_tx_pkts_wr *, 237 struct mbuf *, const struct txpkts *, u_int); 238 static void write_gl_to_txd(struct sge_txq *, struct mbuf *, caddr_t *, int); 239 static inline void copy_to_txd(struct sge_eq *, caddr_t, caddr_t *, int); 240 static inline void ring_eq_db(struct adapter *, struct sge_eq *, u_int); 241 static inline uint16_t read_hw_cidx(struct sge_eq *); 242 static inline u_int reclaimable_tx_desc(struct sge_eq *); 243 static inline u_int total_available_tx_desc(struct sge_eq *); 244 static u_int reclaim_tx_descs(struct sge_txq *, u_int); 245 static void tx_reclaim(void *, int); 246 static __be64 get_flit(struct sglist_seg *, int, int); 247 static int handle_sge_egr_update(struct sge_iq *, const struct rss_header *, 248 struct mbuf *); 249 static int handle_fw_msg(struct sge_iq *, const struct rss_header *, 250 struct mbuf *); 251 static int t4_handle_wrerr_rpl(struct adapter *, const __be64 *); 252 static void wrq_tx_drain(void *, int); 253 static void drain_wrq_wr_list(struct adapter *, struct sge_wrq *); 254 255 static int sysctl_uint16(SYSCTL_HANDLER_ARGS); 256 static int sysctl_bufsizes(SYSCTL_HANDLER_ARGS); 257 static int sysctl_tc(SYSCTL_HANDLER_ARGS); 258 259 static counter_u64_t extfree_refs; 260 static counter_u64_t extfree_rels; 261 262 an_handler_t t4_an_handler; 263 fw_msg_handler_t t4_fw_msg_handler[NUM_FW6_TYPES]; 264 cpl_handler_t t4_cpl_handler[NUM_CPL_CMDS]; 265 266 267 static int 268 an_not_handled(struct sge_iq *iq, const struct rsp_ctrl *ctrl) 269 { 270 271 #ifdef INVARIANTS 272 panic("%s: async notification on iq %p (ctrl %p)", __func__, iq, ctrl); 273 #else 274 log(LOG_ERR, "%s: async notification on iq %p (ctrl %p)\n", 275 __func__, iq, ctrl); 276 #endif 277 return (EDOOFUS); 278 } 279 280 int 281 t4_register_an_handler(an_handler_t h) 282 { 283 uintptr_t *loc, new; 284 285 new = h ? (uintptr_t)h : (uintptr_t)an_not_handled; 286 loc = (uintptr_t *) &t4_an_handler; 287 atomic_store_rel_ptr(loc, new); 288 289 return (0); 290 } 291 292 static int 293 fw_msg_not_handled(struct adapter *sc, const __be64 *rpl) 294 { 295 const struct cpl_fw6_msg *cpl = 296 __containerof(rpl, struct cpl_fw6_msg, data[0]); 297 298 #ifdef INVARIANTS 299 panic("%s: fw_msg type %d", __func__, cpl->type); 300 #else 301 log(LOG_ERR, "%s: fw_msg type %d\n", __func__, cpl->type); 302 #endif 303 return (EDOOFUS); 304 } 305 306 int 307 t4_register_fw_msg_handler(int type, fw_msg_handler_t h) 308 { 309 uintptr_t *loc, new; 310 311 if (type >= nitems(t4_fw_msg_handler)) 312 return (EINVAL); 313 314 /* 315 * These are dispatched by the handler for FW{4|6}_CPL_MSG using the CPL 316 * handler dispatch table. Reject any attempt to install a handler for 317 * this subtype. 318 */ 319 if (type == FW_TYPE_RSSCPL || type == FW6_TYPE_RSSCPL) 320 return (EINVAL); 321 322 new = h ? (uintptr_t)h : (uintptr_t)fw_msg_not_handled; 323 loc = (uintptr_t *) &t4_fw_msg_handler[type]; 324 atomic_store_rel_ptr(loc, new); 325 326 return (0); 327 } 328 329 static int 330 cpl_not_handled(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m) 331 { 332 333 #ifdef INVARIANTS 334 panic("%s: opcode 0x%02x on iq %p with payload %p", 335 __func__, rss->opcode, iq, m); 336 #else 337 log(LOG_ERR, "%s: opcode 0x%02x on iq %p with payload %p\n", 338 __func__, rss->opcode, iq, m); 339 m_freem(m); 340 #endif 341 return (EDOOFUS); 342 } 343 344 int 345 t4_register_cpl_handler(int opcode, cpl_handler_t h) 346 { 347 uintptr_t *loc, new; 348 349 if (opcode >= nitems(t4_cpl_handler)) 350 return (EINVAL); 351 352 new = h ? (uintptr_t)h : (uintptr_t)cpl_not_handled; 353 loc = (uintptr_t *) &t4_cpl_handler[opcode]; 354 atomic_store_rel_ptr(loc, new); 355 356 return (0); 357 } 358 359 /* 360 * Called on MOD_LOAD. Validates and calculates the SGE tunables. 361 */ 362 void 363 t4_sge_modload(void) 364 { 365 int i; 366 367 if (fl_pktshift < 0 || fl_pktshift > 7) { 368 printf("Invalid hw.cxgbe.fl_pktshift value (%d)," 369 " using 2 instead.\n", fl_pktshift); 370 fl_pktshift = 2; 371 } 372 373 if (spg_len != 64 && spg_len != 128) { 374 int len; 375 376 #if defined(__i386__) || defined(__amd64__) 377 len = cpu_clflush_line_size > 64 ? 128 : 64; 378 #else 379 len = 64; 380 #endif 381 if (spg_len != -1) { 382 printf("Invalid hw.cxgbe.spg_len value (%d)," 383 " using %d instead.\n", spg_len, len); 384 } 385 spg_len = len; 386 } 387 388 if (cong_drop < -1 || cong_drop > 1) { 389 printf("Invalid hw.cxgbe.cong_drop value (%d)," 390 " using 0 instead.\n", cong_drop); 391 cong_drop = 0; 392 } 393 394 extfree_refs = counter_u64_alloc(M_WAITOK); 395 extfree_rels = counter_u64_alloc(M_WAITOK); 396 counter_u64_zero(extfree_refs); 397 counter_u64_zero(extfree_rels); 398 399 t4_an_handler = an_not_handled; 400 for (i = 0; i < nitems(t4_fw_msg_handler); i++) 401 t4_fw_msg_handler[i] = fw_msg_not_handled; 402 for (i = 0; i < nitems(t4_cpl_handler); i++) 403 t4_cpl_handler[i] = cpl_not_handled; 404 405 t4_register_cpl_handler(CPL_FW4_MSG, handle_fw_msg); 406 t4_register_cpl_handler(CPL_FW6_MSG, handle_fw_msg); 407 t4_register_cpl_handler(CPL_SGE_EGR_UPDATE, handle_sge_egr_update); 408 t4_register_cpl_handler(CPL_RX_PKT, t4_eth_rx); 409 t4_register_fw_msg_handler(FW6_TYPE_CMD_RPL, t4_handle_fw_rpl); 410 t4_register_fw_msg_handler(FW6_TYPE_WRERR_RPL, t4_handle_wrerr_rpl); 411 } 412 413 void 414 t4_sge_modunload(void) 415 { 416 417 counter_u64_free(extfree_refs); 418 counter_u64_free(extfree_rels); 419 } 420 421 uint64_t 422 t4_sge_extfree_refs(void) 423 { 424 uint64_t refs, rels; 425 426 rels = counter_u64_fetch(extfree_rels); 427 refs = counter_u64_fetch(extfree_refs); 428 429 return (refs - rels); 430 } 431 432 static inline void 433 setup_pad_and_pack_boundaries(struct adapter *sc) 434 { 435 uint32_t v, m; 436 int pad, pack, pad_shift; 437 438 pad_shift = chip_id(sc) > CHELSIO_T5 ? X_T6_INGPADBOUNDARY_SHIFT : 439 X_INGPADBOUNDARY_SHIFT; 440 pad = fl_pad; 441 if (fl_pad < (1 << pad_shift) || 442 fl_pad > (1 << (pad_shift + M_INGPADBOUNDARY)) || 443 !powerof2(fl_pad)) { 444 /* 445 * If there is any chance that we might use buffer packing and 446 * the chip is a T4, then pick 64 as the pad/pack boundary. Set 447 * it to the minimum allowed in all other cases. 448 */ 449 pad = is_t4(sc) && buffer_packing ? 64 : 1 << pad_shift; 450 451 /* 452 * For fl_pad = 0 we'll still write a reasonable value to the 453 * register but all the freelists will opt out of padding. 454 * We'll complain here only if the user tried to set it to a 455 * value greater than 0 that was invalid. 456 */ 457 if (fl_pad > 0) { 458 device_printf(sc->dev, "Invalid hw.cxgbe.fl_pad value" 459 " (%d), using %d instead.\n", fl_pad, pad); 460 } 461 } 462 m = V_INGPADBOUNDARY(M_INGPADBOUNDARY); 463 v = V_INGPADBOUNDARY(ilog2(pad) - pad_shift); 464 t4_set_reg_field(sc, A_SGE_CONTROL, m, v); 465 466 if (is_t4(sc)) { 467 if (fl_pack != -1 && fl_pack != pad) { 468 /* Complain but carry on. */ 469 device_printf(sc->dev, "hw.cxgbe.fl_pack (%d) ignored," 470 " using %d instead.\n", fl_pack, pad); 471 } 472 return; 473 } 474 475 pack = fl_pack; 476 if (fl_pack < 16 || fl_pack == 32 || fl_pack > 4096 || 477 !powerof2(fl_pack)) { 478 pack = max(sc->params.pci.mps, CACHE_LINE_SIZE); 479 MPASS(powerof2(pack)); 480 if (pack < 16) 481 pack = 16; 482 if (pack == 32) 483 pack = 64; 484 if (pack > 4096) 485 pack = 4096; 486 if (fl_pack != -1) { 487 device_printf(sc->dev, "Invalid hw.cxgbe.fl_pack value" 488 " (%d), using %d instead.\n", fl_pack, pack); 489 } 490 } 491 m = V_INGPACKBOUNDARY(M_INGPACKBOUNDARY); 492 if (pack == 16) 493 v = V_INGPACKBOUNDARY(0); 494 else 495 v = V_INGPACKBOUNDARY(ilog2(pack) - 5); 496 497 MPASS(!is_t4(sc)); /* T4 doesn't have SGE_CONTROL2 */ 498 t4_set_reg_field(sc, A_SGE_CONTROL2, m, v); 499 } 500 501 /* 502 * adap->params.vpd.cclk must be set up before this is called. 503 */ 504 void 505 t4_tweak_chip_settings(struct adapter *sc) 506 { 507 int i; 508 uint32_t v, m; 509 int intr_timer[SGE_NTIMERS] = {1, 5, 10, 50, 100, 200}; 510 int timer_max = M_TIMERVALUE0 * 1000 / sc->params.vpd.cclk; 511 int intr_pktcount[SGE_NCOUNTERS] = {1, 8, 16, 32}; /* 63 max */ 512 uint16_t indsz = min(RX_COPY_THRESHOLD - 1, M_INDICATESIZE); 513 static int sge_flbuf_sizes[] = { 514 MCLBYTES, 515 #if MJUMPAGESIZE != MCLBYTES 516 MJUMPAGESIZE, 517 MJUMPAGESIZE - CL_METADATA_SIZE, 518 MJUMPAGESIZE - 2 * MSIZE - CL_METADATA_SIZE, 519 #endif 520 MJUM9BYTES, 521 MJUM16BYTES, 522 MCLBYTES - MSIZE - CL_METADATA_SIZE, 523 MJUM9BYTES - CL_METADATA_SIZE, 524 MJUM16BYTES - CL_METADATA_SIZE, 525 }; 526 527 KASSERT(sc->flags & MASTER_PF, 528 ("%s: trying to change chip settings when not master.", __func__)); 529 530 m = V_PKTSHIFT(M_PKTSHIFT) | F_RXPKTCPLMODE | F_EGRSTATUSPAGESIZE; 531 v = V_PKTSHIFT(fl_pktshift) | F_RXPKTCPLMODE | 532 V_EGRSTATUSPAGESIZE(spg_len == 128); 533 t4_set_reg_field(sc, A_SGE_CONTROL, m, v); 534 535 setup_pad_and_pack_boundaries(sc); 536 537 v = V_HOSTPAGESIZEPF0(PAGE_SHIFT - 10) | 538 V_HOSTPAGESIZEPF1(PAGE_SHIFT - 10) | 539 V_HOSTPAGESIZEPF2(PAGE_SHIFT - 10) | 540 V_HOSTPAGESIZEPF3(PAGE_SHIFT - 10) | 541 V_HOSTPAGESIZEPF4(PAGE_SHIFT - 10) | 542 V_HOSTPAGESIZEPF5(PAGE_SHIFT - 10) | 543 V_HOSTPAGESIZEPF6(PAGE_SHIFT - 10) | 544 V_HOSTPAGESIZEPF7(PAGE_SHIFT - 10); 545 t4_write_reg(sc, A_SGE_HOST_PAGE_SIZE, v); 546 547 KASSERT(nitems(sge_flbuf_sizes) <= SGE_FLBUF_SIZES, 548 ("%s: hw buffer size table too big", __func__)); 549 for (i = 0; i < min(nitems(sge_flbuf_sizes), SGE_FLBUF_SIZES); i++) { 550 t4_write_reg(sc, A_SGE_FL_BUFFER_SIZE0 + (4 * i), 551 sge_flbuf_sizes[i]); 552 } 553 554 v = V_THRESHOLD_0(intr_pktcount[0]) | V_THRESHOLD_1(intr_pktcount[1]) | 555 V_THRESHOLD_2(intr_pktcount[2]) | V_THRESHOLD_3(intr_pktcount[3]); 556 t4_write_reg(sc, A_SGE_INGRESS_RX_THRESHOLD, v); 557 558 KASSERT(intr_timer[0] <= timer_max, 559 ("%s: not a single usable timer (%d, %d)", __func__, intr_timer[0], 560 timer_max)); 561 for (i = 1; i < nitems(intr_timer); i++) { 562 KASSERT(intr_timer[i] >= intr_timer[i - 1], 563 ("%s: timers not listed in increasing order (%d)", 564 __func__, i)); 565 566 while (intr_timer[i] > timer_max) { 567 if (i == nitems(intr_timer) - 1) { 568 intr_timer[i] = timer_max; 569 break; 570 } 571 intr_timer[i] += intr_timer[i - 1]; 572 intr_timer[i] /= 2; 573 } 574 } 575 576 v = V_TIMERVALUE0(us_to_core_ticks(sc, intr_timer[0])) | 577 V_TIMERVALUE1(us_to_core_ticks(sc, intr_timer[1])); 578 t4_write_reg(sc, A_SGE_TIMER_VALUE_0_AND_1, v); 579 v = V_TIMERVALUE2(us_to_core_ticks(sc, intr_timer[2])) | 580 V_TIMERVALUE3(us_to_core_ticks(sc, intr_timer[3])); 581 t4_write_reg(sc, A_SGE_TIMER_VALUE_2_AND_3, v); 582 v = V_TIMERVALUE4(us_to_core_ticks(sc, intr_timer[4])) | 583 V_TIMERVALUE5(us_to_core_ticks(sc, intr_timer[5])); 584 t4_write_reg(sc, A_SGE_TIMER_VALUE_4_AND_5, v); 585 586 /* 4K, 16K, 64K, 256K DDP "page sizes" for TDDP */ 587 v = V_HPZ0(0) | V_HPZ1(2) | V_HPZ2(4) | V_HPZ3(6); 588 t4_write_reg(sc, A_ULP_RX_TDDP_PSZ, v); 589 590 /* 591 * 4K, 8K, 16K, 64K DDP "page sizes" for iSCSI DDP. These have been 592 * chosen with MAXPHYS = 128K in mind. The largest DDP buffer that we 593 * may have to deal with is MAXPHYS + 1 page. 594 */ 595 v = V_HPZ0(0) | V_HPZ1(1) | V_HPZ2(2) | V_HPZ3(4); 596 t4_write_reg(sc, A_ULP_RX_ISCSI_PSZ, v); 597 598 /* We use multiple DDP page sizes both in plain-TOE and ISCSI modes. */ 599 m = v = F_TDDPTAGTCB | F_ISCSITAGTCB; 600 t4_set_reg_field(sc, A_ULP_RX_CTL, m, v); 601 602 m = V_INDICATESIZE(M_INDICATESIZE) | F_REARMDDPOFFSET | 603 F_RESETDDPOFFSET; 604 v = V_INDICATESIZE(indsz) | F_REARMDDPOFFSET | F_RESETDDPOFFSET; 605 t4_set_reg_field(sc, A_TP_PARA_REG5, m, v); 606 } 607 608 /* 609 * SGE wants the buffer to be at least 64B and then a multiple of 16. If 610 * padding is in use, the buffer's start and end need to be aligned to the pad 611 * boundary as well. We'll just make sure that the size is a multiple of the 612 * boundary here, it is up to the buffer allocation code to make sure the start 613 * of the buffer is aligned as well. 614 */ 615 static inline int 616 hwsz_ok(struct adapter *sc, int hwsz) 617 { 618 int mask = fl_pad ? sc->params.sge.pad_boundary - 1 : 16 - 1; 619 620 return (hwsz >= 64 && (hwsz & mask) == 0); 621 } 622 623 /* 624 * XXX: driver really should be able to deal with unexpected settings. 625 */ 626 int 627 t4_read_chip_settings(struct adapter *sc) 628 { 629 struct sge *s = &sc->sge; 630 struct sge_params *sp = &sc->params.sge; 631 int i, j, n, rc = 0; 632 uint32_t m, v, r; 633 uint16_t indsz = min(RX_COPY_THRESHOLD - 1, M_INDICATESIZE); 634 static int sw_buf_sizes[] = { /* Sorted by size */ 635 MCLBYTES, 636 #if MJUMPAGESIZE != MCLBYTES 637 MJUMPAGESIZE, 638 #endif 639 MJUM9BYTES, 640 MJUM16BYTES 641 }; 642 struct sw_zone_info *swz, *safe_swz; 643 struct hw_buf_info *hwb; 644 645 m = F_RXPKTCPLMODE; 646 v = F_RXPKTCPLMODE; 647 r = sc->params.sge.sge_control; 648 if ((r & m) != v) { 649 device_printf(sc->dev, "invalid SGE_CONTROL(0x%x)\n", r); 650 rc = EINVAL; 651 } 652 653 /* 654 * If this changes then every single use of PAGE_SHIFT in the driver 655 * needs to be carefully reviewed for PAGE_SHIFT vs sp->page_shift. 656 */ 657 if (sp->page_shift != PAGE_SHIFT) { 658 device_printf(sc->dev, "invalid SGE_HOST_PAGE_SIZE(0x%x)\n", r); 659 rc = EINVAL; 660 } 661 662 /* Filter out unusable hw buffer sizes entirely (mark with -2). */ 663 hwb = &s->hw_buf_info[0]; 664 for (i = 0; i < nitems(s->hw_buf_info); i++, hwb++) { 665 r = sc->params.sge.sge_fl_buffer_size[i]; 666 hwb->size = r; 667 hwb->zidx = hwsz_ok(sc, r) ? -1 : -2; 668 hwb->next = -1; 669 } 670 671 /* 672 * Create a sorted list in decreasing order of hw buffer sizes (and so 673 * increasing order of spare area) for each software zone. 674 * 675 * If padding is enabled then the start and end of the buffer must align 676 * to the pad boundary; if packing is enabled then they must align with 677 * the pack boundary as well. Allocations from the cluster zones are 678 * aligned to min(size, 4K), so the buffer starts at that alignment and 679 * ends at hwb->size alignment. If mbuf inlining is allowed the 680 * starting alignment will be reduced to MSIZE and the driver will 681 * exercise appropriate caution when deciding on the best buffer layout 682 * to use. 683 */ 684 n = 0; /* no usable buffer size to begin with */ 685 swz = &s->sw_zone_info[0]; 686 safe_swz = NULL; 687 for (i = 0; i < SW_ZONE_SIZES; i++, swz++) { 688 int8_t head = -1, tail = -1; 689 690 swz->size = sw_buf_sizes[i]; 691 swz->zone = m_getzone(swz->size); 692 swz->type = m_gettype(swz->size); 693 694 if (swz->size < PAGE_SIZE) { 695 MPASS(powerof2(swz->size)); 696 if (fl_pad && (swz->size % sp->pad_boundary != 0)) 697 continue; 698 } 699 700 if (swz->size == safest_rx_cluster) 701 safe_swz = swz; 702 703 hwb = &s->hw_buf_info[0]; 704 for (j = 0; j < SGE_FLBUF_SIZES; j++, hwb++) { 705 if (hwb->zidx != -1 || hwb->size > swz->size) 706 continue; 707 #ifdef INVARIANTS 708 if (fl_pad) 709 MPASS(hwb->size % sp->pad_boundary == 0); 710 #endif 711 hwb->zidx = i; 712 if (head == -1) 713 head = tail = j; 714 else if (hwb->size < s->hw_buf_info[tail].size) { 715 s->hw_buf_info[tail].next = j; 716 tail = j; 717 } else { 718 int8_t *cur; 719 struct hw_buf_info *t; 720 721 for (cur = &head; *cur != -1; cur = &t->next) { 722 t = &s->hw_buf_info[*cur]; 723 if (hwb->size == t->size) { 724 hwb->zidx = -2; 725 break; 726 } 727 if (hwb->size > t->size) { 728 hwb->next = *cur; 729 *cur = j; 730 break; 731 } 732 } 733 } 734 } 735 swz->head_hwidx = head; 736 swz->tail_hwidx = tail; 737 738 if (tail != -1) { 739 n++; 740 if (swz->size - s->hw_buf_info[tail].size >= 741 CL_METADATA_SIZE) 742 sc->flags |= BUF_PACKING_OK; 743 } 744 } 745 if (n == 0) { 746 device_printf(sc->dev, "no usable SGE FL buffer size.\n"); 747 rc = EINVAL; 748 } 749 750 s->safe_hwidx1 = -1; 751 s->safe_hwidx2 = -1; 752 if (safe_swz != NULL) { 753 s->safe_hwidx1 = safe_swz->head_hwidx; 754 for (i = safe_swz->head_hwidx; i != -1; i = hwb->next) { 755 int spare; 756 757 hwb = &s->hw_buf_info[i]; 758 #ifdef INVARIANTS 759 if (fl_pad) 760 MPASS(hwb->size % sp->pad_boundary == 0); 761 #endif 762 spare = safe_swz->size - hwb->size; 763 if (spare >= CL_METADATA_SIZE) { 764 s->safe_hwidx2 = i; 765 break; 766 } 767 } 768 } 769 770 if (sc->flags & IS_VF) 771 return (0); 772 773 v = V_HPZ0(0) | V_HPZ1(2) | V_HPZ2(4) | V_HPZ3(6); 774 r = t4_read_reg(sc, A_ULP_RX_TDDP_PSZ); 775 if (r != v) { 776 device_printf(sc->dev, "invalid ULP_RX_TDDP_PSZ(0x%x)\n", r); 777 rc = EINVAL; 778 } 779 780 m = v = F_TDDPTAGTCB; 781 r = t4_read_reg(sc, A_ULP_RX_CTL); 782 if ((r & m) != v) { 783 device_printf(sc->dev, "invalid ULP_RX_CTL(0x%x)\n", r); 784 rc = EINVAL; 785 } 786 787 m = V_INDICATESIZE(M_INDICATESIZE) | F_REARMDDPOFFSET | 788 F_RESETDDPOFFSET; 789 v = V_INDICATESIZE(indsz) | F_REARMDDPOFFSET | F_RESETDDPOFFSET; 790 r = t4_read_reg(sc, A_TP_PARA_REG5); 791 if ((r & m) != v) { 792 device_printf(sc->dev, "invalid TP_PARA_REG5(0x%x)\n", r); 793 rc = EINVAL; 794 } 795 796 t4_init_tp_params(sc); 797 798 t4_read_mtu_tbl(sc, sc->params.mtus, NULL); 799 t4_load_mtus(sc, sc->params.mtus, sc->params.a_wnd, sc->params.b_wnd); 800 801 return (rc); 802 } 803 804 int 805 t4_create_dma_tag(struct adapter *sc) 806 { 807 int rc; 808 809 rc = bus_dma_tag_create(bus_get_dma_tag(sc->dev), 1, 0, 810 BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, BUS_SPACE_MAXSIZE, 811 BUS_SPACE_UNRESTRICTED, BUS_SPACE_MAXSIZE, BUS_DMA_ALLOCNOW, NULL, 812 NULL, &sc->dmat); 813 if (rc != 0) { 814 device_printf(sc->dev, 815 "failed to create main DMA tag: %d\n", rc); 816 } 817 818 return (rc); 819 } 820 821 void 822 t4_sge_sysctls(struct adapter *sc, struct sysctl_ctx_list *ctx, 823 struct sysctl_oid_list *children) 824 { 825 struct sge_params *sp = &sc->params.sge; 826 827 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "buffer_sizes", 828 CTLTYPE_STRING | CTLFLAG_RD, &sc->sge, 0, sysctl_bufsizes, "A", 829 "freelist buffer sizes"); 830 831 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pktshift", CTLFLAG_RD, 832 NULL, sp->fl_pktshift, "payload DMA offset in rx buffer (bytes)"); 833 834 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pad", CTLFLAG_RD, 835 NULL, sp->pad_boundary, "payload pad boundary (bytes)"); 836 837 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "spg_len", CTLFLAG_RD, 838 NULL, sp->spg_len, "status page size (bytes)"); 839 840 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "cong_drop", CTLFLAG_RD, 841 NULL, cong_drop, "congestion drop setting"); 842 843 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pack", CTLFLAG_RD, 844 NULL, sp->pack_boundary, "payload pack boundary (bytes)"); 845 } 846 847 int 848 t4_destroy_dma_tag(struct adapter *sc) 849 { 850 if (sc->dmat) 851 bus_dma_tag_destroy(sc->dmat); 852 853 return (0); 854 } 855 856 /* 857 * Allocate and initialize the firmware event queue and the management queue. 858 * 859 * Returns errno on failure. Resources allocated up to that point may still be 860 * allocated. Caller is responsible for cleanup in case this function fails. 861 */ 862 int 863 t4_setup_adapter_queues(struct adapter *sc) 864 { 865 int rc; 866 867 ADAPTER_LOCK_ASSERT_NOTOWNED(sc); 868 869 sysctl_ctx_init(&sc->ctx); 870 sc->flags |= ADAP_SYSCTL_CTX; 871 872 /* 873 * Firmware event queue 874 */ 875 rc = alloc_fwq(sc); 876 if (rc != 0) 877 return (rc); 878 879 /* 880 * Management queue. This is just a control queue that uses the fwq as 881 * its associated iq. 882 */ 883 if (!(sc->flags & IS_VF)) 884 rc = alloc_mgmtq(sc); 885 886 return (rc); 887 } 888 889 /* 890 * Idempotent 891 */ 892 int 893 t4_teardown_adapter_queues(struct adapter *sc) 894 { 895 896 ADAPTER_LOCK_ASSERT_NOTOWNED(sc); 897 898 /* Do this before freeing the queue */ 899 if (sc->flags & ADAP_SYSCTL_CTX) { 900 sysctl_ctx_free(&sc->ctx); 901 sc->flags &= ~ADAP_SYSCTL_CTX; 902 } 903 904 free_mgmtq(sc); 905 free_fwq(sc); 906 907 return (0); 908 } 909 910 static inline int 911 first_vector(struct vi_info *vi) 912 { 913 struct adapter *sc = vi->pi->adapter; 914 915 if (sc->intr_count == 1) 916 return (0); 917 918 return (vi->first_intr); 919 } 920 921 /* 922 * Given an arbitrary "index," come up with an iq that can be used by other 923 * queues (of this VI) for interrupt forwarding, SGE egress updates, etc. 924 * The iq returned is guaranteed to be something that takes direct interrupts. 925 */ 926 static struct sge_iq * 927 vi_intr_iq(struct vi_info *vi, int idx) 928 { 929 struct adapter *sc = vi->pi->adapter; 930 struct sge *s = &sc->sge; 931 struct sge_iq *iq = NULL; 932 int nintr, i; 933 934 if (sc->intr_count == 1) 935 return (&sc->sge.fwq); 936 937 nintr = vi->nintr; 938 KASSERT(nintr != 0, 939 ("%s: vi %p has no exclusive interrupts, total interrupts = %d", 940 __func__, vi, sc->intr_count)); 941 i = idx % nintr; 942 943 if (vi->flags & INTR_RXQ) { 944 if (i < vi->nrxq) { 945 iq = &s->rxq[vi->first_rxq + i].iq; 946 goto done; 947 } 948 i -= vi->nrxq; 949 } 950 #ifdef TCP_OFFLOAD 951 if (vi->flags & INTR_OFLD_RXQ) { 952 if (i < vi->nofldrxq) { 953 iq = &s->ofld_rxq[vi->first_ofld_rxq + i].iq; 954 goto done; 955 } 956 i -= vi->nofldrxq; 957 } 958 #endif 959 panic("%s: vi %p, intr_flags 0x%lx, idx %d, total intr %d\n", __func__, 960 vi, vi->flags & INTR_ALL, idx, nintr); 961 done: 962 MPASS(iq != NULL); 963 KASSERT(iq->flags & IQ_INTR, 964 ("%s: iq %p (vi %p, intr_flags 0x%lx, idx %d)", __func__, iq, vi, 965 vi->flags & INTR_ALL, idx)); 966 return (iq); 967 } 968 969 /* Maximum payload that can be delivered with a single iq descriptor */ 970 static inline int 971 mtu_to_max_payload(struct adapter *sc, int mtu, const int toe) 972 { 973 int payload; 974 975 #ifdef TCP_OFFLOAD 976 if (toe) { 977 payload = sc->tt.rx_coalesce ? 978 G_RXCOALESCESIZE(t4_read_reg(sc, A_TP_PARA_REG2)) : mtu; 979 } else { 980 #endif 981 /* large enough even when hw VLAN extraction is disabled */ 982 payload = sc->params.sge.fl_pktshift + ETHER_HDR_LEN + 983 ETHER_VLAN_ENCAP_LEN + mtu; 984 #ifdef TCP_OFFLOAD 985 } 986 #endif 987 988 return (payload); 989 } 990 991 int 992 t4_setup_vi_queues(struct vi_info *vi) 993 { 994 int rc = 0, i, j, intr_idx, iqid; 995 struct sge_rxq *rxq; 996 struct sge_txq *txq; 997 struct sge_wrq *ctrlq; 998 #ifdef TCP_OFFLOAD 999 struct sge_ofld_rxq *ofld_rxq; 1000 struct sge_wrq *ofld_txq; 1001 #endif 1002 #ifdef DEV_NETMAP 1003 int saved_idx; 1004 struct sge_nm_rxq *nm_rxq; 1005 struct sge_nm_txq *nm_txq; 1006 #endif 1007 char name[16]; 1008 struct port_info *pi = vi->pi; 1009 struct adapter *sc = pi->adapter; 1010 struct ifnet *ifp = vi->ifp; 1011 struct sysctl_oid *oid = device_get_sysctl_tree(vi->dev); 1012 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 1013 int maxp, mtu = ifp->if_mtu; 1014 1015 /* Interrupt vector to start from (when using multiple vectors) */ 1016 intr_idx = first_vector(vi); 1017 1018 #ifdef DEV_NETMAP 1019 saved_idx = intr_idx; 1020 if (ifp->if_capabilities & IFCAP_NETMAP) { 1021 1022 /* netmap is supported with direct interrupts only. */ 1023 MPASS(vi->flags & INTR_RXQ); 1024 1025 /* 1026 * We don't have buffers to back the netmap rx queues 1027 * right now so we create the queues in a way that 1028 * doesn't set off any congestion signal in the chip. 1029 */ 1030 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "nm_rxq", 1031 CTLFLAG_RD, NULL, "rx queues"); 1032 for_each_nm_rxq(vi, i, nm_rxq) { 1033 rc = alloc_nm_rxq(vi, nm_rxq, intr_idx, i, oid); 1034 if (rc != 0) 1035 goto done; 1036 intr_idx++; 1037 } 1038 1039 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "nm_txq", 1040 CTLFLAG_RD, NULL, "tx queues"); 1041 for_each_nm_txq(vi, i, nm_txq) { 1042 iqid = vi->first_nm_rxq + (i % vi->nnmrxq); 1043 rc = alloc_nm_txq(vi, nm_txq, iqid, i, oid); 1044 if (rc != 0) 1045 goto done; 1046 } 1047 } 1048 1049 /* Normal rx queues and netmap rx queues share the same interrupts. */ 1050 intr_idx = saved_idx; 1051 #endif 1052 1053 /* 1054 * First pass over all NIC and TOE rx queues: 1055 * a) initialize iq and fl 1056 * b) allocate queue iff it will take direct interrupts. 1057 */ 1058 maxp = mtu_to_max_payload(sc, mtu, 0); 1059 if (vi->flags & INTR_RXQ) { 1060 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "rxq", 1061 CTLFLAG_RD, NULL, "rx queues"); 1062 } 1063 for_each_rxq(vi, i, rxq) { 1064 1065 init_iq(&rxq->iq, sc, vi->tmr_idx, vi->pktc_idx, vi->qsize_rxq); 1066 1067 snprintf(name, sizeof(name), "%s rxq%d-fl", 1068 device_get_nameunit(vi->dev), i); 1069 init_fl(sc, &rxq->fl, vi->qsize_rxq / 8, maxp, name); 1070 1071 if (vi->flags & INTR_RXQ) { 1072 rxq->iq.flags |= IQ_INTR; 1073 rc = alloc_rxq(vi, rxq, intr_idx, i, oid); 1074 if (rc != 0) 1075 goto done; 1076 intr_idx++; 1077 } 1078 } 1079 #ifdef DEV_NETMAP 1080 if (ifp->if_capabilities & IFCAP_NETMAP) 1081 intr_idx = saved_idx + max(vi->nrxq, vi->nnmrxq); 1082 #endif 1083 #ifdef TCP_OFFLOAD 1084 maxp = mtu_to_max_payload(sc, mtu, 1); 1085 if (vi->flags & INTR_OFLD_RXQ) { 1086 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ofld_rxq", 1087 CTLFLAG_RD, NULL, 1088 "rx queues for offloaded TCP connections"); 1089 } 1090 for_each_ofld_rxq(vi, i, ofld_rxq) { 1091 1092 init_iq(&ofld_rxq->iq, sc, vi->tmr_idx, vi->pktc_idx, 1093 vi->qsize_rxq); 1094 1095 snprintf(name, sizeof(name), "%s ofld_rxq%d-fl", 1096 device_get_nameunit(vi->dev), i); 1097 init_fl(sc, &ofld_rxq->fl, vi->qsize_rxq / 8, maxp, name); 1098 1099 if (vi->flags & INTR_OFLD_RXQ) { 1100 ofld_rxq->iq.flags |= IQ_INTR; 1101 rc = alloc_ofld_rxq(vi, ofld_rxq, intr_idx, i, oid); 1102 if (rc != 0) 1103 goto done; 1104 intr_idx++; 1105 } 1106 } 1107 #endif 1108 1109 /* 1110 * Second pass over all NIC and TOE rx queues. The queues forwarding 1111 * their interrupts are allocated now. 1112 */ 1113 j = 0; 1114 if (!(vi->flags & INTR_RXQ)) { 1115 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "rxq", 1116 CTLFLAG_RD, NULL, "rx queues"); 1117 for_each_rxq(vi, i, rxq) { 1118 MPASS(!(rxq->iq.flags & IQ_INTR)); 1119 1120 intr_idx = vi_intr_iq(vi, j)->abs_id; 1121 1122 rc = alloc_rxq(vi, rxq, intr_idx, i, oid); 1123 if (rc != 0) 1124 goto done; 1125 j++; 1126 } 1127 } 1128 #ifdef TCP_OFFLOAD 1129 if (vi->nofldrxq != 0 && !(vi->flags & INTR_OFLD_RXQ)) { 1130 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ofld_rxq", 1131 CTLFLAG_RD, NULL, 1132 "rx queues for offloaded TCP connections"); 1133 for_each_ofld_rxq(vi, i, ofld_rxq) { 1134 MPASS(!(ofld_rxq->iq.flags & IQ_INTR)); 1135 1136 intr_idx = vi_intr_iq(vi, j)->abs_id; 1137 1138 rc = alloc_ofld_rxq(vi, ofld_rxq, intr_idx, i, oid); 1139 if (rc != 0) 1140 goto done; 1141 j++; 1142 } 1143 } 1144 #endif 1145 1146 /* 1147 * Now the tx queues. Only one pass needed. 1148 */ 1149 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "txq", CTLFLAG_RD, 1150 NULL, "tx queues"); 1151 j = 0; 1152 for_each_txq(vi, i, txq) { 1153 iqid = vi_intr_iq(vi, j)->cntxt_id; 1154 snprintf(name, sizeof(name), "%s txq%d", 1155 device_get_nameunit(vi->dev), i); 1156 init_eq(sc, &txq->eq, EQ_ETH, vi->qsize_txq, pi->tx_chan, iqid, 1157 name); 1158 1159 rc = alloc_txq(vi, txq, i, oid); 1160 if (rc != 0) 1161 goto done; 1162 j++; 1163 } 1164 #ifdef TCP_OFFLOAD 1165 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ofld_txq", 1166 CTLFLAG_RD, NULL, "tx queues for offloaded TCP connections"); 1167 for_each_ofld_txq(vi, i, ofld_txq) { 1168 struct sysctl_oid *oid2; 1169 1170 iqid = vi_intr_iq(vi, j)->cntxt_id; 1171 snprintf(name, sizeof(name), "%s ofld_txq%d", 1172 device_get_nameunit(vi->dev), i); 1173 init_eq(sc, &ofld_txq->eq, EQ_OFLD, vi->qsize_txq, pi->tx_chan, 1174 iqid, name); 1175 1176 snprintf(name, sizeof(name), "%d", i); 1177 oid2 = SYSCTL_ADD_NODE(&vi->ctx, SYSCTL_CHILDREN(oid), OID_AUTO, 1178 name, CTLFLAG_RD, NULL, "offload tx queue"); 1179 1180 rc = alloc_wrq(sc, vi, ofld_txq, oid2); 1181 if (rc != 0) 1182 goto done; 1183 j++; 1184 } 1185 #endif 1186 1187 /* 1188 * Finally, the control queue. 1189 */ 1190 if (!IS_MAIN_VI(vi) || sc->flags & IS_VF) 1191 goto done; 1192 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, "ctrlq", CTLFLAG_RD, 1193 NULL, "ctrl queue"); 1194 ctrlq = &sc->sge.ctrlq[pi->port_id]; 1195 iqid = vi_intr_iq(vi, 0)->cntxt_id; 1196 snprintf(name, sizeof(name), "%s ctrlq", device_get_nameunit(vi->dev)); 1197 init_eq(sc, &ctrlq->eq, EQ_CTRL, CTRL_EQ_QSIZE, pi->tx_chan, iqid, 1198 name); 1199 rc = alloc_wrq(sc, vi, ctrlq, oid); 1200 1201 done: 1202 if (rc) 1203 t4_teardown_vi_queues(vi); 1204 1205 return (rc); 1206 } 1207 1208 /* 1209 * Idempotent 1210 */ 1211 int 1212 t4_teardown_vi_queues(struct vi_info *vi) 1213 { 1214 int i; 1215 struct port_info *pi = vi->pi; 1216 struct adapter *sc = pi->adapter; 1217 struct sge_rxq *rxq; 1218 struct sge_txq *txq; 1219 #ifdef TCP_OFFLOAD 1220 struct sge_ofld_rxq *ofld_rxq; 1221 struct sge_wrq *ofld_txq; 1222 #endif 1223 #ifdef DEV_NETMAP 1224 struct sge_nm_rxq *nm_rxq; 1225 struct sge_nm_txq *nm_txq; 1226 #endif 1227 1228 /* Do this before freeing the queues */ 1229 if (vi->flags & VI_SYSCTL_CTX) { 1230 sysctl_ctx_free(&vi->ctx); 1231 vi->flags &= ~VI_SYSCTL_CTX; 1232 } 1233 1234 #ifdef DEV_NETMAP 1235 if (vi->ifp->if_capabilities & IFCAP_NETMAP) { 1236 for_each_nm_txq(vi, i, nm_txq) { 1237 free_nm_txq(vi, nm_txq); 1238 } 1239 1240 for_each_nm_rxq(vi, i, nm_rxq) { 1241 free_nm_rxq(vi, nm_rxq); 1242 } 1243 } 1244 #endif 1245 1246 /* 1247 * Take down all the tx queues first, as they reference the rx queues 1248 * (for egress updates, etc.). 1249 */ 1250 1251 if (IS_MAIN_VI(vi) && !(sc->flags & IS_VF)) 1252 free_wrq(sc, &sc->sge.ctrlq[pi->port_id]); 1253 1254 for_each_txq(vi, i, txq) { 1255 free_txq(vi, txq); 1256 } 1257 #ifdef TCP_OFFLOAD 1258 for_each_ofld_txq(vi, i, ofld_txq) { 1259 free_wrq(sc, ofld_txq); 1260 } 1261 #endif 1262 1263 /* 1264 * Then take down the rx queues that forward their interrupts, as they 1265 * reference other rx queues. 1266 */ 1267 1268 for_each_rxq(vi, i, rxq) { 1269 if ((rxq->iq.flags & IQ_INTR) == 0) 1270 free_rxq(vi, rxq); 1271 } 1272 #ifdef TCP_OFFLOAD 1273 for_each_ofld_rxq(vi, i, ofld_rxq) { 1274 if ((ofld_rxq->iq.flags & IQ_INTR) == 0) 1275 free_ofld_rxq(vi, ofld_rxq); 1276 } 1277 #endif 1278 1279 /* 1280 * Then take down the rx queues that take direct interrupts. 1281 */ 1282 1283 for_each_rxq(vi, i, rxq) { 1284 if (rxq->iq.flags & IQ_INTR) 1285 free_rxq(vi, rxq); 1286 } 1287 #ifdef TCP_OFFLOAD 1288 for_each_ofld_rxq(vi, i, ofld_rxq) { 1289 if (ofld_rxq->iq.flags & IQ_INTR) 1290 free_ofld_rxq(vi, ofld_rxq); 1291 } 1292 #endif 1293 1294 return (0); 1295 } 1296 1297 /* 1298 * Deals with errors and the firmware event queue. All data rx queues forward 1299 * their interrupt to the firmware event queue. 1300 */ 1301 void 1302 t4_intr_all(void *arg) 1303 { 1304 struct adapter *sc = arg; 1305 struct sge_iq *fwq = &sc->sge.fwq; 1306 1307 t4_intr_err(arg); 1308 if (atomic_cmpset_int(&fwq->state, IQS_IDLE, IQS_BUSY)) { 1309 service_iq(fwq, 0); 1310 atomic_cmpset_int(&fwq->state, IQS_BUSY, IQS_IDLE); 1311 } 1312 } 1313 1314 /* Deals with error interrupts */ 1315 void 1316 t4_intr_err(void *arg) 1317 { 1318 struct adapter *sc = arg; 1319 1320 t4_write_reg(sc, MYPF_REG(A_PCIE_PF_CLI), 0); 1321 t4_slow_intr_handler(sc); 1322 } 1323 1324 void 1325 t4_intr_evt(void *arg) 1326 { 1327 struct sge_iq *iq = arg; 1328 1329 if (atomic_cmpset_int(&iq->state, IQS_IDLE, IQS_BUSY)) { 1330 service_iq(iq, 0); 1331 atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE); 1332 } 1333 } 1334 1335 void 1336 t4_intr(void *arg) 1337 { 1338 struct sge_iq *iq = arg; 1339 1340 if (atomic_cmpset_int(&iq->state, IQS_IDLE, IQS_BUSY)) { 1341 service_iq(iq, 0); 1342 atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE); 1343 } 1344 } 1345 1346 void 1347 t4_vi_intr(void *arg) 1348 { 1349 struct irq *irq = arg; 1350 1351 #ifdef DEV_NETMAP 1352 if (atomic_cmpset_int(&irq->nm_state, NM_ON, NM_BUSY)) { 1353 t4_nm_intr(irq->nm_rxq); 1354 atomic_cmpset_int(&irq->nm_state, NM_BUSY, NM_ON); 1355 } 1356 #endif 1357 if (irq->rxq != NULL) 1358 t4_intr(irq->rxq); 1359 } 1360 1361 /* 1362 * Deals with anything and everything on the given ingress queue. 1363 */ 1364 static int 1365 service_iq(struct sge_iq *iq, int budget) 1366 { 1367 struct sge_iq *q; 1368 struct sge_rxq *rxq = iq_to_rxq(iq); /* Use iff iq is part of rxq */ 1369 struct sge_fl *fl; /* Use iff IQ_HAS_FL */ 1370 struct adapter *sc = iq->adapter; 1371 struct iq_desc *d = &iq->desc[iq->cidx]; 1372 int ndescs = 0, limit; 1373 int rsp_type, refill; 1374 uint32_t lq; 1375 uint16_t fl_hw_cidx; 1376 struct mbuf *m0; 1377 STAILQ_HEAD(, sge_iq) iql = STAILQ_HEAD_INITIALIZER(iql); 1378 #if defined(INET) || defined(INET6) 1379 const struct timeval lro_timeout = {0, sc->lro_timeout}; 1380 #endif 1381 1382 KASSERT(iq->state == IQS_BUSY, ("%s: iq %p not BUSY", __func__, iq)); 1383 1384 limit = budget ? budget : iq->qsize / 16; 1385 1386 if (iq->flags & IQ_HAS_FL) { 1387 fl = &rxq->fl; 1388 fl_hw_cidx = fl->hw_cidx; /* stable snapshot */ 1389 } else { 1390 fl = NULL; 1391 fl_hw_cidx = 0; /* to silence gcc warning */ 1392 } 1393 1394 /* 1395 * We always come back and check the descriptor ring for new indirect 1396 * interrupts and other responses after running a single handler. 1397 */ 1398 for (;;) { 1399 while ((d->rsp.u.type_gen & F_RSPD_GEN) == iq->gen) { 1400 1401 rmb(); 1402 1403 refill = 0; 1404 m0 = NULL; 1405 rsp_type = G_RSPD_TYPE(d->rsp.u.type_gen); 1406 lq = be32toh(d->rsp.pldbuflen_qid); 1407 1408 switch (rsp_type) { 1409 case X_RSPD_TYPE_FLBUF: 1410 1411 KASSERT(iq->flags & IQ_HAS_FL, 1412 ("%s: data for an iq (%p) with no freelist", 1413 __func__, iq)); 1414 1415 m0 = get_fl_payload(sc, fl, lq); 1416 if (__predict_false(m0 == NULL)) 1417 goto process_iql; 1418 refill = IDXDIFF(fl->hw_cidx, fl_hw_cidx, fl->sidx) > 2; 1419 #ifdef T4_PKT_TIMESTAMP 1420 /* 1421 * 60 bit timestamp for the payload is 1422 * *(uint64_t *)m0->m_pktdat. Note that it is 1423 * in the leading free-space in the mbuf. The 1424 * kernel can clobber it during a pullup, 1425 * m_copymdata, etc. You need to make sure that 1426 * the mbuf reaches you unmolested if you care 1427 * about the timestamp. 1428 */ 1429 *(uint64_t *)m0->m_pktdat = 1430 be64toh(ctrl->u.last_flit) & 1431 0xfffffffffffffff; 1432 #endif 1433 1434 /* fall through */ 1435 1436 case X_RSPD_TYPE_CPL: 1437 KASSERT(d->rss.opcode < NUM_CPL_CMDS, 1438 ("%s: bad opcode %02x.", __func__, 1439 d->rss.opcode)); 1440 t4_cpl_handler[d->rss.opcode](iq, &d->rss, m0); 1441 break; 1442 1443 case X_RSPD_TYPE_INTR: 1444 1445 /* 1446 * Interrupts should be forwarded only to queues 1447 * that are not forwarding their interrupts. 1448 * This means service_iq can recurse but only 1 1449 * level deep. 1450 */ 1451 KASSERT(budget == 0, 1452 ("%s: budget %u, rsp_type %u", __func__, 1453 budget, rsp_type)); 1454 1455 /* 1456 * There are 1K interrupt-capable queues (qids 0 1457 * through 1023). A response type indicating a 1458 * forwarded interrupt with a qid >= 1K is an 1459 * iWARP async notification. 1460 */ 1461 if (lq >= 1024) { 1462 t4_an_handler(iq, &d->rsp); 1463 break; 1464 } 1465 1466 q = sc->sge.iqmap[lq - sc->sge.iq_start - 1467 sc->sge.iq_base]; 1468 if (atomic_cmpset_int(&q->state, IQS_IDLE, 1469 IQS_BUSY)) { 1470 if (service_iq(q, q->qsize / 16) == 0) { 1471 atomic_cmpset_int(&q->state, 1472 IQS_BUSY, IQS_IDLE); 1473 } else { 1474 STAILQ_INSERT_TAIL(&iql, q, 1475 link); 1476 } 1477 } 1478 break; 1479 1480 default: 1481 KASSERT(0, 1482 ("%s: illegal response type %d on iq %p", 1483 __func__, rsp_type, iq)); 1484 log(LOG_ERR, 1485 "%s: illegal response type %d on iq %p", 1486 device_get_nameunit(sc->dev), rsp_type, iq); 1487 break; 1488 } 1489 1490 d++; 1491 if (__predict_false(++iq->cidx == iq->sidx)) { 1492 iq->cidx = 0; 1493 iq->gen ^= F_RSPD_GEN; 1494 d = &iq->desc[0]; 1495 } 1496 if (__predict_false(++ndescs == limit)) { 1497 t4_write_reg(sc, sc->sge_gts_reg, 1498 V_CIDXINC(ndescs) | 1499 V_INGRESSQID(iq->cntxt_id) | 1500 V_SEINTARM(V_QINTR_TIMER_IDX(X_TIMERREG_UPDATE_CIDX))); 1501 ndescs = 0; 1502 1503 #if defined(INET) || defined(INET6) 1504 if (iq->flags & IQ_LRO_ENABLED && 1505 sc->lro_timeout != 0) { 1506 tcp_lro_flush_inactive(&rxq->lro, 1507 &lro_timeout); 1508 } 1509 #endif 1510 1511 if (budget) { 1512 if (iq->flags & IQ_HAS_FL) { 1513 FL_LOCK(fl); 1514 refill_fl(sc, fl, 32); 1515 FL_UNLOCK(fl); 1516 } 1517 return (EINPROGRESS); 1518 } 1519 } 1520 if (refill) { 1521 FL_LOCK(fl); 1522 refill_fl(sc, fl, 32); 1523 FL_UNLOCK(fl); 1524 fl_hw_cidx = fl->hw_cidx; 1525 } 1526 } 1527 1528 process_iql: 1529 if (STAILQ_EMPTY(&iql)) 1530 break; 1531 1532 /* 1533 * Process the head only, and send it to the back of the list if 1534 * it's still not done. 1535 */ 1536 q = STAILQ_FIRST(&iql); 1537 STAILQ_REMOVE_HEAD(&iql, link); 1538 if (service_iq(q, q->qsize / 8) == 0) 1539 atomic_cmpset_int(&q->state, IQS_BUSY, IQS_IDLE); 1540 else 1541 STAILQ_INSERT_TAIL(&iql, q, link); 1542 } 1543 1544 #if defined(INET) || defined(INET6) 1545 if (iq->flags & IQ_LRO_ENABLED) { 1546 struct lro_ctrl *lro = &rxq->lro; 1547 1548 tcp_lro_flush_all(lro); 1549 } 1550 #endif 1551 1552 t4_write_reg(sc, sc->sge_gts_reg, V_CIDXINC(ndescs) | 1553 V_INGRESSQID((u32)iq->cntxt_id) | V_SEINTARM(iq->intr_params)); 1554 1555 if (iq->flags & IQ_HAS_FL) { 1556 int starved; 1557 1558 FL_LOCK(fl); 1559 starved = refill_fl(sc, fl, 64); 1560 FL_UNLOCK(fl); 1561 if (__predict_false(starved != 0)) 1562 add_fl_to_sfl(sc, fl); 1563 } 1564 1565 return (0); 1566 } 1567 1568 static inline int 1569 cl_has_metadata(struct sge_fl *fl, struct cluster_layout *cll) 1570 { 1571 int rc = fl->flags & FL_BUF_PACKING || cll->region1 > 0; 1572 1573 if (rc) 1574 MPASS(cll->region3 >= CL_METADATA_SIZE); 1575 1576 return (rc); 1577 } 1578 1579 static inline struct cluster_metadata * 1580 cl_metadata(struct adapter *sc, struct sge_fl *fl, struct cluster_layout *cll, 1581 caddr_t cl) 1582 { 1583 1584 if (cl_has_metadata(fl, cll)) { 1585 struct sw_zone_info *swz = &sc->sge.sw_zone_info[cll->zidx]; 1586 1587 return ((struct cluster_metadata *)(cl + swz->size) - 1); 1588 } 1589 return (NULL); 1590 } 1591 1592 static void 1593 rxb_free(struct mbuf *m, void *arg1, void *arg2) 1594 { 1595 uma_zone_t zone = arg1; 1596 caddr_t cl = arg2; 1597 1598 uma_zfree(zone, cl); 1599 counter_u64_add(extfree_rels, 1); 1600 } 1601 1602 /* 1603 * The mbuf returned by this function could be allocated from zone_mbuf or 1604 * constructed in spare room in the cluster. 1605 * 1606 * The mbuf carries the payload in one of these ways 1607 * a) frame inside the mbuf (mbuf from zone_mbuf) 1608 * b) m_cljset (for clusters without metadata) zone_mbuf 1609 * c) m_extaddref (cluster with metadata) inline mbuf 1610 * d) m_extaddref (cluster with metadata) zone_mbuf 1611 */ 1612 static struct mbuf * 1613 get_scatter_segment(struct adapter *sc, struct sge_fl *fl, int fr_offset, 1614 int remaining) 1615 { 1616 struct mbuf *m; 1617 struct fl_sdesc *sd = &fl->sdesc[fl->cidx]; 1618 struct cluster_layout *cll = &sd->cll; 1619 struct sw_zone_info *swz = &sc->sge.sw_zone_info[cll->zidx]; 1620 struct hw_buf_info *hwb = &sc->sge.hw_buf_info[cll->hwidx]; 1621 struct cluster_metadata *clm = cl_metadata(sc, fl, cll, sd->cl); 1622 int len, blen; 1623 caddr_t payload; 1624 1625 blen = hwb->size - fl->rx_offset; /* max possible in this buf */ 1626 len = min(remaining, blen); 1627 payload = sd->cl + cll->region1 + fl->rx_offset; 1628 if (fl->flags & FL_BUF_PACKING) { 1629 const u_int l = fr_offset + len; 1630 const u_int pad = roundup2(l, fl->buf_boundary) - l; 1631 1632 if (fl->rx_offset + len + pad < hwb->size) 1633 blen = len + pad; 1634 MPASS(fl->rx_offset + blen <= hwb->size); 1635 } else { 1636 MPASS(fl->rx_offset == 0); /* not packing */ 1637 } 1638 1639 1640 if (sc->sc_do_rxcopy && len < RX_COPY_THRESHOLD) { 1641 1642 /* 1643 * Copy payload into a freshly allocated mbuf. 1644 */ 1645 1646 m = fr_offset == 0 ? 1647 m_gethdr(M_NOWAIT, MT_DATA) : m_get(M_NOWAIT, MT_DATA); 1648 if (m == NULL) 1649 return (NULL); 1650 fl->mbuf_allocated++; 1651 #ifdef T4_PKT_TIMESTAMP 1652 /* Leave room for a timestamp */ 1653 m->m_data += 8; 1654 #endif 1655 /* copy data to mbuf */ 1656 bcopy(payload, mtod(m, caddr_t), len); 1657 1658 } else if (sd->nmbuf * MSIZE < cll->region1) { 1659 1660 /* 1661 * There's spare room in the cluster for an mbuf. Create one 1662 * and associate it with the payload that's in the cluster. 1663 */ 1664 1665 MPASS(clm != NULL); 1666 m = (struct mbuf *)(sd->cl + sd->nmbuf * MSIZE); 1667 /* No bzero required */ 1668 if (m_init(m, M_NOWAIT, MT_DATA, 1669 fr_offset == 0 ? M_PKTHDR | M_NOFREE : M_NOFREE)) 1670 return (NULL); 1671 fl->mbuf_inlined++; 1672 m_extaddref(m, payload, blen, &clm->refcount, rxb_free, 1673 swz->zone, sd->cl); 1674 if (sd->nmbuf++ == 0) 1675 counter_u64_add(extfree_refs, 1); 1676 1677 } else { 1678 1679 /* 1680 * Grab an mbuf from zone_mbuf and associate it with the 1681 * payload in the cluster. 1682 */ 1683 1684 m = fr_offset == 0 ? 1685 m_gethdr(M_NOWAIT, MT_DATA) : m_get(M_NOWAIT, MT_DATA); 1686 if (m == NULL) 1687 return (NULL); 1688 fl->mbuf_allocated++; 1689 if (clm != NULL) { 1690 m_extaddref(m, payload, blen, &clm->refcount, 1691 rxb_free, swz->zone, sd->cl); 1692 if (sd->nmbuf++ == 0) 1693 counter_u64_add(extfree_refs, 1); 1694 } else { 1695 m_cljset(m, sd->cl, swz->type); 1696 sd->cl = NULL; /* consumed, not a recycle candidate */ 1697 } 1698 } 1699 if (fr_offset == 0) 1700 m->m_pkthdr.len = remaining; 1701 m->m_len = len; 1702 1703 if (fl->flags & FL_BUF_PACKING) { 1704 fl->rx_offset += blen; 1705 MPASS(fl->rx_offset <= hwb->size); 1706 if (fl->rx_offset < hwb->size) 1707 return (m); /* without advancing the cidx */ 1708 } 1709 1710 if (__predict_false(++fl->cidx % 8 == 0)) { 1711 uint16_t cidx = fl->cidx / 8; 1712 1713 if (__predict_false(cidx == fl->sidx)) 1714 fl->cidx = cidx = 0; 1715 fl->hw_cidx = cidx; 1716 } 1717 fl->rx_offset = 0; 1718 1719 return (m); 1720 } 1721 1722 static struct mbuf * 1723 get_fl_payload(struct adapter *sc, struct sge_fl *fl, uint32_t len_newbuf) 1724 { 1725 struct mbuf *m0, *m, **pnext; 1726 u_int remaining; 1727 const u_int total = G_RSPD_LEN(len_newbuf); 1728 1729 if (__predict_false(fl->flags & FL_BUF_RESUME)) { 1730 M_ASSERTPKTHDR(fl->m0); 1731 MPASS(fl->m0->m_pkthdr.len == total); 1732 MPASS(fl->remaining < total); 1733 1734 m0 = fl->m0; 1735 pnext = fl->pnext; 1736 remaining = fl->remaining; 1737 fl->flags &= ~FL_BUF_RESUME; 1738 goto get_segment; 1739 } 1740 1741 if (fl->rx_offset > 0 && len_newbuf & F_RSPD_NEWBUF) { 1742 fl->rx_offset = 0; 1743 if (__predict_false(++fl->cidx % 8 == 0)) { 1744 uint16_t cidx = fl->cidx / 8; 1745 1746 if (__predict_false(cidx == fl->sidx)) 1747 fl->cidx = cidx = 0; 1748 fl->hw_cidx = cidx; 1749 } 1750 } 1751 1752 /* 1753 * Payload starts at rx_offset in the current hw buffer. Its length is 1754 * 'len' and it may span multiple hw buffers. 1755 */ 1756 1757 m0 = get_scatter_segment(sc, fl, 0, total); 1758 if (m0 == NULL) 1759 return (NULL); 1760 remaining = total - m0->m_len; 1761 pnext = &m0->m_next; 1762 while (remaining > 0) { 1763 get_segment: 1764 MPASS(fl->rx_offset == 0); 1765 m = get_scatter_segment(sc, fl, total - remaining, remaining); 1766 if (__predict_false(m == NULL)) { 1767 fl->m0 = m0; 1768 fl->pnext = pnext; 1769 fl->remaining = remaining; 1770 fl->flags |= FL_BUF_RESUME; 1771 return (NULL); 1772 } 1773 *pnext = m; 1774 pnext = &m->m_next; 1775 remaining -= m->m_len; 1776 } 1777 *pnext = NULL; 1778 1779 M_ASSERTPKTHDR(m0); 1780 return (m0); 1781 } 1782 1783 static int 1784 t4_eth_rx(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m0) 1785 { 1786 struct sge_rxq *rxq = iq_to_rxq(iq); 1787 struct ifnet *ifp = rxq->ifp; 1788 struct adapter *sc = iq->adapter; 1789 const struct cpl_rx_pkt *cpl = (const void *)(rss + 1); 1790 #if defined(INET) || defined(INET6) 1791 struct lro_ctrl *lro = &rxq->lro; 1792 #endif 1793 static const int sw_hashtype[4][2] = { 1794 {M_HASHTYPE_NONE, M_HASHTYPE_NONE}, 1795 {M_HASHTYPE_RSS_IPV4, M_HASHTYPE_RSS_IPV6}, 1796 {M_HASHTYPE_RSS_TCP_IPV4, M_HASHTYPE_RSS_TCP_IPV6}, 1797 {M_HASHTYPE_RSS_UDP_IPV4, M_HASHTYPE_RSS_UDP_IPV6}, 1798 }; 1799 1800 KASSERT(m0 != NULL, ("%s: no payload with opcode %02x", __func__, 1801 rss->opcode)); 1802 1803 m0->m_pkthdr.len -= sc->params.sge.fl_pktshift; 1804 m0->m_len -= sc->params.sge.fl_pktshift; 1805 m0->m_data += sc->params.sge.fl_pktshift; 1806 1807 m0->m_pkthdr.rcvif = ifp; 1808 M_HASHTYPE_SET(m0, sw_hashtype[rss->hash_type][rss->ipv6]); 1809 m0->m_pkthdr.flowid = be32toh(rss->hash_val); 1810 1811 if (cpl->csum_calc && !cpl->err_vec) { 1812 if (ifp->if_capenable & IFCAP_RXCSUM && 1813 cpl->l2info & htobe32(F_RXF_IP)) { 1814 m0->m_pkthdr.csum_flags = (CSUM_IP_CHECKED | 1815 CSUM_IP_VALID | CSUM_DATA_VALID | CSUM_PSEUDO_HDR); 1816 rxq->rxcsum++; 1817 } else if (ifp->if_capenable & IFCAP_RXCSUM_IPV6 && 1818 cpl->l2info & htobe32(F_RXF_IP6)) { 1819 m0->m_pkthdr.csum_flags = (CSUM_DATA_VALID_IPV6 | 1820 CSUM_PSEUDO_HDR); 1821 rxq->rxcsum++; 1822 } 1823 1824 if (__predict_false(cpl->ip_frag)) 1825 m0->m_pkthdr.csum_data = be16toh(cpl->csum); 1826 else 1827 m0->m_pkthdr.csum_data = 0xffff; 1828 } 1829 1830 if (cpl->vlan_ex) { 1831 m0->m_pkthdr.ether_vtag = be16toh(cpl->vlan); 1832 m0->m_flags |= M_VLANTAG; 1833 rxq->vlan_extraction++; 1834 } 1835 1836 #if defined(INET) || defined(INET6) 1837 if (iq->flags & IQ_LRO_ENABLED && 1838 tcp_lro_rx(lro, m0, 0) == 0) { 1839 /* queued for LRO */ 1840 } else 1841 #endif 1842 ifp->if_input(ifp, m0); 1843 1844 return (0); 1845 } 1846 1847 /* 1848 * Must drain the wrq or make sure that someone else will. 1849 */ 1850 static void 1851 wrq_tx_drain(void *arg, int n) 1852 { 1853 struct sge_wrq *wrq = arg; 1854 struct sge_eq *eq = &wrq->eq; 1855 1856 EQ_LOCK(eq); 1857 if (TAILQ_EMPTY(&wrq->incomplete_wrs) && !STAILQ_EMPTY(&wrq->wr_list)) 1858 drain_wrq_wr_list(wrq->adapter, wrq); 1859 EQ_UNLOCK(eq); 1860 } 1861 1862 static void 1863 drain_wrq_wr_list(struct adapter *sc, struct sge_wrq *wrq) 1864 { 1865 struct sge_eq *eq = &wrq->eq; 1866 u_int available, dbdiff; /* # of hardware descriptors */ 1867 u_int n; 1868 struct wrqe *wr; 1869 struct fw_eth_tx_pkt_wr *dst; /* any fw WR struct will do */ 1870 1871 EQ_LOCK_ASSERT_OWNED(eq); 1872 MPASS(TAILQ_EMPTY(&wrq->incomplete_wrs)); 1873 wr = STAILQ_FIRST(&wrq->wr_list); 1874 MPASS(wr != NULL); /* Must be called with something useful to do */ 1875 MPASS(eq->pidx == eq->dbidx); 1876 dbdiff = 0; 1877 1878 do { 1879 eq->cidx = read_hw_cidx(eq); 1880 if (eq->pidx == eq->cidx) 1881 available = eq->sidx - 1; 1882 else 1883 available = IDXDIFF(eq->cidx, eq->pidx, eq->sidx) - 1; 1884 1885 MPASS(wr->wrq == wrq); 1886 n = howmany(wr->wr_len, EQ_ESIZE); 1887 if (available < n) 1888 break; 1889 1890 dst = (void *)&eq->desc[eq->pidx]; 1891 if (__predict_true(eq->sidx - eq->pidx > n)) { 1892 /* Won't wrap, won't end exactly at the status page. */ 1893 bcopy(&wr->wr[0], dst, wr->wr_len); 1894 eq->pidx += n; 1895 } else { 1896 int first_portion = (eq->sidx - eq->pidx) * EQ_ESIZE; 1897 1898 bcopy(&wr->wr[0], dst, first_portion); 1899 if (wr->wr_len > first_portion) { 1900 bcopy(&wr->wr[first_portion], &eq->desc[0], 1901 wr->wr_len - first_portion); 1902 } 1903 eq->pidx = n - (eq->sidx - eq->pidx); 1904 } 1905 wrq->tx_wrs_copied++; 1906 1907 if (available < eq->sidx / 4 && 1908 atomic_cmpset_int(&eq->equiq, 0, 1)) { 1909 dst->equiq_to_len16 |= htobe32(F_FW_WR_EQUIQ | 1910 F_FW_WR_EQUEQ); 1911 eq->equeqidx = eq->pidx; 1912 } else if (IDXDIFF(eq->pidx, eq->equeqidx, eq->sidx) >= 32) { 1913 dst->equiq_to_len16 |= htobe32(F_FW_WR_EQUEQ); 1914 eq->equeqidx = eq->pidx; 1915 } 1916 1917 dbdiff += n; 1918 if (dbdiff >= 16) { 1919 ring_eq_db(sc, eq, dbdiff); 1920 dbdiff = 0; 1921 } 1922 1923 STAILQ_REMOVE_HEAD(&wrq->wr_list, link); 1924 free_wrqe(wr); 1925 MPASS(wrq->nwr_pending > 0); 1926 wrq->nwr_pending--; 1927 MPASS(wrq->ndesc_needed >= n); 1928 wrq->ndesc_needed -= n; 1929 } while ((wr = STAILQ_FIRST(&wrq->wr_list)) != NULL); 1930 1931 if (dbdiff) 1932 ring_eq_db(sc, eq, dbdiff); 1933 } 1934 1935 /* 1936 * Doesn't fail. Holds on to work requests it can't send right away. 1937 */ 1938 void 1939 t4_wrq_tx_locked(struct adapter *sc, struct sge_wrq *wrq, struct wrqe *wr) 1940 { 1941 #ifdef INVARIANTS 1942 struct sge_eq *eq = &wrq->eq; 1943 #endif 1944 1945 EQ_LOCK_ASSERT_OWNED(eq); 1946 MPASS(wr != NULL); 1947 MPASS(wr->wr_len > 0 && wr->wr_len <= SGE_MAX_WR_LEN); 1948 MPASS((wr->wr_len & 0x7) == 0); 1949 1950 STAILQ_INSERT_TAIL(&wrq->wr_list, wr, link); 1951 wrq->nwr_pending++; 1952 wrq->ndesc_needed += howmany(wr->wr_len, EQ_ESIZE); 1953 1954 if (!TAILQ_EMPTY(&wrq->incomplete_wrs)) 1955 return; /* commit_wrq_wr will drain wr_list as well. */ 1956 1957 drain_wrq_wr_list(sc, wrq); 1958 1959 /* Doorbell must have caught up to the pidx. */ 1960 MPASS(eq->pidx == eq->dbidx); 1961 } 1962 1963 void 1964 t4_update_fl_bufsize(struct ifnet *ifp) 1965 { 1966 struct vi_info *vi = ifp->if_softc; 1967 struct adapter *sc = vi->pi->adapter; 1968 struct sge_rxq *rxq; 1969 #ifdef TCP_OFFLOAD 1970 struct sge_ofld_rxq *ofld_rxq; 1971 #endif 1972 struct sge_fl *fl; 1973 int i, maxp, mtu = ifp->if_mtu; 1974 1975 maxp = mtu_to_max_payload(sc, mtu, 0); 1976 for_each_rxq(vi, i, rxq) { 1977 fl = &rxq->fl; 1978 1979 FL_LOCK(fl); 1980 find_best_refill_source(sc, fl, maxp); 1981 FL_UNLOCK(fl); 1982 } 1983 #ifdef TCP_OFFLOAD 1984 maxp = mtu_to_max_payload(sc, mtu, 1); 1985 for_each_ofld_rxq(vi, i, ofld_rxq) { 1986 fl = &ofld_rxq->fl; 1987 1988 FL_LOCK(fl); 1989 find_best_refill_source(sc, fl, maxp); 1990 FL_UNLOCK(fl); 1991 } 1992 #endif 1993 } 1994 1995 static inline int 1996 mbuf_nsegs(struct mbuf *m) 1997 { 1998 1999 M_ASSERTPKTHDR(m); 2000 KASSERT(m->m_pkthdr.l5hlen > 0, 2001 ("%s: mbuf %p missing information on # of segments.", __func__, m)); 2002 2003 return (m->m_pkthdr.l5hlen); 2004 } 2005 2006 static inline void 2007 set_mbuf_nsegs(struct mbuf *m, uint8_t nsegs) 2008 { 2009 2010 M_ASSERTPKTHDR(m); 2011 m->m_pkthdr.l5hlen = nsegs; 2012 } 2013 2014 static inline int 2015 mbuf_len16(struct mbuf *m) 2016 { 2017 int n; 2018 2019 M_ASSERTPKTHDR(m); 2020 n = m->m_pkthdr.PH_loc.eight[0]; 2021 MPASS(n > 0 && n <= SGE_MAX_WR_LEN / 16); 2022 2023 return (n); 2024 } 2025 2026 static inline void 2027 set_mbuf_len16(struct mbuf *m, uint8_t len16) 2028 { 2029 2030 M_ASSERTPKTHDR(m); 2031 m->m_pkthdr.PH_loc.eight[0] = len16; 2032 } 2033 2034 static inline int 2035 needs_tso(struct mbuf *m) 2036 { 2037 2038 M_ASSERTPKTHDR(m); 2039 2040 if (m->m_pkthdr.csum_flags & CSUM_TSO) { 2041 KASSERT(m->m_pkthdr.tso_segsz > 0, 2042 ("%s: TSO requested in mbuf %p but MSS not provided", 2043 __func__, m)); 2044 return (1); 2045 } 2046 2047 return (0); 2048 } 2049 2050 static inline int 2051 needs_l3_csum(struct mbuf *m) 2052 { 2053 2054 M_ASSERTPKTHDR(m); 2055 2056 if (m->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TSO)) 2057 return (1); 2058 return (0); 2059 } 2060 2061 static inline int 2062 needs_l4_csum(struct mbuf *m) 2063 { 2064 2065 M_ASSERTPKTHDR(m); 2066 2067 if (m->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP | CSUM_UDP_IPV6 | 2068 CSUM_TCP_IPV6 | CSUM_TSO)) 2069 return (1); 2070 return (0); 2071 } 2072 2073 static inline int 2074 needs_vlan_insertion(struct mbuf *m) 2075 { 2076 2077 M_ASSERTPKTHDR(m); 2078 2079 if (m->m_flags & M_VLANTAG) { 2080 KASSERT(m->m_pkthdr.ether_vtag != 0, 2081 ("%s: HWVLAN requested in mbuf %p but tag not provided", 2082 __func__, m)); 2083 return (1); 2084 } 2085 return (0); 2086 } 2087 2088 static void * 2089 m_advance(struct mbuf **pm, int *poffset, int len) 2090 { 2091 struct mbuf *m = *pm; 2092 int offset = *poffset; 2093 uintptr_t p = 0; 2094 2095 MPASS(len > 0); 2096 2097 for (;;) { 2098 if (offset + len < m->m_len) { 2099 offset += len; 2100 p = mtod(m, uintptr_t) + offset; 2101 break; 2102 } 2103 len -= m->m_len - offset; 2104 m = m->m_next; 2105 offset = 0; 2106 MPASS(m != NULL); 2107 } 2108 *poffset = offset; 2109 *pm = m; 2110 return ((void *)p); 2111 } 2112 2113 static inline int 2114 same_paddr(char *a, char *b) 2115 { 2116 2117 if (a == b) 2118 return (1); 2119 else if (a != NULL && b != NULL) { 2120 vm_offset_t x = (vm_offset_t)a; 2121 vm_offset_t y = (vm_offset_t)b; 2122 2123 if ((x & PAGE_MASK) == (y & PAGE_MASK) && 2124 pmap_kextract(x) == pmap_kextract(y)) 2125 return (1); 2126 } 2127 2128 return (0); 2129 } 2130 2131 /* 2132 * Can deal with empty mbufs in the chain that have m_len = 0, but the chain 2133 * must have at least one mbuf that's not empty. 2134 */ 2135 static inline int 2136 count_mbuf_nsegs(struct mbuf *m) 2137 { 2138 char *prev_end, *start; 2139 int len, nsegs; 2140 2141 MPASS(m != NULL); 2142 2143 nsegs = 0; 2144 prev_end = NULL; 2145 for (; m; m = m->m_next) { 2146 2147 len = m->m_len; 2148 if (__predict_false(len == 0)) 2149 continue; 2150 start = mtod(m, char *); 2151 2152 nsegs += sglist_count(start, len); 2153 if (same_paddr(prev_end, start)) 2154 nsegs--; 2155 prev_end = start + len; 2156 } 2157 2158 MPASS(nsegs > 0); 2159 return (nsegs); 2160 } 2161 2162 /* 2163 * Analyze the mbuf to determine its tx needs. The mbuf passed in may change: 2164 * a) caller can assume it's been freed if this function returns with an error. 2165 * b) it may get defragged up if the gather list is too long for the hardware. 2166 */ 2167 int 2168 parse_pkt(struct adapter *sc, struct mbuf **mp) 2169 { 2170 struct mbuf *m0 = *mp, *m; 2171 int rc, nsegs, defragged = 0, offset; 2172 struct ether_header *eh; 2173 void *l3hdr; 2174 #if defined(INET) || defined(INET6) 2175 struct tcphdr *tcp; 2176 #endif 2177 uint16_t eh_type; 2178 2179 M_ASSERTPKTHDR(m0); 2180 if (__predict_false(m0->m_pkthdr.len < ETHER_HDR_LEN)) { 2181 rc = EINVAL; 2182 fail: 2183 m_freem(m0); 2184 *mp = NULL; 2185 return (rc); 2186 } 2187 restart: 2188 /* 2189 * First count the number of gather list segments in the payload. 2190 * Defrag the mbuf if nsegs exceeds the hardware limit. 2191 */ 2192 M_ASSERTPKTHDR(m0); 2193 MPASS(m0->m_pkthdr.len > 0); 2194 nsegs = count_mbuf_nsegs(m0); 2195 if (nsegs > (needs_tso(m0) ? TX_SGL_SEGS_TSO : TX_SGL_SEGS)) { 2196 if (defragged++ > 0 || (m = m_defrag(m0, M_NOWAIT)) == NULL) { 2197 rc = EFBIG; 2198 goto fail; 2199 } 2200 *mp = m0 = m; /* update caller's copy after defrag */ 2201 goto restart; 2202 } 2203 2204 if (__predict_false(nsegs > 2 && m0->m_pkthdr.len <= MHLEN)) { 2205 m0 = m_pullup(m0, m0->m_pkthdr.len); 2206 if (m0 == NULL) { 2207 /* Should have left well enough alone. */ 2208 rc = EFBIG; 2209 goto fail; 2210 } 2211 *mp = m0; /* update caller's copy after pullup */ 2212 goto restart; 2213 } 2214 set_mbuf_nsegs(m0, nsegs); 2215 if (sc->flags & IS_VF) 2216 set_mbuf_len16(m0, txpkt_vm_len16(nsegs, needs_tso(m0))); 2217 else 2218 set_mbuf_len16(m0, txpkt_len16(nsegs, needs_tso(m0))); 2219 2220 if (!needs_tso(m0) && 2221 !(sc->flags & IS_VF && (needs_l3_csum(m0) || needs_l4_csum(m0)))) 2222 return (0); 2223 2224 m = m0; 2225 eh = mtod(m, struct ether_header *); 2226 eh_type = ntohs(eh->ether_type); 2227 if (eh_type == ETHERTYPE_VLAN) { 2228 struct ether_vlan_header *evh = (void *)eh; 2229 2230 eh_type = ntohs(evh->evl_proto); 2231 m0->m_pkthdr.l2hlen = sizeof(*evh); 2232 } else 2233 m0->m_pkthdr.l2hlen = sizeof(*eh); 2234 2235 offset = 0; 2236 l3hdr = m_advance(&m, &offset, m0->m_pkthdr.l2hlen); 2237 2238 switch (eh_type) { 2239 #ifdef INET6 2240 case ETHERTYPE_IPV6: 2241 { 2242 struct ip6_hdr *ip6 = l3hdr; 2243 2244 MPASS(!needs_tso(m0) || ip6->ip6_nxt == IPPROTO_TCP); 2245 2246 m0->m_pkthdr.l3hlen = sizeof(*ip6); 2247 break; 2248 } 2249 #endif 2250 #ifdef INET 2251 case ETHERTYPE_IP: 2252 { 2253 struct ip *ip = l3hdr; 2254 2255 m0->m_pkthdr.l3hlen = ip->ip_hl * 4; 2256 break; 2257 } 2258 #endif 2259 default: 2260 panic("%s: ethertype 0x%04x unknown. if_cxgbe must be compiled" 2261 " with the same INET/INET6 options as the kernel.", 2262 __func__, eh_type); 2263 } 2264 2265 #if defined(INET) || defined(INET6) 2266 if (needs_tso(m0)) { 2267 tcp = m_advance(&m, &offset, m0->m_pkthdr.l3hlen); 2268 m0->m_pkthdr.l4hlen = tcp->th_off * 4; 2269 } 2270 #endif 2271 MPASS(m0 == *mp); 2272 return (0); 2273 } 2274 2275 void * 2276 start_wrq_wr(struct sge_wrq *wrq, int len16, struct wrq_cookie *cookie) 2277 { 2278 struct sge_eq *eq = &wrq->eq; 2279 struct adapter *sc = wrq->adapter; 2280 int ndesc, available; 2281 struct wrqe *wr; 2282 void *w; 2283 2284 MPASS(len16 > 0); 2285 ndesc = howmany(len16, EQ_ESIZE / 16); 2286 MPASS(ndesc > 0 && ndesc <= SGE_MAX_WR_NDESC); 2287 2288 EQ_LOCK(eq); 2289 2290 if (!STAILQ_EMPTY(&wrq->wr_list)) 2291 drain_wrq_wr_list(sc, wrq); 2292 2293 if (!STAILQ_EMPTY(&wrq->wr_list)) { 2294 slowpath: 2295 EQ_UNLOCK(eq); 2296 wr = alloc_wrqe(len16 * 16, wrq); 2297 if (__predict_false(wr == NULL)) 2298 return (NULL); 2299 cookie->pidx = -1; 2300 cookie->ndesc = ndesc; 2301 return (&wr->wr); 2302 } 2303 2304 eq->cidx = read_hw_cidx(eq); 2305 if (eq->pidx == eq->cidx) 2306 available = eq->sidx - 1; 2307 else 2308 available = IDXDIFF(eq->cidx, eq->pidx, eq->sidx) - 1; 2309 if (available < ndesc) 2310 goto slowpath; 2311 2312 cookie->pidx = eq->pidx; 2313 cookie->ndesc = ndesc; 2314 TAILQ_INSERT_TAIL(&wrq->incomplete_wrs, cookie, link); 2315 2316 w = &eq->desc[eq->pidx]; 2317 IDXINCR(eq->pidx, ndesc, eq->sidx); 2318 if (__predict_false(eq->pidx < ndesc - 1)) { 2319 w = &wrq->ss[0]; 2320 wrq->ss_pidx = cookie->pidx; 2321 wrq->ss_len = len16 * 16; 2322 } 2323 2324 EQ_UNLOCK(eq); 2325 2326 return (w); 2327 } 2328 2329 void 2330 commit_wrq_wr(struct sge_wrq *wrq, void *w, struct wrq_cookie *cookie) 2331 { 2332 struct sge_eq *eq = &wrq->eq; 2333 struct adapter *sc = wrq->adapter; 2334 int ndesc, pidx; 2335 struct wrq_cookie *prev, *next; 2336 2337 if (cookie->pidx == -1) { 2338 struct wrqe *wr = __containerof(w, struct wrqe, wr); 2339 2340 t4_wrq_tx(sc, wr); 2341 return; 2342 } 2343 2344 ndesc = cookie->ndesc; /* Can be more than SGE_MAX_WR_NDESC here. */ 2345 pidx = cookie->pidx; 2346 MPASS(pidx >= 0 && pidx < eq->sidx); 2347 if (__predict_false(w == &wrq->ss[0])) { 2348 int n = (eq->sidx - wrq->ss_pidx) * EQ_ESIZE; 2349 2350 MPASS(wrq->ss_len > n); /* WR had better wrap around. */ 2351 bcopy(&wrq->ss[0], &eq->desc[wrq->ss_pidx], n); 2352 bcopy(&wrq->ss[n], &eq->desc[0], wrq->ss_len - n); 2353 wrq->tx_wrs_ss++; 2354 } else 2355 wrq->tx_wrs_direct++; 2356 2357 EQ_LOCK(eq); 2358 prev = TAILQ_PREV(cookie, wrq_incomplete_wrs, link); 2359 next = TAILQ_NEXT(cookie, link); 2360 if (prev == NULL) { 2361 MPASS(pidx == eq->dbidx); 2362 if (next == NULL || ndesc >= 16) 2363 ring_eq_db(wrq->adapter, eq, ndesc); 2364 else { 2365 MPASS(IDXDIFF(next->pidx, pidx, eq->sidx) == ndesc); 2366 next->pidx = pidx; 2367 next->ndesc += ndesc; 2368 } 2369 } else { 2370 MPASS(IDXDIFF(pidx, prev->pidx, eq->sidx) == prev->ndesc); 2371 prev->ndesc += ndesc; 2372 } 2373 TAILQ_REMOVE(&wrq->incomplete_wrs, cookie, link); 2374 2375 if (TAILQ_EMPTY(&wrq->incomplete_wrs) && !STAILQ_EMPTY(&wrq->wr_list)) 2376 drain_wrq_wr_list(sc, wrq); 2377 2378 #ifdef INVARIANTS 2379 if (TAILQ_EMPTY(&wrq->incomplete_wrs)) { 2380 /* Doorbell must have caught up to the pidx. */ 2381 MPASS(wrq->eq.pidx == wrq->eq.dbidx); 2382 } 2383 #endif 2384 EQ_UNLOCK(eq); 2385 } 2386 2387 static u_int 2388 can_resume_eth_tx(struct mp_ring *r) 2389 { 2390 struct sge_eq *eq = r->cookie; 2391 2392 return (total_available_tx_desc(eq) > eq->sidx / 8); 2393 } 2394 2395 static inline int 2396 cannot_use_txpkts(struct mbuf *m) 2397 { 2398 /* maybe put a GL limit too, to avoid silliness? */ 2399 2400 return (needs_tso(m)); 2401 } 2402 2403 /* 2404 * r->items[cidx] to r->items[pidx], with a wraparound at r->size, are ready to 2405 * be consumed. Return the actual number consumed. 0 indicates a stall. 2406 */ 2407 static u_int 2408 eth_tx(struct mp_ring *r, u_int cidx, u_int pidx) 2409 { 2410 struct sge_txq *txq = r->cookie; 2411 struct sge_eq *eq = &txq->eq; 2412 struct ifnet *ifp = txq->ifp; 2413 struct vi_info *vi = ifp->if_softc; 2414 struct port_info *pi = vi->pi; 2415 struct adapter *sc = pi->adapter; 2416 u_int total, remaining; /* # of packets */ 2417 u_int available, dbdiff; /* # of hardware descriptors */ 2418 u_int n, next_cidx; 2419 struct mbuf *m0, *tail; 2420 struct txpkts txp; 2421 struct fw_eth_tx_pkts_wr *wr; /* any fw WR struct will do */ 2422 2423 remaining = IDXDIFF(pidx, cidx, r->size); 2424 MPASS(remaining > 0); /* Must not be called without work to do. */ 2425 total = 0; 2426 2427 TXQ_LOCK(txq); 2428 if (__predict_false((eq->flags & EQ_ENABLED) == 0)) { 2429 while (cidx != pidx) { 2430 m0 = r->items[cidx]; 2431 m_freem(m0); 2432 if (++cidx == r->size) 2433 cidx = 0; 2434 } 2435 reclaim_tx_descs(txq, 2048); 2436 total = remaining; 2437 goto done; 2438 } 2439 2440 /* How many hardware descriptors do we have readily available. */ 2441 if (eq->pidx == eq->cidx) 2442 available = eq->sidx - 1; 2443 else 2444 available = IDXDIFF(eq->cidx, eq->pidx, eq->sidx) - 1; 2445 dbdiff = IDXDIFF(eq->pidx, eq->dbidx, eq->sidx); 2446 2447 while (remaining > 0) { 2448 2449 m0 = r->items[cidx]; 2450 M_ASSERTPKTHDR(m0); 2451 MPASS(m0->m_nextpkt == NULL); 2452 2453 if (available < SGE_MAX_WR_NDESC) { 2454 available += reclaim_tx_descs(txq, 64); 2455 if (available < howmany(mbuf_len16(m0), EQ_ESIZE / 16)) 2456 break; /* out of descriptors */ 2457 } 2458 2459 next_cidx = cidx + 1; 2460 if (__predict_false(next_cidx == r->size)) 2461 next_cidx = 0; 2462 2463 wr = (void *)&eq->desc[eq->pidx]; 2464 if (sc->flags & IS_VF) { 2465 total++; 2466 remaining--; 2467 ETHER_BPF_MTAP(ifp, m0); 2468 n = write_txpkt_vm_wr(sc, txq, (void *)wr, m0, 2469 available); 2470 } else if (remaining > 1 && 2471 try_txpkts(m0, r->items[next_cidx], &txp, available) == 0) { 2472 2473 /* pkts at cidx, next_cidx should both be in txp. */ 2474 MPASS(txp.npkt == 2); 2475 tail = r->items[next_cidx]; 2476 MPASS(tail->m_nextpkt == NULL); 2477 ETHER_BPF_MTAP(ifp, m0); 2478 ETHER_BPF_MTAP(ifp, tail); 2479 m0->m_nextpkt = tail; 2480 2481 if (__predict_false(++next_cidx == r->size)) 2482 next_cidx = 0; 2483 2484 while (next_cidx != pidx) { 2485 if (add_to_txpkts(r->items[next_cidx], &txp, 2486 available) != 0) 2487 break; 2488 tail->m_nextpkt = r->items[next_cidx]; 2489 tail = tail->m_nextpkt; 2490 ETHER_BPF_MTAP(ifp, tail); 2491 if (__predict_false(++next_cidx == r->size)) 2492 next_cidx = 0; 2493 } 2494 2495 n = write_txpkts_wr(txq, wr, m0, &txp, available); 2496 total += txp.npkt; 2497 remaining -= txp.npkt; 2498 } else { 2499 total++; 2500 remaining--; 2501 ETHER_BPF_MTAP(ifp, m0); 2502 n = write_txpkt_wr(txq, (void *)wr, m0, available); 2503 } 2504 MPASS(n >= 1 && n <= available && n <= SGE_MAX_WR_NDESC); 2505 2506 available -= n; 2507 dbdiff += n; 2508 IDXINCR(eq->pidx, n, eq->sidx); 2509 2510 if (total_available_tx_desc(eq) < eq->sidx / 4 && 2511 atomic_cmpset_int(&eq->equiq, 0, 1)) { 2512 wr->equiq_to_len16 |= htobe32(F_FW_WR_EQUIQ | 2513 F_FW_WR_EQUEQ); 2514 eq->equeqidx = eq->pidx; 2515 } else if (IDXDIFF(eq->pidx, eq->equeqidx, eq->sidx) >= 32) { 2516 wr->equiq_to_len16 |= htobe32(F_FW_WR_EQUEQ); 2517 eq->equeqidx = eq->pidx; 2518 } 2519 2520 if (dbdiff >= 16 && remaining >= 4) { 2521 ring_eq_db(sc, eq, dbdiff); 2522 available += reclaim_tx_descs(txq, 4 * dbdiff); 2523 dbdiff = 0; 2524 } 2525 2526 cidx = next_cidx; 2527 } 2528 if (dbdiff != 0) { 2529 ring_eq_db(sc, eq, dbdiff); 2530 reclaim_tx_descs(txq, 32); 2531 } 2532 done: 2533 TXQ_UNLOCK(txq); 2534 2535 return (total); 2536 } 2537 2538 static inline void 2539 init_iq(struct sge_iq *iq, struct adapter *sc, int tmr_idx, int pktc_idx, 2540 int qsize) 2541 { 2542 2543 KASSERT(tmr_idx >= 0 && tmr_idx < SGE_NTIMERS, 2544 ("%s: bad tmr_idx %d", __func__, tmr_idx)); 2545 KASSERT(pktc_idx < SGE_NCOUNTERS, /* -ve is ok, means don't use */ 2546 ("%s: bad pktc_idx %d", __func__, pktc_idx)); 2547 2548 iq->flags = 0; 2549 iq->adapter = sc; 2550 iq->intr_params = V_QINTR_TIMER_IDX(tmr_idx); 2551 iq->intr_pktc_idx = SGE_NCOUNTERS - 1; 2552 if (pktc_idx >= 0) { 2553 iq->intr_params |= F_QINTR_CNT_EN; 2554 iq->intr_pktc_idx = pktc_idx; 2555 } 2556 iq->qsize = roundup2(qsize, 16); /* See FW_IQ_CMD/iqsize */ 2557 iq->sidx = iq->qsize - sc->params.sge.spg_len / IQ_ESIZE; 2558 } 2559 2560 static inline void 2561 init_fl(struct adapter *sc, struct sge_fl *fl, int qsize, int maxp, char *name) 2562 { 2563 2564 fl->qsize = qsize; 2565 fl->sidx = qsize - sc->params.sge.spg_len / EQ_ESIZE; 2566 strlcpy(fl->lockname, name, sizeof(fl->lockname)); 2567 if (sc->flags & BUF_PACKING_OK && 2568 ((!is_t4(sc) && buffer_packing) || /* T5+: enabled unless 0 */ 2569 (is_t4(sc) && buffer_packing == 1)))/* T4: disabled unless 1 */ 2570 fl->flags |= FL_BUF_PACKING; 2571 find_best_refill_source(sc, fl, maxp); 2572 find_safe_refill_source(sc, fl); 2573 } 2574 2575 static inline void 2576 init_eq(struct adapter *sc, struct sge_eq *eq, int eqtype, int qsize, 2577 uint8_t tx_chan, uint16_t iqid, char *name) 2578 { 2579 KASSERT(eqtype <= EQ_TYPEMASK, ("%s: bad qtype %d", __func__, eqtype)); 2580 2581 eq->flags = eqtype & EQ_TYPEMASK; 2582 eq->tx_chan = tx_chan; 2583 eq->iqid = iqid; 2584 eq->sidx = qsize - sc->params.sge.spg_len / EQ_ESIZE; 2585 strlcpy(eq->lockname, name, sizeof(eq->lockname)); 2586 } 2587 2588 static int 2589 alloc_ring(struct adapter *sc, size_t len, bus_dma_tag_t *tag, 2590 bus_dmamap_t *map, bus_addr_t *pa, void **va) 2591 { 2592 int rc; 2593 2594 rc = bus_dma_tag_create(sc->dmat, 512, 0, BUS_SPACE_MAXADDR, 2595 BUS_SPACE_MAXADDR, NULL, NULL, len, 1, len, 0, NULL, NULL, tag); 2596 if (rc != 0) { 2597 device_printf(sc->dev, "cannot allocate DMA tag: %d\n", rc); 2598 goto done; 2599 } 2600 2601 rc = bus_dmamem_alloc(*tag, va, 2602 BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_ZERO, map); 2603 if (rc != 0) { 2604 device_printf(sc->dev, "cannot allocate DMA memory: %d\n", rc); 2605 goto done; 2606 } 2607 2608 rc = bus_dmamap_load(*tag, *map, *va, len, oneseg_dma_callback, pa, 0); 2609 if (rc != 0) { 2610 device_printf(sc->dev, "cannot load DMA map: %d\n", rc); 2611 goto done; 2612 } 2613 done: 2614 if (rc) 2615 free_ring(sc, *tag, *map, *pa, *va); 2616 2617 return (rc); 2618 } 2619 2620 static int 2621 free_ring(struct adapter *sc, bus_dma_tag_t tag, bus_dmamap_t map, 2622 bus_addr_t pa, void *va) 2623 { 2624 if (pa) 2625 bus_dmamap_unload(tag, map); 2626 if (va) 2627 bus_dmamem_free(tag, va, map); 2628 if (tag) 2629 bus_dma_tag_destroy(tag); 2630 2631 return (0); 2632 } 2633 2634 /* 2635 * Allocates the ring for an ingress queue and an optional freelist. If the 2636 * freelist is specified it will be allocated and then associated with the 2637 * ingress queue. 2638 * 2639 * Returns errno on failure. Resources allocated up to that point may still be 2640 * allocated. Caller is responsible for cleanup in case this function fails. 2641 * 2642 * If the ingress queue will take interrupts directly (iq->flags & IQ_INTR) then 2643 * the intr_idx specifies the vector, starting from 0. Otherwise it specifies 2644 * the abs_id of the ingress queue to which its interrupts should be forwarded. 2645 */ 2646 static int 2647 alloc_iq_fl(struct vi_info *vi, struct sge_iq *iq, struct sge_fl *fl, 2648 int intr_idx, int cong) 2649 { 2650 int rc, i, cntxt_id; 2651 size_t len; 2652 struct fw_iq_cmd c; 2653 struct port_info *pi = vi->pi; 2654 struct adapter *sc = iq->adapter; 2655 struct sge_params *sp = &sc->params.sge; 2656 __be32 v = 0; 2657 2658 len = iq->qsize * IQ_ESIZE; 2659 rc = alloc_ring(sc, len, &iq->desc_tag, &iq->desc_map, &iq->ba, 2660 (void **)&iq->desc); 2661 if (rc != 0) 2662 return (rc); 2663 2664 bzero(&c, sizeof(c)); 2665 c.op_to_vfn = htobe32(V_FW_CMD_OP(FW_IQ_CMD) | F_FW_CMD_REQUEST | 2666 F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_IQ_CMD_PFN(sc->pf) | 2667 V_FW_IQ_CMD_VFN(0)); 2668 2669 c.alloc_to_len16 = htobe32(F_FW_IQ_CMD_ALLOC | F_FW_IQ_CMD_IQSTART | 2670 FW_LEN16(c)); 2671 2672 /* Special handling for firmware event queue */ 2673 if (iq == &sc->sge.fwq) 2674 v |= F_FW_IQ_CMD_IQASYNCH; 2675 2676 if (iq->flags & IQ_INTR) { 2677 KASSERT(intr_idx < sc->intr_count, 2678 ("%s: invalid direct intr_idx %d", __func__, intr_idx)); 2679 } else 2680 v |= F_FW_IQ_CMD_IQANDST; 2681 v |= V_FW_IQ_CMD_IQANDSTINDEX(intr_idx); 2682 2683 c.type_to_iqandstindex = htobe32(v | 2684 V_FW_IQ_CMD_TYPE(FW_IQ_TYPE_FL_INT_CAP) | 2685 V_FW_IQ_CMD_VIID(vi->viid) | 2686 V_FW_IQ_CMD_IQANUD(X_UPDATEDELIVERY_INTERRUPT)); 2687 c.iqdroprss_to_iqesize = htobe16(V_FW_IQ_CMD_IQPCIECH(pi->tx_chan) | 2688 F_FW_IQ_CMD_IQGTSMODE | 2689 V_FW_IQ_CMD_IQINTCNTTHRESH(iq->intr_pktc_idx) | 2690 V_FW_IQ_CMD_IQESIZE(ilog2(IQ_ESIZE) - 4)); 2691 c.iqsize = htobe16(iq->qsize); 2692 c.iqaddr = htobe64(iq->ba); 2693 if (cong >= 0) 2694 c.iqns_to_fl0congen = htobe32(F_FW_IQ_CMD_IQFLINTCONGEN); 2695 2696 if (fl) { 2697 mtx_init(&fl->fl_lock, fl->lockname, NULL, MTX_DEF); 2698 2699 len = fl->qsize * EQ_ESIZE; 2700 rc = alloc_ring(sc, len, &fl->desc_tag, &fl->desc_map, 2701 &fl->ba, (void **)&fl->desc); 2702 if (rc) 2703 return (rc); 2704 2705 /* Allocate space for one software descriptor per buffer. */ 2706 rc = alloc_fl_sdesc(fl); 2707 if (rc != 0) { 2708 device_printf(sc->dev, 2709 "failed to setup fl software descriptors: %d\n", 2710 rc); 2711 return (rc); 2712 } 2713 2714 if (fl->flags & FL_BUF_PACKING) { 2715 fl->lowat = roundup2(sp->fl_starve_threshold2, 8); 2716 fl->buf_boundary = sp->pack_boundary; 2717 } else { 2718 fl->lowat = roundup2(sp->fl_starve_threshold, 8); 2719 fl->buf_boundary = 16; 2720 } 2721 if (fl_pad && fl->buf_boundary < sp->pad_boundary) 2722 fl->buf_boundary = sp->pad_boundary; 2723 2724 c.iqns_to_fl0congen |= 2725 htobe32(V_FW_IQ_CMD_FL0HOSTFCMODE(X_HOSTFCMODE_NONE) | 2726 F_FW_IQ_CMD_FL0FETCHRO | F_FW_IQ_CMD_FL0DATARO | 2727 (fl_pad ? F_FW_IQ_CMD_FL0PADEN : 0) | 2728 (fl->flags & FL_BUF_PACKING ? F_FW_IQ_CMD_FL0PACKEN : 2729 0)); 2730 if (cong >= 0) { 2731 c.iqns_to_fl0congen |= 2732 htobe32(V_FW_IQ_CMD_FL0CNGCHMAP(cong) | 2733 F_FW_IQ_CMD_FL0CONGCIF | 2734 F_FW_IQ_CMD_FL0CONGEN); 2735 } 2736 c.fl0dcaen_to_fl0cidxfthresh = 2737 htobe16(V_FW_IQ_CMD_FL0FBMIN(chip_id(sc) <= CHELSIO_T5 ? 2738 X_FETCHBURSTMIN_128B : X_FETCHBURSTMIN_64B) | 2739 V_FW_IQ_CMD_FL0FBMAX(chip_id(sc) <= CHELSIO_T5 ? 2740 X_FETCHBURSTMAX_512B : X_FETCHBURSTMAX_256B)); 2741 c.fl0size = htobe16(fl->qsize); 2742 c.fl0addr = htobe64(fl->ba); 2743 } 2744 2745 rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c); 2746 if (rc != 0) { 2747 device_printf(sc->dev, 2748 "failed to create ingress queue: %d\n", rc); 2749 return (rc); 2750 } 2751 2752 iq->cidx = 0; 2753 iq->gen = F_RSPD_GEN; 2754 iq->intr_next = iq->intr_params; 2755 iq->cntxt_id = be16toh(c.iqid); 2756 iq->abs_id = be16toh(c.physiqid); 2757 iq->flags |= IQ_ALLOCATED; 2758 2759 cntxt_id = iq->cntxt_id - sc->sge.iq_start; 2760 if (cntxt_id >= sc->sge.niq) { 2761 panic ("%s: iq->cntxt_id (%d) more than the max (%d)", __func__, 2762 cntxt_id, sc->sge.niq - 1); 2763 } 2764 sc->sge.iqmap[cntxt_id] = iq; 2765 2766 if (fl) { 2767 u_int qid; 2768 2769 iq->flags |= IQ_HAS_FL; 2770 fl->cntxt_id = be16toh(c.fl0id); 2771 fl->pidx = fl->cidx = 0; 2772 2773 cntxt_id = fl->cntxt_id - sc->sge.eq_start; 2774 if (cntxt_id >= sc->sge.neq) { 2775 panic("%s: fl->cntxt_id (%d) more than the max (%d)", 2776 __func__, cntxt_id, sc->sge.neq - 1); 2777 } 2778 sc->sge.eqmap[cntxt_id] = (void *)fl; 2779 2780 qid = fl->cntxt_id; 2781 if (isset(&sc->doorbells, DOORBELL_UDB)) { 2782 uint32_t s_qpp = sc->params.sge.eq_s_qpp; 2783 uint32_t mask = (1 << s_qpp) - 1; 2784 volatile uint8_t *udb; 2785 2786 udb = sc->udbs_base + UDBS_DB_OFFSET; 2787 udb += (qid >> s_qpp) << PAGE_SHIFT; 2788 qid &= mask; 2789 if (qid < PAGE_SIZE / UDBS_SEG_SIZE) { 2790 udb += qid << UDBS_SEG_SHIFT; 2791 qid = 0; 2792 } 2793 fl->udb = (volatile void *)udb; 2794 } 2795 fl->dbval = V_QID(qid) | sc->chip_params->sge_fl_db; 2796 2797 FL_LOCK(fl); 2798 /* Enough to make sure the SGE doesn't think it's starved */ 2799 refill_fl(sc, fl, fl->lowat); 2800 FL_UNLOCK(fl); 2801 } 2802 2803 if (chip_id(sc) >= CHELSIO_T5 && !(sc->flags & IS_VF) && cong >= 0) { 2804 uint32_t param, val; 2805 2806 param = V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) | 2807 V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DMAQ_CONM_CTXT) | 2808 V_FW_PARAMS_PARAM_YZ(iq->cntxt_id); 2809 if (cong == 0) 2810 val = 1 << 19; 2811 else { 2812 val = 2 << 19; 2813 for (i = 0; i < 4; i++) { 2814 if (cong & (1 << i)) 2815 val |= 1 << (i << 2); 2816 } 2817 } 2818 2819 rc = -t4_set_params(sc, sc->mbox, sc->pf, 0, 1, ¶m, &val); 2820 if (rc != 0) { 2821 /* report error but carry on */ 2822 device_printf(sc->dev, 2823 "failed to set congestion manager context for " 2824 "ingress queue %d: %d\n", iq->cntxt_id, rc); 2825 } 2826 } 2827 2828 /* Enable IQ interrupts */ 2829 atomic_store_rel_int(&iq->state, IQS_IDLE); 2830 t4_write_reg(sc, sc->sge_gts_reg, V_SEINTARM(iq->intr_params) | 2831 V_INGRESSQID(iq->cntxt_id)); 2832 2833 return (0); 2834 } 2835 2836 static int 2837 free_iq_fl(struct vi_info *vi, struct sge_iq *iq, struct sge_fl *fl) 2838 { 2839 int rc; 2840 struct adapter *sc = iq->adapter; 2841 device_t dev; 2842 2843 if (sc == NULL) 2844 return (0); /* nothing to do */ 2845 2846 dev = vi ? vi->dev : sc->dev; 2847 2848 if (iq->flags & IQ_ALLOCATED) { 2849 rc = -t4_iq_free(sc, sc->mbox, sc->pf, 0, 2850 FW_IQ_TYPE_FL_INT_CAP, iq->cntxt_id, 2851 fl ? fl->cntxt_id : 0xffff, 0xffff); 2852 if (rc != 0) { 2853 device_printf(dev, 2854 "failed to free queue %p: %d\n", iq, rc); 2855 return (rc); 2856 } 2857 iq->flags &= ~IQ_ALLOCATED; 2858 } 2859 2860 free_ring(sc, iq->desc_tag, iq->desc_map, iq->ba, iq->desc); 2861 2862 bzero(iq, sizeof(*iq)); 2863 2864 if (fl) { 2865 free_ring(sc, fl->desc_tag, fl->desc_map, fl->ba, 2866 fl->desc); 2867 2868 if (fl->sdesc) 2869 free_fl_sdesc(sc, fl); 2870 2871 if (mtx_initialized(&fl->fl_lock)) 2872 mtx_destroy(&fl->fl_lock); 2873 2874 bzero(fl, sizeof(*fl)); 2875 } 2876 2877 return (0); 2878 } 2879 2880 static void 2881 add_fl_sysctls(struct adapter *sc, struct sysctl_ctx_list *ctx, 2882 struct sysctl_oid *oid, struct sge_fl *fl) 2883 { 2884 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 2885 2886 oid = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, "fl", CTLFLAG_RD, NULL, 2887 "freelist"); 2888 children = SYSCTL_CHILDREN(oid); 2889 2890 SYSCTL_ADD_UAUTO(ctx, children, OID_AUTO, "ba", CTLFLAG_RD, 2891 &fl->ba, "bus address of descriptor ring"); 2892 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL, 2893 fl->sidx * EQ_ESIZE + sc->params.sge.spg_len, 2894 "desc ring size in bytes"); 2895 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cntxt_id", 2896 CTLTYPE_INT | CTLFLAG_RD, &fl->cntxt_id, 0, sysctl_uint16, "I", 2897 "SGE context id of the freelist"); 2898 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "padding", CTLFLAG_RD, NULL, 2899 fl_pad ? 1 : 0, "padding enabled"); 2900 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "packing", CTLFLAG_RD, NULL, 2901 fl->flags & FL_BUF_PACKING ? 1 : 0, "packing enabled"); 2902 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "cidx", CTLFLAG_RD, &fl->cidx, 2903 0, "consumer index"); 2904 if (fl->flags & FL_BUF_PACKING) { 2905 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "rx_offset", 2906 CTLFLAG_RD, &fl->rx_offset, 0, "packing rx offset"); 2907 } 2908 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "pidx", CTLFLAG_RD, &fl->pidx, 2909 0, "producer index"); 2910 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "mbuf_allocated", 2911 CTLFLAG_RD, &fl->mbuf_allocated, "# of mbuf allocated"); 2912 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "mbuf_inlined", 2913 CTLFLAG_RD, &fl->mbuf_inlined, "# of mbuf inlined in clusters"); 2914 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "cluster_allocated", 2915 CTLFLAG_RD, &fl->cl_allocated, "# of clusters allocated"); 2916 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "cluster_recycled", 2917 CTLFLAG_RD, &fl->cl_recycled, "# of clusters recycled"); 2918 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "cluster_fast_recycled", 2919 CTLFLAG_RD, &fl->cl_fast_recycled, "# of clusters recycled (fast)"); 2920 } 2921 2922 static int 2923 alloc_fwq(struct adapter *sc) 2924 { 2925 int rc, intr_idx; 2926 struct sge_iq *fwq = &sc->sge.fwq; 2927 struct sysctl_oid *oid = device_get_sysctl_tree(sc->dev); 2928 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 2929 2930 init_iq(fwq, sc, 0, 0, FW_IQ_QSIZE); 2931 fwq->flags |= IQ_INTR; /* always */ 2932 if (sc->flags & IS_VF) 2933 intr_idx = 0; 2934 else { 2935 intr_idx = sc->intr_count > 1 ? 1 : 0; 2936 fwq->set_tcb_rpl = t4_filter_rpl; 2937 fwq->l2t_write_rpl = do_l2t_write_rpl; 2938 } 2939 rc = alloc_iq_fl(&sc->port[0]->vi[0], fwq, NULL, intr_idx, -1); 2940 if (rc != 0) { 2941 device_printf(sc->dev, 2942 "failed to create firmware event queue: %d\n", rc); 2943 return (rc); 2944 } 2945 2946 oid = SYSCTL_ADD_NODE(&sc->ctx, children, OID_AUTO, "fwq", CTLFLAG_RD, 2947 NULL, "firmware event queue"); 2948 children = SYSCTL_CHILDREN(oid); 2949 2950 SYSCTL_ADD_UAUTO(&sc->ctx, children, OID_AUTO, "ba", CTLFLAG_RD, 2951 &fwq->ba, "bus address of descriptor ring"); 2952 SYSCTL_ADD_INT(&sc->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL, 2953 fwq->qsize * IQ_ESIZE, "descriptor ring size in bytes"); 2954 SYSCTL_ADD_PROC(&sc->ctx, children, OID_AUTO, "abs_id", 2955 CTLTYPE_INT | CTLFLAG_RD, &fwq->abs_id, 0, sysctl_uint16, "I", 2956 "absolute id of the queue"); 2957 SYSCTL_ADD_PROC(&sc->ctx, children, OID_AUTO, "cntxt_id", 2958 CTLTYPE_INT | CTLFLAG_RD, &fwq->cntxt_id, 0, sysctl_uint16, "I", 2959 "SGE context id of the queue"); 2960 SYSCTL_ADD_PROC(&sc->ctx, children, OID_AUTO, "cidx", 2961 CTLTYPE_INT | CTLFLAG_RD, &fwq->cidx, 0, sysctl_uint16, "I", 2962 "consumer index"); 2963 2964 return (0); 2965 } 2966 2967 static int 2968 free_fwq(struct adapter *sc) 2969 { 2970 return free_iq_fl(NULL, &sc->sge.fwq, NULL); 2971 } 2972 2973 static int 2974 alloc_mgmtq(struct adapter *sc) 2975 { 2976 int rc; 2977 struct sge_wrq *mgmtq = &sc->sge.mgmtq; 2978 char name[16]; 2979 struct sysctl_oid *oid = device_get_sysctl_tree(sc->dev); 2980 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 2981 2982 oid = SYSCTL_ADD_NODE(&sc->ctx, children, OID_AUTO, "mgmtq", CTLFLAG_RD, 2983 NULL, "management queue"); 2984 2985 snprintf(name, sizeof(name), "%s mgmtq", device_get_nameunit(sc->dev)); 2986 init_eq(sc, &mgmtq->eq, EQ_CTRL, CTRL_EQ_QSIZE, sc->port[0]->tx_chan, 2987 sc->sge.fwq.cntxt_id, name); 2988 rc = alloc_wrq(sc, NULL, mgmtq, oid); 2989 if (rc != 0) { 2990 device_printf(sc->dev, 2991 "failed to create management queue: %d\n", rc); 2992 return (rc); 2993 } 2994 2995 return (0); 2996 } 2997 2998 static int 2999 free_mgmtq(struct adapter *sc) 3000 { 3001 3002 return free_wrq(sc, &sc->sge.mgmtq); 3003 } 3004 3005 int 3006 tnl_cong(struct port_info *pi, int drop) 3007 { 3008 3009 if (drop == -1) 3010 return (-1); 3011 else if (drop == 1) 3012 return (0); 3013 else 3014 return (pi->rx_chan_map); 3015 } 3016 3017 static int 3018 alloc_rxq(struct vi_info *vi, struct sge_rxq *rxq, int intr_idx, int idx, 3019 struct sysctl_oid *oid) 3020 { 3021 int rc; 3022 struct adapter *sc = vi->pi->adapter; 3023 struct sysctl_oid_list *children; 3024 char name[16]; 3025 3026 rc = alloc_iq_fl(vi, &rxq->iq, &rxq->fl, intr_idx, 3027 tnl_cong(vi->pi, cong_drop)); 3028 if (rc != 0) 3029 return (rc); 3030 3031 if (idx == 0) 3032 sc->sge.iq_base = rxq->iq.abs_id - rxq->iq.cntxt_id; 3033 else 3034 KASSERT(rxq->iq.cntxt_id + sc->sge.iq_base == rxq->iq.abs_id, 3035 ("iq_base mismatch")); 3036 KASSERT(sc->sge.iq_base == 0 || sc->flags & IS_VF, 3037 ("PF with non-zero iq_base")); 3038 3039 /* 3040 * The freelist is just barely above the starvation threshold right now, 3041 * fill it up a bit more. 3042 */ 3043 FL_LOCK(&rxq->fl); 3044 refill_fl(sc, &rxq->fl, 128); 3045 FL_UNLOCK(&rxq->fl); 3046 3047 #if defined(INET) || defined(INET6) 3048 rc = tcp_lro_init(&rxq->lro); 3049 if (rc != 0) 3050 return (rc); 3051 rxq->lro.ifp = vi->ifp; /* also indicates LRO init'ed */ 3052 3053 if (vi->ifp->if_capenable & IFCAP_LRO) 3054 rxq->iq.flags |= IQ_LRO_ENABLED; 3055 #endif 3056 rxq->ifp = vi->ifp; 3057 3058 children = SYSCTL_CHILDREN(oid); 3059 3060 snprintf(name, sizeof(name), "%d", idx); 3061 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD, 3062 NULL, "rx queue"); 3063 children = SYSCTL_CHILDREN(oid); 3064 3065 SYSCTL_ADD_UAUTO(&vi->ctx, children, OID_AUTO, "ba", CTLFLAG_RD, 3066 &rxq->iq.ba, "bus address of descriptor ring"); 3067 SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL, 3068 rxq->iq.qsize * IQ_ESIZE, "descriptor ring size in bytes"); 3069 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "abs_id", 3070 CTLTYPE_INT | CTLFLAG_RD, &rxq->iq.abs_id, 0, sysctl_uint16, "I", 3071 "absolute id of the queue"); 3072 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cntxt_id", 3073 CTLTYPE_INT | CTLFLAG_RD, &rxq->iq.cntxt_id, 0, sysctl_uint16, "I", 3074 "SGE context id of the queue"); 3075 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx", 3076 CTLTYPE_INT | CTLFLAG_RD, &rxq->iq.cidx, 0, sysctl_uint16, "I", 3077 "consumer index"); 3078 #if defined(INET) || defined(INET6) 3079 SYSCTL_ADD_U64(&vi->ctx, children, OID_AUTO, "lro_queued", CTLFLAG_RD, 3080 &rxq->lro.lro_queued, 0, NULL); 3081 SYSCTL_ADD_U64(&vi->ctx, children, OID_AUTO, "lro_flushed", CTLFLAG_RD, 3082 &rxq->lro.lro_flushed, 0, NULL); 3083 #endif 3084 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "rxcsum", CTLFLAG_RD, 3085 &rxq->rxcsum, "# of times hardware assisted with checksum"); 3086 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "vlan_extraction", 3087 CTLFLAG_RD, &rxq->vlan_extraction, 3088 "# of times hardware extracted 802.1Q tag"); 3089 3090 add_fl_sysctls(sc, &vi->ctx, oid, &rxq->fl); 3091 3092 return (rc); 3093 } 3094 3095 static int 3096 free_rxq(struct vi_info *vi, struct sge_rxq *rxq) 3097 { 3098 int rc; 3099 3100 #if defined(INET) || defined(INET6) 3101 if (rxq->lro.ifp) { 3102 tcp_lro_free(&rxq->lro); 3103 rxq->lro.ifp = NULL; 3104 } 3105 #endif 3106 3107 rc = free_iq_fl(vi, &rxq->iq, &rxq->fl); 3108 if (rc == 0) 3109 bzero(rxq, sizeof(*rxq)); 3110 3111 return (rc); 3112 } 3113 3114 #ifdef TCP_OFFLOAD 3115 static int 3116 alloc_ofld_rxq(struct vi_info *vi, struct sge_ofld_rxq *ofld_rxq, 3117 int intr_idx, int idx, struct sysctl_oid *oid) 3118 { 3119 struct port_info *pi = vi->pi; 3120 int rc; 3121 struct sysctl_oid_list *children; 3122 char name[16]; 3123 3124 rc = alloc_iq_fl(vi, &ofld_rxq->iq, &ofld_rxq->fl, intr_idx, 3125 pi->rx_chan_map); 3126 if (rc != 0) 3127 return (rc); 3128 3129 children = SYSCTL_CHILDREN(oid); 3130 3131 snprintf(name, sizeof(name), "%d", idx); 3132 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD, 3133 NULL, "rx queue"); 3134 children = SYSCTL_CHILDREN(oid); 3135 3136 SYSCTL_ADD_UAUTO(&vi->ctx, children, OID_AUTO, "ba", CTLFLAG_RD, 3137 &ofld_rxq->iq.ba, "bus address of descriptor ring"); 3138 SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL, 3139 ofld_rxq->iq.qsize * IQ_ESIZE, "descriptor ring size in bytes"); 3140 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "abs_id", 3141 CTLTYPE_INT | CTLFLAG_RD, &ofld_rxq->iq.abs_id, 0, sysctl_uint16, 3142 "I", "absolute id of the queue"); 3143 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cntxt_id", 3144 CTLTYPE_INT | CTLFLAG_RD, &ofld_rxq->iq.cntxt_id, 0, sysctl_uint16, 3145 "I", "SGE context id of the queue"); 3146 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx", 3147 CTLTYPE_INT | CTLFLAG_RD, &ofld_rxq->iq.cidx, 0, sysctl_uint16, "I", 3148 "consumer index"); 3149 3150 add_fl_sysctls(pi->adapter, &vi->ctx, oid, &ofld_rxq->fl); 3151 3152 return (rc); 3153 } 3154 3155 static int 3156 free_ofld_rxq(struct vi_info *vi, struct sge_ofld_rxq *ofld_rxq) 3157 { 3158 int rc; 3159 3160 rc = free_iq_fl(vi, &ofld_rxq->iq, &ofld_rxq->fl); 3161 if (rc == 0) 3162 bzero(ofld_rxq, sizeof(*ofld_rxq)); 3163 3164 return (rc); 3165 } 3166 #endif 3167 3168 #ifdef DEV_NETMAP 3169 static int 3170 alloc_nm_rxq(struct vi_info *vi, struct sge_nm_rxq *nm_rxq, int intr_idx, 3171 int idx, struct sysctl_oid *oid) 3172 { 3173 int rc; 3174 struct sysctl_oid_list *children; 3175 struct sysctl_ctx_list *ctx; 3176 char name[16]; 3177 size_t len; 3178 struct adapter *sc = vi->pi->adapter; 3179 struct netmap_adapter *na = NA(vi->ifp); 3180 3181 MPASS(na != NULL); 3182 3183 len = vi->qsize_rxq * IQ_ESIZE; 3184 rc = alloc_ring(sc, len, &nm_rxq->iq_desc_tag, &nm_rxq->iq_desc_map, 3185 &nm_rxq->iq_ba, (void **)&nm_rxq->iq_desc); 3186 if (rc != 0) 3187 return (rc); 3188 3189 len = na->num_rx_desc * EQ_ESIZE + sc->params.sge.spg_len; 3190 rc = alloc_ring(sc, len, &nm_rxq->fl_desc_tag, &nm_rxq->fl_desc_map, 3191 &nm_rxq->fl_ba, (void **)&nm_rxq->fl_desc); 3192 if (rc != 0) 3193 return (rc); 3194 3195 nm_rxq->vi = vi; 3196 nm_rxq->nid = idx; 3197 nm_rxq->iq_cidx = 0; 3198 nm_rxq->iq_sidx = vi->qsize_rxq - sc->params.sge.spg_len / IQ_ESIZE; 3199 nm_rxq->iq_gen = F_RSPD_GEN; 3200 nm_rxq->fl_pidx = nm_rxq->fl_cidx = 0; 3201 nm_rxq->fl_sidx = na->num_rx_desc; 3202 nm_rxq->intr_idx = intr_idx; 3203 3204 ctx = &vi->ctx; 3205 children = SYSCTL_CHILDREN(oid); 3206 3207 snprintf(name, sizeof(name), "%d", idx); 3208 oid = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, name, CTLFLAG_RD, NULL, 3209 "rx queue"); 3210 children = SYSCTL_CHILDREN(oid); 3211 3212 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "abs_id", 3213 CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->iq_abs_id, 0, sysctl_uint16, 3214 "I", "absolute id of the queue"); 3215 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cntxt_id", 3216 CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->iq_cntxt_id, 0, sysctl_uint16, 3217 "I", "SGE context id of the queue"); 3218 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cidx", 3219 CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->iq_cidx, 0, sysctl_uint16, "I", 3220 "consumer index"); 3221 3222 children = SYSCTL_CHILDREN(oid); 3223 oid = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, "fl", CTLFLAG_RD, NULL, 3224 "freelist"); 3225 children = SYSCTL_CHILDREN(oid); 3226 3227 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cntxt_id", 3228 CTLTYPE_INT | CTLFLAG_RD, &nm_rxq->fl_cntxt_id, 0, sysctl_uint16, 3229 "I", "SGE context id of the freelist"); 3230 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "cidx", CTLFLAG_RD, 3231 &nm_rxq->fl_cidx, 0, "consumer index"); 3232 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "pidx", CTLFLAG_RD, 3233 &nm_rxq->fl_pidx, 0, "producer index"); 3234 3235 return (rc); 3236 } 3237 3238 3239 static int 3240 free_nm_rxq(struct vi_info *vi, struct sge_nm_rxq *nm_rxq) 3241 { 3242 struct adapter *sc = vi->pi->adapter; 3243 3244 free_ring(sc, nm_rxq->iq_desc_tag, nm_rxq->iq_desc_map, nm_rxq->iq_ba, 3245 nm_rxq->iq_desc); 3246 free_ring(sc, nm_rxq->fl_desc_tag, nm_rxq->fl_desc_map, nm_rxq->fl_ba, 3247 nm_rxq->fl_desc); 3248 3249 return (0); 3250 } 3251 3252 static int 3253 alloc_nm_txq(struct vi_info *vi, struct sge_nm_txq *nm_txq, int iqidx, int idx, 3254 struct sysctl_oid *oid) 3255 { 3256 int rc; 3257 size_t len; 3258 struct port_info *pi = vi->pi; 3259 struct adapter *sc = pi->adapter; 3260 struct netmap_adapter *na = NA(vi->ifp); 3261 char name[16]; 3262 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 3263 3264 len = na->num_tx_desc * EQ_ESIZE + sc->params.sge.spg_len; 3265 rc = alloc_ring(sc, len, &nm_txq->desc_tag, &nm_txq->desc_map, 3266 &nm_txq->ba, (void **)&nm_txq->desc); 3267 if (rc) 3268 return (rc); 3269 3270 nm_txq->pidx = nm_txq->cidx = 0; 3271 nm_txq->sidx = na->num_tx_desc; 3272 nm_txq->nid = idx; 3273 nm_txq->iqidx = iqidx; 3274 nm_txq->cpl_ctrl0 = htobe32(V_TXPKT_OPCODE(CPL_TX_PKT) | 3275 V_TXPKT_INTF(pi->tx_chan) | V_TXPKT_PF(G_FW_VIID_PFN(vi->viid)) | 3276 V_TXPKT_VF(G_FW_VIID_VIN(vi->viid)) | 3277 V_TXPKT_VF_VLD(G_FW_VIID_VIVLD(vi->viid))); 3278 3279 snprintf(name, sizeof(name), "%d", idx); 3280 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD, 3281 NULL, "netmap tx queue"); 3282 children = SYSCTL_CHILDREN(oid); 3283 3284 SYSCTL_ADD_UINT(&vi->ctx, children, OID_AUTO, "cntxt_id", CTLFLAG_RD, 3285 &nm_txq->cntxt_id, 0, "SGE context id of the queue"); 3286 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx", 3287 CTLTYPE_INT | CTLFLAG_RD, &nm_txq->cidx, 0, sysctl_uint16, "I", 3288 "consumer index"); 3289 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "pidx", 3290 CTLTYPE_INT | CTLFLAG_RD, &nm_txq->pidx, 0, sysctl_uint16, "I", 3291 "producer index"); 3292 3293 return (rc); 3294 } 3295 3296 static int 3297 free_nm_txq(struct vi_info *vi, struct sge_nm_txq *nm_txq) 3298 { 3299 struct adapter *sc = vi->pi->adapter; 3300 3301 free_ring(sc, nm_txq->desc_tag, nm_txq->desc_map, nm_txq->ba, 3302 nm_txq->desc); 3303 3304 return (0); 3305 } 3306 #endif 3307 3308 static int 3309 ctrl_eq_alloc(struct adapter *sc, struct sge_eq *eq) 3310 { 3311 int rc, cntxt_id; 3312 struct fw_eq_ctrl_cmd c; 3313 int qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE; 3314 3315 bzero(&c, sizeof(c)); 3316 3317 c.op_to_vfn = htobe32(V_FW_CMD_OP(FW_EQ_CTRL_CMD) | F_FW_CMD_REQUEST | 3318 F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_EQ_CTRL_CMD_PFN(sc->pf) | 3319 V_FW_EQ_CTRL_CMD_VFN(0)); 3320 c.alloc_to_len16 = htobe32(F_FW_EQ_CTRL_CMD_ALLOC | 3321 F_FW_EQ_CTRL_CMD_EQSTART | FW_LEN16(c)); 3322 c.cmpliqid_eqid = htonl(V_FW_EQ_CTRL_CMD_CMPLIQID(eq->iqid)); 3323 c.physeqid_pkd = htobe32(0); 3324 c.fetchszm_to_iqid = 3325 htobe32(V_FW_EQ_CTRL_CMD_HOSTFCMODE(X_HOSTFCMODE_NONE) | 3326 V_FW_EQ_CTRL_CMD_PCIECHN(eq->tx_chan) | 3327 F_FW_EQ_CTRL_CMD_FETCHRO | V_FW_EQ_CTRL_CMD_IQID(eq->iqid)); 3328 c.dcaen_to_eqsize = 3329 htobe32(V_FW_EQ_CTRL_CMD_FBMIN(X_FETCHBURSTMIN_64B) | 3330 V_FW_EQ_CTRL_CMD_FBMAX(X_FETCHBURSTMAX_512B) | 3331 V_FW_EQ_CTRL_CMD_EQSIZE(qsize)); 3332 c.eqaddr = htobe64(eq->ba); 3333 3334 rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c); 3335 if (rc != 0) { 3336 device_printf(sc->dev, 3337 "failed to create control queue %d: %d\n", eq->tx_chan, rc); 3338 return (rc); 3339 } 3340 eq->flags |= EQ_ALLOCATED; 3341 3342 eq->cntxt_id = G_FW_EQ_CTRL_CMD_EQID(be32toh(c.cmpliqid_eqid)); 3343 cntxt_id = eq->cntxt_id - sc->sge.eq_start; 3344 if (cntxt_id >= sc->sge.neq) 3345 panic("%s: eq->cntxt_id (%d) more than the max (%d)", __func__, 3346 cntxt_id, sc->sge.neq - 1); 3347 sc->sge.eqmap[cntxt_id] = eq; 3348 3349 return (rc); 3350 } 3351 3352 static int 3353 eth_eq_alloc(struct adapter *sc, struct vi_info *vi, struct sge_eq *eq) 3354 { 3355 int rc, cntxt_id; 3356 struct fw_eq_eth_cmd c; 3357 int qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE; 3358 3359 bzero(&c, sizeof(c)); 3360 3361 c.op_to_vfn = htobe32(V_FW_CMD_OP(FW_EQ_ETH_CMD) | F_FW_CMD_REQUEST | 3362 F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_EQ_ETH_CMD_PFN(sc->pf) | 3363 V_FW_EQ_ETH_CMD_VFN(0)); 3364 c.alloc_to_len16 = htobe32(F_FW_EQ_ETH_CMD_ALLOC | 3365 F_FW_EQ_ETH_CMD_EQSTART | FW_LEN16(c)); 3366 c.autoequiqe_to_viid = htobe32(F_FW_EQ_ETH_CMD_AUTOEQUIQE | 3367 F_FW_EQ_ETH_CMD_AUTOEQUEQE | V_FW_EQ_ETH_CMD_VIID(vi->viid)); 3368 c.fetchszm_to_iqid = 3369 htobe32(V_FW_EQ_ETH_CMD_HOSTFCMODE(X_HOSTFCMODE_NONE) | 3370 V_FW_EQ_ETH_CMD_PCIECHN(eq->tx_chan) | F_FW_EQ_ETH_CMD_FETCHRO | 3371 V_FW_EQ_ETH_CMD_IQID(eq->iqid)); 3372 c.dcaen_to_eqsize = htobe32(V_FW_EQ_ETH_CMD_FBMIN(X_FETCHBURSTMIN_64B) | 3373 V_FW_EQ_ETH_CMD_FBMAX(X_FETCHBURSTMAX_512B) | 3374 V_FW_EQ_ETH_CMD_EQSIZE(qsize)); 3375 c.eqaddr = htobe64(eq->ba); 3376 3377 rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c); 3378 if (rc != 0) { 3379 device_printf(vi->dev, 3380 "failed to create Ethernet egress queue: %d\n", rc); 3381 return (rc); 3382 } 3383 eq->flags |= EQ_ALLOCATED; 3384 3385 eq->cntxt_id = G_FW_EQ_ETH_CMD_EQID(be32toh(c.eqid_pkd)); 3386 eq->abs_id = G_FW_EQ_ETH_CMD_PHYSEQID(be32toh(c.physeqid_pkd)); 3387 cntxt_id = eq->cntxt_id - sc->sge.eq_start; 3388 if (cntxt_id >= sc->sge.neq) 3389 panic("%s: eq->cntxt_id (%d) more than the max (%d)", __func__, 3390 cntxt_id, sc->sge.neq - 1); 3391 sc->sge.eqmap[cntxt_id] = eq; 3392 3393 return (rc); 3394 } 3395 3396 #ifdef TCP_OFFLOAD 3397 static int 3398 ofld_eq_alloc(struct adapter *sc, struct vi_info *vi, struct sge_eq *eq) 3399 { 3400 int rc, cntxt_id; 3401 struct fw_eq_ofld_cmd c; 3402 int qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE; 3403 3404 bzero(&c, sizeof(c)); 3405 3406 c.op_to_vfn = htonl(V_FW_CMD_OP(FW_EQ_OFLD_CMD) | F_FW_CMD_REQUEST | 3407 F_FW_CMD_WRITE | F_FW_CMD_EXEC | V_FW_EQ_OFLD_CMD_PFN(sc->pf) | 3408 V_FW_EQ_OFLD_CMD_VFN(0)); 3409 c.alloc_to_len16 = htonl(F_FW_EQ_OFLD_CMD_ALLOC | 3410 F_FW_EQ_OFLD_CMD_EQSTART | FW_LEN16(c)); 3411 c.fetchszm_to_iqid = 3412 htonl(V_FW_EQ_OFLD_CMD_HOSTFCMODE(X_HOSTFCMODE_NONE) | 3413 V_FW_EQ_OFLD_CMD_PCIECHN(eq->tx_chan) | 3414 F_FW_EQ_OFLD_CMD_FETCHRO | V_FW_EQ_OFLD_CMD_IQID(eq->iqid)); 3415 c.dcaen_to_eqsize = 3416 htobe32(V_FW_EQ_OFLD_CMD_FBMIN(X_FETCHBURSTMIN_64B) | 3417 V_FW_EQ_OFLD_CMD_FBMAX(X_FETCHBURSTMAX_512B) | 3418 V_FW_EQ_OFLD_CMD_EQSIZE(qsize)); 3419 c.eqaddr = htobe64(eq->ba); 3420 3421 rc = -t4_wr_mbox(sc, sc->mbox, &c, sizeof(c), &c); 3422 if (rc != 0) { 3423 device_printf(vi->dev, 3424 "failed to create egress queue for TCP offload: %d\n", rc); 3425 return (rc); 3426 } 3427 eq->flags |= EQ_ALLOCATED; 3428 3429 eq->cntxt_id = G_FW_EQ_OFLD_CMD_EQID(be32toh(c.eqid_pkd)); 3430 cntxt_id = eq->cntxt_id - sc->sge.eq_start; 3431 if (cntxt_id >= sc->sge.neq) 3432 panic("%s: eq->cntxt_id (%d) more than the max (%d)", __func__, 3433 cntxt_id, sc->sge.neq - 1); 3434 sc->sge.eqmap[cntxt_id] = eq; 3435 3436 return (rc); 3437 } 3438 #endif 3439 3440 static int 3441 alloc_eq(struct adapter *sc, struct vi_info *vi, struct sge_eq *eq) 3442 { 3443 int rc, qsize; 3444 size_t len; 3445 3446 mtx_init(&eq->eq_lock, eq->lockname, NULL, MTX_DEF); 3447 3448 qsize = eq->sidx + sc->params.sge.spg_len / EQ_ESIZE; 3449 len = qsize * EQ_ESIZE; 3450 rc = alloc_ring(sc, len, &eq->desc_tag, &eq->desc_map, 3451 &eq->ba, (void **)&eq->desc); 3452 if (rc) 3453 return (rc); 3454 3455 eq->pidx = eq->cidx = 0; 3456 eq->equeqidx = eq->dbidx = 0; 3457 eq->doorbells = sc->doorbells; 3458 3459 switch (eq->flags & EQ_TYPEMASK) { 3460 case EQ_CTRL: 3461 rc = ctrl_eq_alloc(sc, eq); 3462 break; 3463 3464 case EQ_ETH: 3465 rc = eth_eq_alloc(sc, vi, eq); 3466 break; 3467 3468 #ifdef TCP_OFFLOAD 3469 case EQ_OFLD: 3470 rc = ofld_eq_alloc(sc, vi, eq); 3471 break; 3472 #endif 3473 3474 default: 3475 panic("%s: invalid eq type %d.", __func__, 3476 eq->flags & EQ_TYPEMASK); 3477 } 3478 if (rc != 0) { 3479 device_printf(sc->dev, 3480 "failed to allocate egress queue(%d): %d\n", 3481 eq->flags & EQ_TYPEMASK, rc); 3482 } 3483 3484 if (isset(&eq->doorbells, DOORBELL_UDB) || 3485 isset(&eq->doorbells, DOORBELL_UDBWC) || 3486 isset(&eq->doorbells, DOORBELL_WCWR)) { 3487 uint32_t s_qpp = sc->params.sge.eq_s_qpp; 3488 uint32_t mask = (1 << s_qpp) - 1; 3489 volatile uint8_t *udb; 3490 3491 udb = sc->udbs_base + UDBS_DB_OFFSET; 3492 udb += (eq->cntxt_id >> s_qpp) << PAGE_SHIFT; /* pg offset */ 3493 eq->udb_qid = eq->cntxt_id & mask; /* id in page */ 3494 if (eq->udb_qid >= PAGE_SIZE / UDBS_SEG_SIZE) 3495 clrbit(&eq->doorbells, DOORBELL_WCWR); 3496 else { 3497 udb += eq->udb_qid << UDBS_SEG_SHIFT; /* seg offset */ 3498 eq->udb_qid = 0; 3499 } 3500 eq->udb = (volatile void *)udb; 3501 } 3502 3503 return (rc); 3504 } 3505 3506 static int 3507 free_eq(struct adapter *sc, struct sge_eq *eq) 3508 { 3509 int rc; 3510 3511 if (eq->flags & EQ_ALLOCATED) { 3512 switch (eq->flags & EQ_TYPEMASK) { 3513 case EQ_CTRL: 3514 rc = -t4_ctrl_eq_free(sc, sc->mbox, sc->pf, 0, 3515 eq->cntxt_id); 3516 break; 3517 3518 case EQ_ETH: 3519 rc = -t4_eth_eq_free(sc, sc->mbox, sc->pf, 0, 3520 eq->cntxt_id); 3521 break; 3522 3523 #ifdef TCP_OFFLOAD 3524 case EQ_OFLD: 3525 rc = -t4_ofld_eq_free(sc, sc->mbox, sc->pf, 0, 3526 eq->cntxt_id); 3527 break; 3528 #endif 3529 3530 default: 3531 panic("%s: invalid eq type %d.", __func__, 3532 eq->flags & EQ_TYPEMASK); 3533 } 3534 if (rc != 0) { 3535 device_printf(sc->dev, 3536 "failed to free egress queue (%d): %d\n", 3537 eq->flags & EQ_TYPEMASK, rc); 3538 return (rc); 3539 } 3540 eq->flags &= ~EQ_ALLOCATED; 3541 } 3542 3543 free_ring(sc, eq->desc_tag, eq->desc_map, eq->ba, eq->desc); 3544 3545 if (mtx_initialized(&eq->eq_lock)) 3546 mtx_destroy(&eq->eq_lock); 3547 3548 bzero(eq, sizeof(*eq)); 3549 return (0); 3550 } 3551 3552 static int 3553 alloc_wrq(struct adapter *sc, struct vi_info *vi, struct sge_wrq *wrq, 3554 struct sysctl_oid *oid) 3555 { 3556 int rc; 3557 struct sysctl_ctx_list *ctx = vi ? &vi->ctx : &sc->ctx; 3558 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 3559 3560 rc = alloc_eq(sc, vi, &wrq->eq); 3561 if (rc) 3562 return (rc); 3563 3564 wrq->adapter = sc; 3565 TASK_INIT(&wrq->wrq_tx_task, 0, wrq_tx_drain, wrq); 3566 TAILQ_INIT(&wrq->incomplete_wrs); 3567 STAILQ_INIT(&wrq->wr_list); 3568 wrq->nwr_pending = 0; 3569 wrq->ndesc_needed = 0; 3570 3571 SYSCTL_ADD_UAUTO(ctx, children, OID_AUTO, "ba", CTLFLAG_RD, 3572 &wrq->eq.ba, "bus address of descriptor ring"); 3573 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL, 3574 wrq->eq.sidx * EQ_ESIZE + sc->params.sge.spg_len, 3575 "desc ring size in bytes"); 3576 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "cntxt_id", CTLFLAG_RD, 3577 &wrq->eq.cntxt_id, 0, "SGE context id of the queue"); 3578 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "cidx", 3579 CTLTYPE_INT | CTLFLAG_RD, &wrq->eq.cidx, 0, sysctl_uint16, "I", 3580 "consumer index"); 3581 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "pidx", 3582 CTLTYPE_INT | CTLFLAG_RD, &wrq->eq.pidx, 0, sysctl_uint16, "I", 3583 "producer index"); 3584 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "sidx", CTLFLAG_RD, NULL, 3585 wrq->eq.sidx, "status page index"); 3586 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "tx_wrs_direct", CTLFLAG_RD, 3587 &wrq->tx_wrs_direct, "# of work requests (direct)"); 3588 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "tx_wrs_copied", CTLFLAG_RD, 3589 &wrq->tx_wrs_copied, "# of work requests (copied)"); 3590 SYSCTL_ADD_UQUAD(ctx, children, OID_AUTO, "tx_wrs_sspace", CTLFLAG_RD, 3591 &wrq->tx_wrs_ss, "# of work requests (copied from scratch space)"); 3592 3593 return (rc); 3594 } 3595 3596 static int 3597 free_wrq(struct adapter *sc, struct sge_wrq *wrq) 3598 { 3599 int rc; 3600 3601 rc = free_eq(sc, &wrq->eq); 3602 if (rc) 3603 return (rc); 3604 3605 bzero(wrq, sizeof(*wrq)); 3606 return (0); 3607 } 3608 3609 static int 3610 alloc_txq(struct vi_info *vi, struct sge_txq *txq, int idx, 3611 struct sysctl_oid *oid) 3612 { 3613 int rc; 3614 struct port_info *pi = vi->pi; 3615 struct adapter *sc = pi->adapter; 3616 struct sge_eq *eq = &txq->eq; 3617 char name[16]; 3618 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); 3619 3620 rc = mp_ring_alloc(&txq->r, eq->sidx, txq, eth_tx, can_resume_eth_tx, 3621 M_CXGBE, M_WAITOK); 3622 if (rc != 0) { 3623 device_printf(sc->dev, "failed to allocate mp_ring: %d\n", rc); 3624 return (rc); 3625 } 3626 3627 rc = alloc_eq(sc, vi, eq); 3628 if (rc != 0) { 3629 mp_ring_free(txq->r); 3630 txq->r = NULL; 3631 return (rc); 3632 } 3633 3634 /* Can't fail after this point. */ 3635 3636 if (idx == 0) 3637 sc->sge.eq_base = eq->abs_id - eq->cntxt_id; 3638 else 3639 KASSERT(eq->cntxt_id + sc->sge.eq_base == eq->abs_id, 3640 ("eq_base mismatch")); 3641 KASSERT(sc->sge.eq_base == 0 || sc->flags & IS_VF, 3642 ("PF with non-zero eq_base")); 3643 3644 TASK_INIT(&txq->tx_reclaim_task, 0, tx_reclaim, eq); 3645 txq->ifp = vi->ifp; 3646 txq->gl = sglist_alloc(TX_SGL_SEGS, M_WAITOK); 3647 if (sc->flags & IS_VF) 3648 txq->cpl_ctrl0 = htobe32(V_TXPKT_OPCODE(CPL_TX_PKT_XT) | 3649 V_TXPKT_INTF(pi->tx_chan)); 3650 else 3651 txq->cpl_ctrl0 = htobe32(V_TXPKT_OPCODE(CPL_TX_PKT) | 3652 V_TXPKT_INTF(pi->tx_chan) | 3653 V_TXPKT_PF(G_FW_VIID_PFN(vi->viid)) | 3654 V_TXPKT_VF(G_FW_VIID_VIN(vi->viid)) | 3655 V_TXPKT_VF_VLD(G_FW_VIID_VIVLD(vi->viid))); 3656 txq->tc_idx = -1; 3657 txq->sdesc = malloc(eq->sidx * sizeof(struct tx_sdesc), M_CXGBE, 3658 M_ZERO | M_WAITOK); 3659 3660 snprintf(name, sizeof(name), "%d", idx); 3661 oid = SYSCTL_ADD_NODE(&vi->ctx, children, OID_AUTO, name, CTLFLAG_RD, 3662 NULL, "tx queue"); 3663 children = SYSCTL_CHILDREN(oid); 3664 3665 SYSCTL_ADD_UAUTO(&vi->ctx, children, OID_AUTO, "ba", CTLFLAG_RD, 3666 &eq->ba, "bus address of descriptor ring"); 3667 SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "dmalen", CTLFLAG_RD, NULL, 3668 eq->sidx * EQ_ESIZE + sc->params.sge.spg_len, 3669 "desc ring size in bytes"); 3670 SYSCTL_ADD_UINT(&vi->ctx, children, OID_AUTO, "abs_id", CTLFLAG_RD, 3671 &eq->abs_id, 0, "absolute id of the queue"); 3672 SYSCTL_ADD_UINT(&vi->ctx, children, OID_AUTO, "cntxt_id", CTLFLAG_RD, 3673 &eq->cntxt_id, 0, "SGE context id of the queue"); 3674 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "cidx", 3675 CTLTYPE_INT | CTLFLAG_RD, &eq->cidx, 0, sysctl_uint16, "I", 3676 "consumer index"); 3677 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "pidx", 3678 CTLTYPE_INT | CTLFLAG_RD, &eq->pidx, 0, sysctl_uint16, "I", 3679 "producer index"); 3680 SYSCTL_ADD_INT(&vi->ctx, children, OID_AUTO, "sidx", CTLFLAG_RD, NULL, 3681 eq->sidx, "status page index"); 3682 3683 SYSCTL_ADD_PROC(&vi->ctx, children, OID_AUTO, "tc", 3684 CTLTYPE_INT | CTLFLAG_RW, vi, idx, sysctl_tc, "I", 3685 "traffic class (-1 means none)"); 3686 3687 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txcsum", CTLFLAG_RD, 3688 &txq->txcsum, "# of times hardware assisted with checksum"); 3689 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "vlan_insertion", 3690 CTLFLAG_RD, &txq->vlan_insertion, 3691 "# of times hardware inserted 802.1Q tag"); 3692 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "tso_wrs", CTLFLAG_RD, 3693 &txq->tso_wrs, "# of TSO work requests"); 3694 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "imm_wrs", CTLFLAG_RD, 3695 &txq->imm_wrs, "# of work requests with immediate data"); 3696 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "sgl_wrs", CTLFLAG_RD, 3697 &txq->sgl_wrs, "# of work requests with direct SGL"); 3698 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkt_wrs", CTLFLAG_RD, 3699 &txq->txpkt_wrs, "# of txpkt work requests (one pkt/WR)"); 3700 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts0_wrs", 3701 CTLFLAG_RD, &txq->txpkts0_wrs, 3702 "# of txpkts (type 0) work requests"); 3703 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts1_wrs", 3704 CTLFLAG_RD, &txq->txpkts1_wrs, 3705 "# of txpkts (type 1) work requests"); 3706 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts0_pkts", 3707 CTLFLAG_RD, &txq->txpkts0_pkts, 3708 "# of frames tx'd using type0 txpkts work requests"); 3709 SYSCTL_ADD_UQUAD(&vi->ctx, children, OID_AUTO, "txpkts1_pkts", 3710 CTLFLAG_RD, &txq->txpkts1_pkts, 3711 "# of frames tx'd using type1 txpkts work requests"); 3712 3713 SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_enqueues", 3714 CTLFLAG_RD, &txq->r->enqueues, 3715 "# of enqueues to the mp_ring for this queue"); 3716 SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_drops", 3717 CTLFLAG_RD, &txq->r->drops, 3718 "# of drops in the mp_ring for this queue"); 3719 SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_starts", 3720 CTLFLAG_RD, &txq->r->starts, 3721 "# of normal consumer starts in the mp_ring for this queue"); 3722 SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_stalls", 3723 CTLFLAG_RD, &txq->r->stalls, 3724 "# of consumer stalls in the mp_ring for this queue"); 3725 SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_restarts", 3726 CTLFLAG_RD, &txq->r->restarts, 3727 "# of consumer restarts in the mp_ring for this queue"); 3728 SYSCTL_ADD_COUNTER_U64(&vi->ctx, children, OID_AUTO, "r_abdications", 3729 CTLFLAG_RD, &txq->r->abdications, 3730 "# of consumer abdications in the mp_ring for this queue"); 3731 3732 return (0); 3733 } 3734 3735 static int 3736 free_txq(struct vi_info *vi, struct sge_txq *txq) 3737 { 3738 int rc; 3739 struct adapter *sc = vi->pi->adapter; 3740 struct sge_eq *eq = &txq->eq; 3741 3742 rc = free_eq(sc, eq); 3743 if (rc) 3744 return (rc); 3745 3746 sglist_free(txq->gl); 3747 free(txq->sdesc, M_CXGBE); 3748 mp_ring_free(txq->r); 3749 3750 bzero(txq, sizeof(*txq)); 3751 return (0); 3752 } 3753 3754 static void 3755 oneseg_dma_callback(void *arg, bus_dma_segment_t *segs, int nseg, int error) 3756 { 3757 bus_addr_t *ba = arg; 3758 3759 KASSERT(nseg == 1, 3760 ("%s meant for single segment mappings only.", __func__)); 3761 3762 *ba = error ? 0 : segs->ds_addr; 3763 } 3764 3765 static inline void 3766 ring_fl_db(struct adapter *sc, struct sge_fl *fl) 3767 { 3768 uint32_t n, v; 3769 3770 n = IDXDIFF(fl->pidx / 8, fl->dbidx, fl->sidx); 3771 MPASS(n > 0); 3772 3773 wmb(); 3774 v = fl->dbval | V_PIDX(n); 3775 if (fl->udb) 3776 *fl->udb = htole32(v); 3777 else 3778 t4_write_reg(sc, sc->sge_kdoorbell_reg, v); 3779 IDXINCR(fl->dbidx, n, fl->sidx); 3780 } 3781 3782 /* 3783 * Fills up the freelist by allocating up to 'n' buffers. Buffers that are 3784 * recycled do not count towards this allocation budget. 3785 * 3786 * Returns non-zero to indicate that this freelist should be added to the list 3787 * of starving freelists. 3788 */ 3789 static int 3790 refill_fl(struct adapter *sc, struct sge_fl *fl, int n) 3791 { 3792 __be64 *d; 3793 struct fl_sdesc *sd; 3794 uintptr_t pa; 3795 caddr_t cl; 3796 struct cluster_layout *cll; 3797 struct sw_zone_info *swz; 3798 struct cluster_metadata *clm; 3799 uint16_t max_pidx; 3800 uint16_t hw_cidx = fl->hw_cidx; /* stable snapshot */ 3801 3802 FL_LOCK_ASSERT_OWNED(fl); 3803 3804 /* 3805 * We always stop at the beginning of the hardware descriptor that's just 3806 * before the one with the hw cidx. This is to avoid hw pidx = hw cidx, 3807 * which would mean an empty freelist to the chip. 3808 */ 3809 max_pidx = __predict_false(hw_cidx == 0) ? fl->sidx - 1 : hw_cidx - 1; 3810 if (fl->pidx == max_pidx * 8) 3811 return (0); 3812 3813 d = &fl->desc[fl->pidx]; 3814 sd = &fl->sdesc[fl->pidx]; 3815 cll = &fl->cll_def; /* default layout */ 3816 swz = &sc->sge.sw_zone_info[cll->zidx]; 3817 3818 while (n > 0) { 3819 3820 if (sd->cl != NULL) { 3821 3822 if (sd->nmbuf == 0) { 3823 /* 3824 * Fast recycle without involving any atomics on 3825 * the cluster's metadata (if the cluster has 3826 * metadata). This happens when all frames 3827 * received in the cluster were small enough to 3828 * fit within a single mbuf each. 3829 */ 3830 fl->cl_fast_recycled++; 3831 #ifdef INVARIANTS 3832 clm = cl_metadata(sc, fl, &sd->cll, sd->cl); 3833 if (clm != NULL) 3834 MPASS(clm->refcount == 1); 3835 #endif 3836 goto recycled_fast; 3837 } 3838 3839 /* 3840 * Cluster is guaranteed to have metadata. Clusters 3841 * without metadata always take the fast recycle path 3842 * when they're recycled. 3843 */ 3844 clm = cl_metadata(sc, fl, &sd->cll, sd->cl); 3845 MPASS(clm != NULL); 3846 3847 if (atomic_fetchadd_int(&clm->refcount, -1) == 1) { 3848 fl->cl_recycled++; 3849 counter_u64_add(extfree_rels, 1); 3850 goto recycled; 3851 } 3852 sd->cl = NULL; /* gave up my reference */ 3853 } 3854 MPASS(sd->cl == NULL); 3855 alloc: 3856 cl = uma_zalloc(swz->zone, M_NOWAIT); 3857 if (__predict_false(cl == NULL)) { 3858 if (cll == &fl->cll_alt || fl->cll_alt.zidx == -1 || 3859 fl->cll_def.zidx == fl->cll_alt.zidx) 3860 break; 3861 3862 /* fall back to the safe zone */ 3863 cll = &fl->cll_alt; 3864 swz = &sc->sge.sw_zone_info[cll->zidx]; 3865 goto alloc; 3866 } 3867 fl->cl_allocated++; 3868 n--; 3869 3870 pa = pmap_kextract((vm_offset_t)cl); 3871 pa += cll->region1; 3872 sd->cl = cl; 3873 sd->cll = *cll; 3874 *d = htobe64(pa | cll->hwidx); 3875 clm = cl_metadata(sc, fl, cll, cl); 3876 if (clm != NULL) { 3877 recycled: 3878 #ifdef INVARIANTS 3879 clm->sd = sd; 3880 #endif 3881 clm->refcount = 1; 3882 } 3883 sd->nmbuf = 0; 3884 recycled_fast: 3885 d++; 3886 sd++; 3887 if (__predict_false(++fl->pidx % 8 == 0)) { 3888 uint16_t pidx = fl->pidx / 8; 3889 3890 if (__predict_false(pidx == fl->sidx)) { 3891 fl->pidx = 0; 3892 pidx = 0; 3893 sd = fl->sdesc; 3894 d = fl->desc; 3895 } 3896 if (pidx == max_pidx) 3897 break; 3898 3899 if (IDXDIFF(pidx, fl->dbidx, fl->sidx) >= 4) 3900 ring_fl_db(sc, fl); 3901 } 3902 } 3903 3904 if (fl->pidx / 8 != fl->dbidx) 3905 ring_fl_db(sc, fl); 3906 3907 return (FL_RUNNING_LOW(fl) && !(fl->flags & FL_STARVING)); 3908 } 3909 3910 /* 3911 * Attempt to refill all starving freelists. 3912 */ 3913 static void 3914 refill_sfl(void *arg) 3915 { 3916 struct adapter *sc = arg; 3917 struct sge_fl *fl, *fl_temp; 3918 3919 mtx_assert(&sc->sfl_lock, MA_OWNED); 3920 TAILQ_FOREACH_SAFE(fl, &sc->sfl, link, fl_temp) { 3921 FL_LOCK(fl); 3922 refill_fl(sc, fl, 64); 3923 if (FL_NOT_RUNNING_LOW(fl) || fl->flags & FL_DOOMED) { 3924 TAILQ_REMOVE(&sc->sfl, fl, link); 3925 fl->flags &= ~FL_STARVING; 3926 } 3927 FL_UNLOCK(fl); 3928 } 3929 3930 if (!TAILQ_EMPTY(&sc->sfl)) 3931 callout_schedule(&sc->sfl_callout, hz / 5); 3932 } 3933 3934 static int 3935 alloc_fl_sdesc(struct sge_fl *fl) 3936 { 3937 3938 fl->sdesc = malloc(fl->sidx * 8 * sizeof(struct fl_sdesc), M_CXGBE, 3939 M_ZERO | M_WAITOK); 3940 3941 return (0); 3942 } 3943 3944 static void 3945 free_fl_sdesc(struct adapter *sc, struct sge_fl *fl) 3946 { 3947 struct fl_sdesc *sd; 3948 struct cluster_metadata *clm; 3949 struct cluster_layout *cll; 3950 int i; 3951 3952 sd = fl->sdesc; 3953 for (i = 0; i < fl->sidx * 8; i++, sd++) { 3954 if (sd->cl == NULL) 3955 continue; 3956 3957 cll = &sd->cll; 3958 clm = cl_metadata(sc, fl, cll, sd->cl); 3959 if (sd->nmbuf == 0) 3960 uma_zfree(sc->sge.sw_zone_info[cll->zidx].zone, sd->cl); 3961 else if (clm && atomic_fetchadd_int(&clm->refcount, -1) == 1) { 3962 uma_zfree(sc->sge.sw_zone_info[cll->zidx].zone, sd->cl); 3963 counter_u64_add(extfree_rels, 1); 3964 } 3965 sd->cl = NULL; 3966 } 3967 3968 free(fl->sdesc, M_CXGBE); 3969 fl->sdesc = NULL; 3970 } 3971 3972 static inline void 3973 get_pkt_gl(struct mbuf *m, struct sglist *gl) 3974 { 3975 int rc; 3976 3977 M_ASSERTPKTHDR(m); 3978 3979 sglist_reset(gl); 3980 rc = sglist_append_mbuf(gl, m); 3981 if (__predict_false(rc != 0)) { 3982 panic("%s: mbuf %p (%d segs) was vetted earlier but now fails " 3983 "with %d.", __func__, m, mbuf_nsegs(m), rc); 3984 } 3985 3986 KASSERT(gl->sg_nseg == mbuf_nsegs(m), 3987 ("%s: nsegs changed for mbuf %p from %d to %d", __func__, m, 3988 mbuf_nsegs(m), gl->sg_nseg)); 3989 KASSERT(gl->sg_nseg > 0 && 3990 gl->sg_nseg <= (needs_tso(m) ? TX_SGL_SEGS_TSO : TX_SGL_SEGS), 3991 ("%s: %d segments, should have been 1 <= nsegs <= %d", __func__, 3992 gl->sg_nseg, needs_tso(m) ? TX_SGL_SEGS_TSO : TX_SGL_SEGS)); 3993 } 3994 3995 /* 3996 * len16 for a txpkt WR with a GL. Includes the firmware work request header. 3997 */ 3998 static inline u_int 3999 txpkt_len16(u_int nsegs, u_int tso) 4000 { 4001 u_int n; 4002 4003 MPASS(nsegs > 0); 4004 4005 nsegs--; /* first segment is part of ulptx_sgl */ 4006 n = sizeof(struct fw_eth_tx_pkt_wr) + sizeof(struct cpl_tx_pkt_core) + 4007 sizeof(struct ulptx_sgl) + 8 * ((3 * nsegs) / 2 + (nsegs & 1)); 4008 if (tso) 4009 n += sizeof(struct cpl_tx_pkt_lso_core); 4010 4011 return (howmany(n, 16)); 4012 } 4013 4014 /* 4015 * len16 for a txpkt_vm WR with a GL. Includes the firmware work 4016 * request header. 4017 */ 4018 static inline u_int 4019 txpkt_vm_len16(u_int nsegs, u_int tso) 4020 { 4021 u_int n; 4022 4023 MPASS(nsegs > 0); 4024 4025 nsegs--; /* first segment is part of ulptx_sgl */ 4026 n = sizeof(struct fw_eth_tx_pkt_vm_wr) + 4027 sizeof(struct cpl_tx_pkt_core) + 4028 sizeof(struct ulptx_sgl) + 8 * ((3 * nsegs) / 2 + (nsegs & 1)); 4029 if (tso) 4030 n += sizeof(struct cpl_tx_pkt_lso_core); 4031 4032 return (howmany(n, 16)); 4033 } 4034 4035 /* 4036 * len16 for a txpkts type 0 WR with a GL. Does not include the firmware work 4037 * request header. 4038 */ 4039 static inline u_int 4040 txpkts0_len16(u_int nsegs) 4041 { 4042 u_int n; 4043 4044 MPASS(nsegs > 0); 4045 4046 nsegs--; /* first segment is part of ulptx_sgl */ 4047 n = sizeof(struct ulp_txpkt) + sizeof(struct ulptx_idata) + 4048 sizeof(struct cpl_tx_pkt_core) + sizeof(struct ulptx_sgl) + 4049 8 * ((3 * nsegs) / 2 + (nsegs & 1)); 4050 4051 return (howmany(n, 16)); 4052 } 4053 4054 /* 4055 * len16 for a txpkts type 1 WR with a GL. Does not include the firmware work 4056 * request header. 4057 */ 4058 static inline u_int 4059 txpkts1_len16(void) 4060 { 4061 u_int n; 4062 4063 n = sizeof(struct cpl_tx_pkt_core) + sizeof(struct ulptx_sgl); 4064 4065 return (howmany(n, 16)); 4066 } 4067 4068 static inline u_int 4069 imm_payload(u_int ndesc) 4070 { 4071 u_int n; 4072 4073 n = ndesc * EQ_ESIZE - sizeof(struct fw_eth_tx_pkt_wr) - 4074 sizeof(struct cpl_tx_pkt_core); 4075 4076 return (n); 4077 } 4078 4079 /* 4080 * Write a VM txpkt WR for this packet to the hardware descriptors, update the 4081 * software descriptor, and advance the pidx. It is guaranteed that enough 4082 * descriptors are available. 4083 * 4084 * The return value is the # of hardware descriptors used. 4085 */ 4086 static u_int 4087 write_txpkt_vm_wr(struct adapter *sc, struct sge_txq *txq, 4088 struct fw_eth_tx_pkt_vm_wr *wr, struct mbuf *m0, u_int available) 4089 { 4090 struct sge_eq *eq = &txq->eq; 4091 struct tx_sdesc *txsd; 4092 struct cpl_tx_pkt_core *cpl; 4093 uint32_t ctrl; /* used in many unrelated places */ 4094 uint64_t ctrl1; 4095 int csum_type, len16, ndesc, pktlen, nsegs; 4096 caddr_t dst; 4097 4098 TXQ_LOCK_ASSERT_OWNED(txq); 4099 M_ASSERTPKTHDR(m0); 4100 MPASS(available > 0 && available < eq->sidx); 4101 4102 len16 = mbuf_len16(m0); 4103 nsegs = mbuf_nsegs(m0); 4104 pktlen = m0->m_pkthdr.len; 4105 ctrl = sizeof(struct cpl_tx_pkt_core); 4106 if (needs_tso(m0)) 4107 ctrl += sizeof(struct cpl_tx_pkt_lso_core); 4108 ndesc = howmany(len16, EQ_ESIZE / 16); 4109 MPASS(ndesc <= available); 4110 4111 /* Firmware work request header */ 4112 MPASS(wr == (void *)&eq->desc[eq->pidx]); 4113 wr->op_immdlen = htobe32(V_FW_WR_OP(FW_ETH_TX_PKT_VM_WR) | 4114 V_FW_ETH_TX_PKT_WR_IMMDLEN(ctrl)); 4115 4116 ctrl = V_FW_WR_LEN16(len16); 4117 wr->equiq_to_len16 = htobe32(ctrl); 4118 wr->r3[0] = 0; 4119 wr->r3[1] = 0; 4120 4121 /* 4122 * Copy over ethmacdst, ethmacsrc, ethtype, and vlantci. 4123 * vlantci is ignored unless the ethtype is 0x8100, so it's 4124 * simpler to always copy it rather than making it 4125 * conditional. Also, it seems that we do not have to set 4126 * vlantci or fake the ethtype when doing VLAN tag insertion. 4127 */ 4128 m_copydata(m0, 0, sizeof(struct ether_header) + 2, wr->ethmacdst); 4129 4130 csum_type = -1; 4131 if (needs_tso(m0)) { 4132 struct cpl_tx_pkt_lso_core *lso = (void *)(wr + 1); 4133 4134 KASSERT(m0->m_pkthdr.l2hlen > 0 && m0->m_pkthdr.l3hlen > 0 && 4135 m0->m_pkthdr.l4hlen > 0, 4136 ("%s: mbuf %p needs TSO but missing header lengths", 4137 __func__, m0)); 4138 4139 ctrl = V_LSO_OPCODE(CPL_TX_PKT_LSO) | F_LSO_FIRST_SLICE | 4140 F_LSO_LAST_SLICE | V_LSO_IPHDR_LEN(m0->m_pkthdr.l3hlen >> 2) 4141 | V_LSO_TCPHDR_LEN(m0->m_pkthdr.l4hlen >> 2); 4142 if (m0->m_pkthdr.l2hlen == sizeof(struct ether_vlan_header)) 4143 ctrl |= V_LSO_ETHHDR_LEN(1); 4144 if (m0->m_pkthdr.l3hlen == sizeof(struct ip6_hdr)) 4145 ctrl |= F_LSO_IPV6; 4146 4147 lso->lso_ctrl = htobe32(ctrl); 4148 lso->ipid_ofst = htobe16(0); 4149 lso->mss = htobe16(m0->m_pkthdr.tso_segsz); 4150 lso->seqno_offset = htobe32(0); 4151 lso->len = htobe32(pktlen); 4152 4153 if (m0->m_pkthdr.l3hlen == sizeof(struct ip6_hdr)) 4154 csum_type = TX_CSUM_TCPIP6; 4155 else 4156 csum_type = TX_CSUM_TCPIP; 4157 4158 cpl = (void *)(lso + 1); 4159 4160 txq->tso_wrs++; 4161 } else { 4162 if (m0->m_pkthdr.csum_flags & CSUM_IP_TCP) 4163 csum_type = TX_CSUM_TCPIP; 4164 else if (m0->m_pkthdr.csum_flags & CSUM_IP_UDP) 4165 csum_type = TX_CSUM_UDPIP; 4166 else if (m0->m_pkthdr.csum_flags & CSUM_IP6_TCP) 4167 csum_type = TX_CSUM_TCPIP6; 4168 else if (m0->m_pkthdr.csum_flags & CSUM_IP6_UDP) 4169 csum_type = TX_CSUM_UDPIP6; 4170 #if defined(INET) 4171 else if (m0->m_pkthdr.csum_flags & CSUM_IP) { 4172 /* 4173 * XXX: The firmware appears to stomp on the 4174 * fragment/flags field of the IP header when 4175 * using TX_CSUM_IP. Fall back to doing 4176 * software checksums. 4177 */ 4178 u_short *sump; 4179 struct mbuf *m; 4180 int offset; 4181 4182 m = m0; 4183 offset = 0; 4184 sump = m_advance(&m, &offset, m0->m_pkthdr.l2hlen + 4185 offsetof(struct ip, ip_sum)); 4186 *sump = in_cksum_skip(m0, m0->m_pkthdr.l2hlen + 4187 m0->m_pkthdr.l3hlen, m0->m_pkthdr.l2hlen); 4188 m0->m_pkthdr.csum_flags &= ~CSUM_IP; 4189 } 4190 #endif 4191 4192 cpl = (void *)(wr + 1); 4193 } 4194 4195 /* Checksum offload */ 4196 ctrl1 = 0; 4197 if (needs_l3_csum(m0) == 0) 4198 ctrl1 |= F_TXPKT_IPCSUM_DIS; 4199 if (csum_type >= 0) { 4200 KASSERT(m0->m_pkthdr.l2hlen > 0 && m0->m_pkthdr.l3hlen > 0, 4201 ("%s: mbuf %p needs checksum offload but missing header lengths", 4202 __func__, m0)); 4203 4204 if (chip_id(sc) <= CHELSIO_T5) { 4205 ctrl1 |= V_TXPKT_ETHHDR_LEN(m0->m_pkthdr.l2hlen - 4206 ETHER_HDR_LEN); 4207 } else { 4208 ctrl1 |= V_T6_TXPKT_ETHHDR_LEN(m0->m_pkthdr.l2hlen - 4209 ETHER_HDR_LEN); 4210 } 4211 ctrl1 |= V_TXPKT_IPHDR_LEN(m0->m_pkthdr.l3hlen); 4212 ctrl1 |= V_TXPKT_CSUM_TYPE(csum_type); 4213 } else 4214 ctrl1 |= F_TXPKT_L4CSUM_DIS; 4215 if (m0->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP | 4216 CSUM_UDP_IPV6 | CSUM_TCP_IPV6 | CSUM_TSO)) 4217 txq->txcsum++; /* some hardware assistance provided */ 4218 4219 /* VLAN tag insertion */ 4220 if (needs_vlan_insertion(m0)) { 4221 ctrl1 |= F_TXPKT_VLAN_VLD | 4222 V_TXPKT_VLAN(m0->m_pkthdr.ether_vtag); 4223 txq->vlan_insertion++; 4224 } 4225 4226 /* CPL header */ 4227 cpl->ctrl0 = txq->cpl_ctrl0; 4228 cpl->pack = 0; 4229 cpl->len = htobe16(pktlen); 4230 cpl->ctrl1 = htobe64(ctrl1); 4231 4232 /* SGL */ 4233 dst = (void *)(cpl + 1); 4234 4235 /* 4236 * A packet using TSO will use up an entire descriptor for the 4237 * firmware work request header, LSO CPL, and TX_PKT_XT CPL. 4238 * If this descriptor is the last descriptor in the ring, wrap 4239 * around to the front of the ring explicitly for the start of 4240 * the sgl. 4241 */ 4242 if (dst == (void *)&eq->desc[eq->sidx]) { 4243 dst = (void *)&eq->desc[0]; 4244 write_gl_to_txd(txq, m0, &dst, 0); 4245 } else 4246 write_gl_to_txd(txq, m0, &dst, eq->sidx - ndesc < eq->pidx); 4247 txq->sgl_wrs++; 4248 4249 txq->txpkt_wrs++; 4250 4251 txsd = &txq->sdesc[eq->pidx]; 4252 txsd->m = m0; 4253 txsd->desc_used = ndesc; 4254 4255 return (ndesc); 4256 } 4257 4258 /* 4259 * Write a txpkt WR for this packet to the hardware descriptors, update the 4260 * software descriptor, and advance the pidx. It is guaranteed that enough 4261 * descriptors are available. 4262 * 4263 * The return value is the # of hardware descriptors used. 4264 */ 4265 static u_int 4266 write_txpkt_wr(struct sge_txq *txq, struct fw_eth_tx_pkt_wr *wr, 4267 struct mbuf *m0, u_int available) 4268 { 4269 struct sge_eq *eq = &txq->eq; 4270 struct tx_sdesc *txsd; 4271 struct cpl_tx_pkt_core *cpl; 4272 uint32_t ctrl; /* used in many unrelated places */ 4273 uint64_t ctrl1; 4274 int len16, ndesc, pktlen, nsegs; 4275 caddr_t dst; 4276 4277 TXQ_LOCK_ASSERT_OWNED(txq); 4278 M_ASSERTPKTHDR(m0); 4279 MPASS(available > 0 && available < eq->sidx); 4280 4281 len16 = mbuf_len16(m0); 4282 nsegs = mbuf_nsegs(m0); 4283 pktlen = m0->m_pkthdr.len; 4284 ctrl = sizeof(struct cpl_tx_pkt_core); 4285 if (needs_tso(m0)) 4286 ctrl += sizeof(struct cpl_tx_pkt_lso_core); 4287 else if (pktlen <= imm_payload(2) && available >= 2) { 4288 /* Immediate data. Recalculate len16 and set nsegs to 0. */ 4289 ctrl += pktlen; 4290 len16 = howmany(sizeof(struct fw_eth_tx_pkt_wr) + 4291 sizeof(struct cpl_tx_pkt_core) + pktlen, 16); 4292 nsegs = 0; 4293 } 4294 ndesc = howmany(len16, EQ_ESIZE / 16); 4295 MPASS(ndesc <= available); 4296 4297 /* Firmware work request header */ 4298 MPASS(wr == (void *)&eq->desc[eq->pidx]); 4299 wr->op_immdlen = htobe32(V_FW_WR_OP(FW_ETH_TX_PKT_WR) | 4300 V_FW_ETH_TX_PKT_WR_IMMDLEN(ctrl)); 4301 4302 ctrl = V_FW_WR_LEN16(len16); 4303 wr->equiq_to_len16 = htobe32(ctrl); 4304 wr->r3 = 0; 4305 4306 if (needs_tso(m0)) { 4307 struct cpl_tx_pkt_lso_core *lso = (void *)(wr + 1); 4308 4309 KASSERT(m0->m_pkthdr.l2hlen > 0 && m0->m_pkthdr.l3hlen > 0 && 4310 m0->m_pkthdr.l4hlen > 0, 4311 ("%s: mbuf %p needs TSO but missing header lengths", 4312 __func__, m0)); 4313 4314 ctrl = V_LSO_OPCODE(CPL_TX_PKT_LSO) | F_LSO_FIRST_SLICE | 4315 F_LSO_LAST_SLICE | V_LSO_IPHDR_LEN(m0->m_pkthdr.l3hlen >> 2) 4316 | V_LSO_TCPHDR_LEN(m0->m_pkthdr.l4hlen >> 2); 4317 if (m0->m_pkthdr.l2hlen == sizeof(struct ether_vlan_header)) 4318 ctrl |= V_LSO_ETHHDR_LEN(1); 4319 if (m0->m_pkthdr.l3hlen == sizeof(struct ip6_hdr)) 4320 ctrl |= F_LSO_IPV6; 4321 4322 lso->lso_ctrl = htobe32(ctrl); 4323 lso->ipid_ofst = htobe16(0); 4324 lso->mss = htobe16(m0->m_pkthdr.tso_segsz); 4325 lso->seqno_offset = htobe32(0); 4326 lso->len = htobe32(pktlen); 4327 4328 cpl = (void *)(lso + 1); 4329 4330 txq->tso_wrs++; 4331 } else 4332 cpl = (void *)(wr + 1); 4333 4334 /* Checksum offload */ 4335 ctrl1 = 0; 4336 if (needs_l3_csum(m0) == 0) 4337 ctrl1 |= F_TXPKT_IPCSUM_DIS; 4338 if (needs_l4_csum(m0) == 0) 4339 ctrl1 |= F_TXPKT_L4CSUM_DIS; 4340 if (m0->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP | 4341 CSUM_UDP_IPV6 | CSUM_TCP_IPV6 | CSUM_TSO)) 4342 txq->txcsum++; /* some hardware assistance provided */ 4343 4344 /* VLAN tag insertion */ 4345 if (needs_vlan_insertion(m0)) { 4346 ctrl1 |= F_TXPKT_VLAN_VLD | V_TXPKT_VLAN(m0->m_pkthdr.ether_vtag); 4347 txq->vlan_insertion++; 4348 } 4349 4350 /* CPL header */ 4351 cpl->ctrl0 = txq->cpl_ctrl0; 4352 cpl->pack = 0; 4353 cpl->len = htobe16(pktlen); 4354 cpl->ctrl1 = htobe64(ctrl1); 4355 4356 /* SGL */ 4357 dst = (void *)(cpl + 1); 4358 if (nsegs > 0) { 4359 4360 write_gl_to_txd(txq, m0, &dst, eq->sidx - ndesc < eq->pidx); 4361 txq->sgl_wrs++; 4362 } else { 4363 struct mbuf *m; 4364 4365 for (m = m0; m != NULL; m = m->m_next) { 4366 copy_to_txd(eq, mtod(m, caddr_t), &dst, m->m_len); 4367 #ifdef INVARIANTS 4368 pktlen -= m->m_len; 4369 #endif 4370 } 4371 #ifdef INVARIANTS 4372 KASSERT(pktlen == 0, ("%s: %d bytes left.", __func__, pktlen)); 4373 #endif 4374 txq->imm_wrs++; 4375 } 4376 4377 txq->txpkt_wrs++; 4378 4379 txsd = &txq->sdesc[eq->pidx]; 4380 txsd->m = m0; 4381 txsd->desc_used = ndesc; 4382 4383 return (ndesc); 4384 } 4385 4386 static int 4387 try_txpkts(struct mbuf *m, struct mbuf *n, struct txpkts *txp, u_int available) 4388 { 4389 u_int needed, nsegs1, nsegs2, l1, l2; 4390 4391 if (cannot_use_txpkts(m) || cannot_use_txpkts(n)) 4392 return (1); 4393 4394 nsegs1 = mbuf_nsegs(m); 4395 nsegs2 = mbuf_nsegs(n); 4396 if (nsegs1 + nsegs2 == 2) { 4397 txp->wr_type = 1; 4398 l1 = l2 = txpkts1_len16(); 4399 } else { 4400 txp->wr_type = 0; 4401 l1 = txpkts0_len16(nsegs1); 4402 l2 = txpkts0_len16(nsegs2); 4403 } 4404 txp->len16 = howmany(sizeof(struct fw_eth_tx_pkts_wr), 16) + l1 + l2; 4405 needed = howmany(txp->len16, EQ_ESIZE / 16); 4406 if (needed > SGE_MAX_WR_NDESC || needed > available) 4407 return (1); 4408 4409 txp->plen = m->m_pkthdr.len + n->m_pkthdr.len; 4410 if (txp->plen > 65535) 4411 return (1); 4412 4413 txp->npkt = 2; 4414 set_mbuf_len16(m, l1); 4415 set_mbuf_len16(n, l2); 4416 4417 return (0); 4418 } 4419 4420 static int 4421 add_to_txpkts(struct mbuf *m, struct txpkts *txp, u_int available) 4422 { 4423 u_int plen, len16, needed, nsegs; 4424 4425 MPASS(txp->wr_type == 0 || txp->wr_type == 1); 4426 4427 nsegs = mbuf_nsegs(m); 4428 if (needs_tso(m) || (txp->wr_type == 1 && nsegs != 1)) 4429 return (1); 4430 4431 plen = txp->plen + m->m_pkthdr.len; 4432 if (plen > 65535) 4433 return (1); 4434 4435 if (txp->wr_type == 0) 4436 len16 = txpkts0_len16(nsegs); 4437 else 4438 len16 = txpkts1_len16(); 4439 needed = howmany(txp->len16 + len16, EQ_ESIZE / 16); 4440 if (needed > SGE_MAX_WR_NDESC || needed > available) 4441 return (1); 4442 4443 txp->npkt++; 4444 txp->plen = plen; 4445 txp->len16 += len16; 4446 set_mbuf_len16(m, len16); 4447 4448 return (0); 4449 } 4450 4451 /* 4452 * Write a txpkts WR for the packets in txp to the hardware descriptors, update 4453 * the software descriptor, and advance the pidx. It is guaranteed that enough 4454 * descriptors are available. 4455 * 4456 * The return value is the # of hardware descriptors used. 4457 */ 4458 static u_int 4459 write_txpkts_wr(struct sge_txq *txq, struct fw_eth_tx_pkts_wr *wr, 4460 struct mbuf *m0, const struct txpkts *txp, u_int available) 4461 { 4462 struct sge_eq *eq = &txq->eq; 4463 struct tx_sdesc *txsd; 4464 struct cpl_tx_pkt_core *cpl; 4465 uint32_t ctrl; 4466 uint64_t ctrl1; 4467 int ndesc, checkwrap; 4468 struct mbuf *m; 4469 void *flitp; 4470 4471 TXQ_LOCK_ASSERT_OWNED(txq); 4472 MPASS(txp->npkt > 0); 4473 MPASS(txp->plen < 65536); 4474 MPASS(m0 != NULL); 4475 MPASS(m0->m_nextpkt != NULL); 4476 MPASS(txp->len16 <= howmany(SGE_MAX_WR_LEN, 16)); 4477 MPASS(available > 0 && available < eq->sidx); 4478 4479 ndesc = howmany(txp->len16, EQ_ESIZE / 16); 4480 MPASS(ndesc <= available); 4481 4482 MPASS(wr == (void *)&eq->desc[eq->pidx]); 4483 wr->op_pkd = htobe32(V_FW_WR_OP(FW_ETH_TX_PKTS_WR)); 4484 ctrl = V_FW_WR_LEN16(txp->len16); 4485 wr->equiq_to_len16 = htobe32(ctrl); 4486 wr->plen = htobe16(txp->plen); 4487 wr->npkt = txp->npkt; 4488 wr->r3 = 0; 4489 wr->type = txp->wr_type; 4490 flitp = wr + 1; 4491 4492 /* 4493 * At this point we are 16B into a hardware descriptor. If checkwrap is 4494 * set then we know the WR is going to wrap around somewhere. We'll 4495 * check for that at appropriate points. 4496 */ 4497 checkwrap = eq->sidx - ndesc < eq->pidx; 4498 for (m = m0; m != NULL; m = m->m_nextpkt) { 4499 if (txp->wr_type == 0) { 4500 struct ulp_txpkt *ulpmc; 4501 struct ulptx_idata *ulpsc; 4502 4503 /* ULP master command */ 4504 ulpmc = flitp; 4505 ulpmc->cmd_dest = htobe32(V_ULPTX_CMD(ULP_TX_PKT) | 4506 V_ULP_TXPKT_DEST(0) | V_ULP_TXPKT_FID(eq->iqid)); 4507 ulpmc->len = htobe32(mbuf_len16(m)); 4508 4509 /* ULP subcommand */ 4510 ulpsc = (void *)(ulpmc + 1); 4511 ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_IMM) | 4512 F_ULP_TX_SC_MORE); 4513 ulpsc->len = htobe32(sizeof(struct cpl_tx_pkt_core)); 4514 4515 cpl = (void *)(ulpsc + 1); 4516 if (checkwrap && 4517 (uintptr_t)cpl == (uintptr_t)&eq->desc[eq->sidx]) 4518 cpl = (void *)&eq->desc[0]; 4519 txq->txpkts0_pkts += txp->npkt; 4520 txq->txpkts0_wrs++; 4521 } else { 4522 cpl = flitp; 4523 txq->txpkts1_pkts += txp->npkt; 4524 txq->txpkts1_wrs++; 4525 } 4526 4527 /* Checksum offload */ 4528 ctrl1 = 0; 4529 if (needs_l3_csum(m) == 0) 4530 ctrl1 |= F_TXPKT_IPCSUM_DIS; 4531 if (needs_l4_csum(m) == 0) 4532 ctrl1 |= F_TXPKT_L4CSUM_DIS; 4533 if (m->m_pkthdr.csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP | 4534 CSUM_UDP_IPV6 | CSUM_TCP_IPV6 | CSUM_TSO)) 4535 txq->txcsum++; /* some hardware assistance provided */ 4536 4537 /* VLAN tag insertion */ 4538 if (needs_vlan_insertion(m)) { 4539 ctrl1 |= F_TXPKT_VLAN_VLD | 4540 V_TXPKT_VLAN(m->m_pkthdr.ether_vtag); 4541 txq->vlan_insertion++; 4542 } 4543 4544 /* CPL header */ 4545 cpl->ctrl0 = txq->cpl_ctrl0; 4546 cpl->pack = 0; 4547 cpl->len = htobe16(m->m_pkthdr.len); 4548 cpl->ctrl1 = htobe64(ctrl1); 4549 4550 flitp = cpl + 1; 4551 if (checkwrap && 4552 (uintptr_t)flitp == (uintptr_t)&eq->desc[eq->sidx]) 4553 flitp = (void *)&eq->desc[0]; 4554 4555 write_gl_to_txd(txq, m, (caddr_t *)(&flitp), checkwrap); 4556 4557 } 4558 4559 txsd = &txq->sdesc[eq->pidx]; 4560 txsd->m = m0; 4561 txsd->desc_used = ndesc; 4562 4563 return (ndesc); 4564 } 4565 4566 /* 4567 * If the SGL ends on an address that is not 16 byte aligned, this function will 4568 * add a 0 filled flit at the end. 4569 */ 4570 static void 4571 write_gl_to_txd(struct sge_txq *txq, struct mbuf *m, caddr_t *to, int checkwrap) 4572 { 4573 struct sge_eq *eq = &txq->eq; 4574 struct sglist *gl = txq->gl; 4575 struct sglist_seg *seg; 4576 __be64 *flitp, *wrap; 4577 struct ulptx_sgl *usgl; 4578 int i, nflits, nsegs; 4579 4580 KASSERT(((uintptr_t)(*to) & 0xf) == 0, 4581 ("%s: SGL must start at a 16 byte boundary: %p", __func__, *to)); 4582 MPASS((uintptr_t)(*to) >= (uintptr_t)&eq->desc[0]); 4583 MPASS((uintptr_t)(*to) < (uintptr_t)&eq->desc[eq->sidx]); 4584 4585 get_pkt_gl(m, gl); 4586 nsegs = gl->sg_nseg; 4587 MPASS(nsegs > 0); 4588 4589 nflits = (3 * (nsegs - 1)) / 2 + ((nsegs - 1) & 1) + 2; 4590 flitp = (__be64 *)(*to); 4591 wrap = (__be64 *)(&eq->desc[eq->sidx]); 4592 seg = &gl->sg_segs[0]; 4593 usgl = (void *)flitp; 4594 4595 /* 4596 * We start at a 16 byte boundary somewhere inside the tx descriptor 4597 * ring, so we're at least 16 bytes away from the status page. There is 4598 * no chance of a wrap around in the middle of usgl (which is 16 bytes). 4599 */ 4600 4601 usgl->cmd_nsge = htobe32(V_ULPTX_CMD(ULP_TX_SC_DSGL) | 4602 V_ULPTX_NSGE(nsegs)); 4603 usgl->len0 = htobe32(seg->ss_len); 4604 usgl->addr0 = htobe64(seg->ss_paddr); 4605 seg++; 4606 4607 if (checkwrap == 0 || (uintptr_t)(flitp + nflits) <= (uintptr_t)wrap) { 4608 4609 /* Won't wrap around at all */ 4610 4611 for (i = 0; i < nsegs - 1; i++, seg++) { 4612 usgl->sge[i / 2].len[i & 1] = htobe32(seg->ss_len); 4613 usgl->sge[i / 2].addr[i & 1] = htobe64(seg->ss_paddr); 4614 } 4615 if (i & 1) 4616 usgl->sge[i / 2].len[1] = htobe32(0); 4617 flitp += nflits; 4618 } else { 4619 4620 /* Will wrap somewhere in the rest of the SGL */ 4621 4622 /* 2 flits already written, write the rest flit by flit */ 4623 flitp = (void *)(usgl + 1); 4624 for (i = 0; i < nflits - 2; i++) { 4625 if (flitp == wrap) 4626 flitp = (void *)eq->desc; 4627 *flitp++ = get_flit(seg, nsegs - 1, i); 4628 } 4629 } 4630 4631 if (nflits & 1) { 4632 MPASS(((uintptr_t)flitp) & 0xf); 4633 *flitp++ = 0; 4634 } 4635 4636 MPASS((((uintptr_t)flitp) & 0xf) == 0); 4637 if (__predict_false(flitp == wrap)) 4638 *to = (void *)eq->desc; 4639 else 4640 *to = (void *)flitp; 4641 } 4642 4643 static inline void 4644 copy_to_txd(struct sge_eq *eq, caddr_t from, caddr_t *to, int len) 4645 { 4646 4647 MPASS((uintptr_t)(*to) >= (uintptr_t)&eq->desc[0]); 4648 MPASS((uintptr_t)(*to) < (uintptr_t)&eq->desc[eq->sidx]); 4649 4650 if (__predict_true((uintptr_t)(*to) + len <= 4651 (uintptr_t)&eq->desc[eq->sidx])) { 4652 bcopy(from, *to, len); 4653 (*to) += len; 4654 } else { 4655 int portion = (uintptr_t)&eq->desc[eq->sidx] - (uintptr_t)(*to); 4656 4657 bcopy(from, *to, portion); 4658 from += portion; 4659 portion = len - portion; /* remaining */ 4660 bcopy(from, (void *)eq->desc, portion); 4661 (*to) = (caddr_t)eq->desc + portion; 4662 } 4663 } 4664 4665 static inline void 4666 ring_eq_db(struct adapter *sc, struct sge_eq *eq, u_int n) 4667 { 4668 u_int db; 4669 4670 MPASS(n > 0); 4671 4672 db = eq->doorbells; 4673 if (n > 1) 4674 clrbit(&db, DOORBELL_WCWR); 4675 wmb(); 4676 4677 switch (ffs(db) - 1) { 4678 case DOORBELL_UDB: 4679 *eq->udb = htole32(V_QID(eq->udb_qid) | V_PIDX(n)); 4680 break; 4681 4682 case DOORBELL_WCWR: { 4683 volatile uint64_t *dst, *src; 4684 int i; 4685 4686 /* 4687 * Queues whose 128B doorbell segment fits in the page do not 4688 * use relative qid (udb_qid is always 0). Only queues with 4689 * doorbell segments can do WCWR. 4690 */ 4691 KASSERT(eq->udb_qid == 0 && n == 1, 4692 ("%s: inappropriate doorbell (0x%x, %d, %d) for eq %p", 4693 __func__, eq->doorbells, n, eq->dbidx, eq)); 4694 4695 dst = (volatile void *)((uintptr_t)eq->udb + UDBS_WR_OFFSET - 4696 UDBS_DB_OFFSET); 4697 i = eq->dbidx; 4698 src = (void *)&eq->desc[i]; 4699 while (src != (void *)&eq->desc[i + 1]) 4700 *dst++ = *src++; 4701 wmb(); 4702 break; 4703 } 4704 4705 case DOORBELL_UDBWC: 4706 *eq->udb = htole32(V_QID(eq->udb_qid) | V_PIDX(n)); 4707 wmb(); 4708 break; 4709 4710 case DOORBELL_KDB: 4711 t4_write_reg(sc, sc->sge_kdoorbell_reg, 4712 V_QID(eq->cntxt_id) | V_PIDX(n)); 4713 break; 4714 } 4715 4716 IDXINCR(eq->dbidx, n, eq->sidx); 4717 } 4718 4719 static inline u_int 4720 reclaimable_tx_desc(struct sge_eq *eq) 4721 { 4722 uint16_t hw_cidx; 4723 4724 hw_cidx = read_hw_cidx(eq); 4725 return (IDXDIFF(hw_cidx, eq->cidx, eq->sidx)); 4726 } 4727 4728 static inline u_int 4729 total_available_tx_desc(struct sge_eq *eq) 4730 { 4731 uint16_t hw_cidx, pidx; 4732 4733 hw_cidx = read_hw_cidx(eq); 4734 pidx = eq->pidx; 4735 4736 if (pidx == hw_cidx) 4737 return (eq->sidx - 1); 4738 else 4739 return (IDXDIFF(hw_cidx, pidx, eq->sidx) - 1); 4740 } 4741 4742 static inline uint16_t 4743 read_hw_cidx(struct sge_eq *eq) 4744 { 4745 struct sge_qstat *spg = (void *)&eq->desc[eq->sidx]; 4746 uint16_t cidx = spg->cidx; /* stable snapshot */ 4747 4748 return (be16toh(cidx)); 4749 } 4750 4751 /* 4752 * Reclaim 'n' descriptors approximately. 4753 */ 4754 static u_int 4755 reclaim_tx_descs(struct sge_txq *txq, u_int n) 4756 { 4757 struct tx_sdesc *txsd; 4758 struct sge_eq *eq = &txq->eq; 4759 u_int can_reclaim, reclaimed; 4760 4761 TXQ_LOCK_ASSERT_OWNED(txq); 4762 MPASS(n > 0); 4763 4764 reclaimed = 0; 4765 can_reclaim = reclaimable_tx_desc(eq); 4766 while (can_reclaim && reclaimed < n) { 4767 int ndesc; 4768 struct mbuf *m, *nextpkt; 4769 4770 txsd = &txq->sdesc[eq->cidx]; 4771 ndesc = txsd->desc_used; 4772 4773 /* Firmware doesn't return "partial" credits. */ 4774 KASSERT(can_reclaim >= ndesc, 4775 ("%s: unexpected number of credits: %d, %d", 4776 __func__, can_reclaim, ndesc)); 4777 4778 for (m = txsd->m; m != NULL; m = nextpkt) { 4779 nextpkt = m->m_nextpkt; 4780 m->m_nextpkt = NULL; 4781 m_freem(m); 4782 } 4783 reclaimed += ndesc; 4784 can_reclaim -= ndesc; 4785 IDXINCR(eq->cidx, ndesc, eq->sidx); 4786 } 4787 4788 return (reclaimed); 4789 } 4790 4791 static void 4792 tx_reclaim(void *arg, int n) 4793 { 4794 struct sge_txq *txq = arg; 4795 struct sge_eq *eq = &txq->eq; 4796 4797 do { 4798 if (TXQ_TRYLOCK(txq) == 0) 4799 break; 4800 n = reclaim_tx_descs(txq, 32); 4801 if (eq->cidx == eq->pidx) 4802 eq->equeqidx = eq->pidx; 4803 TXQ_UNLOCK(txq); 4804 } while (n > 0); 4805 } 4806 4807 static __be64 4808 get_flit(struct sglist_seg *segs, int nsegs, int idx) 4809 { 4810 int i = (idx / 3) * 2; 4811 4812 switch (idx % 3) { 4813 case 0: { 4814 __be64 rc; 4815 4816 rc = htobe32(segs[i].ss_len); 4817 if (i + 1 < nsegs) 4818 rc |= (uint64_t)htobe32(segs[i + 1].ss_len) << 32; 4819 4820 return (rc); 4821 } 4822 case 1: 4823 return (htobe64(segs[i].ss_paddr)); 4824 case 2: 4825 return (htobe64(segs[i + 1].ss_paddr)); 4826 } 4827 4828 return (0); 4829 } 4830 4831 static void 4832 find_best_refill_source(struct adapter *sc, struct sge_fl *fl, int maxp) 4833 { 4834 int8_t zidx, hwidx, idx; 4835 uint16_t region1, region3; 4836 int spare, spare_needed, n; 4837 struct sw_zone_info *swz; 4838 struct hw_buf_info *hwb, *hwb_list = &sc->sge.hw_buf_info[0]; 4839 4840 /* 4841 * Buffer Packing: Look for PAGE_SIZE or larger zone which has a bufsize 4842 * large enough for the max payload and cluster metadata. Otherwise 4843 * settle for the largest bufsize that leaves enough room in the cluster 4844 * for metadata. 4845 * 4846 * Without buffer packing: Look for the smallest zone which has a 4847 * bufsize large enough for the max payload. Settle for the largest 4848 * bufsize available if there's nothing big enough for max payload. 4849 */ 4850 spare_needed = fl->flags & FL_BUF_PACKING ? CL_METADATA_SIZE : 0; 4851 swz = &sc->sge.sw_zone_info[0]; 4852 hwidx = -1; 4853 for (zidx = 0; zidx < SW_ZONE_SIZES; zidx++, swz++) { 4854 if (swz->size > largest_rx_cluster) { 4855 if (__predict_true(hwidx != -1)) 4856 break; 4857 4858 /* 4859 * This is a misconfiguration. largest_rx_cluster is 4860 * preventing us from finding a refill source. See 4861 * dev.t5nex.<n>.buffer_sizes to figure out why. 4862 */ 4863 device_printf(sc->dev, "largest_rx_cluster=%u leaves no" 4864 " refill source for fl %p (dma %u). Ignored.\n", 4865 largest_rx_cluster, fl, maxp); 4866 } 4867 for (idx = swz->head_hwidx; idx != -1; idx = hwb->next) { 4868 hwb = &hwb_list[idx]; 4869 spare = swz->size - hwb->size; 4870 if (spare < spare_needed) 4871 continue; 4872 4873 hwidx = idx; /* best option so far */ 4874 if (hwb->size >= maxp) { 4875 4876 if ((fl->flags & FL_BUF_PACKING) == 0) 4877 goto done; /* stop looking (not packing) */ 4878 4879 if (swz->size >= safest_rx_cluster) 4880 goto done; /* stop looking (packing) */ 4881 } 4882 break; /* keep looking, next zone */ 4883 } 4884 } 4885 done: 4886 /* A usable hwidx has been located. */ 4887 MPASS(hwidx != -1); 4888 hwb = &hwb_list[hwidx]; 4889 zidx = hwb->zidx; 4890 swz = &sc->sge.sw_zone_info[zidx]; 4891 region1 = 0; 4892 region3 = swz->size - hwb->size; 4893 4894 /* 4895 * Stay within this zone and see if there is a better match when mbuf 4896 * inlining is allowed. Remember that the hwidx's are sorted in 4897 * decreasing order of size (so in increasing order of spare area). 4898 */ 4899 for (idx = hwidx; idx != -1; idx = hwb->next) { 4900 hwb = &hwb_list[idx]; 4901 spare = swz->size - hwb->size; 4902 4903 if (allow_mbufs_in_cluster == 0 || hwb->size < maxp) 4904 break; 4905 4906 /* 4907 * Do not inline mbufs if doing so would violate the pad/pack 4908 * boundary alignment requirement. 4909 */ 4910 if (fl_pad && (MSIZE % sc->params.sge.pad_boundary) != 0) 4911 continue; 4912 if (fl->flags & FL_BUF_PACKING && 4913 (MSIZE % sc->params.sge.pack_boundary) != 0) 4914 continue; 4915 4916 if (spare < CL_METADATA_SIZE + MSIZE) 4917 continue; 4918 n = (spare - CL_METADATA_SIZE) / MSIZE; 4919 if (n > howmany(hwb->size, maxp)) 4920 break; 4921 4922 hwidx = idx; 4923 if (fl->flags & FL_BUF_PACKING) { 4924 region1 = n * MSIZE; 4925 region3 = spare - region1; 4926 } else { 4927 region1 = MSIZE; 4928 region3 = spare - region1; 4929 break; 4930 } 4931 } 4932 4933 KASSERT(zidx >= 0 && zidx < SW_ZONE_SIZES, 4934 ("%s: bad zone %d for fl %p, maxp %d", __func__, zidx, fl, maxp)); 4935 KASSERT(hwidx >= 0 && hwidx <= SGE_FLBUF_SIZES, 4936 ("%s: bad hwidx %d for fl %p, maxp %d", __func__, hwidx, fl, maxp)); 4937 KASSERT(region1 + sc->sge.hw_buf_info[hwidx].size + region3 == 4938 sc->sge.sw_zone_info[zidx].size, 4939 ("%s: bad buffer layout for fl %p, maxp %d. " 4940 "cl %d; r1 %d, payload %d, r3 %d", __func__, fl, maxp, 4941 sc->sge.sw_zone_info[zidx].size, region1, 4942 sc->sge.hw_buf_info[hwidx].size, region3)); 4943 if (fl->flags & FL_BUF_PACKING || region1 > 0) { 4944 KASSERT(region3 >= CL_METADATA_SIZE, 4945 ("%s: no room for metadata. fl %p, maxp %d; " 4946 "cl %d; r1 %d, payload %d, r3 %d", __func__, fl, maxp, 4947 sc->sge.sw_zone_info[zidx].size, region1, 4948 sc->sge.hw_buf_info[hwidx].size, region3)); 4949 KASSERT(region1 % MSIZE == 0, 4950 ("%s: bad mbuf region for fl %p, maxp %d. " 4951 "cl %d; r1 %d, payload %d, r3 %d", __func__, fl, maxp, 4952 sc->sge.sw_zone_info[zidx].size, region1, 4953 sc->sge.hw_buf_info[hwidx].size, region3)); 4954 } 4955 4956 fl->cll_def.zidx = zidx; 4957 fl->cll_def.hwidx = hwidx; 4958 fl->cll_def.region1 = region1; 4959 fl->cll_def.region3 = region3; 4960 } 4961 4962 static void 4963 find_safe_refill_source(struct adapter *sc, struct sge_fl *fl) 4964 { 4965 struct sge *s = &sc->sge; 4966 struct hw_buf_info *hwb; 4967 struct sw_zone_info *swz; 4968 int spare; 4969 int8_t hwidx; 4970 4971 if (fl->flags & FL_BUF_PACKING) 4972 hwidx = s->safe_hwidx2; /* with room for metadata */ 4973 else if (allow_mbufs_in_cluster && s->safe_hwidx2 != -1) { 4974 hwidx = s->safe_hwidx2; 4975 hwb = &s->hw_buf_info[hwidx]; 4976 swz = &s->sw_zone_info[hwb->zidx]; 4977 spare = swz->size - hwb->size; 4978 4979 /* no good if there isn't room for an mbuf as well */ 4980 if (spare < CL_METADATA_SIZE + MSIZE) 4981 hwidx = s->safe_hwidx1; 4982 } else 4983 hwidx = s->safe_hwidx1; 4984 4985 if (hwidx == -1) { 4986 /* No fallback source */ 4987 fl->cll_alt.hwidx = -1; 4988 fl->cll_alt.zidx = -1; 4989 4990 return; 4991 } 4992 4993 hwb = &s->hw_buf_info[hwidx]; 4994 swz = &s->sw_zone_info[hwb->zidx]; 4995 spare = swz->size - hwb->size; 4996 fl->cll_alt.hwidx = hwidx; 4997 fl->cll_alt.zidx = hwb->zidx; 4998 if (allow_mbufs_in_cluster && 4999 (fl_pad == 0 || (MSIZE % sc->params.sge.pad_boundary) == 0)) 5000 fl->cll_alt.region1 = ((spare - CL_METADATA_SIZE) / MSIZE) * MSIZE; 5001 else 5002 fl->cll_alt.region1 = 0; 5003 fl->cll_alt.region3 = spare - fl->cll_alt.region1; 5004 } 5005 5006 static void 5007 add_fl_to_sfl(struct adapter *sc, struct sge_fl *fl) 5008 { 5009 mtx_lock(&sc->sfl_lock); 5010 FL_LOCK(fl); 5011 if ((fl->flags & FL_DOOMED) == 0) { 5012 fl->flags |= FL_STARVING; 5013 TAILQ_INSERT_TAIL(&sc->sfl, fl, link); 5014 callout_reset(&sc->sfl_callout, hz / 5, refill_sfl, sc); 5015 } 5016 FL_UNLOCK(fl); 5017 mtx_unlock(&sc->sfl_lock); 5018 } 5019 5020 static void 5021 handle_wrq_egr_update(struct adapter *sc, struct sge_eq *eq) 5022 { 5023 struct sge_wrq *wrq = (void *)eq; 5024 5025 atomic_readandclear_int(&eq->equiq); 5026 taskqueue_enqueue(sc->tq[eq->tx_chan], &wrq->wrq_tx_task); 5027 } 5028 5029 static void 5030 handle_eth_egr_update(struct adapter *sc, struct sge_eq *eq) 5031 { 5032 struct sge_txq *txq = (void *)eq; 5033 5034 MPASS((eq->flags & EQ_TYPEMASK) == EQ_ETH); 5035 5036 atomic_readandclear_int(&eq->equiq); 5037 mp_ring_check_drainage(txq->r, 0); 5038 taskqueue_enqueue(sc->tq[eq->tx_chan], &txq->tx_reclaim_task); 5039 } 5040 5041 static int 5042 handle_sge_egr_update(struct sge_iq *iq, const struct rss_header *rss, 5043 struct mbuf *m) 5044 { 5045 const struct cpl_sge_egr_update *cpl = (const void *)(rss + 1); 5046 unsigned int qid = G_EGR_QID(ntohl(cpl->opcode_qid)); 5047 struct adapter *sc = iq->adapter; 5048 struct sge *s = &sc->sge; 5049 struct sge_eq *eq; 5050 static void (*h[])(struct adapter *, struct sge_eq *) = {NULL, 5051 &handle_wrq_egr_update, &handle_eth_egr_update, 5052 &handle_wrq_egr_update}; 5053 5054 KASSERT(m == NULL, ("%s: payload with opcode %02x", __func__, 5055 rss->opcode)); 5056 5057 eq = s->eqmap[qid - s->eq_start - s->eq_base]; 5058 (*h[eq->flags & EQ_TYPEMASK])(sc, eq); 5059 5060 return (0); 5061 } 5062 5063 /* handle_fw_msg works for both fw4_msg and fw6_msg because this is valid */ 5064 CTASSERT(offsetof(struct cpl_fw4_msg, data) == \ 5065 offsetof(struct cpl_fw6_msg, data)); 5066 5067 static int 5068 handle_fw_msg(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m) 5069 { 5070 struct adapter *sc = iq->adapter; 5071 const struct cpl_fw6_msg *cpl = (const void *)(rss + 1); 5072 5073 KASSERT(m == NULL, ("%s: payload with opcode %02x", __func__, 5074 rss->opcode)); 5075 5076 if (cpl->type == FW_TYPE_RSSCPL || cpl->type == FW6_TYPE_RSSCPL) { 5077 const struct rss_header *rss2; 5078 5079 rss2 = (const struct rss_header *)&cpl->data[0]; 5080 return (t4_cpl_handler[rss2->opcode](iq, rss2, m)); 5081 } 5082 5083 return (t4_fw_msg_handler[cpl->type](sc, &cpl->data[0])); 5084 } 5085 5086 /** 5087 * t4_handle_wrerr_rpl - process a FW work request error message 5088 * @adap: the adapter 5089 * @rpl: start of the FW message 5090 */ 5091 static int 5092 t4_handle_wrerr_rpl(struct adapter *adap, const __be64 *rpl) 5093 { 5094 u8 opcode = *(const u8 *)rpl; 5095 const struct fw_error_cmd *e = (const void *)rpl; 5096 unsigned int i; 5097 5098 if (opcode != FW_ERROR_CMD) { 5099 log(LOG_ERR, 5100 "%s: Received WRERR_RPL message with opcode %#x\n", 5101 device_get_nameunit(adap->dev), opcode); 5102 return (EINVAL); 5103 } 5104 log(LOG_ERR, "%s: FW_ERROR (%s) ", device_get_nameunit(adap->dev), 5105 G_FW_ERROR_CMD_FATAL(be32toh(e->op_to_type)) ? "fatal" : 5106 "non-fatal"); 5107 switch (G_FW_ERROR_CMD_TYPE(be32toh(e->op_to_type))) { 5108 case FW_ERROR_TYPE_EXCEPTION: 5109 log(LOG_ERR, "exception info:\n"); 5110 for (i = 0; i < nitems(e->u.exception.info); i++) 5111 log(LOG_ERR, "%s%08x", i == 0 ? "\t" : " ", 5112 be32toh(e->u.exception.info[i])); 5113 log(LOG_ERR, "\n"); 5114 break; 5115 case FW_ERROR_TYPE_HWMODULE: 5116 log(LOG_ERR, "HW module regaddr %08x regval %08x\n", 5117 be32toh(e->u.hwmodule.regaddr), 5118 be32toh(e->u.hwmodule.regval)); 5119 break; 5120 case FW_ERROR_TYPE_WR: 5121 log(LOG_ERR, "WR cidx %d PF %d VF %d eqid %d hdr:\n", 5122 be16toh(e->u.wr.cidx), 5123 G_FW_ERROR_CMD_PFN(be16toh(e->u.wr.pfn_vfn)), 5124 G_FW_ERROR_CMD_VFN(be16toh(e->u.wr.pfn_vfn)), 5125 be32toh(e->u.wr.eqid)); 5126 for (i = 0; i < nitems(e->u.wr.wrhdr); i++) 5127 log(LOG_ERR, "%s%02x", i == 0 ? "\t" : " ", 5128 e->u.wr.wrhdr[i]); 5129 log(LOG_ERR, "\n"); 5130 break; 5131 case FW_ERROR_TYPE_ACL: 5132 log(LOG_ERR, "ACL cidx %d PF %d VF %d eqid %d %s", 5133 be16toh(e->u.acl.cidx), 5134 G_FW_ERROR_CMD_PFN(be16toh(e->u.acl.pfn_vfn)), 5135 G_FW_ERROR_CMD_VFN(be16toh(e->u.acl.pfn_vfn)), 5136 be32toh(e->u.acl.eqid), 5137 G_FW_ERROR_CMD_MV(be16toh(e->u.acl.mv_pkd)) ? "vlanid" : 5138 "MAC"); 5139 for (i = 0; i < nitems(e->u.acl.val); i++) 5140 log(LOG_ERR, " %02x", e->u.acl.val[i]); 5141 log(LOG_ERR, "\n"); 5142 break; 5143 default: 5144 log(LOG_ERR, "type %#x\n", 5145 G_FW_ERROR_CMD_TYPE(be32toh(e->op_to_type))); 5146 return (EINVAL); 5147 } 5148 return (0); 5149 } 5150 5151 static int 5152 sysctl_uint16(SYSCTL_HANDLER_ARGS) 5153 { 5154 uint16_t *id = arg1; 5155 int i = *id; 5156 5157 return sysctl_handle_int(oidp, &i, 0, req); 5158 } 5159 5160 static int 5161 sysctl_bufsizes(SYSCTL_HANDLER_ARGS) 5162 { 5163 struct sge *s = arg1; 5164 struct hw_buf_info *hwb = &s->hw_buf_info[0]; 5165 struct sw_zone_info *swz = &s->sw_zone_info[0]; 5166 int i, rc; 5167 struct sbuf sb; 5168 char c; 5169 5170 sbuf_new(&sb, NULL, 32, SBUF_AUTOEXTEND); 5171 for (i = 0; i < SGE_FLBUF_SIZES; i++, hwb++) { 5172 if (hwb->zidx >= 0 && swz[hwb->zidx].size <= largest_rx_cluster) 5173 c = '*'; 5174 else 5175 c = '\0'; 5176 5177 sbuf_printf(&sb, "%u%c ", hwb->size, c); 5178 } 5179 sbuf_trim(&sb); 5180 sbuf_finish(&sb); 5181 rc = sysctl_handle_string(oidp, sbuf_data(&sb), sbuf_len(&sb), req); 5182 sbuf_delete(&sb); 5183 return (rc); 5184 } 5185 5186 static int 5187 sysctl_tc(SYSCTL_HANDLER_ARGS) 5188 { 5189 struct vi_info *vi = arg1; 5190 struct port_info *pi; 5191 struct adapter *sc; 5192 struct sge_txq *txq; 5193 struct tx_sched_class *tc; 5194 int qidx = arg2, rc, tc_idx; 5195 uint32_t fw_queue, fw_class; 5196 5197 MPASS(qidx >= 0 && qidx < vi->ntxq); 5198 pi = vi->pi; 5199 sc = pi->adapter; 5200 txq = &sc->sge.txq[vi->first_txq + qidx]; 5201 5202 tc_idx = txq->tc_idx; 5203 rc = sysctl_handle_int(oidp, &tc_idx, 0, req); 5204 if (rc != 0 || req->newptr == NULL) 5205 return (rc); 5206 5207 /* Note that -1 is legitimate input (it means unbind). */ 5208 if (tc_idx < -1 || tc_idx >= sc->chip_params->nsched_cls) 5209 return (EINVAL); 5210 5211 rc = begin_synchronized_op(sc, vi, SLEEP_OK | INTR_OK, "t4stc"); 5212 if (rc) 5213 return (rc); 5214 5215 if (tc_idx == txq->tc_idx) { 5216 rc = 0; /* No change, nothing to do. */ 5217 goto done; 5218 } 5219 5220 fw_queue = V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) | 5221 V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DMAQ_EQ_SCHEDCLASS_ETH) | 5222 V_FW_PARAMS_PARAM_YZ(txq->eq.cntxt_id); 5223 5224 if (tc_idx == -1) 5225 fw_class = 0xffffffff; /* Unbind. */ 5226 else { 5227 /* 5228 * Bind to a different class. Ethernet txq's are only allowed 5229 * to bind to cl-rl mode-class for now. XXX: too restrictive. 5230 */ 5231 tc = &pi->tc[tc_idx]; 5232 if (tc->flags & TX_SC_OK && 5233 tc->params.level == SCHED_CLASS_LEVEL_CL_RL && 5234 tc->params.mode == SCHED_CLASS_MODE_CLASS) { 5235 /* Ok to proceed. */ 5236 fw_class = tc_idx; 5237 } else { 5238 rc = tc->flags & TX_SC_OK ? EBUSY : ENXIO; 5239 goto done; 5240 } 5241 } 5242 5243 rc = -t4_set_params(sc, sc->mbox, sc->pf, 0, 1, &fw_queue, &fw_class); 5244 if (rc == 0) { 5245 if (txq->tc_idx != -1) { 5246 tc = &pi->tc[txq->tc_idx]; 5247 MPASS(tc->refcount > 0); 5248 tc->refcount--; 5249 } 5250 if (tc_idx != -1) { 5251 tc = &pi->tc[tc_idx]; 5252 tc->refcount++; 5253 } 5254 txq->tc_idx = tc_idx; 5255 } 5256 done: 5257 end_synchronized_op(sc, 0); 5258 return (rc); 5259 } 5260