1 /*-
2 * Copyright (c) 2014-2018, Matthew Macy <[email protected]>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 *
11 * 2. Neither the name of Matthew Macy nor the names of its
12 * contributors may be used to endorse or promote products derived from
13 * this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND 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 COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include "opt_inet.h"
32 #include "opt_inet6.h"
33 #include "opt_acpi.h"
34 #include "opt_sched.h"
35
36 #include <sys/param.h>
37 #include <sys/types.h>
38 #include <sys/bus.h>
39 #include <sys/eventhandler.h>
40 #include <sys/jail.h>
41 #include <sys/kernel.h>
42 #include <sys/lock.h>
43 #include <sys/md5.h>
44 #include <sys/mutex.h>
45 #include <sys/module.h>
46 #include <sys/kobj.h>
47 #include <sys/rman.h>
48 #include <sys/proc.h>
49 #include <sys/sbuf.h>
50 #include <sys/smp.h>
51 #include <sys/socket.h>
52 #include <sys/sockio.h>
53 #include <sys/sysctl.h>
54 #include <sys/syslog.h>
55 #include <sys/taskqueue.h>
56 #include <sys/limits.h>
57
58 #include <net/if.h>
59 #include <net/if_var.h>
60 #include <net/if_types.h>
61 #include <net/if_media.h>
62 #include <net/bpf.h>
63 #include <net/ethernet.h>
64 #include <net/mp_ring.h>
65 #include <net/vnet.h>
66
67 #include <netinet/in.h>
68 #include <netinet/in_pcb.h>
69 #include <netinet/tcp_lro.h>
70 #include <netinet/in_systm.h>
71 #include <netinet/if_ether.h>
72 #include <netinet/ip.h>
73 #include <netinet/ip6.h>
74 #include <netinet/tcp.h>
75 #include <netinet/ip_var.h>
76 #include <netinet/netdump/netdump.h>
77 #include <netinet6/ip6_var.h>
78
79 #include <machine/bus.h>
80 #include <machine/in_cksum.h>
81
82 #include <vm/vm.h>
83 #include <vm/pmap.h>
84
85 #include <dev/led/led.h>
86 #include <dev/pci/pcireg.h>
87 #include <dev/pci/pcivar.h>
88 #include <dev/pci/pci_private.h>
89
90 #include <net/iflib.h>
91 #include <net/iflib_private.h>
92
93 #include "ifdi_if.h"
94
95 #ifdef PCI_IOV
96 #include <dev/pci/pci_iov.h>
97 #endif
98
99 #include <sys/bitstring.h>
100 /*
101 * enable accounting of every mbuf as it comes in to and goes out of
102 * iflib's software descriptor references
103 */
104 #define MEMORY_LOGGING 0
105 /*
106 * Enable mbuf vectors for compressing long mbuf chains
107 */
108
109 /*
110 * NB:
111 * - Prefetching in tx cleaning should perhaps be a tunable. The distance ahead
112 * we prefetch needs to be determined by the time spent in m_free vis a vis
113 * the cost of a prefetch. This will of course vary based on the workload:
114 * - NFLX's m_free path is dominated by vm-based M_EXT manipulation which
115 * is quite expensive, thus suggesting very little prefetch.
116 * - small packet forwarding which is just returning a single mbuf to
117 * UMA will typically be very fast vis a vis the cost of a memory
118 * access.
119 */
120
121
122 /*
123 * File organization:
124 * - private structures
125 * - iflib private utility functions
126 * - ifnet functions
127 * - vlan registry and other exported functions
128 * - iflib public core functions
129 *
130 *
131 */
132 MALLOC_DEFINE(M_IFLIB, "iflib", "ifnet library");
133
134 struct iflib_txq;
135 typedef struct iflib_txq *iflib_txq_t;
136 struct iflib_rxq;
137 typedef struct iflib_rxq *iflib_rxq_t;
138 struct iflib_fl;
139 typedef struct iflib_fl *iflib_fl_t;
140
141 struct iflib_ctx;
142
143 static void iru_init(if_rxd_update_t iru, iflib_rxq_t rxq, uint8_t flid);
144 static void iflib_timer(void *arg);
145
146 typedef struct iflib_filter_info {
147 driver_filter_t *ifi_filter;
148 void *ifi_filter_arg;
149 struct grouptask *ifi_task;
150 void *ifi_ctx;
151 } *iflib_filter_info_t;
152
153 struct iflib_ctx {
154 KOBJ_FIELDS;
155 /*
156 * Pointer to hardware driver's softc
157 */
158 void *ifc_softc;
159 device_t ifc_dev;
160 if_t ifc_ifp;
161
162 cpuset_t ifc_cpus;
163 if_shared_ctx_t ifc_sctx;
164 struct if_softc_ctx ifc_softc_ctx;
165
166 struct sx ifc_ctx_sx;
167 struct mtx ifc_state_mtx;
168
169 iflib_txq_t ifc_txqs;
170 iflib_rxq_t ifc_rxqs;
171 uint32_t ifc_if_flags;
172 uint32_t ifc_flags;
173 uint32_t ifc_max_fl_buf_size;
174 uint32_t ifc_rx_mbuf_sz;
175
176 int ifc_link_state;
177 int ifc_watchdog_events;
178 struct cdev *ifc_led_dev;
179 struct resource *ifc_msix_mem;
180
181 struct if_irq ifc_legacy_irq;
182 struct grouptask ifc_admin_task;
183 struct grouptask ifc_vflr_task;
184 struct iflib_filter_info ifc_filter_info;
185 struct ifmedia ifc_media;
186
187 struct sysctl_oid *ifc_sysctl_node;
188 uint16_t ifc_sysctl_ntxqs;
189 uint16_t ifc_sysctl_nrxqs;
190 uint16_t ifc_sysctl_qs_eq_override;
191 uint16_t ifc_sysctl_rx_budget;
192 uint16_t ifc_sysctl_tx_abdicate;
193 uint16_t ifc_sysctl_core_offset;
194 #define CORE_OFFSET_UNSPECIFIED 0xffff
195 uint8_t ifc_sysctl_separate_txrx;
196
197 qidx_t ifc_sysctl_ntxds[8];
198 qidx_t ifc_sysctl_nrxds[8];
199 struct if_txrx ifc_txrx;
200 #define isc_txd_encap ifc_txrx.ift_txd_encap
201 #define isc_txd_flush ifc_txrx.ift_txd_flush
202 #define isc_txd_credits_update ifc_txrx.ift_txd_credits_update
203 #define isc_rxd_available ifc_txrx.ift_rxd_available
204 #define isc_rxd_pkt_get ifc_txrx.ift_rxd_pkt_get
205 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
206 #define isc_rxd_flush ifc_txrx.ift_rxd_flush
207 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
208 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
209 #define isc_legacy_intr ifc_txrx.ift_legacy_intr
210 eventhandler_tag ifc_vlan_attach_event;
211 eventhandler_tag ifc_vlan_detach_event;
212 uint8_t ifc_mac[ETHER_ADDR_LEN];
213 };
214
215 void *
iflib_get_softc(if_ctx_t ctx)216 iflib_get_softc(if_ctx_t ctx)
217 {
218
219 return (ctx->ifc_softc);
220 }
221
222 device_t
iflib_get_dev(if_ctx_t ctx)223 iflib_get_dev(if_ctx_t ctx)
224 {
225
226 return (ctx->ifc_dev);
227 }
228
229 if_t
iflib_get_ifp(if_ctx_t ctx)230 iflib_get_ifp(if_ctx_t ctx)
231 {
232
233 return (ctx->ifc_ifp);
234 }
235
236 struct ifmedia *
iflib_get_media(if_ctx_t ctx)237 iflib_get_media(if_ctx_t ctx)
238 {
239
240 return (&ctx->ifc_media);
241 }
242
243 uint32_t
iflib_get_flags(if_ctx_t ctx)244 iflib_get_flags(if_ctx_t ctx)
245 {
246 return (ctx->ifc_flags);
247 }
248
249 void
iflib_set_mac(if_ctx_t ctx,uint8_t mac[ETHER_ADDR_LEN])250 iflib_set_mac(if_ctx_t ctx, uint8_t mac[ETHER_ADDR_LEN])
251 {
252
253 bcopy(mac, ctx->ifc_mac, ETHER_ADDR_LEN);
254 }
255
256 if_softc_ctx_t
iflib_get_softc_ctx(if_ctx_t ctx)257 iflib_get_softc_ctx(if_ctx_t ctx)
258 {
259
260 return (&ctx->ifc_softc_ctx);
261 }
262
263 if_shared_ctx_t
iflib_get_sctx(if_ctx_t ctx)264 iflib_get_sctx(if_ctx_t ctx)
265 {
266
267 return (ctx->ifc_sctx);
268 }
269
270 #define IP_ALIGNED(m) ((((uintptr_t)(m)->m_data) & 0x3) == 0x2)
271 #define CACHE_PTR_INCREMENT (CACHE_LINE_SIZE/sizeof(void*))
272 #define CACHE_PTR_NEXT(ptr) ((void *)(((uintptr_t)(ptr)+CACHE_LINE_SIZE-1) & (CACHE_LINE_SIZE-1)))
273
274 #define LINK_ACTIVE(ctx) ((ctx)->ifc_link_state == LINK_STATE_UP)
275 #define CTX_IS_VF(ctx) ((ctx)->ifc_sctx->isc_flags & IFLIB_IS_VF)
276
277 typedef struct iflib_sw_rx_desc_array {
278 bus_dmamap_t *ifsd_map; /* bus_dma maps for packet */
279 struct mbuf **ifsd_m; /* pkthdr mbufs */
280 caddr_t *ifsd_cl; /* direct cluster pointer for rx */
281 bus_addr_t *ifsd_ba; /* bus addr of cluster for rx */
282 } iflib_rxsd_array_t;
283
284 typedef struct iflib_sw_tx_desc_array {
285 bus_dmamap_t *ifsd_map; /* bus_dma maps for packet */
286 bus_dmamap_t *ifsd_tso_map; /* bus_dma maps for TSO packet */
287 struct mbuf **ifsd_m; /* pkthdr mbufs */
288 } if_txsd_vec_t;
289
290 /* magic number that should be high enough for any hardware */
291 #define IFLIB_MAX_TX_SEGS 128
292 #define IFLIB_RX_COPY_THRESH 128
293 #define IFLIB_MAX_RX_REFRESH 32
294 /* The minimum descriptors per second before we start coalescing */
295 #define IFLIB_MIN_DESC_SEC 16384
296 #define IFLIB_DEFAULT_TX_UPDATE_FREQ 16
297 #define IFLIB_QUEUE_IDLE 0
298 #define IFLIB_QUEUE_HUNG 1
299 #define IFLIB_QUEUE_WORKING 2
300 /* maximum number of txqs that can share an rx interrupt */
301 #define IFLIB_MAX_TX_SHARED_INTR 4
302
303 /* this should really scale with ring size - this is a fairly arbitrary value */
304 #define TX_BATCH_SIZE 32
305
306 #define IFLIB_RESTART_BUDGET 8
307
308 #define CSUM_OFFLOAD (CSUM_IP_TSO|CSUM_IP6_TSO|CSUM_IP| \
309 CSUM_IP_UDP|CSUM_IP_TCP|CSUM_IP_SCTP| \
310 CSUM_IP6_UDP|CSUM_IP6_TCP|CSUM_IP6_SCTP)
311
312 struct iflib_txq {
313 qidx_t ift_in_use;
314 qidx_t ift_cidx;
315 qidx_t ift_cidx_processed;
316 qidx_t ift_pidx;
317 uint8_t ift_gen;
318 uint8_t ift_br_offset;
319 uint16_t ift_npending;
320 uint16_t ift_db_pending;
321 uint16_t ift_rs_pending;
322 /* implicit pad */
323 uint8_t ift_txd_size[8];
324 uint64_t ift_processed;
325 uint64_t ift_cleaned;
326 uint64_t ift_cleaned_prev;
327 #if MEMORY_LOGGING
328 uint64_t ift_enqueued;
329 uint64_t ift_dequeued;
330 #endif
331 uint64_t ift_no_tx_dma_setup;
332 uint64_t ift_no_desc_avail;
333 uint64_t ift_mbuf_defrag_failed;
334 uint64_t ift_mbuf_defrag;
335 uint64_t ift_map_failed;
336 uint64_t ift_txd_encap_efbig;
337 uint64_t ift_pullups;
338 uint64_t ift_last_timer_tick;
339
340 struct mtx ift_mtx;
341 struct mtx ift_db_mtx;
342
343 /* constant values */
344 if_ctx_t ift_ctx;
345 struct ifmp_ring *ift_br;
346 struct grouptask ift_task;
347 qidx_t ift_size;
348 uint16_t ift_id;
349 struct callout ift_timer;
350
351 if_txsd_vec_t ift_sds;
352 uint8_t ift_qstatus;
353 uint8_t ift_closed;
354 uint8_t ift_update_freq;
355 struct iflib_filter_info ift_filter_info;
356 bus_dma_tag_t ift_buf_tag;
357 bus_dma_tag_t ift_tso_buf_tag;
358 iflib_dma_info_t ift_ifdi;
359 #define MTX_NAME_LEN 16
360 char ift_mtx_name[MTX_NAME_LEN];
361 bus_dma_segment_t ift_segs[IFLIB_MAX_TX_SEGS] __aligned(CACHE_LINE_SIZE);
362 #ifdef IFLIB_DIAGNOSTICS
363 uint64_t ift_cpu_exec_count[256];
364 #endif
365 } __aligned(CACHE_LINE_SIZE);
366
367 struct iflib_fl {
368 qidx_t ifl_cidx;
369 qidx_t ifl_pidx;
370 qidx_t ifl_credits;
371 uint8_t ifl_gen;
372 uint8_t ifl_rxd_size;
373 #if MEMORY_LOGGING
374 uint64_t ifl_m_enqueued;
375 uint64_t ifl_m_dequeued;
376 uint64_t ifl_cl_enqueued;
377 uint64_t ifl_cl_dequeued;
378 #endif
379 /* implicit pad */
380
381 bitstr_t *ifl_rx_bitmap;
382 qidx_t ifl_fragidx;
383 /* constant */
384 qidx_t ifl_size;
385 uint16_t ifl_buf_size;
386 uint16_t ifl_cltype;
387 uma_zone_t ifl_zone;
388 iflib_rxsd_array_t ifl_sds;
389 iflib_rxq_t ifl_rxq;
390 uint8_t ifl_id;
391 bus_dma_tag_t ifl_buf_tag;
392 iflib_dma_info_t ifl_ifdi;
393 uint64_t ifl_bus_addrs[IFLIB_MAX_RX_REFRESH] __aligned(CACHE_LINE_SIZE);
394 caddr_t ifl_vm_addrs[IFLIB_MAX_RX_REFRESH];
395 qidx_t ifl_rxd_idxs[IFLIB_MAX_RX_REFRESH];
396 } __aligned(CACHE_LINE_SIZE);
397
398 static inline qidx_t
get_inuse(int size,qidx_t cidx,qidx_t pidx,uint8_t gen)399 get_inuse(int size, qidx_t cidx, qidx_t pidx, uint8_t gen)
400 {
401 qidx_t used;
402
403 if (pidx > cidx)
404 used = pidx - cidx;
405 else if (pidx < cidx)
406 used = size - cidx + pidx;
407 else if (gen == 0 && pidx == cidx)
408 used = 0;
409 else if (gen == 1 && pidx == cidx)
410 used = size;
411 else
412 panic("bad state");
413
414 return (used);
415 }
416
417 #define TXQ_AVAIL(txq) (txq->ift_size - get_inuse(txq->ift_size, txq->ift_cidx, txq->ift_pidx, txq->ift_gen))
418
419 #define IDXDIFF(head, tail, wrap) \
420 ((head) >= (tail) ? (head) - (tail) : (wrap) - (tail) + (head))
421
422 struct iflib_rxq {
423 if_ctx_t ifr_ctx;
424 iflib_fl_t ifr_fl;
425 uint64_t ifr_rx_irq;
426 /*
427 * If there is a separate completion queue (IFLIB_HAS_RXCQ), this is
428 * the command queue consumer index. Otherwise it's unused.
429 */
430 qidx_t ifr_cq_cidx;
431 uint16_t ifr_id;
432 uint8_t ifr_nfl;
433 uint8_t ifr_ntxqirq;
434 uint8_t ifr_txqid[IFLIB_MAX_TX_SHARED_INTR];
435 uint8_t ifr_fl_offset;
436 struct lro_ctrl ifr_lc;
437 struct grouptask ifr_task;
438 struct iflib_filter_info ifr_filter_info;
439 iflib_dma_info_t ifr_ifdi;
440
441 /* dynamically allocate if any drivers need a value substantially larger than this */
442 struct if_rxd_frag ifr_frags[IFLIB_MAX_RX_SEGS] __aligned(CACHE_LINE_SIZE);
443 #ifdef IFLIB_DIAGNOSTICS
444 uint64_t ifr_cpu_exec_count[256];
445 #endif
446 } __aligned(CACHE_LINE_SIZE);
447
448 typedef struct if_rxsd {
449 caddr_t *ifsd_cl;
450 struct mbuf **ifsd_m;
451 iflib_fl_t ifsd_fl;
452 qidx_t ifsd_cidx;
453 } *if_rxsd_t;
454
455 /* multiple of word size */
456 #ifdef __LP64__
457 #define PKT_INFO_SIZE 6
458 #define RXD_INFO_SIZE 5
459 #define PKT_TYPE uint64_t
460 #else
461 #define PKT_INFO_SIZE 11
462 #define RXD_INFO_SIZE 8
463 #define PKT_TYPE uint32_t
464 #endif
465 #define PKT_LOOP_BOUND ((PKT_INFO_SIZE/3)*3)
466 #define RXD_LOOP_BOUND ((RXD_INFO_SIZE/4)*4)
467
468 typedef struct if_pkt_info_pad {
469 PKT_TYPE pkt_val[PKT_INFO_SIZE];
470 } *if_pkt_info_pad_t;
471 typedef struct if_rxd_info_pad {
472 PKT_TYPE rxd_val[RXD_INFO_SIZE];
473 } *if_rxd_info_pad_t;
474
475 CTASSERT(sizeof(struct if_pkt_info_pad) == sizeof(struct if_pkt_info));
476 CTASSERT(sizeof(struct if_rxd_info_pad) == sizeof(struct if_rxd_info));
477
478
479 static inline void
pkt_info_zero(if_pkt_info_t pi)480 pkt_info_zero(if_pkt_info_t pi)
481 {
482 if_pkt_info_pad_t pi_pad;
483
484 pi_pad = (if_pkt_info_pad_t)pi;
485 pi_pad->pkt_val[0] = 0; pi_pad->pkt_val[1] = 0; pi_pad->pkt_val[2] = 0;
486 pi_pad->pkt_val[3] = 0; pi_pad->pkt_val[4] = 0; pi_pad->pkt_val[5] = 0;
487 #ifndef __LP64__
488 pi_pad->pkt_val[6] = 0; pi_pad->pkt_val[7] = 0; pi_pad->pkt_val[8] = 0;
489 pi_pad->pkt_val[9] = 0; pi_pad->pkt_val[10] = 0;
490 #endif
491 }
492
493 static device_method_t iflib_pseudo_methods[] = {
494 DEVMETHOD(device_attach, noop_attach),
495 DEVMETHOD(device_detach, iflib_pseudo_detach),
496 DEVMETHOD_END
497 };
498
499 driver_t iflib_pseudodriver = {
500 "iflib_pseudo", iflib_pseudo_methods, sizeof(struct iflib_ctx),
501 };
502
503 static inline void
rxd_info_zero(if_rxd_info_t ri)504 rxd_info_zero(if_rxd_info_t ri)
505 {
506 if_rxd_info_pad_t ri_pad;
507 int i;
508
509 ri_pad = (if_rxd_info_pad_t)ri;
510 for (i = 0; i < RXD_LOOP_BOUND; i += 4) {
511 ri_pad->rxd_val[i] = 0;
512 ri_pad->rxd_val[i+1] = 0;
513 ri_pad->rxd_val[i+2] = 0;
514 ri_pad->rxd_val[i+3] = 0;
515 }
516 #ifdef __LP64__
517 ri_pad->rxd_val[RXD_INFO_SIZE-1] = 0;
518 #endif
519 }
520
521 /*
522 * Only allow a single packet to take up most 1/nth of the tx ring
523 */
524 #define MAX_SINGLE_PACKET_FRACTION 12
525 #define IF_BAD_DMA (bus_addr_t)-1
526
527 #define CTX_ACTIVE(ctx) ((if_getdrvflags((ctx)->ifc_ifp) & IFF_DRV_RUNNING))
528
529 #define CTX_LOCK_INIT(_sc) sx_init(&(_sc)->ifc_ctx_sx, "iflib ctx lock")
530 #define CTX_LOCK(ctx) sx_xlock(&(ctx)->ifc_ctx_sx)
531 #define CTX_UNLOCK(ctx) sx_xunlock(&(ctx)->ifc_ctx_sx)
532 #define CTX_LOCK_DESTROY(ctx) sx_destroy(&(ctx)->ifc_ctx_sx)
533
534 #define STATE_LOCK_INIT(_sc, _name) mtx_init(&(_sc)->ifc_state_mtx, _name, "iflib state lock", MTX_DEF)
535 #define STATE_LOCK(ctx) mtx_lock(&(ctx)->ifc_state_mtx)
536 #define STATE_UNLOCK(ctx) mtx_unlock(&(ctx)->ifc_state_mtx)
537 #define STATE_LOCK_DESTROY(ctx) mtx_destroy(&(ctx)->ifc_state_mtx)
538
539 #define CALLOUT_LOCK(txq) mtx_lock(&txq->ift_mtx)
540 #define CALLOUT_UNLOCK(txq) mtx_unlock(&txq->ift_mtx)
541
542 void
iflib_set_detach(if_ctx_t ctx)543 iflib_set_detach(if_ctx_t ctx)
544 {
545 STATE_LOCK(ctx);
546 ctx->ifc_flags |= IFC_IN_DETACH;
547 STATE_UNLOCK(ctx);
548 }
549
550 /* Our boot-time initialization hook */
551 static int iflib_module_event_handler(module_t, int, void *);
552
553 static moduledata_t iflib_moduledata = {
554 "iflib",
555 iflib_module_event_handler,
556 NULL
557 };
558
559 DECLARE_MODULE(iflib, iflib_moduledata, SI_SUB_INIT_IF, SI_ORDER_ANY);
560 MODULE_VERSION(iflib, 1);
561
562 MODULE_DEPEND(iflib, pci, 1, 1, 1);
563 MODULE_DEPEND(iflib, ether, 1, 1, 1);
564
565 TASKQGROUP_DEFINE(if_io_tqg, mp_ncpus, 1);
566 TASKQGROUP_DEFINE(if_config_tqg, 1, 1);
567
568 #ifndef IFLIB_DEBUG_COUNTERS
569 #ifdef INVARIANTS
570 #define IFLIB_DEBUG_COUNTERS 1
571 #else
572 #define IFLIB_DEBUG_COUNTERS 0
573 #endif /* !INVARIANTS */
574 #endif
575
576 static SYSCTL_NODE(_net, OID_AUTO, iflib, CTLFLAG_RD, 0,
577 "iflib driver parameters");
578
579 /*
580 * XXX need to ensure that this can't accidentally cause the head to be moved backwards
581 */
582 static int iflib_min_tx_latency = 0;
583 SYSCTL_INT(_net_iflib, OID_AUTO, min_tx_latency, CTLFLAG_RW,
584 &iflib_min_tx_latency, 0, "minimize transmit latency at the possible expense of throughput");
585 static int iflib_no_tx_batch = 0;
586 SYSCTL_INT(_net_iflib, OID_AUTO, no_tx_batch, CTLFLAG_RW,
587 &iflib_no_tx_batch, 0, "minimize transmit latency at the possible expense of throughput");
588
589
590 #if IFLIB_DEBUG_COUNTERS
591
592 static int iflib_tx_seen;
593 static int iflib_tx_sent;
594 static int iflib_tx_encap;
595 static int iflib_rx_allocs;
596 static int iflib_fl_refills;
597 static int iflib_fl_refills_large;
598 static int iflib_tx_frees;
599
600 SYSCTL_INT(_net_iflib, OID_AUTO, tx_seen, CTLFLAG_RD,
601 &iflib_tx_seen, 0, "# TX mbufs seen");
602 SYSCTL_INT(_net_iflib, OID_AUTO, tx_sent, CTLFLAG_RD,
603 &iflib_tx_sent, 0, "# TX mbufs sent");
604 SYSCTL_INT(_net_iflib, OID_AUTO, tx_encap, CTLFLAG_RD,
605 &iflib_tx_encap, 0, "# TX mbufs encapped");
606 SYSCTL_INT(_net_iflib, OID_AUTO, tx_frees, CTLFLAG_RD,
607 &iflib_tx_frees, 0, "# TX frees");
608 SYSCTL_INT(_net_iflib, OID_AUTO, rx_allocs, CTLFLAG_RD,
609 &iflib_rx_allocs, 0, "# RX allocations");
610 SYSCTL_INT(_net_iflib, OID_AUTO, fl_refills, CTLFLAG_RD,
611 &iflib_fl_refills, 0, "# refills");
612 SYSCTL_INT(_net_iflib, OID_AUTO, fl_refills_large, CTLFLAG_RD,
613 &iflib_fl_refills_large, 0, "# large refills");
614
615
616 static int iflib_txq_drain_flushing;
617 static int iflib_txq_drain_oactive;
618 static int iflib_txq_drain_notready;
619
620 SYSCTL_INT(_net_iflib, OID_AUTO, txq_drain_flushing, CTLFLAG_RD,
621 &iflib_txq_drain_flushing, 0, "# drain flushes");
622 SYSCTL_INT(_net_iflib, OID_AUTO, txq_drain_oactive, CTLFLAG_RD,
623 &iflib_txq_drain_oactive, 0, "# drain oactives");
624 SYSCTL_INT(_net_iflib, OID_AUTO, txq_drain_notready, CTLFLAG_RD,
625 &iflib_txq_drain_notready, 0, "# drain notready");
626
627
628 static int iflib_encap_load_mbuf_fail;
629 static int iflib_encap_pad_mbuf_fail;
630 static int iflib_encap_txq_avail_fail;
631 static int iflib_encap_txd_encap_fail;
632
633 SYSCTL_INT(_net_iflib, OID_AUTO, encap_load_mbuf_fail, CTLFLAG_RD,
634 &iflib_encap_load_mbuf_fail, 0, "# busdma load failures");
635 SYSCTL_INT(_net_iflib, OID_AUTO, encap_pad_mbuf_fail, CTLFLAG_RD,
636 &iflib_encap_pad_mbuf_fail, 0, "# runt frame pad failures");
637 SYSCTL_INT(_net_iflib, OID_AUTO, encap_txq_avail_fail, CTLFLAG_RD,
638 &iflib_encap_txq_avail_fail, 0, "# txq avail failures");
639 SYSCTL_INT(_net_iflib, OID_AUTO, encap_txd_encap_fail, CTLFLAG_RD,
640 &iflib_encap_txd_encap_fail, 0, "# driver encap failures");
641
642 static int iflib_task_fn_rxs;
643 static int iflib_rx_intr_enables;
644 static int iflib_fast_intrs;
645 static int iflib_rx_unavail;
646 static int iflib_rx_ctx_inactive;
647 static int iflib_rx_if_input;
648 static int iflib_rx_mbuf_null;
649 static int iflib_rxd_flush;
650
651 static int iflib_verbose_debug;
652
653 SYSCTL_INT(_net_iflib, OID_AUTO, task_fn_rx, CTLFLAG_RD,
654 &iflib_task_fn_rxs, 0, "# task_fn_rx calls");
655 SYSCTL_INT(_net_iflib, OID_AUTO, rx_intr_enables, CTLFLAG_RD,
656 &iflib_rx_intr_enables, 0, "# RX intr enables");
657 SYSCTL_INT(_net_iflib, OID_AUTO, fast_intrs, CTLFLAG_RD,
658 &iflib_fast_intrs, 0, "# fast_intr calls");
659 SYSCTL_INT(_net_iflib, OID_AUTO, rx_unavail, CTLFLAG_RD,
660 &iflib_rx_unavail, 0, "# times rxeof called with no available data");
661 SYSCTL_INT(_net_iflib, OID_AUTO, rx_ctx_inactive, CTLFLAG_RD,
662 &iflib_rx_ctx_inactive, 0, "# times rxeof called with inactive context");
663 SYSCTL_INT(_net_iflib, OID_AUTO, rx_if_input, CTLFLAG_RD,
664 &iflib_rx_if_input, 0, "# times rxeof called if_input");
665 SYSCTL_INT(_net_iflib, OID_AUTO, rx_mbuf_null, CTLFLAG_RD,
666 &iflib_rx_mbuf_null, 0, "# times rxeof got null mbuf");
667 SYSCTL_INT(_net_iflib, OID_AUTO, rxd_flush, CTLFLAG_RD,
668 &iflib_rxd_flush, 0, "# times rxd_flush called");
669 SYSCTL_INT(_net_iflib, OID_AUTO, verbose_debug, CTLFLAG_RW,
670 &iflib_verbose_debug, 0, "enable verbose debugging");
671
672 #define DBG_COUNTER_INC(name) atomic_add_int(&(iflib_ ## name), 1)
673 static void
iflib_debug_reset(void)674 iflib_debug_reset(void)
675 {
676 iflib_tx_seen = iflib_tx_sent = iflib_tx_encap = iflib_rx_allocs =
677 iflib_fl_refills = iflib_fl_refills_large = iflib_tx_frees =
678 iflib_txq_drain_flushing = iflib_txq_drain_oactive =
679 iflib_txq_drain_notready =
680 iflib_encap_load_mbuf_fail = iflib_encap_pad_mbuf_fail =
681 iflib_encap_txq_avail_fail = iflib_encap_txd_encap_fail =
682 iflib_task_fn_rxs = iflib_rx_intr_enables = iflib_fast_intrs =
683 iflib_rx_unavail =
684 iflib_rx_ctx_inactive = iflib_rx_if_input =
685 iflib_rx_mbuf_null = iflib_rxd_flush = 0;
686 }
687
688 #else
689 #define DBG_COUNTER_INC(name)
iflib_debug_reset(void)690 static void iflib_debug_reset(void) {}
691 #endif
692
693 #define IFLIB_DEBUG 0
694
695 static void iflib_tx_structures_free(if_ctx_t ctx);
696 static void iflib_rx_structures_free(if_ctx_t ctx);
697 static int iflib_queues_alloc(if_ctx_t ctx);
698 static int iflib_tx_credits_update(if_ctx_t ctx, iflib_txq_t txq);
699 static int iflib_rxd_avail(if_ctx_t ctx, iflib_rxq_t rxq, qidx_t cidx, qidx_t budget);
700 static int iflib_qset_structures_setup(if_ctx_t ctx);
701 static int iflib_msix_init(if_ctx_t ctx);
702 static int iflib_legacy_setup(if_ctx_t ctx, driver_filter_t filter, void *filterarg, int *rid, const char *str);
703 static void iflib_txq_check_drain(iflib_txq_t txq, int budget);
704 static uint32_t iflib_txq_can_drain(struct ifmp_ring *);
705 #ifdef ALTQ
706 static void iflib_altq_if_start(if_t ifp);
707 static int iflib_altq_if_transmit(if_t ifp, struct mbuf *m);
708 #endif
709 static int iflib_register(if_ctx_t);
710 static void iflib_deregister(if_ctx_t);
711 static void iflib_init_locked(if_ctx_t ctx);
712 static void iflib_add_device_sysctl_pre(if_ctx_t ctx);
713 static void iflib_add_device_sysctl_post(if_ctx_t ctx);
714 static void iflib_ifmp_purge(iflib_txq_t txq);
715 static void _iflib_pre_assert(if_softc_ctx_t scctx);
716 static void iflib_if_init_locked(if_ctx_t ctx);
717 static void iflib_free_intr_mem(if_ctx_t ctx);
718 #ifndef __NO_STRICT_ALIGNMENT
719 static struct mbuf * iflib_fixup_rx(struct mbuf *m);
720 #endif
721
722 static SLIST_HEAD(cpu_offset_list, cpu_offset) cpu_offsets =
723 SLIST_HEAD_INITIALIZER(cpu_offsets);
724 struct cpu_offset {
725 SLIST_ENTRY(cpu_offset) entries;
726 cpuset_t set;
727 unsigned int refcount;
728 uint16_t offset;
729 };
730 static struct mtx cpu_offset_mtx;
731 MTX_SYSINIT(iflib_cpu_offset, &cpu_offset_mtx, "iflib_cpu_offset lock",
732 MTX_DEF);
733
734 NETDUMP_DEFINE(iflib);
735
736 #ifdef DEV_NETMAP
737 #include <sys/selinfo.h>
738 #include <net/netmap.h>
739 #include <dev/netmap/netmap_kern.h>
740
741 MODULE_DEPEND(iflib, netmap, 1, 1, 1);
742
743 static int netmap_fl_refill(iflib_rxq_t rxq, struct netmap_kring *kring, uint32_t nm_i, bool init);
744
745 /*
746 * device-specific sysctl variables:
747 *
748 * iflib_crcstrip: 0: keep CRC in rx frames (default), 1: strip it.
749 * During regular operations the CRC is stripped, but on some
750 * hardware reception of frames not multiple of 64 is slower,
751 * so using crcstrip=0 helps in benchmarks.
752 *
753 * iflib_rx_miss, iflib_rx_miss_bufs:
754 * count packets that might be missed due to lost interrupts.
755 */
756 SYSCTL_DECL(_dev_netmap);
757 /*
758 * The xl driver by default strips CRCs and we do not override it.
759 */
760
761 int iflib_crcstrip = 1;
762 SYSCTL_INT(_dev_netmap, OID_AUTO, iflib_crcstrip,
763 CTLFLAG_RW, &iflib_crcstrip, 1, "strip CRC on RX frames");
764
765 int iflib_rx_miss, iflib_rx_miss_bufs;
766 SYSCTL_INT(_dev_netmap, OID_AUTO, iflib_rx_miss,
767 CTLFLAG_RW, &iflib_rx_miss, 0, "potentially missed RX intr");
768 SYSCTL_INT(_dev_netmap, OID_AUTO, iflib_rx_miss_bufs,
769 CTLFLAG_RW, &iflib_rx_miss_bufs, 0, "potentially missed RX intr bufs");
770
771 /*
772 * Register/unregister. We are already under netmap lock.
773 * Only called on the first register or the last unregister.
774 */
775 static int
iflib_netmap_register(struct netmap_adapter * na,int onoff)776 iflib_netmap_register(struct netmap_adapter *na, int onoff)
777 {
778 if_t ifp = na->ifp;
779 if_ctx_t ctx = ifp->if_softc;
780 int status;
781
782 CTX_LOCK(ctx);
783 IFDI_INTR_DISABLE(ctx);
784
785 /* Tell the stack that the interface is no longer active */
786 ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
787
788 if (!CTX_IS_VF(ctx))
789 IFDI_CRCSTRIP_SET(ctx, onoff, iflib_crcstrip);
790
791 /* enable or disable flags and callbacks in na and ifp */
792 if (onoff) {
793 nm_set_native_flags(na);
794 } else {
795 nm_clear_native_flags(na);
796 }
797 iflib_stop(ctx);
798 iflib_init_locked(ctx);
799 IFDI_CRCSTRIP_SET(ctx, onoff, iflib_crcstrip); // XXX why twice ?
800 status = ifp->if_drv_flags & IFF_DRV_RUNNING ? 0 : 1;
801 if (status)
802 nm_clear_native_flags(na);
803 CTX_UNLOCK(ctx);
804 return (status);
805 }
806
807 static int
netmap_fl_refill(iflib_rxq_t rxq,struct netmap_kring * kring,uint32_t nm_i,bool init)808 netmap_fl_refill(iflib_rxq_t rxq, struct netmap_kring *kring, uint32_t nm_i, bool init)
809 {
810 struct netmap_adapter *na = kring->na;
811 u_int const lim = kring->nkr_num_slots - 1;
812 u_int head = kring->rhead;
813 struct netmap_ring *ring = kring->ring;
814 bus_dmamap_t *map;
815 struct if_rxd_update iru;
816 if_ctx_t ctx = rxq->ifr_ctx;
817 iflib_fl_t fl = &rxq->ifr_fl[0];
818 uint32_t refill_pidx, nic_i;
819 #if IFLIB_DEBUG_COUNTERS
820 int rf_count = 0;
821 #endif
822
823 if (nm_i == head && __predict_true(!init))
824 return 0;
825 iru_init(&iru, rxq, 0 /* flid */);
826 map = fl->ifl_sds.ifsd_map;
827 refill_pidx = netmap_idx_k2n(kring, nm_i);
828 /*
829 * IMPORTANT: we must leave one free slot in the ring,
830 * so move head back by one unit
831 */
832 head = nm_prev(head, lim);
833 nic_i = UINT_MAX;
834 DBG_COUNTER_INC(fl_refills);
835 while (nm_i != head) {
836 #if IFLIB_DEBUG_COUNTERS
837 if (++rf_count == 9)
838 DBG_COUNTER_INC(fl_refills_large);
839 #endif
840 for (int tmp_pidx = 0; tmp_pidx < IFLIB_MAX_RX_REFRESH && nm_i != head; tmp_pidx++) {
841 struct netmap_slot *slot = &ring->slot[nm_i];
842 void *addr = PNMB(na, slot, &fl->ifl_bus_addrs[tmp_pidx]);
843 uint32_t nic_i_dma = refill_pidx;
844 nic_i = netmap_idx_k2n(kring, nm_i);
845
846 MPASS(tmp_pidx < IFLIB_MAX_RX_REFRESH);
847
848 if (addr == NETMAP_BUF_BASE(na)) /* bad buf */
849 return netmap_ring_reinit(kring);
850
851 fl->ifl_vm_addrs[tmp_pidx] = addr;
852 if (__predict_false(init)) {
853 netmap_load_map(na, fl->ifl_buf_tag,
854 map[nic_i], addr);
855 } else if (slot->flags & NS_BUF_CHANGED) {
856 /* buffer has changed, reload map */
857 netmap_reload_map(na, fl->ifl_buf_tag,
858 map[nic_i], addr);
859 }
860 slot->flags &= ~NS_BUF_CHANGED;
861
862 nm_i = nm_next(nm_i, lim);
863 fl->ifl_rxd_idxs[tmp_pidx] = nic_i = nm_next(nic_i, lim);
864 if (nm_i != head && tmp_pidx < IFLIB_MAX_RX_REFRESH-1)
865 continue;
866
867 iru.iru_pidx = refill_pidx;
868 iru.iru_count = tmp_pidx+1;
869 ctx->isc_rxd_refill(ctx->ifc_softc, &iru);
870 refill_pidx = nic_i;
871 for (int n = 0; n < iru.iru_count; n++) {
872 bus_dmamap_sync(fl->ifl_buf_tag, map[nic_i_dma],
873 BUS_DMASYNC_PREREAD);
874 /* XXX - change this to not use the netmap func*/
875 nic_i_dma = nm_next(nic_i_dma, lim);
876 }
877 }
878 }
879 kring->nr_hwcur = head;
880
881 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
882 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
883 if (__predict_true(nic_i != UINT_MAX)) {
884 ctx->isc_rxd_flush(ctx->ifc_softc, rxq->ifr_id, fl->ifl_id, nic_i);
885 DBG_COUNTER_INC(rxd_flush);
886 }
887 return (0);
888 }
889
890 /*
891 * Reconcile kernel and user view of the transmit ring.
892 *
893 * All information is in the kring.
894 * Userspace wants to send packets up to the one before kring->rhead,
895 * kernel knows kring->nr_hwcur is the first unsent packet.
896 *
897 * Here we push packets out (as many as possible), and possibly
898 * reclaim buffers from previously completed transmission.
899 *
900 * The caller (netmap) guarantees that there is only one instance
901 * running at any time. Any interference with other driver
902 * methods should be handled by the individual drivers.
903 */
904 static int
iflib_netmap_txsync(struct netmap_kring * kring,int flags)905 iflib_netmap_txsync(struct netmap_kring *kring, int flags)
906 {
907 struct netmap_adapter *na = kring->na;
908 if_t ifp = na->ifp;
909 struct netmap_ring *ring = kring->ring;
910 u_int nm_i; /* index into the netmap kring */
911 u_int nic_i; /* index into the NIC ring */
912 u_int n;
913 u_int const lim = kring->nkr_num_slots - 1;
914 u_int const head = kring->rhead;
915 struct if_pkt_info pi;
916
917 /*
918 * interrupts on every tx packet are expensive so request
919 * them every half ring, or where NS_REPORT is set
920 */
921 u_int report_frequency = kring->nkr_num_slots >> 1;
922 /* device-specific */
923 if_ctx_t ctx = ifp->if_softc;
924 iflib_txq_t txq = &ctx->ifc_txqs[kring->ring_id];
925
926 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
927 BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
928
929 /*
930 * First part: process new packets to send.
931 * nm_i is the current index in the netmap kring,
932 * nic_i is the corresponding index in the NIC ring.
933 *
934 * If we have packets to send (nm_i != head)
935 * iterate over the netmap ring, fetch length and update
936 * the corresponding slot in the NIC ring. Some drivers also
937 * need to update the buffer's physical address in the NIC slot
938 * even NS_BUF_CHANGED is not set (PNMB computes the addresses).
939 *
940 * The netmap_reload_map() calls is especially expensive,
941 * even when (as in this case) the tag is 0, so do only
942 * when the buffer has actually changed.
943 *
944 * If possible do not set the report/intr bit on all slots,
945 * but only a few times per ring or when NS_REPORT is set.
946 *
947 * Finally, on 10G and faster drivers, it might be useful
948 * to prefetch the next slot and txr entry.
949 */
950
951 nm_i = kring->nr_hwcur;
952 if (nm_i != head) { /* we have new packets to send */
953 pkt_info_zero(&pi);
954 pi.ipi_segs = txq->ift_segs;
955 pi.ipi_qsidx = kring->ring_id;
956 nic_i = netmap_idx_k2n(kring, nm_i);
957
958 __builtin_prefetch(&ring->slot[nm_i]);
959 __builtin_prefetch(&txq->ift_sds.ifsd_m[nic_i]);
960 __builtin_prefetch(&txq->ift_sds.ifsd_map[nic_i]);
961
962 for (n = 0; nm_i != head; n++) {
963 struct netmap_slot *slot = &ring->slot[nm_i];
964 u_int len = slot->len;
965 uint64_t paddr;
966 void *addr = PNMB(na, slot, &paddr);
967 int flags = (slot->flags & NS_REPORT ||
968 nic_i == 0 || nic_i == report_frequency) ?
969 IPI_TX_INTR : 0;
970
971 /* device-specific */
972 pi.ipi_len = len;
973 pi.ipi_segs[0].ds_addr = paddr;
974 pi.ipi_segs[0].ds_len = len;
975 pi.ipi_nsegs = 1;
976 pi.ipi_ndescs = 0;
977 pi.ipi_pidx = nic_i;
978 pi.ipi_flags = flags;
979
980 /* Fill the slot in the NIC ring. */
981 ctx->isc_txd_encap(ctx->ifc_softc, &pi);
982 DBG_COUNTER_INC(tx_encap);
983
984 /* prefetch for next round */
985 __builtin_prefetch(&ring->slot[nm_i + 1]);
986 __builtin_prefetch(&txq->ift_sds.ifsd_m[nic_i + 1]);
987 __builtin_prefetch(&txq->ift_sds.ifsd_map[nic_i + 1]);
988
989 NM_CHECK_ADDR_LEN(na, addr, len);
990
991 if (slot->flags & NS_BUF_CHANGED) {
992 /* buffer has changed, reload map */
993 netmap_reload_map(na, txq->ift_buf_tag,
994 txq->ift_sds.ifsd_map[nic_i], addr);
995 }
996 /* make sure changes to the buffer are synced */
997 bus_dmamap_sync(txq->ift_buf_tag,
998 txq->ift_sds.ifsd_map[nic_i],
999 BUS_DMASYNC_PREWRITE);
1000
1001 slot->flags &= ~(NS_REPORT | NS_BUF_CHANGED);
1002 nm_i = nm_next(nm_i, lim);
1003 nic_i = nm_next(nic_i, lim);
1004 }
1005 kring->nr_hwcur = nm_i;
1006
1007 /* synchronize the NIC ring */
1008 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
1009 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1010
1011 /* (re)start the tx unit up to slot nic_i (excluded) */
1012 ctx->isc_txd_flush(ctx->ifc_softc, txq->ift_id, nic_i);
1013 }
1014
1015 /*
1016 * Second part: reclaim buffers for completed transmissions.
1017 *
1018 * If there are unclaimed buffers, attempt to reclaim them.
1019 * If none are reclaimed, and TX IRQs are not in use, do an initial
1020 * minimal delay, then trigger the tx handler which will spin in the
1021 * group task queue.
1022 */
1023 if (kring->nr_hwtail != nm_prev(kring->nr_hwcur, lim)) {
1024 if (iflib_tx_credits_update(ctx, txq)) {
1025 /* some tx completed, increment avail */
1026 nic_i = txq->ift_cidx_processed;
1027 kring->nr_hwtail = nm_prev(netmap_idx_n2k(kring, nic_i), lim);
1028 }
1029 }
1030 if (!(ctx->ifc_flags & IFC_NETMAP_TX_IRQ))
1031 if (kring->nr_hwtail != nm_prev(kring->nr_hwcur, lim)) {
1032 callout_reset_on(&txq->ift_timer, hz < 2000 ? 1 : hz / 1000,
1033 iflib_timer, txq, txq->ift_timer.c_cpu);
1034 }
1035 return (0);
1036 }
1037
1038 /*
1039 * Reconcile kernel and user view of the receive ring.
1040 * Same as for the txsync, this routine must be efficient.
1041 * The caller guarantees a single invocations, but races against
1042 * the rest of the driver should be handled here.
1043 *
1044 * On call, kring->rhead is the first packet that userspace wants
1045 * to keep, and kring->rcur is the wakeup point.
1046 * The kernel has previously reported packets up to kring->rtail.
1047 *
1048 * If (flags & NAF_FORCE_READ) also check for incoming packets irrespective
1049 * of whether or not we received an interrupt.
1050 */
1051 static int
iflib_netmap_rxsync(struct netmap_kring * kring,int flags)1052 iflib_netmap_rxsync(struct netmap_kring *kring, int flags)
1053 {
1054 struct netmap_adapter *na = kring->na;
1055 struct netmap_ring *ring = kring->ring;
1056 if_t ifp = na->ifp;
1057 iflib_fl_t fl;
1058 uint32_t nm_i; /* index into the netmap ring */
1059 uint32_t nic_i; /* index into the NIC ring */
1060 u_int i, n;
1061 u_int const lim = kring->nkr_num_slots - 1;
1062 u_int const head = kring->rhead;
1063 int force_update = (flags & NAF_FORCE_READ) || kring->nr_kflags & NKR_PENDINTR;
1064 struct if_rxd_info ri;
1065
1066 if_ctx_t ctx = ifp->if_softc;
1067 iflib_rxq_t rxq = &ctx->ifc_rxqs[kring->ring_id];
1068 if (head > lim)
1069 return netmap_ring_reinit(kring);
1070
1071 /*
1072 * XXX netmap_fl_refill() only ever (re)fills free list 0 so far.
1073 */
1074
1075 for (i = 0, fl = rxq->ifr_fl; i < rxq->ifr_nfl; i++, fl++) {
1076 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
1077 BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1078 }
1079
1080 /*
1081 * First part: import newly received packets.
1082 *
1083 * nm_i is the index of the next free slot in the netmap ring,
1084 * nic_i is the index of the next received packet in the NIC ring,
1085 * and they may differ in case if_init() has been called while
1086 * in netmap mode. For the receive ring we have
1087 *
1088 * nic_i = rxr->next_check;
1089 * nm_i = kring->nr_hwtail (previous)
1090 * and
1091 * nm_i == (nic_i + kring->nkr_hwofs) % ring_size
1092 *
1093 * rxr->next_check is set to 0 on a ring reinit
1094 */
1095 if (netmap_no_pendintr || force_update) {
1096 int crclen = iflib_crcstrip ? 0 : 4;
1097 int error, avail;
1098
1099 for (i = 0; i < rxq->ifr_nfl; i++) {
1100 fl = &rxq->ifr_fl[i];
1101 nic_i = fl->ifl_cidx;
1102 nm_i = netmap_idx_n2k(kring, nic_i);
1103 avail = ctx->isc_rxd_available(ctx->ifc_softc,
1104 rxq->ifr_id, nic_i, USHRT_MAX);
1105 for (n = 0; avail > 0; n++, avail--) {
1106 rxd_info_zero(&ri);
1107 ri.iri_frags = rxq->ifr_frags;
1108 ri.iri_qsidx = kring->ring_id;
1109 ri.iri_ifp = ctx->ifc_ifp;
1110 ri.iri_cidx = nic_i;
1111
1112 error = ctx->isc_rxd_pkt_get(ctx->ifc_softc, &ri);
1113 ring->slot[nm_i].len = error ? 0 : ri.iri_len - crclen;
1114 ring->slot[nm_i].flags = 0;
1115 bus_dmamap_sync(fl->ifl_buf_tag,
1116 fl->ifl_sds.ifsd_map[nic_i], BUS_DMASYNC_POSTREAD);
1117 nm_i = nm_next(nm_i, lim);
1118 nic_i = nm_next(nic_i, lim);
1119 }
1120 if (n) { /* update the state variables */
1121 if (netmap_no_pendintr && !force_update) {
1122 /* diagnostics */
1123 iflib_rx_miss ++;
1124 iflib_rx_miss_bufs += n;
1125 }
1126 fl->ifl_cidx = nic_i;
1127 kring->nr_hwtail = nm_i;
1128 }
1129 kring->nr_kflags &= ~NKR_PENDINTR;
1130 }
1131 }
1132 /*
1133 * Second part: skip past packets that userspace has released.
1134 * (kring->nr_hwcur to head excluded),
1135 * and make the buffers available for reception.
1136 * As usual nm_i is the index in the netmap ring,
1137 * nic_i is the index in the NIC ring, and
1138 * nm_i == (nic_i + kring->nkr_hwofs) % ring_size
1139 */
1140 /* XXX not sure how this will work with multiple free lists */
1141 nm_i = kring->nr_hwcur;
1142
1143 return (netmap_fl_refill(rxq, kring, nm_i, false));
1144 }
1145
1146 static void
iflib_netmap_intr(struct netmap_adapter * na,int onoff)1147 iflib_netmap_intr(struct netmap_adapter *na, int onoff)
1148 {
1149 if_ctx_t ctx = na->ifp->if_softc;
1150
1151 CTX_LOCK(ctx);
1152 if (onoff) {
1153 IFDI_INTR_ENABLE(ctx);
1154 } else {
1155 IFDI_INTR_DISABLE(ctx);
1156 }
1157 CTX_UNLOCK(ctx);
1158 }
1159
1160
1161 static int
iflib_netmap_attach(if_ctx_t ctx)1162 iflib_netmap_attach(if_ctx_t ctx)
1163 {
1164 struct netmap_adapter na;
1165 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1166
1167 bzero(&na, sizeof(na));
1168
1169 na.ifp = ctx->ifc_ifp;
1170 na.na_flags = NAF_BDG_MAYSLEEP;
1171 MPASS(ctx->ifc_softc_ctx.isc_ntxqsets);
1172 MPASS(ctx->ifc_softc_ctx.isc_nrxqsets);
1173
1174 na.num_tx_desc = scctx->isc_ntxd[0];
1175 na.num_rx_desc = scctx->isc_nrxd[0];
1176 na.nm_txsync = iflib_netmap_txsync;
1177 na.nm_rxsync = iflib_netmap_rxsync;
1178 na.nm_register = iflib_netmap_register;
1179 na.nm_intr = iflib_netmap_intr;
1180 na.num_tx_rings = ctx->ifc_softc_ctx.isc_ntxqsets;
1181 na.num_rx_rings = ctx->ifc_softc_ctx.isc_nrxqsets;
1182 return (netmap_attach(&na));
1183 }
1184
1185 static void
iflib_netmap_txq_init(if_ctx_t ctx,iflib_txq_t txq)1186 iflib_netmap_txq_init(if_ctx_t ctx, iflib_txq_t txq)
1187 {
1188 struct netmap_adapter *na = NA(ctx->ifc_ifp);
1189 struct netmap_slot *slot;
1190
1191 slot = netmap_reset(na, NR_TX, txq->ift_id, 0);
1192 if (slot == NULL)
1193 return;
1194 for (int i = 0; i < ctx->ifc_softc_ctx.isc_ntxd[0]; i++) {
1195
1196 /*
1197 * In netmap mode, set the map for the packet buffer.
1198 * NOTE: Some drivers (not this one) also need to set
1199 * the physical buffer address in the NIC ring.
1200 * netmap_idx_n2k() maps a nic index, i, into the corresponding
1201 * netmap slot index, si
1202 */
1203 int si = netmap_idx_n2k(na->tx_rings[txq->ift_id], i);
1204 netmap_load_map(na, txq->ift_buf_tag, txq->ift_sds.ifsd_map[i],
1205 NMB(na, slot + si));
1206 }
1207 }
1208
1209 static void
iflib_netmap_rxq_init(if_ctx_t ctx,iflib_rxq_t rxq)1210 iflib_netmap_rxq_init(if_ctx_t ctx, iflib_rxq_t rxq)
1211 {
1212 struct netmap_adapter *na = NA(ctx->ifc_ifp);
1213 struct netmap_kring *kring = na->rx_rings[rxq->ifr_id];
1214 struct netmap_slot *slot;
1215 uint32_t nm_i;
1216
1217 slot = netmap_reset(na, NR_RX, rxq->ifr_id, 0);
1218 if (slot == NULL)
1219 return;
1220 nm_i = netmap_idx_n2k(kring, 0);
1221 netmap_fl_refill(rxq, kring, nm_i, true);
1222 }
1223
1224 static void
iflib_netmap_timer_adjust(if_ctx_t ctx,iflib_txq_t txq,uint32_t * reset_on)1225 iflib_netmap_timer_adjust(if_ctx_t ctx, iflib_txq_t txq, uint32_t *reset_on)
1226 {
1227 struct netmap_kring *kring;
1228 uint16_t txqid;
1229
1230 txqid = txq->ift_id;
1231 kring = NA(ctx->ifc_ifp)->tx_rings[txqid];
1232
1233 if (kring->nr_hwcur != nm_next(kring->nr_hwtail, kring->nkr_num_slots - 1)) {
1234 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
1235 BUS_DMASYNC_POSTREAD);
1236 if (ctx->isc_txd_credits_update(ctx->ifc_softc, txqid, false))
1237 netmap_tx_irq(ctx->ifc_ifp, txqid);
1238 if (!(ctx->ifc_flags & IFC_NETMAP_TX_IRQ)) {
1239 if (hz < 2000)
1240 *reset_on = 1;
1241 else
1242 *reset_on = hz / 1000;
1243 }
1244 }
1245 }
1246
1247 #define iflib_netmap_detach(ifp) netmap_detach(ifp)
1248
1249 #else
1250 #define iflib_netmap_txq_init(ctx, txq)
1251 #define iflib_netmap_rxq_init(ctx, rxq)
1252 #define iflib_netmap_detach(ifp)
1253
1254 #define iflib_netmap_attach(ctx) (0)
1255 #define netmap_rx_irq(ifp, qid, budget) (0)
1256 #define netmap_tx_irq(ifp, qid) do {} while (0)
1257 #define iflib_netmap_timer_adjust(ctx, txq, reset_on)
1258
1259 #endif
1260
1261 #if defined(__i386__) || defined(__amd64__)
1262 static __inline void
prefetch(void * x)1263 prefetch(void *x)
1264 {
1265 __asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
1266 }
1267 static __inline void
prefetch2cachelines(void * x)1268 prefetch2cachelines(void *x)
1269 {
1270 __asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
1271 #if (CACHE_LINE_SIZE < 128)
1272 __asm volatile("prefetcht0 %0" :: "m" (*(((unsigned long *)x)+CACHE_LINE_SIZE/(sizeof(unsigned long)))));
1273 #endif
1274 }
1275 #else
1276 #define prefetch(x)
1277 #define prefetch2cachelines(x)
1278 #endif
1279
1280 static void
iflib_gen_mac(if_ctx_t ctx)1281 iflib_gen_mac(if_ctx_t ctx)
1282 {
1283 struct thread *td;
1284 MD5_CTX mdctx;
1285 char uuid[HOSTUUIDLEN+1];
1286 char buf[HOSTUUIDLEN+16];
1287 uint8_t *mac;
1288 unsigned char digest[16];
1289
1290 td = curthread;
1291 mac = ctx->ifc_mac;
1292 uuid[HOSTUUIDLEN] = 0;
1293 bcopy(td->td_ucred->cr_prison->pr_hostuuid, uuid, HOSTUUIDLEN);
1294 snprintf(buf, HOSTUUIDLEN+16, "%s-%s", uuid, device_get_nameunit(ctx->ifc_dev));
1295 /*
1296 * Generate a pseudo-random, deterministic MAC
1297 * address based on the UUID and unit number.
1298 * The FreeBSD Foundation OUI of 58-9C-FC is used.
1299 */
1300 MD5Init(&mdctx);
1301 MD5Update(&mdctx, buf, strlen(buf));
1302 MD5Final(digest, &mdctx);
1303
1304 mac[0] = 0x58;
1305 mac[1] = 0x9C;
1306 mac[2] = 0xFC;
1307 mac[3] = digest[0];
1308 mac[4] = digest[1];
1309 mac[5] = digest[2];
1310 }
1311
1312 static void
iru_init(if_rxd_update_t iru,iflib_rxq_t rxq,uint8_t flid)1313 iru_init(if_rxd_update_t iru, iflib_rxq_t rxq, uint8_t flid)
1314 {
1315 iflib_fl_t fl;
1316
1317 fl = &rxq->ifr_fl[flid];
1318 iru->iru_paddrs = fl->ifl_bus_addrs;
1319 iru->iru_vaddrs = &fl->ifl_vm_addrs[0];
1320 iru->iru_idxs = fl->ifl_rxd_idxs;
1321 iru->iru_qsidx = rxq->ifr_id;
1322 iru->iru_buf_size = fl->ifl_buf_size;
1323 iru->iru_flidx = fl->ifl_id;
1324 }
1325
1326 static void
_iflib_dmamap_cb(void * arg,bus_dma_segment_t * segs,int nseg,int err)1327 _iflib_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nseg, int err)
1328 {
1329 if (err)
1330 return;
1331 *(bus_addr_t *) arg = segs[0].ds_addr;
1332 }
1333
1334 int
iflib_dma_alloc_align(if_ctx_t ctx,int size,int align,iflib_dma_info_t dma,int mapflags)1335 iflib_dma_alloc_align(if_ctx_t ctx, int size, int align, iflib_dma_info_t dma, int mapflags)
1336 {
1337 int err;
1338 device_t dev = ctx->ifc_dev;
1339
1340 err = bus_dma_tag_create(bus_get_dma_tag(dev), /* parent */
1341 align, 0, /* alignment, bounds */
1342 BUS_SPACE_MAXADDR, /* lowaddr */
1343 BUS_SPACE_MAXADDR, /* highaddr */
1344 NULL, NULL, /* filter, filterarg */
1345 size, /* maxsize */
1346 1, /* nsegments */
1347 size, /* maxsegsize */
1348 BUS_DMA_ALLOCNOW, /* flags */
1349 NULL, /* lockfunc */
1350 NULL, /* lockarg */
1351 &dma->idi_tag);
1352 if (err) {
1353 device_printf(dev,
1354 "%s: bus_dma_tag_create failed: %d\n",
1355 __func__, err);
1356 goto fail_0;
1357 }
1358
1359 err = bus_dmamem_alloc(dma->idi_tag, (void**) &dma->idi_vaddr,
1360 BUS_DMA_NOWAIT | BUS_DMA_COHERENT | BUS_DMA_ZERO, &dma->idi_map);
1361 if (err) {
1362 device_printf(dev,
1363 "%s: bus_dmamem_alloc(%ju) failed: %d\n",
1364 __func__, (uintmax_t)size, err);
1365 goto fail_1;
1366 }
1367
1368 dma->idi_paddr = IF_BAD_DMA;
1369 err = bus_dmamap_load(dma->idi_tag, dma->idi_map, dma->idi_vaddr,
1370 size, _iflib_dmamap_cb, &dma->idi_paddr, mapflags | BUS_DMA_NOWAIT);
1371 if (err || dma->idi_paddr == IF_BAD_DMA) {
1372 device_printf(dev,
1373 "%s: bus_dmamap_load failed: %d\n",
1374 __func__, err);
1375 goto fail_2;
1376 }
1377
1378 dma->idi_size = size;
1379 return (0);
1380
1381 fail_2:
1382 bus_dmamem_free(dma->idi_tag, dma->idi_vaddr, dma->idi_map);
1383 fail_1:
1384 bus_dma_tag_destroy(dma->idi_tag);
1385 fail_0:
1386 dma->idi_tag = NULL;
1387
1388 return (err);
1389 }
1390
1391 int
iflib_dma_alloc(if_ctx_t ctx,int size,iflib_dma_info_t dma,int mapflags)1392 iflib_dma_alloc(if_ctx_t ctx, int size, iflib_dma_info_t dma, int mapflags)
1393 {
1394 if_shared_ctx_t sctx = ctx->ifc_sctx;
1395
1396 KASSERT(sctx->isc_q_align != 0, ("alignment value not initialized"));
1397
1398 return (iflib_dma_alloc_align(ctx, size, sctx->isc_q_align, dma, mapflags));
1399 }
1400
1401 int
iflib_dma_alloc_multi(if_ctx_t ctx,int * sizes,iflib_dma_info_t * dmalist,int mapflags,int count)1402 iflib_dma_alloc_multi(if_ctx_t ctx, int *sizes, iflib_dma_info_t *dmalist, int mapflags, int count)
1403 {
1404 int i, err;
1405 iflib_dma_info_t *dmaiter;
1406
1407 dmaiter = dmalist;
1408 for (i = 0; i < count; i++, dmaiter++) {
1409 if ((err = iflib_dma_alloc(ctx, sizes[i], *dmaiter, mapflags)) != 0)
1410 break;
1411 }
1412 if (err)
1413 iflib_dma_free_multi(dmalist, i);
1414 return (err);
1415 }
1416
1417 void
iflib_dma_free(iflib_dma_info_t dma)1418 iflib_dma_free(iflib_dma_info_t dma)
1419 {
1420 if (dma->idi_tag == NULL)
1421 return;
1422 if (dma->idi_paddr != IF_BAD_DMA) {
1423 bus_dmamap_sync(dma->idi_tag, dma->idi_map,
1424 BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1425 bus_dmamap_unload(dma->idi_tag, dma->idi_map);
1426 dma->idi_paddr = IF_BAD_DMA;
1427 }
1428 if (dma->idi_vaddr != NULL) {
1429 bus_dmamem_free(dma->idi_tag, dma->idi_vaddr, dma->idi_map);
1430 dma->idi_vaddr = NULL;
1431 }
1432 bus_dma_tag_destroy(dma->idi_tag);
1433 dma->idi_tag = NULL;
1434 }
1435
1436 void
iflib_dma_free_multi(iflib_dma_info_t * dmalist,int count)1437 iflib_dma_free_multi(iflib_dma_info_t *dmalist, int count)
1438 {
1439 int i;
1440 iflib_dma_info_t *dmaiter = dmalist;
1441
1442 for (i = 0; i < count; i++, dmaiter++)
1443 iflib_dma_free(*dmaiter);
1444 }
1445
1446 #ifdef EARLY_AP_STARTUP
1447 static const int iflib_started = 1;
1448 #else
1449 /*
1450 * We used to abuse the smp_started flag to decide if the queues have been
1451 * fully initialized (by late taskqgroup_adjust() calls in a SYSINIT()).
1452 * That gave bad races, since the SYSINIT() runs strictly after smp_started
1453 * is set. Run a SYSINIT() strictly after that to just set a usable
1454 * completion flag.
1455 */
1456
1457 static int iflib_started;
1458
1459 static void
iflib_record_started(void * arg)1460 iflib_record_started(void *arg)
1461 {
1462 iflib_started = 1;
1463 }
1464
1465 SYSINIT(iflib_record_started, SI_SUB_SMP + 1, SI_ORDER_FIRST,
1466 iflib_record_started, NULL);
1467 #endif
1468
1469 static int
iflib_fast_intr(void * arg)1470 iflib_fast_intr(void *arg)
1471 {
1472 iflib_filter_info_t info = arg;
1473 struct grouptask *gtask = info->ifi_task;
1474 int result;
1475
1476 if (!iflib_started)
1477 return (FILTER_STRAY);
1478
1479 DBG_COUNTER_INC(fast_intrs);
1480 if (info->ifi_filter != NULL) {
1481 result = info->ifi_filter(info->ifi_filter_arg);
1482 if ((result & FILTER_SCHEDULE_THREAD) == 0)
1483 return (result);
1484 }
1485
1486 GROUPTASK_ENQUEUE(gtask);
1487 return (FILTER_HANDLED);
1488 }
1489
1490 static int
iflib_fast_intr_rxtx(void * arg)1491 iflib_fast_intr_rxtx(void *arg)
1492 {
1493 iflib_filter_info_t info = arg;
1494 struct grouptask *gtask = info->ifi_task;
1495 if_ctx_t ctx;
1496 iflib_rxq_t rxq = (iflib_rxq_t)info->ifi_ctx;
1497 iflib_txq_t txq;
1498 void *sc;
1499 int i, cidx, result;
1500 qidx_t txqid;
1501 bool intr_enable, intr_legacy;
1502
1503 if (!iflib_started)
1504 return (FILTER_STRAY);
1505
1506 DBG_COUNTER_INC(fast_intrs);
1507 if (info->ifi_filter != NULL) {
1508 result = info->ifi_filter(info->ifi_filter_arg);
1509 if ((result & FILTER_SCHEDULE_THREAD) == 0)
1510 return (result);
1511 }
1512
1513 ctx = rxq->ifr_ctx;
1514 sc = ctx->ifc_softc;
1515 intr_enable = false;
1516 intr_legacy = !!(ctx->ifc_flags & IFC_LEGACY);
1517 MPASS(rxq->ifr_ntxqirq);
1518 for (i = 0; i < rxq->ifr_ntxqirq; i++) {
1519 txqid = rxq->ifr_txqid[i];
1520 txq = &ctx->ifc_txqs[txqid];
1521 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
1522 BUS_DMASYNC_POSTREAD);
1523 if (!ctx->isc_txd_credits_update(sc, txqid, false)) {
1524 if (intr_legacy)
1525 intr_enable = true;
1526 else
1527 IFDI_TX_QUEUE_INTR_ENABLE(ctx, txqid);
1528 continue;
1529 }
1530 GROUPTASK_ENQUEUE(&txq->ift_task);
1531 }
1532 if (ctx->ifc_sctx->isc_flags & IFLIB_HAS_RXCQ)
1533 cidx = rxq->ifr_cq_cidx;
1534 else
1535 cidx = rxq->ifr_fl[0].ifl_cidx;
1536 if (iflib_rxd_avail(ctx, rxq, cidx, 1))
1537 GROUPTASK_ENQUEUE(gtask);
1538 else {
1539 if (intr_legacy)
1540 intr_enable = true;
1541 else
1542 IFDI_RX_QUEUE_INTR_ENABLE(ctx, rxq->ifr_id);
1543 DBG_COUNTER_INC(rx_intr_enables);
1544 }
1545 if (intr_enable)
1546 IFDI_INTR_ENABLE(ctx);
1547 return (FILTER_HANDLED);
1548 }
1549
1550
1551 static int
iflib_fast_intr_ctx(void * arg)1552 iflib_fast_intr_ctx(void *arg)
1553 {
1554 iflib_filter_info_t info = arg;
1555 struct grouptask *gtask = info->ifi_task;
1556 int result;
1557
1558 if (!iflib_started)
1559 return (FILTER_STRAY);
1560
1561 DBG_COUNTER_INC(fast_intrs);
1562 if (info->ifi_filter != NULL) {
1563 result = info->ifi_filter(info->ifi_filter_arg);
1564 if ((result & FILTER_SCHEDULE_THREAD) == 0)
1565 return (result);
1566 }
1567
1568 GROUPTASK_ENQUEUE(gtask);
1569 return (FILTER_HANDLED);
1570 }
1571
1572 static int
_iflib_irq_alloc(if_ctx_t ctx,if_irq_t irq,int rid,driver_filter_t filter,driver_intr_t handler,void * arg,const char * name)1573 _iflib_irq_alloc(if_ctx_t ctx, if_irq_t irq, int rid,
1574 driver_filter_t filter, driver_intr_t handler, void *arg,
1575 const char *name)
1576 {
1577 int rc, flags;
1578 struct resource *res;
1579 void *tag = NULL;
1580 device_t dev = ctx->ifc_dev;
1581
1582 flags = RF_ACTIVE;
1583 if (ctx->ifc_flags & IFC_LEGACY)
1584 flags |= RF_SHAREABLE;
1585 MPASS(rid < 512);
1586 irq->ii_rid = rid;
1587 res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &irq->ii_rid, flags);
1588 if (res == NULL) {
1589 device_printf(dev,
1590 "failed to allocate IRQ for rid %d, name %s.\n", rid, name);
1591 return (ENOMEM);
1592 }
1593 irq->ii_res = res;
1594 KASSERT(filter == NULL || handler == NULL, ("filter and handler can't both be non-NULL"));
1595 rc = bus_setup_intr(dev, res, INTR_MPSAFE | INTR_TYPE_NET,
1596 filter, handler, arg, &tag);
1597 if (rc != 0) {
1598 device_printf(dev,
1599 "failed to setup interrupt for rid %d, name %s: %d\n",
1600 rid, name ? name : "unknown", rc);
1601 return (rc);
1602 } else if (name)
1603 bus_describe_intr(dev, res, tag, "%s", name);
1604
1605 irq->ii_tag = tag;
1606 return (0);
1607 }
1608
1609
1610 /*********************************************************************
1611 *
1612 * Allocate DMA resources for TX buffers as well as memory for the TX
1613 * mbuf map. TX DMA maps (non-TSO/TSO) and TX mbuf map are kept in a
1614 * iflib_sw_tx_desc_array structure, storing all the information that
1615 * is needed to transmit a packet on the wire. This is called only
1616 * once at attach, setup is done every reset.
1617 *
1618 **********************************************************************/
1619 static int
iflib_txsd_alloc(iflib_txq_t txq)1620 iflib_txsd_alloc(iflib_txq_t txq)
1621 {
1622 if_ctx_t ctx = txq->ift_ctx;
1623 if_shared_ctx_t sctx = ctx->ifc_sctx;
1624 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1625 device_t dev = ctx->ifc_dev;
1626 bus_size_t tsomaxsize;
1627 int err, nsegments, ntsosegments;
1628 bool tso;
1629
1630 nsegments = scctx->isc_tx_nsegments;
1631 ntsosegments = scctx->isc_tx_tso_segments_max;
1632 tsomaxsize = scctx->isc_tx_tso_size_max;
1633 if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_VLAN_MTU)
1634 tsomaxsize += sizeof(struct ether_vlan_header);
1635 MPASS(scctx->isc_ntxd[0] > 0);
1636 MPASS(scctx->isc_ntxd[txq->ift_br_offset] > 0);
1637 MPASS(nsegments > 0);
1638 if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_TSO) {
1639 MPASS(ntsosegments > 0);
1640 MPASS(sctx->isc_tso_maxsize >= tsomaxsize);
1641 }
1642
1643 /*
1644 * Set up DMA tags for TX buffers.
1645 */
1646 if ((err = bus_dma_tag_create(bus_get_dma_tag(dev),
1647 1, 0, /* alignment, bounds */
1648 BUS_SPACE_MAXADDR, /* lowaddr */
1649 BUS_SPACE_MAXADDR, /* highaddr */
1650 NULL, NULL, /* filter, filterarg */
1651 sctx->isc_tx_maxsize, /* maxsize */
1652 nsegments, /* nsegments */
1653 sctx->isc_tx_maxsegsize, /* maxsegsize */
1654 0, /* flags */
1655 NULL, /* lockfunc */
1656 NULL, /* lockfuncarg */
1657 &txq->ift_buf_tag))) {
1658 device_printf(dev,"Unable to allocate TX DMA tag: %d\n", err);
1659 device_printf(dev,"maxsize: %ju nsegments: %d maxsegsize: %ju\n",
1660 (uintmax_t)sctx->isc_tx_maxsize, nsegments, (uintmax_t)sctx->isc_tx_maxsegsize);
1661 goto fail;
1662 }
1663 tso = (if_getcapabilities(ctx->ifc_ifp) & IFCAP_TSO) != 0;
1664 if (tso && (err = bus_dma_tag_create(bus_get_dma_tag(dev),
1665 1, 0, /* alignment, bounds */
1666 BUS_SPACE_MAXADDR, /* lowaddr */
1667 BUS_SPACE_MAXADDR, /* highaddr */
1668 NULL, NULL, /* filter, filterarg */
1669 tsomaxsize, /* maxsize */
1670 ntsosegments, /* nsegments */
1671 sctx->isc_tso_maxsegsize,/* maxsegsize */
1672 0, /* flags */
1673 NULL, /* lockfunc */
1674 NULL, /* lockfuncarg */
1675 &txq->ift_tso_buf_tag))) {
1676 device_printf(dev, "Unable to allocate TSO TX DMA tag: %d\n",
1677 err);
1678 goto fail;
1679 }
1680
1681 /* Allocate memory for the TX mbuf map. */
1682 if (!(txq->ift_sds.ifsd_m =
1683 (struct mbuf **) malloc(sizeof(struct mbuf *) *
1684 scctx->isc_ntxd[txq->ift_br_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1685 device_printf(dev, "Unable to allocate TX mbuf map memory\n");
1686 err = ENOMEM;
1687 goto fail;
1688 }
1689
1690 /*
1691 * Create the DMA maps for TX buffers.
1692 */
1693 if ((txq->ift_sds.ifsd_map = (bus_dmamap_t *)malloc(
1694 sizeof(bus_dmamap_t) * scctx->isc_ntxd[txq->ift_br_offset],
1695 M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
1696 device_printf(dev,
1697 "Unable to allocate TX buffer DMA map memory\n");
1698 err = ENOMEM;
1699 goto fail;
1700 }
1701 if (tso && (txq->ift_sds.ifsd_tso_map = (bus_dmamap_t *)malloc(
1702 sizeof(bus_dmamap_t) * scctx->isc_ntxd[txq->ift_br_offset],
1703 M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
1704 device_printf(dev,
1705 "Unable to allocate TSO TX buffer map memory\n");
1706 err = ENOMEM;
1707 goto fail;
1708 }
1709 for (int i = 0; i < scctx->isc_ntxd[txq->ift_br_offset]; i++) {
1710 err = bus_dmamap_create(txq->ift_buf_tag, 0,
1711 &txq->ift_sds.ifsd_map[i]);
1712 if (err != 0) {
1713 device_printf(dev, "Unable to create TX DMA map\n");
1714 goto fail;
1715 }
1716 if (!tso)
1717 continue;
1718 err = bus_dmamap_create(txq->ift_tso_buf_tag, 0,
1719 &txq->ift_sds.ifsd_tso_map[i]);
1720 if (err != 0) {
1721 device_printf(dev, "Unable to create TSO TX DMA map\n");
1722 goto fail;
1723 }
1724 }
1725 return (0);
1726 fail:
1727 /* We free all, it handles case where we are in the middle */
1728 iflib_tx_structures_free(ctx);
1729 return (err);
1730 }
1731
1732 static void
iflib_txsd_destroy(if_ctx_t ctx,iflib_txq_t txq,int i)1733 iflib_txsd_destroy(if_ctx_t ctx, iflib_txq_t txq, int i)
1734 {
1735 bus_dmamap_t map;
1736
1737 map = NULL;
1738 if (txq->ift_sds.ifsd_map != NULL)
1739 map = txq->ift_sds.ifsd_map[i];
1740 if (map != NULL) {
1741 bus_dmamap_sync(txq->ift_buf_tag, map, BUS_DMASYNC_POSTWRITE);
1742 bus_dmamap_unload(txq->ift_buf_tag, map);
1743 bus_dmamap_destroy(txq->ift_buf_tag, map);
1744 txq->ift_sds.ifsd_map[i] = NULL;
1745 }
1746
1747 map = NULL;
1748 if (txq->ift_sds.ifsd_tso_map != NULL)
1749 map = txq->ift_sds.ifsd_tso_map[i];
1750 if (map != NULL) {
1751 bus_dmamap_sync(txq->ift_tso_buf_tag, map,
1752 BUS_DMASYNC_POSTWRITE);
1753 bus_dmamap_unload(txq->ift_tso_buf_tag, map);
1754 bus_dmamap_destroy(txq->ift_tso_buf_tag, map);
1755 txq->ift_sds.ifsd_tso_map[i] = NULL;
1756 }
1757 }
1758
1759 static void
iflib_txq_destroy(iflib_txq_t txq)1760 iflib_txq_destroy(iflib_txq_t txq)
1761 {
1762 if_ctx_t ctx = txq->ift_ctx;
1763
1764 for (int i = 0; i < txq->ift_size; i++)
1765 iflib_txsd_destroy(ctx, txq, i);
1766 if (txq->ift_sds.ifsd_map != NULL) {
1767 free(txq->ift_sds.ifsd_map, M_IFLIB);
1768 txq->ift_sds.ifsd_map = NULL;
1769 }
1770 if (txq->ift_sds.ifsd_tso_map != NULL) {
1771 free(txq->ift_sds.ifsd_tso_map, M_IFLIB);
1772 txq->ift_sds.ifsd_tso_map = NULL;
1773 }
1774 if (txq->ift_sds.ifsd_m != NULL) {
1775 free(txq->ift_sds.ifsd_m, M_IFLIB);
1776 txq->ift_sds.ifsd_m = NULL;
1777 }
1778 if (txq->ift_buf_tag != NULL) {
1779 bus_dma_tag_destroy(txq->ift_buf_tag);
1780 txq->ift_buf_tag = NULL;
1781 }
1782 if (txq->ift_tso_buf_tag != NULL) {
1783 bus_dma_tag_destroy(txq->ift_tso_buf_tag);
1784 txq->ift_tso_buf_tag = NULL;
1785 }
1786 }
1787
1788 static void
iflib_txsd_free(if_ctx_t ctx,iflib_txq_t txq,int i)1789 iflib_txsd_free(if_ctx_t ctx, iflib_txq_t txq, int i)
1790 {
1791 struct mbuf **mp;
1792
1793 mp = &txq->ift_sds.ifsd_m[i];
1794 if (*mp == NULL)
1795 return;
1796
1797 if (txq->ift_sds.ifsd_map != NULL) {
1798 bus_dmamap_sync(txq->ift_buf_tag,
1799 txq->ift_sds.ifsd_map[i], BUS_DMASYNC_POSTWRITE);
1800 bus_dmamap_unload(txq->ift_buf_tag, txq->ift_sds.ifsd_map[i]);
1801 }
1802 if (txq->ift_sds.ifsd_tso_map != NULL) {
1803 bus_dmamap_sync(txq->ift_tso_buf_tag,
1804 txq->ift_sds.ifsd_tso_map[i], BUS_DMASYNC_POSTWRITE);
1805 bus_dmamap_unload(txq->ift_tso_buf_tag,
1806 txq->ift_sds.ifsd_tso_map[i]);
1807 }
1808 m_free(*mp);
1809 DBG_COUNTER_INC(tx_frees);
1810 *mp = NULL;
1811 }
1812
1813 static int
iflib_txq_setup(iflib_txq_t txq)1814 iflib_txq_setup(iflib_txq_t txq)
1815 {
1816 if_ctx_t ctx = txq->ift_ctx;
1817 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1818 if_shared_ctx_t sctx = ctx->ifc_sctx;
1819 iflib_dma_info_t di;
1820 int i;
1821
1822 /* Set number of descriptors available */
1823 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
1824 /* XXX make configurable */
1825 txq->ift_update_freq = IFLIB_DEFAULT_TX_UPDATE_FREQ;
1826
1827 /* Reset indices */
1828 txq->ift_cidx_processed = 0;
1829 txq->ift_pidx = txq->ift_cidx = txq->ift_npending = 0;
1830 txq->ift_size = scctx->isc_ntxd[txq->ift_br_offset];
1831
1832 for (i = 0, di = txq->ift_ifdi; i < sctx->isc_ntxqs; i++, di++)
1833 bzero((void *)di->idi_vaddr, di->idi_size);
1834
1835 IFDI_TXQ_SETUP(ctx, txq->ift_id);
1836 for (i = 0, di = txq->ift_ifdi; i < sctx->isc_ntxqs; i++, di++)
1837 bus_dmamap_sync(di->idi_tag, di->idi_map,
1838 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1839 return (0);
1840 }
1841
1842 /*********************************************************************
1843 *
1844 * Allocate DMA resources for RX buffers as well as memory for the RX
1845 * mbuf map, direct RX cluster pointer map and RX cluster bus address
1846 * map. RX DMA map, RX mbuf map, direct RX cluster pointer map and
1847 * RX cluster map are kept in a iflib_sw_rx_desc_array structure.
1848 * Since we use use one entry in iflib_sw_rx_desc_array per received
1849 * packet, the maximum number of entries we'll need is equal to the
1850 * number of hardware receive descriptors that we've allocated.
1851 *
1852 **********************************************************************/
1853 static int
iflib_rxsd_alloc(iflib_rxq_t rxq)1854 iflib_rxsd_alloc(iflib_rxq_t rxq)
1855 {
1856 if_ctx_t ctx = rxq->ifr_ctx;
1857 if_shared_ctx_t sctx = ctx->ifc_sctx;
1858 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
1859 device_t dev = ctx->ifc_dev;
1860 iflib_fl_t fl;
1861 int err;
1862
1863 MPASS(scctx->isc_nrxd[0] > 0);
1864 MPASS(scctx->isc_nrxd[rxq->ifr_fl_offset] > 0);
1865
1866 fl = rxq->ifr_fl;
1867 for (int i = 0; i < rxq->ifr_nfl; i++, fl++) {
1868 fl->ifl_size = scctx->isc_nrxd[rxq->ifr_fl_offset]; /* this isn't necessarily the same */
1869 /* Set up DMA tag for RX buffers. */
1870 err = bus_dma_tag_create(bus_get_dma_tag(dev), /* parent */
1871 1, 0, /* alignment, bounds */
1872 BUS_SPACE_MAXADDR, /* lowaddr */
1873 BUS_SPACE_MAXADDR, /* highaddr */
1874 NULL, NULL, /* filter, filterarg */
1875 sctx->isc_rx_maxsize, /* maxsize */
1876 sctx->isc_rx_nsegments, /* nsegments */
1877 sctx->isc_rx_maxsegsize, /* maxsegsize */
1878 0, /* flags */
1879 NULL, /* lockfunc */
1880 NULL, /* lockarg */
1881 &fl->ifl_buf_tag);
1882 if (err) {
1883 device_printf(dev,
1884 "Unable to allocate RX DMA tag: %d\n", err);
1885 goto fail;
1886 }
1887
1888 /* Allocate memory for the RX mbuf map. */
1889 if (!(fl->ifl_sds.ifsd_m =
1890 (struct mbuf **) malloc(sizeof(struct mbuf *) *
1891 scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1892 device_printf(dev,
1893 "Unable to allocate RX mbuf map memory\n");
1894 err = ENOMEM;
1895 goto fail;
1896 }
1897
1898 /* Allocate memory for the direct RX cluster pointer map. */
1899 if (!(fl->ifl_sds.ifsd_cl =
1900 (caddr_t *) malloc(sizeof(caddr_t) *
1901 scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1902 device_printf(dev,
1903 "Unable to allocate RX cluster map memory\n");
1904 err = ENOMEM;
1905 goto fail;
1906 }
1907
1908 /* Allocate memory for the RX cluster bus address map. */
1909 if (!(fl->ifl_sds.ifsd_ba =
1910 (bus_addr_t *) malloc(sizeof(bus_addr_t) *
1911 scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1912 device_printf(dev,
1913 "Unable to allocate RX bus address map memory\n");
1914 err = ENOMEM;
1915 goto fail;
1916 }
1917
1918 /*
1919 * Create the DMA maps for RX buffers.
1920 */
1921 if (!(fl->ifl_sds.ifsd_map =
1922 (bus_dmamap_t *) malloc(sizeof(bus_dmamap_t) * scctx->isc_nrxd[rxq->ifr_fl_offset], M_IFLIB, M_NOWAIT | M_ZERO))) {
1923 device_printf(dev,
1924 "Unable to allocate RX buffer DMA map memory\n");
1925 err = ENOMEM;
1926 goto fail;
1927 }
1928 for (int i = 0; i < scctx->isc_nrxd[rxq->ifr_fl_offset]; i++) {
1929 err = bus_dmamap_create(fl->ifl_buf_tag, 0,
1930 &fl->ifl_sds.ifsd_map[i]);
1931 if (err != 0) {
1932 device_printf(dev, "Unable to create RX buffer DMA map\n");
1933 goto fail;
1934 }
1935 }
1936 }
1937 return (0);
1938
1939 fail:
1940 iflib_rx_structures_free(ctx);
1941 return (err);
1942 }
1943
1944
1945 /*
1946 * Internal service routines
1947 */
1948
1949 struct rxq_refill_cb_arg {
1950 int error;
1951 bus_dma_segment_t seg;
1952 int nseg;
1953 };
1954
1955 static void
_rxq_refill_cb(void * arg,bus_dma_segment_t * segs,int nseg,int error)1956 _rxq_refill_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
1957 {
1958 struct rxq_refill_cb_arg *cb_arg = arg;
1959
1960 cb_arg->error = error;
1961 cb_arg->seg = segs[0];
1962 cb_arg->nseg = nseg;
1963 }
1964
1965 /**
1966 * _iflib_fl_refill - refill an rxq free-buffer list
1967 * @ctx: the iflib context
1968 * @fl: the free list to refill
1969 * @count: the number of new buffers to allocate
1970 *
1971 * (Re)populate an rxq free-buffer list with up to @count new packet buffers.
1972 * The caller must assure that @count does not exceed the queue's capacity.
1973 */
1974 static void
_iflib_fl_refill(if_ctx_t ctx,iflib_fl_t fl,int count)1975 _iflib_fl_refill(if_ctx_t ctx, iflib_fl_t fl, int count)
1976 {
1977 struct if_rxd_update iru;
1978 struct rxq_refill_cb_arg cb_arg;
1979 struct mbuf *m;
1980 caddr_t cl, *sd_cl;
1981 struct mbuf **sd_m;
1982 bus_dmamap_t *sd_map;
1983 bus_addr_t bus_addr, *sd_ba;
1984 int err, frag_idx, i, idx, n, pidx;
1985 qidx_t credits;
1986
1987 sd_m = fl->ifl_sds.ifsd_m;
1988 sd_map = fl->ifl_sds.ifsd_map;
1989 sd_cl = fl->ifl_sds.ifsd_cl;
1990 sd_ba = fl->ifl_sds.ifsd_ba;
1991 pidx = fl->ifl_pidx;
1992 idx = pidx;
1993 frag_idx = fl->ifl_fragidx;
1994 credits = fl->ifl_credits;
1995
1996 i = 0;
1997 n = count;
1998 MPASS(n > 0);
1999 MPASS(credits + n <= fl->ifl_size);
2000
2001 if (pidx < fl->ifl_cidx)
2002 MPASS(pidx + n <= fl->ifl_cidx);
2003 if (pidx == fl->ifl_cidx && (credits < fl->ifl_size))
2004 MPASS(fl->ifl_gen == 0);
2005 if (pidx > fl->ifl_cidx)
2006 MPASS(n <= fl->ifl_size - pidx + fl->ifl_cidx);
2007
2008 DBG_COUNTER_INC(fl_refills);
2009 if (n > 8)
2010 DBG_COUNTER_INC(fl_refills_large);
2011 iru_init(&iru, fl->ifl_rxq, fl->ifl_id);
2012 while (n--) {
2013 /*
2014 * We allocate an uninitialized mbuf + cluster, mbuf is
2015 * initialized after rx.
2016 *
2017 * If the cluster is still set then we know a minimum sized packet was received
2018 */
2019 bit_ffc_at(fl->ifl_rx_bitmap, frag_idx, fl->ifl_size,
2020 &frag_idx);
2021 if (frag_idx < 0)
2022 bit_ffc(fl->ifl_rx_bitmap, fl->ifl_size, &frag_idx);
2023 MPASS(frag_idx >= 0);
2024 if ((cl = sd_cl[frag_idx]) == NULL) {
2025 if ((cl = m_cljget(NULL, M_NOWAIT, fl->ifl_buf_size)) == NULL)
2026 break;
2027
2028 cb_arg.error = 0;
2029 MPASS(sd_map != NULL);
2030 err = bus_dmamap_load(fl->ifl_buf_tag, sd_map[frag_idx],
2031 cl, fl->ifl_buf_size, _rxq_refill_cb, &cb_arg,
2032 BUS_DMA_NOWAIT);
2033 if (err != 0 || cb_arg.error) {
2034 /*
2035 * !zone_pack ?
2036 */
2037 if (fl->ifl_zone == zone_pack)
2038 uma_zfree(fl->ifl_zone, cl);
2039 break;
2040 }
2041
2042 sd_ba[frag_idx] = bus_addr = cb_arg.seg.ds_addr;
2043 sd_cl[frag_idx] = cl;
2044 #if MEMORY_LOGGING
2045 fl->ifl_cl_enqueued++;
2046 #endif
2047 } else {
2048 bus_addr = sd_ba[frag_idx];
2049 }
2050 bus_dmamap_sync(fl->ifl_buf_tag, sd_map[frag_idx],
2051 BUS_DMASYNC_PREREAD);
2052
2053 MPASS(sd_m[frag_idx] == NULL);
2054 if ((m = m_gethdr(M_NOWAIT, MT_NOINIT)) == NULL) {
2055 break;
2056 }
2057 sd_m[frag_idx] = m;
2058 bit_set(fl->ifl_rx_bitmap, frag_idx);
2059 #if MEMORY_LOGGING
2060 fl->ifl_m_enqueued++;
2061 #endif
2062
2063 DBG_COUNTER_INC(rx_allocs);
2064 fl->ifl_rxd_idxs[i] = frag_idx;
2065 fl->ifl_bus_addrs[i] = bus_addr;
2066 fl->ifl_vm_addrs[i] = cl;
2067 credits++;
2068 i++;
2069 MPASS(credits <= fl->ifl_size);
2070 if (++idx == fl->ifl_size) {
2071 fl->ifl_gen = 1;
2072 idx = 0;
2073 }
2074 if (n == 0 || i == IFLIB_MAX_RX_REFRESH) {
2075 iru.iru_pidx = pidx;
2076 iru.iru_count = i;
2077 ctx->isc_rxd_refill(ctx->ifc_softc, &iru);
2078 i = 0;
2079 pidx = idx;
2080 fl->ifl_pidx = idx;
2081 fl->ifl_credits = credits;
2082 }
2083 }
2084
2085 if (i) {
2086 iru.iru_pidx = pidx;
2087 iru.iru_count = i;
2088 ctx->isc_rxd_refill(ctx->ifc_softc, &iru);
2089 fl->ifl_pidx = idx;
2090 fl->ifl_credits = credits;
2091 }
2092 DBG_COUNTER_INC(rxd_flush);
2093 if (fl->ifl_pidx == 0)
2094 pidx = fl->ifl_size - 1;
2095 else
2096 pidx = fl->ifl_pidx - 1;
2097
2098 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
2099 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2100 ctx->isc_rxd_flush(ctx->ifc_softc, fl->ifl_rxq->ifr_id, fl->ifl_id, pidx);
2101 fl->ifl_fragidx = frag_idx;
2102 }
2103
2104 static __inline void
__iflib_fl_refill_lt(if_ctx_t ctx,iflib_fl_t fl,int max)2105 __iflib_fl_refill_lt(if_ctx_t ctx, iflib_fl_t fl, int max)
2106 {
2107 /* we avoid allowing pidx to catch up with cidx as it confuses ixl */
2108 int32_t reclaimable = fl->ifl_size - fl->ifl_credits - 1;
2109 #ifdef INVARIANTS
2110 int32_t delta = fl->ifl_size - get_inuse(fl->ifl_size, fl->ifl_cidx, fl->ifl_pidx, fl->ifl_gen) - 1;
2111 #endif
2112
2113 MPASS(fl->ifl_credits <= fl->ifl_size);
2114 MPASS(reclaimable == delta);
2115
2116 if (reclaimable > 0)
2117 _iflib_fl_refill(ctx, fl, min(max, reclaimable));
2118 }
2119
2120 uint8_t
iflib_in_detach(if_ctx_t ctx)2121 iflib_in_detach(if_ctx_t ctx)
2122 {
2123 bool in_detach;
2124
2125 STATE_LOCK(ctx);
2126 in_detach = !!(ctx->ifc_flags & IFC_IN_DETACH);
2127 STATE_UNLOCK(ctx);
2128 return (in_detach);
2129 }
2130
2131 static void
iflib_fl_bufs_free(iflib_fl_t fl)2132 iflib_fl_bufs_free(iflib_fl_t fl)
2133 {
2134 iflib_dma_info_t idi = fl->ifl_ifdi;
2135 bus_dmamap_t sd_map;
2136 uint32_t i;
2137
2138 for (i = 0; i < fl->ifl_size; i++) {
2139 struct mbuf **sd_m = &fl->ifl_sds.ifsd_m[i];
2140 caddr_t *sd_cl = &fl->ifl_sds.ifsd_cl[i];
2141
2142 if (*sd_cl != NULL) {
2143 sd_map = fl->ifl_sds.ifsd_map[i];
2144 bus_dmamap_sync(fl->ifl_buf_tag, sd_map,
2145 BUS_DMASYNC_POSTREAD);
2146 bus_dmamap_unload(fl->ifl_buf_tag, sd_map);
2147 if (*sd_cl != NULL)
2148 uma_zfree(fl->ifl_zone, *sd_cl);
2149 // XXX: Should this get moved out?
2150 if (iflib_in_detach(fl->ifl_rxq->ifr_ctx))
2151 bus_dmamap_destroy(fl->ifl_buf_tag, sd_map);
2152 if (*sd_m != NULL) {
2153 m_init(*sd_m, M_NOWAIT, MT_DATA, 0);
2154 uma_zfree(zone_mbuf, *sd_m);
2155 }
2156 } else {
2157 MPASS(*sd_cl == NULL);
2158 MPASS(*sd_m == NULL);
2159 }
2160 #if MEMORY_LOGGING
2161 fl->ifl_m_dequeued++;
2162 fl->ifl_cl_dequeued++;
2163 #endif
2164 *sd_cl = NULL;
2165 *sd_m = NULL;
2166 }
2167 #ifdef INVARIANTS
2168 for (i = 0; i < fl->ifl_size; i++) {
2169 MPASS(fl->ifl_sds.ifsd_cl[i] == NULL);
2170 MPASS(fl->ifl_sds.ifsd_m[i] == NULL);
2171 }
2172 #endif
2173 /*
2174 * Reset free list values
2175 */
2176 fl->ifl_credits = fl->ifl_cidx = fl->ifl_pidx = fl->ifl_gen = fl->ifl_fragidx = 0;
2177 bzero(idi->idi_vaddr, idi->idi_size);
2178 }
2179
2180 /*********************************************************************
2181 *
2182 * Initialize a free list and its buffers.
2183 *
2184 **********************************************************************/
2185 static int
iflib_fl_setup(iflib_fl_t fl)2186 iflib_fl_setup(iflib_fl_t fl)
2187 {
2188 iflib_rxq_t rxq = fl->ifl_rxq;
2189 if_ctx_t ctx = rxq->ifr_ctx;
2190
2191 bit_nclear(fl->ifl_rx_bitmap, 0, fl->ifl_size - 1);
2192 /*
2193 ** Free current RX buffer structs and their mbufs
2194 */
2195 iflib_fl_bufs_free(fl);
2196 /* Now replenish the mbufs */
2197 MPASS(fl->ifl_credits == 0);
2198 fl->ifl_buf_size = ctx->ifc_rx_mbuf_sz;
2199 if (fl->ifl_buf_size > ctx->ifc_max_fl_buf_size)
2200 ctx->ifc_max_fl_buf_size = fl->ifl_buf_size;
2201 fl->ifl_cltype = m_gettype(fl->ifl_buf_size);
2202 fl->ifl_zone = m_getzone(fl->ifl_buf_size);
2203
2204
2205 /* avoid pre-allocating zillions of clusters to an idle card
2206 * potentially speeding up attach
2207 */
2208 _iflib_fl_refill(ctx, fl, min(128, fl->ifl_size));
2209 MPASS(min(128, fl->ifl_size) == fl->ifl_credits);
2210 if (min(128, fl->ifl_size) != fl->ifl_credits)
2211 return (ENOBUFS);
2212 /*
2213 * handle failure
2214 */
2215 MPASS(rxq != NULL);
2216 MPASS(fl->ifl_ifdi != NULL);
2217 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
2218 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2219 return (0);
2220 }
2221
2222 /*********************************************************************
2223 *
2224 * Free receive ring data structures
2225 *
2226 **********************************************************************/
2227 static void
iflib_rx_sds_free(iflib_rxq_t rxq)2228 iflib_rx_sds_free(iflib_rxq_t rxq)
2229 {
2230 iflib_fl_t fl;
2231 int i, j;
2232
2233 if (rxq->ifr_fl != NULL) {
2234 for (i = 0; i < rxq->ifr_nfl; i++) {
2235 fl = &rxq->ifr_fl[i];
2236 if (fl->ifl_buf_tag != NULL) {
2237 if (fl->ifl_sds.ifsd_map != NULL) {
2238 for (j = 0; j < fl->ifl_size; j++) {
2239 if (fl->ifl_sds.ifsd_map[j] ==
2240 NULL)
2241 continue;
2242 bus_dmamap_sync(
2243 fl->ifl_buf_tag,
2244 fl->ifl_sds.ifsd_map[j],
2245 BUS_DMASYNC_POSTREAD);
2246 bus_dmamap_unload(
2247 fl->ifl_buf_tag,
2248 fl->ifl_sds.ifsd_map[j]);
2249 }
2250 }
2251 bus_dma_tag_destroy(fl->ifl_buf_tag);
2252 fl->ifl_buf_tag = NULL;
2253 }
2254 free(fl->ifl_sds.ifsd_m, M_IFLIB);
2255 free(fl->ifl_sds.ifsd_cl, M_IFLIB);
2256 free(fl->ifl_sds.ifsd_ba, M_IFLIB);
2257 free(fl->ifl_sds.ifsd_map, M_IFLIB);
2258 fl->ifl_sds.ifsd_m = NULL;
2259 fl->ifl_sds.ifsd_cl = NULL;
2260 fl->ifl_sds.ifsd_ba = NULL;
2261 fl->ifl_sds.ifsd_map = NULL;
2262 }
2263 free(rxq->ifr_fl, M_IFLIB);
2264 rxq->ifr_fl = NULL;
2265 rxq->ifr_cq_cidx = 0;
2266 }
2267 }
2268
2269 /*
2270 * Timer routine
2271 */
2272 static void
iflib_timer(void * arg)2273 iflib_timer(void *arg)
2274 {
2275 iflib_txq_t txq = arg;
2276 if_ctx_t ctx = txq->ift_ctx;
2277 if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
2278 uint64_t this_tick = ticks;
2279 uint32_t reset_on = hz / 2;
2280
2281 if (!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING))
2282 return;
2283
2284 /*
2285 ** Check on the state of the TX queue(s), this
2286 ** can be done without the lock because its RO
2287 ** and the HUNG state will be static if set.
2288 */
2289 if (this_tick - txq->ift_last_timer_tick >= hz / 2) {
2290 txq->ift_last_timer_tick = this_tick;
2291 IFDI_TIMER(ctx, txq->ift_id);
2292 if ((txq->ift_qstatus == IFLIB_QUEUE_HUNG) &&
2293 ((txq->ift_cleaned_prev == txq->ift_cleaned) ||
2294 (sctx->isc_pause_frames == 0)))
2295 goto hung;
2296
2297 if (txq->ift_qstatus != IFLIB_QUEUE_IDLE &&
2298 ifmp_ring_is_stalled(txq->ift_br)) {
2299 KASSERT(ctx->ifc_link_state == LINK_STATE_UP, ("queue can't be marked as hung if interface is down"));
2300 txq->ift_qstatus = IFLIB_QUEUE_HUNG;
2301 }
2302 txq->ift_cleaned_prev = txq->ift_cleaned;
2303 }
2304 #ifdef DEV_NETMAP
2305 if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP)
2306 iflib_netmap_timer_adjust(ctx, txq, &reset_on);
2307 #endif
2308 /* handle any laggards */
2309 if (txq->ift_db_pending)
2310 GROUPTASK_ENQUEUE(&txq->ift_task);
2311
2312 sctx->isc_pause_frames = 0;
2313 if (if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING)
2314 callout_reset_on(&txq->ift_timer, reset_on, iflib_timer, txq, txq->ift_timer.c_cpu);
2315 return;
2316
2317 hung:
2318 device_printf(ctx->ifc_dev,
2319 "Watchdog timeout (TX: %d desc avail: %d pidx: %d) -- resetting\n",
2320 txq->ift_id, TXQ_AVAIL(txq), txq->ift_pidx);
2321 STATE_LOCK(ctx);
2322 if_setdrvflagbits(ctx->ifc_ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2323 ctx->ifc_flags |= (IFC_DO_WATCHDOG|IFC_DO_RESET);
2324 iflib_admin_intr_deferred(ctx);
2325 STATE_UNLOCK(ctx);
2326 }
2327
2328 static void
iflib_calc_rx_mbuf_sz(if_ctx_t ctx)2329 iflib_calc_rx_mbuf_sz(if_ctx_t ctx)
2330 {
2331 if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
2332
2333 /*
2334 * XXX don't set the max_frame_size to larger
2335 * than the hardware can handle
2336 */
2337 if (sctx->isc_max_frame_size <= MCLBYTES)
2338 ctx->ifc_rx_mbuf_sz = MCLBYTES;
2339 else
2340 ctx->ifc_rx_mbuf_sz = MJUMPAGESIZE;
2341 }
2342
2343 uint32_t
iflib_get_rx_mbuf_sz(if_ctx_t ctx)2344 iflib_get_rx_mbuf_sz(if_ctx_t ctx)
2345 {
2346
2347 return (ctx->ifc_rx_mbuf_sz);
2348 }
2349
2350 static void
iflib_init_locked(if_ctx_t ctx)2351 iflib_init_locked(if_ctx_t ctx)
2352 {
2353 if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
2354 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
2355 if_t ifp = ctx->ifc_ifp;
2356 iflib_fl_t fl;
2357 iflib_txq_t txq;
2358 iflib_rxq_t rxq;
2359 int i, j, tx_ip_csum_flags, tx_ip6_csum_flags;
2360
2361 if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2362 IFDI_INTR_DISABLE(ctx);
2363
2364 tx_ip_csum_flags = scctx->isc_tx_csum_flags & (CSUM_IP | CSUM_TCP | CSUM_UDP | CSUM_SCTP);
2365 tx_ip6_csum_flags = scctx->isc_tx_csum_flags & (CSUM_IP6_TCP | CSUM_IP6_UDP | CSUM_IP6_SCTP);
2366 /* Set hardware offload abilities */
2367 if_clearhwassist(ifp);
2368 if (if_getcapenable(ifp) & IFCAP_TXCSUM)
2369 if_sethwassistbits(ifp, tx_ip_csum_flags, 0);
2370 if (if_getcapenable(ifp) & IFCAP_TXCSUM_IPV6)
2371 if_sethwassistbits(ifp, tx_ip6_csum_flags, 0);
2372 if (if_getcapenable(ifp) & IFCAP_TSO4)
2373 if_sethwassistbits(ifp, CSUM_IP_TSO, 0);
2374 if (if_getcapenable(ifp) & IFCAP_TSO6)
2375 if_sethwassistbits(ifp, CSUM_IP6_TSO, 0);
2376
2377 for (i = 0, txq = ctx->ifc_txqs; i < sctx->isc_ntxqsets; i++, txq++) {
2378 CALLOUT_LOCK(txq);
2379 callout_stop(&txq->ift_timer);
2380 CALLOUT_UNLOCK(txq);
2381 iflib_netmap_txq_init(ctx, txq);
2382 }
2383
2384 /*
2385 * Calculate a suitable Rx mbuf size prior to calling IFDI_INIT, so
2386 * that drivers can use the value when setting up the hardware receive
2387 * buffers.
2388 */
2389 iflib_calc_rx_mbuf_sz(ctx);
2390
2391 #ifdef INVARIANTS
2392 i = if_getdrvflags(ifp);
2393 #endif
2394 IFDI_INIT(ctx);
2395 MPASS(if_getdrvflags(ifp) == i);
2396 for (i = 0, rxq = ctx->ifc_rxqs; i < sctx->isc_nrxqsets; i++, rxq++) {
2397 /* XXX this should really be done on a per-queue basis */
2398 if (if_getcapenable(ifp) & IFCAP_NETMAP) {
2399 MPASS(rxq->ifr_id == i);
2400 iflib_netmap_rxq_init(ctx, rxq);
2401 continue;
2402 }
2403 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++) {
2404 if (iflib_fl_setup(fl)) {
2405 device_printf(ctx->ifc_dev,
2406 "setting up free list %d failed - "
2407 "check cluster settings\n", j);
2408 goto done;
2409 }
2410 }
2411 }
2412 done:
2413 if_setdrvflagbits(ctx->ifc_ifp, IFF_DRV_RUNNING, IFF_DRV_OACTIVE);
2414 IFDI_INTR_ENABLE(ctx);
2415 txq = ctx->ifc_txqs;
2416 for (i = 0; i < sctx->isc_ntxqsets; i++, txq++)
2417 callout_reset_on(&txq->ift_timer, hz/2, iflib_timer, txq,
2418 txq->ift_timer.c_cpu);
2419 }
2420
2421 static int
iflib_media_change(if_t ifp)2422 iflib_media_change(if_t ifp)
2423 {
2424 if_ctx_t ctx = if_getsoftc(ifp);
2425 int err;
2426
2427 CTX_LOCK(ctx);
2428 if ((err = IFDI_MEDIA_CHANGE(ctx)) == 0)
2429 iflib_init_locked(ctx);
2430 CTX_UNLOCK(ctx);
2431 return (err);
2432 }
2433
2434 static void
iflib_media_status(if_t ifp,struct ifmediareq * ifmr)2435 iflib_media_status(if_t ifp, struct ifmediareq *ifmr)
2436 {
2437 if_ctx_t ctx = if_getsoftc(ifp);
2438
2439 CTX_LOCK(ctx);
2440 IFDI_UPDATE_ADMIN_STATUS(ctx);
2441 IFDI_MEDIA_STATUS(ctx, ifmr);
2442 CTX_UNLOCK(ctx);
2443 }
2444
2445 void
iflib_stop(if_ctx_t ctx)2446 iflib_stop(if_ctx_t ctx)
2447 {
2448 iflib_txq_t txq = ctx->ifc_txqs;
2449 iflib_rxq_t rxq = ctx->ifc_rxqs;
2450 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
2451 if_shared_ctx_t sctx = ctx->ifc_sctx;
2452 iflib_dma_info_t di;
2453 iflib_fl_t fl;
2454 int i, j;
2455
2456 /* Tell the stack that the interface is no longer active */
2457 if_setdrvflagbits(ctx->ifc_ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2458
2459 IFDI_INTR_DISABLE(ctx);
2460 DELAY(1000);
2461 IFDI_STOP(ctx);
2462 DELAY(1000);
2463
2464 iflib_debug_reset();
2465 /* Wait for current tx queue users to exit to disarm watchdog timer. */
2466 for (i = 0; i < scctx->isc_ntxqsets; i++, txq++) {
2467 /* make sure all transmitters have completed before proceeding XXX */
2468
2469 CALLOUT_LOCK(txq);
2470 callout_stop(&txq->ift_timer);
2471 CALLOUT_UNLOCK(txq);
2472
2473 /* clean any enqueued buffers */
2474 iflib_ifmp_purge(txq);
2475 /* Free any existing tx buffers. */
2476 for (j = 0; j < txq->ift_size; j++) {
2477 iflib_txsd_free(ctx, txq, j);
2478 }
2479 txq->ift_processed = txq->ift_cleaned = txq->ift_cidx_processed = 0;
2480 txq->ift_in_use = txq->ift_gen = txq->ift_cidx = txq->ift_pidx = txq->ift_no_desc_avail = 0;
2481 txq->ift_closed = txq->ift_mbuf_defrag = txq->ift_mbuf_defrag_failed = 0;
2482 txq->ift_no_tx_dma_setup = txq->ift_txd_encap_efbig = txq->ift_map_failed = 0;
2483 txq->ift_pullups = 0;
2484 ifmp_ring_reset_stats(txq->ift_br);
2485 for (j = 0, di = txq->ift_ifdi; j < sctx->isc_ntxqs; j++, di++)
2486 bzero((void *)di->idi_vaddr, di->idi_size);
2487 }
2488 for (i = 0; i < scctx->isc_nrxqsets; i++, rxq++) {
2489 /* make sure all transmitters have completed before proceeding XXX */
2490
2491 rxq->ifr_cq_cidx = 0;
2492 for (j = 0, di = rxq->ifr_ifdi; j < sctx->isc_nrxqs; j++, di++)
2493 bzero((void *)di->idi_vaddr, di->idi_size);
2494 /* also resets the free lists pidx/cidx */
2495 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
2496 iflib_fl_bufs_free(fl);
2497 }
2498 }
2499
2500 static inline caddr_t
calc_next_rxd(iflib_fl_t fl,int cidx)2501 calc_next_rxd(iflib_fl_t fl, int cidx)
2502 {
2503 qidx_t size;
2504 int nrxd;
2505 caddr_t start, end, cur, next;
2506
2507 nrxd = fl->ifl_size;
2508 size = fl->ifl_rxd_size;
2509 start = fl->ifl_ifdi->idi_vaddr;
2510
2511 if (__predict_false(size == 0))
2512 return (start);
2513 cur = start + size*cidx;
2514 end = start + size*nrxd;
2515 next = CACHE_PTR_NEXT(cur);
2516 return (next < end ? next : start);
2517 }
2518
2519 static inline void
prefetch_pkts(iflib_fl_t fl,int cidx)2520 prefetch_pkts(iflib_fl_t fl, int cidx)
2521 {
2522 int nextptr;
2523 int nrxd = fl->ifl_size;
2524 caddr_t next_rxd;
2525
2526
2527 nextptr = (cidx + CACHE_PTR_INCREMENT) & (nrxd-1);
2528 prefetch(&fl->ifl_sds.ifsd_m[nextptr]);
2529 prefetch(&fl->ifl_sds.ifsd_cl[nextptr]);
2530 next_rxd = calc_next_rxd(fl, cidx);
2531 prefetch(next_rxd);
2532 prefetch(fl->ifl_sds.ifsd_m[(cidx + 1) & (nrxd-1)]);
2533 prefetch(fl->ifl_sds.ifsd_m[(cidx + 2) & (nrxd-1)]);
2534 prefetch(fl->ifl_sds.ifsd_m[(cidx + 3) & (nrxd-1)]);
2535 prefetch(fl->ifl_sds.ifsd_m[(cidx + 4) & (nrxd-1)]);
2536 prefetch(fl->ifl_sds.ifsd_cl[(cidx + 1) & (nrxd-1)]);
2537 prefetch(fl->ifl_sds.ifsd_cl[(cidx + 2) & (nrxd-1)]);
2538 prefetch(fl->ifl_sds.ifsd_cl[(cidx + 3) & (nrxd-1)]);
2539 prefetch(fl->ifl_sds.ifsd_cl[(cidx + 4) & (nrxd-1)]);
2540 }
2541
2542 static void
rxd_frag_to_sd(iflib_rxq_t rxq,if_rxd_frag_t irf,int unload,if_rxsd_t sd)2543 rxd_frag_to_sd(iflib_rxq_t rxq, if_rxd_frag_t irf, int unload, if_rxsd_t sd)
2544 {
2545 int flid, cidx;
2546 bus_dmamap_t map;
2547 iflib_fl_t fl;
2548 int next;
2549
2550 map = NULL;
2551 flid = irf->irf_flid;
2552 cidx = irf->irf_idx;
2553 fl = &rxq->ifr_fl[flid];
2554 sd->ifsd_fl = fl;
2555 sd->ifsd_cidx = cidx;
2556 sd->ifsd_m = &fl->ifl_sds.ifsd_m[cidx];
2557 sd->ifsd_cl = &fl->ifl_sds.ifsd_cl[cidx];
2558 fl->ifl_credits--;
2559 #if MEMORY_LOGGING
2560 fl->ifl_m_dequeued++;
2561 #endif
2562 if (rxq->ifr_ctx->ifc_flags & IFC_PREFETCH)
2563 prefetch_pkts(fl, cidx);
2564 next = (cidx + CACHE_PTR_INCREMENT) & (fl->ifl_size-1);
2565 prefetch(&fl->ifl_sds.ifsd_map[next]);
2566 map = fl->ifl_sds.ifsd_map[cidx];
2567 next = (cidx + CACHE_LINE_SIZE) & (fl->ifl_size-1);
2568
2569 /* not valid assert if bxe really does SGE from non-contiguous elements */
2570 MPASS(fl->ifl_cidx == cidx);
2571 bus_dmamap_sync(fl->ifl_buf_tag, map, BUS_DMASYNC_POSTREAD);
2572 if (unload)
2573 bus_dmamap_unload(fl->ifl_buf_tag, map);
2574 fl->ifl_cidx = (fl->ifl_cidx + 1) & (fl->ifl_size-1);
2575 if (__predict_false(fl->ifl_cidx == 0))
2576 fl->ifl_gen = 0;
2577 bit_clear(fl->ifl_rx_bitmap, cidx);
2578 }
2579
2580 static struct mbuf *
assemble_segments(iflib_rxq_t rxq,if_rxd_info_t ri,if_rxsd_t sd)2581 assemble_segments(iflib_rxq_t rxq, if_rxd_info_t ri, if_rxsd_t sd)
2582 {
2583 int i, padlen , flags;
2584 struct mbuf *m, *mh, *mt;
2585 caddr_t cl;
2586
2587 i = 0;
2588 mh = NULL;
2589 do {
2590 rxd_frag_to_sd(rxq, &ri->iri_frags[i], TRUE, sd);
2591
2592 MPASS(*sd->ifsd_cl != NULL);
2593 MPASS(*sd->ifsd_m != NULL);
2594
2595 /* Don't include zero-length frags */
2596 if (ri->iri_frags[i].irf_len == 0) {
2597 /* XXX we can save the cluster here, but not the mbuf */
2598 m_init(*sd->ifsd_m, M_NOWAIT, MT_DATA, 0);
2599 m_free(*sd->ifsd_m);
2600 *sd->ifsd_m = NULL;
2601 continue;
2602 }
2603 m = *sd->ifsd_m;
2604 *sd->ifsd_m = NULL;
2605 if (mh == NULL) {
2606 flags = M_PKTHDR|M_EXT;
2607 mh = mt = m;
2608 padlen = ri->iri_pad;
2609 } else {
2610 flags = M_EXT;
2611 mt->m_next = m;
2612 mt = m;
2613 /* assuming padding is only on the first fragment */
2614 padlen = 0;
2615 }
2616 cl = *sd->ifsd_cl;
2617 *sd->ifsd_cl = NULL;
2618
2619 /* Can these two be made one ? */
2620 m_init(m, M_NOWAIT, MT_DATA, flags);
2621 m_cljset(m, cl, sd->ifsd_fl->ifl_cltype);
2622 /*
2623 * These must follow m_init and m_cljset
2624 */
2625 m->m_data += padlen;
2626 ri->iri_len -= padlen;
2627 m->m_len = ri->iri_frags[i].irf_len;
2628 } while (++i < ri->iri_nfrags);
2629
2630 return (mh);
2631 }
2632
2633 /*
2634 * Process one software descriptor
2635 */
2636 static struct mbuf *
iflib_rxd_pkt_get(iflib_rxq_t rxq,if_rxd_info_t ri)2637 iflib_rxd_pkt_get(iflib_rxq_t rxq, if_rxd_info_t ri)
2638 {
2639 struct if_rxsd sd;
2640 struct mbuf *m;
2641
2642 /* should I merge this back in now that the two paths are basically duplicated? */
2643 if (ri->iri_nfrags == 1 &&
2644 ri->iri_frags[0].irf_len <= MIN(IFLIB_RX_COPY_THRESH, MHLEN)) {
2645 rxd_frag_to_sd(rxq, &ri->iri_frags[0], FALSE, &sd);
2646 m = *sd.ifsd_m;
2647 *sd.ifsd_m = NULL;
2648 m_init(m, M_NOWAIT, MT_DATA, M_PKTHDR);
2649 #ifndef __NO_STRICT_ALIGNMENT
2650 if (!IP_ALIGNED(m))
2651 m->m_data += 2;
2652 #endif
2653 memcpy(m->m_data, *sd.ifsd_cl, ri->iri_len);
2654 m->m_len = ri->iri_frags[0].irf_len;
2655 } else {
2656 m = assemble_segments(rxq, ri, &sd);
2657 }
2658 m->m_pkthdr.len = ri->iri_len;
2659 m->m_pkthdr.rcvif = ri->iri_ifp;
2660 m->m_flags |= ri->iri_flags;
2661 m->m_pkthdr.ether_vtag = ri->iri_vtag;
2662 m->m_pkthdr.flowid = ri->iri_flowid;
2663 M_HASHTYPE_SET(m, ri->iri_rsstype);
2664 m->m_pkthdr.csum_flags = ri->iri_csum_flags;
2665 m->m_pkthdr.csum_data = ri->iri_csum_data;
2666 return (m);
2667 }
2668
2669 #if defined(INET6) || defined(INET)
2670 static void
iflib_get_ip_forwarding(struct lro_ctrl * lc,bool * v4,bool * v6)2671 iflib_get_ip_forwarding(struct lro_ctrl *lc, bool *v4, bool *v6)
2672 {
2673 CURVNET_SET(lc->ifp->if_vnet);
2674 #if defined(INET6)
2675 *v6 = VNET(ip6_forwarding);
2676 #endif
2677 #if defined(INET)
2678 *v4 = VNET(ipforwarding);
2679 #endif
2680 CURVNET_RESTORE();
2681 }
2682
2683 /*
2684 * Returns true if it's possible this packet could be LROed.
2685 * if it returns false, it is guaranteed that tcp_lro_rx()
2686 * would not return zero.
2687 */
2688 static bool
iflib_check_lro_possible(struct mbuf * m,bool v4_forwarding,bool v6_forwarding)2689 iflib_check_lro_possible(struct mbuf *m, bool v4_forwarding, bool v6_forwarding)
2690 {
2691 struct ether_header *eh;
2692 uint16_t eh_type;
2693
2694 eh = mtod(m, struct ether_header *);
2695 eh_type = ntohs(eh->ether_type);
2696 switch (eh_type) {
2697 #if defined(INET6)
2698 case ETHERTYPE_IPV6:
2699 return !v6_forwarding;
2700 #endif
2701 #if defined (INET)
2702 case ETHERTYPE_IP:
2703 return !v4_forwarding;
2704 #endif
2705 }
2706
2707 return false;
2708 }
2709 #else
2710 static void
iflib_get_ip_forwarding(struct lro_ctrl * lc __unused,bool * v4 __unused,bool * v6 __unused)2711 iflib_get_ip_forwarding(struct lro_ctrl *lc __unused, bool *v4 __unused, bool *v6 __unused)
2712 {
2713 }
2714 #endif
2715
2716 static bool
iflib_rxeof(iflib_rxq_t rxq,qidx_t budget)2717 iflib_rxeof(iflib_rxq_t rxq, qidx_t budget)
2718 {
2719 if_t ifp;
2720 if_ctx_t ctx = rxq->ifr_ctx;
2721 if_shared_ctx_t sctx = ctx->ifc_sctx;
2722 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
2723 int avail, i;
2724 qidx_t *cidxp;
2725 struct if_rxd_info ri;
2726 int err, budget_left, rx_bytes, rx_pkts;
2727 iflib_fl_t fl;
2728 int lro_enabled;
2729 bool v4_forwarding, v6_forwarding, lro_possible;
2730
2731 /*
2732 * XXX early demux data packets so that if_input processing only handles
2733 * acks in interrupt context
2734 */
2735 struct mbuf *m, *mh, *mt, *mf;
2736
2737 lro_possible = v4_forwarding = v6_forwarding = false;
2738 ifp = ctx->ifc_ifp;
2739 mh = mt = NULL;
2740 MPASS(budget > 0);
2741 rx_pkts = rx_bytes = 0;
2742 if (sctx->isc_flags & IFLIB_HAS_RXCQ)
2743 cidxp = &rxq->ifr_cq_cidx;
2744 else
2745 cidxp = &rxq->ifr_fl[0].ifl_cidx;
2746 if ((avail = iflib_rxd_avail(ctx, rxq, *cidxp, budget)) == 0) {
2747 for (i = 0, fl = &rxq->ifr_fl[0]; i < sctx->isc_nfl; i++, fl++)
2748 __iflib_fl_refill_lt(ctx, fl, budget + 8);
2749 DBG_COUNTER_INC(rx_unavail);
2750 return (false);
2751 }
2752
2753 for (budget_left = budget; budget_left > 0 && avail > 0;) {
2754 if (__predict_false(!CTX_ACTIVE(ctx))) {
2755 DBG_COUNTER_INC(rx_ctx_inactive);
2756 break;
2757 }
2758 /*
2759 * Reset client set fields to their default values
2760 */
2761 rxd_info_zero(&ri);
2762 ri.iri_qsidx = rxq->ifr_id;
2763 ri.iri_cidx = *cidxp;
2764 ri.iri_ifp = ifp;
2765 ri.iri_frags = rxq->ifr_frags;
2766 err = ctx->isc_rxd_pkt_get(ctx->ifc_softc, &ri);
2767
2768 if (err)
2769 goto err;
2770 if (sctx->isc_flags & IFLIB_HAS_RXCQ) {
2771 *cidxp = ri.iri_cidx;
2772 /* Update our consumer index */
2773 /* XXX NB: shurd - check if this is still safe */
2774 while (rxq->ifr_cq_cidx >= scctx->isc_nrxd[0])
2775 rxq->ifr_cq_cidx -= scctx->isc_nrxd[0];
2776 /* was this only a completion queue message? */
2777 if (__predict_false(ri.iri_nfrags == 0))
2778 continue;
2779 }
2780 MPASS(ri.iri_nfrags != 0);
2781 MPASS(ri.iri_len != 0);
2782
2783 /* will advance the cidx on the corresponding free lists */
2784 m = iflib_rxd_pkt_get(rxq, &ri);
2785 avail--;
2786 budget_left--;
2787 if (avail == 0 && budget_left)
2788 avail = iflib_rxd_avail(ctx, rxq, *cidxp, budget_left);
2789
2790 if (__predict_false(m == NULL)) {
2791 DBG_COUNTER_INC(rx_mbuf_null);
2792 continue;
2793 }
2794 /* imm_pkt: -- cxgb */
2795 if (mh == NULL)
2796 mh = mt = m;
2797 else {
2798 mt->m_nextpkt = m;
2799 mt = m;
2800 }
2801 }
2802 /* make sure that we can refill faster than drain */
2803 for (i = 0, fl = &rxq->ifr_fl[0]; i < sctx->isc_nfl; i++, fl++)
2804 __iflib_fl_refill_lt(ctx, fl, budget + 8);
2805
2806 lro_enabled = (if_getcapenable(ifp) & IFCAP_LRO);
2807 if (lro_enabled)
2808 iflib_get_ip_forwarding(&rxq->ifr_lc, &v4_forwarding, &v6_forwarding);
2809 mt = mf = NULL;
2810 while (mh != NULL) {
2811 m = mh;
2812 mh = mh->m_nextpkt;
2813 m->m_nextpkt = NULL;
2814 #ifndef __NO_STRICT_ALIGNMENT
2815 if (!IP_ALIGNED(m) && (m = iflib_fixup_rx(m)) == NULL)
2816 continue;
2817 #endif
2818 rx_bytes += m->m_pkthdr.len;
2819 rx_pkts++;
2820 #if defined(INET6) || defined(INET)
2821 if (lro_enabled) {
2822 if (!lro_possible) {
2823 lro_possible = iflib_check_lro_possible(m, v4_forwarding, v6_forwarding);
2824 if (lro_possible && mf != NULL) {
2825 ifp->if_input(ifp, mf);
2826 DBG_COUNTER_INC(rx_if_input);
2827 mt = mf = NULL;
2828 }
2829 }
2830 if ((m->m_pkthdr.csum_flags & (CSUM_L4_CALC|CSUM_L4_VALID)) ==
2831 (CSUM_L4_CALC|CSUM_L4_VALID)) {
2832 if (lro_possible && tcp_lro_rx(&rxq->ifr_lc, m, 0) == 0)
2833 continue;
2834 }
2835 }
2836 #endif
2837 if (lro_possible) {
2838 ifp->if_input(ifp, m);
2839 DBG_COUNTER_INC(rx_if_input);
2840 continue;
2841 }
2842
2843 if (mf == NULL)
2844 mf = m;
2845 if (mt != NULL)
2846 mt->m_nextpkt = m;
2847 mt = m;
2848 }
2849 if (mf != NULL) {
2850 ifp->if_input(ifp, mf);
2851 DBG_COUNTER_INC(rx_if_input);
2852 }
2853
2854 if_inc_counter(ifp, IFCOUNTER_IBYTES, rx_bytes);
2855 if_inc_counter(ifp, IFCOUNTER_IPACKETS, rx_pkts);
2856
2857 /*
2858 * Flush any outstanding LRO work
2859 */
2860 #if defined(INET6) || defined(INET)
2861 tcp_lro_flush_all(&rxq->ifr_lc);
2862 #endif
2863 if (avail)
2864 return true;
2865 return (iflib_rxd_avail(ctx, rxq, *cidxp, 1));
2866 err:
2867 STATE_LOCK(ctx);
2868 ctx->ifc_flags |= IFC_DO_RESET;
2869 iflib_admin_intr_deferred(ctx);
2870 STATE_UNLOCK(ctx);
2871 return (false);
2872 }
2873
2874 #define TXD_NOTIFY_COUNT(txq) (((txq)->ift_size / (txq)->ift_update_freq)-1)
2875 static inline qidx_t
txq_max_db_deferred(iflib_txq_t txq,qidx_t in_use)2876 txq_max_db_deferred(iflib_txq_t txq, qidx_t in_use)
2877 {
2878 qidx_t notify_count = TXD_NOTIFY_COUNT(txq);
2879 qidx_t minthresh = txq->ift_size / 8;
2880 if (in_use > 4*minthresh)
2881 return (notify_count);
2882 if (in_use > 2*minthresh)
2883 return (notify_count >> 1);
2884 if (in_use > minthresh)
2885 return (notify_count >> 3);
2886 return (0);
2887 }
2888
2889 static inline qidx_t
txq_max_rs_deferred(iflib_txq_t txq)2890 txq_max_rs_deferred(iflib_txq_t txq)
2891 {
2892 qidx_t notify_count = TXD_NOTIFY_COUNT(txq);
2893 qidx_t minthresh = txq->ift_size / 8;
2894 if (txq->ift_in_use > 4*minthresh)
2895 return (notify_count);
2896 if (txq->ift_in_use > 2*minthresh)
2897 return (notify_count >> 1);
2898 if (txq->ift_in_use > minthresh)
2899 return (notify_count >> 2);
2900 return (2);
2901 }
2902
2903 #define M_CSUM_FLAGS(m) ((m)->m_pkthdr.csum_flags)
2904 #define M_HAS_VLANTAG(m) (m->m_flags & M_VLANTAG)
2905
2906 #define TXQ_MAX_DB_DEFERRED(txq, in_use) txq_max_db_deferred((txq), (in_use))
2907 #define TXQ_MAX_RS_DEFERRED(txq) txq_max_rs_deferred(txq)
2908 #define TXQ_MAX_DB_CONSUMED(size) (size >> 4)
2909
2910 /* forward compatibility for cxgb */
2911 #define FIRST_QSET(ctx) 0
2912 #define NTXQSETS(ctx) ((ctx)->ifc_softc_ctx.isc_ntxqsets)
2913 #define NRXQSETS(ctx) ((ctx)->ifc_softc_ctx.isc_nrxqsets)
2914 #define QIDX(ctx, m) ((((m)->m_pkthdr.flowid & ctx->ifc_softc_ctx.isc_rss_table_mask) % NTXQSETS(ctx)) + FIRST_QSET(ctx))
2915 #define DESC_RECLAIMABLE(q) ((int)((q)->ift_processed - (q)->ift_cleaned - (q)->ift_ctx->ifc_softc_ctx.isc_tx_nsegments))
2916
2917 /* XXX we should be setting this to something other than zero */
2918 #define RECLAIM_THRESH(ctx) ((ctx)->ifc_sctx->isc_tx_reclaim_thresh)
2919 #define MAX_TX_DESC(ctx) max((ctx)->ifc_softc_ctx.isc_tx_tso_segments_max, \
2920 (ctx)->ifc_softc_ctx.isc_tx_nsegments)
2921
2922 static inline bool
iflib_txd_db_check(if_ctx_t ctx,iflib_txq_t txq,int ring,qidx_t in_use)2923 iflib_txd_db_check(if_ctx_t ctx, iflib_txq_t txq, int ring, qidx_t in_use)
2924 {
2925 qidx_t dbval, max;
2926 bool rang;
2927
2928 rang = false;
2929 max = TXQ_MAX_DB_DEFERRED(txq, in_use);
2930 if (ring || txq->ift_db_pending >= max) {
2931 dbval = txq->ift_npending ? txq->ift_npending : txq->ift_pidx;
2932 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
2933 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2934 ctx->isc_txd_flush(ctx->ifc_softc, txq->ift_id, dbval);
2935 txq->ift_db_pending = txq->ift_npending = 0;
2936 rang = true;
2937 }
2938 return (rang);
2939 }
2940
2941 #ifdef PKT_DEBUG
2942 static void
print_pkt(if_pkt_info_t pi)2943 print_pkt(if_pkt_info_t pi)
2944 {
2945 printf("pi len: %d qsidx: %d nsegs: %d ndescs: %d flags: %x pidx: %d\n",
2946 pi->ipi_len, pi->ipi_qsidx, pi->ipi_nsegs, pi->ipi_ndescs, pi->ipi_flags, pi->ipi_pidx);
2947 printf("pi new_pidx: %d csum_flags: %lx tso_segsz: %d mflags: %x vtag: %d\n",
2948 pi->ipi_new_pidx, pi->ipi_csum_flags, pi->ipi_tso_segsz, pi->ipi_mflags, pi->ipi_vtag);
2949 printf("pi etype: %d ehdrlen: %d ip_hlen: %d ipproto: %d\n",
2950 pi->ipi_etype, pi->ipi_ehdrlen, pi->ipi_ip_hlen, pi->ipi_ipproto);
2951 }
2952 #endif
2953
2954 #define IS_TSO4(pi) ((pi)->ipi_csum_flags & CSUM_IP_TSO)
2955 #define IS_TX_OFFLOAD4(pi) ((pi)->ipi_csum_flags & (CSUM_IP_TCP | CSUM_IP_TSO))
2956 #define IS_TSO6(pi) ((pi)->ipi_csum_flags & CSUM_IP6_TSO)
2957 #define IS_TX_OFFLOAD6(pi) ((pi)->ipi_csum_flags & (CSUM_IP6_TCP | CSUM_IP6_TSO))
2958
2959 static int
iflib_parse_header(iflib_txq_t txq,if_pkt_info_t pi,struct mbuf ** mp)2960 iflib_parse_header(iflib_txq_t txq, if_pkt_info_t pi, struct mbuf **mp)
2961 {
2962 if_shared_ctx_t sctx = txq->ift_ctx->ifc_sctx;
2963 struct ether_vlan_header *eh;
2964 struct mbuf *m;
2965
2966 m = *mp;
2967 if ((sctx->isc_flags & IFLIB_NEED_SCRATCH) &&
2968 M_WRITABLE(m) == 0) {
2969 if ((m = m_dup(m, M_NOWAIT)) == NULL) {
2970 return (ENOMEM);
2971 } else {
2972 m_freem(*mp);
2973 DBG_COUNTER_INC(tx_frees);
2974 *mp = m;
2975 }
2976 }
2977
2978 /*
2979 * Determine where frame payload starts.
2980 * Jump over vlan headers if already present,
2981 * helpful for QinQ too.
2982 */
2983 if (__predict_false(m->m_len < sizeof(*eh))) {
2984 txq->ift_pullups++;
2985 if (__predict_false((m = m_pullup(m, sizeof(*eh))) == NULL))
2986 return (ENOMEM);
2987 }
2988 eh = mtod(m, struct ether_vlan_header *);
2989 if (eh->evl_encap_proto == htons(ETHERTYPE_VLAN)) {
2990 pi->ipi_etype = ntohs(eh->evl_proto);
2991 pi->ipi_ehdrlen = ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN;
2992 } else {
2993 pi->ipi_etype = ntohs(eh->evl_encap_proto);
2994 pi->ipi_ehdrlen = ETHER_HDR_LEN;
2995 }
2996
2997 switch (pi->ipi_etype) {
2998 #ifdef INET
2999 case ETHERTYPE_IP:
3000 {
3001 struct mbuf *n;
3002 struct ip *ip = NULL;
3003 struct tcphdr *th = NULL;
3004 int minthlen;
3005
3006 minthlen = min(m->m_pkthdr.len, pi->ipi_ehdrlen + sizeof(*ip) + sizeof(*th));
3007 if (__predict_false(m->m_len < minthlen)) {
3008 /*
3009 * if this code bloat is causing too much of a hit
3010 * move it to a separate function and mark it noinline
3011 */
3012 if (m->m_len == pi->ipi_ehdrlen) {
3013 n = m->m_next;
3014 MPASS(n);
3015 if (n->m_len >= sizeof(*ip)) {
3016 ip = (struct ip *)n->m_data;
3017 if (n->m_len >= (ip->ip_hl << 2) + sizeof(*th))
3018 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
3019 } else {
3020 txq->ift_pullups++;
3021 if (__predict_false((m = m_pullup(m, minthlen)) == NULL))
3022 return (ENOMEM);
3023 ip = (struct ip *)(m->m_data + pi->ipi_ehdrlen);
3024 }
3025 } else {
3026 txq->ift_pullups++;
3027 if (__predict_false((m = m_pullup(m, minthlen)) == NULL))
3028 return (ENOMEM);
3029 ip = (struct ip *)(m->m_data + pi->ipi_ehdrlen);
3030 if (m->m_len >= (ip->ip_hl << 2) + sizeof(*th))
3031 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
3032 }
3033 } else {
3034 ip = (struct ip *)(m->m_data + pi->ipi_ehdrlen);
3035 if (m->m_len >= (ip->ip_hl << 2) + sizeof(*th))
3036 th = (struct tcphdr *)((caddr_t)ip + (ip->ip_hl << 2));
3037 }
3038 pi->ipi_ip_hlen = ip->ip_hl << 2;
3039 pi->ipi_ipproto = ip->ip_p;
3040 pi->ipi_flags |= IPI_TX_IPV4;
3041
3042 /* TCP checksum offload may require TCP header length */
3043 if (IS_TX_OFFLOAD4(pi)) {
3044 if (__predict_true(pi->ipi_ipproto == IPPROTO_TCP)) {
3045 if (__predict_false(th == NULL)) {
3046 txq->ift_pullups++;
3047 if (__predict_false((m = m_pullup(m, (ip->ip_hl << 2) + sizeof(*th))) == NULL))
3048 return (ENOMEM);
3049 th = (struct tcphdr *)((caddr_t)ip + pi->ipi_ip_hlen);
3050 }
3051 pi->ipi_tcp_hflags = th->th_flags;
3052 pi->ipi_tcp_hlen = th->th_off << 2;
3053 pi->ipi_tcp_seq = th->th_seq;
3054 }
3055 if (IS_TSO4(pi)) {
3056 if (__predict_false(ip->ip_p != IPPROTO_TCP))
3057 return (ENXIO);
3058 /*
3059 * TSO always requires hardware checksum offload.
3060 */
3061 pi->ipi_csum_flags |= (CSUM_IP_TCP | CSUM_IP);
3062 th->th_sum = in_pseudo(ip->ip_src.s_addr,
3063 ip->ip_dst.s_addr, htons(IPPROTO_TCP));
3064 pi->ipi_tso_segsz = m->m_pkthdr.tso_segsz;
3065 if (sctx->isc_flags & IFLIB_TSO_INIT_IP) {
3066 ip->ip_sum = 0;
3067 ip->ip_len = htons(pi->ipi_ip_hlen + pi->ipi_tcp_hlen + pi->ipi_tso_segsz);
3068 }
3069 }
3070 }
3071 if ((sctx->isc_flags & IFLIB_NEED_ZERO_CSUM) && (pi->ipi_csum_flags & CSUM_IP))
3072 ip->ip_sum = 0;
3073
3074 break;
3075 }
3076 #endif
3077 #ifdef INET6
3078 case ETHERTYPE_IPV6:
3079 {
3080 struct ip6_hdr *ip6 = (struct ip6_hdr *)(m->m_data + pi->ipi_ehdrlen);
3081 struct tcphdr *th;
3082 pi->ipi_ip_hlen = sizeof(struct ip6_hdr);
3083
3084 if (__predict_false(m->m_len < pi->ipi_ehdrlen + sizeof(struct ip6_hdr))) {
3085 txq->ift_pullups++;
3086 if (__predict_false((m = m_pullup(m, pi->ipi_ehdrlen + sizeof(struct ip6_hdr))) == NULL))
3087 return (ENOMEM);
3088 }
3089 th = (struct tcphdr *)((caddr_t)ip6 + pi->ipi_ip_hlen);
3090
3091 /* XXX-BZ this will go badly in case of ext hdrs. */
3092 pi->ipi_ipproto = ip6->ip6_nxt;
3093 pi->ipi_flags |= IPI_TX_IPV6;
3094
3095 /* TCP checksum offload may require TCP header length */
3096 if (IS_TX_OFFLOAD6(pi)) {
3097 if (pi->ipi_ipproto == IPPROTO_TCP) {
3098 if (__predict_false(m->m_len < pi->ipi_ehdrlen + sizeof(struct ip6_hdr) + sizeof(struct tcphdr))) {
3099 txq->ift_pullups++;
3100 if (__predict_false((m = m_pullup(m, pi->ipi_ehdrlen + sizeof(struct ip6_hdr) + sizeof(struct tcphdr))) == NULL))
3101 return (ENOMEM);
3102 }
3103 pi->ipi_tcp_hflags = th->th_flags;
3104 pi->ipi_tcp_hlen = th->th_off << 2;
3105 pi->ipi_tcp_seq = th->th_seq;
3106 }
3107 if (IS_TSO6(pi)) {
3108 if (__predict_false(ip6->ip6_nxt != IPPROTO_TCP))
3109 return (ENXIO);
3110 /*
3111 * TSO always requires hardware checksum offload.
3112 */
3113 pi->ipi_csum_flags |= CSUM_IP6_TCP;
3114 th->th_sum = in6_cksum_pseudo(ip6, 0, IPPROTO_TCP, 0);
3115 pi->ipi_tso_segsz = m->m_pkthdr.tso_segsz;
3116 }
3117 }
3118 break;
3119 }
3120 #endif
3121 default:
3122 pi->ipi_csum_flags &= ~CSUM_OFFLOAD;
3123 pi->ipi_ip_hlen = 0;
3124 break;
3125 }
3126 *mp = m;
3127
3128 return (0);
3129 }
3130
3131 /*
3132 * If dodgy hardware rejects the scatter gather chain we've handed it
3133 * we'll need to remove the mbuf chain from ifsg_m[] before we can add the
3134 * m_defrag'd mbufs
3135 */
3136 static __noinline struct mbuf *
iflib_remove_mbuf(iflib_txq_t txq)3137 iflib_remove_mbuf(iflib_txq_t txq)
3138 {
3139 int ntxd, pidx;
3140 struct mbuf *m, **ifsd_m;
3141
3142 ifsd_m = txq->ift_sds.ifsd_m;
3143 ntxd = txq->ift_size;
3144 pidx = txq->ift_pidx & (ntxd - 1);
3145 ifsd_m = txq->ift_sds.ifsd_m;
3146 m = ifsd_m[pidx];
3147 ifsd_m[pidx] = NULL;
3148 bus_dmamap_unload(txq->ift_buf_tag, txq->ift_sds.ifsd_map[pidx]);
3149 if (txq->ift_sds.ifsd_tso_map != NULL)
3150 bus_dmamap_unload(txq->ift_tso_buf_tag,
3151 txq->ift_sds.ifsd_tso_map[pidx]);
3152 #if MEMORY_LOGGING
3153 txq->ift_dequeued++;
3154 #endif
3155 return (m);
3156 }
3157
3158 static inline caddr_t
calc_next_txd(iflib_txq_t txq,int cidx,uint8_t qid)3159 calc_next_txd(iflib_txq_t txq, int cidx, uint8_t qid)
3160 {
3161 qidx_t size;
3162 int ntxd;
3163 caddr_t start, end, cur, next;
3164
3165 ntxd = txq->ift_size;
3166 size = txq->ift_txd_size[qid];
3167 start = txq->ift_ifdi[qid].idi_vaddr;
3168
3169 if (__predict_false(size == 0))
3170 return (start);
3171 cur = start + size*cidx;
3172 end = start + size*ntxd;
3173 next = CACHE_PTR_NEXT(cur);
3174 return (next < end ? next : start);
3175 }
3176
3177 /*
3178 * Pad an mbuf to ensure a minimum ethernet frame size.
3179 * min_frame_size is the frame size (less CRC) to pad the mbuf to
3180 */
3181 static __noinline int
iflib_ether_pad(device_t dev,struct mbuf ** m_head,uint16_t min_frame_size)3182 iflib_ether_pad(device_t dev, struct mbuf **m_head, uint16_t min_frame_size)
3183 {
3184 /*
3185 * 18 is enough bytes to pad an ARP packet to 46 bytes, and
3186 * and ARP message is the smallest common payload I can think of
3187 */
3188 static char pad[18]; /* just zeros */
3189 int n;
3190 struct mbuf *new_head;
3191
3192 if (!M_WRITABLE(*m_head)) {
3193 new_head = m_dup(*m_head, M_NOWAIT);
3194 if (new_head == NULL) {
3195 m_freem(*m_head);
3196 device_printf(dev, "cannot pad short frame, m_dup() failed");
3197 DBG_COUNTER_INC(encap_pad_mbuf_fail);
3198 DBG_COUNTER_INC(tx_frees);
3199 return ENOMEM;
3200 }
3201 m_freem(*m_head);
3202 *m_head = new_head;
3203 }
3204
3205 for (n = min_frame_size - (*m_head)->m_pkthdr.len;
3206 n > 0; n -= sizeof(pad))
3207 if (!m_append(*m_head, min(n, sizeof(pad)), pad))
3208 break;
3209
3210 if (n > 0) {
3211 m_freem(*m_head);
3212 device_printf(dev, "cannot pad short frame\n");
3213 DBG_COUNTER_INC(encap_pad_mbuf_fail);
3214 DBG_COUNTER_INC(tx_frees);
3215 return (ENOBUFS);
3216 }
3217
3218 return 0;
3219 }
3220
3221 static int
iflib_encap(iflib_txq_t txq,struct mbuf ** m_headp)3222 iflib_encap(iflib_txq_t txq, struct mbuf **m_headp)
3223 {
3224 if_ctx_t ctx;
3225 if_shared_ctx_t sctx;
3226 if_softc_ctx_t scctx;
3227 bus_dma_tag_t buf_tag;
3228 bus_dma_segment_t *segs;
3229 struct mbuf *m_head, **ifsd_m;
3230 void *next_txd;
3231 bus_dmamap_t map;
3232 struct if_pkt_info pi;
3233 int remap = 0;
3234 int err, nsegs, ndesc, max_segs, pidx, cidx, next, ntxd;
3235
3236 ctx = txq->ift_ctx;
3237 sctx = ctx->ifc_sctx;
3238 scctx = &ctx->ifc_softc_ctx;
3239 segs = txq->ift_segs;
3240 ntxd = txq->ift_size;
3241 m_head = *m_headp;
3242 map = NULL;
3243
3244 /*
3245 * If we're doing TSO the next descriptor to clean may be quite far ahead
3246 */
3247 cidx = txq->ift_cidx;
3248 pidx = txq->ift_pidx;
3249 if (ctx->ifc_flags & IFC_PREFETCH) {
3250 next = (cidx + CACHE_PTR_INCREMENT) & (ntxd-1);
3251 if (!(ctx->ifc_flags & IFLIB_HAS_TXCQ)) {
3252 next_txd = calc_next_txd(txq, cidx, 0);
3253 prefetch(next_txd);
3254 }
3255
3256 /* prefetch the next cache line of mbuf pointers and flags */
3257 prefetch(&txq->ift_sds.ifsd_m[next]);
3258 prefetch(&txq->ift_sds.ifsd_map[next]);
3259 next = (cidx + CACHE_LINE_SIZE) & (ntxd-1);
3260 }
3261 map = txq->ift_sds.ifsd_map[pidx];
3262 ifsd_m = txq->ift_sds.ifsd_m;
3263
3264 if (m_head->m_pkthdr.csum_flags & CSUM_TSO) {
3265 buf_tag = txq->ift_tso_buf_tag;
3266 max_segs = scctx->isc_tx_tso_segments_max;
3267 map = txq->ift_sds.ifsd_tso_map[pidx];
3268 MPASS(buf_tag != NULL);
3269 MPASS(max_segs > 0);
3270 } else {
3271 buf_tag = txq->ift_buf_tag;
3272 max_segs = scctx->isc_tx_nsegments;
3273 map = txq->ift_sds.ifsd_map[pidx];
3274 }
3275 if ((sctx->isc_flags & IFLIB_NEED_ETHER_PAD) &&
3276 __predict_false(m_head->m_pkthdr.len < scctx->isc_min_frame_size)) {
3277 err = iflib_ether_pad(ctx->ifc_dev, m_headp, scctx->isc_min_frame_size);
3278 if (err) {
3279 DBG_COUNTER_INC(encap_txd_encap_fail);
3280 return err;
3281 }
3282 }
3283 m_head = *m_headp;
3284
3285 pkt_info_zero(&pi);
3286 pi.ipi_mflags = (m_head->m_flags & (M_VLANTAG|M_BCAST|M_MCAST));
3287 pi.ipi_pidx = pidx;
3288 pi.ipi_qsidx = txq->ift_id;
3289 pi.ipi_len = m_head->m_pkthdr.len;
3290 pi.ipi_csum_flags = m_head->m_pkthdr.csum_flags;
3291 pi.ipi_vtag = M_HAS_VLANTAG(m_head) ? m_head->m_pkthdr.ether_vtag : 0;
3292
3293 /* deliberate bitwise OR to make one condition */
3294 if (__predict_true((pi.ipi_csum_flags | pi.ipi_vtag))) {
3295 if (__predict_false((err = iflib_parse_header(txq, &pi, m_headp)) != 0)) {
3296 DBG_COUNTER_INC(encap_txd_encap_fail);
3297 return (err);
3298 }
3299 m_head = *m_headp;
3300 }
3301
3302 retry:
3303 err = bus_dmamap_load_mbuf_sg(buf_tag, map, m_head, segs, &nsegs,
3304 BUS_DMA_NOWAIT);
3305 defrag:
3306 if (__predict_false(err)) {
3307 switch (err) {
3308 case EFBIG:
3309 /* try collapse once and defrag once */
3310 if (remap == 0) {
3311 m_head = m_collapse(*m_headp, M_NOWAIT, max_segs);
3312 /* try defrag if collapsing fails */
3313 if (m_head == NULL)
3314 remap++;
3315 }
3316 if (remap == 1) {
3317 txq->ift_mbuf_defrag++;
3318 m_head = m_defrag(*m_headp, M_NOWAIT);
3319 }
3320 /*
3321 * remap should never be >1 unless bus_dmamap_load_mbuf_sg
3322 * failed to map an mbuf that was run through m_defrag
3323 */
3324 MPASS(remap <= 1);
3325 if (__predict_false(m_head == NULL || remap > 1))
3326 goto defrag_failed;
3327 remap++;
3328 *m_headp = m_head;
3329 goto retry;
3330 break;
3331 case ENOMEM:
3332 txq->ift_no_tx_dma_setup++;
3333 break;
3334 default:
3335 txq->ift_no_tx_dma_setup++;
3336 m_freem(*m_headp);
3337 DBG_COUNTER_INC(tx_frees);
3338 *m_headp = NULL;
3339 break;
3340 }
3341 txq->ift_map_failed++;
3342 DBG_COUNTER_INC(encap_load_mbuf_fail);
3343 DBG_COUNTER_INC(encap_txd_encap_fail);
3344 return (err);
3345 }
3346 ifsd_m[pidx] = m_head;
3347 /*
3348 * XXX assumes a 1 to 1 relationship between segments and
3349 * descriptors - this does not hold true on all drivers, e.g.
3350 * cxgb
3351 */
3352 if (__predict_false(nsegs + 2 > TXQ_AVAIL(txq))) {
3353 txq->ift_no_desc_avail++;
3354 bus_dmamap_unload(buf_tag, map);
3355 DBG_COUNTER_INC(encap_txq_avail_fail);
3356 DBG_COUNTER_INC(encap_txd_encap_fail);
3357 if ((txq->ift_task.gt_task.ta_flags & TASK_ENQUEUED) == 0)
3358 GROUPTASK_ENQUEUE(&txq->ift_task);
3359 return (ENOBUFS);
3360 }
3361 /*
3362 * On Intel cards we can greatly reduce the number of TX interrupts
3363 * we see by only setting report status on every Nth descriptor.
3364 * However, this also means that the driver will need to keep track
3365 * of the descriptors that RS was set on to check them for the DD bit.
3366 */
3367 txq->ift_rs_pending += nsegs + 1;
3368 if (txq->ift_rs_pending > TXQ_MAX_RS_DEFERRED(txq) ||
3369 iflib_no_tx_batch || (TXQ_AVAIL(txq) - nsegs) <= MAX_TX_DESC(ctx) + 2) {
3370 pi.ipi_flags |= IPI_TX_INTR;
3371 txq->ift_rs_pending = 0;
3372 }
3373
3374 pi.ipi_segs = segs;
3375 pi.ipi_nsegs = nsegs;
3376
3377 MPASS(pidx >= 0 && pidx < txq->ift_size);
3378 #ifdef PKT_DEBUG
3379 print_pkt(&pi);
3380 #endif
3381 if ((err = ctx->isc_txd_encap(ctx->ifc_softc, &pi)) == 0) {
3382 bus_dmamap_sync(buf_tag, map, BUS_DMASYNC_PREWRITE);
3383 DBG_COUNTER_INC(tx_encap);
3384 MPASS(pi.ipi_new_pidx < txq->ift_size);
3385
3386 ndesc = pi.ipi_new_pidx - pi.ipi_pidx;
3387 if (pi.ipi_new_pidx < pi.ipi_pidx) {
3388 ndesc += txq->ift_size;
3389 txq->ift_gen = 1;
3390 }
3391 /*
3392 * drivers can need as many as
3393 * two sentinels
3394 */
3395 MPASS(ndesc <= pi.ipi_nsegs + 2);
3396 MPASS(pi.ipi_new_pidx != pidx);
3397 MPASS(ndesc > 0);
3398 txq->ift_in_use += ndesc;
3399
3400 /*
3401 * We update the last software descriptor again here because there may
3402 * be a sentinel and/or there may be more mbufs than segments
3403 */
3404 txq->ift_pidx = pi.ipi_new_pidx;
3405 txq->ift_npending += pi.ipi_ndescs;
3406 } else {
3407 *m_headp = m_head = iflib_remove_mbuf(txq);
3408 if (err == EFBIG) {
3409 txq->ift_txd_encap_efbig++;
3410 if (remap < 2) {
3411 remap = 1;
3412 goto defrag;
3413 }
3414 }
3415 goto defrag_failed;
3416 }
3417 /*
3418 * err can't possibly be non-zero here, so we don't neet to test it
3419 * to see if we need to DBG_COUNTER_INC(encap_txd_encap_fail).
3420 */
3421 return (err);
3422
3423 defrag_failed:
3424 txq->ift_mbuf_defrag_failed++;
3425 txq->ift_map_failed++;
3426 m_freem(*m_headp);
3427 DBG_COUNTER_INC(tx_frees);
3428 *m_headp = NULL;
3429 DBG_COUNTER_INC(encap_txd_encap_fail);
3430 return (ENOMEM);
3431 }
3432
3433 static void
iflib_tx_desc_free(iflib_txq_t txq,int n)3434 iflib_tx_desc_free(iflib_txq_t txq, int n)
3435 {
3436 uint32_t qsize, cidx, mask, gen;
3437 struct mbuf *m, **ifsd_m;
3438 bool do_prefetch;
3439
3440 cidx = txq->ift_cidx;
3441 gen = txq->ift_gen;
3442 qsize = txq->ift_size;
3443 mask = qsize-1;
3444 ifsd_m = txq->ift_sds.ifsd_m;
3445 do_prefetch = (txq->ift_ctx->ifc_flags & IFC_PREFETCH);
3446
3447 while (n-- > 0) {
3448 if (do_prefetch) {
3449 prefetch(ifsd_m[(cidx + 3) & mask]);
3450 prefetch(ifsd_m[(cidx + 4) & mask]);
3451 }
3452 if ((m = ifsd_m[cidx]) != NULL) {
3453 prefetch(&ifsd_m[(cidx + CACHE_PTR_INCREMENT) & mask]);
3454 if (m->m_pkthdr.csum_flags & CSUM_TSO) {
3455 bus_dmamap_sync(txq->ift_tso_buf_tag,
3456 txq->ift_sds.ifsd_tso_map[cidx],
3457 BUS_DMASYNC_POSTWRITE);
3458 bus_dmamap_unload(txq->ift_tso_buf_tag,
3459 txq->ift_sds.ifsd_tso_map[cidx]);
3460 } else {
3461 bus_dmamap_sync(txq->ift_buf_tag,
3462 txq->ift_sds.ifsd_map[cidx],
3463 BUS_DMASYNC_POSTWRITE);
3464 bus_dmamap_unload(txq->ift_buf_tag,
3465 txq->ift_sds.ifsd_map[cidx]);
3466 }
3467 /* XXX we don't support any drivers that batch packets yet */
3468 MPASS(m->m_nextpkt == NULL);
3469 m_freem(m);
3470 ifsd_m[cidx] = NULL;
3471 #if MEMORY_LOGGING
3472 txq->ift_dequeued++;
3473 #endif
3474 DBG_COUNTER_INC(tx_frees);
3475 }
3476 if (__predict_false(++cidx == qsize)) {
3477 cidx = 0;
3478 gen = 0;
3479 }
3480 }
3481 txq->ift_cidx = cidx;
3482 txq->ift_gen = gen;
3483 }
3484
3485 static __inline int
iflib_completed_tx_reclaim(iflib_txq_t txq,int thresh)3486 iflib_completed_tx_reclaim(iflib_txq_t txq, int thresh)
3487 {
3488 int reclaim;
3489 if_ctx_t ctx = txq->ift_ctx;
3490
3491 KASSERT(thresh >= 0, ("invalid threshold to reclaim"));
3492 MPASS(thresh /*+ MAX_TX_DESC(txq->ift_ctx) */ < txq->ift_size);
3493
3494 /*
3495 * Need a rate-limiting check so that this isn't called every time
3496 */
3497 iflib_tx_credits_update(ctx, txq);
3498 reclaim = DESC_RECLAIMABLE(txq);
3499
3500 if (reclaim <= thresh /* + MAX_TX_DESC(txq->ift_ctx) */) {
3501 #ifdef INVARIANTS
3502 if (iflib_verbose_debug) {
3503 printf("%s processed=%ju cleaned=%ju tx_nsegments=%d reclaim=%d thresh=%d\n", __FUNCTION__,
3504 txq->ift_processed, txq->ift_cleaned, txq->ift_ctx->ifc_softc_ctx.isc_tx_nsegments,
3505 reclaim, thresh);
3506
3507 }
3508 #endif
3509 return (0);
3510 }
3511 iflib_tx_desc_free(txq, reclaim);
3512 txq->ift_cleaned += reclaim;
3513 txq->ift_in_use -= reclaim;
3514
3515 return (reclaim);
3516 }
3517
3518 static struct mbuf **
_ring_peek_one(struct ifmp_ring * r,int cidx,int offset,int remaining)3519 _ring_peek_one(struct ifmp_ring *r, int cidx, int offset, int remaining)
3520 {
3521 int next, size;
3522 struct mbuf **items;
3523
3524 size = r->size;
3525 next = (cidx + CACHE_PTR_INCREMENT) & (size-1);
3526 items = __DEVOLATILE(struct mbuf **, &r->items[0]);
3527
3528 prefetch(items[(cidx + offset) & (size-1)]);
3529 if (remaining > 1) {
3530 prefetch2cachelines(&items[next]);
3531 prefetch2cachelines(items[(cidx + offset + 1) & (size-1)]);
3532 prefetch2cachelines(items[(cidx + offset + 2) & (size-1)]);
3533 prefetch2cachelines(items[(cidx + offset + 3) & (size-1)]);
3534 }
3535 return (__DEVOLATILE(struct mbuf **, &r->items[(cidx + offset) & (size-1)]));
3536 }
3537
3538 static void
iflib_txq_check_drain(iflib_txq_t txq,int budget)3539 iflib_txq_check_drain(iflib_txq_t txq, int budget)
3540 {
3541
3542 ifmp_ring_check_drainage(txq->ift_br, budget);
3543 }
3544
3545 static uint32_t
iflib_txq_can_drain(struct ifmp_ring * r)3546 iflib_txq_can_drain(struct ifmp_ring *r)
3547 {
3548 iflib_txq_t txq = r->cookie;
3549 if_ctx_t ctx = txq->ift_ctx;
3550
3551 if (TXQ_AVAIL(txq) > MAX_TX_DESC(ctx) + 2)
3552 return (1);
3553 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
3554 BUS_DMASYNC_POSTREAD);
3555 return (ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id,
3556 false));
3557 }
3558
3559 static uint32_t
iflib_txq_drain(struct ifmp_ring * r,uint32_t cidx,uint32_t pidx)3560 iflib_txq_drain(struct ifmp_ring *r, uint32_t cidx, uint32_t pidx)
3561 {
3562 iflib_txq_t txq = r->cookie;
3563 if_ctx_t ctx = txq->ift_ctx;
3564 if_t ifp = ctx->ifc_ifp;
3565 struct mbuf **mp, *m;
3566 int i, count, consumed, pkt_sent, bytes_sent, mcast_sent, avail;
3567 int reclaimed, err, in_use_prev, desc_used;
3568 bool do_prefetch, ring, rang;
3569
3570 if (__predict_false(!(if_getdrvflags(ifp) & IFF_DRV_RUNNING) ||
3571 !LINK_ACTIVE(ctx))) {
3572 DBG_COUNTER_INC(txq_drain_notready);
3573 return (0);
3574 }
3575 reclaimed = iflib_completed_tx_reclaim(txq, RECLAIM_THRESH(ctx));
3576 rang = iflib_txd_db_check(ctx, txq, reclaimed, txq->ift_in_use);
3577 avail = IDXDIFF(pidx, cidx, r->size);
3578 if (__predict_false(ctx->ifc_flags & IFC_QFLUSH)) {
3579 DBG_COUNTER_INC(txq_drain_flushing);
3580 for (i = 0; i < avail; i++) {
3581 if (__predict_true(r->items[(cidx + i) & (r->size-1)] != (void *)txq))
3582 m_free(r->items[(cidx + i) & (r->size-1)]);
3583 r->items[(cidx + i) & (r->size-1)] = NULL;
3584 }
3585 return (avail);
3586 }
3587
3588 if (__predict_false(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_OACTIVE)) {
3589 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
3590 CALLOUT_LOCK(txq);
3591 callout_stop(&txq->ift_timer);
3592 CALLOUT_UNLOCK(txq);
3593 DBG_COUNTER_INC(txq_drain_oactive);
3594 return (0);
3595 }
3596 if (reclaimed)
3597 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
3598 consumed = mcast_sent = bytes_sent = pkt_sent = 0;
3599 count = MIN(avail, TX_BATCH_SIZE);
3600 #ifdef INVARIANTS
3601 if (iflib_verbose_debug)
3602 printf("%s avail=%d ifc_flags=%x txq_avail=%d ", __FUNCTION__,
3603 avail, ctx->ifc_flags, TXQ_AVAIL(txq));
3604 #endif
3605 do_prefetch = (ctx->ifc_flags & IFC_PREFETCH);
3606 avail = TXQ_AVAIL(txq);
3607 err = 0;
3608 for (desc_used = i = 0; i < count && avail > MAX_TX_DESC(ctx) + 2; i++) {
3609 int rem = do_prefetch ? count - i : 0;
3610
3611 mp = _ring_peek_one(r, cidx, i, rem);
3612 MPASS(mp != NULL && *mp != NULL);
3613 if (__predict_false(*mp == (struct mbuf *)txq)) {
3614 consumed++;
3615 reclaimed++;
3616 continue;
3617 }
3618 in_use_prev = txq->ift_in_use;
3619 err = iflib_encap(txq, mp);
3620 if (__predict_false(err)) {
3621 /* no room - bail out */
3622 if (err == ENOBUFS)
3623 break;
3624 consumed++;
3625 /* we can't send this packet - skip it */
3626 continue;
3627 }
3628 consumed++;
3629 pkt_sent++;
3630 m = *mp;
3631 DBG_COUNTER_INC(tx_sent);
3632 bytes_sent += m->m_pkthdr.len;
3633 mcast_sent += !!(m->m_flags & M_MCAST);
3634 avail = TXQ_AVAIL(txq);
3635
3636 txq->ift_db_pending += (txq->ift_in_use - in_use_prev);
3637 desc_used += (txq->ift_in_use - in_use_prev);
3638 ETHER_BPF_MTAP(ifp, m);
3639 if (__predict_false(!(ifp->if_drv_flags & IFF_DRV_RUNNING)))
3640 break;
3641 rang = iflib_txd_db_check(ctx, txq, false, in_use_prev);
3642 }
3643
3644 /* deliberate use of bitwise or to avoid gratuitous short-circuit */
3645 ring = rang ? false : (iflib_min_tx_latency | err) || (TXQ_AVAIL(txq) < MAX_TX_DESC(ctx));
3646 iflib_txd_db_check(ctx, txq, ring, txq->ift_in_use);
3647 if_inc_counter(ifp, IFCOUNTER_OBYTES, bytes_sent);
3648 if_inc_counter(ifp, IFCOUNTER_OPACKETS, pkt_sent);
3649 if (mcast_sent)
3650 if_inc_counter(ifp, IFCOUNTER_OMCASTS, mcast_sent);
3651 #ifdef INVARIANTS
3652 if (iflib_verbose_debug)
3653 printf("consumed=%d\n", consumed);
3654 #endif
3655 return (consumed);
3656 }
3657
3658 static uint32_t
iflib_txq_drain_always(struct ifmp_ring * r)3659 iflib_txq_drain_always(struct ifmp_ring *r)
3660 {
3661 return (1);
3662 }
3663
3664 static uint32_t
iflib_txq_drain_free(struct ifmp_ring * r,uint32_t cidx,uint32_t pidx)3665 iflib_txq_drain_free(struct ifmp_ring *r, uint32_t cidx, uint32_t pidx)
3666 {
3667 int i, avail;
3668 struct mbuf **mp;
3669 iflib_txq_t txq;
3670
3671 txq = r->cookie;
3672
3673 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
3674 CALLOUT_LOCK(txq);
3675 callout_stop(&txq->ift_timer);
3676 CALLOUT_UNLOCK(txq);
3677
3678 avail = IDXDIFF(pidx, cidx, r->size);
3679 for (i = 0; i < avail; i++) {
3680 mp = _ring_peek_one(r, cidx, i, avail - i);
3681 if (__predict_false(*mp == (struct mbuf *)txq))
3682 continue;
3683 m_freem(*mp);
3684 DBG_COUNTER_INC(tx_frees);
3685 }
3686 MPASS(ifmp_ring_is_stalled(r) == 0);
3687 return (avail);
3688 }
3689
3690 static void
iflib_ifmp_purge(iflib_txq_t txq)3691 iflib_ifmp_purge(iflib_txq_t txq)
3692 {
3693 struct ifmp_ring *r;
3694
3695 r = txq->ift_br;
3696 r->drain = iflib_txq_drain_free;
3697 r->can_drain = iflib_txq_drain_always;
3698
3699 ifmp_ring_check_drainage(r, r->size);
3700
3701 r->drain = iflib_txq_drain;
3702 r->can_drain = iflib_txq_can_drain;
3703 }
3704
3705 static void
_task_fn_tx(void * context)3706 _task_fn_tx(void *context)
3707 {
3708 iflib_txq_t txq = context;
3709 if_ctx_t ctx = txq->ift_ctx;
3710 #if defined(ALTQ) || defined(DEV_NETMAP)
3711 if_t ifp = ctx->ifc_ifp;
3712 #endif
3713 int abdicate = ctx->ifc_sysctl_tx_abdicate;
3714
3715 #ifdef IFLIB_DIAGNOSTICS
3716 txq->ift_cpu_exec_count[curcpu]++;
3717 #endif
3718 if (!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING))
3719 return;
3720 #ifdef DEV_NETMAP
3721 if (if_getcapenable(ifp) & IFCAP_NETMAP) {
3722 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
3723 BUS_DMASYNC_POSTREAD);
3724 if (ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id, false))
3725 netmap_tx_irq(ifp, txq->ift_id);
3726 if (ctx->ifc_flags & IFC_LEGACY)
3727 IFDI_INTR_ENABLE(ctx);
3728 else
3729 IFDI_TX_QUEUE_INTR_ENABLE(ctx, txq->ift_id);
3730 return;
3731 }
3732 #endif
3733 #ifdef ALTQ
3734 if (ALTQ_IS_ENABLED(&ifp->if_snd))
3735 iflib_altq_if_start(ifp);
3736 #endif
3737 if (txq->ift_db_pending)
3738 ifmp_ring_enqueue(txq->ift_br, (void **)&txq, 1, TX_BATCH_SIZE, abdicate);
3739 else if (!abdicate)
3740 ifmp_ring_check_drainage(txq->ift_br, TX_BATCH_SIZE);
3741 /*
3742 * When abdicating, we always need to check drainage, not just when we don't enqueue
3743 */
3744 if (abdicate)
3745 ifmp_ring_check_drainage(txq->ift_br, TX_BATCH_SIZE);
3746 if (ctx->ifc_flags & IFC_LEGACY)
3747 IFDI_INTR_ENABLE(ctx);
3748 else
3749 IFDI_TX_QUEUE_INTR_ENABLE(ctx, txq->ift_id);
3750 }
3751
3752 static void
_task_fn_rx(void * context)3753 _task_fn_rx(void *context)
3754 {
3755 iflib_rxq_t rxq = context;
3756 if_ctx_t ctx = rxq->ifr_ctx;
3757 bool more;
3758 uint16_t budget;
3759
3760 #ifdef IFLIB_DIAGNOSTICS
3761 rxq->ifr_cpu_exec_count[curcpu]++;
3762 #endif
3763 DBG_COUNTER_INC(task_fn_rxs);
3764 if (__predict_false(!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING)))
3765 return;
3766 more = true;
3767 #ifdef DEV_NETMAP
3768 if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP) {
3769 u_int work = 0;
3770 if (netmap_rx_irq(ctx->ifc_ifp, rxq->ifr_id, &work)) {
3771 more = false;
3772 }
3773 }
3774 #endif
3775 budget = ctx->ifc_sysctl_rx_budget;
3776 if (budget == 0)
3777 budget = 16; /* XXX */
3778 if (more == false || (more = iflib_rxeof(rxq, budget)) == false) {
3779 if (ctx->ifc_flags & IFC_LEGACY)
3780 IFDI_INTR_ENABLE(ctx);
3781 else
3782 IFDI_RX_QUEUE_INTR_ENABLE(ctx, rxq->ifr_id);
3783 DBG_COUNTER_INC(rx_intr_enables);
3784 }
3785 if (__predict_false(!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING)))
3786 return;
3787 if (more)
3788 GROUPTASK_ENQUEUE(&rxq->ifr_task);
3789 }
3790
3791 static void
_task_fn_admin(void * context)3792 _task_fn_admin(void *context)
3793 {
3794 if_ctx_t ctx = context;
3795 if_softc_ctx_t sctx = &ctx->ifc_softc_ctx;
3796 iflib_txq_t txq;
3797 int i;
3798 bool oactive, running, do_reset, do_watchdog, in_detach;
3799 uint32_t reset_on = hz / 2;
3800
3801 STATE_LOCK(ctx);
3802 running = (if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING);
3803 oactive = (if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_OACTIVE);
3804 do_reset = (ctx->ifc_flags & IFC_DO_RESET);
3805 do_watchdog = (ctx->ifc_flags & IFC_DO_WATCHDOG);
3806 in_detach = (ctx->ifc_flags & IFC_IN_DETACH);
3807 ctx->ifc_flags &= ~(IFC_DO_RESET|IFC_DO_WATCHDOG);
3808 STATE_UNLOCK(ctx);
3809
3810 if ((!running && !oactive) && !(ctx->ifc_sctx->isc_flags & IFLIB_ADMIN_ALWAYS_RUN))
3811 return;
3812 if (in_detach)
3813 return;
3814
3815 CTX_LOCK(ctx);
3816 for (txq = ctx->ifc_txqs, i = 0; i < sctx->isc_ntxqsets; i++, txq++) {
3817 CALLOUT_LOCK(txq);
3818 callout_stop(&txq->ift_timer);
3819 CALLOUT_UNLOCK(txq);
3820 }
3821 if (do_watchdog) {
3822 ctx->ifc_watchdog_events++;
3823 IFDI_WATCHDOG_RESET(ctx);
3824 }
3825 IFDI_UPDATE_ADMIN_STATUS(ctx);
3826 for (txq = ctx->ifc_txqs, i = 0; i < sctx->isc_ntxqsets; i++, txq++) {
3827 #ifdef DEV_NETMAP
3828 reset_on = hz / 2;
3829 if (if_getcapenable(ctx->ifc_ifp) & IFCAP_NETMAP)
3830 iflib_netmap_timer_adjust(ctx, txq, &reset_on);
3831 #endif
3832 callout_reset_on(&txq->ift_timer, reset_on, iflib_timer, txq, txq->ift_timer.c_cpu);
3833 }
3834 IFDI_LINK_INTR_ENABLE(ctx);
3835 if (do_reset)
3836 iflib_if_init_locked(ctx);
3837 CTX_UNLOCK(ctx);
3838
3839 if (LINK_ACTIVE(ctx) == 0)
3840 return;
3841 for (txq = ctx->ifc_txqs, i = 0; i < sctx->isc_ntxqsets; i++, txq++)
3842 iflib_txq_check_drain(txq, IFLIB_RESTART_BUDGET);
3843 }
3844
3845
3846 static void
_task_fn_iov(void * context)3847 _task_fn_iov(void *context)
3848 {
3849 if_ctx_t ctx = context;
3850
3851 if (!(if_getdrvflags(ctx->ifc_ifp) & IFF_DRV_RUNNING) &&
3852 !(ctx->ifc_sctx->isc_flags & IFLIB_ADMIN_ALWAYS_RUN))
3853 return;
3854
3855 CTX_LOCK(ctx);
3856 IFDI_VFLR_HANDLE(ctx);
3857 CTX_UNLOCK(ctx);
3858 }
3859
3860 static int
iflib_sysctl_int_delay(SYSCTL_HANDLER_ARGS)3861 iflib_sysctl_int_delay(SYSCTL_HANDLER_ARGS)
3862 {
3863 int err;
3864 if_int_delay_info_t info;
3865 if_ctx_t ctx;
3866
3867 info = (if_int_delay_info_t)arg1;
3868 ctx = info->iidi_ctx;
3869 info->iidi_req = req;
3870 info->iidi_oidp = oidp;
3871 CTX_LOCK(ctx);
3872 err = IFDI_SYSCTL_INT_DELAY(ctx, info);
3873 CTX_UNLOCK(ctx);
3874 return (err);
3875 }
3876
3877 /*********************************************************************
3878 *
3879 * IFNET FUNCTIONS
3880 *
3881 **********************************************************************/
3882
3883 static void
iflib_if_init_locked(if_ctx_t ctx)3884 iflib_if_init_locked(if_ctx_t ctx)
3885 {
3886 iflib_stop(ctx);
3887 iflib_init_locked(ctx);
3888 }
3889
3890
3891 static void
iflib_if_init(void * arg)3892 iflib_if_init(void *arg)
3893 {
3894 if_ctx_t ctx = arg;
3895
3896 CTX_LOCK(ctx);
3897 iflib_if_init_locked(ctx);
3898 CTX_UNLOCK(ctx);
3899 }
3900
3901 static int
iflib_if_transmit(if_t ifp,struct mbuf * m)3902 iflib_if_transmit(if_t ifp, struct mbuf *m)
3903 {
3904 if_ctx_t ctx = if_getsoftc(ifp);
3905
3906 iflib_txq_t txq;
3907 int err, qidx;
3908 int abdicate = ctx->ifc_sysctl_tx_abdicate;
3909
3910 if (__predict_false((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 || !LINK_ACTIVE(ctx))) {
3911 DBG_COUNTER_INC(tx_frees);
3912 m_freem(m);
3913 return (ENETDOWN);
3914 }
3915
3916 MPASS(m->m_nextpkt == NULL);
3917 /* ALTQ-enabled interfaces always use queue 0. */
3918 qidx = 0;
3919 if ((NTXQSETS(ctx) > 1) && M_HASHTYPE_GET(m) && !ALTQ_IS_ENABLED(&ifp->if_snd))
3920 qidx = QIDX(ctx, m);
3921 /*
3922 * XXX calculate buf_ring based on flowid (divvy up bits?)
3923 */
3924 txq = &ctx->ifc_txqs[qidx];
3925
3926 #ifdef DRIVER_BACKPRESSURE
3927 if (txq->ift_closed) {
3928 while (m != NULL) {
3929 next = m->m_nextpkt;
3930 m->m_nextpkt = NULL;
3931 m_freem(m);
3932 DBG_COUNTER_INC(tx_frees);
3933 m = next;
3934 }
3935 return (ENOBUFS);
3936 }
3937 #endif
3938 #ifdef notyet
3939 qidx = count = 0;
3940 mp = marr;
3941 next = m;
3942 do {
3943 count++;
3944 next = next->m_nextpkt;
3945 } while (next != NULL);
3946
3947 if (count > nitems(marr))
3948 if ((mp = malloc(count*sizeof(struct mbuf *), M_IFLIB, M_NOWAIT)) == NULL) {
3949 /* XXX check nextpkt */
3950 m_freem(m);
3951 /* XXX simplify for now */
3952 DBG_COUNTER_INC(tx_frees);
3953 return (ENOBUFS);
3954 }
3955 for (next = m, i = 0; next != NULL; i++) {
3956 mp[i] = next;
3957 next = next->m_nextpkt;
3958 mp[i]->m_nextpkt = NULL;
3959 }
3960 #endif
3961 DBG_COUNTER_INC(tx_seen);
3962 err = ifmp_ring_enqueue(txq->ift_br, (void **)&m, 1, TX_BATCH_SIZE, abdicate);
3963
3964 if (abdicate)
3965 GROUPTASK_ENQUEUE(&txq->ift_task);
3966 if (err) {
3967 if (!abdicate)
3968 GROUPTASK_ENQUEUE(&txq->ift_task);
3969 /* support forthcoming later */
3970 #ifdef DRIVER_BACKPRESSURE
3971 txq->ift_closed = TRUE;
3972 #endif
3973 ifmp_ring_check_drainage(txq->ift_br, TX_BATCH_SIZE);
3974 m_freem(m);
3975 DBG_COUNTER_INC(tx_frees);
3976 }
3977
3978 return (err);
3979 }
3980
3981 #ifdef ALTQ
3982 /*
3983 * The overall approach to integrating iflib with ALTQ is to continue to use
3984 * the iflib mp_ring machinery between the ALTQ queue(s) and the hardware
3985 * ring. Technically, when using ALTQ, queueing to an intermediate mp_ring
3986 * is redundant/unnecessary, but doing so minimizes the amount of
3987 * ALTQ-specific code required in iflib. It is assumed that the overhead of
3988 * redundantly queueing to an intermediate mp_ring is swamped by the
3989 * performance limitations inherent in using ALTQ.
3990 *
3991 * When ALTQ support is compiled in, all iflib drivers will use a transmit
3992 * routine, iflib_altq_if_transmit(), that checks if ALTQ is enabled for the
3993 * given interface. If ALTQ is enabled for an interface, then all
3994 * transmitted packets for that interface will be submitted to the ALTQ
3995 * subsystem via IFQ_ENQUEUE(). We don't use the legacy if_transmit()
3996 * implementation because it uses IFQ_HANDOFF(), which will duplicatively
3997 * update stats that the iflib machinery handles, and which is sensitve to
3998 * the disused IFF_DRV_OACTIVE flag. Additionally, iflib_altq_if_start()
3999 * will be installed as the start routine for use by ALTQ facilities that
4000 * need to trigger queue drains on a scheduled basis.
4001 *
4002 */
4003 static void
iflib_altq_if_start(if_t ifp)4004 iflib_altq_if_start(if_t ifp)
4005 {
4006 struct ifaltq *ifq = &ifp->if_snd;
4007 struct mbuf *m;
4008
4009 IFQ_LOCK(ifq);
4010 IFQ_DEQUEUE_NOLOCK(ifq, m);
4011 while (m != NULL) {
4012 iflib_if_transmit(ifp, m);
4013 IFQ_DEQUEUE_NOLOCK(ifq, m);
4014 }
4015 IFQ_UNLOCK(ifq);
4016 }
4017
4018 static int
iflib_altq_if_transmit(if_t ifp,struct mbuf * m)4019 iflib_altq_if_transmit(if_t ifp, struct mbuf *m)
4020 {
4021 int err;
4022
4023 if (ALTQ_IS_ENABLED(&ifp->if_snd)) {
4024 IFQ_ENQUEUE(&ifp->if_snd, m, err);
4025 if (err == 0)
4026 iflib_altq_if_start(ifp);
4027 } else
4028 err = iflib_if_transmit(ifp, m);
4029
4030 return (err);
4031 }
4032 #endif /* ALTQ */
4033
4034 static void
iflib_if_qflush(if_t ifp)4035 iflib_if_qflush(if_t ifp)
4036 {
4037 if_ctx_t ctx = if_getsoftc(ifp);
4038 iflib_txq_t txq = ctx->ifc_txqs;
4039 int i;
4040
4041 STATE_LOCK(ctx);
4042 ctx->ifc_flags |= IFC_QFLUSH;
4043 STATE_UNLOCK(ctx);
4044 for (i = 0; i < NTXQSETS(ctx); i++, txq++)
4045 while (!(ifmp_ring_is_idle(txq->ift_br) || ifmp_ring_is_stalled(txq->ift_br)))
4046 iflib_txq_check_drain(txq, 0);
4047 STATE_LOCK(ctx);
4048 ctx->ifc_flags &= ~IFC_QFLUSH;
4049 STATE_UNLOCK(ctx);
4050
4051 /*
4052 * When ALTQ is enabled, this will also take care of purging the
4053 * ALTQ queue(s).
4054 */
4055 if_qflush(ifp);
4056 }
4057
4058
4059 #define IFCAP_FLAGS (IFCAP_HWCSUM_IPV6 | IFCAP_HWCSUM | IFCAP_LRO | \
4060 IFCAP_TSO | IFCAP_VLAN_HWTAGGING | IFCAP_HWSTATS | \
4061 IFCAP_VLAN_MTU | IFCAP_VLAN_HWFILTER | \
4062 IFCAP_VLAN_HWTSO | IFCAP_VLAN_HWCSUM)
4063
4064 static int
iflib_if_ioctl(if_t ifp,u_long command,caddr_t data)4065 iflib_if_ioctl(if_t ifp, u_long command, caddr_t data)
4066 {
4067 if_ctx_t ctx = if_getsoftc(ifp);
4068 struct ifreq *ifr = (struct ifreq *)data;
4069 #if defined(INET) || defined(INET6)
4070 struct ifaddr *ifa = (struct ifaddr *)data;
4071 #endif
4072 bool avoid_reset = false;
4073 int err = 0, reinit = 0, bits;
4074
4075 switch (command) {
4076 case SIOCSIFADDR:
4077 #ifdef INET
4078 if (ifa->ifa_addr->sa_family == AF_INET)
4079 avoid_reset = true;
4080 #endif
4081 #ifdef INET6
4082 if (ifa->ifa_addr->sa_family == AF_INET6)
4083 avoid_reset = true;
4084 #endif
4085 /*
4086 ** Calling init results in link renegotiation,
4087 ** so we avoid doing it when possible.
4088 */
4089 if (avoid_reset) {
4090 if_setflagbits(ifp, IFF_UP,0);
4091 if (!(if_getdrvflags(ifp) & IFF_DRV_RUNNING))
4092 reinit = 1;
4093 #ifdef INET
4094 if (!(if_getflags(ifp) & IFF_NOARP))
4095 arp_ifinit(ifp, ifa);
4096 #endif
4097 } else
4098 err = ether_ioctl(ifp, command, data);
4099 break;
4100 case SIOCSIFMTU:
4101 CTX_LOCK(ctx);
4102 if (ifr->ifr_mtu == if_getmtu(ifp)) {
4103 CTX_UNLOCK(ctx);
4104 break;
4105 }
4106 bits = if_getdrvflags(ifp);
4107 /* stop the driver and free any clusters before proceeding */
4108 iflib_stop(ctx);
4109
4110 if ((err = IFDI_MTU_SET(ctx, ifr->ifr_mtu)) == 0) {
4111 STATE_LOCK(ctx);
4112 if (ifr->ifr_mtu > ctx->ifc_max_fl_buf_size)
4113 ctx->ifc_flags |= IFC_MULTISEG;
4114 else
4115 ctx->ifc_flags &= ~IFC_MULTISEG;
4116 STATE_UNLOCK(ctx);
4117 err = if_setmtu(ifp, ifr->ifr_mtu);
4118 }
4119 iflib_init_locked(ctx);
4120 STATE_LOCK(ctx);
4121 if_setdrvflags(ifp, bits);
4122 STATE_UNLOCK(ctx);
4123 CTX_UNLOCK(ctx);
4124 break;
4125 case SIOCSIFFLAGS:
4126 CTX_LOCK(ctx);
4127 if (if_getflags(ifp) & IFF_UP) {
4128 if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4129 if ((if_getflags(ifp) ^ ctx->ifc_if_flags) &
4130 (IFF_PROMISC | IFF_ALLMULTI)) {
4131 err = IFDI_PROMISC_SET(ctx, if_getflags(ifp));
4132 }
4133 } else
4134 reinit = 1;
4135 } else if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4136 iflib_stop(ctx);
4137 }
4138 ctx->ifc_if_flags = if_getflags(ifp);
4139 CTX_UNLOCK(ctx);
4140 break;
4141 case SIOCADDMULTI:
4142 case SIOCDELMULTI:
4143 if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4144 CTX_LOCK(ctx);
4145 IFDI_INTR_DISABLE(ctx);
4146 IFDI_MULTI_SET(ctx);
4147 IFDI_INTR_ENABLE(ctx);
4148 CTX_UNLOCK(ctx);
4149 }
4150 break;
4151 case SIOCSIFMEDIA:
4152 CTX_LOCK(ctx);
4153 IFDI_MEDIA_SET(ctx);
4154 CTX_UNLOCK(ctx);
4155 /* FALLTHROUGH */
4156 case SIOCGIFMEDIA:
4157 case SIOCGIFXMEDIA:
4158 err = ifmedia_ioctl(ifp, ifr, &ctx->ifc_media, command);
4159 break;
4160 case SIOCGI2C:
4161 {
4162 struct ifi2creq i2c;
4163
4164 err = copyin(ifr_data_get_ptr(ifr), &i2c, sizeof(i2c));
4165 if (err != 0)
4166 break;
4167 if (i2c.dev_addr != 0xA0 && i2c.dev_addr != 0xA2) {
4168 err = EINVAL;
4169 break;
4170 }
4171 if (i2c.len > sizeof(i2c.data)) {
4172 err = EINVAL;
4173 break;
4174 }
4175
4176 if ((err = IFDI_I2C_REQ(ctx, &i2c)) == 0)
4177 err = copyout(&i2c, ifr_data_get_ptr(ifr),
4178 sizeof(i2c));
4179 break;
4180 }
4181 case SIOCSIFCAP:
4182 {
4183 int mask, setmask, oldmask;
4184
4185 oldmask = if_getcapenable(ifp);
4186 mask = ifr->ifr_reqcap ^ oldmask;
4187 mask &= ctx->ifc_softc_ctx.isc_capabilities;
4188 setmask = 0;
4189 #ifdef TCP_OFFLOAD
4190 setmask |= mask & (IFCAP_TOE4|IFCAP_TOE6);
4191 #endif
4192 setmask |= (mask & IFCAP_FLAGS);
4193 setmask |= (mask & IFCAP_WOL);
4194
4195 /*
4196 * If any RX csum has changed, change all the ones that
4197 * are supported by the driver.
4198 */
4199 if (setmask & (IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6)) {
4200 setmask |= ctx->ifc_softc_ctx.isc_capabilities &
4201 (IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6);
4202 }
4203
4204 /*
4205 * want to ensure that traffic has stopped before we change any of the flags
4206 */
4207 if (setmask) {
4208 CTX_LOCK(ctx);
4209 bits = if_getdrvflags(ifp);
4210 if (bits & IFF_DRV_RUNNING && setmask & ~IFCAP_WOL)
4211 iflib_stop(ctx);
4212 STATE_LOCK(ctx);
4213 if_togglecapenable(ifp, setmask);
4214 STATE_UNLOCK(ctx);
4215 if (bits & IFF_DRV_RUNNING && setmask & ~IFCAP_WOL)
4216 iflib_init_locked(ctx);
4217 STATE_LOCK(ctx);
4218 if_setdrvflags(ifp, bits);
4219 STATE_UNLOCK(ctx);
4220 CTX_UNLOCK(ctx);
4221 }
4222 if_vlancap(ifp);
4223 break;
4224 }
4225 case SIOCGPRIVATE_0:
4226 case SIOCSDRVSPEC:
4227 case SIOCGDRVSPEC:
4228 CTX_LOCK(ctx);
4229 err = IFDI_PRIV_IOCTL(ctx, command, data);
4230 CTX_UNLOCK(ctx);
4231 break;
4232 default:
4233 err = ether_ioctl(ifp, command, data);
4234 break;
4235 }
4236 if (reinit)
4237 iflib_if_init(ctx);
4238 return (err);
4239 }
4240
4241 static uint64_t
iflib_if_get_counter(if_t ifp,ift_counter cnt)4242 iflib_if_get_counter(if_t ifp, ift_counter cnt)
4243 {
4244 if_ctx_t ctx = if_getsoftc(ifp);
4245
4246 return (IFDI_GET_COUNTER(ctx, cnt));
4247 }
4248
4249 /*********************************************************************
4250 *
4251 * OTHER FUNCTIONS EXPORTED TO THE STACK
4252 *
4253 **********************************************************************/
4254
4255 static void
iflib_vlan_register(void * arg,if_t ifp,uint16_t vtag)4256 iflib_vlan_register(void *arg, if_t ifp, uint16_t vtag)
4257 {
4258 if_ctx_t ctx = if_getsoftc(ifp);
4259
4260 if ((void *)ctx != arg)
4261 return;
4262
4263 if ((vtag == 0) || (vtag > 4095))
4264 return;
4265
4266 if (iflib_in_detach(ctx))
4267 return;
4268
4269 CTX_LOCK(ctx);
4270 IFDI_VLAN_REGISTER(ctx, vtag);
4271 /* Re-init to load the changes */
4272 if (if_getcapenable(ifp) & IFCAP_VLAN_HWFILTER)
4273 iflib_if_init_locked(ctx);
4274 CTX_UNLOCK(ctx);
4275 }
4276
4277 static void
iflib_vlan_unregister(void * arg,if_t ifp,uint16_t vtag)4278 iflib_vlan_unregister(void *arg, if_t ifp, uint16_t vtag)
4279 {
4280 if_ctx_t ctx = if_getsoftc(ifp);
4281
4282 if ((void *)ctx != arg)
4283 return;
4284
4285 if ((vtag == 0) || (vtag > 4095))
4286 return;
4287
4288 CTX_LOCK(ctx);
4289 IFDI_VLAN_UNREGISTER(ctx, vtag);
4290 /* Re-init to load the changes */
4291 if (if_getcapenable(ifp) & IFCAP_VLAN_HWFILTER)
4292 iflib_if_init_locked(ctx);
4293 CTX_UNLOCK(ctx);
4294 }
4295
4296 static void
iflib_led_func(void * arg,int onoff)4297 iflib_led_func(void *arg, int onoff)
4298 {
4299 if_ctx_t ctx = arg;
4300
4301 CTX_LOCK(ctx);
4302 IFDI_LED_FUNC(ctx, onoff);
4303 CTX_UNLOCK(ctx);
4304 }
4305
4306 /*********************************************************************
4307 *
4308 * BUS FUNCTION DEFINITIONS
4309 *
4310 **********************************************************************/
4311
4312 int
iflib_device_probe(device_t dev)4313 iflib_device_probe(device_t dev)
4314 {
4315 pci_vendor_info_t *ent;
4316
4317 uint16_t pci_vendor_id, pci_device_id;
4318 uint16_t pci_subvendor_id, pci_subdevice_id;
4319 uint16_t pci_rev_id;
4320 if_shared_ctx_t sctx;
4321
4322 if ((sctx = DEVICE_REGISTER(dev)) == NULL || sctx->isc_magic != IFLIB_MAGIC)
4323 return (ENOTSUP);
4324
4325 pci_vendor_id = pci_get_vendor(dev);
4326 pci_device_id = pci_get_device(dev);
4327 pci_subvendor_id = pci_get_subvendor(dev);
4328 pci_subdevice_id = pci_get_subdevice(dev);
4329 pci_rev_id = pci_get_revid(dev);
4330 if (sctx->isc_parse_devinfo != NULL)
4331 sctx->isc_parse_devinfo(&pci_device_id, &pci_subvendor_id, &pci_subdevice_id, &pci_rev_id);
4332
4333 ent = sctx->isc_vendor_info;
4334 while (ent->pvi_vendor_id != 0) {
4335 if (pci_vendor_id != ent->pvi_vendor_id) {
4336 ent++;
4337 continue;
4338 }
4339 if ((pci_device_id == ent->pvi_device_id) &&
4340 ((pci_subvendor_id == ent->pvi_subvendor_id) ||
4341 (ent->pvi_subvendor_id == 0)) &&
4342 ((pci_subdevice_id == ent->pvi_subdevice_id) ||
4343 (ent->pvi_subdevice_id == 0)) &&
4344 ((pci_rev_id == ent->pvi_rev_id) ||
4345 (ent->pvi_rev_id == 0))) {
4346
4347 device_set_desc_copy(dev, ent->pvi_name);
4348 /* this needs to be changed to zero if the bus probing code
4349 * ever stops re-probing on best match because the sctx
4350 * may have its values over written by register calls
4351 * in subsequent probes
4352 */
4353 return (BUS_PROBE_DEFAULT);
4354 }
4355 ent++;
4356 }
4357 return (ENXIO);
4358 }
4359
4360 int
iflib_device_probe_vendor(device_t dev)4361 iflib_device_probe_vendor(device_t dev)
4362 {
4363 int probe;
4364
4365 probe = iflib_device_probe(dev);
4366 if (probe == BUS_PROBE_DEFAULT)
4367 return (BUS_PROBE_VENDOR);
4368 else
4369 return (probe);
4370 }
4371
4372 static void
iflib_reset_qvalues(if_ctx_t ctx)4373 iflib_reset_qvalues(if_ctx_t ctx)
4374 {
4375 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
4376 if_shared_ctx_t sctx = ctx->ifc_sctx;
4377 device_t dev = ctx->ifc_dev;
4378 int i;
4379
4380 scctx->isc_txrx_budget_bytes_max = IFLIB_MAX_TX_BYTES;
4381 scctx->isc_tx_qdepth = IFLIB_DEFAULT_TX_QDEPTH;
4382 if (ctx->ifc_sysctl_ntxqs != 0)
4383 scctx->isc_ntxqsets = ctx->ifc_sysctl_ntxqs;
4384 if (ctx->ifc_sysctl_nrxqs != 0)
4385 scctx->isc_nrxqsets = ctx->ifc_sysctl_nrxqs;
4386
4387 for (i = 0; i < sctx->isc_ntxqs; i++) {
4388 if (ctx->ifc_sysctl_ntxds[i] != 0)
4389 scctx->isc_ntxd[i] = ctx->ifc_sysctl_ntxds[i];
4390 else
4391 scctx->isc_ntxd[i] = sctx->isc_ntxd_default[i];
4392 }
4393
4394 for (i = 0; i < sctx->isc_nrxqs; i++) {
4395 if (ctx->ifc_sysctl_nrxds[i] != 0)
4396 scctx->isc_nrxd[i] = ctx->ifc_sysctl_nrxds[i];
4397 else
4398 scctx->isc_nrxd[i] = sctx->isc_nrxd_default[i];
4399 }
4400
4401 for (i = 0; i < sctx->isc_nrxqs; i++) {
4402 if (scctx->isc_nrxd[i] < sctx->isc_nrxd_min[i]) {
4403 device_printf(dev, "nrxd%d: %d less than nrxd_min %d - resetting to min\n",
4404 i, scctx->isc_nrxd[i], sctx->isc_nrxd_min[i]);
4405 scctx->isc_nrxd[i] = sctx->isc_nrxd_min[i];
4406 }
4407 if (scctx->isc_nrxd[i] > sctx->isc_nrxd_max[i]) {
4408 device_printf(dev, "nrxd%d: %d greater than nrxd_max %d - resetting to max\n",
4409 i, scctx->isc_nrxd[i], sctx->isc_nrxd_max[i]);
4410 scctx->isc_nrxd[i] = sctx->isc_nrxd_max[i];
4411 }
4412 if (!powerof2(scctx->isc_nrxd[i])) {
4413 device_printf(dev, "nrxd%d: %d is not a power of 2 - using default value of %d\n",
4414 i, scctx->isc_nrxd[i], sctx->isc_nrxd_default[i]);
4415 scctx->isc_nrxd[i] = sctx->isc_nrxd_default[i];
4416 }
4417 }
4418
4419 for (i = 0; i < sctx->isc_ntxqs; i++) {
4420 if (scctx->isc_ntxd[i] < sctx->isc_ntxd_min[i]) {
4421 device_printf(dev, "ntxd%d: %d less than ntxd_min %d - resetting to min\n",
4422 i, scctx->isc_ntxd[i], sctx->isc_ntxd_min[i]);
4423 scctx->isc_ntxd[i] = sctx->isc_ntxd_min[i];
4424 }
4425 if (scctx->isc_ntxd[i] > sctx->isc_ntxd_max[i]) {
4426 device_printf(dev, "ntxd%d: %d greater than ntxd_max %d - resetting to max\n",
4427 i, scctx->isc_ntxd[i], sctx->isc_ntxd_max[i]);
4428 scctx->isc_ntxd[i] = sctx->isc_ntxd_max[i];
4429 }
4430 if (!powerof2(scctx->isc_ntxd[i])) {
4431 device_printf(dev, "ntxd%d: %d is not a power of 2 - using default value of %d\n",
4432 i, scctx->isc_ntxd[i], sctx->isc_ntxd_default[i]);
4433 scctx->isc_ntxd[i] = sctx->isc_ntxd_default[i];
4434 }
4435 }
4436 }
4437
4438 static uint16_t
get_ctx_core_offset(if_ctx_t ctx)4439 get_ctx_core_offset(if_ctx_t ctx)
4440 {
4441 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
4442 struct cpu_offset *op;
4443 uint16_t qc;
4444 uint16_t ret = ctx->ifc_sysctl_core_offset;
4445
4446 if (ret != CORE_OFFSET_UNSPECIFIED)
4447 return (ret);
4448
4449 if (ctx->ifc_sysctl_separate_txrx)
4450 qc = scctx->isc_ntxqsets + scctx->isc_nrxqsets;
4451 else
4452 qc = max(scctx->isc_ntxqsets, scctx->isc_nrxqsets);
4453
4454 mtx_lock(&cpu_offset_mtx);
4455 SLIST_FOREACH(op, &cpu_offsets, entries) {
4456 if (CPU_CMP(&ctx->ifc_cpus, &op->set) == 0) {
4457 ret = op->offset;
4458 op->offset += qc;
4459 MPASS(op->refcount < UINT_MAX);
4460 op->refcount++;
4461 break;
4462 }
4463 }
4464 if (ret == CORE_OFFSET_UNSPECIFIED) {
4465 ret = 0;
4466 op = malloc(sizeof(struct cpu_offset), M_IFLIB,
4467 M_NOWAIT | M_ZERO);
4468 if (op == NULL) {
4469 device_printf(ctx->ifc_dev,
4470 "allocation for cpu offset failed.\n");
4471 } else {
4472 op->offset = qc;
4473 op->refcount = 1;
4474 CPU_COPY(&ctx->ifc_cpus, &op->set);
4475 SLIST_INSERT_HEAD(&cpu_offsets, op, entries);
4476 }
4477 }
4478 mtx_unlock(&cpu_offset_mtx);
4479
4480 return (ret);
4481 }
4482
4483 static void
unref_ctx_core_offset(if_ctx_t ctx)4484 unref_ctx_core_offset(if_ctx_t ctx)
4485 {
4486 struct cpu_offset *op, *top;
4487
4488 mtx_lock(&cpu_offset_mtx);
4489 SLIST_FOREACH_SAFE(op, &cpu_offsets, entries, top) {
4490 if (CPU_CMP(&ctx->ifc_cpus, &op->set) == 0) {
4491 MPASS(op->refcount > 0);
4492 op->refcount--;
4493 if (op->refcount == 0) {
4494 SLIST_REMOVE(&cpu_offsets, op, cpu_offset, entries);
4495 free(op, M_IFLIB);
4496 }
4497 break;
4498 }
4499 }
4500 mtx_unlock(&cpu_offset_mtx);
4501 }
4502
4503 int
iflib_device_register(device_t dev,void * sc,if_shared_ctx_t sctx,if_ctx_t * ctxp)4504 iflib_device_register(device_t dev, void *sc, if_shared_ctx_t sctx, if_ctx_t *ctxp)
4505 {
4506 if_ctx_t ctx;
4507 if_t ifp;
4508 if_softc_ctx_t scctx;
4509 kobjop_desc_t kobj_desc;
4510 kobj_method_t *kobj_method;
4511 int err, msix, rid;
4512 uint16_t main_rxq, main_txq;
4513
4514 ctx = malloc(sizeof(* ctx), M_IFLIB, M_WAITOK|M_ZERO);
4515
4516 if (sc == NULL) {
4517 sc = malloc(sctx->isc_driver->size, M_IFLIB, M_WAITOK|M_ZERO);
4518 device_set_softc(dev, ctx);
4519 ctx->ifc_flags |= IFC_SC_ALLOCATED;
4520 }
4521
4522 ctx->ifc_sctx = sctx;
4523 ctx->ifc_dev = dev;
4524 ctx->ifc_softc = sc;
4525
4526 if ((err = iflib_register(ctx)) != 0) {
4527 device_printf(dev, "iflib_register failed %d\n", err);
4528 goto fail_ctx_free;
4529 }
4530 iflib_add_device_sysctl_pre(ctx);
4531
4532 scctx = &ctx->ifc_softc_ctx;
4533 ifp = ctx->ifc_ifp;
4534
4535 iflib_reset_qvalues(ctx);
4536 CTX_LOCK(ctx);
4537 if ((err = IFDI_ATTACH_PRE(ctx)) != 0) {
4538 device_printf(dev, "IFDI_ATTACH_PRE failed %d\n", err);
4539 goto fail_unlock;
4540 }
4541 _iflib_pre_assert(scctx);
4542 ctx->ifc_txrx = *scctx->isc_txrx;
4543
4544 #ifdef INVARIANTS
4545 if (scctx->isc_capabilities & IFCAP_TXCSUM)
4546 MPASS(scctx->isc_tx_csum_flags);
4547 #endif
4548
4549 if_setcapabilities(ifp, scctx->isc_capabilities | IFCAP_HWSTATS);
4550 if_setcapenable(ifp, scctx->isc_capenable | IFCAP_HWSTATS);
4551
4552 if (scctx->isc_ntxqsets == 0 || (scctx->isc_ntxqsets_max && scctx->isc_ntxqsets_max < scctx->isc_ntxqsets))
4553 scctx->isc_ntxqsets = scctx->isc_ntxqsets_max;
4554 if (scctx->isc_nrxqsets == 0 || (scctx->isc_nrxqsets_max && scctx->isc_nrxqsets_max < scctx->isc_nrxqsets))
4555 scctx->isc_nrxqsets = scctx->isc_nrxqsets_max;
4556
4557 main_txq = (sctx->isc_flags & IFLIB_HAS_TXCQ) ? 1 : 0;
4558 main_rxq = (sctx->isc_flags & IFLIB_HAS_RXCQ) ? 1 : 0;
4559
4560 /* XXX change for per-queue sizes */
4561 device_printf(dev, "Using %d TX descriptors and %d RX descriptors\n",
4562 scctx->isc_ntxd[main_txq], scctx->isc_nrxd[main_rxq]);
4563
4564 if (scctx->isc_tx_nsegments > scctx->isc_ntxd[main_txq] /
4565 MAX_SINGLE_PACKET_FRACTION)
4566 scctx->isc_tx_nsegments = max(1, scctx->isc_ntxd[main_txq] /
4567 MAX_SINGLE_PACKET_FRACTION);
4568 if (scctx->isc_tx_tso_segments_max > scctx->isc_ntxd[main_txq] /
4569 MAX_SINGLE_PACKET_FRACTION)
4570 scctx->isc_tx_tso_segments_max = max(1,
4571 scctx->isc_ntxd[main_txq] / MAX_SINGLE_PACKET_FRACTION);
4572
4573 /* TSO parameters - dig these out of the data sheet - simply correspond to tag setup */
4574 if (if_getcapabilities(ifp) & IFCAP_TSO) {
4575 /*
4576 * The stack can't handle a TSO size larger than IP_MAXPACKET,
4577 * but some MACs do.
4578 */
4579 if_sethwtsomax(ifp, min(scctx->isc_tx_tso_size_max,
4580 IP_MAXPACKET));
4581 /*
4582 * Take maximum number of m_pullup(9)'s in iflib_parse_header()
4583 * into account. In the worst case, each of these calls will
4584 * add another mbuf and, thus, the requirement for another DMA
4585 * segment. So for best performance, it doesn't make sense to
4586 * advertize a maximum of TSO segments that typically will
4587 * require defragmentation in iflib_encap().
4588 */
4589 if_sethwtsomaxsegcount(ifp, scctx->isc_tx_tso_segments_max - 3);
4590 if_sethwtsomaxsegsize(ifp, scctx->isc_tx_tso_segsize_max);
4591 }
4592 if (scctx->isc_rss_table_size == 0)
4593 scctx->isc_rss_table_size = 64;
4594 scctx->isc_rss_table_mask = scctx->isc_rss_table_size-1;
4595
4596 GROUPTASK_INIT(&ctx->ifc_admin_task, 0, _task_fn_admin, ctx);
4597 /* XXX format name */
4598 taskqgroup_attach(qgroup_if_config_tqg, &ctx->ifc_admin_task, ctx,
4599 -1, "admin");
4600
4601 /* Set up cpu set. If it fails, use the set of all CPUs. */
4602 if (bus_get_cpus(dev, INTR_CPUS, sizeof(ctx->ifc_cpus), &ctx->ifc_cpus) != 0) {
4603 device_printf(dev, "Unable to fetch CPU list\n");
4604 CPU_COPY(&all_cpus, &ctx->ifc_cpus);
4605 }
4606 MPASS(CPU_COUNT(&ctx->ifc_cpus) > 0);
4607
4608 /*
4609 ** Now set up MSI or MSI-X, should return us the number of supported
4610 ** vectors (will be 1 for a legacy interrupt and MSI).
4611 */
4612 if (sctx->isc_flags & IFLIB_SKIP_MSIX) {
4613 msix = scctx->isc_vectors;
4614 } else if (scctx->isc_msix_bar != 0)
4615 /*
4616 * The simple fact that isc_msix_bar is not 0 does not mean we
4617 * we have a good value there that is known to work.
4618 */
4619 msix = iflib_msix_init(ctx);
4620 else {
4621 scctx->isc_vectors = 1;
4622 scctx->isc_ntxqsets = 1;
4623 scctx->isc_nrxqsets = 1;
4624 scctx->isc_intr = IFLIB_INTR_LEGACY;
4625 msix = 0;
4626 }
4627 /* Get memory for the station queues */
4628 if ((err = iflib_queues_alloc(ctx))) {
4629 device_printf(dev, "Unable to allocate queue memory\n");
4630 goto fail_intr_free;
4631 }
4632
4633 if ((err = iflib_qset_structures_setup(ctx)))
4634 goto fail_queues;
4635
4636 /*
4637 * Now that we know how many queues there are, get the core offset.
4638 */
4639 ctx->ifc_sysctl_core_offset = get_ctx_core_offset(ctx);
4640
4641 /*
4642 * Group taskqueues aren't properly set up until SMP is started,
4643 * so we disable interrupts until we can handle them post
4644 * SI_SUB_SMP.
4645 *
4646 * XXX: disabling interrupts doesn't actually work, at least for
4647 * the non-MSI case. When they occur before SI_SUB_SMP completes,
4648 * we do null handling and depend on this not causing too large an
4649 * interrupt storm.
4650 */
4651 IFDI_INTR_DISABLE(ctx);
4652
4653 if (msix > 1) {
4654 /*
4655 * When using MSI-X, ensure that ifdi_{r,t}x_queue_intr_enable
4656 * aren't the default NULL implementation.
4657 */
4658 kobj_desc = &ifdi_rx_queue_intr_enable_desc;
4659 kobj_method = kobj_lookup_method(((kobj_t)ctx)->ops->cls, NULL,
4660 kobj_desc);
4661 if (kobj_method == &kobj_desc->deflt) {
4662 device_printf(dev,
4663 "MSI-X requires ifdi_rx_queue_intr_enable method");
4664 err = EOPNOTSUPP;
4665 goto fail_queues;
4666 }
4667 kobj_desc = &ifdi_tx_queue_intr_enable_desc;
4668 kobj_method = kobj_lookup_method(((kobj_t)ctx)->ops->cls, NULL,
4669 kobj_desc);
4670 if (kobj_method == &kobj_desc->deflt) {
4671 device_printf(dev,
4672 "MSI-X requires ifdi_tx_queue_intr_enable method");
4673 err = EOPNOTSUPP;
4674 goto fail_queues;
4675 }
4676
4677 /*
4678 * Assign the MSI-X vectors.
4679 * Note that the default NULL ifdi_msix_intr_assign method will
4680 * fail here, too.
4681 */
4682 err = IFDI_MSIX_INTR_ASSIGN(ctx, msix);
4683 if (err != 0) {
4684 device_printf(dev, "IFDI_MSIX_INTR_ASSIGN failed %d\n",
4685 err);
4686 goto fail_queues;
4687 }
4688 } else if (scctx->isc_intr != IFLIB_INTR_MSIX) {
4689 rid = 0;
4690 if (scctx->isc_intr == IFLIB_INTR_MSI) {
4691 MPASS(msix == 1);
4692 rid = 1;
4693 }
4694 if ((err = iflib_legacy_setup(ctx, ctx->isc_legacy_intr, ctx->ifc_softc, &rid, "irq0")) != 0) {
4695 device_printf(dev, "iflib_legacy_setup failed %d\n", err);
4696 goto fail_queues;
4697 }
4698 } else {
4699 device_printf(dev,
4700 "Cannot use iflib with only 1 MSI-X interrupt!\n");
4701 err = ENODEV;
4702 goto fail_intr_free;
4703 }
4704
4705 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac);
4706
4707 if ((err = IFDI_ATTACH_POST(ctx)) != 0) {
4708 device_printf(dev, "IFDI_ATTACH_POST failed %d\n", err);
4709 goto fail_detach;
4710 }
4711
4712 /*
4713 * Tell the upper layer(s) if IFCAP_VLAN_MTU is supported.
4714 * This must appear after the call to ether_ifattach() because
4715 * ether_ifattach() sets if_hdrlen to the default value.
4716 */
4717 if (if_getcapabilities(ifp) & IFCAP_VLAN_MTU)
4718 if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
4719
4720 if ((err = iflib_netmap_attach(ctx))) {
4721 device_printf(ctx->ifc_dev, "netmap attach failed: %d\n", err);
4722 goto fail_detach;
4723 }
4724 *ctxp = ctx;
4725
4726 NETDUMP_SET(ctx->ifc_ifp, iflib);
4727
4728 if_setgetcounterfn(ctx->ifc_ifp, iflib_if_get_counter);
4729 iflib_add_device_sysctl_post(ctx);
4730 ctx->ifc_flags |= IFC_INIT_DONE;
4731 CTX_UNLOCK(ctx);
4732
4733 return (0);
4734
4735 fail_detach:
4736 ether_ifdetach(ctx->ifc_ifp);
4737 fail_intr_free:
4738 iflib_free_intr_mem(ctx);
4739 fail_queues:
4740 iflib_tx_structures_free(ctx);
4741 iflib_rx_structures_free(ctx);
4742 taskqgroup_detach(qgroup_if_config_tqg, &ctx->ifc_admin_task);
4743 IFDI_DETACH(ctx);
4744 fail_unlock:
4745 CTX_UNLOCK(ctx);
4746 iflib_deregister(ctx);
4747 fail_ctx_free:
4748 device_set_softc(ctx->ifc_dev, NULL);
4749 if (ctx->ifc_flags & IFC_SC_ALLOCATED)
4750 free(ctx->ifc_softc, M_IFLIB);
4751 free(ctx, M_IFLIB);
4752 return (err);
4753 }
4754
4755 int
iflib_pseudo_register(device_t dev,if_shared_ctx_t sctx,if_ctx_t * ctxp,struct iflib_cloneattach_ctx * clctx)4756 iflib_pseudo_register(device_t dev, if_shared_ctx_t sctx, if_ctx_t *ctxp,
4757 struct iflib_cloneattach_ctx *clctx)
4758 {
4759 int err;
4760 if_ctx_t ctx;
4761 if_t ifp;
4762 if_softc_ctx_t scctx;
4763 int i;
4764 void *sc;
4765 uint16_t main_txq;
4766 uint16_t main_rxq;
4767
4768 ctx = malloc(sizeof(*ctx), M_IFLIB, M_WAITOK|M_ZERO);
4769 sc = malloc(sctx->isc_driver->size, M_IFLIB, M_WAITOK|M_ZERO);
4770 ctx->ifc_flags |= IFC_SC_ALLOCATED;
4771 if (sctx->isc_flags & (IFLIB_PSEUDO|IFLIB_VIRTUAL))
4772 ctx->ifc_flags |= IFC_PSEUDO;
4773
4774 ctx->ifc_sctx = sctx;
4775 ctx->ifc_softc = sc;
4776 ctx->ifc_dev = dev;
4777
4778 if ((err = iflib_register(ctx)) != 0) {
4779 device_printf(dev, "%s: iflib_register failed %d\n", __func__, err);
4780 goto fail_ctx_free;
4781 }
4782 iflib_add_device_sysctl_pre(ctx);
4783
4784 scctx = &ctx->ifc_softc_ctx;
4785 ifp = ctx->ifc_ifp;
4786
4787 iflib_reset_qvalues(ctx);
4788 CTX_LOCK(ctx);
4789 if ((err = IFDI_ATTACH_PRE(ctx)) != 0) {
4790 device_printf(dev, "IFDI_ATTACH_PRE failed %d\n", err);
4791 goto fail_unlock;
4792 }
4793 if (sctx->isc_flags & IFLIB_GEN_MAC)
4794 iflib_gen_mac(ctx);
4795 if ((err = IFDI_CLONEATTACH(ctx, clctx->cc_ifc, clctx->cc_name,
4796 clctx->cc_params)) != 0) {
4797 device_printf(dev, "IFDI_CLONEATTACH failed %d\n", err);
4798 goto fail_ctx_free;
4799 }
4800 ifmedia_add(&ctx->ifc_media, IFM_ETHER | IFM_1000_T | IFM_FDX, 0, NULL);
4801 ifmedia_add(&ctx->ifc_media, IFM_ETHER | IFM_AUTO, 0, NULL);
4802 ifmedia_set(&ctx->ifc_media, IFM_ETHER | IFM_AUTO);
4803
4804 #ifdef INVARIANTS
4805 if (scctx->isc_capabilities & IFCAP_TXCSUM)
4806 MPASS(scctx->isc_tx_csum_flags);
4807 #endif
4808
4809 if_setcapabilities(ifp, scctx->isc_capabilities | IFCAP_HWSTATS | IFCAP_LINKSTATE);
4810 if_setcapenable(ifp, scctx->isc_capenable | IFCAP_HWSTATS | IFCAP_LINKSTATE);
4811
4812 ifp->if_flags |= IFF_NOGROUP;
4813 if (sctx->isc_flags & IFLIB_PSEUDO) {
4814 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac);
4815
4816 if ((err = IFDI_ATTACH_POST(ctx)) != 0) {
4817 device_printf(dev, "IFDI_ATTACH_POST failed %d\n", err);
4818 goto fail_detach;
4819 }
4820 *ctxp = ctx;
4821
4822 /*
4823 * Tell the upper layer(s) if IFCAP_VLAN_MTU is supported.
4824 * This must appear after the call to ether_ifattach() because
4825 * ether_ifattach() sets if_hdrlen to the default value.
4826 */
4827 if (if_getcapabilities(ifp) & IFCAP_VLAN_MTU)
4828 if_setifheaderlen(ifp,
4829 sizeof(struct ether_vlan_header));
4830
4831 if_setgetcounterfn(ctx->ifc_ifp, iflib_if_get_counter);
4832 iflib_add_device_sysctl_post(ctx);
4833 ctx->ifc_flags |= IFC_INIT_DONE;
4834 return (0);
4835 }
4836 _iflib_pre_assert(scctx);
4837 ctx->ifc_txrx = *scctx->isc_txrx;
4838
4839 if (scctx->isc_ntxqsets == 0 || (scctx->isc_ntxqsets_max && scctx->isc_ntxqsets_max < scctx->isc_ntxqsets))
4840 scctx->isc_ntxqsets = scctx->isc_ntxqsets_max;
4841 if (scctx->isc_nrxqsets == 0 || (scctx->isc_nrxqsets_max && scctx->isc_nrxqsets_max < scctx->isc_nrxqsets))
4842 scctx->isc_nrxqsets = scctx->isc_nrxqsets_max;
4843
4844 main_txq = (sctx->isc_flags & IFLIB_HAS_TXCQ) ? 1 : 0;
4845 main_rxq = (sctx->isc_flags & IFLIB_HAS_RXCQ) ? 1 : 0;
4846
4847 /* XXX change for per-queue sizes */
4848 device_printf(dev, "Using %d TX descriptors and %d RX descriptors\n",
4849 scctx->isc_ntxd[main_txq], scctx->isc_nrxd[main_rxq]);
4850
4851 if (scctx->isc_tx_nsegments > scctx->isc_ntxd[main_txq] /
4852 MAX_SINGLE_PACKET_FRACTION)
4853 scctx->isc_tx_nsegments = max(1, scctx->isc_ntxd[main_txq] /
4854 MAX_SINGLE_PACKET_FRACTION);
4855 if (scctx->isc_tx_tso_segments_max > scctx->isc_ntxd[main_txq] /
4856 MAX_SINGLE_PACKET_FRACTION)
4857 scctx->isc_tx_tso_segments_max = max(1,
4858 scctx->isc_ntxd[main_txq] / MAX_SINGLE_PACKET_FRACTION);
4859
4860 /* TSO parameters - dig these out of the data sheet - simply correspond to tag setup */
4861 if (if_getcapabilities(ifp) & IFCAP_TSO) {
4862 /*
4863 * The stack can't handle a TSO size larger than IP_MAXPACKET,
4864 * but some MACs do.
4865 */
4866 if_sethwtsomax(ifp, min(scctx->isc_tx_tso_size_max,
4867 IP_MAXPACKET));
4868 /*
4869 * Take maximum number of m_pullup(9)'s in iflib_parse_header()
4870 * into account. In the worst case, each of these calls will
4871 * add another mbuf and, thus, the requirement for another DMA
4872 * segment. So for best performance, it doesn't make sense to
4873 * advertize a maximum of TSO segments that typically will
4874 * require defragmentation in iflib_encap().
4875 */
4876 if_sethwtsomaxsegcount(ifp, scctx->isc_tx_tso_segments_max - 3);
4877 if_sethwtsomaxsegsize(ifp, scctx->isc_tx_tso_segsize_max);
4878 }
4879 if (scctx->isc_rss_table_size == 0)
4880 scctx->isc_rss_table_size = 64;
4881 scctx->isc_rss_table_mask = scctx->isc_rss_table_size-1;
4882
4883 GROUPTASK_INIT(&ctx->ifc_admin_task, 0, _task_fn_admin, ctx);
4884 /* XXX format name */
4885 taskqgroup_attach(qgroup_if_config_tqg, &ctx->ifc_admin_task, ctx,
4886 -1, "admin");
4887
4888 /* XXX --- can support > 1 -- but keep it simple for now */
4889 scctx->isc_intr = IFLIB_INTR_LEGACY;
4890
4891 /* Get memory for the station queues */
4892 if ((err = iflib_queues_alloc(ctx))) {
4893 device_printf(dev, "Unable to allocate queue memory\n");
4894 goto fail_iflib_detach;
4895 }
4896
4897 if ((err = iflib_qset_structures_setup(ctx))) {
4898 device_printf(dev, "qset structure setup failed %d\n", err);
4899 goto fail_queues;
4900 }
4901
4902 /*
4903 * XXX What if anything do we want to do about interrupts?
4904 */
4905 ether_ifattach(ctx->ifc_ifp, ctx->ifc_mac);
4906 if ((err = IFDI_ATTACH_POST(ctx)) != 0) {
4907 device_printf(dev, "IFDI_ATTACH_POST failed %d\n", err);
4908 goto fail_detach;
4909 }
4910
4911 /*
4912 * Tell the upper layer(s) if IFCAP_VLAN_MTU is supported.
4913 * This must appear after the call to ether_ifattach() because
4914 * ether_ifattach() sets if_hdrlen to the default value.
4915 */
4916 if (if_getcapabilities(ifp) & IFCAP_VLAN_MTU)
4917 if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
4918
4919 /* XXX handle more than one queue */
4920 for (i = 0; i < scctx->isc_nrxqsets; i++)
4921 IFDI_RX_CLSET(ctx, 0, i, ctx->ifc_rxqs[i].ifr_fl[0].ifl_sds.ifsd_cl);
4922
4923 *ctxp = ctx;
4924
4925 if_setgetcounterfn(ctx->ifc_ifp, iflib_if_get_counter);
4926 iflib_add_device_sysctl_post(ctx);
4927 ctx->ifc_flags |= IFC_INIT_DONE;
4928 CTX_UNLOCK(ctx);
4929
4930 return (0);
4931 fail_detach:
4932 ether_ifdetach(ctx->ifc_ifp);
4933 fail_queues:
4934 iflib_tx_structures_free(ctx);
4935 iflib_rx_structures_free(ctx);
4936 fail_iflib_detach:
4937 IFDI_DETACH(ctx);
4938 fail_unlock:
4939 CTX_UNLOCK(ctx);
4940 iflib_deregister(ctx);
4941 fail_ctx_free:
4942 free(ctx->ifc_softc, M_IFLIB);
4943 free(ctx, M_IFLIB);
4944 return (err);
4945 }
4946
4947 int
iflib_pseudo_deregister(if_ctx_t ctx)4948 iflib_pseudo_deregister(if_ctx_t ctx)
4949 {
4950 if_t ifp = ctx->ifc_ifp;
4951 iflib_txq_t txq;
4952 iflib_rxq_t rxq;
4953 int i, j;
4954 struct taskqgroup *tqg;
4955 iflib_fl_t fl;
4956
4957 ether_ifdetach(ifp);
4958 /* XXX drain any dependent tasks */
4959 tqg = qgroup_if_io_tqg;
4960 for (txq = ctx->ifc_txqs, i = 0; i < NTXQSETS(ctx); i++, txq++) {
4961 callout_drain(&txq->ift_timer);
4962 if (txq->ift_task.gt_uniq != NULL)
4963 taskqgroup_detach(tqg, &txq->ift_task);
4964 }
4965 for (i = 0, rxq = ctx->ifc_rxqs; i < NRXQSETS(ctx); i++, rxq++) {
4966 if (rxq->ifr_task.gt_uniq != NULL)
4967 taskqgroup_detach(tqg, &rxq->ifr_task);
4968
4969 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
4970 free(fl->ifl_rx_bitmap, M_IFLIB);
4971 }
4972 tqg = qgroup_if_config_tqg;
4973 if (ctx->ifc_admin_task.gt_uniq != NULL)
4974 taskqgroup_detach(tqg, &ctx->ifc_admin_task);
4975 if (ctx->ifc_vflr_task.gt_uniq != NULL)
4976 taskqgroup_detach(tqg, &ctx->ifc_vflr_task);
4977
4978 iflib_tx_structures_free(ctx);
4979 iflib_rx_structures_free(ctx);
4980
4981 iflib_deregister(ctx);
4982
4983 if (ctx->ifc_flags & IFC_SC_ALLOCATED)
4984 free(ctx->ifc_softc, M_IFLIB);
4985 free(ctx, M_IFLIB);
4986 return (0);
4987 }
4988
4989 int
iflib_device_attach(device_t dev)4990 iflib_device_attach(device_t dev)
4991 {
4992 if_ctx_t ctx;
4993 if_shared_ctx_t sctx;
4994
4995 if ((sctx = DEVICE_REGISTER(dev)) == NULL || sctx->isc_magic != IFLIB_MAGIC)
4996 return (ENOTSUP);
4997
4998 pci_enable_busmaster(dev);
4999
5000 return (iflib_device_register(dev, NULL, sctx, &ctx));
5001 }
5002
5003 int
iflib_device_deregister(if_ctx_t ctx)5004 iflib_device_deregister(if_ctx_t ctx)
5005 {
5006 if_t ifp = ctx->ifc_ifp;
5007 iflib_txq_t txq;
5008 iflib_rxq_t rxq;
5009 device_t dev = ctx->ifc_dev;
5010 int i, j;
5011 struct taskqgroup *tqg;
5012 iflib_fl_t fl;
5013
5014 /* Make sure VLANS are not using driver */
5015 if (if_vlantrunkinuse(ifp)) {
5016 device_printf(dev, "Vlan in use, detach first\n");
5017 return (EBUSY);
5018 }
5019 #ifdef PCI_IOV
5020 if (!CTX_IS_VF(ctx) && pci_iov_detach(dev) != 0) {
5021 device_printf(dev, "SR-IOV in use; detach first.\n");
5022 return (EBUSY);
5023 }
5024 #endif
5025
5026 STATE_LOCK(ctx);
5027 ctx->ifc_flags |= IFC_IN_DETACH;
5028 STATE_UNLOCK(ctx);
5029
5030 CTX_LOCK(ctx);
5031 iflib_stop(ctx);
5032 CTX_UNLOCK(ctx);
5033
5034 iflib_netmap_detach(ifp);
5035 ether_ifdetach(ifp);
5036 if (ctx->ifc_led_dev != NULL)
5037 led_destroy(ctx->ifc_led_dev);
5038 /* XXX drain any dependent tasks */
5039 tqg = qgroup_if_io_tqg;
5040 for (txq = ctx->ifc_txqs, i = 0; i < NTXQSETS(ctx); i++, txq++) {
5041 callout_drain(&txq->ift_timer);
5042 if (txq->ift_task.gt_uniq != NULL)
5043 taskqgroup_detach(tqg, &txq->ift_task);
5044 }
5045 for (i = 0, rxq = ctx->ifc_rxqs; i < NRXQSETS(ctx); i++, rxq++) {
5046 if (rxq->ifr_task.gt_uniq != NULL)
5047 taskqgroup_detach(tqg, &rxq->ifr_task);
5048
5049 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
5050 free(fl->ifl_rx_bitmap, M_IFLIB);
5051 }
5052 tqg = qgroup_if_config_tqg;
5053 if (ctx->ifc_admin_task.gt_uniq != NULL)
5054 taskqgroup_detach(tqg, &ctx->ifc_admin_task);
5055 if (ctx->ifc_vflr_task.gt_uniq != NULL)
5056 taskqgroup_detach(tqg, &ctx->ifc_vflr_task);
5057 CTX_LOCK(ctx);
5058 IFDI_DETACH(ctx);
5059 CTX_UNLOCK(ctx);
5060
5061 /* ether_ifdetach calls if_qflush - lock must be destroy afterwards*/
5062 iflib_free_intr_mem(ctx);
5063
5064 bus_generic_detach(dev);
5065
5066 iflib_tx_structures_free(ctx);
5067 iflib_rx_structures_free(ctx);
5068
5069 iflib_deregister(ctx);
5070
5071 device_set_softc(ctx->ifc_dev, NULL);
5072 if (ctx->ifc_flags & IFC_SC_ALLOCATED)
5073 free(ctx->ifc_softc, M_IFLIB);
5074 unref_ctx_core_offset(ctx);
5075 free(ctx, M_IFLIB);
5076 return (0);
5077 }
5078
5079 static void
iflib_free_intr_mem(if_ctx_t ctx)5080 iflib_free_intr_mem(if_ctx_t ctx)
5081 {
5082
5083 if (ctx->ifc_softc_ctx.isc_intr != IFLIB_INTR_MSIX) {
5084 iflib_irq_free(ctx, &ctx->ifc_legacy_irq);
5085 }
5086 if (ctx->ifc_softc_ctx.isc_intr != IFLIB_INTR_LEGACY) {
5087 pci_release_msi(ctx->ifc_dev);
5088 }
5089 if (ctx->ifc_msix_mem != NULL) {
5090 bus_release_resource(ctx->ifc_dev, SYS_RES_MEMORY,
5091 rman_get_rid(ctx->ifc_msix_mem), ctx->ifc_msix_mem);
5092 ctx->ifc_msix_mem = NULL;
5093 }
5094 }
5095
5096 int
iflib_device_detach(device_t dev)5097 iflib_device_detach(device_t dev)
5098 {
5099 if_ctx_t ctx = device_get_softc(dev);
5100
5101 return (iflib_device_deregister(ctx));
5102 }
5103
5104 int
iflib_device_suspend(device_t dev)5105 iflib_device_suspend(device_t dev)
5106 {
5107 if_ctx_t ctx = device_get_softc(dev);
5108
5109 CTX_LOCK(ctx);
5110 IFDI_SUSPEND(ctx);
5111 CTX_UNLOCK(ctx);
5112
5113 return bus_generic_suspend(dev);
5114 }
5115 int
iflib_device_shutdown(device_t dev)5116 iflib_device_shutdown(device_t dev)
5117 {
5118 if_ctx_t ctx = device_get_softc(dev);
5119
5120 CTX_LOCK(ctx);
5121 IFDI_SHUTDOWN(ctx);
5122 CTX_UNLOCK(ctx);
5123
5124 return bus_generic_suspend(dev);
5125 }
5126
5127
5128 int
iflib_device_resume(device_t dev)5129 iflib_device_resume(device_t dev)
5130 {
5131 if_ctx_t ctx = device_get_softc(dev);
5132 iflib_txq_t txq = ctx->ifc_txqs;
5133
5134 CTX_LOCK(ctx);
5135 IFDI_RESUME(ctx);
5136 iflib_if_init_locked(ctx);
5137 CTX_UNLOCK(ctx);
5138 for (int i = 0; i < NTXQSETS(ctx); i++, txq++)
5139 iflib_txq_check_drain(txq, IFLIB_RESTART_BUDGET);
5140
5141 return (bus_generic_resume(dev));
5142 }
5143
5144 int
iflib_device_iov_init(device_t dev,uint16_t num_vfs,const nvlist_t * params)5145 iflib_device_iov_init(device_t dev, uint16_t num_vfs, const nvlist_t *params)
5146 {
5147 int error;
5148 if_ctx_t ctx = device_get_softc(dev);
5149
5150 CTX_LOCK(ctx);
5151 error = IFDI_IOV_INIT(ctx, num_vfs, params);
5152 CTX_UNLOCK(ctx);
5153
5154 return (error);
5155 }
5156
5157 void
iflib_device_iov_uninit(device_t dev)5158 iflib_device_iov_uninit(device_t dev)
5159 {
5160 if_ctx_t ctx = device_get_softc(dev);
5161
5162 CTX_LOCK(ctx);
5163 IFDI_IOV_UNINIT(ctx);
5164 CTX_UNLOCK(ctx);
5165 }
5166
5167 int
iflib_device_iov_add_vf(device_t dev,uint16_t vfnum,const nvlist_t * params)5168 iflib_device_iov_add_vf(device_t dev, uint16_t vfnum, const nvlist_t *params)
5169 {
5170 int error;
5171 if_ctx_t ctx = device_get_softc(dev);
5172
5173 CTX_LOCK(ctx);
5174 error = IFDI_IOV_VF_ADD(ctx, vfnum, params);
5175 CTX_UNLOCK(ctx);
5176
5177 return (error);
5178 }
5179
5180 /*********************************************************************
5181 *
5182 * MODULE FUNCTION DEFINITIONS
5183 *
5184 **********************************************************************/
5185
5186 /*
5187 * - Start a fast taskqueue thread for each core
5188 * - Start a taskqueue for control operations
5189 */
5190 static int
iflib_module_init(void)5191 iflib_module_init(void)
5192 {
5193 return (0);
5194 }
5195
5196 static int
iflib_module_event_handler(module_t mod,int what,void * arg)5197 iflib_module_event_handler(module_t mod, int what, void *arg)
5198 {
5199 int err;
5200
5201 switch (what) {
5202 case MOD_LOAD:
5203 if ((err = iflib_module_init()) != 0)
5204 return (err);
5205 break;
5206 case MOD_UNLOAD:
5207 return (EBUSY);
5208 default:
5209 return (EOPNOTSUPP);
5210 }
5211
5212 return (0);
5213 }
5214
5215 /*********************************************************************
5216 *
5217 * PUBLIC FUNCTION DEFINITIONS
5218 * ordered as in iflib.h
5219 *
5220 **********************************************************************/
5221
5222
5223 static void
_iflib_assert(if_shared_ctx_t sctx)5224 _iflib_assert(if_shared_ctx_t sctx)
5225 {
5226 int i;
5227
5228 MPASS(sctx->isc_tx_maxsize);
5229 MPASS(sctx->isc_tx_maxsegsize);
5230
5231 MPASS(sctx->isc_rx_maxsize);
5232 MPASS(sctx->isc_rx_nsegments);
5233 MPASS(sctx->isc_rx_maxsegsize);
5234
5235 MPASS(sctx->isc_nrxqs >= 1 && sctx->isc_nrxqs <= 8);
5236 for (i = 0; i < sctx->isc_nrxqs; i++) {
5237 MPASS(sctx->isc_nrxd_min[i]);
5238 MPASS(powerof2(sctx->isc_nrxd_min[i]));
5239 MPASS(sctx->isc_nrxd_max[i]);
5240 MPASS(powerof2(sctx->isc_nrxd_max[i]));
5241 MPASS(sctx->isc_nrxd_default[i]);
5242 MPASS(powerof2(sctx->isc_nrxd_default[i]));
5243 }
5244
5245 MPASS(sctx->isc_ntxqs >= 1 && sctx->isc_ntxqs <= 8);
5246 for (i = 0; i < sctx->isc_ntxqs; i++) {
5247 MPASS(sctx->isc_ntxd_min[i]);
5248 MPASS(powerof2(sctx->isc_ntxd_min[i]));
5249 MPASS(sctx->isc_ntxd_max[i]);
5250 MPASS(powerof2(sctx->isc_ntxd_max[i]));
5251 MPASS(sctx->isc_ntxd_default[i]);
5252 MPASS(powerof2(sctx->isc_ntxd_default[i]));
5253 }
5254 }
5255
5256 static void
_iflib_pre_assert(if_softc_ctx_t scctx)5257 _iflib_pre_assert(if_softc_ctx_t scctx)
5258 {
5259
5260 MPASS(scctx->isc_txrx->ift_txd_encap);
5261 MPASS(scctx->isc_txrx->ift_txd_flush);
5262 MPASS(scctx->isc_txrx->ift_txd_credits_update);
5263 MPASS(scctx->isc_txrx->ift_rxd_available);
5264 MPASS(scctx->isc_txrx->ift_rxd_pkt_get);
5265 MPASS(scctx->isc_txrx->ift_rxd_refill);
5266 MPASS(scctx->isc_txrx->ift_rxd_flush);
5267 }
5268
5269 static int
iflib_register(if_ctx_t ctx)5270 iflib_register(if_ctx_t ctx)
5271 {
5272 if_shared_ctx_t sctx = ctx->ifc_sctx;
5273 driver_t *driver = sctx->isc_driver;
5274 device_t dev = ctx->ifc_dev;
5275 if_t ifp;
5276
5277 _iflib_assert(sctx);
5278
5279 CTX_LOCK_INIT(ctx);
5280 STATE_LOCK_INIT(ctx, device_get_nameunit(ctx->ifc_dev));
5281 ifp = ctx->ifc_ifp = if_alloc(IFT_ETHER);
5282 if (ifp == NULL) {
5283 device_printf(dev, "can not allocate ifnet structure\n");
5284 return (ENOMEM);
5285 }
5286
5287 /*
5288 * Initialize our context's device specific methods
5289 */
5290 kobj_init((kobj_t) ctx, (kobj_class_t) driver);
5291 kobj_class_compile((kobj_class_t) driver);
5292
5293 if_initname(ifp, device_get_name(dev), device_get_unit(dev));
5294 if_setsoftc(ifp, ctx);
5295 if_setdev(ifp, dev);
5296 if_setinitfn(ifp, iflib_if_init);
5297 if_setioctlfn(ifp, iflib_if_ioctl);
5298 #ifdef ALTQ
5299 if_setstartfn(ifp, iflib_altq_if_start);
5300 if_settransmitfn(ifp, iflib_altq_if_transmit);
5301 if_setsendqready(ifp);
5302 #else
5303 if_settransmitfn(ifp, iflib_if_transmit);
5304 #endif
5305 if_setqflushfn(ifp, iflib_if_qflush);
5306 if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
5307
5308 ctx->ifc_vlan_attach_event =
5309 EVENTHANDLER_REGISTER(vlan_config, iflib_vlan_register, ctx,
5310 EVENTHANDLER_PRI_FIRST);
5311 ctx->ifc_vlan_detach_event =
5312 EVENTHANDLER_REGISTER(vlan_unconfig, iflib_vlan_unregister, ctx,
5313 EVENTHANDLER_PRI_FIRST);
5314
5315 ifmedia_init(&ctx->ifc_media, IFM_IMASK,
5316 iflib_media_change, iflib_media_status);
5317
5318 return (0);
5319 }
5320
5321 static void
iflib_deregister(if_ctx_t ctx)5322 iflib_deregister(if_ctx_t ctx)
5323 {
5324 if_t ifp = ctx->ifc_ifp;
5325
5326 /* Remove all media */
5327 ifmedia_removeall(&ctx->ifc_media);
5328
5329 /* Unregister VLAN events */
5330 if (ctx->ifc_vlan_attach_event != NULL) {
5331 EVENTHANDLER_DEREGISTER(vlan_config, ctx->ifc_vlan_attach_event);
5332 ctx->ifc_vlan_attach_event = NULL;
5333 }
5334 if (ctx->ifc_vlan_detach_event != NULL) {
5335 EVENTHANDLER_DEREGISTER(vlan_unconfig, ctx->ifc_vlan_detach_event);
5336 ctx->ifc_vlan_detach_event = NULL;
5337 }
5338
5339 /* Release kobject reference */
5340 kobj_delete((kobj_t) ctx, NULL);
5341
5342 /* Free the ifnet structure */
5343 if_free(ifp);
5344
5345 STATE_LOCK_DESTROY(ctx);
5346
5347 /* ether_ifdetach calls if_qflush - lock must be destroy afterwards*/
5348 CTX_LOCK_DESTROY(ctx);
5349 }
5350
5351 static int
iflib_queues_alloc(if_ctx_t ctx)5352 iflib_queues_alloc(if_ctx_t ctx)
5353 {
5354 if_shared_ctx_t sctx = ctx->ifc_sctx;
5355 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
5356 device_t dev = ctx->ifc_dev;
5357 int nrxqsets = scctx->isc_nrxqsets;
5358 int ntxqsets = scctx->isc_ntxqsets;
5359 iflib_txq_t txq;
5360 iflib_rxq_t rxq;
5361 iflib_fl_t fl = NULL;
5362 int i, j, cpu, err, txconf, rxconf;
5363 iflib_dma_info_t ifdip;
5364 uint32_t *rxqsizes = scctx->isc_rxqsizes;
5365 uint32_t *txqsizes = scctx->isc_txqsizes;
5366 uint8_t nrxqs = sctx->isc_nrxqs;
5367 uint8_t ntxqs = sctx->isc_ntxqs;
5368 int nfree_lists = sctx->isc_nfl ? sctx->isc_nfl : 1;
5369 caddr_t *vaddrs;
5370 uint64_t *paddrs;
5371
5372 KASSERT(ntxqs > 0, ("number of queues per qset must be at least 1"));
5373 KASSERT(nrxqs > 0, ("number of queues per qset must be at least 1"));
5374
5375 /* Allocate the TX ring struct memory */
5376 if (!(ctx->ifc_txqs =
5377 (iflib_txq_t) malloc(sizeof(struct iflib_txq) *
5378 ntxqsets, M_IFLIB, M_NOWAIT | M_ZERO))) {
5379 device_printf(dev, "Unable to allocate TX ring memory\n");
5380 err = ENOMEM;
5381 goto fail;
5382 }
5383
5384 /* Now allocate the RX */
5385 if (!(ctx->ifc_rxqs =
5386 (iflib_rxq_t) malloc(sizeof(struct iflib_rxq) *
5387 nrxqsets, M_IFLIB, M_NOWAIT | M_ZERO))) {
5388 device_printf(dev, "Unable to allocate RX ring memory\n");
5389 err = ENOMEM;
5390 goto rx_fail;
5391 }
5392
5393 txq = ctx->ifc_txqs;
5394 rxq = ctx->ifc_rxqs;
5395
5396 /*
5397 * XXX handle allocation failure
5398 */
5399 for (txconf = i = 0, cpu = CPU_FIRST(); i < ntxqsets; i++, txconf++, txq++, cpu = CPU_NEXT(cpu)) {
5400 /* Set up some basics */
5401
5402 if ((ifdip = malloc(sizeof(struct iflib_dma_info) * ntxqs,
5403 M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
5404 device_printf(dev,
5405 "Unable to allocate TX DMA info memory\n");
5406 err = ENOMEM;
5407 goto err_tx_desc;
5408 }
5409 txq->ift_ifdi = ifdip;
5410 for (j = 0; j < ntxqs; j++, ifdip++) {
5411 if (iflib_dma_alloc(ctx, txqsizes[j], ifdip, 0)) {
5412 device_printf(dev,
5413 "Unable to allocate TX descriptors\n");
5414 err = ENOMEM;
5415 goto err_tx_desc;
5416 }
5417 txq->ift_txd_size[j] = scctx->isc_txd_size[j];
5418 bzero((void *)ifdip->idi_vaddr, txqsizes[j]);
5419 }
5420 txq->ift_ctx = ctx;
5421 txq->ift_id = i;
5422 if (sctx->isc_flags & IFLIB_HAS_TXCQ) {
5423 txq->ift_br_offset = 1;
5424 } else {
5425 txq->ift_br_offset = 0;
5426 }
5427 /* XXX fix this */
5428 txq->ift_timer.c_cpu = cpu;
5429
5430 if (iflib_txsd_alloc(txq)) {
5431 device_printf(dev, "Critical Failure setting up TX buffers\n");
5432 err = ENOMEM;
5433 goto err_tx_desc;
5434 }
5435
5436 /* Initialize the TX lock */
5437 snprintf(txq->ift_mtx_name, MTX_NAME_LEN, "%s:TX(%d):callout",
5438 device_get_nameunit(dev), txq->ift_id);
5439 mtx_init(&txq->ift_mtx, txq->ift_mtx_name, NULL, MTX_DEF);
5440 callout_init_mtx(&txq->ift_timer, &txq->ift_mtx, 0);
5441
5442 err = ifmp_ring_alloc(&txq->ift_br, 2048, txq, iflib_txq_drain,
5443 iflib_txq_can_drain, M_IFLIB, M_WAITOK);
5444 if (err) {
5445 /* XXX free any allocated rings */
5446 device_printf(dev, "Unable to allocate buf_ring\n");
5447 goto err_tx_desc;
5448 }
5449 }
5450
5451 for (rxconf = i = 0; i < nrxqsets; i++, rxconf++, rxq++) {
5452 /* Set up some basics */
5453
5454 if ((ifdip = malloc(sizeof(struct iflib_dma_info) * nrxqs,
5455 M_IFLIB, M_NOWAIT | M_ZERO)) == NULL) {
5456 device_printf(dev,
5457 "Unable to allocate RX DMA info memory\n");
5458 err = ENOMEM;
5459 goto err_tx_desc;
5460 }
5461
5462 rxq->ifr_ifdi = ifdip;
5463 /* XXX this needs to be changed if #rx queues != #tx queues */
5464 rxq->ifr_ntxqirq = 1;
5465 rxq->ifr_txqid[0] = i;
5466 for (j = 0; j < nrxqs; j++, ifdip++) {
5467 if (iflib_dma_alloc(ctx, rxqsizes[j], ifdip, 0)) {
5468 device_printf(dev,
5469 "Unable to allocate RX descriptors\n");
5470 err = ENOMEM;
5471 goto err_tx_desc;
5472 }
5473 bzero((void *)ifdip->idi_vaddr, rxqsizes[j]);
5474 }
5475 rxq->ifr_ctx = ctx;
5476 rxq->ifr_id = i;
5477 if (sctx->isc_flags & IFLIB_HAS_RXCQ) {
5478 rxq->ifr_fl_offset = 1;
5479 } else {
5480 rxq->ifr_fl_offset = 0;
5481 }
5482 rxq->ifr_nfl = nfree_lists;
5483 if (!(fl =
5484 (iflib_fl_t) malloc(sizeof(struct iflib_fl) * nfree_lists, M_IFLIB, M_NOWAIT | M_ZERO))) {
5485 device_printf(dev, "Unable to allocate free list memory\n");
5486 err = ENOMEM;
5487 goto err_tx_desc;
5488 }
5489 rxq->ifr_fl = fl;
5490 for (j = 0; j < nfree_lists; j++) {
5491 fl[j].ifl_rxq = rxq;
5492 fl[j].ifl_id = j;
5493 fl[j].ifl_ifdi = &rxq->ifr_ifdi[j + rxq->ifr_fl_offset];
5494 fl[j].ifl_rxd_size = scctx->isc_rxd_size[j];
5495 }
5496 /* Allocate receive buffers for the ring */
5497 if (iflib_rxsd_alloc(rxq)) {
5498 device_printf(dev,
5499 "Critical Failure setting up receive buffers\n");
5500 err = ENOMEM;
5501 goto err_rx_desc;
5502 }
5503
5504 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++)
5505 fl->ifl_rx_bitmap = bit_alloc(fl->ifl_size, M_IFLIB,
5506 M_WAITOK);
5507 }
5508
5509 /* TXQs */
5510 vaddrs = malloc(sizeof(caddr_t)*ntxqsets*ntxqs, M_IFLIB, M_WAITOK);
5511 paddrs = malloc(sizeof(uint64_t)*ntxqsets*ntxqs, M_IFLIB, M_WAITOK);
5512 for (i = 0; i < ntxqsets; i++) {
5513 iflib_dma_info_t di = ctx->ifc_txqs[i].ift_ifdi;
5514
5515 for (j = 0; j < ntxqs; j++, di++) {
5516 vaddrs[i*ntxqs + j] = di->idi_vaddr;
5517 paddrs[i*ntxqs + j] = di->idi_paddr;
5518 }
5519 }
5520 if ((err = IFDI_TX_QUEUES_ALLOC(ctx, vaddrs, paddrs, ntxqs, ntxqsets)) != 0) {
5521 device_printf(ctx->ifc_dev,
5522 "Unable to allocate device TX queue\n");
5523 iflib_tx_structures_free(ctx);
5524 free(vaddrs, M_IFLIB);
5525 free(paddrs, M_IFLIB);
5526 goto err_rx_desc;
5527 }
5528 free(vaddrs, M_IFLIB);
5529 free(paddrs, M_IFLIB);
5530
5531 /* RXQs */
5532 vaddrs = malloc(sizeof(caddr_t)*nrxqsets*nrxqs, M_IFLIB, M_WAITOK);
5533 paddrs = malloc(sizeof(uint64_t)*nrxqsets*nrxqs, M_IFLIB, M_WAITOK);
5534 for (i = 0; i < nrxqsets; i++) {
5535 iflib_dma_info_t di = ctx->ifc_rxqs[i].ifr_ifdi;
5536
5537 for (j = 0; j < nrxqs; j++, di++) {
5538 vaddrs[i*nrxqs + j] = di->idi_vaddr;
5539 paddrs[i*nrxqs + j] = di->idi_paddr;
5540 }
5541 }
5542 if ((err = IFDI_RX_QUEUES_ALLOC(ctx, vaddrs, paddrs, nrxqs, nrxqsets)) != 0) {
5543 device_printf(ctx->ifc_dev,
5544 "Unable to allocate device RX queue\n");
5545 iflib_tx_structures_free(ctx);
5546 free(vaddrs, M_IFLIB);
5547 free(paddrs, M_IFLIB);
5548 goto err_rx_desc;
5549 }
5550 free(vaddrs, M_IFLIB);
5551 free(paddrs, M_IFLIB);
5552
5553 return (0);
5554
5555 /* XXX handle allocation failure changes */
5556 err_rx_desc:
5557 err_tx_desc:
5558 rx_fail:
5559 if (ctx->ifc_rxqs != NULL)
5560 free(ctx->ifc_rxqs, M_IFLIB);
5561 ctx->ifc_rxqs = NULL;
5562 if (ctx->ifc_txqs != NULL)
5563 free(ctx->ifc_txqs, M_IFLIB);
5564 ctx->ifc_txqs = NULL;
5565 fail:
5566 return (err);
5567 }
5568
5569 static int
iflib_tx_structures_setup(if_ctx_t ctx)5570 iflib_tx_structures_setup(if_ctx_t ctx)
5571 {
5572 iflib_txq_t txq = ctx->ifc_txqs;
5573 int i;
5574
5575 for (i = 0; i < NTXQSETS(ctx); i++, txq++)
5576 iflib_txq_setup(txq);
5577
5578 return (0);
5579 }
5580
5581 static void
iflib_tx_structures_free(if_ctx_t ctx)5582 iflib_tx_structures_free(if_ctx_t ctx)
5583 {
5584 iflib_txq_t txq = ctx->ifc_txqs;
5585 if_shared_ctx_t sctx = ctx->ifc_sctx;
5586 int i, j;
5587
5588 for (i = 0; i < NTXQSETS(ctx); i++, txq++) {
5589 iflib_txq_destroy(txq);
5590 for (j = 0; j < sctx->isc_ntxqs; j++)
5591 iflib_dma_free(&txq->ift_ifdi[j]);
5592 }
5593 free(ctx->ifc_txqs, M_IFLIB);
5594 ctx->ifc_txqs = NULL;
5595 IFDI_QUEUES_FREE(ctx);
5596 }
5597
5598 /*********************************************************************
5599 *
5600 * Initialize all receive rings.
5601 *
5602 **********************************************************************/
5603 static int
iflib_rx_structures_setup(if_ctx_t ctx)5604 iflib_rx_structures_setup(if_ctx_t ctx)
5605 {
5606 iflib_rxq_t rxq = ctx->ifc_rxqs;
5607 int q;
5608 #if defined(INET6) || defined(INET)
5609 int err, i;
5610 #endif
5611
5612 for (q = 0; q < ctx->ifc_softc_ctx.isc_nrxqsets; q++, rxq++) {
5613 #if defined(INET6) || defined(INET)
5614 if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_LRO) {
5615 err = tcp_lro_init_args(&rxq->ifr_lc, ctx->ifc_ifp,
5616 TCP_LRO_ENTRIES, min(1024,
5617 ctx->ifc_softc_ctx.isc_nrxd[rxq->ifr_fl_offset]));
5618 if (err != 0) {
5619 device_printf(ctx->ifc_dev,
5620 "LRO Initialization failed!\n");
5621 goto fail;
5622 }
5623 }
5624 #endif
5625 IFDI_RXQ_SETUP(ctx, rxq->ifr_id);
5626 }
5627 return (0);
5628 #if defined(INET6) || defined(INET)
5629 fail:
5630 /*
5631 * Free LRO resources allocated so far, we will only handle
5632 * the rings that completed, the failing case will have
5633 * cleaned up for itself. 'q' failed, so its the terminus.
5634 */
5635 rxq = ctx->ifc_rxqs;
5636 for (i = 0; i < q; ++i, rxq++) {
5637 if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_LRO)
5638 tcp_lro_free(&rxq->ifr_lc);
5639 }
5640 return (err);
5641 #endif
5642 }
5643
5644 /*********************************************************************
5645 *
5646 * Free all receive rings.
5647 *
5648 **********************************************************************/
5649 static void
iflib_rx_structures_free(if_ctx_t ctx)5650 iflib_rx_structures_free(if_ctx_t ctx)
5651 {
5652 iflib_rxq_t rxq = ctx->ifc_rxqs;
5653 int i;
5654
5655 for (i = 0; i < ctx->ifc_softc_ctx.isc_nrxqsets; i++, rxq++) {
5656 iflib_rx_sds_free(rxq);
5657 #if defined(INET6) || defined(INET)
5658 if (if_getcapabilities(ctx->ifc_ifp) & IFCAP_LRO)
5659 tcp_lro_free(&rxq->ifr_lc);
5660 #endif
5661 }
5662 free(ctx->ifc_rxqs, M_IFLIB);
5663 ctx->ifc_rxqs = NULL;
5664 }
5665
5666 static int
iflib_qset_structures_setup(if_ctx_t ctx)5667 iflib_qset_structures_setup(if_ctx_t ctx)
5668 {
5669 int err;
5670
5671 /*
5672 * It is expected that the caller takes care of freeing queues if this
5673 * fails.
5674 */
5675 if ((err = iflib_tx_structures_setup(ctx)) != 0) {
5676 device_printf(ctx->ifc_dev, "iflib_tx_structures_setup failed: %d\n", err);
5677 return (err);
5678 }
5679
5680 if ((err = iflib_rx_structures_setup(ctx)) != 0)
5681 device_printf(ctx->ifc_dev, "iflib_rx_structures_setup failed: %d\n", err);
5682
5683 return (err);
5684 }
5685
5686 int
iflib_irq_alloc(if_ctx_t ctx,if_irq_t irq,int rid,driver_filter_t filter,void * filter_arg,driver_intr_t handler,void * arg,const char * name)5687 iflib_irq_alloc(if_ctx_t ctx, if_irq_t irq, int rid,
5688 driver_filter_t filter, void *filter_arg, driver_intr_t handler, void *arg, const char *name)
5689 {
5690
5691 return (_iflib_irq_alloc(ctx, irq, rid, filter, handler, arg, name));
5692 }
5693
5694 #ifdef SMP
5695 static int
find_nth(if_ctx_t ctx,int qid)5696 find_nth(if_ctx_t ctx, int qid)
5697 {
5698 cpuset_t cpus;
5699 int i, cpuid, eqid, count;
5700
5701 CPU_COPY(&ctx->ifc_cpus, &cpus);
5702 count = CPU_COUNT(&cpus);
5703 eqid = qid % count;
5704 /* clear up to the qid'th bit */
5705 for (i = 0; i < eqid; i++) {
5706 cpuid = CPU_FFS(&cpus);
5707 MPASS(cpuid != 0);
5708 CPU_CLR(cpuid-1, &cpus);
5709 }
5710 cpuid = CPU_FFS(&cpus);
5711 MPASS(cpuid != 0);
5712 return (cpuid-1);
5713 }
5714
5715 #ifdef SCHED_ULE
5716 extern struct cpu_group *cpu_top; /* CPU topology */
5717
5718 static int
find_child_with_core(int cpu,struct cpu_group * grp)5719 find_child_with_core(int cpu, struct cpu_group *grp)
5720 {
5721 int i;
5722
5723 if (grp->cg_children == 0)
5724 return -1;
5725
5726 MPASS(grp->cg_child);
5727 for (i = 0; i < grp->cg_children; i++) {
5728 if (CPU_ISSET(cpu, &grp->cg_child[i].cg_mask))
5729 return i;
5730 }
5731
5732 return -1;
5733 }
5734
5735 /*
5736 * Find the nth "close" core to the specified core
5737 * "close" is defined as the deepest level that shares
5738 * at least an L2 cache. With threads, this will be
5739 * threads on the same core. If the shared cache is L3
5740 * or higher, simply returns the same core.
5741 */
5742 static int
find_close_core(int cpu,int core_offset)5743 find_close_core(int cpu, int core_offset)
5744 {
5745 struct cpu_group *grp;
5746 int i;
5747 int fcpu;
5748 cpuset_t cs;
5749
5750 grp = cpu_top;
5751 if (grp == NULL)
5752 return cpu;
5753 i = 0;
5754 while ((i = find_child_with_core(cpu, grp)) != -1) {
5755 /* If the child only has one cpu, don't descend */
5756 if (grp->cg_child[i].cg_count <= 1)
5757 break;
5758 grp = &grp->cg_child[i];
5759 }
5760
5761 /* If they don't share at least an L2 cache, use the same CPU */
5762 if (grp->cg_level > CG_SHARE_L2 || grp->cg_level == CG_SHARE_NONE)
5763 return cpu;
5764
5765 /* Now pick one */
5766 CPU_COPY(&grp->cg_mask, &cs);
5767
5768 /* Add the selected CPU offset to core offset. */
5769 for (i = 0; (fcpu = CPU_FFS(&cs)) != 0; i++) {
5770 if (fcpu - 1 == cpu)
5771 break;
5772 CPU_CLR(fcpu - 1, &cs);
5773 }
5774 MPASS(fcpu);
5775
5776 core_offset += i;
5777
5778 CPU_COPY(&grp->cg_mask, &cs);
5779 for (i = core_offset % grp->cg_count; i > 0; i--) {
5780 MPASS(CPU_FFS(&cs));
5781 CPU_CLR(CPU_FFS(&cs) - 1, &cs);
5782 }
5783 MPASS(CPU_FFS(&cs));
5784 return CPU_FFS(&cs) - 1;
5785 }
5786 #else
5787 static int
find_close_core(int cpu,int core_offset __unused)5788 find_close_core(int cpu, int core_offset __unused)
5789 {
5790 return cpu;
5791 }
5792 #endif
5793
5794 static int
get_core_offset(if_ctx_t ctx,iflib_intr_type_t type,int qid)5795 get_core_offset(if_ctx_t ctx, iflib_intr_type_t type, int qid)
5796 {
5797 switch (type) {
5798 case IFLIB_INTR_TX:
5799 /* TX queues get cores which share at least an L2 cache with the corresponding RX queue */
5800 /* XXX handle multiple RX threads per core and more than two core per L2 group */
5801 return qid / CPU_COUNT(&ctx->ifc_cpus) + 1;
5802 case IFLIB_INTR_RX:
5803 case IFLIB_INTR_RXTX:
5804 /* RX queues get the specified core */
5805 return qid / CPU_COUNT(&ctx->ifc_cpus);
5806 default:
5807 return -1;
5808 }
5809 }
5810 #else
5811 #define get_core_offset(ctx, type, qid) CPU_FIRST()
5812 #define find_close_core(cpuid, tid) CPU_FIRST()
5813 #define find_nth(ctx, gid) CPU_FIRST()
5814 #endif
5815
5816 /* Just to avoid copy/paste */
5817 static inline int
iflib_irq_set_affinity(if_ctx_t ctx,if_irq_t irq,iflib_intr_type_t type,int qid,struct grouptask * gtask,struct taskqgroup * tqg,void * uniq,const char * name)5818 iflib_irq_set_affinity(if_ctx_t ctx, if_irq_t irq, iflib_intr_type_t type,
5819 int qid, struct grouptask *gtask, struct taskqgroup *tqg, void *uniq,
5820 const char *name)
5821 {
5822 device_t dev;
5823 int co, cpuid, err, tid;
5824
5825 dev = ctx->ifc_dev;
5826 co = ctx->ifc_sysctl_core_offset;
5827 if (ctx->ifc_sysctl_separate_txrx && type == IFLIB_INTR_TX)
5828 co += ctx->ifc_softc_ctx.isc_nrxqsets;
5829 cpuid = find_nth(ctx, qid + co);
5830 tid = get_core_offset(ctx, type, qid);
5831 if (tid < 0) {
5832 device_printf(dev, "get_core_offset failed\n");
5833 return (EOPNOTSUPP);
5834 }
5835 cpuid = find_close_core(cpuid, tid);
5836 err = taskqgroup_attach_cpu(tqg, gtask, uniq, cpuid,
5837 rman_get_start(irq->ii_res), name);
5838 if (err) {
5839 device_printf(dev, "taskqgroup_attach_cpu failed %d\n", err);
5840 return (err);
5841 }
5842 #ifdef notyet
5843 if (cpuid > ctx->ifc_cpuid_highest)
5844 ctx->ifc_cpuid_highest = cpuid;
5845 #endif
5846 return (0);
5847 }
5848
5849 int
iflib_irq_alloc_generic(if_ctx_t ctx,if_irq_t irq,int rid,iflib_intr_type_t type,driver_filter_t * filter,void * filter_arg,int qid,const char * name)5850 iflib_irq_alloc_generic(if_ctx_t ctx, if_irq_t irq, int rid,
5851 iflib_intr_type_t type, driver_filter_t *filter,
5852 void *filter_arg, int qid, const char *name)
5853 {
5854 device_t dev;
5855 struct grouptask *gtask;
5856 struct taskqgroup *tqg;
5857 iflib_filter_info_t info;
5858 gtask_fn_t *fn;
5859 int tqrid, err;
5860 driver_filter_t *intr_fast;
5861 void *q;
5862
5863 info = &ctx->ifc_filter_info;
5864 tqrid = rid;
5865
5866 switch (type) {
5867 /* XXX merge tx/rx for netmap? */
5868 case IFLIB_INTR_TX:
5869 q = &ctx->ifc_txqs[qid];
5870 info = &ctx->ifc_txqs[qid].ift_filter_info;
5871 gtask = &ctx->ifc_txqs[qid].ift_task;
5872 tqg = qgroup_if_io_tqg;
5873 fn = _task_fn_tx;
5874 intr_fast = iflib_fast_intr;
5875 GROUPTASK_INIT(gtask, 0, fn, q);
5876 ctx->ifc_flags |= IFC_NETMAP_TX_IRQ;
5877 break;
5878 case IFLIB_INTR_RX:
5879 q = &ctx->ifc_rxqs[qid];
5880 info = &ctx->ifc_rxqs[qid].ifr_filter_info;
5881 gtask = &ctx->ifc_rxqs[qid].ifr_task;
5882 tqg = qgroup_if_io_tqg;
5883 fn = _task_fn_rx;
5884 intr_fast = iflib_fast_intr;
5885 GROUPTASK_INIT(gtask, 0, fn, q);
5886 break;
5887 case IFLIB_INTR_RXTX:
5888 q = &ctx->ifc_rxqs[qid];
5889 info = &ctx->ifc_rxqs[qid].ifr_filter_info;
5890 gtask = &ctx->ifc_rxqs[qid].ifr_task;
5891 tqg = qgroup_if_io_tqg;
5892 fn = _task_fn_rx;
5893 intr_fast = iflib_fast_intr_rxtx;
5894 GROUPTASK_INIT(gtask, 0, fn, q);
5895 break;
5896 case IFLIB_INTR_ADMIN:
5897 q = ctx;
5898 tqrid = -1;
5899 info = &ctx->ifc_filter_info;
5900 gtask = &ctx->ifc_admin_task;
5901 tqg = qgroup_if_config_tqg;
5902 fn = _task_fn_admin;
5903 intr_fast = iflib_fast_intr_ctx;
5904 break;
5905 default:
5906 device_printf(ctx->ifc_dev, "%s: unknown net intr type\n",
5907 __func__);
5908 return (EINVAL);
5909 }
5910
5911 info->ifi_filter = filter;
5912 info->ifi_filter_arg = filter_arg;
5913 info->ifi_task = gtask;
5914 info->ifi_ctx = q;
5915
5916 dev = ctx->ifc_dev;
5917 err = _iflib_irq_alloc(ctx, irq, rid, intr_fast, NULL, info, name);
5918 if (err != 0) {
5919 device_printf(dev, "_iflib_irq_alloc failed %d\n", err);
5920 return (err);
5921 }
5922 if (type == IFLIB_INTR_ADMIN)
5923 return (0);
5924
5925 if (tqrid != -1) {
5926 err = iflib_irq_set_affinity(ctx, irq, type, qid, gtask, tqg,
5927 q, name);
5928 if (err)
5929 return (err);
5930 } else {
5931 taskqgroup_attach(tqg, gtask, q, rman_get_start(irq->ii_res),
5932 name);
5933 }
5934
5935 return (0);
5936 }
5937
5938 void
iflib_softirq_alloc_generic(if_ctx_t ctx,if_irq_t irq,iflib_intr_type_t type,void * arg,int qid,const char * name)5939 iflib_softirq_alloc_generic(if_ctx_t ctx, if_irq_t irq, iflib_intr_type_t type, void *arg, int qid, const char *name)
5940 {
5941 struct grouptask *gtask;
5942 struct taskqgroup *tqg;
5943 gtask_fn_t *fn;
5944 void *q;
5945 int err;
5946
5947 switch (type) {
5948 case IFLIB_INTR_TX:
5949 q = &ctx->ifc_txqs[qid];
5950 gtask = &ctx->ifc_txqs[qid].ift_task;
5951 tqg = qgroup_if_io_tqg;
5952 fn = _task_fn_tx;
5953 break;
5954 case IFLIB_INTR_RX:
5955 q = &ctx->ifc_rxqs[qid];
5956 gtask = &ctx->ifc_rxqs[qid].ifr_task;
5957 tqg = qgroup_if_io_tqg;
5958 fn = _task_fn_rx;
5959 break;
5960 case IFLIB_INTR_IOV:
5961 q = ctx;
5962 gtask = &ctx->ifc_vflr_task;
5963 tqg = qgroup_if_config_tqg;
5964 fn = _task_fn_iov;
5965 break;
5966 default:
5967 panic("unknown net intr type");
5968 }
5969 GROUPTASK_INIT(gtask, 0, fn, q);
5970 if (irq != NULL) {
5971 err = iflib_irq_set_affinity(ctx, irq, type, qid, gtask, tqg,
5972 q, name);
5973 if (err)
5974 taskqgroup_attach(tqg, gtask, q,
5975 rman_get_start(irq->ii_res), name);
5976 } else {
5977 taskqgroup_attach(tqg, gtask, q, -1, name);
5978 }
5979 }
5980
5981 void
iflib_irq_free(if_ctx_t ctx,if_irq_t irq)5982 iflib_irq_free(if_ctx_t ctx, if_irq_t irq)
5983 {
5984
5985 if (irq->ii_tag)
5986 bus_teardown_intr(ctx->ifc_dev, irq->ii_res, irq->ii_tag);
5987
5988 if (irq->ii_res)
5989 bus_release_resource(ctx->ifc_dev, SYS_RES_IRQ,
5990 rman_get_rid(irq->ii_res), irq->ii_res);
5991 }
5992
5993 static int
iflib_legacy_setup(if_ctx_t ctx,driver_filter_t filter,void * filter_arg,int * rid,const char * name)5994 iflib_legacy_setup(if_ctx_t ctx, driver_filter_t filter, void *filter_arg, int *rid, const char *name)
5995 {
5996 iflib_txq_t txq = ctx->ifc_txqs;
5997 iflib_rxq_t rxq = ctx->ifc_rxqs;
5998 if_irq_t irq = &ctx->ifc_legacy_irq;
5999 iflib_filter_info_t info;
6000 struct grouptask *gtask;
6001 struct taskqgroup *tqg;
6002 gtask_fn_t *fn;
6003 int tqrid;
6004 void *q;
6005 int err;
6006 bool rx_only;
6007
6008 q = &ctx->ifc_rxqs[0];
6009 info = &rxq[0].ifr_filter_info;
6010 gtask = &rxq[0].ifr_task;
6011 tqg = qgroup_if_io_tqg;
6012 tqrid = irq->ii_rid = *rid;
6013 fn = _task_fn_rx;
6014 rx_only = (ctx->ifc_sctx->isc_flags & IFLIB_SINGLE_IRQ_RX_ONLY) != 0;
6015
6016 ctx->ifc_flags |= IFC_LEGACY;
6017 info->ifi_filter = filter;
6018 info->ifi_filter_arg = filter_arg;
6019 info->ifi_task = gtask;
6020 info->ifi_ctx = rx_only ? ctx : q;
6021
6022 /* We allocate a single interrupt resource */
6023 err = _iflib_irq_alloc(ctx, irq, tqrid, rx_only ? iflib_fast_intr_ctx :
6024 iflib_fast_intr_rxtx, NULL, info, name);
6025 if (err != 0)
6026 return (err);
6027 GROUPTASK_INIT(gtask, 0, fn, q);
6028 taskqgroup_attach(tqg, gtask, q, rman_get_start(irq->ii_res), name);
6029
6030 GROUPTASK_INIT(&txq->ift_task, 0, _task_fn_tx, txq);
6031 taskqgroup_attach(qgroup_if_io_tqg, &txq->ift_task, txq,
6032 rman_get_start(irq->ii_res), "tx");
6033 return (0);
6034 }
6035
6036 void
iflib_led_create(if_ctx_t ctx)6037 iflib_led_create(if_ctx_t ctx)
6038 {
6039
6040 ctx->ifc_led_dev = led_create(iflib_led_func, ctx,
6041 device_get_nameunit(ctx->ifc_dev));
6042 }
6043
6044 void
iflib_tx_intr_deferred(if_ctx_t ctx,int txqid)6045 iflib_tx_intr_deferred(if_ctx_t ctx, int txqid)
6046 {
6047
6048 GROUPTASK_ENQUEUE(&ctx->ifc_txqs[txqid].ift_task);
6049 }
6050
6051 void
iflib_rx_intr_deferred(if_ctx_t ctx,int rxqid)6052 iflib_rx_intr_deferred(if_ctx_t ctx, int rxqid)
6053 {
6054
6055 GROUPTASK_ENQUEUE(&ctx->ifc_rxqs[rxqid].ifr_task);
6056 }
6057
6058 void
iflib_admin_intr_deferred(if_ctx_t ctx)6059 iflib_admin_intr_deferred(if_ctx_t ctx)
6060 {
6061 #ifdef INVARIANTS
6062 struct grouptask *gtask;
6063
6064 gtask = &ctx->ifc_admin_task;
6065 MPASS(gtask != NULL && gtask->gt_taskqueue != NULL);
6066 #endif
6067
6068 GROUPTASK_ENQUEUE(&ctx->ifc_admin_task);
6069 }
6070
6071 void
iflib_iov_intr_deferred(if_ctx_t ctx)6072 iflib_iov_intr_deferred(if_ctx_t ctx)
6073 {
6074
6075 GROUPTASK_ENQUEUE(&ctx->ifc_vflr_task);
6076 }
6077
6078 void
iflib_io_tqg_attach(struct grouptask * gt,void * uniq,int cpu,char * name)6079 iflib_io_tqg_attach(struct grouptask *gt, void *uniq, int cpu, char *name)
6080 {
6081
6082 taskqgroup_attach_cpu(qgroup_if_io_tqg, gt, uniq, cpu, -1, name);
6083 }
6084
6085 void
iflib_config_gtask_init(void * ctx,struct grouptask * gtask,gtask_fn_t * fn,const char * name)6086 iflib_config_gtask_init(void *ctx, struct grouptask *gtask, gtask_fn_t *fn,
6087 const char *name)
6088 {
6089
6090 GROUPTASK_INIT(gtask, 0, fn, ctx);
6091 taskqgroup_attach(qgroup_if_config_tqg, gtask, gtask, -1, name);
6092 }
6093
6094 void
iflib_config_gtask_deinit(struct grouptask * gtask)6095 iflib_config_gtask_deinit(struct grouptask *gtask)
6096 {
6097
6098 taskqgroup_detach(qgroup_if_config_tqg, gtask);
6099 }
6100
6101 void
iflib_link_state_change(if_ctx_t ctx,int link_state,uint64_t baudrate)6102 iflib_link_state_change(if_ctx_t ctx, int link_state, uint64_t baudrate)
6103 {
6104 if_t ifp = ctx->ifc_ifp;
6105 iflib_txq_t txq = ctx->ifc_txqs;
6106
6107 if_setbaudrate(ifp, baudrate);
6108 if (baudrate >= IF_Gbps(10)) {
6109 STATE_LOCK(ctx);
6110 ctx->ifc_flags |= IFC_PREFETCH;
6111 STATE_UNLOCK(ctx);
6112 }
6113 /* If link down, disable watchdog */
6114 if ((ctx->ifc_link_state == LINK_STATE_UP) && (link_state == LINK_STATE_DOWN)) {
6115 for (int i = 0; i < ctx->ifc_softc_ctx.isc_ntxqsets; i++, txq++)
6116 txq->ift_qstatus = IFLIB_QUEUE_IDLE;
6117 }
6118 ctx->ifc_link_state = link_state;
6119 if_link_state_change(ifp, link_state);
6120 }
6121
6122 static int
iflib_tx_credits_update(if_ctx_t ctx,iflib_txq_t txq)6123 iflib_tx_credits_update(if_ctx_t ctx, iflib_txq_t txq)
6124 {
6125 int credits;
6126 #ifdef INVARIANTS
6127 int credits_pre = txq->ift_cidx_processed;
6128 #endif
6129
6130 if (ctx->isc_txd_credits_update == NULL)
6131 return (0);
6132
6133 bus_dmamap_sync(txq->ift_ifdi->idi_tag, txq->ift_ifdi->idi_map,
6134 BUS_DMASYNC_POSTREAD);
6135 if ((credits = ctx->isc_txd_credits_update(ctx->ifc_softc, txq->ift_id, true)) == 0)
6136 return (0);
6137
6138 txq->ift_processed += credits;
6139 txq->ift_cidx_processed += credits;
6140
6141 MPASS(credits_pre + credits == txq->ift_cidx_processed);
6142 if (txq->ift_cidx_processed >= txq->ift_size)
6143 txq->ift_cidx_processed -= txq->ift_size;
6144 return (credits);
6145 }
6146
6147 static int
iflib_rxd_avail(if_ctx_t ctx,iflib_rxq_t rxq,qidx_t cidx,qidx_t budget)6148 iflib_rxd_avail(if_ctx_t ctx, iflib_rxq_t rxq, qidx_t cidx, qidx_t budget)
6149 {
6150 iflib_fl_t fl;
6151 u_int i;
6152
6153 for (i = 0, fl = &rxq->ifr_fl[0]; i < rxq->ifr_nfl; i++, fl++)
6154 bus_dmamap_sync(fl->ifl_ifdi->idi_tag, fl->ifl_ifdi->idi_map,
6155 BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
6156 return (ctx->isc_rxd_available(ctx->ifc_softc, rxq->ifr_id, cidx,
6157 budget));
6158 }
6159
6160 void
iflib_add_int_delay_sysctl(if_ctx_t ctx,const char * name,const char * description,if_int_delay_info_t info,int offset,int value)6161 iflib_add_int_delay_sysctl(if_ctx_t ctx, const char *name,
6162 const char *description, if_int_delay_info_t info,
6163 int offset, int value)
6164 {
6165 info->iidi_ctx = ctx;
6166 info->iidi_offset = offset;
6167 info->iidi_value = value;
6168 SYSCTL_ADD_PROC(device_get_sysctl_ctx(ctx->ifc_dev),
6169 SYSCTL_CHILDREN(device_get_sysctl_tree(ctx->ifc_dev)),
6170 OID_AUTO, name, CTLTYPE_INT|CTLFLAG_RW,
6171 info, 0, iflib_sysctl_int_delay, "I", description);
6172 }
6173
6174 struct sx *
iflib_ctx_lock_get(if_ctx_t ctx)6175 iflib_ctx_lock_get(if_ctx_t ctx)
6176 {
6177
6178 return (&ctx->ifc_ctx_sx);
6179 }
6180
6181 static int
iflib_msix_init(if_ctx_t ctx)6182 iflib_msix_init(if_ctx_t ctx)
6183 {
6184 device_t dev = ctx->ifc_dev;
6185 if_shared_ctx_t sctx = ctx->ifc_sctx;
6186 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
6187 int admincnt, bar, err, iflib_num_rx_queues, iflib_num_tx_queues;
6188 int msgs, queuemsgs, queues, rx_queues, tx_queues, vectors;
6189
6190 iflib_num_tx_queues = ctx->ifc_sysctl_ntxqs;
6191 iflib_num_rx_queues = ctx->ifc_sysctl_nrxqs;
6192
6193 if (bootverbose)
6194 device_printf(dev, "msix_init qsets capped at %d\n",
6195 imax(scctx->isc_ntxqsets, scctx->isc_nrxqsets));
6196
6197 /* Override by tuneable */
6198 if (scctx->isc_disable_msix)
6199 goto msi;
6200
6201 /* First try MSI-X */
6202 if ((msgs = pci_msix_count(dev)) == 0) {
6203 if (bootverbose)
6204 device_printf(dev, "MSI-X not supported or disabled\n");
6205 goto msi;
6206 }
6207
6208 bar = ctx->ifc_softc_ctx.isc_msix_bar;
6209 /*
6210 * bar == -1 => "trust me I know what I'm doing"
6211 * Some drivers are for hardware that is so shoddily
6212 * documented that no one knows which bars are which
6213 * so the developer has to map all bars. This hack
6214 * allows shoddy garbage to use MSI-X in this framework.
6215 */
6216 if (bar != -1) {
6217 ctx->ifc_msix_mem = bus_alloc_resource_any(dev,
6218 SYS_RES_MEMORY, &bar, RF_ACTIVE);
6219 if (ctx->ifc_msix_mem == NULL) {
6220 device_printf(dev, "Unable to map MSI-X table\n");
6221 goto msi;
6222 }
6223 }
6224
6225 admincnt = sctx->isc_admin_intrcnt;
6226 #if IFLIB_DEBUG
6227 /* use only 1 qset in debug mode */
6228 queuemsgs = min(msgs - admincnt, 1);
6229 #else
6230 queuemsgs = msgs - admincnt;
6231 #endif
6232 #ifdef RSS
6233 queues = imin(queuemsgs, rss_getnumbuckets());
6234 #else
6235 queues = queuemsgs;
6236 #endif
6237 queues = imin(CPU_COUNT(&ctx->ifc_cpus), queues);
6238 if (bootverbose)
6239 device_printf(dev,
6240 "intr CPUs: %d queue msgs: %d admincnt: %d\n",
6241 CPU_COUNT(&ctx->ifc_cpus), queuemsgs, admincnt);
6242 #ifdef RSS
6243 /* If we're doing RSS, clamp at the number of RSS buckets */
6244 if (queues > rss_getnumbuckets())
6245 queues = rss_getnumbuckets();
6246 #endif
6247 if (iflib_num_rx_queues > 0 && iflib_num_rx_queues < queuemsgs - admincnt)
6248 rx_queues = iflib_num_rx_queues;
6249 else
6250 rx_queues = queues;
6251
6252 if (rx_queues > scctx->isc_nrxqsets)
6253 rx_queues = scctx->isc_nrxqsets;
6254
6255 /*
6256 * We want this to be all logical CPUs by default
6257 */
6258 if (iflib_num_tx_queues > 0 && iflib_num_tx_queues < queues)
6259 tx_queues = iflib_num_tx_queues;
6260 else
6261 tx_queues = mp_ncpus;
6262
6263 if (tx_queues > scctx->isc_ntxqsets)
6264 tx_queues = scctx->isc_ntxqsets;
6265
6266 if (ctx->ifc_sysctl_qs_eq_override == 0) {
6267 #ifdef INVARIANTS
6268 if (tx_queues != rx_queues)
6269 device_printf(dev,
6270 "queue equality override not set, capping rx_queues at %d and tx_queues at %d\n",
6271 min(rx_queues, tx_queues), min(rx_queues, tx_queues));
6272 #endif
6273 tx_queues = min(rx_queues, tx_queues);
6274 rx_queues = min(rx_queues, tx_queues);
6275 }
6276
6277 vectors = rx_queues + admincnt;
6278 if (msgs < vectors) {
6279 device_printf(dev,
6280 "insufficient number of MSI-X vectors "
6281 "(supported %d, need %d)\n", msgs, vectors);
6282 goto msi;
6283 }
6284
6285 device_printf(dev, "Using %d RX queues %d TX queues\n", rx_queues,
6286 tx_queues);
6287 msgs = vectors;
6288 if ((err = pci_alloc_msix(dev, &vectors)) == 0) {
6289 if (vectors != msgs) {
6290 device_printf(dev,
6291 "Unable to allocate sufficient MSI-X vectors "
6292 "(got %d, need %d)\n", vectors, msgs);
6293 pci_release_msi(dev);
6294 if (bar != -1) {
6295 bus_release_resource(dev, SYS_RES_MEMORY, bar,
6296 ctx->ifc_msix_mem);
6297 ctx->ifc_msix_mem = NULL;
6298 }
6299 goto msi;
6300 }
6301 device_printf(dev, "Using MSI-X interrupts with %d vectors\n",
6302 vectors);
6303 scctx->isc_vectors = vectors;
6304 scctx->isc_nrxqsets = rx_queues;
6305 scctx->isc_ntxqsets = tx_queues;
6306 scctx->isc_intr = IFLIB_INTR_MSIX;
6307
6308 return (vectors);
6309 } else {
6310 device_printf(dev,
6311 "failed to allocate %d MSI-X vectors, err: %d\n", vectors,
6312 err);
6313 if (bar != -1) {
6314 bus_release_resource(dev, SYS_RES_MEMORY, bar,
6315 ctx->ifc_msix_mem);
6316 ctx->ifc_msix_mem = NULL;
6317 }
6318 }
6319
6320 msi:
6321 vectors = pci_msi_count(dev);
6322 scctx->isc_nrxqsets = 1;
6323 scctx->isc_ntxqsets = 1;
6324 scctx->isc_vectors = vectors;
6325 if (vectors == 1 && pci_alloc_msi(dev, &vectors) == 0) {
6326 device_printf(dev,"Using an MSI interrupt\n");
6327 scctx->isc_intr = IFLIB_INTR_MSI;
6328 } else {
6329 scctx->isc_vectors = 1;
6330 device_printf(dev,"Using a Legacy interrupt\n");
6331 scctx->isc_intr = IFLIB_INTR_LEGACY;
6332 }
6333
6334 return (vectors);
6335 }
6336
6337 static const char *ring_states[] = { "IDLE", "BUSY", "STALLED", "ABDICATED" };
6338
6339 static int
mp_ring_state_handler(SYSCTL_HANDLER_ARGS)6340 mp_ring_state_handler(SYSCTL_HANDLER_ARGS)
6341 {
6342 int rc;
6343 uint16_t *state = ((uint16_t *)oidp->oid_arg1);
6344 struct sbuf *sb;
6345 const char *ring_state = "UNKNOWN";
6346
6347 /* XXX needed ? */
6348 rc = sysctl_wire_old_buffer(req, 0);
6349 MPASS(rc == 0);
6350 if (rc != 0)
6351 return (rc);
6352 sb = sbuf_new_for_sysctl(NULL, NULL, 80, req);
6353 MPASS(sb != NULL);
6354 if (sb == NULL)
6355 return (ENOMEM);
6356 if (state[3] <= 3)
6357 ring_state = ring_states[state[3]];
6358
6359 sbuf_printf(sb, "pidx_head: %04hd pidx_tail: %04hd cidx: %04hd state: %s",
6360 state[0], state[1], state[2], ring_state);
6361 rc = sbuf_finish(sb);
6362 sbuf_delete(sb);
6363 return(rc);
6364 }
6365
6366 enum iflib_ndesc_handler {
6367 IFLIB_NTXD_HANDLER,
6368 IFLIB_NRXD_HANDLER,
6369 };
6370
6371 static int
mp_ndesc_handler(SYSCTL_HANDLER_ARGS)6372 mp_ndesc_handler(SYSCTL_HANDLER_ARGS)
6373 {
6374 if_ctx_t ctx = (void *)arg1;
6375 enum iflib_ndesc_handler type = arg2;
6376 char buf[256] = {0};
6377 qidx_t *ndesc;
6378 char *p, *next;
6379 int nqs, rc, i;
6380
6381 nqs = 8;
6382 switch(type) {
6383 case IFLIB_NTXD_HANDLER:
6384 ndesc = ctx->ifc_sysctl_ntxds;
6385 if (ctx->ifc_sctx)
6386 nqs = ctx->ifc_sctx->isc_ntxqs;
6387 break;
6388 case IFLIB_NRXD_HANDLER:
6389 ndesc = ctx->ifc_sysctl_nrxds;
6390 if (ctx->ifc_sctx)
6391 nqs = ctx->ifc_sctx->isc_nrxqs;
6392 break;
6393 default:
6394 printf("%s: unhandled type\n", __func__);
6395 return (EINVAL);
6396 }
6397 if (nqs == 0)
6398 nqs = 8;
6399
6400 for (i=0; i<8; i++) {
6401 if (i >= nqs)
6402 break;
6403 if (i)
6404 strcat(buf, ",");
6405 sprintf(strchr(buf, 0), "%d", ndesc[i]);
6406 }
6407
6408 rc = sysctl_handle_string(oidp, buf, sizeof(buf), req);
6409 if (rc || req->newptr == NULL)
6410 return rc;
6411
6412 for (i = 0, next = buf, p = strsep(&next, " ,"); i < 8 && p;
6413 i++, p = strsep(&next, " ,")) {
6414 ndesc[i] = strtoul(p, NULL, 10);
6415 }
6416
6417 return(rc);
6418 }
6419
6420 #define NAME_BUFLEN 32
6421 static void
iflib_add_device_sysctl_pre(if_ctx_t ctx)6422 iflib_add_device_sysctl_pre(if_ctx_t ctx)
6423 {
6424 device_t dev = iflib_get_dev(ctx);
6425 struct sysctl_oid_list *child, *oid_list;
6426 struct sysctl_ctx_list *ctx_list;
6427 struct sysctl_oid *node;
6428
6429 ctx_list = device_get_sysctl_ctx(dev);
6430 child = SYSCTL_CHILDREN(device_get_sysctl_tree(dev));
6431 ctx->ifc_sysctl_node = node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, "iflib",
6432 CTLFLAG_RD, NULL, "IFLIB fields");
6433 oid_list = SYSCTL_CHILDREN(node);
6434
6435 SYSCTL_ADD_CONST_STRING(ctx_list, oid_list, OID_AUTO, "driver_version",
6436 CTLFLAG_RD, ctx->ifc_sctx->isc_driver_version,
6437 "driver version");
6438
6439 SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "override_ntxqs",
6440 CTLFLAG_RWTUN, &ctx->ifc_sysctl_ntxqs, 0,
6441 "# of txqs to use, 0 => use default #");
6442 SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "override_nrxqs",
6443 CTLFLAG_RWTUN, &ctx->ifc_sysctl_nrxqs, 0,
6444 "# of rxqs to use, 0 => use default #");
6445 SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "override_qs_enable",
6446 CTLFLAG_RWTUN, &ctx->ifc_sysctl_qs_eq_override, 0,
6447 "permit #txq != #rxq");
6448 SYSCTL_ADD_INT(ctx_list, oid_list, OID_AUTO, "disable_msix",
6449 CTLFLAG_RWTUN, &ctx->ifc_softc_ctx.isc_disable_msix, 0,
6450 "disable MSI-X (default 0)");
6451 SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "rx_budget",
6452 CTLFLAG_RWTUN, &ctx->ifc_sysctl_rx_budget, 0,
6453 "set the RX budget");
6454 SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "tx_abdicate",
6455 CTLFLAG_RWTUN, &ctx->ifc_sysctl_tx_abdicate, 0,
6456 "cause TX to abdicate instead of running to completion");
6457 ctx->ifc_sysctl_core_offset = CORE_OFFSET_UNSPECIFIED;
6458 SYSCTL_ADD_U16(ctx_list, oid_list, OID_AUTO, "core_offset",
6459 CTLFLAG_RDTUN, &ctx->ifc_sysctl_core_offset, 0,
6460 "offset to start using cores at");
6461 SYSCTL_ADD_U8(ctx_list, oid_list, OID_AUTO, "separate_txrx",
6462 CTLFLAG_RDTUN, &ctx->ifc_sysctl_separate_txrx, 0,
6463 "use separate cores for TX and RX");
6464
6465 /* XXX change for per-queue sizes */
6466 SYSCTL_ADD_PROC(ctx_list, oid_list, OID_AUTO, "override_ntxds",
6467 CTLTYPE_STRING|CTLFLAG_RWTUN, ctx, IFLIB_NTXD_HANDLER,
6468 mp_ndesc_handler, "A",
6469 "list of # of TX descriptors to use, 0 = use default #");
6470 SYSCTL_ADD_PROC(ctx_list, oid_list, OID_AUTO, "override_nrxds",
6471 CTLTYPE_STRING|CTLFLAG_RWTUN, ctx, IFLIB_NRXD_HANDLER,
6472 mp_ndesc_handler, "A",
6473 "list of # of RX descriptors to use, 0 = use default #");
6474 }
6475
6476 static void
iflib_add_device_sysctl_post(if_ctx_t ctx)6477 iflib_add_device_sysctl_post(if_ctx_t ctx)
6478 {
6479 if_shared_ctx_t sctx = ctx->ifc_sctx;
6480 if_softc_ctx_t scctx = &ctx->ifc_softc_ctx;
6481 device_t dev = iflib_get_dev(ctx);
6482 struct sysctl_oid_list *child;
6483 struct sysctl_ctx_list *ctx_list;
6484 iflib_fl_t fl;
6485 iflib_txq_t txq;
6486 iflib_rxq_t rxq;
6487 int i, j;
6488 char namebuf[NAME_BUFLEN];
6489 char *qfmt;
6490 struct sysctl_oid *queue_node, *fl_node, *node;
6491 struct sysctl_oid_list *queue_list, *fl_list;
6492 ctx_list = device_get_sysctl_ctx(dev);
6493
6494 node = ctx->ifc_sysctl_node;
6495 child = SYSCTL_CHILDREN(node);
6496
6497 if (scctx->isc_ntxqsets > 100)
6498 qfmt = "txq%03d";
6499 else if (scctx->isc_ntxqsets > 10)
6500 qfmt = "txq%02d";
6501 else
6502 qfmt = "txq%d";
6503 for (i = 0, txq = ctx->ifc_txqs; i < scctx->isc_ntxqsets; i++, txq++) {
6504 snprintf(namebuf, NAME_BUFLEN, qfmt, i);
6505 queue_node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, namebuf,
6506 CTLFLAG_RD, NULL, "Queue Name");
6507 queue_list = SYSCTL_CHILDREN(queue_node);
6508 #if MEMORY_LOGGING
6509 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_dequeued",
6510 CTLFLAG_RD,
6511 &txq->ift_dequeued, "total mbufs freed");
6512 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_enqueued",
6513 CTLFLAG_RD,
6514 &txq->ift_enqueued, "total mbufs enqueued");
6515 #endif
6516 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "mbuf_defrag",
6517 CTLFLAG_RD,
6518 &txq->ift_mbuf_defrag, "# of times m_defrag was called");
6519 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "m_pullups",
6520 CTLFLAG_RD,
6521 &txq->ift_pullups, "# of times m_pullup was called");
6522 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "mbuf_defrag_failed",
6523 CTLFLAG_RD,
6524 &txq->ift_mbuf_defrag_failed, "# of times m_defrag failed");
6525 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "no_desc_avail",
6526 CTLFLAG_RD,
6527 &txq->ift_no_desc_avail, "# of times no descriptors were available");
6528 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "tx_map_failed",
6529 CTLFLAG_RD,
6530 &txq->ift_map_failed, "# of times DMA map failed");
6531 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txd_encap_efbig",
6532 CTLFLAG_RD,
6533 &txq->ift_txd_encap_efbig, "# of times txd_encap returned EFBIG");
6534 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "no_tx_dma_setup",
6535 CTLFLAG_RD,
6536 &txq->ift_no_tx_dma_setup, "# of times map failed for other than EFBIG");
6537 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_pidx",
6538 CTLFLAG_RD,
6539 &txq->ift_pidx, 1, "Producer Index");
6540 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_cidx",
6541 CTLFLAG_RD,
6542 &txq->ift_cidx, 1, "Consumer Index");
6543 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_cidx_processed",
6544 CTLFLAG_RD,
6545 &txq->ift_cidx_processed, 1, "Consumer Index seen by credit update");
6546 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "txq_in_use",
6547 CTLFLAG_RD,
6548 &txq->ift_in_use, 1, "descriptors in use");
6549 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_processed",
6550 CTLFLAG_RD,
6551 &txq->ift_processed, "descriptors procesed for clean");
6552 SYSCTL_ADD_QUAD(ctx_list, queue_list, OID_AUTO, "txq_cleaned",
6553 CTLFLAG_RD,
6554 &txq->ift_cleaned, "total cleaned");
6555 SYSCTL_ADD_PROC(ctx_list, queue_list, OID_AUTO, "ring_state",
6556 CTLTYPE_STRING | CTLFLAG_RD, __DEVOLATILE(uint64_t *, &txq->ift_br->state),
6557 0, mp_ring_state_handler, "A", "soft ring state");
6558 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_enqueues",
6559 CTLFLAG_RD, &txq->ift_br->enqueues,
6560 "# of enqueues to the mp_ring for this queue");
6561 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_drops",
6562 CTLFLAG_RD, &txq->ift_br->drops,
6563 "# of drops in the mp_ring for this queue");
6564 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_starts",
6565 CTLFLAG_RD, &txq->ift_br->starts,
6566 "# of normal consumer starts in the mp_ring for this queue");
6567 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_stalls",
6568 CTLFLAG_RD, &txq->ift_br->stalls,
6569 "# of consumer stalls in the mp_ring for this queue");
6570 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_restarts",
6571 CTLFLAG_RD, &txq->ift_br->restarts,
6572 "# of consumer restarts in the mp_ring for this queue");
6573 SYSCTL_ADD_COUNTER_U64(ctx_list, queue_list, OID_AUTO, "r_abdications",
6574 CTLFLAG_RD, &txq->ift_br->abdications,
6575 "# of consumer abdications in the mp_ring for this queue");
6576 }
6577
6578 if (scctx->isc_nrxqsets > 100)
6579 qfmt = "rxq%03d";
6580 else if (scctx->isc_nrxqsets > 10)
6581 qfmt = "rxq%02d";
6582 else
6583 qfmt = "rxq%d";
6584 for (i = 0, rxq = ctx->ifc_rxqs; i < scctx->isc_nrxqsets; i++, rxq++) {
6585 snprintf(namebuf, NAME_BUFLEN, qfmt, i);
6586 queue_node = SYSCTL_ADD_NODE(ctx_list, child, OID_AUTO, namebuf,
6587 CTLFLAG_RD, NULL, "Queue Name");
6588 queue_list = SYSCTL_CHILDREN(queue_node);
6589 if (sctx->isc_flags & IFLIB_HAS_RXCQ) {
6590 SYSCTL_ADD_U16(ctx_list, queue_list, OID_AUTO, "rxq_cq_cidx",
6591 CTLFLAG_RD,
6592 &rxq->ifr_cq_cidx, 1, "Consumer Index");
6593 }
6594
6595 for (j = 0, fl = rxq->ifr_fl; j < rxq->ifr_nfl; j++, fl++) {
6596 snprintf(namebuf, NAME_BUFLEN, "rxq_fl%d", j);
6597 fl_node = SYSCTL_ADD_NODE(ctx_list, queue_list, OID_AUTO, namebuf,
6598 CTLFLAG_RD, NULL, "freelist Name");
6599 fl_list = SYSCTL_CHILDREN(fl_node);
6600 SYSCTL_ADD_U16(ctx_list, fl_list, OID_AUTO, "pidx",
6601 CTLFLAG_RD,
6602 &fl->ifl_pidx, 1, "Producer Index");
6603 SYSCTL_ADD_U16(ctx_list, fl_list, OID_AUTO, "cidx",
6604 CTLFLAG_RD,
6605 &fl->ifl_cidx, 1, "Consumer Index");
6606 SYSCTL_ADD_U16(ctx_list, fl_list, OID_AUTO, "credits",
6607 CTLFLAG_RD,
6608 &fl->ifl_credits, 1, "credits available");
6609 #if MEMORY_LOGGING
6610 SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_m_enqueued",
6611 CTLFLAG_RD,
6612 &fl->ifl_m_enqueued, "mbufs allocated");
6613 SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_m_dequeued",
6614 CTLFLAG_RD,
6615 &fl->ifl_m_dequeued, "mbufs freed");
6616 SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_cl_enqueued",
6617 CTLFLAG_RD,
6618 &fl->ifl_cl_enqueued, "clusters allocated");
6619 SYSCTL_ADD_QUAD(ctx_list, fl_list, OID_AUTO, "fl_cl_dequeued",
6620 CTLFLAG_RD,
6621 &fl->ifl_cl_dequeued, "clusters freed");
6622 #endif
6623
6624 }
6625 }
6626
6627 }
6628
6629 void
iflib_request_reset(if_ctx_t ctx)6630 iflib_request_reset(if_ctx_t ctx)
6631 {
6632
6633 STATE_LOCK(ctx);
6634 ctx->ifc_flags |= IFC_DO_RESET;
6635 STATE_UNLOCK(ctx);
6636 }
6637
6638 #ifndef __NO_STRICT_ALIGNMENT
6639 static struct mbuf *
iflib_fixup_rx(struct mbuf * m)6640 iflib_fixup_rx(struct mbuf *m)
6641 {
6642 struct mbuf *n;
6643
6644 if (m->m_len <= (MCLBYTES - ETHER_HDR_LEN)) {
6645 bcopy(m->m_data, m->m_data + ETHER_HDR_LEN, m->m_len);
6646 m->m_data += ETHER_HDR_LEN;
6647 n = m;
6648 } else {
6649 MGETHDR(n, M_NOWAIT, MT_DATA);
6650 if (n == NULL) {
6651 m_freem(m);
6652 return (NULL);
6653 }
6654 bcopy(m->m_data, n->m_data, ETHER_HDR_LEN);
6655 m->m_data += ETHER_HDR_LEN;
6656 m->m_len -= ETHER_HDR_LEN;
6657 n->m_len = ETHER_HDR_LEN;
6658 M_MOVE_PKTHDR(n, m);
6659 n->m_next = m;
6660 }
6661 return (n);
6662 }
6663 #endif
6664
6665 #ifdef NETDUMP
6666 static void
iflib_netdump_init(if_t ifp,int * nrxr,int * ncl,int * clsize)6667 iflib_netdump_init(if_t ifp, int *nrxr, int *ncl, int *clsize)
6668 {
6669 if_ctx_t ctx;
6670
6671 ctx = if_getsoftc(ifp);
6672 CTX_LOCK(ctx);
6673 *nrxr = NRXQSETS(ctx);
6674 *ncl = ctx->ifc_rxqs[0].ifr_fl->ifl_size;
6675 *clsize = ctx->ifc_rxqs[0].ifr_fl->ifl_buf_size;
6676 CTX_UNLOCK(ctx);
6677 }
6678
6679 static void
iflib_netdump_event(if_t ifp,enum netdump_ev event)6680 iflib_netdump_event(if_t ifp, enum netdump_ev event)
6681 {
6682 if_ctx_t ctx;
6683 if_softc_ctx_t scctx;
6684 iflib_fl_t fl;
6685 iflib_rxq_t rxq;
6686 int i, j;
6687
6688 ctx = if_getsoftc(ifp);
6689 scctx = &ctx->ifc_softc_ctx;
6690
6691 switch (event) {
6692 case NETDUMP_START:
6693 for (i = 0; i < scctx->isc_nrxqsets; i++) {
6694 rxq = &ctx->ifc_rxqs[i];
6695 for (j = 0; j < rxq->ifr_nfl; j++) {
6696 fl = rxq->ifr_fl;
6697 fl->ifl_zone = m_getzone(fl->ifl_buf_size);
6698 }
6699 }
6700 iflib_no_tx_batch = 1;
6701 break;
6702 default:
6703 break;
6704 }
6705 }
6706
6707 static int
iflib_netdump_transmit(if_t ifp,struct mbuf * m)6708 iflib_netdump_transmit(if_t ifp, struct mbuf *m)
6709 {
6710 if_ctx_t ctx;
6711 iflib_txq_t txq;
6712 int error;
6713
6714 ctx = if_getsoftc(ifp);
6715 if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
6716 IFF_DRV_RUNNING)
6717 return (EBUSY);
6718
6719 txq = &ctx->ifc_txqs[0];
6720 error = iflib_encap(txq, &m);
6721 if (error == 0)
6722 (void)iflib_txd_db_check(ctx, txq, true, txq->ift_in_use);
6723 return (error);
6724 }
6725
6726 static int
iflib_netdump_poll(if_t ifp,int count)6727 iflib_netdump_poll(if_t ifp, int count)
6728 {
6729 if_ctx_t ctx;
6730 if_softc_ctx_t scctx;
6731 iflib_txq_t txq;
6732 int i;
6733
6734 ctx = if_getsoftc(ifp);
6735 scctx = &ctx->ifc_softc_ctx;
6736
6737 if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
6738 IFF_DRV_RUNNING)
6739 return (EBUSY);
6740
6741 txq = &ctx->ifc_txqs[0];
6742 (void)iflib_completed_tx_reclaim(txq, RECLAIM_THRESH(ctx));
6743
6744 for (i = 0; i < scctx->isc_nrxqsets; i++)
6745 (void)iflib_rxeof(&ctx->ifc_rxqs[i], 16 /* XXX */);
6746 return (0);
6747 }
6748 #endif /* NETDUMP */
6749