rc.c 67.5 KB
Newer Older
M
Mike Marciniszyn 已提交
1
/*
J
Jubin John 已提交
2
 * Copyright(c) 2015, 2016 Intel Corporation.
M
Mike Marciniszyn 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
 *
 * This file is provided under a dual BSD/GPLv2 license.  When using or
 * redistributing this file, you may do so under either license.
 *
 * GPL LICENSE SUMMARY
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * BSD LICENSE
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *  - Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *  - Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *  - Neither the name of Intel Corporation nor the names of its
 *    contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <linux/io.h>
49 50
#include <rdma/rdma_vt.h>
#include <rdma/rdmavt_qp.h>
M
Mike Marciniszyn 已提交
51 52 53

#include "hfi.h"
#include "qp.h"
54
#include "verbs_txreq.h"
M
Mike Marciniszyn 已提交
55 56 57
#include "trace.h"

/* cut down ridiculously long IB macro names */
58
#define OP(x) RC_OP(x)
M
Mike Marciniszyn 已提交
59

60
static u32 restart_sge(struct rvt_sge_state *ss, struct rvt_swqe *wqe,
M
Mike Marciniszyn 已提交
61 62 63 64 65 66 67 68 69
		       u32 psn, u32 pmtu)
{
	u32 len;

	len = delta_psn(psn, wqe->psn) * pmtu;
	ss->sge = wqe->sg_list[0];
	ss->sg_list = wqe->sg_list + 1;
	ss->num_sge = wqe->wr.num_sge;
	ss->total_len = wqe->length;
70
	rvt_skip_sge(ss, len, false);
M
Mike Marciniszyn 已提交
71 72 73 74 75 76 77 78
	return wqe->length - len;
}

/**
 * make_rc_ack - construct a response packet (ACK, NAK, or RDMA read)
 * @dev: the device for this QP
 * @qp: a pointer to the QP
 * @ohdr: a pointer to the IB header being constructed
79
 * @ps: the xmit packet state
M
Mike Marciniszyn 已提交
80 81 82 83 84
 *
 * Return 1 if constructed; otherwise, return 0.
 * Note that we are in the responder's side of the QP context.
 * Note the QP s_lock must be held.
 */
85
static int make_rc_ack(struct hfi1_ibdev *dev, struct rvt_qp *qp,
86
		       struct ib_other_headers *ohdr,
87
		       struct hfi1_pkt_state *ps)
M
Mike Marciniszyn 已提交
88
{
89
	struct rvt_ack_entry *e;
M
Mike Marciniszyn 已提交
90 91 92 93 94
	u32 hwords;
	u32 len;
	u32 bth0;
	u32 bth2;
	int middle = 0;
95
	u32 pmtu = qp->pmtu;
96
	struct hfi1_qp_priv *priv = qp->priv;
M
Mike Marciniszyn 已提交
97

98
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
99
	/* Don't send an ACK if we aren't supposed to. */
100
	if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK))
M
Mike Marciniszyn 已提交
101 102
		goto bail;

D
Don Hiatt 已提交
103 104 105 106 107 108
	if (priv->hdr_type == HFI1_PKT_TYPE_9B)
		/* header size in 32-bit words LRH+BTH = (8+12)/4. */
		hwords = 5;
	else
		/* header size in 32-bit words 16B LRH+BTH = (16+12)/4. */
		hwords = 7;
M
Mike Marciniszyn 已提交
109 110 111 112 113 114

	switch (qp->s_ack_state) {
	case OP(RDMA_READ_RESPONSE_LAST):
	case OP(RDMA_READ_RESPONSE_ONLY):
		e = &qp->s_ack_queue[qp->s_tail_ack_queue];
		if (e->rdma_sge.mr) {
115
			rvt_put_mr(e->rdma_sge.mr);
M
Mike Marciniszyn 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
			e->rdma_sge.mr = NULL;
		}
		/* FALLTHROUGH */
	case OP(ATOMIC_ACKNOWLEDGE):
		/*
		 * We can increment the tail pointer now that the last
		 * response has been sent instead of only being
		 * constructed.
		 */
		if (++qp->s_tail_ack_queue > HFI1_MAX_RDMA_ATOMIC)
			qp->s_tail_ack_queue = 0;
		/* FALLTHROUGH */
	case OP(SEND_ONLY):
	case OP(ACKNOWLEDGE):
		/* Check for no next entry in the queue. */
		if (qp->r_head_ack_queue == qp->s_tail_ack_queue) {
132
			if (qp->s_flags & RVT_S_ACK_PENDING)
M
Mike Marciniszyn 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
				goto normal;
			goto bail;
		}

		e = &qp->s_ack_queue[qp->s_tail_ack_queue];
		if (e->opcode == OP(RDMA_READ_REQUEST)) {
			/*
			 * If a RDMA read response is being resent and
			 * we haven't seen the duplicate request yet,
			 * then stop sending the remaining responses the
			 * responder has seen until the requester re-sends it.
			 */
			len = e->rdma_sge.sge_length;
			if (len && !e->rdma_sge.mr) {
				qp->s_tail_ack_queue = qp->r_head_ack_queue;
				goto bail;
			}
			/* Copy SGE state in case we need to resend */
151 152 153
			ps->s_txreq->mr = e->rdma_sge.mr;
			if (ps->s_txreq->mr)
				rvt_get_mr(ps->s_txreq->mr);
M
Mike Marciniszyn 已提交
154 155
			qp->s_ack_rdma_sge.sge = e->rdma_sge;
			qp->s_ack_rdma_sge.num_sge = 1;
156
			ps->s_txreq->ss = &qp->s_ack_rdma_sge;
M
Mike Marciniszyn 已提交
157 158 159 160 161 162 163
			if (len > pmtu) {
				len = pmtu;
				qp->s_ack_state = OP(RDMA_READ_RESPONSE_FIRST);
			} else {
				qp->s_ack_state = OP(RDMA_READ_RESPONSE_ONLY);
				e->sent = 1;
			}
164
			ohdr->u.aeth = rvt_compute_aeth(qp);
M
Mike Marciniszyn 已提交
165 166 167 168 169
			hwords++;
			qp->s_ack_rdma_psn = e->psn;
			bth2 = mask_psn(qp->s_ack_rdma_psn++);
		} else {
			/* COMPARE_SWAP or FETCH_ADD */
170
			ps->s_txreq->ss = NULL;
M
Mike Marciniszyn 已提交
171 172
			len = 0;
			qp->s_ack_state = OP(ATOMIC_ACKNOWLEDGE);
173
			ohdr->u.at.aeth = rvt_compute_aeth(qp);
174
			ib_u64_put(e->atomic_data, &ohdr->u.at.atomic_ack_eth);
M
Mike Marciniszyn 已提交
175 176 177 178 179 180 181 182 183 184 185
			hwords += sizeof(ohdr->u.at) / sizeof(u32);
			bth2 = mask_psn(e->psn);
			e->sent = 1;
		}
		bth0 = qp->s_ack_state << 24;
		break;

	case OP(RDMA_READ_RESPONSE_FIRST):
		qp->s_ack_state = OP(RDMA_READ_RESPONSE_MIDDLE);
		/* FALLTHROUGH */
	case OP(RDMA_READ_RESPONSE_MIDDLE):
186
		ps->s_txreq->ss = &qp->s_ack_rdma_sge;
187 188 189
		ps->s_txreq->mr = qp->s_ack_rdma_sge.sge.mr;
		if (ps->s_txreq->mr)
			rvt_get_mr(ps->s_txreq->mr);
M
Mike Marciniszyn 已提交
190 191 192 193 194
		len = qp->s_ack_rdma_sge.sge.sge_length;
		if (len > pmtu) {
			len = pmtu;
			middle = HFI1_CAP_IS_KSET(SDMA_AHG);
		} else {
195
			ohdr->u.aeth = rvt_compute_aeth(qp);
M
Mike Marciniszyn 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
			hwords++;
			qp->s_ack_state = OP(RDMA_READ_RESPONSE_LAST);
			e = &qp->s_ack_queue[qp->s_tail_ack_queue];
			e->sent = 1;
		}
		bth0 = qp->s_ack_state << 24;
		bth2 = mask_psn(qp->s_ack_rdma_psn++);
		break;

	default:
normal:
		/*
		 * Send a regular ACK.
		 * Set the s_ack_state so we wait until after sending
		 * the ACK before setting s_ack_state to ACKNOWLEDGE
		 * (see above).
		 */
		qp->s_ack_state = OP(SEND_ONLY);
214
		qp->s_flags &= ~RVT_S_ACK_PENDING;
215
		ps->s_txreq->ss = NULL;
M
Mike Marciniszyn 已提交
216 217
		if (qp->s_nak_state)
			ohdr->u.aeth =
218
				cpu_to_be32((qp->r_msn & IB_MSN_MASK) |
M
Mike Marciniszyn 已提交
219
					    (qp->s_nak_state <<
220
					     IB_AETH_CREDIT_SHIFT));
M
Mike Marciniszyn 已提交
221
		else
222
			ohdr->u.aeth = rvt_compute_aeth(qp);
M
Mike Marciniszyn 已提交
223 224 225 226 227 228 229
		hwords++;
		len = 0;
		bth0 = OP(ACKNOWLEDGE) << 24;
		bth2 = mask_psn(qp->s_ack_psn);
	}
	qp->s_rdma_ack_cnt++;
	qp->s_hdrwords = hwords;
230
	ps->s_txreq->sde = priv->s_sde;
231
	ps->s_txreq->s_cur_size = len;
232
	hfi1_make_ruc_header(qp, ohdr, bth0, bth2, middle, ps);
233 234
	/* pbc */
	ps->s_txreq->hdr_dwords = qp->s_hdrwords + 2;
M
Mike Marciniszyn 已提交
235 236 237 238 239 240
	return 1;

bail:
	qp->s_ack_state = OP(ACKNOWLEDGE);
	/*
	 * Ensure s_rdma_ack_cnt changes are committed prior to resetting
241
	 * RVT_S_RESP_PENDING
M
Mike Marciniszyn 已提交
242 243
	 */
	smp_wmb();
244 245 246
	qp->s_flags &= ~(RVT_S_RESP_PENDING
				| RVT_S_ACK_PENDING
				| RVT_S_AHG_VALID);
M
Mike Marciniszyn 已提交
247 248 249 250 251 252 253
	return 0;
}

/**
 * hfi1_make_rc_req - construct a request packet (SEND, RDMA r/w, ATOMIC)
 * @qp: a pointer to the QP
 *
254 255
 * Assumes s_lock is held.
 *
M
Mike Marciniszyn 已提交
256 257
 * Return 1 if constructed; otherwise, return 0.
 */
258
int hfi1_make_rc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
M
Mike Marciniszyn 已提交
259
{
260
	struct hfi1_qp_priv *priv = qp->priv;
M
Mike Marciniszyn 已提交
261
	struct hfi1_ibdev *dev = to_idev(qp->ibqp.device);
262
	struct ib_other_headers *ohdr;
263 264
	struct rvt_sge_state *ss;
	struct rvt_swqe *wqe;
D
Don Hiatt 已提交
265
	u32 hwords;
M
Mike Marciniszyn 已提交
266 267 268 269 270 271 272 273
	u32 len;
	u32 bth0 = 0;
	u32 bth2;
	u32 pmtu = qp->pmtu;
	char newreq;
	int middle = 0;
	int delta;

274
	lockdep_assert_held(&qp->s_lock);
275 276 277 278
	ps->s_txreq = get_txreq(ps->dev, qp);
	if (IS_ERR(ps->s_txreq))
		goto bail_no_tx;

D
Don Hiatt 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
	if (priv->hdr_type == HFI1_PKT_TYPE_9B) {
		/* header size in 32-bit words LRH+BTH = (8+12)/4. */
		hwords = 5;
		if (rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH)
			ohdr = &ps->s_txreq->phdr.hdr.ibh.u.l.oth;
		else
			ohdr = &ps->s_txreq->phdr.hdr.ibh.u.oth;
	} else {
		/* header size in 32-bit words 16B LRH+BTH = (16+12)/4. */
		hwords = 7;
		if ((rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH) &&
		    (hfi1_check_mcast(rdma_ah_get_dlid(&qp->remote_ah_attr))))
			ohdr = &ps->s_txreq->phdr.hdr.opah.u.l.oth;
		else
			ohdr = &ps->s_txreq->phdr.hdr.opah.u.oth;
	}
M
Mike Marciniszyn 已提交
295 296

	/* Sending responses has higher priority over sending requests. */
297
	if ((qp->s_flags & RVT_S_RESP_PENDING) &&
298
	    make_rc_ack(dev, qp, ohdr, ps))
299
		return 1;
M
Mike Marciniszyn 已提交
300

301 302
	if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_SEND_OK)) {
		if (!(ib_rvt_state_ops[qp->state] & RVT_FLUSH_SEND))
M
Mike Marciniszyn 已提交
303 304
			goto bail;
		/* We are in the error state, flush the work request. */
305
		smp_read_barrier_depends(); /* see post_one_send() */
306
		if (qp->s_last == READ_ONCE(qp->s_head))
M
Mike Marciniszyn 已提交
307 308
			goto bail;
		/* If DMAs are in progress, we can't flush immediately. */
309
		if (iowait_sdma_pending(&priv->s_iowait)) {
310
			qp->s_flags |= RVT_S_WAIT_DMA;
M
Mike Marciniszyn 已提交
311 312 313
			goto bail;
		}
		clear_ahg(qp);
314
		wqe = rvt_get_swqe_ptr(qp, qp->s_last);
M
Mike Marciniszyn 已提交
315 316 317
		hfi1_send_complete(qp, wqe, qp->s_last != qp->s_acked ?
			IB_WC_SUCCESS : IB_WC_WR_FLUSH_ERR);
		/* will get called again */
318
		goto done_free_tx;
M
Mike Marciniszyn 已提交
319 320
	}

321
	if (qp->s_flags & (RVT_S_WAIT_RNR | RVT_S_WAIT_ACK))
M
Mike Marciniszyn 已提交
322 323 324 325
		goto bail;

	if (cmp_psn(qp->s_psn, qp->s_sending_hpsn) <= 0) {
		if (cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) <= 0) {
326
			qp->s_flags |= RVT_S_WAIT_PSN;
M
Mike Marciniszyn 已提交
327 328 329 330 331 332 333
			goto bail;
		}
		qp->s_sending_psn = qp->s_psn;
		qp->s_sending_hpsn = qp->s_psn - 1;
	}

	/* Send a request. */
334
	wqe = rvt_get_swqe_ptr(qp, qp->s_cur);
M
Mike Marciniszyn 已提交
335 336
	switch (qp->s_state) {
	default:
337
		if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_NEXT_SEND_OK))
M
Mike Marciniszyn 已提交
338 339 340 341 342 343 344 345 346 347 348
			goto bail;
		/*
		 * Resend an old request or start a new one.
		 *
		 * We keep track of the current SWQE so that
		 * we don't reset the "furthest progress" state
		 * if we need to back up.
		 */
		newreq = 0;
		if (qp->s_cur == qp->s_tail) {
			/* Check if send work queue is empty. */
349 350
			smp_read_barrier_depends(); /* see post_one_send() */
			if (qp->s_tail == READ_ONCE(qp->s_head)) {
M
Mike Marciniszyn 已提交
351 352 353 354 355 356 357 358 359
				clear_ahg(qp);
				goto bail;
			}
			/*
			 * If a fence is requested, wait for previous
			 * RDMA read and atomic operations to finish.
			 */
			if ((wqe->wr.send_flags & IB_SEND_FENCE) &&
			    qp->s_num_rd_atomic) {
360
				qp->s_flags |= RVT_S_WAIT_FENCE;
M
Mike Marciniszyn 已提交
361 362
				goto bail;
			}
363 364 365 366 367 368
			/*
			 * Local operations are processed immediately
			 * after all prior requests have completed
			 */
			if (wqe->wr.opcode == IB_WR_REG_MR ||
			    wqe->wr.opcode == IB_WR_LOCAL_INV) {
369 370 371
				int local_ops = 0;
				int err = 0;

372 373 374 375 376 377
				if (qp->s_last != qp->s_cur)
					goto bail;
				if (++qp->s_cur == qp->s_size)
					qp->s_cur = 0;
				if (++qp->s_tail == qp->s_size)
					qp->s_tail = 0;
378 379
				if (!(wqe->wr.send_flags &
				      RVT_SEND_COMPLETION_ONLY)) {
380 381 382
					err = rvt_invalidate_rkey(
						qp,
						wqe->wr.ex.invalidate_rkey);
383 384
					local_ops = 1;
				}
385 386 387
				hfi1_send_complete(qp, wqe,
						   err ? IB_WC_LOC_PROT_ERR
						       : IB_WC_SUCCESS);
388 389
				if (local_ops)
					atomic_dec(&qp->local_ops_pending);
390 391 392 393
				qp->s_hdrwords = 0;
				goto done_free_tx;
			}

M
Mike Marciniszyn 已提交
394
			newreq = 1;
395
			qp->s_psn = wqe->psn;
M
Mike Marciniszyn 已提交
396 397 398 399 400 401 402 403 404 405 406 407
		}
		/*
		 * Note that we have to be careful not to modify the
		 * original work request since we may need to resend
		 * it.
		 */
		len = wqe->length;
		ss = &qp->s_sge;
		bth2 = mask_psn(qp->s_psn);
		switch (wqe->wr.opcode) {
		case IB_WR_SEND:
		case IB_WR_SEND_WITH_IMM:
408
		case IB_WR_SEND_WITH_INV:
M
Mike Marciniszyn 已提交
409
			/* If no credit, return. */
410
			if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT) &&
411
			    rvt_cmp_msn(wqe->ssn, qp->s_lsn + 1) > 0) {
412
				qp->s_flags |= RVT_S_WAIT_SSN_CREDIT;
M
Mike Marciniszyn 已提交
413 414 415 416 417 418 419
				goto bail;
			}
			if (len > pmtu) {
				qp->s_state = OP(SEND_FIRST);
				len = pmtu;
				break;
			}
420
			if (wqe->wr.opcode == IB_WR_SEND) {
M
Mike Marciniszyn 已提交
421
				qp->s_state = OP(SEND_ONLY);
422
			} else if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
M
Mike Marciniszyn 已提交
423 424 425 426
				qp->s_state = OP(SEND_ONLY_WITH_IMMEDIATE);
				/* Immediate data comes after the BTH */
				ohdr->u.imm_data = wqe->wr.ex.imm_data;
				hwords += 1;
427 428 429 430 431 432
			} else {
				qp->s_state = OP(SEND_ONLY_WITH_INVALIDATE);
				/* Invalidate rkey comes after the BTH */
				ohdr->u.ieth = cpu_to_be32(
						wqe->wr.ex.invalidate_rkey);
				hwords += 1;
M
Mike Marciniszyn 已提交
433 434 435 436 437 438 439 440 441
			}
			if (wqe->wr.send_flags & IB_SEND_SOLICITED)
				bth0 |= IB_BTH_SOLICITED;
			bth2 |= IB_BTH_REQ_ACK;
			if (++qp->s_cur == qp->s_size)
				qp->s_cur = 0;
			break;

		case IB_WR_RDMA_WRITE:
442
			if (newreq && !(qp->s_flags & RVT_S_UNLIMITED_CREDIT))
M
Mike Marciniszyn 已提交
443
				qp->s_lsn++;
444
			goto no_flow_control;
M
Mike Marciniszyn 已提交
445 446
		case IB_WR_RDMA_WRITE_WITH_IMM:
			/* If no credit, return. */
447
			if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT) &&
448
			    rvt_cmp_msn(wqe->ssn, qp->s_lsn + 1) > 0) {
449
				qp->s_flags |= RVT_S_WAIT_SSN_CREDIT;
M
Mike Marciniszyn 已提交
450 451
				goto bail;
			}
452
no_flow_control:
453 454 455
			put_ib_reth_vaddr(
				wqe->rdma_wr.remote_addr,
				&ohdr->u.rc.reth);
M
Mike Marciniszyn 已提交
456
			ohdr->u.rc.reth.rkey =
C
Christoph Hellwig 已提交
457
				cpu_to_be32(wqe->rdma_wr.rkey);
M
Mike Marciniszyn 已提交
458 459 460 461 462 463 464
			ohdr->u.rc.reth.length = cpu_to_be32(len);
			hwords += sizeof(struct ib_reth) / sizeof(u32);
			if (len > pmtu) {
				qp->s_state = OP(RDMA_WRITE_FIRST);
				len = pmtu;
				break;
			}
465
			if (wqe->wr.opcode == IB_WR_RDMA_WRITE) {
M
Mike Marciniszyn 已提交
466
				qp->s_state = OP(RDMA_WRITE_ONLY);
467
			} else {
M
Mike Marciniszyn 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
				qp->s_state =
					OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE);
				/* Immediate data comes after RETH */
				ohdr->u.rc.imm_data = wqe->wr.ex.imm_data;
				hwords += 1;
				if (wqe->wr.send_flags & IB_SEND_SOLICITED)
					bth0 |= IB_BTH_SOLICITED;
			}
			bth2 |= IB_BTH_REQ_ACK;
			if (++qp->s_cur == qp->s_size)
				qp->s_cur = 0;
			break;

		case IB_WR_RDMA_READ:
			/*
			 * Don't allow more operations to be started
			 * than the QP limits allow.
			 */
			if (newreq) {
				if (qp->s_num_rd_atomic >=
				    qp->s_max_rd_atomic) {
489
					qp->s_flags |= RVT_S_WAIT_RDMAR;
M
Mike Marciniszyn 已提交
490 491 492
					goto bail;
				}
				qp->s_num_rd_atomic++;
493
				if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT))
M
Mike Marciniszyn 已提交
494 495
					qp->s_lsn++;
			}
496 497 498
			put_ib_reth_vaddr(
				wqe->rdma_wr.remote_addr,
				&ohdr->u.rc.reth);
M
Mike Marciniszyn 已提交
499
			ohdr->u.rc.reth.rkey =
C
Christoph Hellwig 已提交
500
				cpu_to_be32(wqe->rdma_wr.rkey);
M
Mike Marciniszyn 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
			ohdr->u.rc.reth.length = cpu_to_be32(len);
			qp->s_state = OP(RDMA_READ_REQUEST);
			hwords += sizeof(ohdr->u.rc.reth) / sizeof(u32);
			ss = NULL;
			len = 0;
			bth2 |= IB_BTH_REQ_ACK;
			if (++qp->s_cur == qp->s_size)
				qp->s_cur = 0;
			break;

		case IB_WR_ATOMIC_CMP_AND_SWP:
		case IB_WR_ATOMIC_FETCH_AND_ADD:
			/*
			 * Don't allow more operations to be started
			 * than the QP limits allow.
			 */
			if (newreq) {
				if (qp->s_num_rd_atomic >=
				    qp->s_max_rd_atomic) {
520
					qp->s_flags |= RVT_S_WAIT_RDMAR;
M
Mike Marciniszyn 已提交
521 522 523
					goto bail;
				}
				qp->s_num_rd_atomic++;
524
				if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT))
M
Mike Marciniszyn 已提交
525 526 527 528
					qp->s_lsn++;
			}
			if (wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
				qp->s_state = OP(COMPARE_SWAP);
529 530 531 532
				put_ib_ateth_swap(wqe->atomic_wr.swap,
						  &ohdr->u.atomic_eth);
				put_ib_ateth_compare(wqe->atomic_wr.compare_add,
						     &ohdr->u.atomic_eth);
M
Mike Marciniszyn 已提交
533 534
			} else {
				qp->s_state = OP(FETCH_ADD);
535 536 537
				put_ib_ateth_swap(wqe->atomic_wr.compare_add,
						  &ohdr->u.atomic_eth);
				put_ib_ateth_compare(0, &ohdr->u.atomic_eth);
M
Mike Marciniszyn 已提交
538
			}
539 540
			put_ib_ateth_vaddr(wqe->atomic_wr.remote_addr,
					   &ohdr->u.atomic_eth);
M
Mike Marciniszyn 已提交
541
			ohdr->u.atomic_eth.rkey = cpu_to_be32(
C
Christoph Hellwig 已提交
542
				wqe->atomic_wr.rkey);
M
Mike Marciniszyn 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
			hwords += sizeof(struct ib_atomic_eth) / sizeof(u32);
			ss = NULL;
			len = 0;
			bth2 |= IB_BTH_REQ_ACK;
			if (++qp->s_cur == qp->s_size)
				qp->s_cur = 0;
			break;

		default:
			goto bail;
		}
		qp->s_sge.sge = wqe->sg_list[0];
		qp->s_sge.sg_list = wqe->sg_list + 1;
		qp->s_sge.num_sge = wqe->wr.num_sge;
		qp->s_sge.total_len = wqe->length;
		qp->s_len = wqe->length;
		if (newreq) {
			qp->s_tail++;
			if (qp->s_tail >= qp->s_size)
				qp->s_tail = 0;
		}
		if (wqe->wr.opcode == IB_WR_RDMA_READ)
			qp->s_psn = wqe->lpsn + 1;
566
		else
M
Mike Marciniszyn 已提交
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
			qp->s_psn++;
		break;

	case OP(RDMA_READ_RESPONSE_FIRST):
		/*
		 * qp->s_state is normally set to the opcode of the
		 * last packet constructed for new requests and therefore
		 * is never set to RDMA read response.
		 * RDMA_READ_RESPONSE_FIRST is used by the ACK processing
		 * thread to indicate a SEND needs to be restarted from an
		 * earlier PSN without interfering with the sending thread.
		 * See restart_rc().
		 */
		qp->s_len = restart_sge(&qp->s_sge, wqe, qp->s_psn, pmtu);
		/* FALLTHROUGH */
	case OP(SEND_FIRST):
		qp->s_state = OP(SEND_MIDDLE);
		/* FALLTHROUGH */
	case OP(SEND_MIDDLE):
		bth2 = mask_psn(qp->s_psn++);
		ss = &qp->s_sge;
		len = qp->s_len;
		if (len > pmtu) {
			len = pmtu;
			middle = HFI1_CAP_IS_KSET(SDMA_AHG);
			break;
		}
594
		if (wqe->wr.opcode == IB_WR_SEND) {
M
Mike Marciniszyn 已提交
595
			qp->s_state = OP(SEND_LAST);
596
		} else if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
M
Mike Marciniszyn 已提交
597 598 599 600
			qp->s_state = OP(SEND_LAST_WITH_IMMEDIATE);
			/* Immediate data comes after the BTH */
			ohdr->u.imm_data = wqe->wr.ex.imm_data;
			hwords += 1;
601 602 603 604 605
		} else {
			qp->s_state = OP(SEND_LAST_WITH_INVALIDATE);
			/* invalidate data comes after the BTH */
			ohdr->u.ieth = cpu_to_be32(wqe->wr.ex.invalidate_rkey);
			hwords += 1;
M
Mike Marciniszyn 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
		}
		if (wqe->wr.send_flags & IB_SEND_SOLICITED)
			bth0 |= IB_BTH_SOLICITED;
		bth2 |= IB_BTH_REQ_ACK;
		qp->s_cur++;
		if (qp->s_cur >= qp->s_size)
			qp->s_cur = 0;
		break;

	case OP(RDMA_READ_RESPONSE_LAST):
		/*
		 * qp->s_state is normally set to the opcode of the
		 * last packet constructed for new requests and therefore
		 * is never set to RDMA read response.
		 * RDMA_READ_RESPONSE_LAST is used by the ACK processing
		 * thread to indicate a RDMA write needs to be restarted from
		 * an earlier PSN without interfering with the sending thread.
		 * See restart_rc().
		 */
		qp->s_len = restart_sge(&qp->s_sge, wqe, qp->s_psn, pmtu);
		/* FALLTHROUGH */
	case OP(RDMA_WRITE_FIRST):
		qp->s_state = OP(RDMA_WRITE_MIDDLE);
		/* FALLTHROUGH */
	case OP(RDMA_WRITE_MIDDLE):
		bth2 = mask_psn(qp->s_psn++);
		ss = &qp->s_sge;
		len = qp->s_len;
		if (len > pmtu) {
			len = pmtu;
			middle = HFI1_CAP_IS_KSET(SDMA_AHG);
			break;
		}
639
		if (wqe->wr.opcode == IB_WR_RDMA_WRITE) {
M
Mike Marciniszyn 已提交
640
			qp->s_state = OP(RDMA_WRITE_LAST);
641
		} else {
M
Mike Marciniszyn 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
			qp->s_state = OP(RDMA_WRITE_LAST_WITH_IMMEDIATE);
			/* Immediate data comes after the BTH */
			ohdr->u.imm_data = wqe->wr.ex.imm_data;
			hwords += 1;
			if (wqe->wr.send_flags & IB_SEND_SOLICITED)
				bth0 |= IB_BTH_SOLICITED;
		}
		bth2 |= IB_BTH_REQ_ACK;
		qp->s_cur++;
		if (qp->s_cur >= qp->s_size)
			qp->s_cur = 0;
		break;

	case OP(RDMA_READ_RESPONSE_MIDDLE):
		/*
		 * qp->s_state is normally set to the opcode of the
		 * last packet constructed for new requests and therefore
		 * is never set to RDMA read response.
		 * RDMA_READ_RESPONSE_MIDDLE is used by the ACK processing
		 * thread to indicate a RDMA read needs to be restarted from
		 * an earlier PSN without interfering with the sending thread.
		 * See restart_rc().
		 */
		len = (delta_psn(qp->s_psn, wqe->psn)) * pmtu;
666 667 668
		put_ib_reth_vaddr(
			wqe->rdma_wr.remote_addr + len,
			&ohdr->u.rc.reth);
M
Mike Marciniszyn 已提交
669
		ohdr->u.rc.reth.rkey =
C
Christoph Hellwig 已提交
670
			cpu_to_be32(wqe->rdma_wr.rkey);
M
Mike Marciniszyn 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
		ohdr->u.rc.reth.length = cpu_to_be32(wqe->length - len);
		qp->s_state = OP(RDMA_READ_REQUEST);
		hwords += sizeof(ohdr->u.rc.reth) / sizeof(u32);
		bth2 = mask_psn(qp->s_psn) | IB_BTH_REQ_ACK;
		qp->s_psn = wqe->lpsn + 1;
		ss = NULL;
		len = 0;
		qp->s_cur++;
		if (qp->s_cur == qp->s_size)
			qp->s_cur = 0;
		break;
	}
	qp->s_sending_hpsn = bth2;
	delta = delta_psn(bth2, wqe->psn);
	if (delta && delta % HFI1_PSN_CREDIT == 0)
		bth2 |= IB_BTH_REQ_ACK;
687 688 689
	if (qp->s_flags & RVT_S_SEND_ONE) {
		qp->s_flags &= ~RVT_S_SEND_ONE;
		qp->s_flags |= RVT_S_WAIT_ACK;
M
Mike Marciniszyn 已提交
690 691 692 693
		bth2 |= IB_BTH_REQ_ACK;
	}
	qp->s_len -= len;
	qp->s_hdrwords = hwords;
694
	ps->s_txreq->sde = priv->s_sde;
695
	ps->s_txreq->ss = ss;
696
	ps->s_txreq->s_cur_size = len;
M
Mike Marciniszyn 已提交
697 698 699 700 701
	hfi1_make_ruc_header(
		qp,
		ohdr,
		bth0 | (qp->s_state << 24),
		bth2,
702 703
		middle,
		ps);
704 705
	/* pbc */
	ps->s_txreq->hdr_dwords = qp->s_hdrwords + 2;
706 707 708 709 710
	return 1;

done_free_tx:
	hfi1_put_txreq(ps->s_txreq);
	ps->s_txreq = NULL;
711
	return 1;
712

M
Mike Marciniszyn 已提交
713
bail:
714 715 716 717
	hfi1_put_txreq(ps->s_txreq);

bail_no_tx:
	ps->s_txreq = NULL;
718
	qp->s_flags &= ~RVT_S_BUSY;
719 720
	qp->s_hdrwords = 0;
	return 0;
M
Mike Marciniszyn 已提交
721 722
}

D
Don Hiatt 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
static inline void hfi1_make_bth_aeth(struct rvt_qp *qp,
				      struct ib_other_headers *ohdr,
				      u32 bth0, u32 bth1)
{
	if (qp->r_nak_state)
		ohdr->u.aeth = cpu_to_be32((qp->r_msn & IB_MSN_MASK) |
					    (qp->r_nak_state <<
					     IB_AETH_CREDIT_SHIFT));
	else
		ohdr->u.aeth = rvt_compute_aeth(qp);

	ohdr->bth[0] = cpu_to_be32(bth0);
	ohdr->bth[1] = cpu_to_be32(bth1 | qp->remote_qpn);
	ohdr->bth[2] = cpu_to_be32(mask_psn(qp->r_ack_psn));
}

static inline void hfi1_queue_rc_ack(struct rvt_qp *qp, bool is_fecn)
{
	struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
	unsigned long flags;

	spin_lock_irqsave(&qp->s_lock, flags);
	if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK))
		goto unlock;
	this_cpu_inc(*ibp->rvp.rc_qacks);
	qp->s_flags |= RVT_S_ACK_PENDING | RVT_S_RESP_PENDING;
	qp->s_nak_state = qp->r_nak_state;
	qp->s_ack_psn = qp->r_ack_psn;
	if (is_fecn)
		qp->s_flags |= RVT_S_ECN;

	/* Schedule the send tasklet. */
	hfi1_schedule_send(qp);
unlock:
	spin_unlock_irqrestore(&qp->s_lock, flags);
}

static inline void hfi1_make_rc_ack_9B(struct rvt_qp *qp,
				       struct hfi1_opa_header *opa_hdr,
				       u8 sc5, bool is_fecn,
				       u64 *pbc_flags, u32 *hwords,
				       u32 *nwords)
{
	struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
	struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
	struct ib_header *hdr = &opa_hdr->ibh;
	struct ib_other_headers *ohdr;
	u16 lrh0 = HFI1_LRH_BTH;
	u16 pkey;
	u32 bth0, bth1;

	opa_hdr->hdr_type = HFI1_PKT_TYPE_9B;
	ohdr = &hdr->u.oth;
	/* header size in 32-bit words LRH+BTH+AETH = (8+12+4)/4 */
	*hwords = 6;

	if (unlikely(rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH)) {
		*hwords += hfi1_make_grh(ibp, &hdr->u.l.grh,
					 rdma_ah_read_grh(&qp->remote_ah_attr),
					 *hwords - 2, SIZE_OF_CRC);
		ohdr = &hdr->u.l.oth;
		lrh0 = HFI1_LRH_GRH;
	}
	/* set PBC_DC_INFO bit (aka SC[4]) in pbc_flags */
	*pbc_flags |= ((!!(sc5 & 0x10)) << PBC_DC_INFO_SHIFT);

	/* read pkey_index w/o lock (its atomic) */
	pkey = hfi1_get_pkey(ibp, qp->s_pkey_index);

	lrh0 |= (sc5 & IB_SC_MASK) << IB_SC_SHIFT |
		(rdma_ah_get_sl(&qp->remote_ah_attr) & IB_SL_MASK) <<
			IB_SL_SHIFT;

	hfi1_make_ib_hdr(hdr, lrh0, *hwords + SIZE_OF_CRC,
			 opa_get_lid(rdma_ah_get_dlid(&qp->remote_ah_attr), 9B),
			 ppd->lid | rdma_ah_get_path_bits(&qp->remote_ah_attr));

	bth0 = pkey | (OP(ACKNOWLEDGE) << 24);
	if (qp->s_mig_state == IB_MIG_MIGRATED)
		bth0 |= IB_BTH_MIG_REQ;
	bth1 = (!!is_fecn) << IB_BECN_SHIFT;
	hfi1_make_bth_aeth(qp, ohdr, bth0, bth1);
}

static inline void hfi1_make_rc_ack_16B(struct rvt_qp *qp,
					struct hfi1_opa_header *opa_hdr,
					u8 sc5, bool is_fecn,
					u64 *pbc_flags, u32 *hwords,
					u32 *nwords)
{
	struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
	struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
	struct hfi1_16b_header *hdr = &opa_hdr->opah;
	struct ib_other_headers *ohdr;
	u32 bth0, bth1;
	u16 len, pkey;
	u8 becn = !!is_fecn;
	u8 l4 = OPA_16B_L4_IB_LOCAL;
	u8 extra_bytes;

	opa_hdr->hdr_type = HFI1_PKT_TYPE_16B;
	ohdr = &hdr->u.oth;
	/* header size in 32-bit words 16B LRH+BTH+AETH = (16+12+4)/4 */
	*hwords = 8;
	extra_bytes = hfi1_get_16b_padding(*hwords << 2, 0);
	*nwords = SIZE_OF_CRC + ((extra_bytes + SIZE_OF_LT) >> 2);

	if (unlikely(rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH) &&
	    hfi1_check_mcast(rdma_ah_get_dlid(&qp->remote_ah_attr))) {
		*hwords += hfi1_make_grh(ibp, &hdr->u.l.grh,
					 rdma_ah_read_grh(&qp->remote_ah_attr),
					 *hwords - 4, *nwords);
		ohdr = &hdr->u.l.oth;
		l4 = OPA_16B_L4_IB_GLOBAL;
	}
	*pbc_flags |= PBC_PACKET_BYPASS | PBC_INSERT_BYPASS_ICRC;

	/* read pkey_index w/o lock (its atomic) */
	pkey = hfi1_get_pkey(ibp, qp->s_pkey_index);

	/* Convert dwords to flits */
	len = (*hwords + *nwords) >> 1;

	hfi1_make_16b_hdr(hdr,
			  ppd->lid | rdma_ah_get_path_bits(&qp->remote_ah_attr),
			  opa_get_lid(rdma_ah_get_dlid(&qp->remote_ah_attr),
				      16B),
			  len, pkey, becn, 0, l4, sc5);

	bth0 = pkey | (OP(ACKNOWLEDGE) << 24);
	bth0 |= extra_bytes << 20;
	if (qp->s_mig_state == IB_MIG_MIGRATED)
		bth1 = OPA_BTH_MIG_REQ;
	hfi1_make_bth_aeth(qp, ohdr, bth0, bth1);
}

typedef void (*hfi1_make_rc_ack)(struct rvt_qp *qp,
				 struct hfi1_opa_header *opa_hdr,
				 u8 sc5, bool is_fecn,
				 u64 *pbc_flags, u32 *hwords,
				 u32 *nwords);

/* We support only two types - 9B and 16B for now */
static const hfi1_make_rc_ack hfi1_make_rc_ack_tbl[2] = {
	[HFI1_PKT_TYPE_9B] = &hfi1_make_rc_ack_9B,
	[HFI1_PKT_TYPE_16B] = &hfi1_make_rc_ack_16B
};

M
Mike Marciniszyn 已提交
871 872 873 874 875 876
/**
 * hfi1_send_rc_ack - Construct an ACK packet and send it
 * @qp: a pointer to the QP
 *
 * This is called from hfi1_rc_rcv() and handle_receive_interrupt().
 * Note that RDMA reads and atomics are handled in the
877
 * send side QP state and send engine.
M
Mike Marciniszyn 已提交
878
 */
D
Don Hiatt 已提交
879 880
void hfi1_send_rc_ack(struct hfi1_ctxtdata *rcd,
		      struct rvt_qp *qp, bool is_fecn)
M
Mike Marciniszyn 已提交
881
{
882
	struct hfi1_ibport *ibp = rcd_to_iport(rcd);
D
Don Hiatt 已提交
883
	struct hfi1_qp_priv *priv = qp->priv;
M
Mike Marciniszyn 已提交
884
	struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
D
Don Hiatt 已提交
885
	u8 sc5 = ibp->sl_to_sc[rdma_ah_get_sl(&qp->remote_ah_attr)];
M
Mike Marciniszyn 已提交
886
	u64 pbc, pbc_flags = 0;
D
Don Hiatt 已提交
887 888 889
	u32 hwords = 0;
	u32 nwords = 0;
	u32 plen;
M
Mike Marciniszyn 已提交
890
	struct pio_buf *pbuf;
D
Don Hiatt 已提交
891
	struct hfi1_opa_header opa_hdr;
892 893

	/* clear the defer count */
894
	qp->r_adefered = 0;
M
Mike Marciniszyn 已提交
895 896

	/* Don't send ACK or NAK if a RDMA read or atomic is pending. */
D
Don Hiatt 已提交
897 898 899 900
	if (qp->s_flags & RVT_S_RESP_PENDING) {
		hfi1_queue_rc_ack(qp, is_fecn);
		return;
	}
M
Mike Marciniszyn 已提交
901 902 903

	/* Ensure s_rdma_ack_cnt changes are committed */
	smp_read_barrier_depends();
D
Don Hiatt 已提交
904 905 906
	if (qp->s_rdma_ack_cnt) {
		hfi1_queue_rc_ack(qp, is_fecn);
		return;
M
Mike Marciniszyn 已提交
907 908 909 910 911 912
	}

	/* Don't try to send ACKs if the link isn't ACTIVE */
	if (driver_lstate(ppd) != IB_PORT_ACTIVE)
		return;

D
Don Hiatt 已提交
913 914 915
	/* Make the appropriate header */
	hfi1_make_rc_ack_tbl[priv->hdr_type](qp, &opa_hdr, sc5, is_fecn,
					     &pbc_flags, &hwords, &nwords);
M
Mike Marciniszyn 已提交
916

D
Don Hiatt 已提交
917 918 919 920
	plen = 2 /* PBC */ + hwords + nwords;
	pbc = create_pbc(ppd, pbc_flags, qp->srate_mbps,
			 sc_to_vlt(ppd->dd, sc5), plen);
	pbuf = sc_buffer_alloc(rcd->sc, plen, NULL, NULL);
M
Mike Marciniszyn 已提交
921 922 923
	if (!pbuf) {
		/*
		 * We have no room to send at the moment.  Pass
924
		 * responsibility for sending the ACK to the send engine
M
Mike Marciniszyn 已提交
925 926 927
		 * so that when enough buffer space becomes available,
		 * the ACK is sent ahead of other outgoing packets.
		 */
D
Don Hiatt 已提交
928 929
		hfi1_queue_rc_ack(qp, is_fecn);
		return;
M
Mike Marciniszyn 已提交
930
	}
931
	trace_ack_output_ibhdr(dd_from_ibdev(qp->ibqp.device),
D
Don Hiatt 已提交
932
			       &opa_hdr, ib_is_sc5(sc5));
M
Mike Marciniszyn 已提交
933 934

	/* write the pbc and data */
D
Don Hiatt 已提交
935 936 937 938
	ppd->dd->pio_inline_send(ppd->dd, pbuf, pbc,
				 (priv->hdr_type == HFI1_PKT_TYPE_9B ?
				 (void *)&opa_hdr.ibh :
				 (void *)&opa_hdr.opah), hwords);
M
Mike Marciniszyn 已提交
939 940 941 942 943 944 945 946 947 948 949 950
	return;
}

/**
 * reset_psn - reset the QP state to send starting from PSN
 * @qp: the QP
 * @psn: the packet sequence number to restart at
 *
 * This is called from hfi1_rc_rcv() to process an incoming RC ACK
 * for the given QP.
 * Called at interrupt level with the QP s_lock held.
 */
951
static void reset_psn(struct rvt_qp *qp, u32 psn)
M
Mike Marciniszyn 已提交
952 953
{
	u32 n = qp->s_acked;
954
	struct rvt_swqe *wqe = rvt_get_swqe_ptr(qp, n);
M
Mike Marciniszyn 已提交
955 956
	u32 opcode;

957
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
	qp->s_cur = n;

	/*
	 * If we are starting the request from the beginning,
	 * let the normal send code handle initialization.
	 */
	if (cmp_psn(psn, wqe->psn) <= 0) {
		qp->s_state = OP(SEND_LAST);
		goto done;
	}

	/* Find the work request opcode corresponding to the given PSN. */
	opcode = wqe->wr.opcode;
	for (;;) {
		int diff;

		if (++n == qp->s_size)
			n = 0;
		if (n == qp->s_tail)
			break;
978
		wqe = rvt_get_swqe_ptr(qp, n);
M
Mike Marciniszyn 已提交
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
		diff = cmp_psn(psn, wqe->psn);
		if (diff < 0)
			break;
		qp->s_cur = n;
		/*
		 * If we are starting the request from the beginning,
		 * let the normal send code handle initialization.
		 */
		if (diff == 0) {
			qp->s_state = OP(SEND_LAST);
			goto done;
		}
		opcode = wqe->wr.opcode;
	}

	/*
	 * Set the state to restart in the middle of a request.
	 * Don't change the s_sge, s_cur_sge, or s_cur_size.
	 * See hfi1_make_rc_req().
	 */
	switch (opcode) {
	case IB_WR_SEND:
	case IB_WR_SEND_WITH_IMM:
		qp->s_state = OP(RDMA_READ_RESPONSE_FIRST);
		break;

	case IB_WR_RDMA_WRITE:
	case IB_WR_RDMA_WRITE_WITH_IMM:
		qp->s_state = OP(RDMA_READ_RESPONSE_LAST);
		break;

	case IB_WR_RDMA_READ:
		qp->s_state = OP(RDMA_READ_RESPONSE_MIDDLE);
		break;

	default:
		/*
		 * This case shouldn't happen since its only
		 * one PSN per req.
		 */
		qp->s_state = OP(SEND_LAST);
	}
done:
	qp->s_psn = psn;
	/*
1024
	 * Set RVT_S_WAIT_PSN as rc_complete() may start the timer
1025
	 * asynchronously before the send engine can get scheduled.
M
Mike Marciniszyn 已提交
1026 1027 1028 1029
	 * Doing it in hfi1_make_rc_req() is too late.
	 */
	if ((cmp_psn(qp->s_psn, qp->s_sending_hpsn) <= 0) &&
	    (cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) <= 0))
1030 1031
		qp->s_flags |= RVT_S_WAIT_PSN;
	qp->s_flags &= ~RVT_S_AHG_VALID;
M
Mike Marciniszyn 已提交
1032 1033 1034 1035 1036 1037
}

/*
 * Back up requester to resend the last un-ACKed request.
 * The QP r_lock and s_lock should be held and interrupts disabled.
 */
1038
void hfi1_restart_rc(struct rvt_qp *qp, u32 psn, int wait)
M
Mike Marciniszyn 已提交
1039
{
1040
	struct rvt_swqe *wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
M
Mike Marciniszyn 已提交
1041 1042
	struct hfi1_ibport *ibp;

1043 1044
	lockdep_assert_held(&qp->r_lock);
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
1045 1046 1047 1048 1049 1050
	if (qp->s_retry == 0) {
		if (qp->s_mig_state == IB_MIG_ARMED) {
			hfi1_migrate_qp(qp);
			qp->s_retry = qp->s_retry_cnt;
		} else if (qp->s_last == qp->s_acked) {
			hfi1_send_complete(qp, wqe, IB_WC_RETRY_EXC_ERR);
1051
			rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR);
M
Mike Marciniszyn 已提交
1052
			return;
1053
		} else { /* need to handle delayed completion */
M
Mike Marciniszyn 已提交
1054
			return;
1055 1056
		}
	} else {
M
Mike Marciniszyn 已提交
1057
		qp->s_retry--;
1058
	}
M
Mike Marciniszyn 已提交
1059 1060 1061

	ibp = to_iport(qp->ibqp.device, qp->port_num);
	if (wqe->wr.opcode == IB_WR_RDMA_READ)
1062
		ibp->rvp.n_rc_resends++;
M
Mike Marciniszyn 已提交
1063
	else
1064
		ibp->rvp.n_rc_resends += delta_psn(qp->s_psn, psn);
M
Mike Marciniszyn 已提交
1065

1066 1067 1068
	qp->s_flags &= ~(RVT_S_WAIT_FENCE | RVT_S_WAIT_RDMAR |
			 RVT_S_WAIT_SSN_CREDIT | RVT_S_WAIT_PSN |
			 RVT_S_WAIT_ACK);
M
Mike Marciniszyn 已提交
1069
	if (wait)
1070
		qp->s_flags |= RVT_S_SEND_ONE;
M
Mike Marciniszyn 已提交
1071 1072 1073 1074 1075 1076 1077
	reset_psn(qp, psn);
}

/*
 * Set qp->s_sending_psn to the next PSN after the given one.
 * This would be psn+1 except when RDMA reads are present.
 */
1078
static void reset_sending_psn(struct rvt_qp *qp, u32 psn)
M
Mike Marciniszyn 已提交
1079
{
1080
	struct rvt_swqe *wqe;
M
Mike Marciniszyn 已提交
1081 1082
	u32 n = qp->s_last;

1083
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
1084 1085
	/* Find the work request corresponding to the given PSN. */
	for (;;) {
1086
		wqe = rvt_get_swqe_ptr(qp, n);
M
Mike Marciniszyn 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
		if (cmp_psn(psn, wqe->lpsn) <= 0) {
			if (wqe->wr.opcode == IB_WR_RDMA_READ)
				qp->s_sending_psn = wqe->lpsn + 1;
			else
				qp->s_sending_psn = psn + 1;
			break;
		}
		if (++n == qp->s_size)
			n = 0;
		if (n == qp->s_tail)
			break;
	}
}

/*
 * This should be called with the QP s_lock held and interrupts disabled.
 */
1104
void hfi1_rc_send_complete(struct rvt_qp *qp, struct hfi1_opa_header *opah)
M
Mike Marciniszyn 已提交
1105
{
1106
	struct ib_other_headers *ohdr;
D
Don Hiatt 已提交
1107
	struct hfi1_qp_priv *priv = qp->priv;
1108
	struct rvt_swqe *wqe;
D
Don Hiatt 已提交
1109 1110
	struct ib_header *hdr = NULL;
	struct hfi1_16b_header *hdr_16b = NULL;
M
Mike Marciniszyn 已提交
1111 1112 1113
	u32 opcode;
	u32 psn;

1114
	lockdep_assert_held(&qp->s_lock);
1115
	if (!(ib_rvt_state_ops[qp->state] & RVT_SEND_OR_FLUSH_OR_RECV_OK))
M
Mike Marciniszyn 已提交
1116 1117 1118
		return;

	/* Find out where the BTH is */
D
Don Hiatt 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
	if (priv->hdr_type == HFI1_PKT_TYPE_9B) {
		hdr = &opah->ibh;
		if (ib_get_lnh(hdr) == HFI1_LRH_BTH)
			ohdr = &hdr->u.oth;
		else
			ohdr = &hdr->u.l.oth;
	} else {
		u8 l4;

		hdr_16b = &opah->opah;
		l4  = hfi1_16B_get_l4(hdr_16b);
		if (l4 == OPA_16B_L4_IB_LOCAL)
			ohdr = &hdr_16b->u.oth;
		else
			ohdr = &hdr_16b->u.l.oth;
	}
M
Mike Marciniszyn 已提交
1135

1136
	opcode = ib_bth_get_opcode(ohdr);
M
Mike Marciniszyn 已提交
1137 1138 1139 1140 1141 1142 1143
	if (opcode >= OP(RDMA_READ_RESPONSE_FIRST) &&
	    opcode <= OP(ATOMIC_ACKNOWLEDGE)) {
		WARN_ON(!qp->s_rdma_ack_cnt);
		qp->s_rdma_ack_cnt--;
		return;
	}

1144
	psn = ib_bth_get_psn(ohdr);
M
Mike Marciniszyn 已提交
1145 1146 1147 1148 1149 1150 1151 1152
	reset_sending_psn(qp, psn);

	/*
	 * Start timer after a packet requesting an ACK has been sent and
	 * there are still requests that haven't been acked.
	 */
	if ((psn & IB_BTH_REQ_ACK) && qp->s_acked != qp->s_tail &&
	    !(qp->s_flags &
1153
		(RVT_S_TIMER | RVT_S_WAIT_RNR | RVT_S_WAIT_PSN)) &&
1154
		(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK))
1155
		rvt_add_retry_timer(qp);
M
Mike Marciniszyn 已提交
1156 1157

	while (qp->s_last != qp->s_acked) {
1158 1159
		u32 s_last;

1160
		wqe = rvt_get_swqe_ptr(qp, qp->s_last);
M
Mike Marciniszyn 已提交
1161 1162 1163
		if (cmp_psn(wqe->lpsn, qp->s_sending_psn) >= 0 &&
		    cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) <= 0)
			break;
1164
		s_last = qp->s_last;
1165
		trace_hfi1_qp_send_completion(qp, wqe, s_last);
1166 1167 1168 1169 1170
		if (++s_last >= qp->s_size)
			s_last = 0;
		qp->s_last = s_last;
		/* see post_send() */
		barrier();
1171
		rvt_put_swqe(wqe);
1172 1173 1174 1175
		rvt_qp_swqe_complete(qp,
				     wqe,
				     ib_hfi1_wc_opcode[wqe->wr.opcode],
				     IB_WC_SUCCESS);
M
Mike Marciniszyn 已提交
1176 1177 1178 1179 1180
	}
	/*
	 * If we were waiting for sends to complete before re-sending,
	 * and they are now complete, restart sending.
	 */
1181
	trace_hfi1_sendcomplete(qp, psn);
1182
	if (qp->s_flags & RVT_S_WAIT_PSN &&
M
Mike Marciniszyn 已提交
1183
	    cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) > 0) {
1184
		qp->s_flags &= ~RVT_S_WAIT_PSN;
M
Mike Marciniszyn 已提交
1185 1186 1187 1188 1189 1190
		qp->s_sending_psn = qp->s_psn;
		qp->s_sending_hpsn = qp->s_psn - 1;
		hfi1_schedule_send(qp);
	}
}

1191
static inline void update_last_psn(struct rvt_qp *qp, u32 psn)
M
Mike Marciniszyn 已提交
1192 1193 1194 1195 1196 1197 1198 1199 1200
{
	qp->s_last_psn = psn;
}

/*
 * Generate a SWQE completion.
 * This is similar to hfi1_send_complete but has to check to be sure
 * that the SGEs are not being referenced if the SWQE is being resent.
 */
1201 1202 1203
static struct rvt_swqe *do_rc_completion(struct rvt_qp *qp,
					 struct rvt_swqe *wqe,
					 struct hfi1_ibport *ibp)
M
Mike Marciniszyn 已提交
1204
{
1205
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
1206 1207 1208 1209 1210 1211 1212
	/*
	 * Don't decrement refcount and don't generate a
	 * completion if the SWQE is being resent until the send
	 * is finished.
	 */
	if (cmp_psn(wqe->lpsn, qp->s_sending_psn) < 0 ||
	    cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) > 0) {
1213 1214
		u32 s_last;

1215
		rvt_put_swqe(wqe);
1216
		s_last = qp->s_last;
1217
		trace_hfi1_qp_send_completion(qp, wqe, s_last);
1218 1219 1220 1221 1222
		if (++s_last >= qp->s_size)
			s_last = 0;
		qp->s_last = s_last;
		/* see post_send() */
		barrier();
1223 1224 1225 1226
		rvt_qp_swqe_complete(qp,
				     wqe,
				     ib_hfi1_wc_opcode[wqe->wr.opcode],
				     IB_WC_SUCCESS);
M
Mike Marciniszyn 已提交
1227 1228 1229
	} else {
		struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);

1230
		this_cpu_inc(*ibp->rvp.rc_delayed_comp);
M
Mike Marciniszyn 已提交
1231 1232 1233 1234 1235 1236
		/*
		 * If send progress not running attempt to progress
		 * SDMA queue.
		 */
		if (ppd->dd->flags & HFI1_HAS_SEND_DMA) {
			struct sdma_engine *engine;
1237
			u8 sl = rdma_ah_get_sl(&qp->remote_ah_attr);
M
Mike Marciniszyn 已提交
1238 1239 1240
			u8 sc5;

			/* For now use sc to find engine */
1241
			sc5 = ibp->sl_to_sc[sl];
M
Mike Marciniszyn 已提交
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
			engine = qp_to_sdma_engine(qp, sc5);
			sdma_engine_progress_schedule(engine);
		}
	}

	qp->s_retry = qp->s_retry_cnt;
	update_last_psn(qp, wqe->lpsn);

	/*
	 * If we are completing a request which is in the process of
	 * being resent, we can stop re-sending it since we know the
	 * responder has already seen it.
	 */
	if (qp->s_acked == qp->s_cur) {
		if (++qp->s_cur >= qp->s_size)
			qp->s_cur = 0;
		qp->s_acked = qp->s_cur;
1259
		wqe = rvt_get_swqe_ptr(qp, qp->s_cur);
M
Mike Marciniszyn 已提交
1260 1261 1262 1263 1264 1265 1266 1267 1268
		if (qp->s_acked != qp->s_tail) {
			qp->s_state = OP(SEND_LAST);
			qp->s_psn = wqe->psn;
		}
	} else {
		if (++qp->s_acked >= qp->s_size)
			qp->s_acked = 0;
		if (qp->state == IB_QPS_SQD && qp->s_acked == qp->s_cur)
			qp->s_draining = 0;
1269
		wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
M
Mike Marciniszyn 已提交
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
	}
	return wqe;
}

/**
 * do_rc_ack - process an incoming RC ACK
 * @qp: the QP the ACK came in on
 * @psn: the packet sequence number of the ACK
 * @opcode: the opcode of the request that resulted in the ACK
 *
 * This is called from rc_rcv_resp() to process an incoming RC ACK
 * for the given QP.
1282
 * May be called at interrupt level, with the QP s_lock held.
M
Mike Marciniszyn 已提交
1283 1284
 * Returns 1 if OK, 0 if current operation should be aborted (NAK).
 */
1285
static int do_rc_ack(struct rvt_qp *qp, u32 aeth, u32 psn, int opcode,
M
Mike Marciniszyn 已提交
1286 1287 1288 1289
		     u64 val, struct hfi1_ctxtdata *rcd)
{
	struct hfi1_ibport *ibp;
	enum ib_wc_status status;
1290
	struct rvt_swqe *wqe;
M
Mike Marciniszyn 已提交
1291 1292 1293 1294
	int ret = 0;
	u32 ack_psn;
	int diff;

1295
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
1296 1297 1298 1299 1300 1301 1302
	/*
	 * Note that NAKs implicitly ACK outstanding SEND and RDMA write
	 * requests and implicitly NAK RDMA read and atomic requests issued
	 * before the NAK'ed request.  The MSN won't include the NAK'ed
	 * request but will include an ACK'ed request(s).
	 */
	ack_psn = psn;
1303
	if (aeth >> IB_AETH_NAK_SHIFT)
M
Mike Marciniszyn 已提交
1304
		ack_psn--;
1305
	wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1306
	ibp = rcd_to_iport(rcd);
M
Mike Marciniszyn 已提交
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322

	/*
	 * The MSN might be for a later WQE than the PSN indicates so
	 * only complete WQEs that the PSN finishes.
	 */
	while ((diff = delta_psn(ack_psn, wqe->lpsn)) >= 0) {
		/*
		 * RDMA_READ_RESPONSE_ONLY is a special case since
		 * we want to generate completion events for everything
		 * before the RDMA read, copy the data, then generate
		 * the completion for the read.
		 */
		if (wqe->wr.opcode == IB_WR_RDMA_READ &&
		    opcode == OP(RDMA_READ_RESPONSE_ONLY) &&
		    diff == 0) {
			ret = 1;
1323
			goto bail_stop;
M
Mike Marciniszyn 已提交
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
		}
		/*
		 * If this request is a RDMA read or atomic, and the ACK is
		 * for a later operation, this ACK NAKs the RDMA read or
		 * atomic.  In other words, only a RDMA_READ_LAST or ONLY
		 * can ACK a RDMA read and likewise for atomic ops.  Note
		 * that the NAK case can only happen if relaxed ordering is
		 * used and requests are sent after an RDMA read or atomic
		 * is sent but before the response is received.
		 */
		if ((wqe->wr.opcode == IB_WR_RDMA_READ &&
		     (opcode != OP(RDMA_READ_RESPONSE_LAST) || diff != 0)) ||
		    ((wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
		      wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) &&
		     (opcode != OP(ATOMIC_ACKNOWLEDGE) || diff != 0))) {
			/* Retry this request. */
1340 1341
			if (!(qp->r_flags & RVT_R_RDMAR_SEQ)) {
				qp->r_flags |= RVT_R_RDMAR_SEQ;
1342
				hfi1_restart_rc(qp, qp->s_last_psn + 1, 0);
M
Mike Marciniszyn 已提交
1343
				if (list_empty(&qp->rspwait)) {
1344
					qp->r_flags |= RVT_R_RSP_SEND;
1345
					rvt_get_qp(qp);
M
Mike Marciniszyn 已提交
1346 1347 1348 1349 1350 1351 1352 1353
					list_add_tail(&qp->rspwait,
						      &rcd->qp_wait_list);
				}
			}
			/*
			 * No need to process the ACK/NAK since we are
			 * restarting an earlier request.
			 */
1354
			goto bail_stop;
M
Mike Marciniszyn 已提交
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
		}
		if (wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
		    wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) {
			u64 *vaddr = wqe->sg_list[0].vaddr;
			*vaddr = val;
		}
		if (qp->s_num_rd_atomic &&
		    (wqe->wr.opcode == IB_WR_RDMA_READ ||
		     wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
		     wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD)) {
			qp->s_num_rd_atomic--;
			/* Restart sending task if fence is complete */
1367
			if ((qp->s_flags & RVT_S_WAIT_FENCE) &&
M
Mike Marciniszyn 已提交
1368
			    !qp->s_num_rd_atomic) {
1369 1370
				qp->s_flags &= ~(RVT_S_WAIT_FENCE |
						 RVT_S_WAIT_ACK);
M
Mike Marciniszyn 已提交
1371
				hfi1_schedule_send(qp);
1372 1373 1374
			} else if (qp->s_flags & RVT_S_WAIT_RDMAR) {
				qp->s_flags &= ~(RVT_S_WAIT_RDMAR |
						 RVT_S_WAIT_ACK);
M
Mike Marciniszyn 已提交
1375 1376 1377 1378 1379 1380 1381 1382
				hfi1_schedule_send(qp);
			}
		}
		wqe = do_rc_completion(qp, wqe, ibp);
		if (qp->s_acked == qp->s_tail)
			break;
	}

1383
	switch (aeth >> IB_AETH_NAK_SHIFT) {
M
Mike Marciniszyn 已提交
1384
	case 0:         /* ACK */
1385
		this_cpu_inc(*ibp->rvp.rc_acks);
M
Mike Marciniszyn 已提交
1386 1387 1388
		if (qp->s_acked != qp->s_tail) {
			/*
			 * We are expecting more ACKs so
1389
			 * mod the retry timer.
M
Mike Marciniszyn 已提交
1390
			 */
1391
			rvt_mod_retry_timer(qp);
M
Mike Marciniszyn 已提交
1392 1393 1394 1395 1396 1397
			/*
			 * We can stop re-sending the earlier packets and
			 * continue with the next packet the receiver wants.
			 */
			if (cmp_psn(qp->s_psn, psn) <= 0)
				reset_psn(qp, psn + 1);
1398 1399
		} else {
			/* No more acks - kill all timers */
1400
			rvt_stop_rc_timers(qp);
1401 1402 1403 1404
			if (cmp_psn(qp->s_psn, psn) <= 0) {
				qp->s_state = OP(SEND_LAST);
				qp->s_psn = psn + 1;
			}
M
Mike Marciniszyn 已提交
1405
		}
1406 1407
		if (qp->s_flags & RVT_S_WAIT_ACK) {
			qp->s_flags &= ~RVT_S_WAIT_ACK;
M
Mike Marciniszyn 已提交
1408 1409
			hfi1_schedule_send(qp);
		}
1410
		rvt_get_credit(qp, aeth);
M
Mike Marciniszyn 已提交
1411 1412 1413
		qp->s_rnr_retry = qp->s_rnr_retry_cnt;
		qp->s_retry = qp->s_retry_cnt;
		update_last_psn(qp, psn);
1414
		return 1;
M
Mike Marciniszyn 已提交
1415 1416

	case 1:         /* RNR NAK */
1417
		ibp->rvp.n_rnr_naks++;
M
Mike Marciniszyn 已提交
1418
		if (qp->s_acked == qp->s_tail)
1419
			goto bail_stop;
1420
		if (qp->s_flags & RVT_S_WAIT_RNR)
1421
			goto bail_stop;
M
Mike Marciniszyn 已提交
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
		if (qp->s_rnr_retry == 0) {
			status = IB_WC_RNR_RETRY_EXC_ERR;
			goto class_b;
		}
		if (qp->s_rnr_retry_cnt < 7)
			qp->s_rnr_retry--;

		/* The last valid PSN is the previous PSN. */
		update_last_psn(qp, psn - 1);

1432
		ibp->rvp.n_rc_resends += delta_psn(qp->s_psn, psn);
M
Mike Marciniszyn 已提交
1433 1434 1435

		reset_psn(qp, psn);

1436
		qp->s_flags &= ~(RVT_S_WAIT_SSN_CREDIT | RVT_S_WAIT_ACK);
1437 1438
		rvt_stop_rc_timers(qp);
		rvt_add_rnr_timer(qp, aeth);
1439
		return 0;
M
Mike Marciniszyn 已提交
1440 1441 1442

	case 3:         /* NAK */
		if (qp->s_acked == qp->s_tail)
1443
			goto bail_stop;
M
Mike Marciniszyn 已提交
1444 1445
		/* The last valid PSN is the previous PSN. */
		update_last_psn(qp, psn - 1);
1446 1447
		switch ((aeth >> IB_AETH_CREDIT_SHIFT) &
			IB_AETH_CREDIT_MASK) {
M
Mike Marciniszyn 已提交
1448
		case 0: /* PSN sequence error */
1449
			ibp->rvp.n_seq_naks++;
M
Mike Marciniszyn 已提交
1450 1451 1452 1453 1454 1455
			/*
			 * Back up to the responder's expected PSN.
			 * Note that we might get a NAK in the middle of an
			 * RDMA READ response which terminates the RDMA
			 * READ.
			 */
1456
			hfi1_restart_rc(qp, psn, 0);
M
Mike Marciniszyn 已提交
1457 1458 1459 1460 1461
			hfi1_schedule_send(qp);
			break;

		case 1: /* Invalid Request */
			status = IB_WC_REM_INV_REQ_ERR;
1462
			ibp->rvp.n_other_naks++;
M
Mike Marciniszyn 已提交
1463 1464 1465 1466
			goto class_b;

		case 2: /* Remote Access Error */
			status = IB_WC_REM_ACCESS_ERR;
1467
			ibp->rvp.n_other_naks++;
M
Mike Marciniszyn 已提交
1468 1469 1470 1471
			goto class_b;

		case 3: /* Remote Operation Error */
			status = IB_WC_REM_OP_ERR;
1472
			ibp->rvp.n_other_naks++;
M
Mike Marciniszyn 已提交
1473 1474 1475
class_b:
			if (qp->s_last == qp->s_acked) {
				hfi1_send_complete(qp, wqe, status);
1476
				rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR);
M
Mike Marciniszyn 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485
			}
			break;

		default:
			/* Ignore other reserved NAK error codes */
			goto reserved;
		}
		qp->s_retry = qp->s_retry_cnt;
		qp->s_rnr_retry = qp->s_rnr_retry_cnt;
1486
		goto bail_stop;
M
Mike Marciniszyn 已提交
1487 1488 1489 1490

	default:                /* 2: reserved */
reserved:
		/* Ignore reserved NAK codes. */
1491
		goto bail_stop;
M
Mike Marciniszyn 已提交
1492
	}
1493
	/* cannot be reached  */
1494
bail_stop:
1495
	rvt_stop_rc_timers(qp);
M
Mike Marciniszyn 已提交
1496 1497 1498 1499 1500 1501 1502
	return ret;
}

/*
 * We have seen an out of sequence RDMA read middle or last packet.
 * This ACKs SENDs and RDMA writes up to the first RDMA read or atomic SWQE.
 */
1503
static void rdma_seq_err(struct rvt_qp *qp, struct hfi1_ibport *ibp, u32 psn,
M
Mike Marciniszyn 已提交
1504 1505
			 struct hfi1_ctxtdata *rcd)
{
1506
	struct rvt_swqe *wqe;
M
Mike Marciniszyn 已提交
1507

1508
	lockdep_assert_held(&qp->s_lock);
M
Mike Marciniszyn 已提交
1509
	/* Remove QP from retry timer */
1510
	rvt_stop_rc_timers(qp);
M
Mike Marciniszyn 已提交
1511

1512
	wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
M
Mike Marciniszyn 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521

	while (cmp_psn(psn, wqe->lpsn) > 0) {
		if (wqe->wr.opcode == IB_WR_RDMA_READ ||
		    wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
		    wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD)
			break;
		wqe = do_rc_completion(qp, wqe, ibp);
	}

1522
	ibp->rvp.n_rdma_seq++;
1523
	qp->r_flags |= RVT_R_RDMAR_SEQ;
1524
	hfi1_restart_rc(qp, qp->s_last_psn + 1, 0);
M
Mike Marciniszyn 已提交
1525
	if (list_empty(&qp->rspwait)) {
1526
		qp->r_flags |= RVT_R_RSP_SEND;
1527
		rvt_get_qp(qp);
M
Mike Marciniszyn 已提交
1528 1529 1530 1531 1532 1533
		list_add_tail(&qp->rspwait, &rcd->qp_wait_list);
	}
}

/**
 * rc_rcv_resp - process an incoming RC response packet
D
Don Hiatt 已提交
1534
 * @packet: data packet information
M
Mike Marciniszyn 已提交
1535 1536 1537 1538 1539
 *
 * This is called from hfi1_rc_rcv() to process an incoming RC response
 * packet for the given QP.
 * Called at interrupt level.
 */
D
Don Hiatt 已提交
1540
static void rc_rcv_resp(struct hfi1_packet *packet)
M
Mike Marciniszyn 已提交
1541
{
D
Don Hiatt 已提交
1542 1543 1544 1545 1546 1547
	struct hfi1_ctxtdata *rcd = packet->rcd;
	void *data = packet->payload;
	u32 tlen = packet->tlen;
	struct rvt_qp *qp = packet->qp;
	struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
	struct ib_other_headers *ohdr = packet->ohdr;
1548
	struct rvt_swqe *wqe;
M
Mike Marciniszyn 已提交
1549 1550 1551 1552
	enum ib_wc_status status;
	unsigned long flags;
	int diff;
	u64 val;
D
Don Hiatt 已提交
1553 1554 1555 1556 1557 1558 1559
	u32 aeth;
	u32 psn = ib_bth_get_psn(packet->ohdr);
	u32 pmtu = qp->pmtu;
	u16 hdrsize = packet->hlen;
	u8 opcode = packet->opcode;
	u8 pad = packet->pad;
	u8 extra_bytes = pad + packet->extra_byte + (SIZE_OF_CRC << 2);
M
Mike Marciniszyn 已提交
1560 1561

	spin_lock_irqsave(&qp->s_lock, flags);
1562
	trace_hfi1_ack(qp, psn);
1563

M
Mike Marciniszyn 已提交
1564
	/* Ignore invalid responses. */
1565
	smp_read_barrier_depends(); /* see post_one_send */
1566
	if (cmp_psn(psn, READ_ONCE(qp->s_next_psn)) >= 0)
M
Mike Marciniszyn 已提交
1567 1568 1569 1570 1571 1572 1573 1574
		goto ack_done;

	/* Ignore duplicate responses. */
	diff = cmp_psn(psn, qp->s_last_psn);
	if (unlikely(diff <= 0)) {
		/* Update credits for "ghost" ACKs */
		if (diff == 0 && opcode == OP(ACKNOWLEDGE)) {
			aeth = be32_to_cpu(ohdr->u.aeth);
1575
			if ((aeth >> IB_AETH_NAK_SHIFT) == 0)
1576
				rvt_get_credit(qp, aeth);
M
Mike Marciniszyn 已提交
1577 1578 1579 1580 1581 1582 1583 1584
		}
		goto ack_done;
	}

	/*
	 * Skip everything other than the PSN we expect, if we are waiting
	 * for a reply to a restarted RDMA read or atomic op.
	 */
1585
	if (qp->r_flags & RVT_R_RDMAR_SEQ) {
M
Mike Marciniszyn 已提交
1586 1587
		if (cmp_psn(psn, qp->s_last_psn + 1) != 0)
			goto ack_done;
1588
		qp->r_flags &= ~RVT_R_RDMAR_SEQ;
M
Mike Marciniszyn 已提交
1589 1590 1591 1592
	}

	if (unlikely(qp->s_acked == qp->s_tail))
		goto ack_done;
1593
	wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
M
Mike Marciniszyn 已提交
1594 1595 1596 1597 1598 1599 1600
	status = IB_WC_SUCCESS;

	switch (opcode) {
	case OP(ACKNOWLEDGE):
	case OP(ATOMIC_ACKNOWLEDGE):
	case OP(RDMA_READ_RESPONSE_FIRST):
		aeth = be32_to_cpu(ohdr->u.aeth);
1601 1602 1603
		if (opcode == OP(ATOMIC_ACKNOWLEDGE))
			val = ib_u64_get(&ohdr->u.at.atomic_ack_eth);
		else
M
Mike Marciniszyn 已提交
1604 1605 1606 1607
			val = 0;
		if (!do_rc_ack(qp, aeth, psn, opcode, val, rcd) ||
		    opcode != OP(RDMA_READ_RESPONSE_FIRST))
			goto ack_done;
1608
		wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
M
Mike Marciniszyn 已提交
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
		if (unlikely(wqe->wr.opcode != IB_WR_RDMA_READ))
			goto ack_op_err;
		/*
		 * If this is a response to a resent RDMA read, we
		 * have to be careful to copy the data to the right
		 * location.
		 */
		qp->s_rdma_read_len = restart_sge(&qp->s_rdma_read_sge,
						  wqe, psn, pmtu);
		goto read_middle;

	case OP(RDMA_READ_RESPONSE_MIDDLE):
		/* no AETH, no ACK */
		if (unlikely(cmp_psn(psn, qp->s_last_psn + 1)))
			goto ack_seq_err;
		if (unlikely(wqe->wr.opcode != IB_WR_RDMA_READ))
			goto ack_op_err;
read_middle:
D
Don Hiatt 已提交
1627
		if (unlikely(tlen != (hdrsize + pmtu + extra_bytes)))
M
Mike Marciniszyn 已提交
1628 1629 1630 1631 1632 1633 1634 1635
			goto ack_len_err;
		if (unlikely(pmtu >= qp->s_rdma_read_len))
			goto ack_len_err;

		/*
		 * We got a response so update the timeout.
		 * 4.096 usec. * (1 << qp->timeout)
		 */
1636
		rvt_mod_retry_timer(qp);
1637 1638
		if (qp->s_flags & RVT_S_WAIT_ACK) {
			qp->s_flags &= ~RVT_S_WAIT_ACK;
M
Mike Marciniszyn 已提交
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651
			hfi1_schedule_send(qp);
		}

		if (opcode == OP(RDMA_READ_RESPONSE_MIDDLE))
			qp->s_retry = qp->s_retry_cnt;

		/*
		 * Update the RDMA receive state but do the copy w/o
		 * holding the locks and blocking interrupts.
		 */
		qp->s_rdma_read_len -= pmtu;
		update_last_psn(qp, psn);
		spin_unlock_irqrestore(&qp->s_lock, flags);
1652
		hfi1_copy_sge(&qp->s_rdma_read_sge, data, pmtu, false, false);
M
Mike Marciniszyn 已提交
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
		goto bail;

	case OP(RDMA_READ_RESPONSE_ONLY):
		aeth = be32_to_cpu(ohdr->u.aeth);
		if (!do_rc_ack(qp, aeth, psn, opcode, 0, rcd))
			goto ack_done;
		/*
		 * Check that the data size is >= 0 && <= pmtu.
		 * Remember to account for ICRC (4).
		 */
D
Don Hiatt 已提交
1663
		if (unlikely(tlen < (hdrsize + extra_bytes)))
M
Mike Marciniszyn 已提交
1664 1665 1666 1667 1668 1669
			goto ack_len_err;
		/*
		 * If this is a response to a resent RDMA read, we
		 * have to be careful to copy the data to the right
		 * location.
		 */
1670
		wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
M
Mike Marciniszyn 已提交
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
		qp->s_rdma_read_len = restart_sge(&qp->s_rdma_read_sge,
						  wqe, psn, pmtu);
		goto read_last;

	case OP(RDMA_READ_RESPONSE_LAST):
		/* ACKs READ req. */
		if (unlikely(cmp_psn(psn, qp->s_last_psn + 1)))
			goto ack_seq_err;
		if (unlikely(wqe->wr.opcode != IB_WR_RDMA_READ))
			goto ack_op_err;
		/*
		 * Check that the data size is >= 1 && <= pmtu.
		 * Remember to account for ICRC (4).
		 */
D
Don Hiatt 已提交
1685
		if (unlikely(tlen <= (hdrsize + extra_bytes)))
M
Mike Marciniszyn 已提交
1686 1687
			goto ack_len_err;
read_last:
D
Don Hiatt 已提交
1688
		tlen -= hdrsize + extra_bytes;
M
Mike Marciniszyn 已提交
1689 1690 1691
		if (unlikely(tlen != qp->s_rdma_read_len))
			goto ack_len_err;
		aeth = be32_to_cpu(ohdr->u.aeth);
1692
		hfi1_copy_sge(&qp->s_rdma_read_sge, data, tlen, false, false);
M
Mike Marciniszyn 已提交
1693
		WARN_ON(qp->s_rdma_read_sge.num_sge);
1694
		(void)do_rc_ack(qp, aeth, psn,
M
Mike Marciniszyn 已提交
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
				 OP(RDMA_READ_RESPONSE_LAST), 0, rcd);
		goto ack_done;
	}

ack_op_err:
	status = IB_WC_LOC_QP_OP_ERR;
	goto ack_err;

ack_seq_err:
	rdma_seq_err(qp, ibp, psn, rcd);
	goto ack_done;

ack_len_err:
	status = IB_WC_LOC_LEN_ERR;
ack_err:
	if (qp->s_last == qp->s_acked) {
		hfi1_send_complete(qp, wqe, status);
1712
		rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR);
M
Mike Marciniszyn 已提交
1713 1714 1715 1716 1717 1718 1719
	}
ack_done:
	spin_unlock_irqrestore(&qp->s_lock, flags);
bail:
	return;
}

1720
static inline void rc_defered_ack(struct hfi1_ctxtdata *rcd,
1721
				  struct rvt_qp *qp)
1722 1723
{
	if (list_empty(&qp->rspwait)) {
1724
		qp->r_flags |= RVT_R_RSP_NAK;
1725
		rvt_get_qp(qp);
1726 1727 1728 1729
		list_add_tail(&qp->rspwait, &rcd->qp_wait_list);
	}
}

1730
static inline void rc_cancel_ack(struct rvt_qp *qp)
1731
{
1732
	qp->r_adefered = 0;
1733 1734 1735
	if (list_empty(&qp->rspwait))
		return;
	list_del_init(&qp->rspwait);
1736
	qp->r_flags &= ~RVT_R_RSP_NAK;
1737
	rvt_put_qp(qp);
1738 1739
}

M
Mike Marciniszyn 已提交
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
/**
 * rc_rcv_error - process an incoming duplicate or error RC packet
 * @ohdr: the other headers for this packet
 * @data: the packet data
 * @qp: the QP for this packet
 * @opcode: the opcode for this packet
 * @psn: the packet sequence number for this packet
 * @diff: the difference between the PSN and the expected PSN
 *
 * This is called from hfi1_rc_rcv() to process an unexpected
 * incoming RC packet for the given QP.
 * Called at interrupt level.
 * Return 1 if no more processing is needed; otherwise return 0 to
 * schedule a response to be sent.
 */
1755
static noinline int rc_rcv_error(struct ib_other_headers *ohdr, void *data,
1756 1757
				 struct rvt_qp *qp, u32 opcode, u32 psn,
				 int diff, struct hfi1_ctxtdata *rcd)
M
Mike Marciniszyn 已提交
1758
{
1759
	struct hfi1_ibport *ibp = rcd_to_iport(rcd);
1760
	struct rvt_ack_entry *e;
M
Mike Marciniszyn 已提交
1761 1762 1763 1764
	unsigned long flags;
	u8 i, prev;
	int old_req;

1765
	trace_hfi1_rcv_error(qp, psn);
M
Mike Marciniszyn 已提交
1766 1767 1768 1769 1770 1771 1772
	if (diff > 0) {
		/*
		 * Packet sequence error.
		 * A NAK will ACK earlier sends and RDMA writes.
		 * Don't queue the NAK if we already sent one.
		 */
		if (!qp->r_nak_state) {
1773
			ibp->rvp.n_rc_seqnak++;
M
Mike Marciniszyn 已提交
1774 1775 1776 1777 1778 1779 1780 1781
			qp->r_nak_state = IB_NAK_PSN_ERROR;
			/* Use the expected PSN. */
			qp->r_ack_psn = qp->r_psn;
			/*
			 * Wait to send the sequence NAK until all packets
			 * in the receive queue have been processed.
			 * Otherwise, we end up propagating congestion.
			 */
1782
			rc_defered_ack(rcd, qp);
M
Mike Marciniszyn 已提交
1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804
		}
		goto done;
	}

	/*
	 * Handle a duplicate request.  Don't re-execute SEND, RDMA
	 * write or atomic op.  Don't NAK errors, just silently drop
	 * the duplicate request.  Note that r_sge, r_len, and
	 * r_rcv_len may be in use so don't modify them.
	 *
	 * We are supposed to ACK the earliest duplicate PSN but we
	 * can coalesce an outstanding duplicate ACK.  We have to
	 * send the earliest so that RDMA reads can be restarted at
	 * the requester's expected PSN.
	 *
	 * First, find where this duplicate PSN falls within the
	 * ACKs previously sent.
	 * old_req is true if there is an older response that is scheduled
	 * to be sent before sending this one.
	 */
	e = NULL;
	old_req = 1;
1805
	ibp->rvp.n_rc_dupreq++;
M
Mike Marciniszyn 已提交
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857

	spin_lock_irqsave(&qp->s_lock, flags);

	for (i = qp->r_head_ack_queue; ; i = prev) {
		if (i == qp->s_tail_ack_queue)
			old_req = 0;
		if (i)
			prev = i - 1;
		else
			prev = HFI1_MAX_RDMA_ATOMIC;
		if (prev == qp->r_head_ack_queue) {
			e = NULL;
			break;
		}
		e = &qp->s_ack_queue[prev];
		if (!e->opcode) {
			e = NULL;
			break;
		}
		if (cmp_psn(psn, e->psn) >= 0) {
			if (prev == qp->s_tail_ack_queue &&
			    cmp_psn(psn, e->lpsn) <= 0)
				old_req = 0;
			break;
		}
	}
	switch (opcode) {
	case OP(RDMA_READ_REQUEST): {
		struct ib_reth *reth;
		u32 offset;
		u32 len;

		/*
		 * If we didn't find the RDMA read request in the ack queue,
		 * we can ignore this request.
		 */
		if (!e || e->opcode != OP(RDMA_READ_REQUEST))
			goto unlock_done;
		/* RETH comes after BTH */
		reth = &ohdr->u.rc.reth;
		/*
		 * Address range must be a subset of the original
		 * request and start on pmtu boundaries.
		 * We reuse the old ack_queue slot since the requester
		 * should not back up and request an earlier PSN for the
		 * same request.
		 */
		offset = delta_psn(psn, e->psn) * qp->pmtu;
		len = be32_to_cpu(reth->length);
		if (unlikely(offset + len != e->rdma_sge.sge_length))
			goto unlock_done;
		if (e->rdma_sge.mr) {
1858
			rvt_put_mr(e->rdma_sge.mr);
M
Mike Marciniszyn 已提交
1859 1860 1861 1862
			e->rdma_sge.mr = NULL;
		}
		if (len != 0) {
			u32 rkey = be32_to_cpu(reth->rkey);
1863
			u64 vaddr = get_ib_reth_vaddr(reth);
M
Mike Marciniszyn 已提交
1864 1865
			int ok;

1866 1867
			ok = rvt_rkey_ok(qp, &e->rdma_sge, len, vaddr, rkey,
					 IB_ACCESS_REMOTE_READ);
M
Mike Marciniszyn 已提交
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
			if (unlikely(!ok))
				goto unlock_done;
		} else {
			e->rdma_sge.vaddr = NULL;
			e->rdma_sge.length = 0;
			e->rdma_sge.sge_length = 0;
		}
		e->psn = psn;
		if (old_req)
			goto unlock_done;
		qp->s_tail_ack_queue = prev;
		break;
	}

	case OP(COMPARE_SWAP):
	case OP(FETCH_ADD): {
		/*
		 * If we didn't find the atomic request in the ack queue
1886
		 * or the send engine is already backed up to send an
M
Mike Marciniszyn 已提交
1887 1888
		 * earlier entry, we can ignore this request.
		 */
1889
		if (!e || e->opcode != (u8)opcode || old_req)
M
Mike Marciniszyn 已提交
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920
			goto unlock_done;
		qp->s_tail_ack_queue = prev;
		break;
	}

	default:
		/*
		 * Ignore this operation if it doesn't request an ACK
		 * or an earlier RDMA read or atomic is going to be resent.
		 */
		if (!(psn & IB_BTH_REQ_ACK) || old_req)
			goto unlock_done;
		/*
		 * Resend the most recent ACK if this request is
		 * after all the previous RDMA reads and atomics.
		 */
		if (i == qp->r_head_ack_queue) {
			spin_unlock_irqrestore(&qp->s_lock, flags);
			qp->r_nak_state = 0;
			qp->r_ack_psn = qp->r_psn - 1;
			goto send_ack;
		}

		/*
		 * Resend the RDMA read or atomic op which
		 * ACKs this duplicate request.
		 */
		qp->s_tail_ack_queue = i;
		break;
	}
	qp->s_ack_state = OP(ACKNOWLEDGE);
1921
	qp->s_flags |= RVT_S_RESP_PENDING;
M
Mike Marciniszyn 已提交
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
	qp->r_nak_state = 0;
	hfi1_schedule_send(qp);

unlock_done:
	spin_unlock_irqrestore(&qp->s_lock, flags);
done:
	return 1;

send_ack:
	return 0;
}

1934
static inline void update_ack_queue(struct rvt_qp *qp, unsigned n)
M
Mike Marciniszyn 已提交
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948
{
	unsigned next;

	next = n + 1;
	if (next > HFI1_MAX_RDMA_ATOMIC)
		next = 0;
	qp->s_tail_ack_queue = next;
	qp->s_ack_state = OP(ACKNOWLEDGE);
}

static void log_cca_event(struct hfi1_pportdata *ppd, u8 sl, u32 rlid,
			  u32 lqpn, u32 rqpn, u8 svc_type)
{
	struct opa_hfi1_cong_log_event_internal *cc_event;
1949
	unsigned long flags;
M
Mike Marciniszyn 已提交
1950 1951 1952 1953

	if (sl >= OPA_MAX_SLS)
		return;

1954
	spin_lock_irqsave(&ppd->cc_log_lock, flags);
M
Mike Marciniszyn 已提交
1955

1956
	ppd->threshold_cong_event_map[sl / 8] |= 1 << (sl % 8);
M
Mike Marciniszyn 已提交
1957 1958 1959 1960 1961
	ppd->threshold_event_counter++;

	cc_event = &ppd->cc_events[ppd->cc_log_idx++];
	if (ppd->cc_log_idx == OPA_CONG_LOG_ELEMS)
		ppd->cc_log_idx = 0;
1962 1963
	cc_event->lqpn = lqpn & RVT_QPN_MASK;
	cc_event->rqpn = rqpn & RVT_QPN_MASK;
M
Mike Marciniszyn 已提交
1964 1965 1966 1967
	cc_event->sl = sl;
	cc_event->svc_type = svc_type;
	cc_event->rlid = rlid;
	/* keep timestamp in units of 1.024 usec */
1968
	cc_event->timestamp = ktime_get_ns() / 1024;
M
Mike Marciniszyn 已提交
1969

1970
	spin_unlock_irqrestore(&ppd->cc_log_lock, flags);
M
Mike Marciniszyn 已提交
1971 1972
}

D
Don Hiatt 已提交
1973
void process_becn(struct hfi1_pportdata *ppd, u8 sl, u32 rlid, u32 lqpn,
M
Mike Marciniszyn 已提交
1974 1975 1976 1977 1978 1979
		  u32 rqpn, u8 svc_type)
{
	struct cca_timer *cca_timer;
	u16 ccti, ccti_incr, ccti_timer, ccti_limit;
	u8 trigger_threshold;
	struct cc_state *cc_state;
1980
	unsigned long flags;
M
Mike Marciniszyn 已提交
1981 1982 1983 1984 1985 1986

	if (sl >= OPA_MAX_SLS)
		return;

	cc_state = get_cc_state(ppd);

1987
	if (!cc_state)
M
Mike Marciniszyn 已提交
1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
		return;

	/*
	 * 1) increase CCTI (for this SL)
	 * 2) select IPG (i.e., call set_link_ipg())
	 * 3) start timer
	 */
	ccti_limit = cc_state->cct.ccti_limit;
	ccti_incr = cc_state->cong_setting.entries[sl].ccti_increase;
	ccti_timer = cc_state->cong_setting.entries[sl].ccti_timer;
	trigger_threshold =
		cc_state->cong_setting.entries[sl].trigger_threshold;

2001
	spin_lock_irqsave(&ppd->cca_timer_lock, flags);
M
Mike Marciniszyn 已提交
2002

2003
	cca_timer = &ppd->cca_timer[sl];
M
Mike Marciniszyn 已提交
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
	if (cca_timer->ccti < ccti_limit) {
		if (cca_timer->ccti + ccti_incr <= ccti_limit)
			cca_timer->ccti += ccti_incr;
		else
			cca_timer->ccti = ccti_limit;
		set_link_ipg(ppd);
	}

	ccti = cca_timer->ccti;

	if (!hrtimer_active(&cca_timer->hrtimer)) {
		/* ccti_timer is in units of 1.024 usec */
		unsigned long nsec = 1024 * ccti_timer;

		hrtimer_start(&cca_timer->hrtimer, ns_to_ktime(nsec),
			      HRTIMER_MODE_REL);
	}

2022 2023
	spin_unlock_irqrestore(&ppd->cca_timer_lock, flags);

M
Mike Marciniszyn 已提交
2024 2025 2026 2027 2028 2029
	if ((trigger_threshold != 0) && (ccti >= trigger_threshold))
		log_cca_event(ppd, sl, rlid, lqpn, rqpn, svc_type);
}

/**
 * hfi1_rc_rcv - process an incoming RC packet
D
Don Hiatt 已提交
2030
 * @packet: data packet information
M
Mike Marciniszyn 已提交
2031 2032 2033
 *
 * This is called from qp_rcv() to process an incoming RC packet
 * for the given QP.
2034
 * May be called at interrupt level.
M
Mike Marciniszyn 已提交
2035 2036 2037 2038
 */
void hfi1_rc_rcv(struct hfi1_packet *packet)
{
	struct hfi1_ctxtdata *rcd = packet->rcd;
2039
	void *data = packet->payload;
M
Mike Marciniszyn 已提交
2040
	u32 tlen = packet->tlen;
2041
	struct rvt_qp *qp = packet->qp;
2042
	struct hfi1_ibport *ibp = rcd_to_iport(rcd);
2043
	struct ib_other_headers *ohdr = packet->ohdr;
D
Don Hiatt 已提交
2044
	u32 bth0 = be32_to_cpu(ohdr->bth[0]);
2045
	u32 opcode = packet->opcode;
M
Mike Marciniszyn 已提交
2046
	u32 hdrsize = packet->hlen;
D
Don Hiatt 已提交
2047
	u32 psn = ib_bth_get_psn(packet->ohdr);
2048
	u32 pad = packet->pad;
M
Mike Marciniszyn 已提交
2049 2050 2051 2052 2053
	struct ib_wc wc;
	u32 pmtu = qp->pmtu;
	int diff;
	struct ib_reth *reth;
	unsigned long flags;
2054 2055
	int ret;
	bool is_fecn = false;
2056
	bool copy_last = false;
2057
	u32 rkey;
D
Don Hiatt 已提交
2058
	u8 extra_bytes = pad + packet->extra_byte + (SIZE_OF_CRC << 2);
M
Mike Marciniszyn 已提交
2059

2060
	lockdep_assert_held(&qp->r_lock);
2061 2062

	if (hfi1_ruc_check_hdr(ibp, packet))
M
Mike Marciniszyn 已提交
2063 2064
		return;

2065
	is_fecn = process_ecn(qp, packet, false);
M
Mike Marciniszyn 已提交
2066 2067 2068 2069 2070 2071 2072 2073 2074

	/*
	 * Process responses (ACKs) before anything else.  Note that the
	 * packet sequence number will be for something in the send work
	 * queue rather than the expected receive packet sequence number.
	 * In other words, this QP is the requester.
	 */
	if (opcode >= OP(RDMA_READ_RESPONSE_FIRST) &&
	    opcode <= OP(ATOMIC_ACKNOWLEDGE)) {
D
Don Hiatt 已提交
2075
		rc_rcv_resp(packet);
M
Mike Marciniszyn 已提交
2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
		if (is_fecn)
			goto send_ack;
		return;
	}

	/* Compute 24 bits worth of difference. */
	diff = delta_psn(psn, qp->r_psn);
	if (unlikely(diff)) {
		if (rc_rcv_error(ohdr, data, qp, opcode, psn, diff, rcd))
			return;
		goto send_ack;
	}

	/* Check for opcode sequence errors. */
	switch (qp->r_state) {
	case OP(SEND_FIRST):
	case OP(SEND_MIDDLE):
		if (opcode == OP(SEND_MIDDLE) ||
		    opcode == OP(SEND_LAST) ||
2095 2096
		    opcode == OP(SEND_LAST_WITH_IMMEDIATE) ||
		    opcode == OP(SEND_LAST_WITH_INVALIDATE))
M
Mike Marciniszyn 已提交
2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
			break;
		goto nack_inv;

	case OP(RDMA_WRITE_FIRST):
	case OP(RDMA_WRITE_MIDDLE):
		if (opcode == OP(RDMA_WRITE_MIDDLE) ||
		    opcode == OP(RDMA_WRITE_LAST) ||
		    opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE))
			break;
		goto nack_inv;

	default:
		if (opcode == OP(SEND_MIDDLE) ||
		    opcode == OP(SEND_LAST) ||
		    opcode == OP(SEND_LAST_WITH_IMMEDIATE) ||
2112
		    opcode == OP(SEND_LAST_WITH_INVALIDATE) ||
M
Mike Marciniszyn 已提交
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124
		    opcode == OP(RDMA_WRITE_MIDDLE) ||
		    opcode == OP(RDMA_WRITE_LAST) ||
		    opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE))
			goto nack_inv;
		/*
		 * Note that it is up to the requester to not send a new
		 * RDMA read or atomic operation before receiving an ACK
		 * for the previous operation.
		 */
		break;
	}

2125
	if (qp->state == IB_QPS_RTR && !(qp->r_flags & RVT_R_COMM_EST))
2126
		rvt_comm_est(qp);
M
Mike Marciniszyn 已提交
2127 2128 2129 2130

	/* OK, process the packet. */
	switch (opcode) {
	case OP(SEND_FIRST):
2131
		ret = hfi1_rvt_get_rwqe(qp, 0);
M
Mike Marciniszyn 已提交
2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
		if (ret < 0)
			goto nack_op_err;
		if (!ret)
			goto rnr_nak;
		qp->r_rcv_len = 0;
		/* FALLTHROUGH */
	case OP(SEND_MIDDLE):
	case OP(RDMA_WRITE_MIDDLE):
send_middle:
		/* Check for invalid length PMTU or posted rwqe len. */
D
Don Hiatt 已提交
2142 2143 2144 2145 2146 2147
		/*
		 * There will be no padding for 9B packet but 16B packets
		 * will come in with some padding since we always add
		 * CRC and LT bytes which will need to be flit aligned
		 */
		if (unlikely(tlen != (hdrsize + pmtu + extra_bytes)))
M
Mike Marciniszyn 已提交
2148 2149 2150 2151
			goto nack_inv;
		qp->r_rcv_len += pmtu;
		if (unlikely(qp->r_rcv_len > qp->r_len))
			goto nack_inv;
2152
		hfi1_copy_sge(&qp->r_sge, data, pmtu, true, false);
M
Mike Marciniszyn 已提交
2153 2154 2155 2156
		break;

	case OP(RDMA_WRITE_LAST_WITH_IMMEDIATE):
		/* consume RWQE */
2157
		ret = hfi1_rvt_get_rwqe(qp, 1);
M
Mike Marciniszyn 已提交
2158 2159 2160 2161 2162 2163 2164 2165
		if (ret < 0)
			goto nack_op_err;
		if (!ret)
			goto rnr_nak;
		goto send_last_imm;

	case OP(SEND_ONLY):
	case OP(SEND_ONLY_WITH_IMMEDIATE):
2166
	case OP(SEND_ONLY_WITH_INVALIDATE):
2167
		ret = hfi1_rvt_get_rwqe(qp, 0);
M
Mike Marciniszyn 已提交
2168 2169 2170 2171 2172 2173 2174
		if (ret < 0)
			goto nack_op_err;
		if (!ret)
			goto rnr_nak;
		qp->r_rcv_len = 0;
		if (opcode == OP(SEND_ONLY))
			goto no_immediate_data;
2175 2176
		if (opcode == OP(SEND_ONLY_WITH_INVALIDATE))
			goto send_last_inv;
2177
		/* FALLTHROUGH -- for SEND_ONLY_WITH_IMMEDIATE */
M
Mike Marciniszyn 已提交
2178 2179 2180 2181 2182
	case OP(SEND_LAST_WITH_IMMEDIATE):
send_last_imm:
		wc.ex.imm_data = ohdr->u.imm_data;
		wc.wc_flags = IB_WC_WITH_IMM;
		goto send_last;
2183 2184 2185 2186 2187 2188 2189 2190
	case OP(SEND_LAST_WITH_INVALIDATE):
send_last_inv:
		rkey = be32_to_cpu(ohdr->u.ieth);
		if (rvt_invalidate_rkey(qp, rkey))
			goto no_immediate_data;
		wc.ex.invalidate_rkey = rkey;
		wc.wc_flags = IB_WC_WITH_INVALIDATE;
		goto send_last;
M
Mike Marciniszyn 已提交
2191
	case OP(RDMA_WRITE_LAST):
2192
		copy_last = rvt_is_user_qp(qp);
2193 2194
		/* fall through */
	case OP(SEND_LAST):
M
Mike Marciniszyn 已提交
2195 2196 2197 2198 2199 2200
no_immediate_data:
		wc.wc_flags = 0;
		wc.ex.imm_data = 0;
send_last:
		/* Check for invalid length. */
		/* LAST len should be >= 1 */
D
Don Hiatt 已提交
2201
		if (unlikely(tlen < (hdrsize + extra_bytes)))
M
Mike Marciniszyn 已提交
2202
			goto nack_inv;
D
Don Hiatt 已提交
2203 2204
		/* Don't count the CRC(and padding and LT byte for 16B). */
		tlen -= (hdrsize + extra_bytes);
M
Mike Marciniszyn 已提交
2205 2206 2207
		wc.byte_len = tlen + qp->r_rcv_len;
		if (unlikely(wc.byte_len > qp->r_len))
			goto nack_inv;
2208
		hfi1_copy_sge(&qp->r_sge, data, tlen, true, copy_last);
2209
		rvt_put_ss(&qp->r_sge);
M
Mike Marciniszyn 已提交
2210
		qp->r_msn++;
2211
		if (!__test_and_clear_bit(RVT_R_WRID_VALID, &qp->r_aflags))
M
Mike Marciniszyn 已提交
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221
			break;
		wc.wr_id = qp->r_wr_id;
		wc.status = IB_WC_SUCCESS;
		if (opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE) ||
		    opcode == OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE))
			wc.opcode = IB_WC_RECV_RDMA_WITH_IMM;
		else
			wc.opcode = IB_WC_RECV;
		wc.qp = &qp->ibqp;
		wc.src_qp = qp->remote_qpn;
2222
		wc.slid = rdma_ah_get_dlid(&qp->remote_ah_attr) & U16_MAX;
M
Mike Marciniszyn 已提交
2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
		/*
		 * It seems that IB mandates the presence of an SL in a
		 * work completion only for the UD transport (see section
		 * 11.4.2 of IBTA Vol. 1).
		 *
		 * However, the way the SL is chosen below is consistent
		 * with the way that IB/qib works and is trying avoid
		 * introducing incompatibilities.
		 *
		 * See also OPA Vol. 1, section 9.7.6, and table 9-17.
		 */
2234
		wc.sl = rdma_ah_get_sl(&qp->remote_ah_attr);
M
Mike Marciniszyn 已提交
2235 2236 2237 2238 2239 2240
		/* zero fields that are N/A */
		wc.vendor_err = 0;
		wc.pkey_index = 0;
		wc.dlid_path_bits = 0;
		wc.port_num = 0;
		/* Signal completion event if the solicited bit is set. */
2241 2242
		rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.recv_cq), &wc,
			     (bth0 & IB_BTH_SOLICITED) != 0);
M
Mike Marciniszyn 已提交
2243 2244 2245
		break;

	case OP(RDMA_WRITE_ONLY):
2246
		copy_last = rvt_is_user_qp(qp);
2247 2248
		/* fall through */
	case OP(RDMA_WRITE_FIRST):
M
Mike Marciniszyn 已提交
2249 2250 2251 2252 2253 2254 2255 2256 2257 2258
	case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE):
		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE)))
			goto nack_inv;
		/* consume RWQE */
		reth = &ohdr->u.rc.reth;
		qp->r_len = be32_to_cpu(reth->length);
		qp->r_rcv_len = 0;
		qp->r_sge.sg_list = NULL;
		if (qp->r_len != 0) {
			u32 rkey = be32_to_cpu(reth->rkey);
2259
			u64 vaddr = get_ib_reth_vaddr(reth);
M
Mike Marciniszyn 已提交
2260 2261 2262
			int ok;

			/* Check rkey & NAK */
2263 2264
			ok = rvt_rkey_ok(qp, &qp->r_sge.sge, qp->r_len, vaddr,
					 rkey, IB_ACCESS_REMOTE_WRITE);
M
Mike Marciniszyn 已提交
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
			if (unlikely(!ok))
				goto nack_acc;
			qp->r_sge.num_sge = 1;
		} else {
			qp->r_sge.num_sge = 0;
			qp->r_sge.sge.mr = NULL;
			qp->r_sge.sge.vaddr = NULL;
			qp->r_sge.sge.length = 0;
			qp->r_sge.sge.sge_length = 0;
		}
		if (opcode == OP(RDMA_WRITE_FIRST))
			goto send_middle;
		else if (opcode == OP(RDMA_WRITE_ONLY))
			goto no_immediate_data;
2279
		ret = hfi1_rvt_get_rwqe(qp, 1);
M
Mike Marciniszyn 已提交
2280 2281
		if (ret < 0)
			goto nack_op_err;
2282 2283 2284
		if (!ret) {
			/* peer will send again */
			rvt_put_ss(&qp->r_sge);
M
Mike Marciniszyn 已提交
2285
			goto rnr_nak;
2286
		}
M
Mike Marciniszyn 已提交
2287 2288 2289 2290 2291
		wc.ex.imm_data = ohdr->u.rc.imm_data;
		wc.wc_flags = IB_WC_WITH_IMM;
		goto send_last;

	case OP(RDMA_READ_REQUEST): {
2292
		struct rvt_ack_entry *e;
M
Mike Marciniszyn 已提交
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
		u32 len;
		u8 next;

		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_READ)))
			goto nack_inv;
		next = qp->r_head_ack_queue + 1;
		/* s_ack_queue is size HFI1_MAX_RDMA_ATOMIC+1 so use > not >= */
		if (next > HFI1_MAX_RDMA_ATOMIC)
			next = 0;
		spin_lock_irqsave(&qp->s_lock, flags);
		if (unlikely(next == qp->s_tail_ack_queue)) {
			if (!qp->s_ack_queue[next].sent)
				goto nack_inv_unlck;
			update_ack_queue(qp, next);
		}
		e = &qp->s_ack_queue[qp->r_head_ack_queue];
		if (e->opcode == OP(RDMA_READ_REQUEST) && e->rdma_sge.mr) {
2310
			rvt_put_mr(e->rdma_sge.mr);
M
Mike Marciniszyn 已提交
2311 2312 2313 2314 2315 2316
			e->rdma_sge.mr = NULL;
		}
		reth = &ohdr->u.rc.reth;
		len = be32_to_cpu(reth->length);
		if (len) {
			u32 rkey = be32_to_cpu(reth->rkey);
2317
			u64 vaddr = get_ib_reth_vaddr(reth);
M
Mike Marciniszyn 已提交
2318 2319 2320
			int ok;

			/* Check rkey & NAK */
2321 2322
			ok = rvt_rkey_ok(qp, &e->rdma_sge, len, vaddr,
					 rkey, IB_ACCESS_REMOTE_READ);
M
Mike Marciniszyn 已提交
2323 2324 2325 2326 2327 2328
			if (unlikely(!ok))
				goto nack_acc_unlck;
			/*
			 * Update the next expected PSN.  We add 1 later
			 * below, so only add the remainder here.
			 */
2329
			qp->r_psn += rvt_div_mtu(qp, len - 1);
M
Mike Marciniszyn 已提交
2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
		} else {
			e->rdma_sge.mr = NULL;
			e->rdma_sge.vaddr = NULL;
			e->rdma_sge.length = 0;
			e->rdma_sge.sge_length = 0;
		}
		e->opcode = opcode;
		e->sent = 0;
		e->psn = psn;
		e->lpsn = qp->r_psn;
		/*
		 * We need to increment the MSN here instead of when we
		 * finish sending the result since a duplicate request would
		 * increment it more than once.
		 */
		qp->r_msn++;
		qp->r_psn++;
		qp->r_state = opcode;
		qp->r_nak_state = 0;
		qp->r_head_ack_queue = next;

2351
		/* Schedule the send engine. */
2352
		qp->s_flags |= RVT_S_RESP_PENDING;
M
Mike Marciniszyn 已提交
2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
		hfi1_schedule_send(qp);

		spin_unlock_irqrestore(&qp->s_lock, flags);
		if (is_fecn)
			goto send_ack;
		return;
	}

	case OP(COMPARE_SWAP):
	case OP(FETCH_ADD): {
		struct ib_atomic_eth *ateth;
2364
		struct rvt_ack_entry *e;
M
Mike Marciniszyn 已提交
2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
		u64 vaddr;
		atomic64_t *maddr;
		u64 sdata;
		u32 rkey;
		u8 next;

		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC)))
			goto nack_inv;
		next = qp->r_head_ack_queue + 1;
		if (next > HFI1_MAX_RDMA_ATOMIC)
			next = 0;
		spin_lock_irqsave(&qp->s_lock, flags);
		if (unlikely(next == qp->s_tail_ack_queue)) {
			if (!qp->s_ack_queue[next].sent)
				goto nack_inv_unlck;
			update_ack_queue(qp, next);
		}
		e = &qp->s_ack_queue[qp->r_head_ack_queue];
		if (e->opcode == OP(RDMA_READ_REQUEST) && e->rdma_sge.mr) {
2384
			rvt_put_mr(e->rdma_sge.mr);
M
Mike Marciniszyn 已提交
2385 2386 2387
			e->rdma_sge.mr = NULL;
		}
		ateth = &ohdr->u.atomic_eth;
2388
		vaddr = get_ib_ateth_vaddr(ateth);
M
Mike Marciniszyn 已提交
2389 2390 2391 2392
		if (unlikely(vaddr & (sizeof(u64) - 1)))
			goto nack_inv_unlck;
		rkey = be32_to_cpu(ateth->rkey);
		/* Check rkey & NAK */
2393 2394 2395
		if (unlikely(!rvt_rkey_ok(qp, &qp->r_sge.sge, sizeof(u64),
					  vaddr, rkey,
					  IB_ACCESS_REMOTE_ATOMIC)))
M
Mike Marciniszyn 已提交
2396 2397
			goto nack_acc_unlck;
		/* Perform atomic OP and save result. */
2398
		maddr = (atomic64_t *)qp->r_sge.sge.vaddr;
2399
		sdata = get_ib_ateth_swap(ateth);
M
Mike Marciniszyn 已提交
2400
		e->atomic_data = (opcode == OP(FETCH_ADD)) ?
2401 2402
			(u64)atomic64_add_return(sdata, maddr) - sdata :
			(u64)cmpxchg((u64 *)qp->r_sge.sge.vaddr,
2403
				      get_ib_ateth_compare(ateth),
M
Mike Marciniszyn 已提交
2404
				      sdata);
2405
		rvt_put_mr(qp->r_sge.sge.mr);
M
Mike Marciniszyn 已提交
2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
		qp->r_sge.num_sge = 0;
		e->opcode = opcode;
		e->sent = 0;
		e->psn = psn;
		e->lpsn = psn;
		qp->r_msn++;
		qp->r_psn++;
		qp->r_state = opcode;
		qp->r_nak_state = 0;
		qp->r_head_ack_queue = next;

2417
		/* Schedule the send engine. */
2418
		qp->s_flags |= RVT_S_RESP_PENDING;
M
Mike Marciniszyn 已提交
2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435
		hfi1_schedule_send(qp);

		spin_unlock_irqrestore(&qp->s_lock, flags);
		if (is_fecn)
			goto send_ack;
		return;
	}

	default:
		/* NAK unknown opcodes. */
		goto nack_inv;
	}
	qp->r_psn++;
	qp->r_state = opcode;
	qp->r_ack_psn = psn;
	qp->r_nak_state = 0;
	/* Send an ACK if requested or required. */
2436 2437 2438 2439 2440
	if (psn & IB_BTH_REQ_ACK) {
		if (packet->numpkt == 0) {
			rc_cancel_ack(qp);
			goto send_ack;
		}
2441
		if (qp->r_adefered >= HFI1_PSN_CREDIT) {
2442 2443 2444 2445 2446 2447 2448
			rc_cancel_ack(qp);
			goto send_ack;
		}
		if (unlikely(is_fecn)) {
			rc_cancel_ack(qp);
			goto send_ack;
		}
2449
		qp->r_adefered++;
2450 2451
		rc_defered_ack(rcd, qp);
	}
M
Mike Marciniszyn 已提交
2452 2453 2454
	return;

rnr_nak:
2455
	qp->r_nak_state = qp->r_min_rnr_timer | IB_RNR_NAK;
M
Mike Marciniszyn 已提交
2456 2457
	qp->r_ack_psn = qp->r_psn;
	/* Queue RNR NAK for later */
2458
	rc_defered_ack(rcd, qp);
M
Mike Marciniszyn 已提交
2459 2460 2461
	return;

nack_op_err:
2462
	rvt_rc_error(qp, IB_WC_LOC_QP_OP_ERR);
M
Mike Marciniszyn 已提交
2463 2464 2465
	qp->r_nak_state = IB_NAK_REMOTE_OPERATIONAL_ERROR;
	qp->r_ack_psn = qp->r_psn;
	/* Queue NAK for later */
2466
	rc_defered_ack(rcd, qp);
M
Mike Marciniszyn 已提交
2467 2468 2469 2470 2471
	return;

nack_inv_unlck:
	spin_unlock_irqrestore(&qp->s_lock, flags);
nack_inv:
2472
	rvt_rc_error(qp, IB_WC_LOC_QP_OP_ERR);
M
Mike Marciniszyn 已提交
2473 2474 2475
	qp->r_nak_state = IB_NAK_INVALID_REQUEST;
	qp->r_ack_psn = qp->r_psn;
	/* Queue NAK for later */
2476
	rc_defered_ack(rcd, qp);
M
Mike Marciniszyn 已提交
2477 2478 2479 2480 2481
	return;

nack_acc_unlck:
	spin_unlock_irqrestore(&qp->s_lock, flags);
nack_acc:
2482
	rvt_rc_error(qp, IB_WC_LOC_PROT_ERR);
M
Mike Marciniszyn 已提交
2483 2484 2485 2486 2487 2488 2489 2490
	qp->r_nak_state = IB_NAK_REMOTE_ACCESS_ERROR;
	qp->r_ack_psn = qp->r_psn;
send_ack:
	hfi1_send_rc_ack(rcd, qp, is_fecn);
}

void hfi1_rc_hdrerr(
	struct hfi1_ctxtdata *rcd,
2491
	struct hfi1_packet *packet,
2492
	struct rvt_qp *qp)
M
Mike Marciniszyn 已提交
2493
{
2494
	struct hfi1_ibport *ibp = rcd_to_iport(rcd);
M
Mike Marciniszyn 已提交
2495
	int diff;
2496
	u32 opcode;
2497
	u32 psn;
M
Mike Marciniszyn 已提交
2498

2499
	if (hfi1_ruc_check_hdr(ibp, packet))
M
Mike Marciniszyn 已提交
2500 2501
		return;

2502 2503
	psn = ib_bth_get_psn(packet->ohdr);
	opcode = ib_bth_get_opcode(packet->ohdr);
M
Mike Marciniszyn 已提交
2504 2505 2506 2507 2508

	/* Only deal with RDMA Writes for now */
	if (opcode < IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST) {
		diff = delta_psn(psn, qp->r_psn);
		if (!qp->r_nak_state && diff >= 0) {
2509
			ibp->rvp.n_rc_seqnak++;
M
Mike Marciniszyn 已提交
2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520
			qp->r_nak_state = IB_NAK_PSN_ERROR;
			/* Use the expected PSN. */
			qp->r_ack_psn = qp->r_psn;
			/*
			 * Wait to send the sequence
			 * NAK until all packets
			 * in the receive queue have
			 * been processed.
			 * Otherwise, we end up
			 * propagating congestion.
			 */
2521
			rc_defered_ack(rcd, qp);
M
Mike Marciniszyn 已提交
2522 2523 2524
		} /* Out of sequence NAK */
	} /* QP Request NAKs */
}