ruc.c 26.4 KB
Newer Older
M
Mike Marciniszyn 已提交
1
/*
2
 * Copyright(c) 2015 - 2017 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 49 50 51 52
 *
 * 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/spinlock.h>

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

/*
 * Validate a RWQE and fill in the SGE state.
 * Return 1 if OK.
 */
60
static int init_sge(struct rvt_qp *qp, struct rvt_rwqe *wqe)
M
Mike Marciniszyn 已提交
61 62 63
{
	int i, j, ret;
	struct ib_wc wc;
64
	struct rvt_lkey_table *rkt;
65
	struct rvt_pd *pd;
66
	struct rvt_sge_state *ss;
M
Mike Marciniszyn 已提交
67

68
	rkt = &to_idev(qp->ibqp.device)->rdi.lkey_table;
69
	pd = ibpd_to_rvtpd(qp->ibqp.srq ? qp->ibqp.srq->pd : qp->ibqp.pd);
M
Mike Marciniszyn 已提交
70 71 72 73 74 75 76
	ss = &qp->r_sge;
	ss->sg_list = qp->r_sg_list;
	qp->r_len = 0;
	for (i = j = 0; i < wqe->num_sge; i++) {
		if (wqe->sg_list[i].length == 0)
			continue;
		/* Check LKEY */
77 78 79 80
		ret = rvt_lkey_ok(rkt, pd, j ? &ss->sg_list[j - 1] : &ss->sge,
				  NULL, &wqe->sg_list[i],
				  IB_ACCESS_LOCAL_WRITE);
		if (unlikely(ret <= 0))
M
Mike Marciniszyn 已提交
81 82 83 84 85 86 87 88 89 90 91
			goto bad_lkey;
		qp->r_len += wqe->sg_list[i].length;
		j++;
	}
	ss->num_sge = j;
	ss->total_len = qp->r_len;
	ret = 1;
	goto bail;

bad_lkey:
	while (j) {
92
		struct rvt_sge *sge = --j ? &ss->sg_list[j - 1] : &ss->sge;
M
Mike Marciniszyn 已提交
93

94
		rvt_put_mr(sge->mr);
M
Mike Marciniszyn 已提交
95 96 97 98 99 100 101 102
	}
	ss->num_sge = 0;
	memset(&wc, 0, sizeof(wc));
	wc.wr_id = wqe->wr_id;
	wc.status = IB_WC_LOC_PROT_ERR;
	wc.opcode = IB_WC_RECV;
	wc.qp = &qp->ibqp;
	/* Signal solicited completion event. */
103
	rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.recv_cq), &wc, 1);
M
Mike Marciniszyn 已提交
104 105 106 107 108 109
	ret = 0;
bail:
	return ret;
}

/**
110
 * hfi1_rvt_get_rwqe - copy the next RWQE into the QP's RWQE
M
Mike Marciniszyn 已提交
111 112 113 114 115 116 117 118
 * @qp: the QP
 * @wr_id_only: update qp->r_wr_id only, not qp->r_sge
 *
 * Return -1 if there is a local error, 0 if no RWQE is available,
 * otherwise return 1.
 *
 * Can be called from interrupt level.
 */
119
int hfi1_rvt_get_rwqe(struct rvt_qp *qp, int wr_id_only)
M
Mike Marciniszyn 已提交
120 121
{
	unsigned long flags;
122 123
	struct rvt_rq *rq;
	struct rvt_rwq *wq;
124
	struct rvt_srq *srq;
125
	struct rvt_rwqe *wqe;
M
Mike Marciniszyn 已提交
126 127 128 129 130
	void (*handler)(struct ib_event *, void *);
	u32 tail;
	int ret;

	if (qp->ibqp.srq) {
131
		srq = ibsrq_to_rvtsrq(qp->ibqp.srq);
M
Mike Marciniszyn 已提交
132 133 134 135 136 137 138 139 140
		handler = srq->ibsrq.event_handler;
		rq = &srq->rq;
	} else {
		srq = NULL;
		handler = NULL;
		rq = &qp->r_rq;
	}

	spin_lock_irqsave(&rq->lock, flags);
141
	if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK)) {
M
Mike Marciniszyn 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
		ret = 0;
		goto unlock;
	}

	wq = rq->wq;
	tail = wq->tail;
	/* Validate tail before using it since it is user writable. */
	if (tail >= rq->size)
		tail = 0;
	if (unlikely(tail == wq->head)) {
		ret = 0;
		goto unlock;
	}
	/* Make sure entry is read after head index is read. */
	smp_rmb();
157
	wqe = rvt_get_rwqe_ptr(rq, tail);
M
Mike Marciniszyn 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
	/*
	 * Even though we update the tail index in memory, the verbs
	 * consumer is not supposed to post more entries until a
	 * completion is generated.
	 */
	if (++tail >= rq->size)
		tail = 0;
	wq->tail = tail;
	if (!wr_id_only && !init_sge(qp, wqe)) {
		ret = -1;
		goto unlock;
	}
	qp->r_wr_id = wqe->wr_id;

	ret = 1;
173
	set_bit(RVT_R_WRID_VALID, &qp->r_aflags);
M
Mike Marciniszyn 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
	if (handler) {
		u32 n;

		/*
		 * Validate head pointer value and compute
		 * the number of remaining WQEs.
		 */
		n = wq->head;
		if (n >= rq->size)
			n = 0;
		if (n < tail)
			n += rq->size - tail;
		else
			n -= tail;
		if (n < srq->limit) {
			struct ib_event ev;

			srq->limit = 0;
			spin_unlock_irqrestore(&rq->lock, flags);
			ev.device = qp->ibqp.device;
			ev.element.srq = qp->ibqp.srq;
			ev.event = IB_EVENT_SRQ_LIMIT_REACHED;
			handler(&ev, srq->ibsrq.srq_context);
			goto bail;
		}
	}
unlock:
	spin_unlock_irqrestore(&rq->lock, flags);
bail:
	return ret;
}

static int gid_ok(union ib_gid *gid, __be64 gid_prefix, __be64 id)
{
	return (gid->global.interface_id == id &&
		(gid->global.subnet_prefix == gid_prefix ||
		 gid->global.subnet_prefix == IB_DEFAULT_GID_PREFIX));
}

/*
 *
 * This should be called with the QP r_lock held.
 *
 * The s_lock will be acquired around the hfi1_migrate_qp() call.
 */
219
int hfi1_ruc_check_hdr(struct hfi1_ibport *ibp, struct hfi1_packet *packet)
M
Mike Marciniszyn 已提交
220 221 222
{
	__be64 guid;
	unsigned long flags;
223
	struct rvt_qp *qp = packet->qp;
224
	u8 sc5 = ibp->sl_to_sc[rdma_ah_get_sl(&qp->remote_ah_attr)];
225 226 227 228 229
	u32 dlid = packet->dlid;
	u32 slid = packet->slid;
	u32 sl = packet->sl;
	int migrated;
	u32 bth0, bth1;
M
Mike Marciniszyn 已提交
230

231 232 233 234 235 236
	bth0 = be32_to_cpu(packet->ohdr->bth[0]);
	bth1 = be32_to_cpu(packet->ohdr->bth[1]);
	migrated = bth0 & IB_BTH_MIG_REQ;

	if (qp->s_mig_state == IB_MIG_ARMED && migrated) {
		if (!packet->grh) {
237 238
			if (rdma_ah_get_ah_flags(&qp->alt_ah_attr) &
			    IB_AH_GRH)
239
				return 1;
M
Mike Marciniszyn 已提交
240
		} else {
241 242 243 244
			const struct ib_global_route *grh;

			if (!(rdma_ah_get_ah_flags(&qp->alt_ah_attr) &
			      IB_AH_GRH))
245
				return 1;
246 247
			grh = rdma_ah_read_grh(&qp->alt_ah_attr);
			guid = get_sguid(ibp, grh->sgid_index);
248
			if (!gid_ok(&packet->grh->dgid, ibp->rvp.gid_prefix,
249
				    guid))
250
				return 1;
251
			if (!gid_ok(
252
				&packet->grh->sgid,
253 254
				grh->dgid.global.subnet_prefix,
				grh->dgid.global.interface_id))
255
				return 1;
M
Mike Marciniszyn 已提交
256
		}
257 258
		if (unlikely(rcv_pkey_check(ppd_from_ibp(ibp), (u16)bth0,
					    sc5, slid))) {
259 260
			hfi1_bad_pkey(ibp, (u16)bth0, sl,
				      0, qp->ibqp.qp_num, slid, dlid);
261
			return 1;
M
Mike Marciniszyn 已提交
262 263
		}
		/* Validate the SLID. See Ch. 9.6.1.5 and 17.2.8 */
264
		if (slid != rdma_ah_get_dlid(&qp->alt_ah_attr) ||
265 266
		    ppd_from_ibp(ibp)->port !=
			rdma_ah_get_port_num(&qp->alt_ah_attr))
267
			return 1;
M
Mike Marciniszyn 已提交
268 269 270 271
		spin_lock_irqsave(&qp->s_lock, flags);
		hfi1_migrate_qp(qp);
		spin_unlock_irqrestore(&qp->s_lock, flags);
	} else {
272
		if (!packet->grh) {
273 274
			if (rdma_ah_get_ah_flags(&qp->remote_ah_attr) &
						 IB_AH_GRH)
275
				return 1;
M
Mike Marciniszyn 已提交
276
		} else {
277 278 279 280
			const struct ib_global_route *grh;

			if (!(rdma_ah_get_ah_flags(&qp->remote_ah_attr) &
						   IB_AH_GRH))
281
				return 1;
282 283
			grh = rdma_ah_read_grh(&qp->remote_ah_attr);
			guid = get_sguid(ibp, grh->sgid_index);
284
			if (!gid_ok(&packet->grh->dgid, ibp->rvp.gid_prefix,
285
				    guid))
286
				return 1;
287
			if (!gid_ok(
288
			     &packet->grh->sgid,
289 290
			     grh->dgid.global.subnet_prefix,
			     grh->dgid.global.interface_id))
291
				return 1;
M
Mike Marciniszyn 已提交
292
		}
293 294
		if (unlikely(rcv_pkey_check(ppd_from_ibp(ibp), (u16)bth0,
					    sc5, slid))) {
295 296
			hfi1_bad_pkey(ibp, (u16)bth0, sl,
				      0, qp->ibqp.qp_num, slid, dlid);
297
			return 1;
M
Mike Marciniszyn 已提交
298 299
		}
		/* Validate the SLID. See Ch. 9.6.1.5 */
300
		if ((slid != rdma_ah_get_dlid(&qp->remote_ah_attr)) ||
M
Mike Marciniszyn 已提交
301
		    ppd_from_ibp(ibp)->port != qp->port_num)
302 303
			return 1;
		if (qp->s_mig_state == IB_MIG_REARM && !migrated)
M
Mike Marciniszyn 已提交
304 305 306 307 308 309 310 311 312 313 314 315
			qp->s_mig_state = IB_MIG_ARMED;
	}

	return 0;
}

/**
 * ruc_loopback - handle UC and RC loopback requests
 * @sqp: the sending QP
 *
 * This is called from hfi1_do_send() to
 * forward a WQE addressed to the same HFI.
316
 * Note that although we are single threaded due to the send engine, we still
M
Mike Marciniszyn 已提交
317 318 319 320
 * have to protect against post_send().  We don't have to worry about
 * receive interrupts since this is a connected protocol and all packets
 * will pass through here.
 */
321
static void ruc_loopback(struct rvt_qp *sqp)
M
Mike Marciniszyn 已提交
322 323
{
	struct hfi1_ibport *ibp = to_iport(sqp->ibqp.device, sqp->port_num);
324 325 326
	struct rvt_qp *qp;
	struct rvt_swqe *wqe;
	struct rvt_sge *sge;
M
Mike Marciniszyn 已提交
327 328 329 330 331
	unsigned long flags;
	struct ib_wc wc;
	u64 sdata;
	atomic64_t *maddr;
	enum ib_wc_status send_status;
332
	bool release;
M
Mike Marciniszyn 已提交
333
	int ret;
334
	bool copy_last = false;
335
	int local_ops = 0;
M
Mike Marciniszyn 已提交
336 337 338 339 340 341 342

	rcu_read_lock();

	/*
	 * Note that we check the responder QP state after
	 * checking the requester's state.
	 */
343 344
	qp = rvt_lookup_qpn(ib_to_rvt(sqp->ibqp.device), &ibp->rvp,
			    sqp->remote_qpn);
M
Mike Marciniszyn 已提交
345 346 347 348

	spin_lock_irqsave(&sqp->s_lock, flags);

	/* Return if we are already busy processing a work request. */
349
	if ((sqp->s_flags & (RVT_S_BUSY | RVT_S_ANY_WAIT)) ||
350
	    !(ib_rvt_state_ops[sqp->state] & RVT_PROCESS_OR_FLUSH_SEND))
M
Mike Marciniszyn 已提交
351 352
		goto unlock;

353
	sqp->s_flags |= RVT_S_BUSY;
M
Mike Marciniszyn 已提交
354 355

again:
356 357
	smp_read_barrier_depends(); /* see post_one_send() */
	if (sqp->s_last == ACCESS_ONCE(sqp->s_head))
M
Mike Marciniszyn 已提交
358
		goto clr_busy;
359
	wqe = rvt_get_swqe_ptr(sqp, sqp->s_last);
M
Mike Marciniszyn 已提交
360 361

	/* Return if it is not OK to start a new work request. */
362 363
	if (!(ib_rvt_state_ops[sqp->state] & RVT_PROCESS_NEXT_SEND_OK)) {
		if (!(ib_rvt_state_ops[sqp->state] & RVT_FLUSH_SEND))
M
Mike Marciniszyn 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
			goto clr_busy;
		/* We are in the error state, flush the work request. */
		send_status = IB_WC_WR_FLUSH_ERR;
		goto flush_send;
	}

	/*
	 * We can rely on the entry not changing without the s_lock
	 * being held until we update s_last.
	 * We increment s_cur to indicate s_last is in progress.
	 */
	if (sqp->s_last == sqp->s_cur) {
		if (++sqp->s_cur >= sqp->s_size)
			sqp->s_cur = 0;
	}
	spin_unlock_irqrestore(&sqp->s_lock, flags);

381
	if (!qp || !(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) ||
M
Mike Marciniszyn 已提交
382
	    qp->ibqp.qp_type != sqp->ibqp.qp_type) {
383
		ibp->rvp.n_pkt_drops++;
M
Mike Marciniszyn 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397
		/*
		 * For RC, the requester would timeout and retry so
		 * shortcut the timeouts and just signal too many retries.
		 */
		if (sqp->ibqp.qp_type == IB_QPT_RC)
			send_status = IB_WC_RETRY_EXC_ERR;
		else
			send_status = IB_WC_SUCCESS;
		goto serr;
	}

	memset(&wc, 0, sizeof(wc));
	send_status = IB_WC_SUCCESS;

398
	release = true;
M
Mike Marciniszyn 已提交
399 400 401 402 403
	sqp->s_sge.sge = wqe->sg_list[0];
	sqp->s_sge.sg_list = wqe->sg_list + 1;
	sqp->s_sge.num_sge = wqe->wr.num_sge;
	sqp->s_len = wqe->length;
	switch (wqe->wr.opcode) {
404 405 406 407
	case IB_WR_REG_MR:
		goto send_comp;

	case IB_WR_LOCAL_INV:
408 409 410 411 412 413
		if (!(wqe->wr.send_flags & RVT_SEND_COMPLETION_ONLY)) {
			if (rvt_invalidate_rkey(sqp,
						wqe->wr.ex.invalidate_rkey))
				send_status = IB_WC_LOC_PROT_ERR;
			local_ops = 1;
		}
414 415 416 417 418 419 420 421 422
		goto send_comp;

	case IB_WR_SEND_WITH_INV:
		if (!rvt_invalidate_rkey(qp, wqe->wr.ex.invalidate_rkey)) {
			wc.wc_flags = IB_WC_WITH_INVALIDATE;
			wc.ex.invalidate_rkey = wqe->wr.ex.invalidate_rkey;
		}
		goto send;

M
Mike Marciniszyn 已提交
423 424 425 426 427
	case IB_WR_SEND_WITH_IMM:
		wc.wc_flags = IB_WC_WITH_IMM;
		wc.ex.imm_data = wqe->wr.ex.imm_data;
		/* FALLTHROUGH */
	case IB_WR_SEND:
428
send:
429
		ret = hfi1_rvt_get_rwqe(qp, 0);
M
Mike Marciniszyn 已提交
430 431 432 433 434 435 436 437 438 439 440
		if (ret < 0)
			goto op_err;
		if (!ret)
			goto rnr_nak;
		break;

	case IB_WR_RDMA_WRITE_WITH_IMM:
		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE)))
			goto inv_err;
		wc.wc_flags = IB_WC_WITH_IMM;
		wc.ex.imm_data = wqe->wr.ex.imm_data;
441
		ret = hfi1_rvt_get_rwqe(qp, 1);
M
Mike Marciniszyn 已提交
442 443 444 445
		if (ret < 0)
			goto op_err;
		if (!ret)
			goto rnr_nak;
446 447
		/* skip copy_last set and qp_access_flags recheck */
		goto do_write;
M
Mike Marciniszyn 已提交
448
	case IB_WR_RDMA_WRITE:
449
		copy_last = rvt_is_user_qp(qp);
M
Mike Marciniszyn 已提交
450 451
		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE)))
			goto inv_err;
452
do_write:
M
Mike Marciniszyn 已提交
453
		if (wqe->length == 0)
454
			break;
455 456 457 458
		if (unlikely(!rvt_rkey_ok(qp, &qp->r_sge.sge, wqe->length,
					  wqe->rdma_wr.remote_addr,
					  wqe->rdma_wr.rkey,
					  IB_ACCESS_REMOTE_WRITE)))
M
Mike Marciniszyn 已提交
459 460 461 462 463 464 465 466 467
			goto acc_err;
		qp->r_sge.sg_list = NULL;
		qp->r_sge.num_sge = 1;
		qp->r_sge.total_len = wqe->length;
		break;

	case IB_WR_RDMA_READ:
		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_READ)))
			goto inv_err;
468 469 470 471
		if (unlikely(!rvt_rkey_ok(qp, &sqp->s_sge.sge, wqe->length,
					  wqe->rdma_wr.remote_addr,
					  wqe->rdma_wr.rkey,
					  IB_ACCESS_REMOTE_READ)))
M
Mike Marciniszyn 已提交
472
			goto acc_err;
473
		release = false;
M
Mike Marciniszyn 已提交
474 475 476 477 478 479 480 481 482 483 484 485
		sqp->s_sge.sg_list = NULL;
		sqp->s_sge.num_sge = 1;
		qp->r_sge.sge = wqe->sg_list[0];
		qp->r_sge.sg_list = wqe->sg_list + 1;
		qp->r_sge.num_sge = wqe->wr.num_sge;
		qp->r_sge.total_len = wqe->length;
		break;

	case IB_WR_ATOMIC_CMP_AND_SWP:
	case IB_WR_ATOMIC_FETCH_AND_ADD:
		if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC)))
			goto inv_err;
486 487 488 489
		if (unlikely(!rvt_rkey_ok(qp, &qp->r_sge.sge, sizeof(u64),
					  wqe->atomic_wr.remote_addr,
					  wqe->atomic_wr.rkey,
					  IB_ACCESS_REMOTE_ATOMIC)))
M
Mike Marciniszyn 已提交
490 491
			goto acc_err;
		/* Perform atomic OP and save result. */
492
		maddr = (atomic64_t *)qp->r_sge.sge.vaddr;
C
Christoph Hellwig 已提交
493
		sdata = wqe->atomic_wr.compare_add;
494
		*(u64 *)sqp->s_sge.sge.vaddr =
M
Mike Marciniszyn 已提交
495
			(wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) ?
496 497
			(u64)atomic64_add_return(sdata, maddr) - sdata :
			(u64)cmpxchg((u64 *)qp->r_sge.sge.vaddr,
C
Christoph Hellwig 已提交
498
				      sdata, wqe->atomic_wr.swap);
499
		rvt_put_mr(qp->r_sge.sge.mr);
M
Mike Marciniszyn 已提交
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
		qp->r_sge.num_sge = 0;
		goto send_comp;

	default:
		send_status = IB_WC_LOC_QP_OP_ERR;
		goto serr;
	}

	sge = &sqp->s_sge.sge;
	while (sqp->s_len) {
		u32 len = sqp->s_len;

		if (len > sge->length)
			len = sge->length;
		if (len > sge->sge_length)
			len = sge->sge_length;
		WARN_ON_ONCE(len == 0);
517
		hfi1_copy_sge(&qp->r_sge, sge->vaddr, len, release, copy_last);
M
Mike Marciniszyn 已提交
518 519 520 521 522
		sge->vaddr += len;
		sge->length -= len;
		sge->sge_length -= len;
		if (sge->sge_length == 0) {
			if (!release)
523
				rvt_put_mr(sge->mr);
M
Mike Marciniszyn 已提交
524 525 526
			if (--sqp->s_sge.num_sge)
				*sge = *sqp->s_sge.sg_list++;
		} else if (sge->length == 0 && sge->mr->lkey) {
527
			if (++sge->n >= RVT_SEGSZ) {
M
Mike Marciniszyn 已提交
528 529 530 531 532 533 534 535 536 537 538 539
				if (++sge->m >= sge->mr->mapsz)
					break;
				sge->n = 0;
			}
			sge->vaddr =
				sge->mr->map[sge->m]->segs[sge->n].vaddr;
			sge->length =
				sge->mr->map[sge->m]->segs[sge->n].length;
		}
		sqp->s_len -= len;
	}
	if (release)
540
		rvt_put_ss(&qp->r_sge);
M
Mike Marciniszyn 已提交
541

542
	if (!test_and_clear_bit(RVT_R_WRID_VALID, &qp->r_aflags))
M
Mike Marciniszyn 已提交
543 544 545 546 547 548 549 550 551 552 553
		goto send_comp;

	if (wqe->wr.opcode == IB_WR_RDMA_WRITE_WITH_IMM)
		wc.opcode = IB_WC_RECV_RDMA_WITH_IMM;
	else
		wc.opcode = IB_WC_RECV;
	wc.wr_id = qp->r_wr_id;
	wc.status = IB_WC_SUCCESS;
	wc.byte_len = wqe->length;
	wc.qp = &qp->ibqp;
	wc.src_qp = qp->remote_qpn;
554 555
	wc.slid = rdma_ah_get_dlid(&qp->remote_ah_attr);
	wc.sl = rdma_ah_get_sl(&qp->remote_ah_attr);
M
Mike Marciniszyn 已提交
556 557
	wc.port_num = 1;
	/* Signal completion event if the solicited bit is set. */
558 559
	rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.recv_cq), &wc,
		     wqe->wr.send_flags & IB_SEND_SOLICITED);
M
Mike Marciniszyn 已提交
560 561 562

send_comp:
	spin_lock_irqsave(&sqp->s_lock, flags);
563
	ibp->rvp.n_loop_pkts++;
M
Mike Marciniszyn 已提交
564 565 566
flush_send:
	sqp->s_rnr_retry = sqp->s_rnr_retry_cnt;
	hfi1_send_complete(sqp, wqe, send_status);
567 568 569 570
	if (local_ops) {
		atomic_dec(&sqp->local_ops_pending);
		local_ops = 0;
	}
M
Mike Marciniszyn 已提交
571 572 573 574 575 576
	goto again;

rnr_nak:
	/* Handle RNR NAK */
	if (qp->ibqp.qp_type == IB_QPT_UC)
		goto send_comp;
577
	ibp->rvp.n_rnr_naks++;
M
Mike Marciniszyn 已提交
578 579 580 581 582 583 584 585 586 587 588
	/*
	 * Note: we don't need the s_lock held since the BUSY flag
	 * makes this single threaded.
	 */
	if (sqp->s_rnr_retry == 0) {
		send_status = IB_WC_RNR_RETRY_EXC_ERR;
		goto serr;
	}
	if (sqp->s_rnr_retry_cnt < 7)
		sqp->s_rnr_retry--;
	spin_lock_irqsave(&sqp->s_lock, flags);
589
	if (!(ib_rvt_state_ops[sqp->state] & RVT_PROCESS_RECV_OK))
M
Mike Marciniszyn 已提交
590
		goto clr_busy;
591
	rvt_add_rnr_timer(sqp, qp->r_min_rnr_timer <<
592
				IB_AETH_CREDIT_SHIFT);
M
Mike Marciniszyn 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
	goto clr_busy;

op_err:
	send_status = IB_WC_REM_OP_ERR;
	wc.status = IB_WC_LOC_QP_OP_ERR;
	goto err;

inv_err:
	send_status = IB_WC_REM_INV_REQ_ERR;
	wc.status = IB_WC_LOC_QP_OP_ERR;
	goto err;

acc_err:
	send_status = IB_WC_REM_ACCESS_ERR;
	wc.status = IB_WC_LOC_PROT_ERR;
err:
	/* responder goes to error state */
610
	rvt_rc_error(qp, wc.status);
M
Mike Marciniszyn 已提交
611 612 613 614 615

serr:
	spin_lock_irqsave(&sqp->s_lock, flags);
	hfi1_send_complete(sqp, wqe, send_status);
	if (sqp->ibqp.qp_type == IB_QPT_RC) {
616
		int lastwqe = rvt_error_qp(sqp, IB_WC_WR_FLUSH_ERR);
M
Mike Marciniszyn 已提交
617

618
		sqp->s_flags &= ~RVT_S_BUSY;
M
Mike Marciniszyn 已提交
619 620 621 622 623 624 625 626 627 628 629 630
		spin_unlock_irqrestore(&sqp->s_lock, flags);
		if (lastwqe) {
			struct ib_event ev;

			ev.device = sqp->ibqp.device;
			ev.element.qp = &sqp->ibqp;
			ev.event = IB_EVENT_QP_LAST_WQE_REACHED;
			sqp->ibqp.event_handler(&ev, sqp->ibqp.qp_context);
		}
		goto done;
	}
clr_busy:
631
	sqp->s_flags &= ~RVT_S_BUSY;
M
Mike Marciniszyn 已提交
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
unlock:
	spin_unlock_irqrestore(&sqp->s_lock, flags);
done:
	rcu_read_unlock();
}

/**
 * hfi1_make_grh - construct a GRH header
 * @ibp: a pointer to the IB port
 * @hdr: a pointer to the GRH header being constructed
 * @grh: the global route address to send to
 * @hwords: the number of 32 bit words of header being sent
 * @nwords: the number of 32 bit words of data being sent
 *
 * Return the size of the header in 32 bit words.
 */
u32 hfi1_make_grh(struct hfi1_ibport *ibp, struct ib_grh *hdr,
649
		  const struct ib_global_route *grh, u32 hwords, u32 nwords)
M
Mike Marciniszyn 已提交
650 651 652 653 654 655 656 657 658 659
{
	hdr->version_tclass_flow =
		cpu_to_be32((IB_GRH_VERSION << IB_GRH_VERSION_SHIFT) |
			    (grh->traffic_class << IB_GRH_TCLASS_SHIFT) |
			    (grh->flow_label << IB_GRH_FLOW_SHIFT));
	hdr->paylen = cpu_to_be16((hwords - 2 + nwords + SIZE_OF_CRC) << 2);
	/* next_hdr is defined by C8-7 in ch. 8.4.1 */
	hdr->next_hdr = IB_GRH_NEXT_HDR;
	hdr->hop_limit = grh->hop_limit;
	/* The SGID is 32-bit aligned. */
660
	hdr->sgid.global.subnet_prefix = ibp->rvp.gid_prefix;
M
Mike Marciniszyn 已提交
661
	hdr->sgid.global.interface_id =
662 663 664
		grh->sgid_index < HFI1_GUIDS_PER_PORT ?
		get_sguid(ibp, grh->sgid_index) :
		get_sguid(ibp, HFI1_PORT_GUID_INDEX);
M
Mike Marciniszyn 已提交
665 666 667 668 669 670
	hdr->dgid = grh->dgid;

	/* GRH header size in 32-bit words. */
	return sizeof(struct ib_grh) / sizeof(u32);
}

671 672
#define BTH2_OFFSET (offsetof(struct hfi1_sdma_header, \
			      hdr.ibh.u.oth.bth[2]) / 4)
M
Mike Marciniszyn 已提交
673 674

/**
675
 * build_ahg - create ahg in s_ahg
M
Mike Marciniszyn 已提交
676 677 678 679 680 681 682 683 684
 * @qp: a pointer to QP
 * @npsn: the next PSN for the request/response
 *
 * This routine handles the AHG by allocating an ahg entry and causing the
 * copy of the first middle.
 *
 * Subsequent middles use the copied entry, editing the
 * PSN with 1 or 2 edits.
 */
685
static inline void build_ahg(struct rvt_qp *qp, u32 npsn)
M
Mike Marciniszyn 已提交
686
{
687
	struct hfi1_qp_priv *priv = qp->priv;
688

689
	if (unlikely(qp->s_flags & RVT_S_AHG_CLEAR))
M
Mike Marciniszyn 已提交
690
		clear_ahg(qp);
691
	if (!(qp->s_flags & RVT_S_AHG_VALID)) {
M
Mike Marciniszyn 已提交
692
		/* first middle that needs copy  */
693
		if (qp->s_ahgidx < 0)
694
			qp->s_ahgidx = sdma_ahg_alloc(priv->s_sde);
M
Mike Marciniszyn 已提交
695 696
		if (qp->s_ahgidx >= 0) {
			qp->s_ahgpsn = npsn;
697
			priv->s_ahg->tx_flags |= SDMA_TXREQ_F_AHG_COPY;
M
Mike Marciniszyn 已提交
698
			/* save to protect a change in another thread */
699
			priv->s_ahg->ahgidx = qp->s_ahgidx;
700
			qp->s_flags |= RVT_S_AHG_VALID;
M
Mike Marciniszyn 已提交
701 702 703 704
		}
	} else {
		/* subsequent middle after valid */
		if (qp->s_ahgidx >= 0) {
705 706 707 708
			priv->s_ahg->tx_flags |= SDMA_TXREQ_F_USE_AHG;
			priv->s_ahg->ahgidx = qp->s_ahgidx;
			priv->s_ahg->ahgcount++;
			priv->s_ahg->ahgdesc[0] =
M
Mike Marciniszyn 已提交
709 710 711 712 713 714 715
				sdma_build_ahg_descriptor(
					(__force u16)cpu_to_be16((u16)npsn),
					BTH2_OFFSET,
					16,
					16);
			if ((npsn & 0xffff0000) !=
					(qp->s_ahgpsn & 0xffff0000)) {
716 717
				priv->s_ahg->ahgcount++;
				priv->s_ahg->ahgdesc[1] =
M
Mike Marciniszyn 已提交
718 719 720 721 722 723 724 725 726 727 728
					sdma_build_ahg_descriptor(
						(__force u16)cpu_to_be16(
							(u16)(npsn >> 16)),
						BTH2_OFFSET,
						0,
						16);
			}
		}
	}
}

729
void hfi1_make_ruc_header(struct rvt_qp *qp, struct ib_other_headers *ohdr,
730 731
			  u32 bth0, u32 bth2, int middle,
			  struct hfi1_pkt_state *ps)
M
Mike Marciniszyn 已提交
732
{
733
	struct hfi1_qp_priv *priv = qp->priv;
734
	struct hfi1_ibport *ibp = ps->ibp;
M
Mike Marciniszyn 已提交
735 736 737 738 739 740
	u16 lrh0;
	u32 nwords;
	u32 extra_bytes;
	u32 bth1;

	/* Construct the header. */
741 742
	extra_bytes = -ps->s_txreq->s_cur_size & 3;
	nwords = (ps->s_txreq->s_cur_size + extra_bytes) >> 2;
M
Mike Marciniszyn 已提交
743
	lrh0 = HFI1_LRH_BTH;
744 745 746
	if (unlikely(rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH)) {
		qp->s_hdrwords +=
			hfi1_make_grh(ibp,
747 748
				      &ps->s_txreq->phdr.hdr.ibh.u.l.grh,
				      &qp->remote_ah_attr.grh,
749
				      qp->s_hdrwords, nwords);
M
Mike Marciniszyn 已提交
750 751 752
		lrh0 = HFI1_LRH_GRH;
		middle = 0;
	}
753 754
	lrh0 |= (priv->s_sc & 0xf) << 12 |
		(rdma_ah_get_sl(&qp->remote_ah_attr) & 0xf) << 4;
M
Mike Marciniszyn 已提交
755
	/*
756
	 * reset s_ahg/AHG fields
M
Mike Marciniszyn 已提交
757 758 759 760 761 762 763 764 765
	 *
	 * This insures that the ahgentry/ahgcount
	 * are at a non-AHG default to protect
	 * build_verbs_tx_desc() from using
	 * an include ahgidx.
	 *
	 * build_ahg() will modify as appropriate
	 * to use the AHG feature.
	 */
766 767 768
	priv->s_ahg->tx_flags = 0;
	priv->s_ahg->ahgcount = 0;
	priv->s_ahg->ahgidx = 0;
M
Mike Marciniszyn 已提交
769 770 771 772 773 774 775
	if (qp->s_mig_state == IB_MIG_MIGRATED)
		bth0 |= IB_BTH_MIG_REQ;
	else
		middle = 0;
	if (middle)
		build_ahg(qp, bth2);
	else
776
		qp->s_flags &= ~RVT_S_AHG_VALID;
777 778
	ps->s_txreq->phdr.hdr.ibh.lrh[0] = cpu_to_be16(lrh0);
	ps->s_txreq->phdr.hdr.ibh.lrh[1] =
779
		cpu_to_be16(rdma_ah_get_dlid(&qp->remote_ah_attr));
780
	ps->s_txreq->phdr.hdr.ibh.lrh[2] =
M
Mike Marciniszyn 已提交
781
		cpu_to_be16(qp->s_hdrwords + nwords + SIZE_OF_CRC);
782
	ps->s_txreq->phdr.hdr.ibh.lrh[3] =
783
		cpu_to_be16(ppd_from_ibp(ibp)->lid |
784
		rdma_ah_get_path_bits(&qp->remote_ah_attr));
M
Mike Marciniszyn 已提交
785 786 787 788
	bth0 |= hfi1_get_pkey(ibp, qp->s_pkey_index);
	bth0 |= extra_bytes << 20;
	ohdr->bth[0] = cpu_to_be32(bth0);
	bth1 = qp->remote_qpn;
789 790
	if (qp->s_flags & RVT_S_ECN) {
		qp->s_flags &= ~RVT_S_ECN;
M
Mike Marciniszyn 已提交
791
		/* we recently received a FECN, so return a BECN */
792
		bth1 |= (IB_BECN_MASK << IB_BECN_SHIFT);
M
Mike Marciniszyn 已提交
793 794 795 796 797
	}
	ohdr->bth[1] = cpu_to_be32(bth1);
	ohdr->bth[2] = cpu_to_be32(bth2);
}

798 799 800
/* when sending, force a reschedule every one of these periods */
#define SEND_RESCHED_TIMEOUT (5 * HZ)  /* 5s in jiffies */

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
/**
 * schedule_send_yield - test for a yield required for QP send engine
 * @timeout: Final time for timeout slice for jiffies
 * @qp: a pointer to QP
 * @ps: a pointer to a structure with commonly lookup values for
 *      the the send engine progress
 *
 * This routine checks if the time slice for the QP has expired
 * for RC QPs, if so an additional work entry is queued. At this
 * point, other QPs have an opportunity to be scheduled. It
 * returns true if a yield is required, otherwise, false
 * is returned.
 */
static bool schedule_send_yield(struct rvt_qp *qp,
				struct hfi1_pkt_state *ps)
{
817 818
	ps->pkts_sent = true;

819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
	if (unlikely(time_after(jiffies, ps->timeout))) {
		if (!ps->in_thread ||
		    workqueue_congested(ps->cpu, ps->ppd->hfi1_wq)) {
			spin_lock_irqsave(&qp->s_lock, ps->flags);
			qp->s_flags &= ~RVT_S_BUSY;
			hfi1_schedule_send(qp);
			spin_unlock_irqrestore(&qp->s_lock, ps->flags);
			this_cpu_inc(*ps->ppd->dd->send_schedule);
			trace_hfi1_rc_expired_time_slice(qp, true);
			return true;
		}

		cond_resched();
		this_cpu_inc(*ps->ppd->dd->send_schedule);
		ps->timeout = jiffies + ps->timeout_int;
	}

	trace_hfi1_rc_expired_time_slice(qp, false);
	return false;
}

840 841 842 843 844
void hfi1_do_send_from_rvt(struct rvt_qp *qp)
{
	hfi1_do_send(qp, false);
}

845 846 847 848 849
void _hfi1_do_send(struct work_struct *work)
{
	struct iowait *wait = container_of(work, struct iowait, iowork);
	struct rvt_qp *qp = iowait_to_qp(wait);

850
	hfi1_do_send(qp, true);
851 852
}

M
Mike Marciniszyn 已提交
853 854 855
/**
 * hfi1_do_send - perform a send on a QP
 * @work: contains a pointer to the QP
856
 * @in_thread: true if in a workqueue thread
M
Mike Marciniszyn 已提交
857 858
 *
 * Process entries in the send work queue until credit or queue is
859
 * exhausted.  Only allow one CPU to send a packet per QP.
M
Mike Marciniszyn 已提交
860 861
 * Otherwise, two threads could send packets out of order.
 */
862
void hfi1_do_send(struct rvt_qp *qp, bool in_thread)
M
Mike Marciniszyn 已提交
863
{
864
	struct hfi1_pkt_state ps;
865
	struct hfi1_qp_priv *priv = qp->priv;
866
	int (*make_req)(struct rvt_qp *qp, struct hfi1_pkt_state *ps);
M
Mike Marciniszyn 已提交
867

868 869 870
	ps.dev = to_idev(qp->ibqp.device);
	ps.ibp = to_iport(qp->ibqp.device, qp->port_num);
	ps.ppd = ppd_from_ibp(ps.ibp);
871 872 873
	ps.in_thread = in_thread;

	trace_hfi1_rc_do_send(qp, in_thread);
874

875 876
	switch (qp->ibqp.qp_type) {
	case IB_QPT_RC:
877 878 879
		if (!loopback && ((rdma_ah_get_dlid(&qp->remote_ah_attr) &
				   ~((1 << ps.ppd->lmc) - 1)) ==
				  ps.ppd->lid)) {
880 881 882
			ruc_loopback(qp);
			return;
		}
M
Mike Marciniszyn 已提交
883
		make_req = hfi1_make_rc_req;
884
		ps.timeout_int = qp->timeout_jiffies;
885 886
		break;
	case IB_QPT_UC:
887 888 889
		if (!loopback && ((rdma_ah_get_dlid(&qp->remote_ah_attr) &
				   ~((1 << ps.ppd->lmc) - 1)) ==
				  ps.ppd->lid)) {
890 891 892
			ruc_loopback(qp);
			return;
		}
M
Mike Marciniszyn 已提交
893
		make_req = hfi1_make_uc_req;
894
		ps.timeout_int = SEND_RESCHED_TIMEOUT;
895 896
		break;
	default:
M
Mike Marciniszyn 已提交
897
		make_req = hfi1_make_ud_req;
898
		ps.timeout_int = SEND_RESCHED_TIMEOUT;
899
	}
M
Mike Marciniszyn 已提交
900

901
	spin_lock_irqsave(&qp->s_lock, ps.flags);
M
Mike Marciniszyn 已提交
902 903 904

	/* Return if we are already busy processing a work request. */
	if (!hfi1_send_ok(qp)) {
905
		spin_unlock_irqrestore(&qp->s_lock, ps.flags);
M
Mike Marciniszyn 已提交
906 907 908
		return;
	}

909
	qp->s_flags |= RVT_S_BUSY;
M
Mike Marciniszyn 已提交
910

911 912 913
	ps.timeout_int = ps.timeout_int / 8;
	ps.timeout = jiffies + ps.timeout_int;
	ps.cpu = priv->s_sde ? priv->s_sde->cpu :
914
			cpumask_first(cpumask_of_node(ps.ppd->dd->node));
915
	ps.pkts_sent = false;
916

917 918
	/* insure a pre-built packet is handled  */
	ps.s_txreq = get_waiting_verbs_txreq(qp);
M
Mike Marciniszyn 已提交
919 920 921
	do {
		/* Check for a constructed packet to be sent. */
		if (qp->s_hdrwords != 0) {
922
			spin_unlock_irqrestore(&qp->s_lock, ps.flags);
M
Mike Marciniszyn 已提交
923 924
			/*
			 * If the packet cannot be sent now, return and
925
			 * the send engine will be woken up later.
M
Mike Marciniszyn 已提交
926
			 */
927
			if (hfi1_verbs_send(qp, &ps))
928
				return;
929
			/* Record that s_ahg is empty. */
M
Mike Marciniszyn 已提交
930
			qp->s_hdrwords = 0;
931
			/* allow other tasks to run */
932 933 934
			if (schedule_send_yield(qp, &ps))
				return;

935
			spin_lock_irqsave(&qp->s_lock, ps.flags);
936
		}
937
	} while (make_req(qp, &ps));
938
	iowait_starve_clear(ps.pkts_sent, &priv->s_iowait);
939
	spin_unlock_irqrestore(&qp->s_lock, ps.flags);
M
Mike Marciniszyn 已提交
940 941 942 943 944
}

/*
 * This should be called with s_lock held.
 */
945
void hfi1_send_complete(struct rvt_qp *qp, struct rvt_swqe *wqe,
M
Mike Marciniszyn 已提交
946 947 948 949
			enum ib_wc_status status)
{
	u32 old_last, last;

950
	if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_OR_FLUSH_SEND))
M
Mike Marciniszyn 已提交
951 952
		return;

953 954
	last = qp->s_last;
	old_last = last;
955
	trace_hfi1_qp_send_completion(qp, wqe, last);
956 957
	if (++last >= qp->s_size)
		last = 0;
958
	trace_hfi1_qp_send_completion(qp, wqe, last);
959 960 961
	qp->s_last = last;
	/* See post_send() */
	barrier();
962
	rvt_put_swqe(wqe);
M
Mike Marciniszyn 已提交
963 964 965
	if (qp->ibqp.qp_type == IB_QPT_UD ||
	    qp->ibqp.qp_type == IB_QPT_SMI ||
	    qp->ibqp.qp_type == IB_QPT_GSI)
966
		atomic_dec(&ibah_to_rvtah(wqe->ud_wr.ah)->refcount);
M
Mike Marciniszyn 已提交
967

968 969 970 971
	rvt_qp_swqe_complete(qp,
			     wqe,
			     ib_hfi1_wc_opcode[wqe->wr.opcode],
			     status);
M
Mike Marciniszyn 已提交
972 973 974 975 976 977 978 979 980 981

	if (qp->s_acked == old_last)
		qp->s_acked = last;
	if (qp->s_cur == old_last)
		qp->s_cur = last;
	if (qp->s_tail == old_last)
		qp->s_tail = last;
	if (qp->state == IB_QPS_SQD && last == qp->s_cur)
		qp->s_draining = 0;
}