xref: /freebsd/sys/dev/mana/mana_en.c (revision 09e32b2fddf5f673f76e2fffa415a73d99a6f309)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2021 Microsoft Corp.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 #include <sys/cdefs.h>
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/bus.h>
34 #include <sys/kernel.h>
35 #include <sys/kthread.h>
36 #include <sys/malloc.h>
37 #include <sys/mbuf.h>
38 #include <sys/smp.h>
39 #include <sys/socket.h>
40 #include <sys/sockio.h>
41 #include <sys/time.h>
42 #include <sys/eventhandler.h>
43 
44 #include <machine/bus.h>
45 #include <machine/resource.h>
46 #include <machine/in_cksum.h>
47 
48 #include <net/if.h>
49 #include <net/if_var.h>
50 #include <net/if_types.h>
51 #include <net/if_vlan_var.h>
52 #ifdef RSS
53 #include <net/rss_config.h>
54 #endif
55 
56 #include <netinet/in_systm.h>
57 #include <netinet/in.h>
58 #include <netinet/if_ether.h>
59 #include <netinet/ip.h>
60 #include <netinet/ip6.h>
61 #include <netinet/tcp.h>
62 #include <netinet/udp.h>
63 
64 #include "mana.h"
65 #include "mana_sysctl.h"
66 
67 static int mana_up(struct mana_port_context *apc);
68 static int mana_down(struct mana_port_context *apc);
69 
70 static void
71 mana_rss_key_fill(void *k, size_t size)
72 {
73 	static bool rss_key_generated = false;
74 	static uint8_t rss_key[MANA_HASH_KEY_SIZE];
75 
76 	KASSERT(size <= MANA_HASH_KEY_SIZE,
77 	    ("Request more buytes than MANA RSS key can hold"));
78 
79 	if (!rss_key_generated) {
80 		arc4random_buf(rss_key, MANA_HASH_KEY_SIZE);
81 		rss_key_generated = true;
82 	}
83 	memcpy(k, rss_key, size);
84 }
85 
86 static int
87 mana_ifmedia_change(if_t ifp __unused)
88 {
89 	return EOPNOTSUPP;
90 }
91 
92 static void
93 mana_ifmedia_status(if_t ifp, struct ifmediareq *ifmr)
94 {
95 	struct mana_port_context *apc = if_getsoftc(ifp);
96 
97 	if (!apc) {
98 		if_printf(ifp, "Port not available\n");
99 		return;
100 	}
101 
102 	MANA_APC_LOCK_LOCK(apc);
103 
104 	ifmr->ifm_status = IFM_AVALID;
105 	ifmr->ifm_active = IFM_ETHER;
106 
107 	if (!apc->port_is_up) {
108 		MANA_APC_LOCK_UNLOCK(apc);
109 		mana_dbg(NULL, "Port %u link is down\n", apc->port_idx);
110 		return;
111 	}
112 
113 	ifmr->ifm_status |= IFM_ACTIVE;
114 	ifmr->ifm_active |= IFM_100G_DR | IFM_FDX;
115 
116 	MANA_APC_LOCK_UNLOCK(apc);
117 }
118 
119 static uint64_t
120 mana_get_counter(if_t ifp, ift_counter cnt)
121 {
122 	struct mana_port_context *apc = if_getsoftc(ifp);
123 	struct mana_port_stats *stats = &apc->port_stats;
124 
125 	switch (cnt) {
126 	case IFCOUNTER_IPACKETS:
127 		return (counter_u64_fetch(stats->rx_packets));
128 	case IFCOUNTER_OPACKETS:
129 		return (counter_u64_fetch(stats->tx_packets));
130 	case IFCOUNTER_IBYTES:
131 		return (counter_u64_fetch(stats->rx_bytes));
132 	case IFCOUNTER_OBYTES:
133 		return (counter_u64_fetch(stats->tx_bytes));
134 	case IFCOUNTER_IQDROPS:
135 		return (counter_u64_fetch(stats->rx_drops));
136 	case IFCOUNTER_OQDROPS:
137 		return (counter_u64_fetch(stats->tx_drops));
138 	default:
139 		return (if_get_counter_default(ifp, cnt));
140 	}
141 }
142 
143 static void
144 mana_qflush(if_t ifp)
145 {
146 	if_qflush(ifp);
147 }
148 
149 int
150 mana_restart(struct mana_port_context *apc)
151 {
152 	int rc = 0;
153 
154 	MANA_APC_LOCK_LOCK(apc);
155 	if (apc->port_is_up)
156 		 mana_down(apc);
157 
158 	rc = mana_up(apc);
159 	MANA_APC_LOCK_UNLOCK(apc);
160 
161 	return (rc);
162 }
163 
164 static int
165 mana_ioctl(if_t ifp, u_long command, caddr_t data)
166 {
167 	struct mana_port_context *apc = if_getsoftc(ifp);
168 	struct ifrsskey *ifrk;
169 	struct ifrsshash *ifrh;
170 	struct ifreq *ifr;
171 	uint16_t new_mtu;
172 	int rc = 0;
173 
174 	switch (command) {
175 	case SIOCSIFMTU:
176 		ifr = (struct ifreq *)data;
177 		new_mtu = ifr->ifr_mtu;
178 		if (if_getmtu(ifp) == new_mtu)
179 			break;
180 		if ((new_mtu + 18 > MAX_FRAME_SIZE) ||
181 		    (new_mtu + 18 < MIN_FRAME_SIZE)) {
182 			if_printf(ifp, "Invalid MTU. new_mtu: %d, "
183 			    "max allowed: %d, min allowed: %d\n",
184 			    new_mtu, MAX_FRAME_SIZE - 18, MIN_FRAME_SIZE - 18);
185 			return EINVAL;
186 		}
187 		MANA_APC_LOCK_LOCK(apc);
188 		if (apc->port_is_up)
189 			mana_down(apc);
190 
191 		apc->frame_size = new_mtu + 18;
192 		if_setmtu(ifp, new_mtu);
193 		mana_dbg(NULL, "Set MTU to %d\n", new_mtu);
194 
195 		rc = mana_up(apc);
196 		MANA_APC_LOCK_UNLOCK(apc);
197 		break;
198 
199 	case SIOCSIFFLAGS:
200 		if (if_getflags(ifp) & IFF_UP) {
201 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0) {
202 				MANA_APC_LOCK_LOCK(apc);
203 				if (!apc->port_is_up)
204 					rc = mana_up(apc);
205 				MANA_APC_LOCK_UNLOCK(apc);
206 			}
207 		} else {
208 			if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
209 				MANA_APC_LOCK_LOCK(apc);
210 				if (apc->port_is_up)
211 					mana_down(apc);
212 				MANA_APC_LOCK_UNLOCK(apc);
213 			}
214 		}
215 		break;
216 
217 	case SIOCSIFMEDIA:
218 	case SIOCGIFMEDIA:
219 	case SIOCGIFXMEDIA:
220 		ifr = (struct ifreq *)data;
221 		rc = ifmedia_ioctl(ifp, ifr, &apc->media, command);
222 		break;
223 
224 	case SIOCGIFRSSKEY:
225 		ifrk = (struct ifrsskey *)data;
226 		ifrk->ifrk_func = RSS_FUNC_TOEPLITZ;
227 		ifrk->ifrk_keylen = MANA_HASH_KEY_SIZE;
228 		memcpy(ifrk->ifrk_key, apc->hashkey, MANA_HASH_KEY_SIZE);
229 		break;
230 
231 	case SIOCGIFRSSHASH:
232 		ifrh = (struct ifrsshash *)data;
233 		ifrh->ifrh_func = RSS_FUNC_TOEPLITZ;
234 		ifrh->ifrh_types =
235 		    RSS_TYPE_TCP_IPV4 |
236 		    RSS_TYPE_UDP_IPV4 |
237 		    RSS_TYPE_TCP_IPV6 |
238 		    RSS_TYPE_UDP_IPV6;
239 		break;
240 
241 	default:
242 		rc = ether_ioctl(ifp, command, data);
243 		break;
244 	}
245 
246 	return (rc);
247 }
248 
249 static inline void
250 mana_alloc_counters(counter_u64_t *begin, int size)
251 {
252 	counter_u64_t *end = (counter_u64_t *)((char *)begin + size);
253 
254 	for (; begin < end; ++begin)
255 		*begin = counter_u64_alloc(M_WAITOK);
256 }
257 
258 static inline void
259 mana_free_counters(counter_u64_t *begin, int size)
260 {
261 	counter_u64_t *end = (counter_u64_t *)((char *)begin + size);
262 
263 	for (; begin < end; ++begin)
264 		counter_u64_free(*begin);
265 }
266 
267 static bool
268 mana_can_tx(struct gdma_queue *wq)
269 {
270 	return mana_gd_wq_avail_space(wq) >= MAX_TX_WQE_SIZE;
271 }
272 
273 static inline int
274 mana_tx_map_mbuf(struct mana_port_context *apc,
275     struct mana_send_buf_info *tx_info,
276     struct mbuf **m_head, struct mana_tx_package *tp,
277     struct mana_stats *tx_stats)
278 {
279 	struct gdma_dev *gd = apc->ac->gdma_dev;
280 	bus_dma_segment_t segs[MAX_MBUF_FRAGS];
281 	struct mbuf *m = *m_head;
282 	int err, nsegs, i;
283 
284 	err = bus_dmamap_load_mbuf_sg(apc->tx_buf_tag, tx_info->dma_map,
285 	    m, segs, &nsegs, BUS_DMA_NOWAIT);
286 	if (err == EFBIG) {
287 		struct mbuf *m_new;
288 
289 		counter_u64_add(tx_stats->collapse, 1);
290 		m_new = m_collapse(m, M_NOWAIT, MAX_MBUF_FRAGS);
291 		if (unlikely(m_new == NULL)) {
292 			counter_u64_add(tx_stats->collapse_err, 1);
293 			return ENOBUFS;
294 		} else {
295 			*m_head = m = m_new;
296 		}
297 
298 		mana_warn(NULL,
299 		    "Too many segs in orig mbuf, m_collapse called\n");
300 
301 		err = bus_dmamap_load_mbuf_sg(apc->tx_buf_tag,
302 		    tx_info->dma_map, m, segs, &nsegs, BUS_DMA_NOWAIT);
303 	}
304 	if (!err) {
305 		for (i = 0; i < nsegs; i++) {
306 			tp->wqe_req.sgl[i].address = segs[i].ds_addr;
307 			tp->wqe_req.sgl[i].mem_key = gd->gpa_mkey;
308 			tp->wqe_req.sgl[i].size = segs[i].ds_len;
309 		}
310 		tp->wqe_req.num_sge = nsegs;
311 
312 		tx_info->mbuf = *m_head;
313 
314 		bus_dmamap_sync(apc->tx_buf_tag, tx_info->dma_map,
315 		    BUS_DMASYNC_PREWRITE);
316 	}
317 
318 	return err;
319 }
320 
321 static inline void
322 mana_tx_unmap_mbuf(struct mana_port_context *apc,
323     struct mana_send_buf_info *tx_info)
324 {
325 	bus_dmamap_sync(apc->tx_buf_tag, tx_info->dma_map,
326 	    BUS_DMASYNC_POSTWRITE);
327 	bus_dmamap_unload(apc->tx_buf_tag, tx_info->dma_map);
328 	if (tx_info->mbuf) {
329 		m_freem(tx_info->mbuf);
330 		tx_info->mbuf = NULL;
331 	}
332 }
333 
334 static inline int
335 mana_load_rx_mbuf(struct mana_port_context *apc, struct mana_rxq *rxq,
336     struct mana_recv_buf_oob *rx_oob, bool alloc_mbuf)
337 {
338 	bus_dma_segment_t segs[1];
339 	struct mbuf *mbuf;
340 	int nsegs, err;
341 	uint32_t mlen;
342 
343 	if (alloc_mbuf) {
344 		mbuf = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, rxq->datasize);
345 		if (unlikely(mbuf == NULL)) {
346 			mbuf = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
347 			if (unlikely(mbuf == NULL)) {
348 				return ENOMEM;
349 			}
350 			mlen = MCLBYTES;
351 		} else {
352 			mlen = rxq->datasize;
353 		}
354 
355 		mbuf->m_pkthdr.len = mbuf->m_len = mlen;
356 	} else {
357 		if (rx_oob->mbuf) {
358 			mbuf = rx_oob->mbuf;
359 			mlen = rx_oob->mbuf->m_pkthdr.len;
360 		} else {
361 			return ENOMEM;
362 		}
363 	}
364 
365 	err = bus_dmamap_load_mbuf_sg(apc->rx_buf_tag, rx_oob->dma_map,
366 	    mbuf, segs, &nsegs, BUS_DMA_NOWAIT);
367 
368 	if (unlikely((err != 0) || (nsegs != 1))) {
369 		mana_warn(NULL, "Failed to map mbuf, error: %d, "
370 		    "nsegs: %d\n", err, nsegs);
371 		counter_u64_add(rxq->stats.dma_mapping_err, 1);
372 		goto error;
373 	}
374 
375 	bus_dmamap_sync(apc->rx_buf_tag, rx_oob->dma_map,
376 	    BUS_DMASYNC_PREREAD);
377 
378 	rx_oob->mbuf = mbuf;
379 	rx_oob->num_sge = 1;
380 	rx_oob->sgl[0].address = segs[0].ds_addr;
381 	rx_oob->sgl[0].size = mlen;
382 	rx_oob->sgl[0].mem_key = apc->ac->gdma_dev->gpa_mkey;
383 
384 	return 0;
385 
386 error:
387 	m_freem(mbuf);
388 	return EFAULT;
389 }
390 
391 static inline void
392 mana_unload_rx_mbuf(struct mana_port_context *apc, struct mana_rxq *rxq,
393     struct mana_recv_buf_oob *rx_oob, bool free_mbuf)
394 {
395 	bus_dmamap_sync(apc->rx_buf_tag, rx_oob->dma_map,
396 	    BUS_DMASYNC_POSTREAD);
397 	bus_dmamap_unload(apc->rx_buf_tag, rx_oob->dma_map);
398 
399 	if (free_mbuf && rx_oob->mbuf) {
400 		m_freem(rx_oob->mbuf);
401 		rx_oob->mbuf = NULL;
402 	}
403 }
404 
405 
406 /* Use couple mbuf PH_loc spaces for l3 and l4 protocal type */
407 #define MANA_L3_PROTO(_mbuf)	((_mbuf)->m_pkthdr.PH_loc.sixteen[0])
408 #define MANA_L4_PROTO(_mbuf)	((_mbuf)->m_pkthdr.PH_loc.sixteen[1])
409 
410 #define MANA_TXQ_FULL	(IFF_DRV_RUNNING | IFF_DRV_OACTIVE)
411 
412 static void
413 mana_xmit(struct mana_txq *txq)
414 {
415 	enum mana_tx_pkt_format pkt_fmt = MANA_SHORT_PKT_FMT;
416 	struct mana_send_buf_info *tx_info;
417 	if_t ndev = txq->ndev;
418 	struct mbuf *mbuf;
419 	struct mana_port_context *apc = if_getsoftc(ndev);
420 	struct mana_port_stats *port_stats = &apc->port_stats;
421 	struct gdma_dev *gd = apc->ac->gdma_dev;
422 	uint64_t packets, bytes;
423 	uint16_t next_to_use;
424 	struct mana_tx_package pkg = {};
425 	struct mana_stats *tx_stats;
426 	struct gdma_queue *gdma_sq;
427 	struct mana_cq *cq;
428 	int err, len;
429 
430 	gdma_sq = txq->gdma_sq;
431 	cq = &apc->tx_qp[txq->idx].tx_cq;
432 	tx_stats = &txq->stats;
433 
434 	packets = 0;
435 	bytes = 0;
436 	next_to_use = txq->next_to_use;
437 
438 	while ((mbuf = drbr_peek(ndev, txq->txq_br)) != NULL) {
439 		if (!apc->port_is_up ||
440 		    (if_getdrvflags(ndev) & MANA_TXQ_FULL) != IFF_DRV_RUNNING) {
441 			drbr_putback(ndev, txq->txq_br, mbuf);
442 			break;
443 		}
444 
445 		if (!mana_can_tx(gdma_sq)) {
446 			/* SQ is full. Set the IFF_DRV_OACTIVE flag */
447 			if_setdrvflagbits(apc->ndev, IFF_DRV_OACTIVE, 0);
448 			counter_u64_add(tx_stats->stop, 1);
449 			uint64_t stops = counter_u64_fetch(tx_stats->stop);
450 			uint64_t wakeups = counter_u64_fetch(tx_stats->wakeup);
451 #define MANA_TXQ_STOP_THRESHOLD		50
452 			if (stops > MANA_TXQ_STOP_THRESHOLD && wakeups > 0 &&
453 			    stops > wakeups && txq->alt_txq_idx == txq->idx) {
454 				txq->alt_txq_idx =
455 				    (txq->idx + (stops / wakeups))
456 				    % apc->num_queues;
457 				counter_u64_add(tx_stats->alt_chg, 1);
458 			}
459 
460 			drbr_putback(ndev, txq->txq_br, mbuf);
461 
462 			taskqueue_enqueue(cq->cleanup_tq, &cq->cleanup_task);
463 			break;
464 		}
465 
466 		tx_info = &txq->tx_buf_info[next_to_use];
467 
468 		memset(&pkg, 0, sizeof(struct mana_tx_package));
469 		pkg.wqe_req.sgl = pkg.sgl_array;
470 
471 		err = mana_tx_map_mbuf(apc, tx_info, &mbuf, &pkg, tx_stats);
472 		if (unlikely(err)) {
473 			mana_dbg(NULL,
474 			    "Failed to map tx mbuf, err %d\n", err);
475 
476 			counter_u64_add(tx_stats->dma_mapping_err, 1);
477 
478 			/* The mbuf is still there. Free it */
479 			m_freem(mbuf);
480 			/* Advance the drbr queue */
481 			drbr_advance(ndev, txq->txq_br);
482 			continue;
483 		}
484 
485 		pkg.tx_oob.s_oob.vcq_num = cq->gdma_id;
486 		pkg.tx_oob.s_oob.vsq_frame = txq->vsq_frame;
487 
488 		if (txq->vp_offset > MANA_SHORT_VPORT_OFFSET_MAX) {
489 			pkg.tx_oob.l_oob.long_vp_offset = txq->vp_offset;
490 			pkt_fmt = MANA_LONG_PKT_FMT;
491 		} else {
492 			pkg.tx_oob.s_oob.short_vp_offset = txq->vp_offset;
493 		}
494 
495 		pkg.tx_oob.s_oob.pkt_fmt = pkt_fmt;
496 
497 		if (pkt_fmt == MANA_SHORT_PKT_FMT)
498 			pkg.wqe_req.inline_oob_size = sizeof(struct mana_tx_short_oob);
499 		else
500 			pkg.wqe_req.inline_oob_size = sizeof(struct mana_tx_oob);
501 
502 		pkg.wqe_req.inline_oob_data = &pkg.tx_oob;
503 		pkg.wqe_req.flags = 0;
504 		pkg.wqe_req.client_data_unit = 0;
505 
506 		if (mbuf->m_pkthdr.csum_flags & CSUM_TSO) {
507 			if (MANA_L3_PROTO(mbuf) == ETHERTYPE_IP)
508 				pkg.tx_oob.s_oob.is_outer_ipv4 = 1;
509 			else
510 				pkg.tx_oob.s_oob.is_outer_ipv6 = 1;
511 
512 			pkg.tx_oob.s_oob.comp_iphdr_csum = 1;
513 			pkg.tx_oob.s_oob.comp_tcp_csum = 1;
514 			pkg.tx_oob.s_oob.trans_off = mbuf->m_pkthdr.l3hlen;
515 
516 			pkg.wqe_req.client_data_unit = mbuf->m_pkthdr.tso_segsz;
517 			pkg.wqe_req.flags = GDMA_WR_OOB_IN_SGL | GDMA_WR_PAD_BY_SGE0;
518 		} else if (mbuf->m_pkthdr.csum_flags &
519 		    (CSUM_IP_UDP | CSUM_IP_TCP | CSUM_IP6_UDP | CSUM_IP6_TCP)) {
520 			if (MANA_L3_PROTO(mbuf) == ETHERTYPE_IP) {
521 				pkg.tx_oob.s_oob.is_outer_ipv4 = 1;
522 				pkg.tx_oob.s_oob.comp_iphdr_csum = 1;
523 			} else {
524 				pkg.tx_oob.s_oob.is_outer_ipv6 = 1;
525 			}
526 
527 			if (MANA_L4_PROTO(mbuf) == IPPROTO_TCP) {
528 				pkg.tx_oob.s_oob.comp_tcp_csum = 1;
529 				pkg.tx_oob.s_oob.trans_off =
530 				    mbuf->m_pkthdr.l3hlen;
531 			} else {
532 				pkg.tx_oob.s_oob.comp_udp_csum = 1;
533 			}
534 		} else if (mbuf->m_pkthdr.csum_flags & CSUM_IP) {
535 			pkg.tx_oob.s_oob.is_outer_ipv4 = 1;
536 			pkg.tx_oob.s_oob.comp_iphdr_csum = 1;
537 		} else {
538 			if (MANA_L3_PROTO(mbuf) == ETHERTYPE_IP)
539 				pkg.tx_oob.s_oob.is_outer_ipv4 = 1;
540 			else if (MANA_L3_PROTO(mbuf) == ETHERTYPE_IPV6)
541 				pkg.tx_oob.s_oob.is_outer_ipv6 = 1;
542 		}
543 
544 		len = mbuf->m_pkthdr.len;
545 
546 		err = mana_gd_post_work_request(gdma_sq, &pkg.wqe_req,
547 		    (struct gdma_posted_wqe_info *)&tx_info->wqe_inf);
548 		if (unlikely(err)) {
549 			/* Should not happen */
550 			if_printf(ndev, "Failed to post TX OOB: %d\n", err);
551 
552 			mana_tx_unmap_mbuf(apc, tx_info);
553 
554 			drbr_advance(ndev, txq->txq_br);
555 			continue;
556 		}
557 
558 		next_to_use =
559 		    (next_to_use + 1) % MAX_SEND_BUFFERS_PER_QUEUE;
560 
561 		(void)atomic_inc_return(&txq->pending_sends);
562 
563 		drbr_advance(ndev, txq->txq_br);
564 
565 		mana_gd_wq_ring_doorbell(gd->gdma_context, gdma_sq);
566 
567 		packets++;
568 		bytes += len;
569 	}
570 
571 	counter_enter();
572 	counter_u64_add_protected(tx_stats->packets, packets);
573 	counter_u64_add_protected(port_stats->tx_packets, packets);
574 	counter_u64_add_protected(tx_stats->bytes, bytes);
575 	counter_u64_add_protected(port_stats->tx_bytes, bytes);
576 	counter_exit();
577 
578 	txq->next_to_use = next_to_use;
579 }
580 
581 static void
582 mana_xmit_taskfunc(void *arg, int pending)
583 {
584 	struct mana_txq *txq = (struct mana_txq *)arg;
585 	if_t ndev = txq->ndev;
586 	struct mana_port_context *apc = if_getsoftc(ndev);
587 
588 	while (!drbr_empty(ndev, txq->txq_br) && apc->port_is_up &&
589 	    (if_getdrvflags(ndev) & MANA_TXQ_FULL) == IFF_DRV_RUNNING) {
590 		mtx_lock(&txq->txq_mtx);
591 		mana_xmit(txq);
592 		mtx_unlock(&txq->txq_mtx);
593 	}
594 }
595 
596 #define PULLUP_HDR(m, len)				\
597 do {							\
598 	if (unlikely((m)->m_len < (len))) {		\
599 		(m) = m_pullup((m), (len));		\
600 		if ((m) == NULL)			\
601 			return (NULL);			\
602 	}						\
603 } while (0)
604 
605 /*
606  * If this function failed, the mbuf would be freed.
607  */
608 static inline struct mbuf *
609 mana_tso_fixup(struct mbuf *mbuf)
610 {
611 	struct ether_vlan_header *eh = mtod(mbuf, struct ether_vlan_header *);
612 	struct tcphdr *th;
613 	uint16_t etype;
614 	int ehlen;
615 
616 	if (eh->evl_encap_proto == ntohs(ETHERTYPE_VLAN)) {
617 		etype = ntohs(eh->evl_proto);
618 		ehlen = ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN;
619 	} else {
620 		etype = ntohs(eh->evl_encap_proto);
621 		ehlen = ETHER_HDR_LEN;
622 	}
623 
624 	if (etype == ETHERTYPE_IP) {
625 		struct ip *ip;
626 		int iphlen;
627 
628 		PULLUP_HDR(mbuf, ehlen + sizeof(*ip));
629 		ip = mtodo(mbuf, ehlen);
630 		iphlen = ip->ip_hl << 2;
631 		mbuf->m_pkthdr.l3hlen = ehlen + iphlen;
632 
633 		PULLUP_HDR(mbuf, ehlen + iphlen + sizeof(*th));
634 		th = mtodo(mbuf, ehlen + iphlen);
635 
636 		ip->ip_len = 0;
637 		ip->ip_sum = 0;
638 		th->th_sum = in_pseudo(ip->ip_src.s_addr,
639 		    ip->ip_dst.s_addr, htons(IPPROTO_TCP));
640 	} else if (etype == ETHERTYPE_IPV6) {
641 		struct ip6_hdr *ip6;
642 
643 		PULLUP_HDR(mbuf, ehlen + sizeof(*ip6) + sizeof(*th));
644 		ip6 = mtodo(mbuf, ehlen);
645 		if (ip6->ip6_nxt != IPPROTO_TCP) {
646 			/* Realy something wrong, just return */
647 			mana_dbg(NULL, "TSO mbuf not TCP, freed.\n");
648 			m_freem(mbuf);
649 			return NULL;
650 		}
651 		mbuf->m_pkthdr.l3hlen = ehlen + sizeof(*ip6);
652 
653 		th = mtodo(mbuf, ehlen + sizeof(*ip6));
654 
655 		ip6->ip6_plen = 0;
656 		th->th_sum = in6_cksum_pseudo(ip6, 0, IPPROTO_TCP, 0);
657 	} else {
658 		/* CSUM_TSO is set but not IP protocol. */
659 		mana_warn(NULL, "TSO mbuf not right, freed.\n");
660 		m_freem(mbuf);
661 		return NULL;
662 	}
663 
664 	MANA_L3_PROTO(mbuf) = etype;
665 
666 	return (mbuf);
667 }
668 
669 /*
670  * If this function failed, the mbuf would be freed.
671  */
672 static inline struct mbuf *
673 mana_mbuf_csum_check(struct mbuf *mbuf)
674 {
675 	struct ether_vlan_header *eh = mtod(mbuf, struct ether_vlan_header *);
676 	struct mbuf *mbuf_next;
677 	uint16_t etype;
678 	int offset;
679 	int ehlen;
680 
681 	if (eh->evl_encap_proto == ntohs(ETHERTYPE_VLAN)) {
682 		etype = ntohs(eh->evl_proto);
683 		ehlen = ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN;
684 	} else {
685 		etype = ntohs(eh->evl_encap_proto);
686 		ehlen = ETHER_HDR_LEN;
687 	}
688 
689 	mbuf_next = m_getptr(mbuf, ehlen, &offset);
690 
691 	MANA_L4_PROTO(mbuf) = 0;
692 	if (etype == ETHERTYPE_IP) {
693 		const struct ip *ip;
694 		int iphlen;
695 
696 		ip = (struct ip *)(mtodo(mbuf_next, offset));
697 		iphlen = ip->ip_hl << 2;
698 		mbuf->m_pkthdr.l3hlen = ehlen + iphlen;
699 
700 		MANA_L4_PROTO(mbuf) = ip->ip_p;
701 	} else if (etype == ETHERTYPE_IPV6) {
702 		const struct ip6_hdr *ip6;
703 
704 		ip6 = (struct ip6_hdr *)(mtodo(mbuf_next, offset));
705 		mbuf->m_pkthdr.l3hlen = ehlen + sizeof(*ip6);
706 
707 		MANA_L4_PROTO(mbuf) = ip6->ip6_nxt;
708 	} else {
709 		MANA_L4_PROTO(mbuf) = 0;
710 	}
711 
712 	MANA_L3_PROTO(mbuf) = etype;
713 
714 	return (mbuf);
715 }
716 
717 static int
718 mana_start_xmit(if_t ifp, struct mbuf *m)
719 {
720 	struct mana_port_context *apc = if_getsoftc(ifp);
721 	struct mana_txq *txq;
722 	int is_drbr_empty;
723 	uint16_t txq_id;
724 	int err;
725 
726 	if (unlikely((!apc->port_is_up) ||
727 	    (if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0))
728 		return ENODEV;
729 
730 	if (m->m_pkthdr.csum_flags & CSUM_TSO) {
731 		m = mana_tso_fixup(m);
732 		if (unlikely(m == NULL)) {
733 			counter_enter();
734 			counter_u64_add_protected(apc->port_stats.tx_drops, 1);
735 			counter_exit();
736 			return EIO;
737 		}
738 	} else {
739 		m = mana_mbuf_csum_check(m);
740 		if (unlikely(m == NULL)) {
741 			counter_enter();
742 			counter_u64_add_protected(apc->port_stats.tx_drops, 1);
743 			counter_exit();
744 			return EIO;
745 		}
746 	}
747 
748 	if (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) {
749 		uint32_t hash = m->m_pkthdr.flowid;
750 		txq_id = apc->indir_table[(hash) & MANA_INDIRECT_TABLE_MASK] %
751 		    apc->num_queues;
752 	} else {
753 		txq_id = m->m_pkthdr.flowid % apc->num_queues;
754 	}
755 
756 	if (apc->enable_tx_altq)
757 		txq_id = apc->tx_qp[txq_id].txq.alt_txq_idx;
758 
759 	txq = &apc->tx_qp[txq_id].txq;
760 
761 	is_drbr_empty = drbr_empty(ifp, txq->txq_br);
762 	err = drbr_enqueue(ifp, txq->txq_br, m);
763 	if (unlikely(err)) {
764 		mana_warn(NULL, "txq %u failed to enqueue: %d\n",
765 		    txq_id, err);
766 		taskqueue_enqueue(txq->enqueue_tq, &txq->enqueue_task);
767 		return err;
768 	}
769 
770 	if (is_drbr_empty && mtx_trylock(&txq->txq_mtx)) {
771 		mana_xmit(txq);
772 		mtx_unlock(&txq->txq_mtx);
773 	} else {
774 		taskqueue_enqueue(txq->enqueue_tq, &txq->enqueue_task);
775 	}
776 
777 	return 0;
778 }
779 
780 static void
781 mana_cleanup_port_context(struct mana_port_context *apc)
782 {
783 	bus_dma_tag_destroy(apc->tx_buf_tag);
784 	bus_dma_tag_destroy(apc->rx_buf_tag);
785 	apc->rx_buf_tag = NULL;
786 
787 	free(apc->rxqs, M_DEVBUF);
788 	apc->rxqs = NULL;
789 
790 	mana_free_counters((counter_u64_t *)&apc->port_stats,
791 	    sizeof(struct mana_port_stats));
792 }
793 
794 static int
795 mana_init_port_context(struct mana_port_context *apc)
796 {
797 	device_t dev = apc->ac->gdma_dev->gdma_context->dev;
798 	uint32_t tso_maxsize;
799 	int err;
800 
801 	tso_maxsize = MAX_MBUF_FRAGS * MANA_TSO_MAXSEG_SZ -
802 	    (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN);
803 
804 	/* Create DMA tag for tx bufs */
805 	err = bus_dma_tag_create(bus_get_dma_tag(dev),	/* parent */
806 	    1, 0,			/* alignment, boundary	*/
807 	    BUS_SPACE_MAXADDR,		/* lowaddr		*/
808 	    BUS_SPACE_MAXADDR,		/* highaddr		*/
809 	    NULL, NULL,			/* filter, filterarg	*/
810 	    tso_maxsize,		/* maxsize		*/
811 	    MAX_MBUF_FRAGS,		/* nsegments		*/
812 	    tso_maxsize,		/* maxsegsize		*/
813 	    0,				/* flags		*/
814 	    NULL, NULL,			/* lockfunc, lockfuncarg*/
815 	    &apc->tx_buf_tag);
816 	if (unlikely(err)) {
817 		device_printf(dev, "Feiled to create TX DMA tag\n");
818 		return err;
819 	}
820 
821 	/* Create DMA tag for rx bufs */
822 	err = bus_dma_tag_create(bus_get_dma_tag(dev),	/* parent */
823 	    64, 0,			/* alignment, boundary	*/
824 	    BUS_SPACE_MAXADDR,		/* lowaddr		*/
825 	    BUS_SPACE_MAXADDR,		/* highaddr		*/
826 	    NULL, NULL,			/* filter, filterarg	*/
827 	    MJUMPAGESIZE,		/* maxsize		*/
828 	    1,				/* nsegments		*/
829 	    MJUMPAGESIZE,		/* maxsegsize		*/
830 	    0,				/* flags		*/
831 	    NULL, NULL,			/* lockfunc, lockfuncarg*/
832 	    &apc->rx_buf_tag);
833 	if (unlikely(err)) {
834 		device_printf(dev, "Feiled to create RX DMA tag\n");
835 		return err;
836 	}
837 
838 	apc->rxqs = mallocarray(apc->num_queues, sizeof(struct mana_rxq *),
839 	    M_DEVBUF, M_WAITOK | M_ZERO);
840 
841 	if (!apc->rxqs) {
842 		bus_dma_tag_destroy(apc->tx_buf_tag);
843 		bus_dma_tag_destroy(apc->rx_buf_tag);
844 		apc->rx_buf_tag = NULL;
845 		return ENOMEM;
846 	}
847 
848 	return 0;
849 }
850 
851 static int
852 mana_send_request(struct mana_context *ac, void *in_buf,
853     uint32_t in_len, void *out_buf, uint32_t out_len)
854 {
855 	struct gdma_context *gc = ac->gdma_dev->gdma_context;
856 	struct gdma_resp_hdr *resp = out_buf;
857 	struct gdma_req_hdr *req = in_buf;
858 	device_t dev = gc->dev;
859 	static atomic_t activity_id;
860 	int err;
861 
862 	req->dev_id = gc->mana.dev_id;
863 	req->activity_id = atomic_inc_return(&activity_id);
864 
865 	mana_dbg(NULL, "activity_id  = %u\n", activity_id);
866 
867 	err = mana_gd_send_request(gc, in_len, in_buf, out_len,
868 	    out_buf);
869 	if (err || resp->status) {
870 		device_printf(dev, "Failed to send mana message: %d, 0x%x\n",
871 			err, resp->status);
872 		return err ? err : EPROTO;
873 	}
874 
875 	if (req->dev_id.as_uint32 != resp->dev_id.as_uint32 ||
876 	    req->activity_id != resp->activity_id) {
877 		device_printf(dev,
878 		    "Unexpected mana message response: %x,%x,%x,%x\n",
879 		    req->dev_id.as_uint32, resp->dev_id.as_uint32,
880 		    req->activity_id, resp->activity_id);
881 		return EPROTO;
882 	}
883 
884 	return 0;
885 }
886 
887 static int
888 mana_verify_resp_hdr(const struct gdma_resp_hdr *resp_hdr,
889     const enum mana_command_code expected_code,
890     const uint32_t min_size)
891 {
892 	if (resp_hdr->response.msg_type != expected_code)
893 		return EPROTO;
894 
895 	if (resp_hdr->response.msg_version < GDMA_MESSAGE_V1)
896 		return EPROTO;
897 
898 	if (resp_hdr->response.msg_size < min_size)
899 		return EPROTO;
900 
901 	return 0;
902 }
903 
904 static int
905 mana_query_device_cfg(struct mana_context *ac, uint32_t proto_major_ver,
906     uint32_t proto_minor_ver, uint32_t proto_micro_ver,
907     uint16_t *max_num_vports)
908 {
909 	struct gdma_context *gc = ac->gdma_dev->gdma_context;
910 	struct mana_query_device_cfg_resp resp = {};
911 	struct mana_query_device_cfg_req req = {};
912 	device_t dev = gc->dev;
913 	int err = 0;
914 
915 	mana_gd_init_req_hdr(&req.hdr, MANA_QUERY_DEV_CONFIG,
916 	    sizeof(req), sizeof(resp));
917 	req.proto_major_ver = proto_major_ver;
918 	req.proto_minor_ver = proto_minor_ver;
919 	req.proto_micro_ver = proto_micro_ver;
920 
921 	err = mana_send_request(ac, &req, sizeof(req), &resp, sizeof(resp));
922 	if (err) {
923 		device_printf(dev, "Failed to query config: %d", err);
924 		return err;
925 	}
926 
927 	err = mana_verify_resp_hdr(&resp.hdr, MANA_QUERY_DEV_CONFIG,
928 	    sizeof(resp));
929 	if (err || resp.hdr.status) {
930 		device_printf(dev, "Invalid query result: %d, 0x%x\n", err,
931 		    resp.hdr.status);
932 		if (!err)
933 			err = EPROTO;
934 		return err;
935 	}
936 
937 	*max_num_vports = resp.max_num_vports;
938 
939 	mana_dbg(NULL, "mana max_num_vports from device = %d\n",
940 	    *max_num_vports);
941 
942 	return 0;
943 }
944 
945 static int
946 mana_query_vport_cfg(struct mana_port_context *apc, uint32_t vport_index,
947     uint32_t *max_sq, uint32_t *max_rq, uint32_t *num_indir_entry)
948 {
949 	struct mana_query_vport_cfg_resp resp = {};
950 	struct mana_query_vport_cfg_req req = {};
951 	int err;
952 
953 	mana_gd_init_req_hdr(&req.hdr, MANA_QUERY_VPORT_CONFIG,
954 	    sizeof(req), sizeof(resp));
955 
956 	req.vport_index = vport_index;
957 
958 	err = mana_send_request(apc->ac, &req, sizeof(req), &resp,
959 	    sizeof(resp));
960 	if (err)
961 		return err;
962 
963 	err = mana_verify_resp_hdr(&resp.hdr, MANA_QUERY_VPORT_CONFIG,
964 	    sizeof(resp));
965 	if (err)
966 		return err;
967 
968 	if (resp.hdr.status)
969 		return EPROTO;
970 
971 	*max_sq = resp.max_num_sq;
972 	*max_rq = resp.max_num_rq;
973 	*num_indir_entry = resp.num_indirection_ent;
974 
975 	apc->port_handle = resp.vport;
976 	memcpy(apc->mac_addr, resp.mac_addr, ETHER_ADDR_LEN);
977 
978 	return 0;
979 }
980 
981 void
982 mana_uncfg_vport(struct mana_port_context *apc)
983 {
984 	apc->vport_use_count--;
985 	if (apc->vport_use_count < 0) {
986 		mana_err(NULL,
987 		    "WARNING: vport_use_count less than 0: %u\n",
988 		    apc->vport_use_count);
989 	}
990 }
991 
992 int
993 mana_cfg_vport(struct mana_port_context *apc, uint32_t protection_dom_id,
994     uint32_t doorbell_pg_id)
995 {
996 	struct mana_config_vport_resp resp = {};
997 	struct mana_config_vport_req req = {};
998 	int err;
999 
1000 	/* This function is used to program the Ethernet port in the hardware
1001 	 * table. It can be called from the Ethernet driver or the RDMA driver.
1002 	 *
1003 	 * For Ethernet usage, the hardware supports only one active user on a
1004 	 * physical port. The driver checks on the port usage before programming
1005 	 * the hardware when creating the RAW QP (RDMA driver) or exposing the
1006 	 * device to kernel NET layer (Ethernet driver).
1007 	 *
1008 	 * Because the RDMA driver doesn't know in advance which QP type the
1009 	 * user will create, it exposes the device with all its ports. The user
1010 	 * may not be able to create RAW QP on a port if this port is already
1011 	 * in used by the Ethernet driver from the kernel.
1012 	 *
1013 	 * This physical port limitation only applies to the RAW QP. For RC QP,
1014 	 * the hardware doesn't have this limitation. The user can create RC
1015 	 * QPs on a physical port up to the hardware limits independent of the
1016 	 * Ethernet usage on the same port.
1017 	 */
1018 	if (apc->vport_use_count > 0) {
1019 		return EBUSY;
1020 	}
1021 	apc->vport_use_count++;
1022 
1023 	mana_gd_init_req_hdr(&req.hdr, MANA_CONFIG_VPORT_TX,
1024 	    sizeof(req), sizeof(resp));
1025 	req.vport = apc->port_handle;
1026 	req.pdid = protection_dom_id;
1027 	req.doorbell_pageid = doorbell_pg_id;
1028 
1029 	err = mana_send_request(apc->ac, &req, sizeof(req), &resp,
1030 	    sizeof(resp));
1031 	if (err) {
1032 		if_printf(apc->ndev, "Failed to configure vPort: %d\n", err);
1033 		goto out;
1034 	}
1035 
1036 	err = mana_verify_resp_hdr(&resp.hdr, MANA_CONFIG_VPORT_TX,
1037 	    sizeof(resp));
1038 	if (err || resp.hdr.status) {
1039 		if_printf(apc->ndev, "Failed to configure vPort: %d, 0x%x\n",
1040 		    err, resp.hdr.status);
1041 		if (!err)
1042 			err = EPROTO;
1043 
1044 		goto out;
1045 	}
1046 
1047 	apc->tx_shortform_allowed = resp.short_form_allowed;
1048 	apc->tx_vp_offset = resp.tx_vport_offset;
1049 
1050 	if_printf(apc->ndev, "Configured vPort %ju PD %u DB %u\n",
1051 	    apc->port_handle, protection_dom_id, doorbell_pg_id);
1052 
1053 out:
1054 	if (err)
1055 		mana_uncfg_vport(apc);
1056 
1057 	return err;
1058 }
1059 
1060 static int
1061 mana_cfg_vport_steering(struct mana_port_context *apc,
1062     enum TRI_STATE rx,
1063     bool update_default_rxobj, bool update_key,
1064     bool update_tab)
1065 {
1066 	uint16_t num_entries = MANA_INDIRECT_TABLE_SIZE;
1067 	struct mana_cfg_rx_steer_req *req = NULL;
1068 	struct mana_cfg_rx_steer_resp resp = {};
1069 	if_t ndev = apc->ndev;
1070 	mana_handle_t *req_indir_tab;
1071 	uint32_t req_buf_size;
1072 	int err;
1073 
1074 	req_buf_size = sizeof(*req) + sizeof(mana_handle_t) * num_entries;
1075 	req = malloc(req_buf_size, M_DEVBUF, M_WAITOK | M_ZERO);
1076 	if (!req)
1077 		return ENOMEM;
1078 
1079 	mana_gd_init_req_hdr(&req->hdr, MANA_CONFIG_VPORT_RX, req_buf_size,
1080 	    sizeof(resp));
1081 
1082 	req->vport = apc->port_handle;
1083 	req->num_indir_entries = num_entries;
1084 	req->indir_tab_offset = sizeof(*req);
1085 	req->rx_enable = rx;
1086 	req->rss_enable = apc->rss_state;
1087 	req->update_default_rxobj = update_default_rxobj;
1088 	req->update_hashkey = update_key;
1089 	req->update_indir_tab = update_tab;
1090 	req->default_rxobj = apc->default_rxobj;
1091 
1092 	if (update_key)
1093 		memcpy(&req->hashkey, apc->hashkey, MANA_HASH_KEY_SIZE);
1094 
1095 	if (update_tab) {
1096 		req_indir_tab = (mana_handle_t *)(req + 1);
1097 		memcpy(req_indir_tab, apc->rxobj_table,
1098 		       req->num_indir_entries * sizeof(mana_handle_t));
1099 	}
1100 
1101 	err = mana_send_request(apc->ac, req, req_buf_size, &resp,
1102 	    sizeof(resp));
1103 	if (err) {
1104 		if_printf(ndev, "Failed to configure vPort RX: %d\n", err);
1105 		goto out;
1106 	}
1107 
1108 	err = mana_verify_resp_hdr(&resp.hdr, MANA_CONFIG_VPORT_RX,
1109 	    sizeof(resp));
1110 	if (err) {
1111 		if_printf(ndev, "vPort RX configuration failed: %d\n", err);
1112 		goto out;
1113 	}
1114 
1115 	if (resp.hdr.status) {
1116 		if_printf(ndev, "vPort RX configuration failed: 0x%x\n",
1117 		    resp.hdr.status);
1118 		err = EPROTO;
1119 	}
1120 
1121 	if_printf(ndev, "Configured steering vPort %ju entries %u\n",
1122 	    apc->port_handle, num_entries);
1123 
1124 out:
1125 	free(req, M_DEVBUF);
1126 	return err;
1127 }
1128 
1129 int
1130 mana_create_wq_obj(struct mana_port_context *apc,
1131     mana_handle_t vport,
1132     uint32_t wq_type, struct mana_obj_spec *wq_spec,
1133     struct mana_obj_spec *cq_spec,
1134     mana_handle_t *wq_obj)
1135 {
1136 	struct mana_create_wqobj_resp resp = {};
1137 	struct mana_create_wqobj_req req = {};
1138 	if_t ndev = apc->ndev;
1139 	int err;
1140 
1141 	mana_gd_init_req_hdr(&req.hdr, MANA_CREATE_WQ_OBJ,
1142 	    sizeof(req), sizeof(resp));
1143 	req.vport = vport;
1144 	req.wq_type = wq_type;
1145 	req.wq_gdma_region = wq_spec->gdma_region;
1146 	req.cq_gdma_region = cq_spec->gdma_region;
1147 	req.wq_size = wq_spec->queue_size;
1148 	req.cq_size = cq_spec->queue_size;
1149 	req.cq_moderation_ctx_id = cq_spec->modr_ctx_id;
1150 	req.cq_parent_qid = cq_spec->attached_eq;
1151 
1152 	err = mana_send_request(apc->ac, &req, sizeof(req), &resp,
1153 	    sizeof(resp));
1154 	if (err) {
1155 		if_printf(ndev, "Failed to create WQ object: %d\n", err);
1156 		goto out;
1157 	}
1158 
1159 	err = mana_verify_resp_hdr(&resp.hdr, MANA_CREATE_WQ_OBJ,
1160 	    sizeof(resp));
1161 	if (err || resp.hdr.status) {
1162 		if_printf(ndev, "Failed to create WQ object: %d, 0x%x\n", err,
1163 		    resp.hdr.status);
1164 		if (!err)
1165 			err = EPROTO;
1166 		goto out;
1167 	}
1168 
1169 	if (resp.wq_obj == INVALID_MANA_HANDLE) {
1170 		if_printf(ndev, "Got an invalid WQ object handle\n");
1171 		err = EPROTO;
1172 		goto out;
1173 	}
1174 
1175 	*wq_obj = resp.wq_obj;
1176 	wq_spec->queue_index = resp.wq_id;
1177 	cq_spec->queue_index = resp.cq_id;
1178 
1179 	return 0;
1180 out:
1181 	return err;
1182 }
1183 
1184 void
1185 mana_destroy_wq_obj(struct mana_port_context *apc, uint32_t wq_type,
1186     mana_handle_t wq_obj)
1187 {
1188 	struct mana_destroy_wqobj_resp resp = {};
1189 	struct mana_destroy_wqobj_req req = {};
1190 	if_t ndev = apc->ndev;
1191 	int err;
1192 
1193 	mana_gd_init_req_hdr(&req.hdr, MANA_DESTROY_WQ_OBJ,
1194 	    sizeof(req), sizeof(resp));
1195 	req.wq_type = wq_type;
1196 	req.wq_obj_handle = wq_obj;
1197 
1198 	err = mana_send_request(apc->ac, &req, sizeof(req), &resp,
1199 	    sizeof(resp));
1200 	if (err) {
1201 		if_printf(ndev, "Failed to destroy WQ object: %d\n", err);
1202 		return;
1203 	}
1204 
1205 	err = mana_verify_resp_hdr(&resp.hdr, MANA_DESTROY_WQ_OBJ,
1206 	    sizeof(resp));
1207 	if (err || resp.hdr.status)
1208 		if_printf(ndev, "Failed to destroy WQ object: %d, 0x%x\n",
1209 		    err, resp.hdr.status);
1210 }
1211 
1212 static void
1213 mana_destroy_eq(struct mana_context *ac)
1214 {
1215 	struct gdma_context *gc = ac->gdma_dev->gdma_context;
1216 	struct gdma_queue *eq;
1217 	int i;
1218 
1219 	if (!ac->eqs)
1220 		return;
1221 
1222 	for (i = 0; i < gc->max_num_queues; i++) {
1223 		eq = ac->eqs[i].eq;
1224 		if (!eq)
1225 			continue;
1226 
1227 		mana_gd_destroy_queue(gc, eq);
1228 	}
1229 
1230 	free(ac->eqs, M_DEVBUF);
1231 	ac->eqs = NULL;
1232 }
1233 
1234 static int
1235 mana_create_eq(struct mana_context *ac)
1236 {
1237 	struct gdma_dev *gd = ac->gdma_dev;
1238 	struct gdma_context *gc = gd->gdma_context;
1239 	struct gdma_queue_spec spec = {};
1240 	int err;
1241 	int i;
1242 
1243 	ac->eqs = mallocarray(gc->max_num_queues, sizeof(struct mana_eq),
1244 	    M_DEVBUF, M_WAITOK | M_ZERO);
1245 	if (!ac->eqs)
1246 		return ENOMEM;
1247 
1248 	spec.type = GDMA_EQ;
1249 	spec.monitor_avl_buf = false;
1250 	spec.queue_size = EQ_SIZE;
1251 	spec.eq.callback = NULL;
1252 	spec.eq.context = ac->eqs;
1253 	spec.eq.log2_throttle_limit = LOG2_EQ_THROTTLE;
1254 
1255 	for (i = 0; i < gc->max_num_queues; i++) {
1256 		err = mana_gd_create_mana_eq(gd, &spec, &ac->eqs[i].eq);
1257 		if (err)
1258 			goto out;
1259 	}
1260 
1261 	return 0;
1262 out:
1263 	mana_destroy_eq(ac);
1264 	return err;
1265 }
1266 
1267 static int
1268 mana_fence_rq(struct mana_port_context *apc, struct mana_rxq *rxq)
1269 {
1270 	struct mana_fence_rq_resp resp = {};
1271 	struct mana_fence_rq_req req = {};
1272 	int err;
1273 
1274 	init_completion(&rxq->fence_event);
1275 
1276 	mana_gd_init_req_hdr(&req.hdr, MANA_FENCE_RQ,
1277 	    sizeof(req), sizeof(resp));
1278 	req.wq_obj_handle = rxq->rxobj;
1279 
1280 	err = mana_send_request(apc->ac, &req, sizeof(req), &resp,
1281 	    sizeof(resp));
1282 	if (err) {
1283 		if_printf(apc->ndev, "Failed to fence RQ %u: %d\n",
1284 		    rxq->rxq_idx, err);
1285 		return err;
1286 	}
1287 
1288 	err = mana_verify_resp_hdr(&resp.hdr, MANA_FENCE_RQ, sizeof(resp));
1289 	if (err || resp.hdr.status) {
1290 		if_printf(apc->ndev, "Failed to fence RQ %u: %d, 0x%x\n",
1291 		    rxq->rxq_idx, err, resp.hdr.status);
1292 		if (!err)
1293 			err = EPROTO;
1294 
1295 		return err;
1296 	}
1297 
1298 	if (wait_for_completion_timeout(&rxq->fence_event, 10 * hz)) {
1299 		if_printf(apc->ndev, "Failed to fence RQ %u: timed out\n",
1300 		    rxq->rxq_idx);
1301 		return ETIMEDOUT;
1302         }
1303 
1304 	return 0;
1305 }
1306 
1307 static void
1308 mana_fence_rqs(struct mana_port_context *apc)
1309 {
1310 	unsigned int rxq_idx;
1311 	struct mana_rxq *rxq;
1312 	int err;
1313 
1314 	for (rxq_idx = 0; rxq_idx < apc->num_queues; rxq_idx++) {
1315 		rxq = apc->rxqs[rxq_idx];
1316 		err = mana_fence_rq(apc, rxq);
1317 
1318 		/* In case of any error, use sleep instead. */
1319 		if (err)
1320 			gdma_msleep(100);
1321 	}
1322 }
1323 
1324 static int
1325 mana_move_wq_tail(struct gdma_queue *wq, uint32_t num_units)
1326 {
1327 	uint32_t used_space_old;
1328 	uint32_t used_space_new;
1329 
1330 	used_space_old = wq->head - wq->tail;
1331 	used_space_new = wq->head - (wq->tail + num_units);
1332 
1333 	if (used_space_new > used_space_old) {
1334 		mana_err(NULL,
1335 		    "WARNING: new used space %u greater than old one %u\n",
1336 		    used_space_new, used_space_old);
1337 		return ERANGE;
1338 	}
1339 
1340 	wq->tail += num_units;
1341 	return 0;
1342 }
1343 
1344 static void
1345 mana_poll_tx_cq(struct mana_cq *cq)
1346 {
1347 	struct gdma_comp *completions = cq->gdma_comp_buf;
1348 	struct gdma_posted_wqe_info *wqe_info;
1349 	struct mana_send_buf_info *tx_info;
1350 	unsigned int pkt_transmitted = 0;
1351 	unsigned int wqe_unit_cnt = 0;
1352 	struct mana_txq *txq = cq->txq;
1353 	struct mana_port_context *apc;
1354 	uint16_t next_to_complete;
1355 	if_t ndev;
1356 	int comp_read;
1357 	int txq_idx = txq->idx;;
1358 	int i;
1359 	int sa_drop = 0;
1360 
1361 	struct gdma_queue *gdma_wq;
1362 	unsigned int avail_space;
1363 	bool txq_full = false;
1364 
1365 	ndev = txq->ndev;
1366 	apc = if_getsoftc(ndev);
1367 
1368 	comp_read = mana_gd_poll_cq(cq->gdma_cq, completions,
1369 	    CQE_POLLING_BUFFER);
1370 
1371 	if (comp_read < 1)
1372 		return;
1373 
1374 	next_to_complete = txq->next_to_complete;
1375 
1376 	for (i = 0; i < comp_read; i++) {
1377 		struct mana_tx_comp_oob *cqe_oob;
1378 
1379 		if (!completions[i].is_sq) {
1380 			mana_err(NULL, "WARNING: Not for SQ\n");
1381 			return;
1382 		}
1383 
1384 		cqe_oob = (struct mana_tx_comp_oob *)completions[i].cqe_data;
1385 		if (cqe_oob->cqe_hdr.client_type !=
1386 				 MANA_CQE_COMPLETION) {
1387 			mana_err(NULL,
1388 			    "WARNING: Invalid CQE client type %u\n",
1389 			    cqe_oob->cqe_hdr.client_type);
1390 			return;
1391 		}
1392 
1393 		switch (cqe_oob->cqe_hdr.cqe_type) {
1394 		case CQE_TX_OKAY:
1395 			break;
1396 
1397 		case CQE_TX_SA_DROP:
1398 		case CQE_TX_MTU_DROP:
1399 		case CQE_TX_INVALID_OOB:
1400 		case CQE_TX_INVALID_ETH_TYPE:
1401 		case CQE_TX_HDR_PROCESSING_ERROR:
1402 		case CQE_TX_VF_DISABLED:
1403 		case CQE_TX_VPORT_IDX_OUT_OF_RANGE:
1404 		case CQE_TX_VPORT_DISABLED:
1405 		case CQE_TX_VLAN_TAGGING_VIOLATION:
1406 			sa_drop ++;
1407 			mana_err(NULL,
1408 			    "TX: txq %d CQE error %d, ntc = %d, "
1409 			    "pending sends = %d: err ignored.\n",
1410 			    txq_idx, cqe_oob->cqe_hdr.cqe_type,
1411 			    next_to_complete, txq->pending_sends);
1412 			break;
1413 
1414 		default:
1415 			/* If the CQE type is unexpected, log an error,
1416 			 * and go through the error path.
1417 			 */
1418 			mana_err(NULL,
1419 			    "ERROR: TX: Unexpected CQE type %d: HW BUG?\n",
1420 			    cqe_oob->cqe_hdr.cqe_type);
1421 			return;
1422 		}
1423 		if (txq->gdma_txq_id != completions[i].wq_num) {
1424 			mana_dbg(NULL,
1425 			    "txq gdma id not match completion wq num: "
1426 			    "%d != %d\n",
1427 			    txq->gdma_txq_id, completions[i].wq_num);
1428 			break;
1429 		}
1430 
1431 		tx_info = &txq->tx_buf_info[next_to_complete];
1432 		if (!tx_info->mbuf) {
1433 			mana_err(NULL,
1434 			    "WARNING: txq %d Empty mbuf on tx_info: %u, "
1435 			    "ntu = %u, pending_sends = %d, "
1436 			    "transmitted = %d, sa_drop = %d, i = %d, comp_read = %d\n",
1437 			    txq_idx, next_to_complete, txq->next_to_use,
1438 			    txq->pending_sends, pkt_transmitted, sa_drop,
1439 			    i, comp_read);
1440 			break;
1441 		}
1442 
1443 		wqe_info = &tx_info->wqe_inf;
1444 		wqe_unit_cnt += wqe_info->wqe_size_in_bu;
1445 
1446 		mana_tx_unmap_mbuf(apc, tx_info);
1447 		mb();
1448 
1449 		next_to_complete =
1450 		    (next_to_complete + 1) % MAX_SEND_BUFFERS_PER_QUEUE;
1451 
1452 		pkt_transmitted++;
1453 	}
1454 
1455 	txq->next_to_complete = next_to_complete;
1456 
1457 	if (wqe_unit_cnt == 0) {
1458 		mana_err(NULL,
1459 		    "WARNING: TX ring not proceeding!\n");
1460 		return;
1461 	}
1462 
1463 	mana_move_wq_tail(txq->gdma_sq, wqe_unit_cnt);
1464 
1465 	/* Ensure tail updated before checking q stop */
1466 	wmb();
1467 
1468 	gdma_wq = txq->gdma_sq;
1469 	avail_space = mana_gd_wq_avail_space(gdma_wq);
1470 
1471 
1472 	if ((if_getdrvflags(ndev) & MANA_TXQ_FULL) == MANA_TXQ_FULL) {
1473 		txq_full = true;
1474 	}
1475 
1476 	/* Ensure checking txq_full before apc->port_is_up. */
1477 	rmb();
1478 
1479 	if (txq_full && apc->port_is_up && avail_space >= MAX_TX_WQE_SIZE) {
1480 		/* Grab the txq lock and re-test */
1481 		mtx_lock(&txq->txq_mtx);
1482 		avail_space = mana_gd_wq_avail_space(gdma_wq);
1483 
1484 		if ((if_getdrvflags(ndev) & MANA_TXQ_FULL) == MANA_TXQ_FULL &&
1485 		    apc->port_is_up && avail_space >= MAX_TX_WQE_SIZE) {
1486 			/* Clear the Q full flag */
1487 			if_setdrvflagbits(apc->ndev, IFF_DRV_RUNNING,
1488 			    IFF_DRV_OACTIVE);
1489 			counter_u64_add(txq->stats.wakeup, 1);
1490 			if (txq->alt_txq_idx != txq->idx) {
1491 				uint64_t stops = counter_u64_fetch(txq->stats.stop);
1492 				uint64_t wakeups = counter_u64_fetch(txq->stats.wakeup);
1493 				/* Reset alt_txq_idx back if it is not overloaded */
1494 				if (stops < wakeups) {
1495 					txq->alt_txq_idx = txq->idx;
1496 					counter_u64_add(txq->stats.alt_reset, 1);
1497 				}
1498 			}
1499 			rmb();
1500 			/* Schedule a tx enqueue task */
1501 			taskqueue_enqueue(txq->enqueue_tq, &txq->enqueue_task);
1502 		}
1503 		mtx_unlock(&txq->txq_mtx);
1504 	}
1505 
1506 	if (atomic_sub_return(pkt_transmitted, &txq->pending_sends) < 0)
1507 		mana_err(NULL,
1508 		    "WARNING: TX %d pending_sends error: %d\n",
1509 		    txq->idx, txq->pending_sends);
1510 
1511 	cq->work_done = pkt_transmitted;
1512 }
1513 
1514 static void
1515 mana_post_pkt_rxq(struct mana_rxq *rxq)
1516 {
1517 	struct mana_recv_buf_oob *recv_buf_oob;
1518 	uint32_t curr_index;
1519 	int err;
1520 
1521 	curr_index = rxq->buf_index++;
1522 	if (rxq->buf_index == rxq->num_rx_buf)
1523 		rxq->buf_index = 0;
1524 
1525 	recv_buf_oob = &rxq->rx_oobs[curr_index];
1526 
1527 	err = mana_gd_post_work_request(rxq->gdma_rq, &recv_buf_oob->wqe_req,
1528 	    &recv_buf_oob->wqe_inf);
1529 	if (err) {
1530 		mana_err(NULL, "WARNING: rxq %u post pkt err %d\n",
1531 		    rxq->rxq_idx, err);
1532 		return;
1533 	}
1534 
1535 	if (recv_buf_oob->wqe_inf.wqe_size_in_bu != 1) {
1536 		mana_err(NULL, "WARNING: rxq %u wqe_size_in_bu %u\n",
1537 		    rxq->rxq_idx, recv_buf_oob->wqe_inf.wqe_size_in_bu);
1538 	}
1539 }
1540 
1541 static void
1542 mana_rx_mbuf(struct mbuf *mbuf, struct mana_rxcomp_oob *cqe,
1543     struct mana_rxq *rxq)
1544 {
1545 	struct mana_stats *rx_stats = &rxq->stats;
1546 	if_t ndev = rxq->ndev;
1547 	uint32_t pkt_len = cqe->ppi[0].pkt_len;
1548 	uint16_t rxq_idx = rxq->rxq_idx;
1549 	struct mana_port_context *apc;
1550 	bool do_lro = false;
1551 	bool do_if_input;
1552 
1553 	apc = if_getsoftc(ndev);
1554 	rxq->rx_cq.work_done++;
1555 
1556 	if (!mbuf) {
1557 		return;
1558 	}
1559 
1560 	mbuf->m_flags |= M_PKTHDR;
1561 	mbuf->m_pkthdr.len = pkt_len;
1562 	mbuf->m_len = pkt_len;
1563 	mbuf->m_pkthdr.rcvif = ndev;
1564 
1565 	if ((if_getcapenable(ndev) & IFCAP_RXCSUM ||
1566 	    if_getcapenable(ndev) & IFCAP_RXCSUM_IPV6) &&
1567 	    (cqe->rx_iphdr_csum_succeed)) {
1568 		mbuf->m_pkthdr.csum_flags = CSUM_IP_CHECKED;
1569 		mbuf->m_pkthdr.csum_flags |= CSUM_IP_VALID;
1570 		if (cqe->rx_tcp_csum_succeed || cqe->rx_udp_csum_succeed) {
1571 			mbuf->m_pkthdr.csum_flags |=
1572 			    (CSUM_DATA_VALID | CSUM_PSEUDO_HDR);
1573 			mbuf->m_pkthdr.csum_data = 0xffff;
1574 
1575 			if (cqe->rx_tcp_csum_succeed)
1576 				do_lro = true;
1577 		}
1578 	}
1579 
1580 	if (cqe->rx_hashtype != 0) {
1581 		mbuf->m_pkthdr.flowid = cqe->ppi[0].pkt_hash;
1582 
1583 		uint16_t hashtype = cqe->rx_hashtype;
1584 		if (hashtype & NDIS_HASH_IPV4_MASK) {
1585 			hashtype &= NDIS_HASH_IPV4_MASK;
1586 			switch (hashtype) {
1587 			case NDIS_HASH_TCP_IPV4:
1588 				M_HASHTYPE_SET(mbuf, M_HASHTYPE_RSS_TCP_IPV4);
1589 				break;
1590 			case NDIS_HASH_UDP_IPV4:
1591 				M_HASHTYPE_SET(mbuf, M_HASHTYPE_RSS_UDP_IPV4);
1592 				break;
1593 			default:
1594 				M_HASHTYPE_SET(mbuf, M_HASHTYPE_RSS_IPV4);
1595 			}
1596 		} else if (hashtype & NDIS_HASH_IPV6_MASK) {
1597 			hashtype &= NDIS_HASH_IPV6_MASK;
1598 			switch (hashtype) {
1599 			case NDIS_HASH_TCP_IPV6:
1600 				M_HASHTYPE_SET(mbuf, M_HASHTYPE_RSS_TCP_IPV6);
1601 				break;
1602 			case NDIS_HASH_TCP_IPV6_EX:
1603 				M_HASHTYPE_SET(mbuf,
1604 				    M_HASHTYPE_RSS_TCP_IPV6_EX);
1605 				break;
1606 			case NDIS_HASH_UDP_IPV6:
1607 				M_HASHTYPE_SET(mbuf, M_HASHTYPE_RSS_UDP_IPV6);
1608 				break;
1609 			case NDIS_HASH_UDP_IPV6_EX:
1610 				M_HASHTYPE_SET(mbuf,
1611 				    M_HASHTYPE_RSS_UDP_IPV6_EX);
1612 				break;
1613 			default:
1614 				M_HASHTYPE_SET(mbuf, M_HASHTYPE_RSS_IPV6);
1615 			}
1616 		} else {
1617 			M_HASHTYPE_SET(mbuf, M_HASHTYPE_OPAQUE_HASH);
1618 		}
1619 	} else {
1620 		mbuf->m_pkthdr.flowid = rxq_idx;
1621 		M_HASHTYPE_SET(mbuf, M_HASHTYPE_NONE);
1622 	}
1623 
1624 	do_if_input = true;
1625 	if ((if_getcapenable(ndev) & IFCAP_LRO) && do_lro) {
1626 		if (rxq->lro.lro_cnt != 0 &&
1627 		    tcp_lro_rx(&rxq->lro, mbuf, 0) == 0)
1628 			do_if_input = false;
1629 	}
1630 	if (do_if_input) {
1631 		if_input(ndev, mbuf);
1632 	}
1633 
1634 	counter_enter();
1635 	counter_u64_add_protected(rx_stats->packets, 1);
1636 	counter_u64_add_protected(apc->port_stats.rx_packets, 1);
1637 	counter_u64_add_protected(rx_stats->bytes, pkt_len);
1638 	counter_u64_add_protected(apc->port_stats.rx_bytes, pkt_len);
1639 	counter_exit();
1640 }
1641 
1642 static void
1643 mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq,
1644     struct gdma_comp *cqe)
1645 {
1646 	struct mana_rxcomp_oob *oob = (struct mana_rxcomp_oob *)cqe->cqe_data;
1647 	struct mana_recv_buf_oob *rxbuf_oob;
1648 	if_t ndev = rxq->ndev;
1649 	struct mana_port_context *apc;
1650 	struct mbuf *old_mbuf;
1651 	uint32_t curr, pktlen;
1652 	int err;
1653 
1654 	switch (oob->cqe_hdr.cqe_type) {
1655 	case CQE_RX_OKAY:
1656 		break;
1657 
1658 	case CQE_RX_TRUNCATED:
1659 		apc = if_getsoftc(ndev);
1660 		counter_u64_add(apc->port_stats.rx_drops, 1);
1661 		rxbuf_oob = &rxq->rx_oobs[rxq->buf_index];
1662 		if_printf(ndev, "Dropped a truncated packet\n");
1663 		goto drop;
1664 
1665 	case CQE_RX_COALESCED_4:
1666 		if_printf(ndev, "RX coalescing is unsupported\n");
1667 		return;
1668 
1669 	case CQE_RX_OBJECT_FENCE:
1670 		complete(&rxq->fence_event);
1671 		return;
1672 
1673 	default:
1674 		if_printf(ndev, "Unknown RX CQE type = %d\n",
1675 		    oob->cqe_hdr.cqe_type);
1676 		return;
1677 	}
1678 
1679 	if (oob->cqe_hdr.cqe_type != CQE_RX_OKAY)
1680 		return;
1681 
1682 	pktlen = oob->ppi[0].pkt_len;
1683 
1684 	if (pktlen == 0) {
1685 		/* data packets should never have packetlength of zero */
1686 		if_printf(ndev, "RX pkt len=0, rq=%u, cq=%u, rxobj=0x%jx\n",
1687 		    rxq->gdma_id, cq->gdma_id, rxq->rxobj);
1688 		return;
1689 	}
1690 
1691 	curr = rxq->buf_index;
1692 	rxbuf_oob = &rxq->rx_oobs[curr];
1693 	if (rxbuf_oob->wqe_inf.wqe_size_in_bu != 1) {
1694 		mana_err(NULL, "WARNING: Rx Incorrect complete "
1695 		    "WQE size %u\n",
1696 		    rxbuf_oob->wqe_inf.wqe_size_in_bu);
1697 	}
1698 
1699 	apc = if_getsoftc(ndev);
1700 
1701 	old_mbuf = rxbuf_oob->mbuf;
1702 
1703 	/* Unload DMA map for the old mbuf */
1704 	mana_unload_rx_mbuf(apc, rxq, rxbuf_oob, false);
1705 
1706 	/* Load a new mbuf to replace the old one */
1707 	err = mana_load_rx_mbuf(apc, rxq, rxbuf_oob, true);
1708 	if (err) {
1709 		mana_dbg(NULL,
1710 		    "failed to load rx mbuf, err = %d, packet dropped.\n",
1711 		    err);
1712 		counter_u64_add(rxq->stats.mbuf_alloc_fail, 1);
1713 		/*
1714 		 * Failed to load new mbuf, rxbuf_oob->mbuf is still
1715 		 * pointing to the old one. Drop the packet.
1716 		 */
1717 		 old_mbuf = NULL;
1718 		 /* Reload the existing mbuf */
1719 		 mana_load_rx_mbuf(apc, rxq, rxbuf_oob, false);
1720 	}
1721 
1722 	mana_rx_mbuf(old_mbuf, oob, rxq);
1723 
1724 drop:
1725 	mana_move_wq_tail(rxq->gdma_rq, rxbuf_oob->wqe_inf.wqe_size_in_bu);
1726 
1727 	mana_post_pkt_rxq(rxq);
1728 }
1729 
1730 static void
1731 mana_poll_rx_cq(struct mana_cq *cq)
1732 {
1733 	struct gdma_comp *comp = cq->gdma_comp_buf;
1734 	int comp_read, i;
1735 
1736 	comp_read = mana_gd_poll_cq(cq->gdma_cq, comp, CQE_POLLING_BUFFER);
1737 	KASSERT(comp_read <= CQE_POLLING_BUFFER,
1738 	    ("comp_read %d great than buf size %d",
1739 	    comp_read, CQE_POLLING_BUFFER));
1740 
1741 	for (i = 0; i < comp_read; i++) {
1742 		if (comp[i].is_sq == true) {
1743 			mana_err(NULL,
1744 			    "WARNING: CQE not for receive queue\n");
1745 			return;
1746 		}
1747 
1748 		/* verify recv cqe references the right rxq */
1749 		if (comp[i].wq_num != cq->rxq->gdma_id) {
1750 			mana_err(NULL,
1751 			    "WARNING: Received CQE %d  not for "
1752 			    "this receive queue %d\n",
1753 			    comp[i].wq_num,  cq->rxq->gdma_id);
1754 			return;
1755 		}
1756 
1757 		mana_process_rx_cqe(cq->rxq, cq, &comp[i]);
1758 	}
1759 
1760 	if (comp_read > 0) {
1761 		struct gdma_context *gc =
1762 		    cq->rxq->gdma_rq->gdma_dev->gdma_context;
1763 
1764 		mana_gd_wq_ring_doorbell(gc, cq->rxq->gdma_rq);
1765 	}
1766 
1767 	tcp_lro_flush_all(&cq->rxq->lro);
1768 }
1769 
1770 static void
1771 mana_cq_handler(void *context, struct gdma_queue *gdma_queue)
1772 {
1773 	struct mana_cq *cq = context;
1774 	uint8_t arm_bit;
1775 
1776 	KASSERT(cq->gdma_cq == gdma_queue,
1777 	    ("cq do not match %p, %p", cq->gdma_cq, gdma_queue));
1778 
1779 	if (cq->type == MANA_CQ_TYPE_RX) {
1780 		mana_poll_rx_cq(cq);
1781 	} else {
1782 		mana_poll_tx_cq(cq);
1783 	}
1784 
1785 	if (cq->work_done < cq->budget && cq->do_not_ring_db == false)
1786 		arm_bit = SET_ARM_BIT;
1787 	else
1788 		arm_bit = 0;
1789 
1790 	mana_gd_ring_cq(gdma_queue, arm_bit);
1791 }
1792 
1793 #define MANA_POLL_BUDGET	8
1794 #define MANA_RX_BUDGET		256
1795 #define MANA_TX_BUDGET		MAX_SEND_BUFFERS_PER_QUEUE
1796 
1797 static void
1798 mana_poll(void *arg, int pending)
1799 {
1800 	struct mana_cq *cq = arg;
1801 	int i;
1802 
1803 	cq->work_done = 0;
1804 	if (cq->type == MANA_CQ_TYPE_RX) {
1805 		cq->budget = MANA_RX_BUDGET;
1806 	} else {
1807 		cq->budget = MANA_TX_BUDGET;
1808 	}
1809 
1810 	for (i = 0; i < MANA_POLL_BUDGET; i++) {
1811 		/*
1812 		 * If this is the last loop, set the budget big enough
1813 		 * so it will arm the CQ any way.
1814 		 */
1815 		if (i == (MANA_POLL_BUDGET - 1))
1816 			cq->budget = CQE_POLLING_BUFFER + 1;
1817 
1818 		mana_cq_handler(cq, cq->gdma_cq);
1819 
1820 		if (cq->work_done < cq->budget)
1821 			break;
1822 
1823 		cq->work_done = 0;
1824 	}
1825 }
1826 
1827 static void
1828 mana_schedule_task(void *arg, struct gdma_queue *gdma_queue)
1829 {
1830 	struct mana_cq *cq = arg;
1831 
1832 	taskqueue_enqueue(cq->cleanup_tq, &cq->cleanup_task);
1833 }
1834 
1835 static void
1836 mana_deinit_cq(struct mana_port_context *apc, struct mana_cq *cq)
1837 {
1838 	struct gdma_dev *gd = apc->ac->gdma_dev;
1839 
1840 	if (!cq->gdma_cq)
1841 		return;
1842 
1843 	/* Drain cleanup taskqueue */
1844 	if (cq->cleanup_tq) {
1845 		while (taskqueue_cancel(cq->cleanup_tq,
1846 		    &cq->cleanup_task, NULL)) {
1847 			taskqueue_drain(cq->cleanup_tq,
1848 			    &cq->cleanup_task);
1849 		}
1850 
1851 		taskqueue_free(cq->cleanup_tq);
1852 	}
1853 
1854 	mana_gd_destroy_queue(gd->gdma_context, cq->gdma_cq);
1855 }
1856 
1857 static void
1858 mana_deinit_txq(struct mana_port_context *apc, struct mana_txq *txq)
1859 {
1860 	struct gdma_dev *gd = apc->ac->gdma_dev;
1861 	struct mana_send_buf_info *txbuf_info;
1862 	uint32_t pending_sends;
1863 	int i;
1864 
1865 	if (!txq->gdma_sq)
1866 		return;
1867 
1868 	if ((pending_sends = atomic_read(&txq->pending_sends)) > 0) {
1869 		mana_err(NULL,
1870 		    "WARNING: txq pending sends not zero: %u\n",
1871 		    pending_sends);
1872 	}
1873 
1874 	if (txq->next_to_use != txq->next_to_complete) {
1875 		mana_err(NULL,
1876 		    "WARNING: txq buf not completed, "
1877 		    "next use %u, next complete %u\n",
1878 		    txq->next_to_use, txq->next_to_complete);
1879 	}
1880 
1881 	/* Flush buf ring. Grab txq mtx lock */
1882 	if (txq->txq_br) {
1883 		mtx_lock(&txq->txq_mtx);
1884 		drbr_flush(apc->ndev, txq->txq_br);
1885 		mtx_unlock(&txq->txq_mtx);
1886 		buf_ring_free(txq->txq_br, M_DEVBUF);
1887 	}
1888 
1889 	/* Drain taskqueue */
1890 	if (txq->enqueue_tq) {
1891 		while (taskqueue_cancel(txq->enqueue_tq,
1892 		    &txq->enqueue_task, NULL)) {
1893 			taskqueue_drain(txq->enqueue_tq,
1894 			    &txq->enqueue_task);
1895 		}
1896 
1897 		taskqueue_free(txq->enqueue_tq);
1898 	}
1899 
1900 	if (txq->tx_buf_info) {
1901 		/* Free all mbufs which are still in-flight */
1902 		for (i = 0; i < MAX_SEND_BUFFERS_PER_QUEUE; i++) {
1903 			txbuf_info = &txq->tx_buf_info[i];
1904 			if (txbuf_info->mbuf) {
1905 				mana_tx_unmap_mbuf(apc, txbuf_info);
1906 			}
1907 		}
1908 
1909 		free(txq->tx_buf_info, M_DEVBUF);
1910 	}
1911 
1912 	mana_free_counters((counter_u64_t *)&txq->stats,
1913 	    sizeof(txq->stats));
1914 
1915 	mana_gd_destroy_queue(gd->gdma_context, txq->gdma_sq);
1916 
1917 	mtx_destroy(&txq->txq_mtx);
1918 }
1919 
1920 static void
1921 mana_destroy_txq(struct mana_port_context *apc)
1922 {
1923 	int i;
1924 
1925 	if (!apc->tx_qp)
1926 		return;
1927 
1928 	for (i = 0; i < apc->num_queues; i++) {
1929 		mana_destroy_wq_obj(apc, GDMA_SQ, apc->tx_qp[i].tx_object);
1930 
1931 		mana_deinit_cq(apc, &apc->tx_qp[i].tx_cq);
1932 
1933 		mana_deinit_txq(apc, &apc->tx_qp[i].txq);
1934 	}
1935 
1936 	free(apc->tx_qp, M_DEVBUF);
1937 	apc->tx_qp = NULL;
1938 }
1939 
1940 static int
1941 mana_create_txq(struct mana_port_context *apc, if_t net)
1942 {
1943 	struct mana_context *ac = apc->ac;
1944 	struct gdma_dev *gd = ac->gdma_dev;
1945 	struct mana_obj_spec wq_spec;
1946 	struct mana_obj_spec cq_spec;
1947 	struct gdma_queue_spec spec;
1948 	struct gdma_context *gc;
1949 	struct mana_txq *txq;
1950 	struct mana_cq *cq;
1951 	uint32_t txq_size;
1952 	uint32_t cq_size;
1953 	int err;
1954 	int i;
1955 
1956 	apc->tx_qp = mallocarray(apc->num_queues, sizeof(struct mana_tx_qp),
1957 	    M_DEVBUF, M_WAITOK | M_ZERO);
1958 	if (!apc->tx_qp)
1959 		return ENOMEM;
1960 
1961 	/*  The minimum size of the WQE is 32 bytes, hence
1962 	 *  MAX_SEND_BUFFERS_PER_QUEUE represents the maximum number of WQEs
1963 	 *  the SQ can store. This value is then used to size other queues
1964 	 *  to prevent overflow.
1965 	 */
1966 	txq_size = MAX_SEND_BUFFERS_PER_QUEUE * 32;
1967 	KASSERT(IS_ALIGNED(txq_size, PAGE_SIZE),
1968 	    ("txq size not page aligned"));
1969 
1970 	cq_size = MAX_SEND_BUFFERS_PER_QUEUE * COMP_ENTRY_SIZE;
1971 	cq_size = ALIGN(cq_size, PAGE_SIZE);
1972 
1973 	gc = gd->gdma_context;
1974 
1975 	for (i = 0; i < apc->num_queues; i++) {
1976 		apc->tx_qp[i].tx_object = INVALID_MANA_HANDLE;
1977 
1978 		/* Create SQ */
1979 		txq = &apc->tx_qp[i].txq;
1980 
1981 		txq->ndev = net;
1982 		txq->vp_offset = apc->tx_vp_offset;
1983 		txq->idx = i;
1984 		txq->alt_txq_idx = i;
1985 
1986 		memset(&spec, 0, sizeof(spec));
1987 		spec.type = GDMA_SQ;
1988 		spec.monitor_avl_buf = true;
1989 		spec.queue_size = txq_size;
1990 		err = mana_gd_create_mana_wq_cq(gd, &spec, &txq->gdma_sq);
1991 		if (err)
1992 			goto out;
1993 
1994 		/* Create SQ's CQ */
1995 		cq = &apc->tx_qp[i].tx_cq;
1996 		cq->type = MANA_CQ_TYPE_TX;
1997 
1998 		cq->txq = txq;
1999 
2000 		memset(&spec, 0, sizeof(spec));
2001 		spec.type = GDMA_CQ;
2002 		spec.monitor_avl_buf = false;
2003 		spec.queue_size = cq_size;
2004 		spec.cq.callback = mana_schedule_task;
2005 		spec.cq.parent_eq = ac->eqs[i].eq;
2006 		spec.cq.context = cq;
2007 		err = mana_gd_create_mana_wq_cq(gd, &spec, &cq->gdma_cq);
2008 		if (err)
2009 			goto out;
2010 
2011 		memset(&wq_spec, 0, sizeof(wq_spec));
2012 		memset(&cq_spec, 0, sizeof(cq_spec));
2013 
2014 		wq_spec.gdma_region = txq->gdma_sq->mem_info.dma_region_handle;
2015 		wq_spec.queue_size = txq->gdma_sq->queue_size;
2016 
2017 		cq_spec.gdma_region = cq->gdma_cq->mem_info.dma_region_handle;
2018 		cq_spec.queue_size = cq->gdma_cq->queue_size;
2019 		cq_spec.modr_ctx_id = 0;
2020 		cq_spec.attached_eq = cq->gdma_cq->cq.parent->id;
2021 
2022 		err = mana_create_wq_obj(apc, apc->port_handle, GDMA_SQ,
2023 		    &wq_spec, &cq_spec, &apc->tx_qp[i].tx_object);
2024 
2025 		if (err)
2026 			goto out;
2027 
2028 		txq->gdma_sq->id = wq_spec.queue_index;
2029 		cq->gdma_cq->id = cq_spec.queue_index;
2030 
2031 		txq->gdma_sq->mem_info.dma_region_handle =
2032 		    GDMA_INVALID_DMA_REGION;
2033 		cq->gdma_cq->mem_info.dma_region_handle =
2034 		    GDMA_INVALID_DMA_REGION;
2035 
2036 		txq->gdma_txq_id = txq->gdma_sq->id;
2037 
2038 		cq->gdma_id = cq->gdma_cq->id;
2039 
2040 		mana_dbg(NULL,
2041 		    "txq %d, txq gdma id %d, txq cq gdma id %d\n",
2042 		    i, txq->gdma_txq_id, cq->gdma_id);;
2043 
2044 		if (cq->gdma_id >= gc->max_num_cqs) {
2045 			if_printf(net, "CQ id %u too large.\n", cq->gdma_id);
2046 			err = EINVAL;
2047 			goto out;
2048 		}
2049 
2050 		gc->cq_table[cq->gdma_id] = cq->gdma_cq;
2051 
2052 		/* Initialize tx specific data */
2053 		txq->tx_buf_info = malloc(MAX_SEND_BUFFERS_PER_QUEUE *
2054 		    sizeof(struct mana_send_buf_info),
2055 		    M_DEVBUF, M_WAITOK | M_ZERO);
2056 		if (unlikely(txq->tx_buf_info == NULL)) {
2057 			if_printf(net,
2058 			    "Failed to allocate tx buf info for SQ %u\n",
2059 			    txq->gdma_sq->id);
2060 			err = ENOMEM;
2061 			goto out;
2062 		}
2063 
2064 
2065 		snprintf(txq->txq_mtx_name, nitems(txq->txq_mtx_name),
2066 		    "mana:tx(%d)", i);
2067 		mtx_init(&txq->txq_mtx, txq->txq_mtx_name, NULL, MTX_DEF);
2068 
2069 		txq->txq_br = buf_ring_alloc(4 * MAX_SEND_BUFFERS_PER_QUEUE,
2070 		    M_DEVBUF, M_WAITOK, &txq->txq_mtx);
2071 		if (unlikely(txq->txq_br == NULL)) {
2072 			if_printf(net,
2073 			    "Failed to allocate buf ring for SQ %u\n",
2074 			    txq->gdma_sq->id);
2075 			err = ENOMEM;
2076 			goto out;
2077 		}
2078 
2079 		/* Allocate taskqueue for deferred send */
2080 		TASK_INIT(&txq->enqueue_task, 0, mana_xmit_taskfunc, txq);
2081 		txq->enqueue_tq = taskqueue_create_fast("mana_tx_enque",
2082 		    M_NOWAIT, taskqueue_thread_enqueue, &txq->enqueue_tq);
2083 		if (unlikely(txq->enqueue_tq == NULL)) {
2084 			if_printf(net,
2085 			    "Unable to create tx %d enqueue task queue\n", i);
2086 			err = ENOMEM;
2087 			goto out;
2088 		}
2089 		taskqueue_start_threads(&txq->enqueue_tq, 1, PI_NET,
2090 		    "mana txq p%u-tx%d", apc->port_idx, i);
2091 
2092 		mana_alloc_counters((counter_u64_t *)&txq->stats,
2093 		    sizeof(txq->stats));
2094 
2095 		/* Allocate and start the cleanup task on CQ */
2096 		cq->do_not_ring_db = false;
2097 
2098 		NET_TASK_INIT(&cq->cleanup_task, 0, mana_poll, cq);
2099 		cq->cleanup_tq =
2100 		    taskqueue_create_fast("mana tx cq cleanup",
2101 		    M_WAITOK, taskqueue_thread_enqueue,
2102 		    &cq->cleanup_tq);
2103 
2104 		if (apc->last_tx_cq_bind_cpu < 0)
2105 			apc->last_tx_cq_bind_cpu = CPU_FIRST();
2106 		cq->cpu = apc->last_tx_cq_bind_cpu;
2107 		apc->last_tx_cq_bind_cpu = CPU_NEXT(apc->last_tx_cq_bind_cpu);
2108 
2109 		if (apc->bind_cleanup_thread_cpu) {
2110 			cpuset_t cpu_mask;
2111 			CPU_SETOF(cq->cpu, &cpu_mask);
2112 			taskqueue_start_threads_cpuset(&cq->cleanup_tq,
2113 			    1, PI_NET, &cpu_mask,
2114 			    "mana cq p%u-tx%u-cpu%d",
2115 			    apc->port_idx, txq->idx, cq->cpu);
2116 		} else {
2117 			taskqueue_start_threads(&cq->cleanup_tq, 1,
2118 			    PI_NET, "mana cq p%u-tx%u",
2119 			    apc->port_idx, txq->idx);
2120 		}
2121 
2122 		mana_gd_ring_cq(cq->gdma_cq, SET_ARM_BIT);
2123 	}
2124 
2125 	return 0;
2126 out:
2127 	mana_destroy_txq(apc);
2128 	return err;
2129 }
2130 
2131 static void
2132 mana_destroy_rxq(struct mana_port_context *apc, struct mana_rxq *rxq,
2133     bool validate_state)
2134 {
2135 	struct gdma_context *gc = apc->ac->gdma_dev->gdma_context;
2136 	struct mana_recv_buf_oob *rx_oob;
2137 	int i;
2138 
2139 	if (!rxq)
2140 		return;
2141 
2142 	if (validate_state) {
2143 		/*
2144 		 * XXX Cancel and drain cleanup task queue here.
2145 		 */
2146 		;
2147 	}
2148 
2149 	mana_destroy_wq_obj(apc, GDMA_RQ, rxq->rxobj);
2150 
2151 	mana_deinit_cq(apc, &rxq->rx_cq);
2152 
2153 	mana_free_counters((counter_u64_t *)&rxq->stats,
2154 	    sizeof(rxq->stats));
2155 
2156 	/* Free LRO resources */
2157 	tcp_lro_free(&rxq->lro);
2158 
2159 	for (i = 0; i < rxq->num_rx_buf; i++) {
2160 		rx_oob = &rxq->rx_oobs[i];
2161 
2162 		if (rx_oob->mbuf)
2163 			mana_unload_rx_mbuf(apc, rxq, rx_oob, true);
2164 
2165 		bus_dmamap_destroy(apc->rx_buf_tag, rx_oob->dma_map);
2166 	}
2167 
2168 	if (rxq->gdma_rq)
2169 		mana_gd_destroy_queue(gc, rxq->gdma_rq);
2170 
2171 	free(rxq, M_DEVBUF);
2172 }
2173 
2174 #define MANA_WQE_HEADER_SIZE 16
2175 #define MANA_WQE_SGE_SIZE 16
2176 
2177 static int
2178 mana_alloc_rx_wqe(struct mana_port_context *apc,
2179     struct mana_rxq *rxq, uint32_t *rxq_size, uint32_t *cq_size)
2180 {
2181 	struct mana_recv_buf_oob *rx_oob;
2182 	uint32_t buf_idx;
2183 	int err;
2184 
2185 	if (rxq->datasize == 0 || rxq->datasize > PAGE_SIZE) {
2186 		mana_err(NULL,
2187 		    "WARNING: Invalid rxq datasize %u\n", rxq->datasize);
2188 	}
2189 
2190 	*rxq_size = 0;
2191 	*cq_size = 0;
2192 
2193 	for (buf_idx = 0; buf_idx < rxq->num_rx_buf; buf_idx++) {
2194 		rx_oob = &rxq->rx_oobs[buf_idx];
2195 		memset(rx_oob, 0, sizeof(*rx_oob));
2196 
2197 		err = bus_dmamap_create(apc->rx_buf_tag, 0,
2198 		    &rx_oob->dma_map);
2199 		if (err) {
2200 			mana_err(NULL,
2201 			    "Failed to  create rx DMA map for buf %d\n",
2202 			    buf_idx);
2203 			return err;
2204 		}
2205 
2206 		err = mana_load_rx_mbuf(apc, rxq, rx_oob, true);
2207 		if (err) {
2208 			mana_err(NULL,
2209 			    "Failed to  create rx DMA map for buf %d\n",
2210 			    buf_idx);
2211 			bus_dmamap_destroy(apc->rx_buf_tag, rx_oob->dma_map);
2212 			return err;
2213 		}
2214 
2215 		rx_oob->wqe_req.sgl = rx_oob->sgl;
2216 		rx_oob->wqe_req.num_sge = rx_oob->num_sge;
2217 		rx_oob->wqe_req.inline_oob_size = 0;
2218 		rx_oob->wqe_req.inline_oob_data = NULL;
2219 		rx_oob->wqe_req.flags = 0;
2220 		rx_oob->wqe_req.client_data_unit = 0;
2221 
2222 		*rxq_size += ALIGN(MANA_WQE_HEADER_SIZE +
2223 				   MANA_WQE_SGE_SIZE * rx_oob->num_sge, 32);
2224 		*cq_size += COMP_ENTRY_SIZE;
2225 	}
2226 
2227 	return 0;
2228 }
2229 
2230 static int
2231 mana_push_wqe(struct mana_rxq *rxq)
2232 {
2233 	struct mana_recv_buf_oob *rx_oob;
2234 	uint32_t buf_idx;
2235 	int err;
2236 
2237 	for (buf_idx = 0; buf_idx < rxq->num_rx_buf; buf_idx++) {
2238 		rx_oob = &rxq->rx_oobs[buf_idx];
2239 
2240 		err = mana_gd_post_and_ring(rxq->gdma_rq, &rx_oob->wqe_req,
2241 		    &rx_oob->wqe_inf);
2242 		if (err)
2243 			return ENOSPC;
2244 	}
2245 
2246 	return 0;
2247 }
2248 
2249 static struct mana_rxq *
2250 mana_create_rxq(struct mana_port_context *apc, uint32_t rxq_idx,
2251     struct mana_eq *eq, if_t ndev)
2252 {
2253 	struct gdma_dev *gd = apc->ac->gdma_dev;
2254 	struct mana_obj_spec wq_spec;
2255 	struct mana_obj_spec cq_spec;
2256 	struct gdma_queue_spec spec;
2257 	struct mana_cq *cq = NULL;
2258 	uint32_t cq_size, rq_size;
2259 	struct gdma_context *gc;
2260 	struct mana_rxq *rxq;
2261 	int err;
2262 
2263 	gc = gd->gdma_context;
2264 
2265 	rxq = malloc(sizeof(*rxq) +
2266 	    RX_BUFFERS_PER_QUEUE * sizeof(struct mana_recv_buf_oob),
2267 	    M_DEVBUF, M_WAITOK | M_ZERO);
2268 	if (!rxq)
2269 		return NULL;
2270 
2271 	rxq->ndev = ndev;
2272 	rxq->num_rx_buf = RX_BUFFERS_PER_QUEUE;
2273 	rxq->rxq_idx = rxq_idx;
2274 	/*
2275 	 * Minimum size is MCLBYTES(2048) bytes for a mbuf cluster.
2276 	 * Now we just allow maximum size of 4096.
2277 	 */
2278 	rxq->datasize = ALIGN(apc->frame_size, MCLBYTES);
2279 	if (rxq->datasize > MAX_FRAME_SIZE)
2280 		rxq->datasize = MAX_FRAME_SIZE;
2281 
2282 	mana_dbg(NULL, "Setting rxq %d datasize %d\n",
2283 	    rxq_idx, rxq->datasize);
2284 
2285 	rxq->rxobj = INVALID_MANA_HANDLE;
2286 
2287 	err = mana_alloc_rx_wqe(apc, rxq, &rq_size, &cq_size);
2288 	if (err)
2289 		goto out;
2290 
2291 	/* Create LRO for the RQ */
2292 	if (if_getcapenable(ndev) & IFCAP_LRO) {
2293 		err = tcp_lro_init(&rxq->lro);
2294 		if (err) {
2295 			if_printf(ndev, "Failed to create LRO for rxq %d\n",
2296 			    rxq_idx);
2297 		} else {
2298 			rxq->lro.ifp = ndev;
2299 		}
2300 	}
2301 
2302 	mana_alloc_counters((counter_u64_t *)&rxq->stats,
2303 	    sizeof(rxq->stats));
2304 
2305 	rq_size = ALIGN(rq_size, PAGE_SIZE);
2306 	cq_size = ALIGN(cq_size, PAGE_SIZE);
2307 
2308 	/* Create RQ */
2309 	memset(&spec, 0, sizeof(spec));
2310 	spec.type = GDMA_RQ;
2311 	spec.monitor_avl_buf = true;
2312 	spec.queue_size = rq_size;
2313 	err = mana_gd_create_mana_wq_cq(gd, &spec, &rxq->gdma_rq);
2314 	if (err)
2315 		goto out;
2316 
2317 	/* Create RQ's CQ */
2318 	cq = &rxq->rx_cq;
2319 	cq->type = MANA_CQ_TYPE_RX;
2320 	cq->rxq = rxq;
2321 
2322 	memset(&spec, 0, sizeof(spec));
2323 	spec.type = GDMA_CQ;
2324 	spec.monitor_avl_buf = false;
2325 	spec.queue_size = cq_size;
2326 	spec.cq.callback = mana_schedule_task;
2327 	spec.cq.parent_eq = eq->eq;
2328 	spec.cq.context = cq;
2329 	err = mana_gd_create_mana_wq_cq(gd, &spec, &cq->gdma_cq);
2330 	if (err)
2331 		goto out;
2332 
2333 	memset(&wq_spec, 0, sizeof(wq_spec));
2334 	memset(&cq_spec, 0, sizeof(cq_spec));
2335 	wq_spec.gdma_region = rxq->gdma_rq->mem_info.dma_region_handle;
2336 	wq_spec.queue_size = rxq->gdma_rq->queue_size;
2337 
2338 	cq_spec.gdma_region = cq->gdma_cq->mem_info.dma_region_handle;
2339 	cq_spec.queue_size = cq->gdma_cq->queue_size;
2340 	cq_spec.modr_ctx_id = 0;
2341 	cq_spec.attached_eq = cq->gdma_cq->cq.parent->id;
2342 
2343 	err = mana_create_wq_obj(apc, apc->port_handle, GDMA_RQ,
2344 	    &wq_spec, &cq_spec, &rxq->rxobj);
2345 	if (err)
2346 		goto out;
2347 
2348 	rxq->gdma_rq->id = wq_spec.queue_index;
2349 	cq->gdma_cq->id = cq_spec.queue_index;
2350 
2351 	rxq->gdma_rq->mem_info.dma_region_handle = GDMA_INVALID_DMA_REGION;
2352 	cq->gdma_cq->mem_info.dma_region_handle = GDMA_INVALID_DMA_REGION;
2353 
2354 	rxq->gdma_id = rxq->gdma_rq->id;
2355 	cq->gdma_id = cq->gdma_cq->id;
2356 
2357 	err = mana_push_wqe(rxq);
2358 	if (err)
2359 		goto out;
2360 
2361 	if (cq->gdma_id >= gc->max_num_cqs) {
2362 		err = EINVAL;
2363 		goto out;
2364 	}
2365 
2366 	gc->cq_table[cq->gdma_id] = cq->gdma_cq;
2367 
2368 	/* Allocate and start the cleanup task on CQ */
2369 	cq->do_not_ring_db = false;
2370 
2371 	NET_TASK_INIT(&cq->cleanup_task, 0, mana_poll, cq);
2372 	cq->cleanup_tq =
2373 	    taskqueue_create_fast("mana rx cq cleanup",
2374 	    M_WAITOK, taskqueue_thread_enqueue,
2375 	    &cq->cleanup_tq);
2376 
2377 	if (apc->last_rx_cq_bind_cpu < 0)
2378 		apc->last_rx_cq_bind_cpu = CPU_FIRST();
2379 	cq->cpu = apc->last_rx_cq_bind_cpu;
2380 	apc->last_rx_cq_bind_cpu = CPU_NEXT(apc->last_rx_cq_bind_cpu);
2381 
2382 	if (apc->bind_cleanup_thread_cpu) {
2383 		cpuset_t cpu_mask;
2384 		CPU_SETOF(cq->cpu, &cpu_mask);
2385 		taskqueue_start_threads_cpuset(&cq->cleanup_tq,
2386 		    1, PI_NET, &cpu_mask,
2387 		    "mana cq p%u-rx%u-cpu%d",
2388 		    apc->port_idx, rxq->rxq_idx, cq->cpu);
2389 	} else {
2390 		taskqueue_start_threads(&cq->cleanup_tq, 1,
2391 		    PI_NET, "mana cq p%u-rx%u",
2392 		    apc->port_idx, rxq->rxq_idx);
2393 	}
2394 
2395 	mana_gd_ring_cq(cq->gdma_cq, SET_ARM_BIT);
2396 out:
2397 	if (!err)
2398 		return rxq;
2399 
2400 	if_printf(ndev, "Failed to create RXQ: err = %d\n", err);
2401 
2402 	mana_destroy_rxq(apc, rxq, false);
2403 
2404 	if (cq)
2405 		mana_deinit_cq(apc, cq);
2406 
2407 	return NULL;
2408 }
2409 
2410 static int
2411 mana_add_rx_queues(struct mana_port_context *apc, if_t ndev)
2412 {
2413 	struct mana_context *ac = apc->ac;
2414 	struct mana_rxq *rxq;
2415 	int err = 0;
2416 	int i;
2417 
2418 	for (i = 0; i < apc->num_queues; i++) {
2419 		rxq = mana_create_rxq(apc, i, &ac->eqs[i], ndev);
2420 		if (!rxq) {
2421 			err = ENOMEM;
2422 			goto out;
2423 		}
2424 
2425 		apc->rxqs[i] = rxq;
2426 	}
2427 
2428 	apc->default_rxobj = apc->rxqs[0]->rxobj;
2429 out:
2430 	return err;
2431 }
2432 
2433 static void
2434 mana_destroy_vport(struct mana_port_context *apc)
2435 {
2436 	struct mana_rxq *rxq;
2437 	uint32_t rxq_idx;
2438 
2439 	for (rxq_idx = 0; rxq_idx < apc->num_queues; rxq_idx++) {
2440 		rxq = apc->rxqs[rxq_idx];
2441 		if (!rxq)
2442 			continue;
2443 
2444 		mana_destroy_rxq(apc, rxq, true);
2445 		apc->rxqs[rxq_idx] = NULL;
2446 	}
2447 
2448 	mana_destroy_txq(apc);
2449 
2450 	mana_uncfg_vport(apc);
2451 }
2452 
2453 static int
2454 mana_create_vport(struct mana_port_context *apc, if_t net)
2455 {
2456 	struct gdma_dev *gd = apc->ac->gdma_dev;
2457 	int err;
2458 
2459 	apc->default_rxobj = INVALID_MANA_HANDLE;
2460 
2461 	err = mana_cfg_vport(apc, gd->pdid, gd->doorbell);
2462 	if (err)
2463 		return err;
2464 
2465 	return mana_create_txq(apc, net);
2466 }
2467 
2468 
2469 static void mana_rss_table_init(struct mana_port_context *apc)
2470 {
2471 	int i;
2472 
2473 	for (i = 0; i < MANA_INDIRECT_TABLE_SIZE; i++)
2474 		apc->indir_table[i] = i % apc->num_queues;
2475 }
2476 
2477 int mana_config_rss(struct mana_port_context *apc, enum TRI_STATE rx,
2478 		    bool update_hash, bool update_tab)
2479 {
2480 	uint32_t queue_idx;
2481 	int err;
2482 	int i;
2483 
2484 	if (update_tab) {
2485 		for (i = 0; i < MANA_INDIRECT_TABLE_SIZE; i++) {
2486 			queue_idx = apc->indir_table[i];
2487 			apc->rxobj_table[i] = apc->rxqs[queue_idx]->rxobj;
2488 		}
2489 	}
2490 
2491 	err = mana_cfg_vport_steering(apc, rx, true, update_hash, update_tab);
2492 	if (err)
2493 		return err;
2494 
2495 	mana_fence_rqs(apc);
2496 
2497 	return 0;
2498 }
2499 
2500 static int
2501 mana_init_port(if_t ndev)
2502 {
2503 	struct mana_port_context *apc = if_getsoftc(ndev);
2504 	uint32_t max_txq, max_rxq, max_queues;
2505 	int port_idx = apc->port_idx;
2506 	uint32_t num_indirect_entries;
2507 	int err;
2508 
2509 	err = mana_init_port_context(apc);
2510 	if (err)
2511 		return err;
2512 
2513 	err = mana_query_vport_cfg(apc, port_idx, &max_txq, &max_rxq,
2514 	    &num_indirect_entries);
2515 	if (err) {
2516 		if_printf(ndev, "Failed to query info for vPort %d\n",
2517 		    port_idx);
2518 		goto reset_apc;
2519 	}
2520 
2521 	max_queues = min_t(uint32_t, max_txq, max_rxq);
2522 	if (apc->max_queues > max_queues)
2523 		apc->max_queues = max_queues;
2524 
2525 	if (apc->num_queues > apc->max_queues)
2526 		apc->num_queues = apc->max_queues;
2527 
2528 	return 0;
2529 
2530 reset_apc:
2531 	bus_dma_tag_destroy(apc->rx_buf_tag);
2532 	apc->rx_buf_tag = NULL;
2533 	free(apc->rxqs, M_DEVBUF);
2534 	apc->rxqs = NULL;
2535 	return err;
2536 }
2537 
2538 int
2539 mana_alloc_queues(if_t ndev)
2540 {
2541 	struct mana_port_context *apc = if_getsoftc(ndev);
2542 	int err;
2543 
2544 	err = mana_create_vport(apc, ndev);
2545 	if (err)
2546 		return err;
2547 
2548 	err = mana_add_rx_queues(apc, ndev);
2549 	if (err)
2550 		goto destroy_vport;
2551 
2552 	apc->rss_state = apc->num_queues > 1 ? TRI_STATE_TRUE : TRI_STATE_FALSE;
2553 
2554 	mana_rss_table_init(apc);
2555 
2556 	err = mana_config_rss(apc, TRI_STATE_TRUE, true, true);
2557 	if (err)
2558 		goto destroy_vport;
2559 
2560 	return 0;
2561 
2562 destroy_vport:
2563 	mana_destroy_vport(apc);
2564 	return err;
2565 }
2566 
2567 static int
2568 mana_up(struct mana_port_context *apc)
2569 {
2570 	int err;
2571 
2572 	mana_dbg(NULL, "mana_up called\n");
2573 
2574 	err = mana_alloc_queues(apc->ndev);
2575 	if (err) {
2576 		mana_err(NULL, "Faile alloc mana queues: %d\n", err);
2577 		return err;
2578 	}
2579 
2580 	/* Add queue specific sysctl */
2581 	mana_sysctl_add_queues(apc);
2582 
2583 	apc->port_is_up = true;
2584 
2585 	/* Ensure port state updated before txq state */
2586 	wmb();
2587 
2588 	if_link_state_change(apc->ndev, LINK_STATE_UP);
2589 	if_setdrvflagbits(apc->ndev, IFF_DRV_RUNNING, IFF_DRV_OACTIVE);
2590 
2591 	return 0;
2592 }
2593 
2594 
2595 static void
2596 mana_init(void *arg)
2597 {
2598 	struct mana_port_context *apc = (struct mana_port_context *)arg;
2599 
2600 	MANA_APC_LOCK_LOCK(apc);
2601 	if (!apc->port_is_up) {
2602 		mana_up(apc);
2603 	}
2604 	MANA_APC_LOCK_UNLOCK(apc);
2605 }
2606 
2607 static int
2608 mana_dealloc_queues(if_t ndev)
2609 {
2610 	struct mana_port_context *apc = if_getsoftc(ndev);
2611 	struct mana_txq *txq;
2612 	int i, err;
2613 
2614 	if (apc->port_is_up)
2615 		return EINVAL;
2616 
2617 	/* No packet can be transmitted now since apc->port_is_up is false.
2618 	 * There is still a tiny chance that mana_poll_tx_cq() can re-enable
2619 	 * a txq because it may not timely see apc->port_is_up being cleared
2620 	 * to false, but it doesn't matter since mana_start_xmit() drops any
2621 	 * new packets due to apc->port_is_up being false.
2622 	 *
2623 	 * Drain all the in-flight TX packets
2624 	 */
2625 	for (i = 0; i < apc->num_queues; i++) {
2626 		txq = &apc->tx_qp[i].txq;
2627 
2628 		struct mana_cq *tx_cq = &apc->tx_qp[i].tx_cq;
2629 		struct mana_cq *rx_cq = &(apc->rxqs[i]->rx_cq);
2630 
2631 		tx_cq->do_not_ring_db = true;
2632 		rx_cq->do_not_ring_db = true;
2633 
2634 		/* Schedule a cleanup task */
2635 		taskqueue_enqueue(tx_cq->cleanup_tq, &tx_cq->cleanup_task);
2636 
2637 		while (atomic_read(&txq->pending_sends) > 0)
2638 			usleep_range(1000, 2000);
2639 	}
2640 
2641 	/* We're 100% sure the queues can no longer be woken up, because
2642 	 * we're sure now mana_poll_tx_cq() can't be running.
2643 	 */
2644 
2645 	apc->rss_state = TRI_STATE_FALSE;
2646 	err = mana_config_rss(apc, TRI_STATE_FALSE, false, false);
2647 	if (err) {
2648 		if_printf(ndev, "Failed to disable vPort: %d\n", err);
2649 		return err;
2650 	}
2651 
2652 	mana_destroy_vport(apc);
2653 
2654 	return 0;
2655 }
2656 
2657 static int
2658 mana_down(struct mana_port_context *apc)
2659 {
2660 	int err = 0;
2661 
2662 	apc->port_st_save = apc->port_is_up;
2663 	apc->port_is_up = false;
2664 
2665 	/* Ensure port state updated before txq state */
2666 	wmb();
2667 
2668 	if (apc->port_st_save) {
2669 		if_setdrvflagbits(apc->ndev, IFF_DRV_OACTIVE,
2670 		    IFF_DRV_RUNNING);
2671 		if_link_state_change(apc->ndev, LINK_STATE_DOWN);
2672 
2673 		mana_sysctl_free_queues(apc);
2674 
2675 		err = mana_dealloc_queues(apc->ndev);
2676 		if (err) {
2677 			if_printf(apc->ndev,
2678 			    "Failed to bring down mana interface: %d\n", err);
2679 		}
2680 	}
2681 
2682 	return err;
2683 }
2684 
2685 int
2686 mana_detach(if_t ndev)
2687 {
2688 	struct mana_port_context *apc = if_getsoftc(ndev);
2689 	int err;
2690 
2691 	ether_ifdetach(ndev);
2692 
2693 	if (!apc)
2694 		return 0;
2695 
2696 	MANA_APC_LOCK_LOCK(apc);
2697 	err = mana_down(apc);
2698 	MANA_APC_LOCK_UNLOCK(apc);
2699 
2700 	mana_cleanup_port_context(apc);
2701 
2702 	MANA_APC_LOCK_DESTROY(apc);
2703 
2704 	free(apc, M_DEVBUF);
2705 
2706 	return err;
2707 }
2708 
2709 static int
2710 mana_probe_port(struct mana_context *ac, int port_idx,
2711     if_t *ndev_storage)
2712 {
2713 	struct gdma_context *gc = ac->gdma_dev->gdma_context;
2714 	struct mana_port_context *apc;
2715 	if_t ndev;
2716 	int err;
2717 
2718 	ndev = if_alloc_dev(IFT_ETHER, gc->dev);
2719 	if (!ndev) {
2720 		mana_err(NULL, "Failed to allocate ifnet struct\n");
2721 		return ENOMEM;
2722 	}
2723 
2724 	*ndev_storage = ndev;
2725 
2726 	apc = malloc(sizeof(*apc), M_DEVBUF, M_WAITOK | M_ZERO);
2727 	if (!apc) {
2728 		mana_err(NULL, "Failed to allocate port context\n");
2729 		err = ENOMEM;
2730 		goto free_net;
2731 	}
2732 
2733 	apc->ac = ac;
2734 	apc->ndev = ndev;
2735 	apc->max_queues = gc->max_num_queues;
2736 	apc->num_queues = min_t(unsigned int,
2737 	    gc->max_num_queues, MANA_MAX_NUM_QUEUES);
2738 	apc->port_handle = INVALID_MANA_HANDLE;
2739 	apc->port_idx = port_idx;
2740 	apc->frame_size = DEFAULT_FRAME_SIZE;
2741 	apc->last_tx_cq_bind_cpu = -1;
2742 	apc->last_rx_cq_bind_cpu = -1;
2743 	apc->vport_use_count = 0;
2744 
2745 	MANA_APC_LOCK_INIT(apc);
2746 
2747 	if_initname(ndev, device_get_name(gc->dev), port_idx);
2748 	if_setdev(ndev,gc->dev);
2749 	if_setsoftc(ndev, apc);
2750 
2751 	if_setflags(ndev, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
2752 	if_setinitfn(ndev, mana_init);
2753 	if_settransmitfn(ndev, mana_start_xmit);
2754 	if_setqflushfn(ndev, mana_qflush);
2755 	if_setioctlfn(ndev, mana_ioctl);
2756 	if_setgetcounterfn(ndev, mana_get_counter);
2757 
2758 	if_setmtu(ndev, ETHERMTU);
2759 	if_setbaudrate(ndev, IF_Gbps(100));
2760 
2761 	mana_rss_key_fill(apc->hashkey, MANA_HASH_KEY_SIZE);
2762 
2763 	err = mana_init_port(ndev);
2764 	if (err)
2765 		goto reset_apc;
2766 
2767 	if_setcapabilitiesbit(ndev,
2768 	    IFCAP_TXCSUM | IFCAP_TXCSUM_IPV6 |
2769 	    IFCAP_RXCSUM | IFCAP_RXCSUM_IPV6 |
2770 	    IFCAP_TSO4 | IFCAP_TSO6 |
2771 	    IFCAP_LRO | IFCAP_LINKSTATE, 0);
2772 
2773 	/* Enable all available capabilities by default. */
2774 	if_setcapenable(ndev, if_getcapabilities(ndev));
2775 
2776 	/* TSO parameters */
2777 	if_sethwtsomax(ndev, MAX_MBUF_FRAGS * MANA_TSO_MAXSEG_SZ -
2778 	    (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN));
2779 	if_sethwtsomaxsegcount(ndev, MAX_MBUF_FRAGS);
2780 	if_sethwtsomaxsegsize(ndev, PAGE_SIZE);
2781 
2782 	ifmedia_init(&apc->media, IFM_IMASK,
2783 	    mana_ifmedia_change, mana_ifmedia_status);
2784 	ifmedia_add(&apc->media, IFM_ETHER | IFM_AUTO, 0, NULL);
2785 	ifmedia_set(&apc->media, IFM_ETHER | IFM_AUTO);
2786 
2787 	ether_ifattach(ndev, apc->mac_addr);
2788 
2789 	/* Initialize statistics */
2790 	mana_alloc_counters((counter_u64_t *)&apc->port_stats,
2791 	    sizeof(struct mana_port_stats));
2792 	mana_sysctl_add_port(apc);
2793 
2794 	/* Tell the stack that the interface is not active */
2795 	if_setdrvflagbits(ndev, IFF_DRV_OACTIVE, IFF_DRV_RUNNING);
2796 
2797 	return 0;
2798 
2799 reset_apc:
2800 	free(apc, M_DEVBUF);
2801 free_net:
2802 	*ndev_storage = NULL;
2803 	if_printf(ndev, "Failed to probe vPort %d: %d\n", port_idx, err);
2804 	if_free(ndev);
2805 	return err;
2806 }
2807 
2808 int mana_probe(struct gdma_dev *gd)
2809 {
2810 	struct gdma_context *gc = gd->gdma_context;
2811 	device_t dev = gc->dev;
2812 	struct mana_context *ac;
2813 	int err;
2814 	int i;
2815 
2816 	device_printf(dev, "%s protocol version: %d.%d.%d\n", DEVICE_NAME,
2817 		 MANA_MAJOR_VERSION, MANA_MINOR_VERSION, MANA_MICRO_VERSION);
2818 
2819 	err = mana_gd_register_device(gd);
2820 	if (err)
2821 		return err;
2822 
2823 	ac = malloc(sizeof(*ac), M_DEVBUF, M_WAITOK | M_ZERO);
2824 	if (!ac)
2825 		return ENOMEM;
2826 
2827 	ac->gdma_dev = gd;
2828 	ac->num_ports = 1;
2829 	gd->driver_data = ac;
2830 
2831 	err = mana_create_eq(ac);
2832 	if (err)
2833 		goto out;
2834 
2835 	err = mana_query_device_cfg(ac, MANA_MAJOR_VERSION, MANA_MINOR_VERSION,
2836 	    MANA_MICRO_VERSION, &ac->num_ports);
2837 	if (err)
2838 		goto out;
2839 
2840 	if (ac->num_ports > MAX_PORTS_IN_MANA_DEV)
2841 		ac->num_ports = MAX_PORTS_IN_MANA_DEV;
2842 
2843 	for (i = 0; i < ac->num_ports; i++) {
2844 		err = mana_probe_port(ac, i, &ac->ports[i]);
2845 		if (err) {
2846 			device_printf(dev,
2847 			    "Failed to probe mana port %d\n", i);
2848 			break;
2849 		}
2850 	}
2851 
2852 out:
2853 	if (err)
2854 		mana_remove(gd);
2855 
2856 	return err;
2857 }
2858 
2859 void
2860 mana_remove(struct gdma_dev *gd)
2861 {
2862 	struct gdma_context *gc = gd->gdma_context;
2863 	struct mana_context *ac = gd->driver_data;
2864 	device_t dev = gc->dev;
2865 	if_t ndev;
2866 	int i;
2867 
2868 	for (i = 0; i < ac->num_ports; i++) {
2869 		ndev = ac->ports[i];
2870 		if (!ndev) {
2871 			if (i == 0)
2872 				device_printf(dev, "No net device to remove\n");
2873 			goto out;
2874 		}
2875 
2876 		mana_detach(ndev);
2877 
2878 		if_free(ndev);
2879 	}
2880 
2881 	mana_destroy_eq(ac);
2882 
2883 out:
2884 	mana_gd_deregister_device(gd);
2885 	gd->driver_data = NULL;
2886 	gd->gdma_context = NULL;
2887 	free(ac, M_DEVBUF);
2888 }
2889