xref: /freebsd/sys/dev/cxgbe/tom/t4_ddp.c (revision 5bf5ca772c6de2d53344a78cf461447cc322ccea)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2012 Chelsio Communications, Inc.
5  * All rights reserved.
6  * Written by: Navdeep Parhar <np@FreeBSD.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 
33 #include "opt_inet.h"
34 
35 #include <sys/param.h>
36 #include <sys/aio.h>
37 #include <sys/file.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/ktr.h>
41 #include <sys/module.h>
42 #include <sys/protosw.h>
43 #include <sys/proc.h>
44 #include <sys/domain.h>
45 #include <sys/socket.h>
46 #include <sys/socketvar.h>
47 #include <sys/taskqueue.h>
48 #include <sys/uio.h>
49 #include <netinet/in.h>
50 #include <netinet/in_pcb.h>
51 #include <netinet/ip.h>
52 #include <netinet/tcp_var.h>
53 #define TCPSTATES
54 #include <netinet/tcp_fsm.h>
55 #include <netinet/toecore.h>
56 
57 #include <vm/vm.h>
58 #include <vm/vm_extern.h>
59 #include <vm/vm_param.h>
60 #include <vm/pmap.h>
61 #include <vm/vm_map.h>
62 #include <vm/vm_page.h>
63 #include <vm/vm_object.h>
64 
65 #ifdef TCP_OFFLOAD
66 #include "common/common.h"
67 #include "common/t4_msg.h"
68 #include "common/t4_regs.h"
69 #include "common/t4_tcb.h"
70 #include "tom/t4_tom.h"
71 
72 /*
73  * Use the 'backend3' field in AIO jobs to store the amount of data
74  * received by the AIO job so far.
75  */
76 #define	aio_received	backend3
77 
78 static void aio_ddp_requeue_task(void *context, int pending);
79 static void ddp_complete_all(struct toepcb *toep, int error);
80 static void t4_aio_cancel_active(struct kaiocb *job);
81 static void t4_aio_cancel_queued(struct kaiocb *job);
82 
83 static TAILQ_HEAD(, pageset) ddp_orphan_pagesets;
84 static struct mtx ddp_orphan_pagesets_lock;
85 static struct task ddp_orphan_task;
86 
87 #define MAX_DDP_BUFFER_SIZE		(M_TCB_RX_DDP_BUF0_LEN)
88 
89 /*
90  * A page set holds information about a buffer used for DDP.  The page
91  * set holds resources such as the VM pages backing the buffer (either
92  * held or wired) and the page pods associated with the buffer.
93  * Recently used page sets are cached to allow for efficient reuse of
94  * buffers (avoiding the need to re-fault in pages, hold them, etc.).
95  * Note that cached page sets keep the backing pages wired.  The
96  * number of wired pages is capped by only allowing for two wired
97  * pagesets per connection.  This is not a perfect cap, but is a
98  * trade-off for performance.
99  *
100  * If an application ping-pongs two buffers for a connection via
101  * aio_read(2) then those buffers should remain wired and expensive VM
102  * fault lookups should be avoided after each buffer has been used
103  * once.  If an application uses more than two buffers then this will
104  * fall back to doing expensive VM fault lookups for each operation.
105  */
106 static void
107 free_pageset(struct tom_data *td, struct pageset *ps)
108 {
109 	vm_page_t p;
110 	int i;
111 
112 	if (ps->prsv.prsv_nppods > 0)
113 		t4_free_page_pods(&ps->prsv);
114 
115 	if (ps->flags & PS_WIRED) {
116 		for (i = 0; i < ps->npages; i++) {
117 			p = ps->pages[i];
118 			vm_page_lock(p);
119 			vm_page_unwire(p, PQ_INACTIVE);
120 			vm_page_unlock(p);
121 		}
122 	} else
123 		vm_page_unhold_pages(ps->pages, ps->npages);
124 	mtx_lock(&ddp_orphan_pagesets_lock);
125 	TAILQ_INSERT_TAIL(&ddp_orphan_pagesets, ps, link);
126 	taskqueue_enqueue(taskqueue_thread, &ddp_orphan_task);
127 	mtx_unlock(&ddp_orphan_pagesets_lock);
128 }
129 
130 static void
131 ddp_free_orphan_pagesets(void *context, int pending)
132 {
133 	struct pageset *ps;
134 
135 	mtx_lock(&ddp_orphan_pagesets_lock);
136 	while (!TAILQ_EMPTY(&ddp_orphan_pagesets)) {
137 		ps = TAILQ_FIRST(&ddp_orphan_pagesets);
138 		TAILQ_REMOVE(&ddp_orphan_pagesets, ps, link);
139 		mtx_unlock(&ddp_orphan_pagesets_lock);
140 		if (ps->vm)
141 			vmspace_free(ps->vm);
142 		free(ps, M_CXGBE);
143 		mtx_lock(&ddp_orphan_pagesets_lock);
144 	}
145 	mtx_unlock(&ddp_orphan_pagesets_lock);
146 }
147 
148 static void
149 recycle_pageset(struct toepcb *toep, struct pageset *ps)
150 {
151 
152 	DDP_ASSERT_LOCKED(toep);
153 	if (!(toep->ddp.flags & DDP_DEAD) && ps->flags & PS_WIRED) {
154 		KASSERT(toep->ddp.cached_count + toep->ddp.active_count <
155 		    nitems(toep->ddp.db), ("too many wired pagesets"));
156 		TAILQ_INSERT_HEAD(&toep->ddp.cached_pagesets, ps, link);
157 		toep->ddp.cached_count++;
158 	} else
159 		free_pageset(toep->td, ps);
160 }
161 
162 static void
163 ddp_complete_one(struct kaiocb *job, int error)
164 {
165 	long copied;
166 
167 	/*
168 	 * If this job had copied data out of the socket buffer before
169 	 * it was cancelled, report it as a short read rather than an
170 	 * error.
171 	 */
172 	copied = job->aio_received;
173 	if (copied != 0 || error == 0)
174 		aio_complete(job, copied, 0);
175 	else
176 		aio_complete(job, -1, error);
177 }
178 
179 static void
180 free_ddp_buffer(struct tom_data *td, struct ddp_buffer *db)
181 {
182 
183 	if (db->job) {
184 		/*
185 		 * XXX: If we are un-offloading the socket then we
186 		 * should requeue these on the socket somehow.  If we
187 		 * got a FIN from the remote end, then this completes
188 		 * any remaining requests with an EOF read.
189 		 */
190 		if (!aio_clear_cancel_function(db->job))
191 			ddp_complete_one(db->job, 0);
192 	}
193 
194 	if (db->ps)
195 		free_pageset(td, db->ps);
196 }
197 
198 void
199 ddp_init_toep(struct toepcb *toep)
200 {
201 
202 	TAILQ_INIT(&toep->ddp.aiojobq);
203 	TASK_INIT(&toep->ddp.requeue_task, 0, aio_ddp_requeue_task, toep);
204 	toep->ddp.flags = DDP_OK;
205 	toep->ddp.active_id = -1;
206 	mtx_init(&toep->ddp.lock, "t4 ddp", NULL, MTX_DEF);
207 }
208 
209 void
210 ddp_uninit_toep(struct toepcb *toep)
211 {
212 
213 	mtx_destroy(&toep->ddp.lock);
214 }
215 
216 void
217 release_ddp_resources(struct toepcb *toep)
218 {
219 	struct pageset *ps;
220 	int i;
221 
222 	DDP_LOCK(toep);
223 	toep->flags |= DDP_DEAD;
224 	for (i = 0; i < nitems(toep->ddp.db); i++) {
225 		free_ddp_buffer(toep->td, &toep->ddp.db[i]);
226 	}
227 	while ((ps = TAILQ_FIRST(&toep->ddp.cached_pagesets)) != NULL) {
228 		TAILQ_REMOVE(&toep->ddp.cached_pagesets, ps, link);
229 		free_pageset(toep->td, ps);
230 	}
231 	ddp_complete_all(toep, 0);
232 	DDP_UNLOCK(toep);
233 }
234 
235 #ifdef INVARIANTS
236 void
237 ddp_assert_empty(struct toepcb *toep)
238 {
239 	int i;
240 
241 	MPASS(!(toep->ddp.flags & DDP_TASK_ACTIVE));
242 	for (i = 0; i < nitems(toep->ddp.db); i++) {
243 		MPASS(toep->ddp.db[i].job == NULL);
244 		MPASS(toep->ddp.db[i].ps == NULL);
245 	}
246 	MPASS(TAILQ_EMPTY(&toep->ddp.cached_pagesets));
247 	MPASS(TAILQ_EMPTY(&toep->ddp.aiojobq));
248 }
249 #endif
250 
251 static void
252 complete_ddp_buffer(struct toepcb *toep, struct ddp_buffer *db,
253     unsigned int db_idx)
254 {
255 	unsigned int db_flag;
256 
257 	toep->ddp.active_count--;
258 	if (toep->ddp.active_id == db_idx) {
259 		if (toep->ddp.active_count == 0) {
260 			KASSERT(toep->ddp.db[db_idx ^ 1].job == NULL,
261 			    ("%s: active_count mismatch", __func__));
262 			toep->ddp.active_id = -1;
263 		} else
264 			toep->ddp.active_id ^= 1;
265 #ifdef VERBOSE_TRACES
266 		CTR2(KTR_CXGBE, "%s: ddp_active_id = %d", __func__,
267 		    toep->ddp.active_id);
268 #endif
269 	} else {
270 		KASSERT(toep->ddp.active_count != 0 &&
271 		    toep->ddp.active_id != -1,
272 		    ("%s: active count mismatch", __func__));
273 	}
274 
275 	db->cancel_pending = 0;
276 	db->job = NULL;
277 	recycle_pageset(toep, db->ps);
278 	db->ps = NULL;
279 
280 	db_flag = db_idx == 1 ? DDP_BUF1_ACTIVE : DDP_BUF0_ACTIVE;
281 	KASSERT(toep->ddp.flags & db_flag,
282 	    ("%s: DDP buffer not active. toep %p, ddp_flags 0x%x",
283 	    __func__, toep, toep->ddp.flags));
284 	toep->ddp.flags &= ~db_flag;
285 }
286 
287 /* XXX: handle_ddp_data code duplication */
288 void
289 insert_ddp_data(struct toepcb *toep, uint32_t n)
290 {
291 	struct inpcb *inp = toep->inp;
292 	struct tcpcb *tp = intotcpcb(inp);
293 	struct ddp_buffer *db;
294 	struct kaiocb *job;
295 	size_t placed;
296 	long copied;
297 	unsigned int db_flag, db_idx;
298 
299 	INP_WLOCK_ASSERT(inp);
300 	DDP_ASSERT_LOCKED(toep);
301 
302 	tp->rcv_nxt += n;
303 #ifndef USE_DDP_RX_FLOW_CONTROL
304 	KASSERT(tp->rcv_wnd >= n, ("%s: negative window size", __func__));
305 	tp->rcv_wnd -= n;
306 #endif
307 #ifndef USE_DDP_RX_FLOW_CONTROL
308 	toep->rx_credits += n;
309 #endif
310 	CTR2(KTR_CXGBE, "%s: placed %u bytes before falling out of DDP",
311 	    __func__, n);
312 	while (toep->ddp.active_count > 0) {
313 		MPASS(toep->ddp.active_id != -1);
314 		db_idx = toep->ddp.active_id;
315 		db_flag = db_idx == 1 ? DDP_BUF1_ACTIVE : DDP_BUF0_ACTIVE;
316 		MPASS((toep->ddp.flags & db_flag) != 0);
317 		db = &toep->ddp.db[db_idx];
318 		job = db->job;
319 		copied = job->aio_received;
320 		placed = n;
321 		if (placed > job->uaiocb.aio_nbytes - copied)
322 			placed = job->uaiocb.aio_nbytes - copied;
323 		if (placed > 0)
324 			job->msgrcv = 1;
325 		if (!aio_clear_cancel_function(job)) {
326 			/*
327 			 * Update the copied length for when
328 			 * t4_aio_cancel_active() completes this
329 			 * request.
330 			 */
331 			job->aio_received += placed;
332 		} else if (copied + placed != 0) {
333 			CTR4(KTR_CXGBE,
334 			    "%s: completing %p (copied %ld, placed %lu)",
335 			    __func__, job, copied, placed);
336 			/* XXX: This always completes if there is some data. */
337 			aio_complete(job, copied + placed, 0);
338 		} else if (aio_set_cancel_function(job, t4_aio_cancel_queued)) {
339 			TAILQ_INSERT_HEAD(&toep->ddp.aiojobq, job, list);
340 			toep->ddp.waiting_count++;
341 		} else
342 			aio_cancel(job);
343 		n -= placed;
344 		complete_ddp_buffer(toep, db, db_idx);
345 	}
346 
347 	MPASS(n == 0);
348 }
349 
350 /* SET_TCB_FIELD sent as a ULP command looks like this */
351 #define LEN__SET_TCB_FIELD_ULP (sizeof(struct ulp_txpkt) + \
352     sizeof(struct ulptx_idata) + sizeof(struct cpl_set_tcb_field_core))
353 
354 /* RX_DATA_ACK sent as a ULP command looks like this */
355 #define LEN__RX_DATA_ACK_ULP (sizeof(struct ulp_txpkt) + \
356     sizeof(struct ulptx_idata) + sizeof(struct cpl_rx_data_ack_core))
357 
358 static inline void *
359 mk_set_tcb_field_ulp(struct ulp_txpkt *ulpmc, struct toepcb *toep,
360     uint64_t word, uint64_t mask, uint64_t val)
361 {
362 	struct ulptx_idata *ulpsc;
363 	struct cpl_set_tcb_field_core *req;
364 
365 	ulpmc->cmd_dest = htonl(V_ULPTX_CMD(ULP_TX_PKT) | V_ULP_TXPKT_DEST(0));
366 	ulpmc->len = htobe32(howmany(LEN__SET_TCB_FIELD_ULP, 16));
367 
368 	ulpsc = (struct ulptx_idata *)(ulpmc + 1);
369 	ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_IMM));
370 	ulpsc->len = htobe32(sizeof(*req));
371 
372 	req = (struct cpl_set_tcb_field_core *)(ulpsc + 1);
373 	OPCODE_TID(req) = htobe32(MK_OPCODE_TID(CPL_SET_TCB_FIELD, toep->tid));
374 	req->reply_ctrl = htobe16(V_NO_REPLY(1) |
375 	    V_QUEUENO(toep->ofld_rxq->iq.abs_id));
376 	req->word_cookie = htobe16(V_WORD(word) | V_COOKIE(0));
377         req->mask = htobe64(mask);
378         req->val = htobe64(val);
379 
380 	ulpsc = (struct ulptx_idata *)(req + 1);
381 	if (LEN__SET_TCB_FIELD_ULP % 16) {
382 		ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_NOOP));
383 		ulpsc->len = htobe32(0);
384 		return (ulpsc + 1);
385 	}
386 	return (ulpsc);
387 }
388 
389 static inline void *
390 mk_rx_data_ack_ulp(struct ulp_txpkt *ulpmc, struct toepcb *toep)
391 {
392 	struct ulptx_idata *ulpsc;
393 	struct cpl_rx_data_ack_core *req;
394 
395 	ulpmc->cmd_dest = htonl(V_ULPTX_CMD(ULP_TX_PKT) | V_ULP_TXPKT_DEST(0));
396 	ulpmc->len = htobe32(howmany(LEN__RX_DATA_ACK_ULP, 16));
397 
398 	ulpsc = (struct ulptx_idata *)(ulpmc + 1);
399 	ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_IMM));
400 	ulpsc->len = htobe32(sizeof(*req));
401 
402 	req = (struct cpl_rx_data_ack_core *)(ulpsc + 1);
403 	OPCODE_TID(req) = htobe32(MK_OPCODE_TID(CPL_RX_DATA_ACK, toep->tid));
404 	req->credit_dack = htobe32(F_RX_MODULATE_RX);
405 
406 	ulpsc = (struct ulptx_idata *)(req + 1);
407 	if (LEN__RX_DATA_ACK_ULP % 16) {
408 		ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_NOOP));
409 		ulpsc->len = htobe32(0);
410 		return (ulpsc + 1);
411 	}
412 	return (ulpsc);
413 }
414 
415 static struct wrqe *
416 mk_update_tcb_for_ddp(struct adapter *sc, struct toepcb *toep, int db_idx,
417     struct pageset *ps, int offset, uint64_t ddp_flags, uint64_t ddp_flags_mask)
418 {
419 	struct wrqe *wr;
420 	struct work_request_hdr *wrh;
421 	struct ulp_txpkt *ulpmc;
422 	int len;
423 
424 	KASSERT(db_idx == 0 || db_idx == 1,
425 	    ("%s: bad DDP buffer index %d", __func__, db_idx));
426 
427 	/*
428 	 * We'll send a compound work request that has 3 SET_TCB_FIELDs and an
429 	 * RX_DATA_ACK (with RX_MODULATE to speed up delivery).
430 	 *
431 	 * The work request header is 16B and always ends at a 16B boundary.
432 	 * The ULPTX master commands that follow must all end at 16B boundaries
433 	 * too so we round up the size to 16.
434 	 */
435 	len = sizeof(*wrh) + 3 * roundup2(LEN__SET_TCB_FIELD_ULP, 16) +
436 	    roundup2(LEN__RX_DATA_ACK_ULP, 16);
437 
438 	wr = alloc_wrqe(len, toep->ctrlq);
439 	if (wr == NULL)
440 		return (NULL);
441 	wrh = wrtod(wr);
442 	INIT_ULPTX_WRH(wrh, len, 1, 0);	/* atomic */
443 	ulpmc = (struct ulp_txpkt *)(wrh + 1);
444 
445 	/* Write the buffer's tag */
446 	ulpmc = mk_set_tcb_field_ulp(ulpmc, toep,
447 	    W_TCB_RX_DDP_BUF0_TAG + db_idx,
448 	    V_TCB_RX_DDP_BUF0_TAG(M_TCB_RX_DDP_BUF0_TAG),
449 	    V_TCB_RX_DDP_BUF0_TAG(ps->prsv.prsv_tag));
450 
451 	/* Update the current offset in the DDP buffer and its total length */
452 	if (db_idx == 0)
453 		ulpmc = mk_set_tcb_field_ulp(ulpmc, toep,
454 		    W_TCB_RX_DDP_BUF0_OFFSET,
455 		    V_TCB_RX_DDP_BUF0_OFFSET(M_TCB_RX_DDP_BUF0_OFFSET) |
456 		    V_TCB_RX_DDP_BUF0_LEN(M_TCB_RX_DDP_BUF0_LEN),
457 		    V_TCB_RX_DDP_BUF0_OFFSET(offset) |
458 		    V_TCB_RX_DDP_BUF0_LEN(ps->len));
459 	else
460 		ulpmc = mk_set_tcb_field_ulp(ulpmc, toep,
461 		    W_TCB_RX_DDP_BUF1_OFFSET,
462 		    V_TCB_RX_DDP_BUF1_OFFSET(M_TCB_RX_DDP_BUF1_OFFSET) |
463 		    V_TCB_RX_DDP_BUF1_LEN((u64)M_TCB_RX_DDP_BUF1_LEN << 32),
464 		    V_TCB_RX_DDP_BUF1_OFFSET(offset) |
465 		    V_TCB_RX_DDP_BUF1_LEN((u64)ps->len << 32));
466 
467 	/* Update DDP flags */
468 	ulpmc = mk_set_tcb_field_ulp(ulpmc, toep, W_TCB_RX_DDP_FLAGS,
469 	    ddp_flags_mask, ddp_flags);
470 
471 	/* Gratuitous RX_DATA_ACK with RX_MODULATE set to speed up delivery. */
472 	ulpmc = mk_rx_data_ack_ulp(ulpmc, toep);
473 
474 	return (wr);
475 }
476 
477 static int
478 handle_ddp_data(struct toepcb *toep, __be32 ddp_report, __be32 rcv_nxt, int len)
479 {
480 	uint32_t report = be32toh(ddp_report);
481 	unsigned int db_idx;
482 	struct inpcb *inp = toep->inp;
483 	struct ddp_buffer *db;
484 	struct tcpcb *tp;
485 	struct socket *so;
486 	struct sockbuf *sb;
487 	struct kaiocb *job;
488 	long copied;
489 
490 	db_idx = report & F_DDP_BUF_IDX ? 1 : 0;
491 
492 	if (__predict_false(!(report & F_DDP_INV)))
493 		CXGBE_UNIMPLEMENTED("DDP buffer still valid");
494 
495 	INP_WLOCK(inp);
496 	so = inp_inpcbtosocket(inp);
497 	sb = &so->so_rcv;
498 	DDP_LOCK(toep);
499 
500 	KASSERT(toep->ddp.active_id == db_idx,
501 	    ("completed DDP buffer (%d) != active_id (%d) for tid %d", db_idx,
502 	    toep->ddp.active_id, toep->tid));
503 	db = &toep->ddp.db[db_idx];
504 	job = db->job;
505 
506 	if (__predict_false(inp->inp_flags & (INP_DROPPED | INP_TIMEWAIT))) {
507 		/*
508 		 * This can happen due to an administrative tcpdrop(8).
509 		 * Just fail the request with ECONNRESET.
510 		 */
511 		CTR5(KTR_CXGBE, "%s: tid %u, seq 0x%x, len %d, inp_flags 0x%x",
512 		    __func__, toep->tid, be32toh(rcv_nxt), len, inp->inp_flags);
513 		if (aio_clear_cancel_function(job))
514 			ddp_complete_one(job, ECONNRESET);
515 		goto completed;
516 	}
517 
518 	tp = intotcpcb(inp);
519 
520 	/*
521 	 * For RX_DDP_COMPLETE, len will be zero and rcv_nxt is the
522 	 * sequence number of the next byte to receive.  The length of
523 	 * the data received for this message must be computed by
524 	 * comparing the new and old values of rcv_nxt.
525 	 *
526 	 * For RX_DATA_DDP, len might be non-zero, but it is only the
527 	 * length of the most recent DMA.  It does not include the
528 	 * total length of the data received since the previous update
529 	 * for this DDP buffer.  rcv_nxt is the sequence number of the
530 	 * first received byte from the most recent DMA.
531 	 */
532 	len += be32toh(rcv_nxt) - tp->rcv_nxt;
533 	tp->rcv_nxt += len;
534 	tp->t_rcvtime = ticks;
535 #ifndef USE_DDP_RX_FLOW_CONTROL
536 	KASSERT(tp->rcv_wnd >= len, ("%s: negative window size", __func__));
537 	tp->rcv_wnd -= len;
538 #endif
539 #ifdef VERBOSE_TRACES
540 	CTR4(KTR_CXGBE, "%s: DDP[%d] placed %d bytes (%#x)", __func__, db_idx,
541 	    len, report);
542 #endif
543 
544 	/* receive buffer autosize */
545 	MPASS(toep->vnet == so->so_vnet);
546 	CURVNET_SET(toep->vnet);
547 	SOCKBUF_LOCK(sb);
548 	if (sb->sb_flags & SB_AUTOSIZE &&
549 	    V_tcp_do_autorcvbuf &&
550 	    sb->sb_hiwat < V_tcp_autorcvbuf_max &&
551 	    len > (sbspace(sb) / 8 * 7)) {
552 		unsigned int hiwat = sb->sb_hiwat;
553 		unsigned int newsize = min(hiwat + V_tcp_autorcvbuf_inc,
554 		    V_tcp_autorcvbuf_max);
555 
556 		if (!sbreserve_locked(sb, newsize, so, NULL))
557 			sb->sb_flags &= ~SB_AUTOSIZE;
558 		else
559 			toep->rx_credits += newsize - hiwat;
560 	}
561 	SOCKBUF_UNLOCK(sb);
562 	CURVNET_RESTORE();
563 
564 #ifndef USE_DDP_RX_FLOW_CONTROL
565 	toep->rx_credits += len;
566 #endif
567 
568 	job->msgrcv = 1;
569 	if (db->cancel_pending) {
570 		/*
571 		 * Update the job's length but defer completion to the
572 		 * TCB_RPL callback.
573 		 */
574 		job->aio_received += len;
575 		goto out;
576 	} else if (!aio_clear_cancel_function(job)) {
577 		/*
578 		 * Update the copied length for when
579 		 * t4_aio_cancel_active() completes this request.
580 		 */
581 		job->aio_received += len;
582 	} else {
583 		copied = job->aio_received;
584 #ifdef VERBOSE_TRACES
585 		CTR4(KTR_CXGBE, "%s: completing %p (copied %ld, placed %d)",
586 		    __func__, job, copied, len);
587 #endif
588 		aio_complete(job, copied + len, 0);
589 		t4_rcvd(&toep->td->tod, tp);
590 	}
591 
592 completed:
593 	complete_ddp_buffer(toep, db, db_idx);
594 	if (toep->ddp.waiting_count > 0)
595 		ddp_queue_toep(toep);
596 out:
597 	DDP_UNLOCK(toep);
598 	INP_WUNLOCK(inp);
599 
600 	return (0);
601 }
602 
603 void
604 handle_ddp_indicate(struct toepcb *toep)
605 {
606 
607 	DDP_ASSERT_LOCKED(toep);
608 	MPASS(toep->ddp.active_count == 0);
609 	MPASS((toep->ddp.flags & (DDP_BUF0_ACTIVE | DDP_BUF1_ACTIVE)) == 0);
610 	if (toep->ddp.waiting_count == 0) {
611 		/*
612 		 * The pending requests that triggered the request for an
613 		 * an indicate were cancelled.  Those cancels should have
614 		 * already disabled DDP.  Just ignore this as the data is
615 		 * going into the socket buffer anyway.
616 		 */
617 		return;
618 	}
619 	CTR3(KTR_CXGBE, "%s: tid %d indicated (%d waiting)", __func__,
620 	    toep->tid, toep->ddp.waiting_count);
621 	ddp_queue_toep(toep);
622 }
623 
624 enum {
625 	DDP_BUF0_INVALIDATED = 0x2,
626 	DDP_BUF1_INVALIDATED
627 };
628 
629 void
630 handle_ddp_tcb_rpl(struct toepcb *toep, const struct cpl_set_tcb_rpl *cpl)
631 {
632 	unsigned int db_idx;
633 	struct inpcb *inp = toep->inp;
634 	struct ddp_buffer *db;
635 	struct kaiocb *job;
636 	long copied;
637 
638 	if (cpl->status != CPL_ERR_NONE)
639 		panic("XXX: tcp_rpl failed: %d", cpl->status);
640 
641 	switch (cpl->cookie) {
642 	case V_WORD(W_TCB_RX_DDP_FLAGS) | V_COOKIE(DDP_BUF0_INVALIDATED):
643 	case V_WORD(W_TCB_RX_DDP_FLAGS) | V_COOKIE(DDP_BUF1_INVALIDATED):
644 		/*
645 		 * XXX: This duplicates a lot of code with handle_ddp_data().
646 		 */
647 		db_idx = G_COOKIE(cpl->cookie) - DDP_BUF0_INVALIDATED;
648 		INP_WLOCK(inp);
649 		DDP_LOCK(toep);
650 		db = &toep->ddp.db[db_idx];
651 
652 		/*
653 		 * handle_ddp_data() should leave the job around until
654 		 * this callback runs once a cancel is pending.
655 		 */
656 		MPASS(db != NULL);
657 		MPASS(db->job != NULL);
658 		MPASS(db->cancel_pending);
659 
660 		/*
661 		 * XXX: It's not clear what happens if there is data
662 		 * placed when the buffer is invalidated.  I suspect we
663 		 * need to read the TCB to see how much data was placed.
664 		 *
665 		 * For now this just pretends like nothing was placed.
666 		 *
667 		 * XXX: Note that if we did check the PCB we would need to
668 		 * also take care of updating the tp, etc.
669 		 */
670 		job = db->job;
671 		copied = job->aio_received;
672 		if (copied == 0) {
673 			CTR2(KTR_CXGBE, "%s: cancelling %p", __func__, job);
674 			aio_cancel(job);
675 		} else {
676 			CTR3(KTR_CXGBE, "%s: completing %p (copied %ld)",
677 			    __func__, job, copied);
678 			aio_complete(job, copied, 0);
679 			t4_rcvd(&toep->td->tod, intotcpcb(inp));
680 		}
681 
682 		complete_ddp_buffer(toep, db, db_idx);
683 		if (toep->ddp.waiting_count > 0)
684 			ddp_queue_toep(toep);
685 		DDP_UNLOCK(toep);
686 		INP_WUNLOCK(inp);
687 		break;
688 	default:
689 		panic("XXX: unknown tcb_rpl offset %#x, cookie %#x",
690 		    G_WORD(cpl->cookie), G_COOKIE(cpl->cookie));
691 	}
692 }
693 
694 void
695 handle_ddp_close(struct toepcb *toep, struct tcpcb *tp, __be32 rcv_nxt)
696 {
697 	struct ddp_buffer *db;
698 	struct kaiocb *job;
699 	long copied;
700 	unsigned int db_flag, db_idx;
701 	int len, placed;
702 
703 	INP_WLOCK_ASSERT(toep->inp);
704 	DDP_ASSERT_LOCKED(toep);
705 	len = be32toh(rcv_nxt) - tp->rcv_nxt;
706 
707 	tp->rcv_nxt += len;
708 #ifndef USE_DDP_RX_FLOW_CONTROL
709 	toep->rx_credits += len;
710 #endif
711 
712 	while (toep->ddp.active_count > 0) {
713 		MPASS(toep->ddp.active_id != -1);
714 		db_idx = toep->ddp.active_id;
715 		db_flag = db_idx == 1 ? DDP_BUF1_ACTIVE : DDP_BUF0_ACTIVE;
716 		MPASS((toep->ddp.flags & db_flag) != 0);
717 		db = &toep->ddp.db[db_idx];
718 		job = db->job;
719 		copied = job->aio_received;
720 		placed = len;
721 		if (placed > job->uaiocb.aio_nbytes - copied)
722 			placed = job->uaiocb.aio_nbytes - copied;
723 		if (placed > 0)
724 			job->msgrcv = 1;
725 		if (!aio_clear_cancel_function(job)) {
726 			/*
727 			 * Update the copied length for when
728 			 * t4_aio_cancel_active() completes this
729 			 * request.
730 			 */
731 			job->aio_received += placed;
732 		} else {
733 			CTR4(KTR_CXGBE, "%s: tid %d completed buf %d len %d",
734 			    __func__, toep->tid, db_idx, placed);
735 			aio_complete(job, copied + placed, 0);
736 		}
737 		len -= placed;
738 		complete_ddp_buffer(toep, db, db_idx);
739 	}
740 
741 	MPASS(len == 0);
742 	ddp_complete_all(toep, 0);
743 }
744 
745 #define DDP_ERR (F_DDP_PPOD_MISMATCH | F_DDP_LLIMIT_ERR | F_DDP_ULIMIT_ERR |\
746 	 F_DDP_PPOD_PARITY_ERR | F_DDP_PADDING_ERR | F_DDP_OFFSET_ERR |\
747 	 F_DDP_INVALID_TAG | F_DDP_COLOR_ERR | F_DDP_TID_MISMATCH |\
748 	 F_DDP_INVALID_PPOD | F_DDP_HDRCRC_ERR | F_DDP_DATACRC_ERR)
749 
750 extern cpl_handler_t t4_cpl_handler[];
751 
752 static int
753 do_rx_data_ddp(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m)
754 {
755 	struct adapter *sc = iq->adapter;
756 	const struct cpl_rx_data_ddp *cpl = (const void *)(rss + 1);
757 	unsigned int tid = GET_TID(cpl);
758 	uint32_t vld;
759 	struct toepcb *toep = lookup_tid(sc, tid);
760 
761 	KASSERT(m == NULL, ("%s: wasn't expecting payload", __func__));
762 	KASSERT(toep->tid == tid, ("%s: toep tid/atid mismatch", __func__));
763 	KASSERT(!(toep->flags & TPF_SYNQE),
764 	    ("%s: toep %p claims to be a synq entry", __func__, toep));
765 
766 	vld = be32toh(cpl->ddpvld);
767 	if (__predict_false(vld & DDP_ERR)) {
768 		panic("%s: DDP error 0x%x (tid %d, toep %p)",
769 		    __func__, vld, tid, toep);
770 	}
771 
772 	if (toep->ulp_mode == ULP_MODE_ISCSI) {
773 		t4_cpl_handler[CPL_RX_ISCSI_DDP](iq, rss, m);
774 		return (0);
775 	}
776 
777 	handle_ddp_data(toep, cpl->u.ddp_report, cpl->seq, be16toh(cpl->len));
778 
779 	return (0);
780 }
781 
782 static int
783 do_rx_ddp_complete(struct sge_iq *iq, const struct rss_header *rss,
784     struct mbuf *m)
785 {
786 	struct adapter *sc = iq->adapter;
787 	const struct cpl_rx_ddp_complete *cpl = (const void *)(rss + 1);
788 	unsigned int tid = GET_TID(cpl);
789 	struct toepcb *toep = lookup_tid(sc, tid);
790 
791 	KASSERT(m == NULL, ("%s: wasn't expecting payload", __func__));
792 	KASSERT(toep->tid == tid, ("%s: toep tid/atid mismatch", __func__));
793 	KASSERT(!(toep->flags & TPF_SYNQE),
794 	    ("%s: toep %p claims to be a synq entry", __func__, toep));
795 
796 	handle_ddp_data(toep, cpl->ddp_report, cpl->rcv_nxt, 0);
797 
798 	return (0);
799 }
800 
801 static void
802 enable_ddp(struct adapter *sc, struct toepcb *toep)
803 {
804 
805 	KASSERT((toep->ddp.flags & (DDP_ON | DDP_OK | DDP_SC_REQ)) == DDP_OK,
806 	    ("%s: toep %p has bad ddp_flags 0x%x",
807 	    __func__, toep, toep->ddp.flags));
808 
809 	CTR3(KTR_CXGBE, "%s: tid %u (time %u)",
810 	    __func__, toep->tid, time_uptime);
811 
812 	DDP_ASSERT_LOCKED(toep);
813 	toep->ddp.flags |= DDP_SC_REQ;
814 	t4_set_tcb_field(sc, toep->ctrlq, toep->tid, W_TCB_RX_DDP_FLAGS,
815 	    V_TF_DDP_OFF(1) | V_TF_DDP_INDICATE_OUT(1) |
816 	    V_TF_DDP_BUF0_INDICATE(1) | V_TF_DDP_BUF1_INDICATE(1) |
817 	    V_TF_DDP_BUF0_VALID(1) | V_TF_DDP_BUF1_VALID(1),
818 	    V_TF_DDP_BUF0_INDICATE(1) | V_TF_DDP_BUF1_INDICATE(1), 0, 0,
819 	    toep->ofld_rxq->iq.abs_id);
820 	t4_set_tcb_field(sc, toep->ctrlq, toep->tid, W_TCB_T_FLAGS,
821 	    V_TF_RCV_COALESCE_ENABLE(1), 0, 0, 0, toep->ofld_rxq->iq.abs_id);
822 }
823 
824 static int
825 calculate_hcf(int n1, int n2)
826 {
827 	int a, b, t;
828 
829 	if (n1 <= n2) {
830 		a = n1;
831 		b = n2;
832 	} else {
833 		a = n2;
834 		b = n1;
835 	}
836 
837 	while (a != 0) {
838 		t = a;
839 		a = b % a;
840 		b = t;
841 	}
842 
843 	return (b);
844 }
845 
846 static inline int
847 pages_to_nppods(int npages, int ddp_page_shift)
848 {
849 
850 	MPASS(ddp_page_shift >= PAGE_SHIFT);
851 
852 	return (howmany(npages >> (ddp_page_shift - PAGE_SHIFT), PPOD_PAGES));
853 }
854 
855 static int
856 alloc_page_pods(struct ppod_region *pr, u_int nppods, u_int pgsz_idx,
857     struct ppod_reservation *prsv)
858 {
859 	vmem_addr_t addr;       /* relative to start of region */
860 
861 	if (vmem_alloc(pr->pr_arena, PPOD_SZ(nppods), M_NOWAIT | M_FIRSTFIT,
862 	    &addr) != 0)
863 		return (ENOMEM);
864 
865 	CTR5(KTR_CXGBE, "%-17s arena %p, addr 0x%08x, nppods %d, pgsz %d",
866 	    __func__, pr->pr_arena, (uint32_t)addr & pr->pr_tag_mask,
867 	    nppods, 1 << pr->pr_page_shift[pgsz_idx]);
868 
869 	/*
870 	 * The hardware tagmask includes an extra invalid bit but the arena was
871 	 * seeded with valid values only.  An allocation out of this arena will
872 	 * fit inside the tagmask but won't have the invalid bit set.
873 	 */
874 	MPASS((addr & pr->pr_tag_mask) == addr);
875 	MPASS((addr & pr->pr_invalid_bit) == 0);
876 
877 	prsv->prsv_pr = pr;
878 	prsv->prsv_tag = V_PPOD_PGSZ(pgsz_idx) | addr;
879 	prsv->prsv_nppods = nppods;
880 
881 	return (0);
882 }
883 
884 int
885 t4_alloc_page_pods_for_ps(struct ppod_region *pr, struct pageset *ps)
886 {
887 	int i, hcf, seglen, idx, nppods;
888 	struct ppod_reservation *prsv = &ps->prsv;
889 
890 	KASSERT(prsv->prsv_nppods == 0,
891 	    ("%s: page pods already allocated", __func__));
892 
893 	/*
894 	 * The DDP page size is unrelated to the VM page size.  We combine
895 	 * contiguous physical pages into larger segments to get the best DDP
896 	 * page size possible.  This is the largest of the four sizes in
897 	 * A_ULP_RX_TDDP_PSZ that evenly divides the HCF of the segment sizes in
898 	 * the page list.
899 	 */
900 	hcf = 0;
901 	for (i = 0; i < ps->npages; i++) {
902 		seglen = PAGE_SIZE;
903 		while (i < ps->npages - 1 &&
904 		    ps->pages[i]->phys_addr + PAGE_SIZE ==
905 		    ps->pages[i + 1]->phys_addr) {
906 			seglen += PAGE_SIZE;
907 			i++;
908 		}
909 
910 		hcf = calculate_hcf(hcf, seglen);
911 		if (hcf < (1 << pr->pr_page_shift[1])) {
912 			idx = 0;
913 			goto have_pgsz;	/* give up, short circuit */
914 		}
915 	}
916 
917 #define PR_PAGE_MASK(x) ((1 << pr->pr_page_shift[(x)]) - 1)
918 	MPASS((hcf & PR_PAGE_MASK(0)) == 0); /* PAGE_SIZE is >= 4K everywhere */
919 	for (idx = nitems(pr->pr_page_shift) - 1; idx > 0; idx--) {
920 		if ((hcf & PR_PAGE_MASK(idx)) == 0)
921 			break;
922 	}
923 #undef PR_PAGE_MASK
924 
925 have_pgsz:
926 	MPASS(idx <= M_PPOD_PGSZ);
927 
928 	nppods = pages_to_nppods(ps->npages, pr->pr_page_shift[idx]);
929 	if (alloc_page_pods(pr, nppods, idx, prsv) != 0)
930 		return (0);
931 	MPASS(prsv->prsv_nppods > 0);
932 
933 	return (1);
934 }
935 
936 int
937 t4_alloc_page_pods_for_buf(struct ppod_region *pr, vm_offset_t buf, int len,
938     struct ppod_reservation *prsv)
939 {
940 	int hcf, seglen, idx, npages, nppods;
941 	uintptr_t start_pva, end_pva, pva, p1;
942 
943 	MPASS(buf > 0);
944 	MPASS(len > 0);
945 
946 	/*
947 	 * The DDP page size is unrelated to the VM page size.  We combine
948 	 * contiguous physical pages into larger segments to get the best DDP
949 	 * page size possible.  This is the largest of the four sizes in
950 	 * A_ULP_RX_ISCSI_PSZ that evenly divides the HCF of the segment sizes
951 	 * in the page list.
952 	 */
953 	hcf = 0;
954 	start_pva = trunc_page(buf);
955 	end_pva = trunc_page(buf + len - 1);
956 	pva = start_pva;
957 	while (pva <= end_pva) {
958 		seglen = PAGE_SIZE;
959 		p1 = pmap_kextract(pva);
960 		pva += PAGE_SIZE;
961 		while (pva <= end_pva && p1 + seglen == pmap_kextract(pva)) {
962 			seglen += PAGE_SIZE;
963 			pva += PAGE_SIZE;
964 		}
965 
966 		hcf = calculate_hcf(hcf, seglen);
967 		if (hcf < (1 << pr->pr_page_shift[1])) {
968 			idx = 0;
969 			goto have_pgsz;	/* give up, short circuit */
970 		}
971 	}
972 
973 #define PR_PAGE_MASK(x) ((1 << pr->pr_page_shift[(x)]) - 1)
974 	MPASS((hcf & PR_PAGE_MASK(0)) == 0); /* PAGE_SIZE is >= 4K everywhere */
975 	for (idx = nitems(pr->pr_page_shift) - 1; idx > 0; idx--) {
976 		if ((hcf & PR_PAGE_MASK(idx)) == 0)
977 			break;
978 	}
979 #undef PR_PAGE_MASK
980 
981 have_pgsz:
982 	MPASS(idx <= M_PPOD_PGSZ);
983 
984 	npages = 1;
985 	npages += (end_pva - start_pva) >> pr->pr_page_shift[idx];
986 	nppods = howmany(npages, PPOD_PAGES);
987 	if (alloc_page_pods(pr, nppods, idx, prsv) != 0)
988 		return (ENOMEM);
989 	MPASS(prsv->prsv_nppods > 0);
990 
991 	return (0);
992 }
993 
994 void
995 t4_free_page_pods(struct ppod_reservation *prsv)
996 {
997 	struct ppod_region *pr = prsv->prsv_pr;
998 	vmem_addr_t addr;
999 
1000 	MPASS(prsv != NULL);
1001 	MPASS(prsv->prsv_nppods != 0);
1002 
1003 	addr = prsv->prsv_tag & pr->pr_tag_mask;
1004 	MPASS((addr & pr->pr_invalid_bit) == 0);
1005 
1006 	CTR4(KTR_CXGBE, "%-17s arena %p, addr 0x%08x, nppods %d", __func__,
1007 	    pr->pr_arena, addr, prsv->prsv_nppods);
1008 
1009 	vmem_free(pr->pr_arena, addr, PPOD_SZ(prsv->prsv_nppods));
1010 	prsv->prsv_nppods = 0;
1011 }
1012 
1013 #define NUM_ULP_TX_SC_IMM_PPODS (256 / PPOD_SIZE)
1014 
1015 int
1016 t4_write_page_pods_for_ps(struct adapter *sc, struct sge_wrq *wrq, int tid,
1017     struct pageset *ps)
1018 {
1019 	struct wrqe *wr;
1020 	struct ulp_mem_io *ulpmc;
1021 	struct ulptx_idata *ulpsc;
1022 	struct pagepod *ppod;
1023 	int i, j, k, n, chunk, len, ddp_pgsz, idx;
1024 	u_int ppod_addr;
1025 	uint32_t cmd;
1026 	struct ppod_reservation *prsv = &ps->prsv;
1027 	struct ppod_region *pr = prsv->prsv_pr;
1028 
1029 	KASSERT(!(ps->flags & PS_PPODS_WRITTEN),
1030 	    ("%s: page pods already written", __func__));
1031 	MPASS(prsv->prsv_nppods > 0);
1032 
1033 	cmd = htobe32(V_ULPTX_CMD(ULP_TX_MEM_WRITE));
1034 	if (is_t4(sc))
1035 		cmd |= htobe32(F_ULP_MEMIO_ORDER);
1036 	else
1037 		cmd |= htobe32(F_T5_ULP_MEMIO_IMM);
1038 	ddp_pgsz = 1 << pr->pr_page_shift[G_PPOD_PGSZ(prsv->prsv_tag)];
1039 	ppod_addr = pr->pr_start + (prsv->prsv_tag & pr->pr_tag_mask);
1040 	for (i = 0; i < prsv->prsv_nppods; ppod_addr += chunk) {
1041 
1042 		/* How many page pods are we writing in this cycle */
1043 		n = min(prsv->prsv_nppods - i, NUM_ULP_TX_SC_IMM_PPODS);
1044 		chunk = PPOD_SZ(n);
1045 		len = roundup2(sizeof(*ulpmc) + sizeof(*ulpsc) + chunk, 16);
1046 
1047 		wr = alloc_wrqe(len, wrq);
1048 		if (wr == NULL)
1049 			return (ENOMEM);	/* ok to just bail out */
1050 		ulpmc = wrtod(wr);
1051 
1052 		INIT_ULPTX_WR(ulpmc, len, 0, 0);
1053 		ulpmc->cmd = cmd;
1054 		ulpmc->dlen = htobe32(V_ULP_MEMIO_DATA_LEN(chunk / 32));
1055 		ulpmc->len16 = htobe32(howmany(len - sizeof(ulpmc->wr), 16));
1056 		ulpmc->lock_addr = htobe32(V_ULP_MEMIO_ADDR(ppod_addr >> 5));
1057 
1058 		ulpsc = (struct ulptx_idata *)(ulpmc + 1);
1059 		ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_IMM));
1060 		ulpsc->len = htobe32(chunk);
1061 
1062 		ppod = (struct pagepod *)(ulpsc + 1);
1063 		for (j = 0; j < n; i++, j++, ppod++) {
1064 			ppod->vld_tid_pgsz_tag_color = htobe64(F_PPOD_VALID |
1065 			    V_PPOD_TID(tid) | prsv->prsv_tag);
1066 			ppod->len_offset = htobe64(V_PPOD_LEN(ps->len) |
1067 			    V_PPOD_OFST(ps->offset));
1068 			ppod->rsvd = 0;
1069 			idx = i * PPOD_PAGES * (ddp_pgsz / PAGE_SIZE);
1070 			for (k = 0; k < nitems(ppod->addr); k++) {
1071 				if (idx < ps->npages) {
1072 					ppod->addr[k] =
1073 					    htobe64(ps->pages[idx]->phys_addr);
1074 					idx += ddp_pgsz / PAGE_SIZE;
1075 				} else
1076 					ppod->addr[k] = 0;
1077 #if 0
1078 				CTR5(KTR_CXGBE,
1079 				    "%s: tid %d ppod[%d]->addr[%d] = %p",
1080 				    __func__, toep->tid, i, k,
1081 				    htobe64(ppod->addr[k]));
1082 #endif
1083 			}
1084 
1085 		}
1086 
1087 		t4_wrq_tx(sc, wr);
1088 	}
1089 	ps->flags |= PS_PPODS_WRITTEN;
1090 
1091 	return (0);
1092 }
1093 
1094 int
1095 t4_write_page_pods_for_buf(struct adapter *sc, struct sge_wrq *wrq, int tid,
1096     struct ppod_reservation *prsv, vm_offset_t buf, int buflen)
1097 {
1098 	struct wrqe *wr;
1099 	struct ulp_mem_io *ulpmc;
1100 	struct ulptx_idata *ulpsc;
1101 	struct pagepod *ppod;
1102 	int i, j, k, n, chunk, len, ddp_pgsz;
1103 	u_int ppod_addr, offset;
1104 	uint32_t cmd;
1105 	struct ppod_region *pr = prsv->prsv_pr;
1106 	uintptr_t end_pva, pva, pa;
1107 
1108 	cmd = htobe32(V_ULPTX_CMD(ULP_TX_MEM_WRITE));
1109 	if (is_t4(sc))
1110 		cmd |= htobe32(F_ULP_MEMIO_ORDER);
1111 	else
1112 		cmd |= htobe32(F_T5_ULP_MEMIO_IMM);
1113 	ddp_pgsz = 1 << pr->pr_page_shift[G_PPOD_PGSZ(prsv->prsv_tag)];
1114 	offset = buf & PAGE_MASK;
1115 	ppod_addr = pr->pr_start + (prsv->prsv_tag & pr->pr_tag_mask);
1116 	pva = trunc_page(buf);
1117 	end_pva = trunc_page(buf + buflen - 1);
1118 	for (i = 0; i < prsv->prsv_nppods; ppod_addr += chunk) {
1119 
1120 		/* How many page pods are we writing in this cycle */
1121 		n = min(prsv->prsv_nppods - i, NUM_ULP_TX_SC_IMM_PPODS);
1122 		MPASS(n > 0);
1123 		chunk = PPOD_SZ(n);
1124 		len = roundup2(sizeof(*ulpmc) + sizeof(*ulpsc) + chunk, 16);
1125 
1126 		wr = alloc_wrqe(len, wrq);
1127 		if (wr == NULL)
1128 			return (ENOMEM);	/* ok to just bail out */
1129 		ulpmc = wrtod(wr);
1130 
1131 		INIT_ULPTX_WR(ulpmc, len, 0, 0);
1132 		ulpmc->cmd = cmd;
1133 		ulpmc->dlen = htobe32(V_ULP_MEMIO_DATA_LEN(chunk / 32));
1134 		ulpmc->len16 = htobe32(howmany(len - sizeof(ulpmc->wr), 16));
1135 		ulpmc->lock_addr = htobe32(V_ULP_MEMIO_ADDR(ppod_addr >> 5));
1136 
1137 		ulpsc = (struct ulptx_idata *)(ulpmc + 1);
1138 		ulpsc->cmd_more = htobe32(V_ULPTX_CMD(ULP_TX_SC_IMM));
1139 		ulpsc->len = htobe32(chunk);
1140 
1141 		ppod = (struct pagepod *)(ulpsc + 1);
1142 		for (j = 0; j < n; i++, j++, ppod++) {
1143 			ppod->vld_tid_pgsz_tag_color = htobe64(F_PPOD_VALID |
1144 			    V_PPOD_TID(tid) |
1145 			    (prsv->prsv_tag & ~V_PPOD_PGSZ(M_PPOD_PGSZ)));
1146 			ppod->len_offset = htobe64(V_PPOD_LEN(buflen) |
1147 			    V_PPOD_OFST(offset));
1148 			ppod->rsvd = 0;
1149 
1150 			for (k = 0; k < nitems(ppod->addr); k++) {
1151 				if (pva > end_pva)
1152 					ppod->addr[k] = 0;
1153 				else {
1154 					pa = pmap_kextract(pva);
1155 					ppod->addr[k] = htobe64(pa);
1156 					pva += ddp_pgsz;
1157 				}
1158 #if 0
1159 				CTR5(KTR_CXGBE,
1160 				    "%s: tid %d ppod[%d]->addr[%d] = %p",
1161 				    __func__, tid, i, k,
1162 				    htobe64(ppod->addr[k]));
1163 #endif
1164 			}
1165 
1166 			/*
1167 			 * Walk back 1 segment so that the first address in the
1168 			 * next pod is the same as the last one in the current
1169 			 * pod.
1170 			 */
1171 			pva -= ddp_pgsz;
1172 		}
1173 
1174 		t4_wrq_tx(sc, wr);
1175 	}
1176 
1177 	MPASS(pva <= end_pva);
1178 
1179 	return (0);
1180 }
1181 
1182 static void
1183 wire_pageset(struct pageset *ps)
1184 {
1185 	vm_page_t p;
1186 	int i;
1187 
1188 	KASSERT(!(ps->flags & PS_WIRED), ("pageset already wired"));
1189 
1190 	for (i = 0; i < ps->npages; i++) {
1191 		p = ps->pages[i];
1192 		vm_page_lock(p);
1193 		vm_page_wire(p);
1194 		vm_page_unhold(p);
1195 		vm_page_unlock(p);
1196 	}
1197 	ps->flags |= PS_WIRED;
1198 }
1199 
1200 /*
1201  * Prepare a pageset for DDP.  This wires the pageset and sets up page
1202  * pods.
1203  */
1204 static int
1205 prep_pageset(struct adapter *sc, struct toepcb *toep, struct pageset *ps)
1206 {
1207 	struct tom_data *td = sc->tom_softc;
1208 
1209 	if (!(ps->flags & PS_WIRED))
1210 		wire_pageset(ps);
1211 	if (ps->prsv.prsv_nppods == 0 &&
1212 	    !t4_alloc_page_pods_for_ps(&td->pr, ps)) {
1213 		return (0);
1214 	}
1215 	if (!(ps->flags & PS_PPODS_WRITTEN) &&
1216 	    t4_write_page_pods_for_ps(sc, toep->ctrlq, toep->tid, ps) != 0) {
1217 		return (0);
1218 	}
1219 
1220 	return (1);
1221 }
1222 
1223 int
1224 t4_init_ppod_region(struct ppod_region *pr, struct t4_range *r, u_int psz,
1225     const char *name)
1226 {
1227 	int i;
1228 
1229 	MPASS(pr != NULL);
1230 	MPASS(r->size > 0);
1231 
1232 	pr->pr_start = r->start;
1233 	pr->pr_len = r->size;
1234 	pr->pr_page_shift[0] = 12 + G_HPZ0(psz);
1235 	pr->pr_page_shift[1] = 12 + G_HPZ1(psz);
1236 	pr->pr_page_shift[2] = 12 + G_HPZ2(psz);
1237 	pr->pr_page_shift[3] = 12 + G_HPZ3(psz);
1238 
1239 	/* The SGL -> page pod algorithm requires the sizes to be in order. */
1240 	for (i = 1; i < nitems(pr->pr_page_shift); i++) {
1241 		if (pr->pr_page_shift[i] <= pr->pr_page_shift[i - 1])
1242 			return (ENXIO);
1243 	}
1244 
1245 	pr->pr_tag_mask = ((1 << fls(r->size)) - 1) & V_PPOD_TAG(M_PPOD_TAG);
1246 	pr->pr_alias_mask = V_PPOD_TAG(M_PPOD_TAG) & ~pr->pr_tag_mask;
1247 	if (pr->pr_tag_mask == 0 || pr->pr_alias_mask == 0)
1248 		return (ENXIO);
1249 	pr->pr_alias_shift = fls(pr->pr_tag_mask);
1250 	pr->pr_invalid_bit = 1 << (pr->pr_alias_shift - 1);
1251 
1252 	pr->pr_arena = vmem_create(name, 0, pr->pr_len, PPOD_SIZE, 0,
1253 	    M_FIRSTFIT | M_NOWAIT);
1254 	if (pr->pr_arena == NULL)
1255 		return (ENOMEM);
1256 
1257 	return (0);
1258 }
1259 
1260 void
1261 t4_free_ppod_region(struct ppod_region *pr)
1262 {
1263 
1264 	MPASS(pr != NULL);
1265 
1266 	if (pr->pr_arena)
1267 		vmem_destroy(pr->pr_arena);
1268 	bzero(pr, sizeof(*pr));
1269 }
1270 
1271 static int
1272 pscmp(struct pageset *ps, struct vmspace *vm, vm_offset_t start, int npages,
1273     int pgoff, int len)
1274 {
1275 
1276 	if (ps->start != start || ps->npages != npages ||
1277 	    ps->offset != pgoff || ps->len != len)
1278 		return (1);
1279 
1280 	return (ps->vm != vm || ps->vm_timestamp != vm->vm_map.timestamp);
1281 }
1282 
1283 static int
1284 hold_aio(struct toepcb *toep, struct kaiocb *job, struct pageset **pps)
1285 {
1286 	struct vmspace *vm;
1287 	vm_map_t map;
1288 	vm_offset_t start, end, pgoff;
1289 	struct pageset *ps;
1290 	int n;
1291 
1292 	DDP_ASSERT_LOCKED(toep);
1293 
1294 	/*
1295 	 * The AIO subsystem will cancel and drain all requests before
1296 	 * permitting a process to exit or exec, so p_vmspace should
1297 	 * be stable here.
1298 	 */
1299 	vm = job->userproc->p_vmspace;
1300 	map = &vm->vm_map;
1301 	start = (uintptr_t)job->uaiocb.aio_buf;
1302 	pgoff = start & PAGE_MASK;
1303 	end = round_page(start + job->uaiocb.aio_nbytes);
1304 	start = trunc_page(start);
1305 
1306 	if (end - start > MAX_DDP_BUFFER_SIZE) {
1307 		/*
1308 		 * Truncate the request to a short read.
1309 		 * Alternatively, we could DDP in chunks to the larger
1310 		 * buffer, but that would be quite a bit more work.
1311 		 *
1312 		 * When truncating, round the request down to avoid
1313 		 * crossing a cache line on the final transaction.
1314 		 */
1315 		end = rounddown2(start + MAX_DDP_BUFFER_SIZE, CACHE_LINE_SIZE);
1316 #ifdef VERBOSE_TRACES
1317 		CTR4(KTR_CXGBE, "%s: tid %d, truncating size from %lu to %lu",
1318 		    __func__, toep->tid, (unsigned long)job->uaiocb.aio_nbytes,
1319 		    (unsigned long)(end - (start + pgoff)));
1320 		job->uaiocb.aio_nbytes = end - (start + pgoff);
1321 #endif
1322 		end = round_page(end);
1323 	}
1324 
1325 	n = atop(end - start);
1326 
1327 	/*
1328 	 * Try to reuse a cached pageset.
1329 	 */
1330 	TAILQ_FOREACH(ps, &toep->ddp.cached_pagesets, link) {
1331 		if (pscmp(ps, vm, start, n, pgoff,
1332 		    job->uaiocb.aio_nbytes) == 0) {
1333 			TAILQ_REMOVE(&toep->ddp.cached_pagesets, ps, link);
1334 			toep->ddp.cached_count--;
1335 			*pps = ps;
1336 			return (0);
1337 		}
1338 	}
1339 
1340 	/*
1341 	 * If there are too many cached pagesets to create a new one,
1342 	 * free a pageset before creating a new one.
1343 	 */
1344 	KASSERT(toep->ddp.active_count + toep->ddp.cached_count <=
1345 	    nitems(toep->ddp.db), ("%s: too many wired pagesets", __func__));
1346 	if (toep->ddp.active_count + toep->ddp.cached_count ==
1347 	    nitems(toep->ddp.db)) {
1348 		KASSERT(toep->ddp.cached_count > 0,
1349 		    ("no cached pageset to free"));
1350 		ps = TAILQ_LAST(&toep->ddp.cached_pagesets, pagesetq);
1351 		TAILQ_REMOVE(&toep->ddp.cached_pagesets, ps, link);
1352 		toep->ddp.cached_count--;
1353 		free_pageset(toep->td, ps);
1354 	}
1355 	DDP_UNLOCK(toep);
1356 
1357 	/* Create a new pageset. */
1358 	ps = malloc(sizeof(*ps) + n * sizeof(vm_page_t), M_CXGBE, M_WAITOK |
1359 	    M_ZERO);
1360 	ps->pages = (vm_page_t *)(ps + 1);
1361 	ps->vm_timestamp = map->timestamp;
1362 	ps->npages = vm_fault_quick_hold_pages(map, start, end - start,
1363 	    VM_PROT_WRITE, ps->pages, n);
1364 
1365 	DDP_LOCK(toep);
1366 	if (ps->npages < 0) {
1367 		free(ps, M_CXGBE);
1368 		return (EFAULT);
1369 	}
1370 
1371 	KASSERT(ps->npages == n, ("hold_aio: page count mismatch: %d vs %d",
1372 	    ps->npages, n));
1373 
1374 	ps->offset = pgoff;
1375 	ps->len = job->uaiocb.aio_nbytes;
1376 	atomic_add_int(&vm->vm_refcnt, 1);
1377 	ps->vm = vm;
1378 	ps->start = start;
1379 
1380 	CTR5(KTR_CXGBE, "%s: tid %d, new pageset %p for job %p, npages %d",
1381 	    __func__, toep->tid, ps, job, ps->npages);
1382 	*pps = ps;
1383 	return (0);
1384 }
1385 
1386 static void
1387 ddp_complete_all(struct toepcb *toep, int error)
1388 {
1389 	struct kaiocb *job;
1390 
1391 	DDP_ASSERT_LOCKED(toep);
1392 	while (!TAILQ_EMPTY(&toep->ddp.aiojobq)) {
1393 		job = TAILQ_FIRST(&toep->ddp.aiojobq);
1394 		TAILQ_REMOVE(&toep->ddp.aiojobq, job, list);
1395 		toep->ddp.waiting_count--;
1396 		if (aio_clear_cancel_function(job))
1397 			ddp_complete_one(job, error);
1398 	}
1399 }
1400 
1401 static void
1402 aio_ddp_cancel_one(struct kaiocb *job)
1403 {
1404 	long copied;
1405 
1406 	/*
1407 	 * If this job had copied data out of the socket buffer before
1408 	 * it was cancelled, report it as a short read rather than an
1409 	 * error.
1410 	 */
1411 	copied = job->aio_received;
1412 	if (copied != 0)
1413 		aio_complete(job, copied, 0);
1414 	else
1415 		aio_cancel(job);
1416 }
1417 
1418 /*
1419  * Called when the main loop wants to requeue a job to retry it later.
1420  * Deals with the race of the job being cancelled while it was being
1421  * examined.
1422  */
1423 static void
1424 aio_ddp_requeue_one(struct toepcb *toep, struct kaiocb *job)
1425 {
1426 
1427 	DDP_ASSERT_LOCKED(toep);
1428 	if (!(toep->ddp.flags & DDP_DEAD) &&
1429 	    aio_set_cancel_function(job, t4_aio_cancel_queued)) {
1430 		TAILQ_INSERT_HEAD(&toep->ddp.aiojobq, job, list);
1431 		toep->ddp.waiting_count++;
1432 	} else
1433 		aio_ddp_cancel_one(job);
1434 }
1435 
1436 static void
1437 aio_ddp_requeue(struct toepcb *toep)
1438 {
1439 	struct adapter *sc = td_adapter(toep->td);
1440 	struct socket *so;
1441 	struct sockbuf *sb;
1442 	struct inpcb *inp;
1443 	struct kaiocb *job;
1444 	struct ddp_buffer *db;
1445 	size_t copied, offset, resid;
1446 	struct pageset *ps;
1447 	struct mbuf *m;
1448 	uint64_t ddp_flags, ddp_flags_mask;
1449 	struct wrqe *wr;
1450 	int buf_flag, db_idx, error;
1451 
1452 	DDP_ASSERT_LOCKED(toep);
1453 
1454 restart:
1455 	if (toep->ddp.flags & DDP_DEAD) {
1456 		MPASS(toep->ddp.waiting_count == 0);
1457 		MPASS(toep->ddp.active_count == 0);
1458 		return;
1459 	}
1460 
1461 	if (toep->ddp.waiting_count == 0 ||
1462 	    toep->ddp.active_count == nitems(toep->ddp.db)) {
1463 		return;
1464 	}
1465 
1466 	job = TAILQ_FIRST(&toep->ddp.aiojobq);
1467 	so = job->fd_file->f_data;
1468 	sb = &so->so_rcv;
1469 	SOCKBUF_LOCK(sb);
1470 
1471 	/* We will never get anything unless we are or were connected. */
1472 	if (!(so->so_state & (SS_ISCONNECTED|SS_ISDISCONNECTED))) {
1473 		SOCKBUF_UNLOCK(sb);
1474 		ddp_complete_all(toep, ENOTCONN);
1475 		return;
1476 	}
1477 
1478 	KASSERT(toep->ddp.active_count == 0 || sbavail(sb) == 0,
1479 	    ("%s: pending sockbuf data and DDP is active", __func__));
1480 
1481 	/* Abort if socket has reported problems. */
1482 	/* XXX: Wait for any queued DDP's to finish and/or flush them? */
1483 	if (so->so_error && sbavail(sb) == 0) {
1484 		toep->ddp.waiting_count--;
1485 		TAILQ_REMOVE(&toep->ddp.aiojobq, job, list);
1486 		if (!aio_clear_cancel_function(job)) {
1487 			SOCKBUF_UNLOCK(sb);
1488 			goto restart;
1489 		}
1490 
1491 		/*
1492 		 * If this job has previously copied some data, report
1493 		 * a short read and leave the error to be reported by
1494 		 * a future request.
1495 		 */
1496 		copied = job->aio_received;
1497 		if (copied != 0) {
1498 			SOCKBUF_UNLOCK(sb);
1499 			aio_complete(job, copied, 0);
1500 			goto restart;
1501 		}
1502 		error = so->so_error;
1503 		so->so_error = 0;
1504 		SOCKBUF_UNLOCK(sb);
1505 		aio_complete(job, -1, error);
1506 		goto restart;
1507 	}
1508 
1509 	/*
1510 	 * Door is closed.  If there is pending data in the socket buffer,
1511 	 * deliver it.  If there are pending DDP requests, wait for those
1512 	 * to complete.  Once they have completed, return EOF reads.
1513 	 */
1514 	if (sb->sb_state & SBS_CANTRCVMORE && sbavail(sb) == 0) {
1515 		SOCKBUF_UNLOCK(sb);
1516 		if (toep->ddp.active_count != 0)
1517 			return;
1518 		ddp_complete_all(toep, 0);
1519 		return;
1520 	}
1521 
1522 	/*
1523 	 * If DDP is not enabled and there is no pending socket buffer
1524 	 * data, try to enable DDP.
1525 	 */
1526 	if (sbavail(sb) == 0 && (toep->ddp.flags & DDP_ON) == 0) {
1527 		SOCKBUF_UNLOCK(sb);
1528 
1529 		/*
1530 		 * Wait for the card to ACK that DDP is enabled before
1531 		 * queueing any buffers.  Currently this waits for an
1532 		 * indicate to arrive.  This could use a TCB_SET_FIELD_RPL
1533 		 * message to know that DDP was enabled instead of waiting
1534 		 * for the indicate which would avoid copying the indicate
1535 		 * if no data is pending.
1536 		 *
1537 		 * XXX: Might want to limit the indicate size to the size
1538 		 * of the first queued request.
1539 		 */
1540 		if ((toep->ddp.flags & DDP_SC_REQ) == 0)
1541 			enable_ddp(sc, toep);
1542 		return;
1543 	}
1544 	SOCKBUF_UNLOCK(sb);
1545 
1546 	/*
1547 	 * If another thread is queueing a buffer for DDP, let it
1548 	 * drain any work and return.
1549 	 */
1550 	if (toep->ddp.queueing != NULL)
1551 		return;
1552 
1553 	/* Take the next job to prep it for DDP. */
1554 	toep->ddp.waiting_count--;
1555 	TAILQ_REMOVE(&toep->ddp.aiojobq, job, list);
1556 	if (!aio_clear_cancel_function(job))
1557 		goto restart;
1558 	toep->ddp.queueing = job;
1559 
1560 	/* NB: This drops DDP_LOCK while it holds the backing VM pages. */
1561 	error = hold_aio(toep, job, &ps);
1562 	if (error != 0) {
1563 		ddp_complete_one(job, error);
1564 		toep->ddp.queueing = NULL;
1565 		goto restart;
1566 	}
1567 
1568 	SOCKBUF_LOCK(sb);
1569 	if (so->so_error && sbavail(sb) == 0) {
1570 		copied = job->aio_received;
1571 		if (copied != 0) {
1572 			SOCKBUF_UNLOCK(sb);
1573 			recycle_pageset(toep, ps);
1574 			aio_complete(job, copied, 0);
1575 			toep->ddp.queueing = NULL;
1576 			goto restart;
1577 		}
1578 
1579 		error = so->so_error;
1580 		so->so_error = 0;
1581 		SOCKBUF_UNLOCK(sb);
1582 		recycle_pageset(toep, ps);
1583 		aio_complete(job, -1, error);
1584 		toep->ddp.queueing = NULL;
1585 		goto restart;
1586 	}
1587 
1588 	if (sb->sb_state & SBS_CANTRCVMORE && sbavail(sb) == 0) {
1589 		SOCKBUF_UNLOCK(sb);
1590 		recycle_pageset(toep, ps);
1591 		if (toep->ddp.active_count != 0) {
1592 			/*
1593 			 * The door is closed, but there are still pending
1594 			 * DDP buffers.  Requeue.  These jobs will all be
1595 			 * completed once those buffers drain.
1596 			 */
1597 			aio_ddp_requeue_one(toep, job);
1598 			toep->ddp.queueing = NULL;
1599 			return;
1600 		}
1601 		ddp_complete_one(job, 0);
1602 		ddp_complete_all(toep, 0);
1603 		toep->ddp.queueing = NULL;
1604 		return;
1605 	}
1606 
1607 sbcopy:
1608 	/*
1609 	 * If the toep is dead, there shouldn't be any data in the socket
1610 	 * buffer, so the above case should have handled this.
1611 	 */
1612 	MPASS(!(toep->ddp.flags & DDP_DEAD));
1613 
1614 	/*
1615 	 * If there is pending data in the socket buffer (either
1616 	 * from before the requests were queued or a DDP indicate),
1617 	 * copy those mbufs out directly.
1618 	 */
1619 	copied = 0;
1620 	offset = ps->offset + job->aio_received;
1621 	MPASS(job->aio_received <= job->uaiocb.aio_nbytes);
1622 	resid = job->uaiocb.aio_nbytes - job->aio_received;
1623 	m = sb->sb_mb;
1624 	KASSERT(m == NULL || toep->ddp.active_count == 0,
1625 	    ("%s: sockbuf data with active DDP", __func__));
1626 	while (m != NULL && resid > 0) {
1627 		struct iovec iov[1];
1628 		struct uio uio;
1629 		int error;
1630 
1631 		iov[0].iov_base = mtod(m, void *);
1632 		iov[0].iov_len = m->m_len;
1633 		if (iov[0].iov_len > resid)
1634 			iov[0].iov_len = resid;
1635 		uio.uio_iov = iov;
1636 		uio.uio_iovcnt = 1;
1637 		uio.uio_offset = 0;
1638 		uio.uio_resid = iov[0].iov_len;
1639 		uio.uio_segflg = UIO_SYSSPACE;
1640 		uio.uio_rw = UIO_WRITE;
1641 		error = uiomove_fromphys(ps->pages, offset + copied,
1642 		    uio.uio_resid, &uio);
1643 		MPASS(error == 0 && uio.uio_resid == 0);
1644 		copied += uio.uio_offset;
1645 		resid -= uio.uio_offset;
1646 		m = m->m_next;
1647 	}
1648 	if (copied != 0) {
1649 		sbdrop_locked(sb, copied);
1650 		job->aio_received += copied;
1651 		job->msgrcv = 1;
1652 		copied = job->aio_received;
1653 		inp = sotoinpcb(so);
1654 		if (!INP_TRY_WLOCK(inp)) {
1655 			/*
1656 			 * The reference on the socket file descriptor in
1657 			 * the AIO job should keep 'sb' and 'inp' stable.
1658 			 * Our caller has a reference on the 'toep' that
1659 			 * keeps it stable.
1660 			 */
1661 			SOCKBUF_UNLOCK(sb);
1662 			DDP_UNLOCK(toep);
1663 			INP_WLOCK(inp);
1664 			DDP_LOCK(toep);
1665 			SOCKBUF_LOCK(sb);
1666 
1667 			/*
1668 			 * If the socket has been closed, we should detect
1669 			 * that and complete this request if needed on
1670 			 * the next trip around the loop.
1671 			 */
1672 		}
1673 		t4_rcvd_locked(&toep->td->tod, intotcpcb(inp));
1674 		INP_WUNLOCK(inp);
1675 		if (resid == 0 || toep->ddp.flags & DDP_DEAD) {
1676 			/*
1677 			 * We filled the entire buffer with socket
1678 			 * data, DDP is not being used, or the socket
1679 			 * is being shut down, so complete the
1680 			 * request.
1681 			 */
1682 			SOCKBUF_UNLOCK(sb);
1683 			recycle_pageset(toep, ps);
1684 			aio_complete(job, copied, 0);
1685 			toep->ddp.queueing = NULL;
1686 			goto restart;
1687 		}
1688 
1689 		/*
1690 		 * If DDP is not enabled, requeue this request and restart.
1691 		 * This will either enable DDP or wait for more data to
1692 		 * arrive on the socket buffer.
1693 		 */
1694 		if ((toep->ddp.flags & (DDP_ON | DDP_SC_REQ)) != DDP_ON) {
1695 			SOCKBUF_UNLOCK(sb);
1696 			recycle_pageset(toep, ps);
1697 			aio_ddp_requeue_one(toep, job);
1698 			toep->ddp.queueing = NULL;
1699 			goto restart;
1700 		}
1701 
1702 		/*
1703 		 * An indicate might have arrived and been added to
1704 		 * the socket buffer while it was unlocked after the
1705 		 * copy to lock the INP.  If so, restart the copy.
1706 		 */
1707 		if (sbavail(sb) != 0)
1708 			goto sbcopy;
1709 	}
1710 	SOCKBUF_UNLOCK(sb);
1711 
1712 	if (prep_pageset(sc, toep, ps) == 0) {
1713 		recycle_pageset(toep, ps);
1714 		aio_ddp_requeue_one(toep, job);
1715 		toep->ddp.queueing = NULL;
1716 
1717 		/*
1718 		 * XXX: Need to retry this later.  Mostly need a trigger
1719 		 * when page pods are freed up.
1720 		 */
1721 		printf("%s: prep_pageset failed\n", __func__);
1722 		return;
1723 	}
1724 
1725 	/* Determine which DDP buffer to use. */
1726 	if (toep->ddp.db[0].job == NULL) {
1727 		db_idx = 0;
1728 	} else {
1729 		MPASS(toep->ddp.db[1].job == NULL);
1730 		db_idx = 1;
1731 	}
1732 
1733 	ddp_flags = 0;
1734 	ddp_flags_mask = 0;
1735 	if (db_idx == 0) {
1736 		ddp_flags |= V_TF_DDP_BUF0_VALID(1);
1737 		if (so->so_state & SS_NBIO)
1738 			ddp_flags |= V_TF_DDP_BUF0_FLUSH(1);
1739 		ddp_flags_mask |= V_TF_DDP_PSH_NO_INVALIDATE0(1) |
1740 		    V_TF_DDP_PUSH_DISABLE_0(1) | V_TF_DDP_PSHF_ENABLE_0(1) |
1741 		    V_TF_DDP_BUF0_FLUSH(1) | V_TF_DDP_BUF0_VALID(1);
1742 		buf_flag = DDP_BUF0_ACTIVE;
1743 	} else {
1744 		ddp_flags |= V_TF_DDP_BUF1_VALID(1);
1745 		if (so->so_state & SS_NBIO)
1746 			ddp_flags |= V_TF_DDP_BUF1_FLUSH(1);
1747 		ddp_flags_mask |= V_TF_DDP_PSH_NO_INVALIDATE1(1) |
1748 		    V_TF_DDP_PUSH_DISABLE_1(1) | V_TF_DDP_PSHF_ENABLE_1(1) |
1749 		    V_TF_DDP_BUF1_FLUSH(1) | V_TF_DDP_BUF1_VALID(1);
1750 		buf_flag = DDP_BUF1_ACTIVE;
1751 	}
1752 	MPASS((toep->ddp.flags & buf_flag) == 0);
1753 	if ((toep->ddp.flags & (DDP_BUF0_ACTIVE | DDP_BUF1_ACTIVE)) == 0) {
1754 		MPASS(db_idx == 0);
1755 		MPASS(toep->ddp.active_id == -1);
1756 		MPASS(toep->ddp.active_count == 0);
1757 		ddp_flags_mask |= V_TF_DDP_ACTIVE_BUF(1);
1758 	}
1759 
1760 	/*
1761 	 * The TID for this connection should still be valid.  If DDP_DEAD
1762 	 * is set, SBS_CANTRCVMORE should be set, so we shouldn't be
1763 	 * this far anyway.  Even if the socket is closing on the other
1764 	 * end, the AIO job holds a reference on this end of the socket
1765 	 * which will keep it open and keep the TCP PCB attached until
1766 	 * after the job is completed.
1767 	 */
1768 	wr = mk_update_tcb_for_ddp(sc, toep, db_idx, ps, job->aio_received,
1769 	    ddp_flags, ddp_flags_mask);
1770 	if (wr == NULL) {
1771 		recycle_pageset(toep, ps);
1772 		aio_ddp_requeue_one(toep, job);
1773 		toep->ddp.queueing = NULL;
1774 
1775 		/*
1776 		 * XXX: Need a way to kick a retry here.
1777 		 *
1778 		 * XXX: We know the fixed size needed and could
1779 		 * preallocate this using a blocking request at the
1780 		 * start of the task to avoid having to handle this
1781 		 * edge case.
1782 		 */
1783 		printf("%s: mk_update_tcb_for_ddp failed\n", __func__);
1784 		return;
1785 	}
1786 
1787 	if (!aio_set_cancel_function(job, t4_aio_cancel_active)) {
1788 		free_wrqe(wr);
1789 		recycle_pageset(toep, ps);
1790 		aio_ddp_cancel_one(job);
1791 		toep->ddp.queueing = NULL;
1792 		goto restart;
1793 	}
1794 
1795 #ifdef VERBOSE_TRACES
1796 	CTR5(KTR_CXGBE, "%s: scheduling %p for DDP[%d] (flags %#lx/%#lx)",
1797 	    __func__, job, db_idx, ddp_flags, ddp_flags_mask);
1798 #endif
1799 	/* Give the chip the go-ahead. */
1800 	t4_wrq_tx(sc, wr);
1801 	db = &toep->ddp.db[db_idx];
1802 	db->cancel_pending = 0;
1803 	db->job = job;
1804 	db->ps = ps;
1805 	toep->ddp.queueing = NULL;
1806 	toep->ddp.flags |= buf_flag;
1807 	toep->ddp.active_count++;
1808 	if (toep->ddp.active_count == 1) {
1809 		MPASS(toep->ddp.active_id == -1);
1810 		toep->ddp.active_id = db_idx;
1811 		CTR2(KTR_CXGBE, "%s: ddp_active_id = %d", __func__,
1812 		    toep->ddp.active_id);
1813 	}
1814 	goto restart;
1815 }
1816 
1817 void
1818 ddp_queue_toep(struct toepcb *toep)
1819 {
1820 
1821 	DDP_ASSERT_LOCKED(toep);
1822 	if (toep->ddp.flags & DDP_TASK_ACTIVE)
1823 		return;
1824 	toep->ddp.flags |= DDP_TASK_ACTIVE;
1825 	hold_toepcb(toep);
1826 	soaio_enqueue(&toep->ddp.requeue_task);
1827 }
1828 
1829 static void
1830 aio_ddp_requeue_task(void *context, int pending)
1831 {
1832 	struct toepcb *toep = context;
1833 
1834 	DDP_LOCK(toep);
1835 	aio_ddp_requeue(toep);
1836 	toep->ddp.flags &= ~DDP_TASK_ACTIVE;
1837 	DDP_UNLOCK(toep);
1838 
1839 	free_toepcb(toep);
1840 }
1841 
1842 static void
1843 t4_aio_cancel_active(struct kaiocb *job)
1844 {
1845 	struct socket *so = job->fd_file->f_data;
1846 	struct tcpcb *tp = so_sototcpcb(so);
1847 	struct toepcb *toep = tp->t_toe;
1848 	struct adapter *sc = td_adapter(toep->td);
1849 	uint64_t valid_flag;
1850 	int i;
1851 
1852 	DDP_LOCK(toep);
1853 	if (aio_cancel_cleared(job)) {
1854 		DDP_UNLOCK(toep);
1855 		aio_ddp_cancel_one(job);
1856 		return;
1857 	}
1858 
1859 	for (i = 0; i < nitems(toep->ddp.db); i++) {
1860 		if (toep->ddp.db[i].job == job) {
1861 			/* Should only ever get one cancel request for a job. */
1862 			MPASS(toep->ddp.db[i].cancel_pending == 0);
1863 
1864 			/*
1865 			 * Invalidate this buffer.  It will be
1866 			 * cancelled or partially completed once the
1867 			 * card ACKs the invalidate.
1868 			 */
1869 			valid_flag = i == 0 ? V_TF_DDP_BUF0_VALID(1) :
1870 			    V_TF_DDP_BUF1_VALID(1);
1871 			t4_set_tcb_field(sc, toep->ctrlq, toep->tid,
1872 			    W_TCB_RX_DDP_FLAGS, valid_flag, 0, 1,
1873 			    i + DDP_BUF0_INVALIDATED,
1874 			    toep->ofld_rxq->iq.abs_id);
1875 			toep->ddp.db[i].cancel_pending = 1;
1876 			CTR2(KTR_CXGBE, "%s: request %p marked pending",
1877 			    __func__, job);
1878 			break;
1879 		}
1880 	}
1881 	DDP_UNLOCK(toep);
1882 }
1883 
1884 static void
1885 t4_aio_cancel_queued(struct kaiocb *job)
1886 {
1887 	struct socket *so = job->fd_file->f_data;
1888 	struct tcpcb *tp = so_sototcpcb(so);
1889 	struct toepcb *toep = tp->t_toe;
1890 
1891 	DDP_LOCK(toep);
1892 	if (!aio_cancel_cleared(job)) {
1893 		TAILQ_REMOVE(&toep->ddp.aiojobq, job, list);
1894 		toep->ddp.waiting_count--;
1895 		if (toep->ddp.waiting_count == 0)
1896 			ddp_queue_toep(toep);
1897 	}
1898 	CTR2(KTR_CXGBE, "%s: request %p cancelled", __func__, job);
1899 	DDP_UNLOCK(toep);
1900 
1901 	aio_ddp_cancel_one(job);
1902 }
1903 
1904 int
1905 t4_aio_queue_ddp(struct socket *so, struct kaiocb *job)
1906 {
1907 	struct tcpcb *tp = so_sototcpcb(so);
1908 	struct toepcb *toep = tp->t_toe;
1909 
1910 
1911 	/* Ignore writes. */
1912 	if (job->uaiocb.aio_lio_opcode != LIO_READ)
1913 		return (EOPNOTSUPP);
1914 
1915 	DDP_LOCK(toep);
1916 
1917 	/*
1918 	 * XXX: Think about possibly returning errors for ENOTCONN,
1919 	 * etc.  Perhaps the caller would only queue the request
1920 	 * if it failed with EOPNOTSUPP?
1921 	 */
1922 
1923 #ifdef VERBOSE_TRACES
1924 	CTR2(KTR_CXGBE, "%s: queueing %p", __func__, job);
1925 #endif
1926 	if (!aio_set_cancel_function(job, t4_aio_cancel_queued))
1927 		panic("new job was cancelled");
1928 	TAILQ_INSERT_TAIL(&toep->ddp.aiojobq, job, list);
1929 	toep->ddp.waiting_count++;
1930 	toep->ddp.flags |= DDP_OK;
1931 
1932 	/*
1933 	 * Try to handle this request synchronously.  If this has
1934 	 * to block because the task is running, it will just bail
1935 	 * and let the task handle it instead.
1936 	 */
1937 	aio_ddp_requeue(toep);
1938 	DDP_UNLOCK(toep);
1939 	return (0);
1940 }
1941 
1942 int
1943 t4_ddp_mod_load(void)
1944 {
1945 
1946 	t4_register_cpl_handler(CPL_RX_DATA_DDP, do_rx_data_ddp);
1947 	t4_register_cpl_handler(CPL_RX_DDP_COMPLETE, do_rx_ddp_complete);
1948 	TAILQ_INIT(&ddp_orphan_pagesets);
1949 	mtx_init(&ddp_orphan_pagesets_lock, "ddp orphans", NULL, MTX_DEF);
1950 	TASK_INIT(&ddp_orphan_task, 0, ddp_free_orphan_pagesets, NULL);
1951 	return (0);
1952 }
1953 
1954 void
1955 t4_ddp_mod_unload(void)
1956 {
1957 
1958 	taskqueue_drain(taskqueue_thread, &ddp_orphan_task);
1959 	MPASS(TAILQ_EMPTY(&ddp_orphan_pagesets));
1960 	mtx_destroy(&ddp_orphan_pagesets_lock);
1961 	t4_register_cpl_handler(CPL_RX_DATA_DDP, NULL);
1962 	t4_register_cpl_handler(CPL_RX_DDP_COMPLETE, NULL);
1963 }
1964 #endif
1965