2 * Copyright(c) 2015, 2016 Intel Corporation.
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49 #include <rdma/rdma_vt.h>
50 #include <rdma/rdmavt_qp.h>
54 #include "verbs_txreq.h"
57 /* cut down ridiculously long IB macro names */
58 #define OP(x) RC_OP(x)
61 * hfi1_add_retry_timer - add/start a retry timer
64 * add a retry timer on the QP
66 static inline void hfi1_add_retry_timer(struct rvt_qp *qp)
68 struct ib_qp *ibqp = &qp->ibqp;
69 struct rvt_dev_info *rdi = ib_to_rvt(ibqp->device);
71 lockdep_assert_held(&qp->s_lock);
72 qp->s_flags |= RVT_S_TIMER;
73 /* 4.096 usec. * (1 << qp->timeout) */
74 qp->s_timer.expires = jiffies + qp->timeout_jiffies +
76 add_timer(&qp->s_timer);
80 * hfi1_add_rnr_timer - add/start an rnr timer
82 * @to - timeout in usecs
84 * add an rnr timer on the QP
86 void hfi1_add_rnr_timer(struct rvt_qp *qp, u32 to)
88 struct hfi1_qp_priv *priv = qp->priv;
90 lockdep_assert_held(&qp->s_lock);
91 qp->s_flags |= RVT_S_WAIT_RNR;
92 priv->s_rnr_timer.expires = jiffies + usecs_to_jiffies(to);
93 add_timer(&priv->s_rnr_timer);
97 * hfi1_mod_retry_timer - mod a retry timer
100 * Modify a potentially already running retry
103 static inline void hfi1_mod_retry_timer(struct rvt_qp *qp)
105 struct ib_qp *ibqp = &qp->ibqp;
106 struct rvt_dev_info *rdi = ib_to_rvt(ibqp->device);
108 lockdep_assert_held(&qp->s_lock);
109 qp->s_flags |= RVT_S_TIMER;
110 /* 4.096 usec. * (1 << qp->timeout) */
111 mod_timer(&qp->s_timer, jiffies + qp->timeout_jiffies +
116 * hfi1_stop_retry_timer - stop a retry timer
119 * stop a retry timer and return if the timer
122 static inline int hfi1_stop_retry_timer(struct rvt_qp *qp)
126 lockdep_assert_held(&qp->s_lock);
127 /* Remove QP from retry */
128 if (qp->s_flags & RVT_S_TIMER) {
129 qp->s_flags &= ~RVT_S_TIMER;
130 rval = del_timer(&qp->s_timer);
136 * hfi1_stop_rc_timers - stop all timers
139 * stop any pending timers
141 void hfi1_stop_rc_timers(struct rvt_qp *qp)
143 struct hfi1_qp_priv *priv = qp->priv;
145 lockdep_assert_held(&qp->s_lock);
146 /* Remove QP from all timers */
147 if (qp->s_flags & (RVT_S_TIMER | RVT_S_WAIT_RNR)) {
148 qp->s_flags &= ~(RVT_S_TIMER | RVT_S_WAIT_RNR);
149 del_timer(&qp->s_timer);
150 del_timer(&priv->s_rnr_timer);
155 * hfi1_stop_rnr_timer - stop an rnr timer
158 * stop an rnr timer and return if the timer
161 static inline int hfi1_stop_rnr_timer(struct rvt_qp *qp)
164 struct hfi1_qp_priv *priv = qp->priv;
166 lockdep_assert_held(&qp->s_lock);
167 /* Remove QP from rnr timer */
168 if (qp->s_flags & RVT_S_WAIT_RNR) {
169 qp->s_flags &= ~RVT_S_WAIT_RNR;
170 rval = del_timer(&priv->s_rnr_timer);
176 * hfi1_del_timers_sync - wait for any timeout routines to exit
179 void hfi1_del_timers_sync(struct rvt_qp *qp)
181 struct hfi1_qp_priv *priv = qp->priv;
183 del_timer_sync(&qp->s_timer);
184 del_timer_sync(&priv->s_rnr_timer);
187 static u32 restart_sge(struct rvt_sge_state *ss, struct rvt_swqe *wqe,
192 len = delta_psn(psn, wqe->psn) * pmtu;
193 ss->sge = wqe->sg_list[0];
194 ss->sg_list = wqe->sg_list + 1;
195 ss->num_sge = wqe->wr.num_sge;
196 ss->total_len = wqe->length;
197 hfi1_skip_sge(ss, len, 0);
198 return wqe->length - len;
202 * make_rc_ack - construct a response packet (ACK, NAK, or RDMA read)
203 * @dev: the device for this QP
204 * @qp: a pointer to the QP
205 * @ohdr: a pointer to the IB header being constructed
206 * @ps: the xmit packet state
208 * Return 1 if constructed; otherwise, return 0.
209 * Note that we are in the responder's side of the QP context.
210 * Note the QP s_lock must be held.
212 static int make_rc_ack(struct hfi1_ibdev *dev, struct rvt_qp *qp,
213 struct ib_other_headers *ohdr,
214 struct hfi1_pkt_state *ps)
216 struct rvt_ack_entry *e;
223 struct hfi1_qp_priv *priv = qp->priv;
225 lockdep_assert_held(&qp->s_lock);
226 /* Don't send an ACK if we aren't supposed to. */
227 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK))
230 /* header size in 32-bit words LRH+BTH = (8+12)/4. */
233 switch (qp->s_ack_state) {
234 case OP(RDMA_READ_RESPONSE_LAST):
235 case OP(RDMA_READ_RESPONSE_ONLY):
236 e = &qp->s_ack_queue[qp->s_tail_ack_queue];
237 if (e->rdma_sge.mr) {
238 rvt_put_mr(e->rdma_sge.mr);
239 e->rdma_sge.mr = NULL;
242 case OP(ATOMIC_ACKNOWLEDGE):
244 * We can increment the tail pointer now that the last
245 * response has been sent instead of only being
248 if (++qp->s_tail_ack_queue > HFI1_MAX_RDMA_ATOMIC)
249 qp->s_tail_ack_queue = 0;
252 case OP(ACKNOWLEDGE):
253 /* Check for no next entry in the queue. */
254 if (qp->r_head_ack_queue == qp->s_tail_ack_queue) {
255 if (qp->s_flags & RVT_S_ACK_PENDING)
260 e = &qp->s_ack_queue[qp->s_tail_ack_queue];
261 if (e->opcode == OP(RDMA_READ_REQUEST)) {
263 * If a RDMA read response is being resent and
264 * we haven't seen the duplicate request yet,
265 * then stop sending the remaining responses the
266 * responder has seen until the requester re-sends it.
268 len = e->rdma_sge.sge_length;
269 if (len && !e->rdma_sge.mr) {
270 qp->s_tail_ack_queue = qp->r_head_ack_queue;
273 /* Copy SGE state in case we need to resend */
274 ps->s_txreq->mr = e->rdma_sge.mr;
276 rvt_get_mr(ps->s_txreq->mr);
277 qp->s_ack_rdma_sge.sge = e->rdma_sge;
278 qp->s_ack_rdma_sge.num_sge = 1;
279 qp->s_cur_sge = &qp->s_ack_rdma_sge;
282 qp->s_ack_state = OP(RDMA_READ_RESPONSE_FIRST);
284 qp->s_ack_state = OP(RDMA_READ_RESPONSE_ONLY);
287 ohdr->u.aeth = hfi1_compute_aeth(qp);
289 qp->s_ack_rdma_psn = e->psn;
290 bth2 = mask_psn(qp->s_ack_rdma_psn++);
292 /* COMPARE_SWAP or FETCH_ADD */
293 qp->s_cur_sge = NULL;
295 qp->s_ack_state = OP(ATOMIC_ACKNOWLEDGE);
296 ohdr->u.at.aeth = hfi1_compute_aeth(qp);
297 ib_u64_put(e->atomic_data, &ohdr->u.at.atomic_ack_eth);
298 hwords += sizeof(ohdr->u.at) / sizeof(u32);
299 bth2 = mask_psn(e->psn);
302 bth0 = qp->s_ack_state << 24;
305 case OP(RDMA_READ_RESPONSE_FIRST):
306 qp->s_ack_state = OP(RDMA_READ_RESPONSE_MIDDLE);
308 case OP(RDMA_READ_RESPONSE_MIDDLE):
309 qp->s_cur_sge = &qp->s_ack_rdma_sge;
310 ps->s_txreq->mr = qp->s_ack_rdma_sge.sge.mr;
312 rvt_get_mr(ps->s_txreq->mr);
313 len = qp->s_ack_rdma_sge.sge.sge_length;
316 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
318 ohdr->u.aeth = hfi1_compute_aeth(qp);
320 qp->s_ack_state = OP(RDMA_READ_RESPONSE_LAST);
321 e = &qp->s_ack_queue[qp->s_tail_ack_queue];
324 bth0 = qp->s_ack_state << 24;
325 bth2 = mask_psn(qp->s_ack_rdma_psn++);
331 * Send a regular ACK.
332 * Set the s_ack_state so we wait until after sending
333 * the ACK before setting s_ack_state to ACKNOWLEDGE
336 qp->s_ack_state = OP(SEND_ONLY);
337 qp->s_flags &= ~RVT_S_ACK_PENDING;
338 qp->s_cur_sge = NULL;
341 cpu_to_be32((qp->r_msn & HFI1_MSN_MASK) |
343 HFI1_AETH_CREDIT_SHIFT));
345 ohdr->u.aeth = hfi1_compute_aeth(qp);
348 bth0 = OP(ACKNOWLEDGE) << 24;
349 bth2 = mask_psn(qp->s_ack_psn);
351 qp->s_rdma_ack_cnt++;
352 qp->s_hdrwords = hwords;
353 ps->s_txreq->sde = priv->s_sde;
354 qp->s_cur_size = len;
355 hfi1_make_ruc_header(qp, ohdr, bth0, bth2, middle, ps);
357 ps->s_txreq->hdr_dwords = qp->s_hdrwords + 2;
361 qp->s_ack_state = OP(ACKNOWLEDGE);
363 * Ensure s_rdma_ack_cnt changes are committed prior to resetting
367 qp->s_flags &= ~(RVT_S_RESP_PENDING
374 * hfi1_make_rc_req - construct a request packet (SEND, RDMA r/w, ATOMIC)
375 * @qp: a pointer to the QP
377 * Assumes s_lock is held.
379 * Return 1 if constructed; otherwise, return 0.
381 int hfi1_make_rc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
383 struct hfi1_qp_priv *priv = qp->priv;
384 struct hfi1_ibdev *dev = to_idev(qp->ibqp.device);
385 struct ib_other_headers *ohdr;
386 struct rvt_sge_state *ss;
387 struct rvt_swqe *wqe;
388 /* header size in 32-bit words LRH+BTH = (8+12)/4. */
398 lockdep_assert_held(&qp->s_lock);
399 ps->s_txreq = get_txreq(ps->dev, qp);
403 ohdr = &ps->s_txreq->phdr.hdr.u.oth;
404 if (qp->remote_ah_attr.ah_flags & IB_AH_GRH)
405 ohdr = &ps->s_txreq->phdr.hdr.u.l.oth;
407 /* Sending responses has higher priority over sending requests. */
408 if ((qp->s_flags & RVT_S_RESP_PENDING) &&
409 make_rc_ack(dev, qp, ohdr, ps))
412 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_SEND_OK)) {
413 if (!(ib_rvt_state_ops[qp->state] & RVT_FLUSH_SEND))
415 /* We are in the error state, flush the work request. */
416 smp_read_barrier_depends(); /* see post_one_send() */
417 if (qp->s_last == ACCESS_ONCE(qp->s_head))
419 /* If DMAs are in progress, we can't flush immediately. */
420 if (iowait_sdma_pending(&priv->s_iowait)) {
421 qp->s_flags |= RVT_S_WAIT_DMA;
425 wqe = rvt_get_swqe_ptr(qp, qp->s_last);
426 hfi1_send_complete(qp, wqe, qp->s_last != qp->s_acked ?
427 IB_WC_SUCCESS : IB_WC_WR_FLUSH_ERR);
428 /* will get called again */
432 if (qp->s_flags & (RVT_S_WAIT_RNR | RVT_S_WAIT_ACK))
435 if (cmp_psn(qp->s_psn, qp->s_sending_hpsn) <= 0) {
436 if (cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) <= 0) {
437 qp->s_flags |= RVT_S_WAIT_PSN;
440 qp->s_sending_psn = qp->s_psn;
441 qp->s_sending_hpsn = qp->s_psn - 1;
444 /* Send a request. */
445 wqe = rvt_get_swqe_ptr(qp, qp->s_cur);
446 switch (qp->s_state) {
448 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_NEXT_SEND_OK))
451 * Resend an old request or start a new one.
453 * We keep track of the current SWQE so that
454 * we don't reset the "furthest progress" state
455 * if we need to back up.
458 if (qp->s_cur == qp->s_tail) {
459 /* Check if send work queue is empty. */
460 if (qp->s_tail == qp->s_head) {
465 * If a fence is requested, wait for previous
466 * RDMA read and atomic operations to finish.
468 if ((wqe->wr.send_flags & IB_SEND_FENCE) &&
469 qp->s_num_rd_atomic) {
470 qp->s_flags |= RVT_S_WAIT_FENCE;
474 * Local operations are processed immediately
475 * after all prior requests have completed
477 if (wqe->wr.opcode == IB_WR_REG_MR ||
478 wqe->wr.opcode == IB_WR_LOCAL_INV) {
482 if (qp->s_last != qp->s_cur)
484 if (++qp->s_cur == qp->s_size)
486 if (++qp->s_tail == qp->s_size)
488 if (!(wqe->wr.send_flags &
489 RVT_SEND_COMPLETION_ONLY)) {
490 err = rvt_invalidate_rkey(
492 wqe->wr.ex.invalidate_rkey);
495 hfi1_send_complete(qp, wqe,
496 err ? IB_WC_LOC_PROT_ERR
499 atomic_dec(&qp->local_ops_pending);
505 qp->s_psn = wqe->psn;
508 * Note that we have to be careful not to modify the
509 * original work request since we may need to resend
514 bth2 = mask_psn(qp->s_psn);
515 switch (wqe->wr.opcode) {
517 case IB_WR_SEND_WITH_IMM:
518 case IB_WR_SEND_WITH_INV:
519 /* If no credit, return. */
520 if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT) &&
521 cmp_msn(wqe->ssn, qp->s_lsn + 1) > 0) {
522 qp->s_flags |= RVT_S_WAIT_SSN_CREDIT;
526 qp->s_state = OP(SEND_FIRST);
530 if (wqe->wr.opcode == IB_WR_SEND) {
531 qp->s_state = OP(SEND_ONLY);
532 } else if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
533 qp->s_state = OP(SEND_ONLY_WITH_IMMEDIATE);
534 /* Immediate data comes after the BTH */
535 ohdr->u.imm_data = wqe->wr.ex.imm_data;
538 qp->s_state = OP(SEND_ONLY_WITH_INVALIDATE);
539 /* Invalidate rkey comes after the BTH */
540 ohdr->u.ieth = cpu_to_be32(
541 wqe->wr.ex.invalidate_rkey);
544 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
545 bth0 |= IB_BTH_SOLICITED;
546 bth2 |= IB_BTH_REQ_ACK;
547 if (++qp->s_cur == qp->s_size)
551 case IB_WR_RDMA_WRITE:
552 if (newreq && !(qp->s_flags & RVT_S_UNLIMITED_CREDIT))
554 goto no_flow_control;
555 case IB_WR_RDMA_WRITE_WITH_IMM:
556 /* If no credit, return. */
557 if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT) &&
558 cmp_msn(wqe->ssn, qp->s_lsn + 1) > 0) {
559 qp->s_flags |= RVT_S_WAIT_SSN_CREDIT;
564 wqe->rdma_wr.remote_addr,
566 ohdr->u.rc.reth.rkey =
567 cpu_to_be32(wqe->rdma_wr.rkey);
568 ohdr->u.rc.reth.length = cpu_to_be32(len);
569 hwords += sizeof(struct ib_reth) / sizeof(u32);
571 qp->s_state = OP(RDMA_WRITE_FIRST);
575 if (wqe->wr.opcode == IB_WR_RDMA_WRITE) {
576 qp->s_state = OP(RDMA_WRITE_ONLY);
579 OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE);
580 /* Immediate data comes after RETH */
581 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data;
583 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
584 bth0 |= IB_BTH_SOLICITED;
586 bth2 |= IB_BTH_REQ_ACK;
587 if (++qp->s_cur == qp->s_size)
591 case IB_WR_RDMA_READ:
593 * Don't allow more operations to be started
594 * than the QP limits allow.
597 if (qp->s_num_rd_atomic >=
598 qp->s_max_rd_atomic) {
599 qp->s_flags |= RVT_S_WAIT_RDMAR;
602 qp->s_num_rd_atomic++;
603 if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT))
607 wqe->rdma_wr.remote_addr,
609 ohdr->u.rc.reth.rkey =
610 cpu_to_be32(wqe->rdma_wr.rkey);
611 ohdr->u.rc.reth.length = cpu_to_be32(len);
612 qp->s_state = OP(RDMA_READ_REQUEST);
613 hwords += sizeof(ohdr->u.rc.reth) / sizeof(u32);
616 bth2 |= IB_BTH_REQ_ACK;
617 if (++qp->s_cur == qp->s_size)
621 case IB_WR_ATOMIC_CMP_AND_SWP:
622 case IB_WR_ATOMIC_FETCH_AND_ADD:
624 * Don't allow more operations to be started
625 * than the QP limits allow.
628 if (qp->s_num_rd_atomic >=
629 qp->s_max_rd_atomic) {
630 qp->s_flags |= RVT_S_WAIT_RDMAR;
633 qp->s_num_rd_atomic++;
634 if (!(qp->s_flags & RVT_S_UNLIMITED_CREDIT))
637 if (wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
638 qp->s_state = OP(COMPARE_SWAP);
639 put_ib_ateth_swap(wqe->atomic_wr.swap,
640 &ohdr->u.atomic_eth);
641 put_ib_ateth_compare(wqe->atomic_wr.compare_add,
642 &ohdr->u.atomic_eth);
644 qp->s_state = OP(FETCH_ADD);
645 put_ib_ateth_swap(wqe->atomic_wr.compare_add,
646 &ohdr->u.atomic_eth);
647 put_ib_ateth_compare(0, &ohdr->u.atomic_eth);
649 put_ib_ateth_vaddr(wqe->atomic_wr.remote_addr,
650 &ohdr->u.atomic_eth);
651 ohdr->u.atomic_eth.rkey = cpu_to_be32(
652 wqe->atomic_wr.rkey);
653 hwords += sizeof(struct ib_atomic_eth) / sizeof(u32);
656 bth2 |= IB_BTH_REQ_ACK;
657 if (++qp->s_cur == qp->s_size)
664 qp->s_sge.sge = wqe->sg_list[0];
665 qp->s_sge.sg_list = wqe->sg_list + 1;
666 qp->s_sge.num_sge = wqe->wr.num_sge;
667 qp->s_sge.total_len = wqe->length;
668 qp->s_len = wqe->length;
671 if (qp->s_tail >= qp->s_size)
674 if (wqe->wr.opcode == IB_WR_RDMA_READ)
675 qp->s_psn = wqe->lpsn + 1;
680 case OP(RDMA_READ_RESPONSE_FIRST):
682 * qp->s_state is normally set to the opcode of the
683 * last packet constructed for new requests and therefore
684 * is never set to RDMA read response.
685 * RDMA_READ_RESPONSE_FIRST is used by the ACK processing
686 * thread to indicate a SEND needs to be restarted from an
687 * earlier PSN without interfering with the sending thread.
690 qp->s_len = restart_sge(&qp->s_sge, wqe, qp->s_psn, pmtu);
693 qp->s_state = OP(SEND_MIDDLE);
695 case OP(SEND_MIDDLE):
696 bth2 = mask_psn(qp->s_psn++);
701 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
704 if (wqe->wr.opcode == IB_WR_SEND) {
705 qp->s_state = OP(SEND_LAST);
706 } else if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
707 qp->s_state = OP(SEND_LAST_WITH_IMMEDIATE);
708 /* Immediate data comes after the BTH */
709 ohdr->u.imm_data = wqe->wr.ex.imm_data;
712 qp->s_state = OP(SEND_LAST_WITH_INVALIDATE);
713 /* invalidate data comes after the BTH */
714 ohdr->u.ieth = cpu_to_be32(wqe->wr.ex.invalidate_rkey);
717 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
718 bth0 |= IB_BTH_SOLICITED;
719 bth2 |= IB_BTH_REQ_ACK;
721 if (qp->s_cur >= qp->s_size)
725 case OP(RDMA_READ_RESPONSE_LAST):
727 * qp->s_state is normally set to the opcode of the
728 * last packet constructed for new requests and therefore
729 * is never set to RDMA read response.
730 * RDMA_READ_RESPONSE_LAST is used by the ACK processing
731 * thread to indicate a RDMA write needs to be restarted from
732 * an earlier PSN without interfering with the sending thread.
735 qp->s_len = restart_sge(&qp->s_sge, wqe, qp->s_psn, pmtu);
737 case OP(RDMA_WRITE_FIRST):
738 qp->s_state = OP(RDMA_WRITE_MIDDLE);
740 case OP(RDMA_WRITE_MIDDLE):
741 bth2 = mask_psn(qp->s_psn++);
746 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
749 if (wqe->wr.opcode == IB_WR_RDMA_WRITE) {
750 qp->s_state = OP(RDMA_WRITE_LAST);
752 qp->s_state = OP(RDMA_WRITE_LAST_WITH_IMMEDIATE);
753 /* Immediate data comes after the BTH */
754 ohdr->u.imm_data = wqe->wr.ex.imm_data;
756 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
757 bth0 |= IB_BTH_SOLICITED;
759 bth2 |= IB_BTH_REQ_ACK;
761 if (qp->s_cur >= qp->s_size)
765 case OP(RDMA_READ_RESPONSE_MIDDLE):
767 * qp->s_state is normally set to the opcode of the
768 * last packet constructed for new requests and therefore
769 * is never set to RDMA read response.
770 * RDMA_READ_RESPONSE_MIDDLE is used by the ACK processing
771 * thread to indicate a RDMA read needs to be restarted from
772 * an earlier PSN without interfering with the sending thread.
775 len = (delta_psn(qp->s_psn, wqe->psn)) * pmtu;
777 wqe->rdma_wr.remote_addr + len,
779 ohdr->u.rc.reth.rkey =
780 cpu_to_be32(wqe->rdma_wr.rkey);
781 ohdr->u.rc.reth.length = cpu_to_be32(wqe->length - len);
782 qp->s_state = OP(RDMA_READ_REQUEST);
783 hwords += sizeof(ohdr->u.rc.reth) / sizeof(u32);
784 bth2 = mask_psn(qp->s_psn) | IB_BTH_REQ_ACK;
785 qp->s_psn = wqe->lpsn + 1;
789 if (qp->s_cur == qp->s_size)
793 qp->s_sending_hpsn = bth2;
794 delta = delta_psn(bth2, wqe->psn);
795 if (delta && delta % HFI1_PSN_CREDIT == 0)
796 bth2 |= IB_BTH_REQ_ACK;
797 if (qp->s_flags & RVT_S_SEND_ONE) {
798 qp->s_flags &= ~RVT_S_SEND_ONE;
799 qp->s_flags |= RVT_S_WAIT_ACK;
800 bth2 |= IB_BTH_REQ_ACK;
803 qp->s_hdrwords = hwords;
804 ps->s_txreq->sde = priv->s_sde;
806 qp->s_cur_size = len;
807 hfi1_make_ruc_header(
810 bth0 | (qp->s_state << 24),
815 ps->s_txreq->hdr_dwords = qp->s_hdrwords + 2;
819 hfi1_put_txreq(ps->s_txreq);
824 hfi1_put_txreq(ps->s_txreq);
828 qp->s_flags &= ~RVT_S_BUSY;
834 * hfi1_send_rc_ack - Construct an ACK packet and send it
835 * @qp: a pointer to the QP
837 * This is called from hfi1_rc_rcv() and handle_receive_interrupt().
838 * Note that RDMA reads and atomics are handled in the
839 * send side QP state and send engine.
841 void hfi1_send_rc_ack(struct hfi1_ctxtdata *rcd, struct rvt_qp *qp,
844 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
845 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
846 u64 pbc, pbc_flags = 0;
852 struct send_context *sc;
853 struct pio_buf *pbuf;
854 struct ib_header hdr;
855 struct ib_other_headers *ohdr;
858 /* Don't send ACK or NAK if a RDMA read or atomic is pending. */
859 if (qp->s_flags & RVT_S_RESP_PENDING)
862 /* Ensure s_rdma_ack_cnt changes are committed */
863 smp_read_barrier_depends();
864 if (qp->s_rdma_ack_cnt)
867 /* Construct the header */
868 /* header size in 32-bit words LRH+BTH+AETH = (8+12+4)/4 */
870 if (unlikely(qp->remote_ah_attr.ah_flags & IB_AH_GRH)) {
871 hwords += hfi1_make_grh(ibp, &hdr.u.l.grh,
872 &qp->remote_ah_attr.grh, hwords, 0);
879 /* read pkey_index w/o lock (its atomic) */
880 bth0 = hfi1_get_pkey(ibp, qp->s_pkey_index) | (OP(ACKNOWLEDGE) << 24);
881 if (qp->s_mig_state == IB_MIG_MIGRATED)
882 bth0 |= IB_BTH_MIG_REQ;
884 ohdr->u.aeth = cpu_to_be32((qp->r_msn & HFI1_MSN_MASK) |
886 HFI1_AETH_CREDIT_SHIFT));
888 ohdr->u.aeth = hfi1_compute_aeth(qp);
889 sc5 = ibp->sl_to_sc[qp->remote_ah_attr.sl];
890 /* set PBC_DC_INFO bit (aka SC[4]) in pbc_flags */
891 pbc_flags |= ((!!(sc5 & 0x10)) << PBC_DC_INFO_SHIFT);
892 lrh0 |= (sc5 & 0xf) << 12 | (qp->remote_ah_attr.sl & 0xf) << 4;
893 hdr.lrh[0] = cpu_to_be16(lrh0);
894 hdr.lrh[1] = cpu_to_be16(qp->remote_ah_attr.dlid);
895 hdr.lrh[2] = cpu_to_be16(hwords + SIZE_OF_CRC);
896 hdr.lrh[3] = cpu_to_be16(ppd->lid | qp->remote_ah_attr.src_path_bits);
897 ohdr->bth[0] = cpu_to_be32(bth0);
898 ohdr->bth[1] = cpu_to_be32(qp->remote_qpn);
899 ohdr->bth[1] |= cpu_to_be32((!!is_fecn) << HFI1_BECN_SHIFT);
900 ohdr->bth[2] = cpu_to_be32(mask_psn(qp->r_ack_psn));
902 /* Don't try to send ACKs if the link isn't ACTIVE */
903 if (driver_lstate(ppd) != IB_PORT_ACTIVE)
907 plen = 2 /* PBC */ + hwords;
908 vl = sc_to_vlt(ppd->dd, sc5);
909 pbc = create_pbc(ppd, pbc_flags, qp->srate_mbps, vl, plen);
911 pbuf = sc_buffer_alloc(sc, plen, NULL, NULL);
914 * We have no room to send at the moment. Pass
915 * responsibility for sending the ACK to the send engine
916 * so that when enough buffer space becomes available,
917 * the ACK is sent ahead of other outgoing packets.
922 trace_ack_output_ibhdr(dd_from_ibdev(qp->ibqp.device), &hdr);
924 /* write the pbc and data */
925 ppd->dd->pio_inline_send(ppd->dd, pbuf, pbc, &hdr, hwords);
930 spin_lock_irqsave(&qp->s_lock, flags);
931 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK))
933 this_cpu_inc(*ibp->rvp.rc_qacks);
934 qp->s_flags |= RVT_S_ACK_PENDING | RVT_S_RESP_PENDING;
935 qp->s_nak_state = qp->r_nak_state;
936 qp->s_ack_psn = qp->r_ack_psn;
938 qp->s_flags |= RVT_S_ECN;
940 /* Schedule the send engine. */
941 hfi1_schedule_send(qp);
943 spin_unlock_irqrestore(&qp->s_lock, flags);
947 * reset_psn - reset the QP state to send starting from PSN
949 * @psn: the packet sequence number to restart at
951 * This is called from hfi1_rc_rcv() to process an incoming RC ACK
953 * Called at interrupt level with the QP s_lock held.
955 static void reset_psn(struct rvt_qp *qp, u32 psn)
958 struct rvt_swqe *wqe = rvt_get_swqe_ptr(qp, n);
961 lockdep_assert_held(&qp->s_lock);
965 * If we are starting the request from the beginning,
966 * let the normal send code handle initialization.
968 if (cmp_psn(psn, wqe->psn) <= 0) {
969 qp->s_state = OP(SEND_LAST);
973 /* Find the work request opcode corresponding to the given PSN. */
974 opcode = wqe->wr.opcode;
978 if (++n == qp->s_size)
982 wqe = rvt_get_swqe_ptr(qp, n);
983 diff = cmp_psn(psn, wqe->psn);
988 * If we are starting the request from the beginning,
989 * let the normal send code handle initialization.
992 qp->s_state = OP(SEND_LAST);
995 opcode = wqe->wr.opcode;
999 * Set the state to restart in the middle of a request.
1000 * Don't change the s_sge, s_cur_sge, or s_cur_size.
1001 * See hfi1_make_rc_req().
1005 case IB_WR_SEND_WITH_IMM:
1006 qp->s_state = OP(RDMA_READ_RESPONSE_FIRST);
1009 case IB_WR_RDMA_WRITE:
1010 case IB_WR_RDMA_WRITE_WITH_IMM:
1011 qp->s_state = OP(RDMA_READ_RESPONSE_LAST);
1014 case IB_WR_RDMA_READ:
1015 qp->s_state = OP(RDMA_READ_RESPONSE_MIDDLE);
1020 * This case shouldn't happen since its only
1023 qp->s_state = OP(SEND_LAST);
1028 * Set RVT_S_WAIT_PSN as rc_complete() may start the timer
1029 * asynchronously before the send engine can get scheduled.
1030 * Doing it in hfi1_make_rc_req() is too late.
1032 if ((cmp_psn(qp->s_psn, qp->s_sending_hpsn) <= 0) &&
1033 (cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) <= 0))
1034 qp->s_flags |= RVT_S_WAIT_PSN;
1035 qp->s_flags &= ~RVT_S_AHG_VALID;
1039 * Back up requester to resend the last un-ACKed request.
1040 * The QP r_lock and s_lock should be held and interrupts disabled.
1042 static void restart_rc(struct rvt_qp *qp, u32 psn, int wait)
1044 struct rvt_swqe *wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1045 struct hfi1_ibport *ibp;
1047 lockdep_assert_held(&qp->r_lock);
1048 lockdep_assert_held(&qp->s_lock);
1049 if (qp->s_retry == 0) {
1050 if (qp->s_mig_state == IB_MIG_ARMED) {
1051 hfi1_migrate_qp(qp);
1052 qp->s_retry = qp->s_retry_cnt;
1053 } else if (qp->s_last == qp->s_acked) {
1054 hfi1_send_complete(qp, wqe, IB_WC_RETRY_EXC_ERR);
1055 rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR);
1057 } else { /* need to handle delayed completion */
1064 ibp = to_iport(qp->ibqp.device, qp->port_num);
1065 if (wqe->wr.opcode == IB_WR_RDMA_READ)
1066 ibp->rvp.n_rc_resends++;
1068 ibp->rvp.n_rc_resends += delta_psn(qp->s_psn, psn);
1070 qp->s_flags &= ~(RVT_S_WAIT_FENCE | RVT_S_WAIT_RDMAR |
1071 RVT_S_WAIT_SSN_CREDIT | RVT_S_WAIT_PSN |
1074 qp->s_flags |= RVT_S_SEND_ONE;
1079 * This is called from s_timer for missing responses.
1081 void hfi1_rc_timeout(unsigned long arg)
1083 struct rvt_qp *qp = (struct rvt_qp *)arg;
1084 struct hfi1_ibport *ibp;
1085 unsigned long flags;
1087 spin_lock_irqsave(&qp->r_lock, flags);
1088 spin_lock(&qp->s_lock);
1089 if (qp->s_flags & RVT_S_TIMER) {
1090 ibp = to_iport(qp->ibqp.device, qp->port_num);
1091 ibp->rvp.n_rc_timeouts++;
1092 qp->s_flags &= ~RVT_S_TIMER;
1093 del_timer(&qp->s_timer);
1094 trace_hfi1_timeout(qp, qp->s_last_psn + 1);
1095 restart_rc(qp, qp->s_last_psn + 1, 1);
1096 hfi1_schedule_send(qp);
1098 spin_unlock(&qp->s_lock);
1099 spin_unlock_irqrestore(&qp->r_lock, flags);
1103 * This is called from s_timer for RNR timeouts.
1105 void hfi1_rc_rnr_retry(unsigned long arg)
1107 struct rvt_qp *qp = (struct rvt_qp *)arg;
1108 unsigned long flags;
1110 spin_lock_irqsave(&qp->s_lock, flags);
1111 hfi1_stop_rnr_timer(qp);
1112 hfi1_schedule_send(qp);
1113 spin_unlock_irqrestore(&qp->s_lock, flags);
1117 * Set qp->s_sending_psn to the next PSN after the given one.
1118 * This would be psn+1 except when RDMA reads are present.
1120 static void reset_sending_psn(struct rvt_qp *qp, u32 psn)
1122 struct rvt_swqe *wqe;
1125 lockdep_assert_held(&qp->s_lock);
1126 /* Find the work request corresponding to the given PSN. */
1128 wqe = rvt_get_swqe_ptr(qp, n);
1129 if (cmp_psn(psn, wqe->lpsn) <= 0) {
1130 if (wqe->wr.opcode == IB_WR_RDMA_READ)
1131 qp->s_sending_psn = wqe->lpsn + 1;
1133 qp->s_sending_psn = psn + 1;
1136 if (++n == qp->s_size)
1138 if (n == qp->s_tail)
1144 * This should be called with the QP s_lock held and interrupts disabled.
1146 void hfi1_rc_send_complete(struct rvt_qp *qp, struct ib_header *hdr)
1148 struct ib_other_headers *ohdr;
1149 struct rvt_swqe *wqe;
1155 lockdep_assert_held(&qp->s_lock);
1156 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_OR_FLUSH_SEND))
1159 /* Find out where the BTH is */
1160 if ((be16_to_cpu(hdr->lrh[0]) & 3) == HFI1_LRH_BTH)
1163 ohdr = &hdr->u.l.oth;
1165 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
1166 if (opcode >= OP(RDMA_READ_RESPONSE_FIRST) &&
1167 opcode <= OP(ATOMIC_ACKNOWLEDGE)) {
1168 WARN_ON(!qp->s_rdma_ack_cnt);
1169 qp->s_rdma_ack_cnt--;
1173 psn = be32_to_cpu(ohdr->bth[2]);
1174 reset_sending_psn(qp, psn);
1177 * Start timer after a packet requesting an ACK has been sent and
1178 * there are still requests that haven't been acked.
1180 if ((psn & IB_BTH_REQ_ACK) && qp->s_acked != qp->s_tail &&
1182 (RVT_S_TIMER | RVT_S_WAIT_RNR | RVT_S_WAIT_PSN)) &&
1183 (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK))
1184 hfi1_add_retry_timer(qp);
1186 while (qp->s_last != qp->s_acked) {
1189 wqe = rvt_get_swqe_ptr(qp, qp->s_last);
1190 if (cmp_psn(wqe->lpsn, qp->s_sending_psn) >= 0 &&
1191 cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) <= 0)
1193 s_last = qp->s_last;
1194 if (++s_last >= qp->s_size)
1196 qp->s_last = s_last;
1197 /* see post_send() */
1199 for (i = 0; i < wqe->wr.num_sge; i++) {
1200 struct rvt_sge *sge = &wqe->sg_list[i];
1202 rvt_put_mr(sge->mr);
1204 /* Post a send completion queue entry if requested. */
1205 if (!(qp->s_flags & RVT_S_SIGNAL_REQ_WR) ||
1206 (wqe->wr.send_flags & IB_SEND_SIGNALED)) {
1207 memset(&wc, 0, sizeof(wc));
1208 wc.wr_id = wqe->wr.wr_id;
1209 wc.status = IB_WC_SUCCESS;
1210 wc.opcode = ib_hfi1_wc_opcode[wqe->wr.opcode];
1211 wc.byte_len = wqe->length;
1213 rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.send_cq), &wc, 0);
1217 * If we were waiting for sends to complete before re-sending,
1218 * and they are now complete, restart sending.
1220 trace_hfi1_sendcomplete(qp, psn);
1221 if (qp->s_flags & RVT_S_WAIT_PSN &&
1222 cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) > 0) {
1223 qp->s_flags &= ~RVT_S_WAIT_PSN;
1224 qp->s_sending_psn = qp->s_psn;
1225 qp->s_sending_hpsn = qp->s_psn - 1;
1226 hfi1_schedule_send(qp);
1230 static inline void update_last_psn(struct rvt_qp *qp, u32 psn)
1232 qp->s_last_psn = psn;
1236 * Generate a SWQE completion.
1237 * This is similar to hfi1_send_complete but has to check to be sure
1238 * that the SGEs are not being referenced if the SWQE is being resent.
1240 static struct rvt_swqe *do_rc_completion(struct rvt_qp *qp,
1241 struct rvt_swqe *wqe,
1242 struct hfi1_ibport *ibp)
1247 lockdep_assert_held(&qp->s_lock);
1249 * Don't decrement refcount and don't generate a
1250 * completion if the SWQE is being resent until the send
1253 if (cmp_psn(wqe->lpsn, qp->s_sending_psn) < 0 ||
1254 cmp_psn(qp->s_sending_psn, qp->s_sending_hpsn) > 0) {
1257 for (i = 0; i < wqe->wr.num_sge; i++) {
1258 struct rvt_sge *sge = &wqe->sg_list[i];
1260 rvt_put_mr(sge->mr);
1262 s_last = qp->s_last;
1263 if (++s_last >= qp->s_size)
1265 qp->s_last = s_last;
1266 /* see post_send() */
1268 /* Post a send completion queue entry if requested. */
1269 if (!(qp->s_flags & RVT_S_SIGNAL_REQ_WR) ||
1270 (wqe->wr.send_flags & IB_SEND_SIGNALED)) {
1271 memset(&wc, 0, sizeof(wc));
1272 wc.wr_id = wqe->wr.wr_id;
1273 wc.status = IB_WC_SUCCESS;
1274 wc.opcode = ib_hfi1_wc_opcode[wqe->wr.opcode];
1275 wc.byte_len = wqe->length;
1277 rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.send_cq), &wc, 0);
1280 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
1282 this_cpu_inc(*ibp->rvp.rc_delayed_comp);
1284 * If send progress not running attempt to progress
1287 if (ppd->dd->flags & HFI1_HAS_SEND_DMA) {
1288 struct sdma_engine *engine;
1291 /* For now use sc to find engine */
1292 sc5 = ibp->sl_to_sc[qp->remote_ah_attr.sl];
1293 engine = qp_to_sdma_engine(qp, sc5);
1294 sdma_engine_progress_schedule(engine);
1298 qp->s_retry = qp->s_retry_cnt;
1299 update_last_psn(qp, wqe->lpsn);
1302 * If we are completing a request which is in the process of
1303 * being resent, we can stop re-sending it since we know the
1304 * responder has already seen it.
1306 if (qp->s_acked == qp->s_cur) {
1307 if (++qp->s_cur >= qp->s_size)
1309 qp->s_acked = qp->s_cur;
1310 wqe = rvt_get_swqe_ptr(qp, qp->s_cur);
1311 if (qp->s_acked != qp->s_tail) {
1312 qp->s_state = OP(SEND_LAST);
1313 qp->s_psn = wqe->psn;
1316 if (++qp->s_acked >= qp->s_size)
1318 if (qp->state == IB_QPS_SQD && qp->s_acked == qp->s_cur)
1320 wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1326 * do_rc_ack - process an incoming RC ACK
1327 * @qp: the QP the ACK came in on
1328 * @psn: the packet sequence number of the ACK
1329 * @opcode: the opcode of the request that resulted in the ACK
1331 * This is called from rc_rcv_resp() to process an incoming RC ACK
1333 * May be called at interrupt level, with the QP s_lock held.
1334 * Returns 1 if OK, 0 if current operation should be aborted (NAK).
1336 static int do_rc_ack(struct rvt_qp *qp, u32 aeth, u32 psn, int opcode,
1337 u64 val, struct hfi1_ctxtdata *rcd)
1339 struct hfi1_ibport *ibp;
1340 enum ib_wc_status status;
1341 struct rvt_swqe *wqe;
1347 lockdep_assert_held(&qp->s_lock);
1349 * Note that NAKs implicitly ACK outstanding SEND and RDMA write
1350 * requests and implicitly NAK RDMA read and atomic requests issued
1351 * before the NAK'ed request. The MSN won't include the NAK'ed
1352 * request but will include an ACK'ed request(s).
1357 wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1358 ibp = to_iport(qp->ibqp.device, qp->port_num);
1361 * The MSN might be for a later WQE than the PSN indicates so
1362 * only complete WQEs that the PSN finishes.
1364 while ((diff = delta_psn(ack_psn, wqe->lpsn)) >= 0) {
1366 * RDMA_READ_RESPONSE_ONLY is a special case since
1367 * we want to generate completion events for everything
1368 * before the RDMA read, copy the data, then generate
1369 * the completion for the read.
1371 if (wqe->wr.opcode == IB_WR_RDMA_READ &&
1372 opcode == OP(RDMA_READ_RESPONSE_ONLY) &&
1378 * If this request is a RDMA read or atomic, and the ACK is
1379 * for a later operation, this ACK NAKs the RDMA read or
1380 * atomic. In other words, only a RDMA_READ_LAST or ONLY
1381 * can ACK a RDMA read and likewise for atomic ops. Note
1382 * that the NAK case can only happen if relaxed ordering is
1383 * used and requests are sent after an RDMA read or atomic
1384 * is sent but before the response is received.
1386 if ((wqe->wr.opcode == IB_WR_RDMA_READ &&
1387 (opcode != OP(RDMA_READ_RESPONSE_LAST) || diff != 0)) ||
1388 ((wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
1389 wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) &&
1390 (opcode != OP(ATOMIC_ACKNOWLEDGE) || diff != 0))) {
1391 /* Retry this request. */
1392 if (!(qp->r_flags & RVT_R_RDMAR_SEQ)) {
1393 qp->r_flags |= RVT_R_RDMAR_SEQ;
1394 restart_rc(qp, qp->s_last_psn + 1, 0);
1395 if (list_empty(&qp->rspwait)) {
1396 qp->r_flags |= RVT_R_RSP_SEND;
1398 list_add_tail(&qp->rspwait,
1399 &rcd->qp_wait_list);
1403 * No need to process the ACK/NAK since we are
1404 * restarting an earlier request.
1408 if (wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
1409 wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) {
1410 u64 *vaddr = wqe->sg_list[0].vaddr;
1413 if (qp->s_num_rd_atomic &&
1414 (wqe->wr.opcode == IB_WR_RDMA_READ ||
1415 wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
1416 wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD)) {
1417 qp->s_num_rd_atomic--;
1418 /* Restart sending task if fence is complete */
1419 if ((qp->s_flags & RVT_S_WAIT_FENCE) &&
1420 !qp->s_num_rd_atomic) {
1421 qp->s_flags &= ~(RVT_S_WAIT_FENCE |
1423 hfi1_schedule_send(qp);
1424 } else if (qp->s_flags & RVT_S_WAIT_RDMAR) {
1425 qp->s_flags &= ~(RVT_S_WAIT_RDMAR |
1427 hfi1_schedule_send(qp);
1430 wqe = do_rc_completion(qp, wqe, ibp);
1431 if (qp->s_acked == qp->s_tail)
1435 switch (aeth >> 29) {
1437 this_cpu_inc(*ibp->rvp.rc_acks);
1438 if (qp->s_acked != qp->s_tail) {
1440 * We are expecting more ACKs so
1441 * mod the retry timer.
1443 hfi1_mod_retry_timer(qp);
1445 * We can stop re-sending the earlier packets and
1446 * continue with the next packet the receiver wants.
1448 if (cmp_psn(qp->s_psn, psn) <= 0)
1449 reset_psn(qp, psn + 1);
1451 /* No more acks - kill all timers */
1452 hfi1_stop_rc_timers(qp);
1453 if (cmp_psn(qp->s_psn, psn) <= 0) {
1454 qp->s_state = OP(SEND_LAST);
1455 qp->s_psn = psn + 1;
1458 if (qp->s_flags & RVT_S_WAIT_ACK) {
1459 qp->s_flags &= ~RVT_S_WAIT_ACK;
1460 hfi1_schedule_send(qp);
1462 hfi1_get_credit(qp, aeth);
1463 qp->s_rnr_retry = qp->s_rnr_retry_cnt;
1464 qp->s_retry = qp->s_retry_cnt;
1465 update_last_psn(qp, psn);
1468 case 1: /* RNR NAK */
1469 ibp->rvp.n_rnr_naks++;
1470 if (qp->s_acked == qp->s_tail)
1472 if (qp->s_flags & RVT_S_WAIT_RNR)
1474 if (qp->s_rnr_retry == 0) {
1475 status = IB_WC_RNR_RETRY_EXC_ERR;
1478 if (qp->s_rnr_retry_cnt < 7)
1481 /* The last valid PSN is the previous PSN. */
1482 update_last_psn(qp, psn - 1);
1484 ibp->rvp.n_rc_resends += delta_psn(qp->s_psn, psn);
1488 qp->s_flags &= ~(RVT_S_WAIT_SSN_CREDIT | RVT_S_WAIT_ACK);
1489 hfi1_stop_rc_timers(qp);
1491 ib_hfi1_rnr_table[(aeth >> HFI1_AETH_CREDIT_SHIFT) &
1492 HFI1_AETH_CREDIT_MASK];
1493 hfi1_add_rnr_timer(qp, to);
1497 if (qp->s_acked == qp->s_tail)
1499 /* The last valid PSN is the previous PSN. */
1500 update_last_psn(qp, psn - 1);
1501 switch ((aeth >> HFI1_AETH_CREDIT_SHIFT) &
1502 HFI1_AETH_CREDIT_MASK) {
1503 case 0: /* PSN sequence error */
1504 ibp->rvp.n_seq_naks++;
1506 * Back up to the responder's expected PSN.
1507 * Note that we might get a NAK in the middle of an
1508 * RDMA READ response which terminates the RDMA
1511 restart_rc(qp, psn, 0);
1512 hfi1_schedule_send(qp);
1515 case 1: /* Invalid Request */
1516 status = IB_WC_REM_INV_REQ_ERR;
1517 ibp->rvp.n_other_naks++;
1520 case 2: /* Remote Access Error */
1521 status = IB_WC_REM_ACCESS_ERR;
1522 ibp->rvp.n_other_naks++;
1525 case 3: /* Remote Operation Error */
1526 status = IB_WC_REM_OP_ERR;
1527 ibp->rvp.n_other_naks++;
1529 if (qp->s_last == qp->s_acked) {
1530 hfi1_send_complete(qp, wqe, status);
1531 rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR);
1536 /* Ignore other reserved NAK error codes */
1539 qp->s_retry = qp->s_retry_cnt;
1540 qp->s_rnr_retry = qp->s_rnr_retry_cnt;
1543 default: /* 2: reserved */
1545 /* Ignore reserved NAK codes. */
1548 /* cannot be reached */
1550 hfi1_stop_rc_timers(qp);
1555 * We have seen an out of sequence RDMA read middle or last packet.
1556 * This ACKs SENDs and RDMA writes up to the first RDMA read or atomic SWQE.
1558 static void rdma_seq_err(struct rvt_qp *qp, struct hfi1_ibport *ibp, u32 psn,
1559 struct hfi1_ctxtdata *rcd)
1561 struct rvt_swqe *wqe;
1563 lockdep_assert_held(&qp->s_lock);
1564 /* Remove QP from retry timer */
1565 hfi1_stop_rc_timers(qp);
1567 wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1569 while (cmp_psn(psn, wqe->lpsn) > 0) {
1570 if (wqe->wr.opcode == IB_WR_RDMA_READ ||
1571 wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
1572 wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD)
1574 wqe = do_rc_completion(qp, wqe, ibp);
1577 ibp->rvp.n_rdma_seq++;
1578 qp->r_flags |= RVT_R_RDMAR_SEQ;
1579 restart_rc(qp, qp->s_last_psn + 1, 0);
1580 if (list_empty(&qp->rspwait)) {
1581 qp->r_flags |= RVT_R_RSP_SEND;
1583 list_add_tail(&qp->rspwait, &rcd->qp_wait_list);
1588 * rc_rcv_resp - process an incoming RC response packet
1589 * @ibp: the port this packet came in on
1590 * @ohdr: the other headers for this packet
1591 * @data: the packet data
1592 * @tlen: the packet length
1593 * @qp: the QP for this packet
1594 * @opcode: the opcode for this packet
1595 * @psn: the packet sequence number for this packet
1596 * @hdrsize: the header length
1597 * @pmtu: the path MTU
1599 * This is called from hfi1_rc_rcv() to process an incoming RC response
1600 * packet for the given QP.
1601 * Called at interrupt level.
1603 static void rc_rcv_resp(struct hfi1_ibport *ibp,
1604 struct ib_other_headers *ohdr,
1605 void *data, u32 tlen, struct rvt_qp *qp,
1606 u32 opcode, u32 psn, u32 hdrsize, u32 pmtu,
1607 struct hfi1_ctxtdata *rcd)
1609 struct rvt_swqe *wqe;
1610 enum ib_wc_status status;
1611 unsigned long flags;
1617 spin_lock_irqsave(&qp->s_lock, flags);
1619 trace_hfi1_ack(qp, psn);
1621 /* Ignore invalid responses. */
1622 smp_read_barrier_depends(); /* see post_one_send */
1623 if (cmp_psn(psn, ACCESS_ONCE(qp->s_next_psn)) >= 0)
1626 /* Ignore duplicate responses. */
1627 diff = cmp_psn(psn, qp->s_last_psn);
1628 if (unlikely(diff <= 0)) {
1629 /* Update credits for "ghost" ACKs */
1630 if (diff == 0 && opcode == OP(ACKNOWLEDGE)) {
1631 aeth = be32_to_cpu(ohdr->u.aeth);
1632 if ((aeth >> 29) == 0)
1633 hfi1_get_credit(qp, aeth);
1639 * Skip everything other than the PSN we expect, if we are waiting
1640 * for a reply to a restarted RDMA read or atomic op.
1642 if (qp->r_flags & RVT_R_RDMAR_SEQ) {
1643 if (cmp_psn(psn, qp->s_last_psn + 1) != 0)
1645 qp->r_flags &= ~RVT_R_RDMAR_SEQ;
1648 if (unlikely(qp->s_acked == qp->s_tail))
1650 wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1651 status = IB_WC_SUCCESS;
1654 case OP(ACKNOWLEDGE):
1655 case OP(ATOMIC_ACKNOWLEDGE):
1656 case OP(RDMA_READ_RESPONSE_FIRST):
1657 aeth = be32_to_cpu(ohdr->u.aeth);
1658 if (opcode == OP(ATOMIC_ACKNOWLEDGE))
1659 val = ib_u64_get(&ohdr->u.at.atomic_ack_eth);
1662 if (!do_rc_ack(qp, aeth, psn, opcode, val, rcd) ||
1663 opcode != OP(RDMA_READ_RESPONSE_FIRST))
1665 wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1666 if (unlikely(wqe->wr.opcode != IB_WR_RDMA_READ))
1669 * If this is a response to a resent RDMA read, we
1670 * have to be careful to copy the data to the right
1673 qp->s_rdma_read_len = restart_sge(&qp->s_rdma_read_sge,
1677 case OP(RDMA_READ_RESPONSE_MIDDLE):
1678 /* no AETH, no ACK */
1679 if (unlikely(cmp_psn(psn, qp->s_last_psn + 1)))
1681 if (unlikely(wqe->wr.opcode != IB_WR_RDMA_READ))
1684 if (unlikely(tlen != (hdrsize + pmtu + 4)))
1686 if (unlikely(pmtu >= qp->s_rdma_read_len))
1690 * We got a response so update the timeout.
1691 * 4.096 usec. * (1 << qp->timeout)
1693 qp->s_flags |= RVT_S_TIMER;
1694 mod_timer(&qp->s_timer, jiffies + qp->timeout_jiffies);
1695 if (qp->s_flags & RVT_S_WAIT_ACK) {
1696 qp->s_flags &= ~RVT_S_WAIT_ACK;
1697 hfi1_schedule_send(qp);
1700 if (opcode == OP(RDMA_READ_RESPONSE_MIDDLE))
1701 qp->s_retry = qp->s_retry_cnt;
1704 * Update the RDMA receive state but do the copy w/o
1705 * holding the locks and blocking interrupts.
1707 qp->s_rdma_read_len -= pmtu;
1708 update_last_psn(qp, psn);
1709 spin_unlock_irqrestore(&qp->s_lock, flags);
1710 hfi1_copy_sge(&qp->s_rdma_read_sge, data, pmtu, 0, 0);
1713 case OP(RDMA_READ_RESPONSE_ONLY):
1714 aeth = be32_to_cpu(ohdr->u.aeth);
1715 if (!do_rc_ack(qp, aeth, psn, opcode, 0, rcd))
1717 /* Get the number of bytes the message was padded by. */
1718 pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;
1720 * Check that the data size is >= 0 && <= pmtu.
1721 * Remember to account for ICRC (4).
1723 if (unlikely(tlen < (hdrsize + pad + 4)))
1726 * If this is a response to a resent RDMA read, we
1727 * have to be careful to copy the data to the right
1730 wqe = rvt_get_swqe_ptr(qp, qp->s_acked);
1731 qp->s_rdma_read_len = restart_sge(&qp->s_rdma_read_sge,
1735 case OP(RDMA_READ_RESPONSE_LAST):
1736 /* ACKs READ req. */
1737 if (unlikely(cmp_psn(psn, qp->s_last_psn + 1)))
1739 if (unlikely(wqe->wr.opcode != IB_WR_RDMA_READ))
1741 /* Get the number of bytes the message was padded by. */
1742 pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;
1744 * Check that the data size is >= 1 && <= pmtu.
1745 * Remember to account for ICRC (4).
1747 if (unlikely(tlen <= (hdrsize + pad + 4)))
1750 tlen -= hdrsize + pad + 4;
1751 if (unlikely(tlen != qp->s_rdma_read_len))
1753 aeth = be32_to_cpu(ohdr->u.aeth);
1754 hfi1_copy_sge(&qp->s_rdma_read_sge, data, tlen, 0, 0);
1755 WARN_ON(qp->s_rdma_read_sge.num_sge);
1756 (void)do_rc_ack(qp, aeth, psn,
1757 OP(RDMA_READ_RESPONSE_LAST), 0, rcd);
1762 status = IB_WC_LOC_QP_OP_ERR;
1766 rdma_seq_err(qp, ibp, psn, rcd);
1770 status = IB_WC_LOC_LEN_ERR;
1772 if (qp->s_last == qp->s_acked) {
1773 hfi1_send_complete(qp, wqe, status);
1774 rvt_error_qp(qp, IB_WC_WR_FLUSH_ERR);
1777 spin_unlock_irqrestore(&qp->s_lock, flags);
1782 static inline void rc_defered_ack(struct hfi1_ctxtdata *rcd,
1785 if (list_empty(&qp->rspwait)) {
1786 qp->r_flags |= RVT_R_RSP_NAK;
1788 list_add_tail(&qp->rspwait, &rcd->qp_wait_list);
1792 static inline void rc_cancel_ack(struct rvt_qp *qp)
1794 struct hfi1_qp_priv *priv = qp->priv;
1796 priv->r_adefered = 0;
1797 if (list_empty(&qp->rspwait))
1799 list_del_init(&qp->rspwait);
1800 qp->r_flags &= ~RVT_R_RSP_NAK;
1805 * rc_rcv_error - process an incoming duplicate or error RC packet
1806 * @ohdr: the other headers for this packet
1807 * @data: the packet data
1808 * @qp: the QP for this packet
1809 * @opcode: the opcode for this packet
1810 * @psn: the packet sequence number for this packet
1811 * @diff: the difference between the PSN and the expected PSN
1813 * This is called from hfi1_rc_rcv() to process an unexpected
1814 * incoming RC packet for the given QP.
1815 * Called at interrupt level.
1816 * Return 1 if no more processing is needed; otherwise return 0 to
1817 * schedule a response to be sent.
1819 static noinline int rc_rcv_error(struct ib_other_headers *ohdr, void *data,
1820 struct rvt_qp *qp, u32 opcode, u32 psn,
1821 int diff, struct hfi1_ctxtdata *rcd)
1823 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
1824 struct rvt_ack_entry *e;
1825 unsigned long flags;
1829 trace_hfi1_rcv_error(qp, psn);
1832 * Packet sequence error.
1833 * A NAK will ACK earlier sends and RDMA writes.
1834 * Don't queue the NAK if we already sent one.
1836 if (!qp->r_nak_state) {
1837 ibp->rvp.n_rc_seqnak++;
1838 qp->r_nak_state = IB_NAK_PSN_ERROR;
1839 /* Use the expected PSN. */
1840 qp->r_ack_psn = qp->r_psn;
1842 * Wait to send the sequence NAK until all packets
1843 * in the receive queue have been processed.
1844 * Otherwise, we end up propagating congestion.
1846 rc_defered_ack(rcd, qp);
1852 * Handle a duplicate request. Don't re-execute SEND, RDMA
1853 * write or atomic op. Don't NAK errors, just silently drop
1854 * the duplicate request. Note that r_sge, r_len, and
1855 * r_rcv_len may be in use so don't modify them.
1857 * We are supposed to ACK the earliest duplicate PSN but we
1858 * can coalesce an outstanding duplicate ACK. We have to
1859 * send the earliest so that RDMA reads can be restarted at
1860 * the requester's expected PSN.
1862 * First, find where this duplicate PSN falls within the
1863 * ACKs previously sent.
1864 * old_req is true if there is an older response that is scheduled
1865 * to be sent before sending this one.
1869 ibp->rvp.n_rc_dupreq++;
1871 spin_lock_irqsave(&qp->s_lock, flags);
1873 for (i = qp->r_head_ack_queue; ; i = prev) {
1874 if (i == qp->s_tail_ack_queue)
1879 prev = HFI1_MAX_RDMA_ATOMIC;
1880 if (prev == qp->r_head_ack_queue) {
1884 e = &qp->s_ack_queue[prev];
1889 if (cmp_psn(psn, e->psn) >= 0) {
1890 if (prev == qp->s_tail_ack_queue &&
1891 cmp_psn(psn, e->lpsn) <= 0)
1897 case OP(RDMA_READ_REQUEST): {
1898 struct ib_reth *reth;
1903 * If we didn't find the RDMA read request in the ack queue,
1904 * we can ignore this request.
1906 if (!e || e->opcode != OP(RDMA_READ_REQUEST))
1908 /* RETH comes after BTH */
1909 reth = &ohdr->u.rc.reth;
1911 * Address range must be a subset of the original
1912 * request and start on pmtu boundaries.
1913 * We reuse the old ack_queue slot since the requester
1914 * should not back up and request an earlier PSN for the
1917 offset = delta_psn(psn, e->psn) * qp->pmtu;
1918 len = be32_to_cpu(reth->length);
1919 if (unlikely(offset + len != e->rdma_sge.sge_length))
1921 if (e->rdma_sge.mr) {
1922 rvt_put_mr(e->rdma_sge.mr);
1923 e->rdma_sge.mr = NULL;
1926 u32 rkey = be32_to_cpu(reth->rkey);
1927 u64 vaddr = get_ib_reth_vaddr(reth);
1930 ok = rvt_rkey_ok(qp, &e->rdma_sge, len, vaddr, rkey,
1931 IB_ACCESS_REMOTE_READ);
1935 e->rdma_sge.vaddr = NULL;
1936 e->rdma_sge.length = 0;
1937 e->rdma_sge.sge_length = 0;
1942 qp->s_tail_ack_queue = prev;
1946 case OP(COMPARE_SWAP):
1947 case OP(FETCH_ADD): {
1949 * If we didn't find the atomic request in the ack queue
1950 * or the send engine is already backed up to send an
1951 * earlier entry, we can ignore this request.
1953 if (!e || e->opcode != (u8)opcode || old_req)
1955 qp->s_tail_ack_queue = prev;
1961 * Ignore this operation if it doesn't request an ACK
1962 * or an earlier RDMA read or atomic is going to be resent.
1964 if (!(psn & IB_BTH_REQ_ACK) || old_req)
1967 * Resend the most recent ACK if this request is
1968 * after all the previous RDMA reads and atomics.
1970 if (i == qp->r_head_ack_queue) {
1971 spin_unlock_irqrestore(&qp->s_lock, flags);
1972 qp->r_nak_state = 0;
1973 qp->r_ack_psn = qp->r_psn - 1;
1978 * Resend the RDMA read or atomic op which
1979 * ACKs this duplicate request.
1981 qp->s_tail_ack_queue = i;
1984 qp->s_ack_state = OP(ACKNOWLEDGE);
1985 qp->s_flags |= RVT_S_RESP_PENDING;
1986 qp->r_nak_state = 0;
1987 hfi1_schedule_send(qp);
1990 spin_unlock_irqrestore(&qp->s_lock, flags);
1998 void hfi1_rc_error(struct rvt_qp *qp, enum ib_wc_status err)
2000 unsigned long flags;
2003 spin_lock_irqsave(&qp->s_lock, flags);
2004 lastwqe = rvt_error_qp(qp, err);
2005 spin_unlock_irqrestore(&qp->s_lock, flags);
2010 ev.device = qp->ibqp.device;
2011 ev.element.qp = &qp->ibqp;
2012 ev.event = IB_EVENT_QP_LAST_WQE_REACHED;
2013 qp->ibqp.event_handler(&ev, qp->ibqp.qp_context);
2017 static inline void update_ack_queue(struct rvt_qp *qp, unsigned n)
2022 if (next > HFI1_MAX_RDMA_ATOMIC)
2024 qp->s_tail_ack_queue = next;
2025 qp->s_ack_state = OP(ACKNOWLEDGE);
2028 static void log_cca_event(struct hfi1_pportdata *ppd, u8 sl, u32 rlid,
2029 u32 lqpn, u32 rqpn, u8 svc_type)
2031 struct opa_hfi1_cong_log_event_internal *cc_event;
2032 unsigned long flags;
2034 if (sl >= OPA_MAX_SLS)
2037 spin_lock_irqsave(&ppd->cc_log_lock, flags);
2039 ppd->threshold_cong_event_map[sl / 8] |= 1 << (sl % 8);
2040 ppd->threshold_event_counter++;
2042 cc_event = &ppd->cc_events[ppd->cc_log_idx++];
2043 if (ppd->cc_log_idx == OPA_CONG_LOG_ELEMS)
2044 ppd->cc_log_idx = 0;
2045 cc_event->lqpn = lqpn & RVT_QPN_MASK;
2046 cc_event->rqpn = rqpn & RVT_QPN_MASK;
2048 cc_event->svc_type = svc_type;
2049 cc_event->rlid = rlid;
2050 /* keep timestamp in units of 1.024 usec */
2051 cc_event->timestamp = ktime_to_ns(ktime_get()) / 1024;
2053 spin_unlock_irqrestore(&ppd->cc_log_lock, flags);
2056 void process_becn(struct hfi1_pportdata *ppd, u8 sl, u16 rlid, u32 lqpn,
2057 u32 rqpn, u8 svc_type)
2059 struct cca_timer *cca_timer;
2060 u16 ccti, ccti_incr, ccti_timer, ccti_limit;
2061 u8 trigger_threshold;
2062 struct cc_state *cc_state;
2063 unsigned long flags;
2065 if (sl >= OPA_MAX_SLS)
2068 cc_state = get_cc_state(ppd);
2074 * 1) increase CCTI (for this SL)
2075 * 2) select IPG (i.e., call set_link_ipg())
2078 ccti_limit = cc_state->cct.ccti_limit;
2079 ccti_incr = cc_state->cong_setting.entries[sl].ccti_increase;
2080 ccti_timer = cc_state->cong_setting.entries[sl].ccti_timer;
2082 cc_state->cong_setting.entries[sl].trigger_threshold;
2084 spin_lock_irqsave(&ppd->cca_timer_lock, flags);
2086 cca_timer = &ppd->cca_timer[sl];
2087 if (cca_timer->ccti < ccti_limit) {
2088 if (cca_timer->ccti + ccti_incr <= ccti_limit)
2089 cca_timer->ccti += ccti_incr;
2091 cca_timer->ccti = ccti_limit;
2095 ccti = cca_timer->ccti;
2097 if (!hrtimer_active(&cca_timer->hrtimer)) {
2098 /* ccti_timer is in units of 1.024 usec */
2099 unsigned long nsec = 1024 * ccti_timer;
2101 hrtimer_start(&cca_timer->hrtimer, ns_to_ktime(nsec),
2105 spin_unlock_irqrestore(&ppd->cca_timer_lock, flags);
2107 if ((trigger_threshold != 0) && (ccti >= trigger_threshold))
2108 log_cca_event(ppd, sl, rlid, lqpn, rqpn, svc_type);
2112 * hfi1_rc_rcv - process an incoming RC packet
2113 * @rcd: the context pointer
2114 * @hdr: the header of this packet
2115 * @rcv_flags: flags relevant to rcv processing
2116 * @data: the packet data
2117 * @tlen: the packet length
2118 * @qp: the QP for this packet
2120 * This is called from qp_rcv() to process an incoming RC packet
2122 * May be called at interrupt level.
2124 void hfi1_rc_rcv(struct hfi1_packet *packet)
2126 struct hfi1_ctxtdata *rcd = packet->rcd;
2127 struct ib_header *hdr = packet->hdr;
2128 u32 rcv_flags = packet->rcv_flags;
2129 void *data = packet->ebuf;
2130 u32 tlen = packet->tlen;
2131 struct rvt_qp *qp = packet->qp;
2132 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
2133 struct ib_other_headers *ohdr = packet->ohdr;
2135 u32 hdrsize = packet->hlen;
2139 u32 pmtu = qp->pmtu;
2141 struct ib_reth *reth;
2142 unsigned long flags;
2143 int ret, is_fecn = 0;
2147 lockdep_assert_held(&qp->r_lock);
2148 bth0 = be32_to_cpu(ohdr->bth[0]);
2149 if (hfi1_ruc_check_hdr(ibp, hdr, rcv_flags & HFI1_HAS_GRH, qp, bth0))
2152 is_fecn = process_ecn(qp, packet, false);
2154 psn = be32_to_cpu(ohdr->bth[2]);
2155 opcode = (bth0 >> 24) & 0xff;
2158 * Process responses (ACKs) before anything else. Note that the
2159 * packet sequence number will be for something in the send work
2160 * queue rather than the expected receive packet sequence number.
2161 * In other words, this QP is the requester.
2163 if (opcode >= OP(RDMA_READ_RESPONSE_FIRST) &&
2164 opcode <= OP(ATOMIC_ACKNOWLEDGE)) {
2165 rc_rcv_resp(ibp, ohdr, data, tlen, qp, opcode, psn,
2166 hdrsize, pmtu, rcd);
2172 /* Compute 24 bits worth of difference. */
2173 diff = delta_psn(psn, qp->r_psn);
2174 if (unlikely(diff)) {
2175 if (rc_rcv_error(ohdr, data, qp, opcode, psn, diff, rcd))
2180 /* Check for opcode sequence errors. */
2181 switch (qp->r_state) {
2182 case OP(SEND_FIRST):
2183 case OP(SEND_MIDDLE):
2184 if (opcode == OP(SEND_MIDDLE) ||
2185 opcode == OP(SEND_LAST) ||
2186 opcode == OP(SEND_LAST_WITH_IMMEDIATE) ||
2187 opcode == OP(SEND_LAST_WITH_INVALIDATE))
2191 case OP(RDMA_WRITE_FIRST):
2192 case OP(RDMA_WRITE_MIDDLE):
2193 if (opcode == OP(RDMA_WRITE_MIDDLE) ||
2194 opcode == OP(RDMA_WRITE_LAST) ||
2195 opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE))
2200 if (opcode == OP(SEND_MIDDLE) ||
2201 opcode == OP(SEND_LAST) ||
2202 opcode == OP(SEND_LAST_WITH_IMMEDIATE) ||
2203 opcode == OP(SEND_LAST_WITH_INVALIDATE) ||
2204 opcode == OP(RDMA_WRITE_MIDDLE) ||
2205 opcode == OP(RDMA_WRITE_LAST) ||
2206 opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE))
2209 * Note that it is up to the requester to not send a new
2210 * RDMA read or atomic operation before receiving an ACK
2211 * for the previous operation.
2216 if (qp->state == IB_QPS_RTR && !(qp->r_flags & RVT_R_COMM_EST))
2219 /* OK, process the packet. */
2221 case OP(SEND_FIRST):
2222 ret = hfi1_rvt_get_rwqe(qp, 0);
2229 case OP(SEND_MIDDLE):
2230 case OP(RDMA_WRITE_MIDDLE):
2232 /* Check for invalid length PMTU or posted rwqe len. */
2233 if (unlikely(tlen != (hdrsize + pmtu + 4)))
2235 qp->r_rcv_len += pmtu;
2236 if (unlikely(qp->r_rcv_len > qp->r_len))
2238 hfi1_copy_sge(&qp->r_sge, data, pmtu, 1, 0);
2241 case OP(RDMA_WRITE_LAST_WITH_IMMEDIATE):
2243 ret = hfi1_rvt_get_rwqe(qp, 1);
2251 case OP(SEND_ONLY_WITH_IMMEDIATE):
2252 case OP(SEND_ONLY_WITH_INVALIDATE):
2253 ret = hfi1_rvt_get_rwqe(qp, 0);
2259 if (opcode == OP(SEND_ONLY))
2260 goto no_immediate_data;
2261 if (opcode == OP(SEND_ONLY_WITH_INVALIDATE))
2263 /* FALLTHROUGH for SEND_ONLY_WITH_IMMEDIATE */
2264 case OP(SEND_LAST_WITH_IMMEDIATE):
2266 wc.ex.imm_data = ohdr->u.imm_data;
2267 wc.wc_flags = IB_WC_WITH_IMM;
2269 case OP(SEND_LAST_WITH_INVALIDATE):
2271 rkey = be32_to_cpu(ohdr->u.ieth);
2272 if (rvt_invalidate_rkey(qp, rkey))
2273 goto no_immediate_data;
2274 wc.ex.invalidate_rkey = rkey;
2275 wc.wc_flags = IB_WC_WITH_INVALIDATE;
2277 case OP(RDMA_WRITE_LAST):
2278 copy_last = ibpd_to_rvtpd(qp->ibqp.pd)->user;
2285 /* Get the number of bytes the message was padded by. */
2286 pad = (bth0 >> 20) & 3;
2287 /* Check for invalid length. */
2288 /* LAST len should be >= 1 */
2289 if (unlikely(tlen < (hdrsize + pad + 4)))
2291 /* Don't count the CRC. */
2292 tlen -= (hdrsize + pad + 4);
2293 wc.byte_len = tlen + qp->r_rcv_len;
2294 if (unlikely(wc.byte_len > qp->r_len))
2296 hfi1_copy_sge(&qp->r_sge, data, tlen, 1, copy_last);
2297 rvt_put_ss(&qp->r_sge);
2299 if (!test_and_clear_bit(RVT_R_WRID_VALID, &qp->r_aflags))
2301 wc.wr_id = qp->r_wr_id;
2302 wc.status = IB_WC_SUCCESS;
2303 if (opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE) ||
2304 opcode == OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE))
2305 wc.opcode = IB_WC_RECV_RDMA_WITH_IMM;
2307 wc.opcode = IB_WC_RECV;
2309 wc.src_qp = qp->remote_qpn;
2310 wc.slid = qp->remote_ah_attr.dlid;
2312 * It seems that IB mandates the presence of an SL in a
2313 * work completion only for the UD transport (see section
2314 * 11.4.2 of IBTA Vol. 1).
2316 * However, the way the SL is chosen below is consistent
2317 * with the way that IB/qib works and is trying avoid
2318 * introducing incompatibilities.
2320 * See also OPA Vol. 1, section 9.7.6, and table 9-17.
2322 wc.sl = qp->remote_ah_attr.sl;
2323 /* zero fields that are N/A */
2326 wc.dlid_path_bits = 0;
2328 /* Signal completion event if the solicited bit is set. */
2329 rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.recv_cq), &wc,
2330 (bth0 & IB_BTH_SOLICITED) != 0);
2333 case OP(RDMA_WRITE_ONLY):
2336 case OP(RDMA_WRITE_FIRST):
2337 case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE):
2338 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE)))
2341 reth = &ohdr->u.rc.reth;
2342 qp->r_len = be32_to_cpu(reth->length);
2344 qp->r_sge.sg_list = NULL;
2345 if (qp->r_len != 0) {
2346 u32 rkey = be32_to_cpu(reth->rkey);
2347 u64 vaddr = get_ib_reth_vaddr(reth);
2350 /* Check rkey & NAK */
2351 ok = rvt_rkey_ok(qp, &qp->r_sge.sge, qp->r_len, vaddr,
2352 rkey, IB_ACCESS_REMOTE_WRITE);
2355 qp->r_sge.num_sge = 1;
2357 qp->r_sge.num_sge = 0;
2358 qp->r_sge.sge.mr = NULL;
2359 qp->r_sge.sge.vaddr = NULL;
2360 qp->r_sge.sge.length = 0;
2361 qp->r_sge.sge.sge_length = 0;
2363 if (opcode == OP(RDMA_WRITE_FIRST))
2365 else if (opcode == OP(RDMA_WRITE_ONLY))
2366 goto no_immediate_data;
2367 ret = hfi1_rvt_get_rwqe(qp, 1);
2371 /* peer will send again */
2372 rvt_put_ss(&qp->r_sge);
2375 wc.ex.imm_data = ohdr->u.rc.imm_data;
2376 wc.wc_flags = IB_WC_WITH_IMM;
2379 case OP(RDMA_READ_REQUEST): {
2380 struct rvt_ack_entry *e;
2384 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_READ)))
2386 next = qp->r_head_ack_queue + 1;
2387 /* s_ack_queue is size HFI1_MAX_RDMA_ATOMIC+1 so use > not >= */
2388 if (next > HFI1_MAX_RDMA_ATOMIC)
2390 spin_lock_irqsave(&qp->s_lock, flags);
2391 if (unlikely(next == qp->s_tail_ack_queue)) {
2392 if (!qp->s_ack_queue[next].sent)
2393 goto nack_inv_unlck;
2394 update_ack_queue(qp, next);
2396 e = &qp->s_ack_queue[qp->r_head_ack_queue];
2397 if (e->rdma_sge.mr) {
2398 rvt_put_mr(e->rdma_sge.mr);
2399 e->rdma_sge.mr = NULL;
2401 reth = &ohdr->u.rc.reth;
2402 len = be32_to_cpu(reth->length);
2404 u32 rkey = be32_to_cpu(reth->rkey);
2405 u64 vaddr = get_ib_reth_vaddr(reth);
2408 /* Check rkey & NAK */
2409 ok = rvt_rkey_ok(qp, &e->rdma_sge, len, vaddr,
2410 rkey, IB_ACCESS_REMOTE_READ);
2412 goto nack_acc_unlck;
2414 * Update the next expected PSN. We add 1 later
2415 * below, so only add the remainder here.
2418 qp->r_psn += (len - 1) / pmtu;
2420 e->rdma_sge.mr = NULL;
2421 e->rdma_sge.vaddr = NULL;
2422 e->rdma_sge.length = 0;
2423 e->rdma_sge.sge_length = 0;
2428 e->lpsn = qp->r_psn;
2430 * We need to increment the MSN here instead of when we
2431 * finish sending the result since a duplicate request would
2432 * increment it more than once.
2436 qp->r_state = opcode;
2437 qp->r_nak_state = 0;
2438 qp->r_head_ack_queue = next;
2440 /* Schedule the send engine. */
2441 qp->s_flags |= RVT_S_RESP_PENDING;
2442 hfi1_schedule_send(qp);
2444 spin_unlock_irqrestore(&qp->s_lock, flags);
2450 case OP(COMPARE_SWAP):
2451 case OP(FETCH_ADD): {
2452 struct ib_atomic_eth *ateth;
2453 struct rvt_ack_entry *e;
2460 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC)))
2462 next = qp->r_head_ack_queue + 1;
2463 if (next > HFI1_MAX_RDMA_ATOMIC)
2465 spin_lock_irqsave(&qp->s_lock, flags);
2466 if (unlikely(next == qp->s_tail_ack_queue)) {
2467 if (!qp->s_ack_queue[next].sent)
2468 goto nack_inv_unlck;
2469 update_ack_queue(qp, next);
2471 e = &qp->s_ack_queue[qp->r_head_ack_queue];
2472 if (e->rdma_sge.mr) {
2473 rvt_put_mr(e->rdma_sge.mr);
2474 e->rdma_sge.mr = NULL;
2476 ateth = &ohdr->u.atomic_eth;
2477 vaddr = get_ib_ateth_vaddr(ateth);
2478 if (unlikely(vaddr & (sizeof(u64) - 1)))
2479 goto nack_inv_unlck;
2480 rkey = be32_to_cpu(ateth->rkey);
2481 /* Check rkey & NAK */
2482 if (unlikely(!rvt_rkey_ok(qp, &qp->r_sge.sge, sizeof(u64),
2484 IB_ACCESS_REMOTE_ATOMIC)))
2485 goto nack_acc_unlck;
2486 /* Perform atomic OP and save result. */
2487 maddr = (atomic64_t *)qp->r_sge.sge.vaddr;
2488 sdata = get_ib_ateth_swap(ateth);
2489 e->atomic_data = (opcode == OP(FETCH_ADD)) ?
2490 (u64)atomic64_add_return(sdata, maddr) - sdata :
2491 (u64)cmpxchg((u64 *)qp->r_sge.sge.vaddr,
2492 get_ib_ateth_compare(ateth),
2494 rvt_put_mr(qp->r_sge.sge.mr);
2495 qp->r_sge.num_sge = 0;
2502 qp->r_state = opcode;
2503 qp->r_nak_state = 0;
2504 qp->r_head_ack_queue = next;
2506 /* Schedule the send engine. */
2507 qp->s_flags |= RVT_S_RESP_PENDING;
2508 hfi1_schedule_send(qp);
2510 spin_unlock_irqrestore(&qp->s_lock, flags);
2517 /* NAK unknown opcodes. */
2521 qp->r_state = opcode;
2522 qp->r_ack_psn = psn;
2523 qp->r_nak_state = 0;
2524 /* Send an ACK if requested or required. */
2525 if (psn & IB_BTH_REQ_ACK) {
2526 struct hfi1_qp_priv *priv = qp->priv;
2528 if (packet->numpkt == 0) {
2532 if (priv->r_adefered >= HFI1_PSN_CREDIT) {
2536 if (unlikely(is_fecn)) {
2541 rc_defered_ack(rcd, qp);
2546 qp->r_nak_state = qp->r_min_rnr_timer | IB_RNR_NAK;
2547 qp->r_ack_psn = qp->r_psn;
2548 /* Queue RNR NAK for later */
2549 rc_defered_ack(rcd, qp);
2553 hfi1_rc_error(qp, IB_WC_LOC_QP_OP_ERR);
2554 qp->r_nak_state = IB_NAK_REMOTE_OPERATIONAL_ERROR;
2555 qp->r_ack_psn = qp->r_psn;
2556 /* Queue NAK for later */
2557 rc_defered_ack(rcd, qp);
2561 spin_unlock_irqrestore(&qp->s_lock, flags);
2563 hfi1_rc_error(qp, IB_WC_LOC_QP_OP_ERR);
2564 qp->r_nak_state = IB_NAK_INVALID_REQUEST;
2565 qp->r_ack_psn = qp->r_psn;
2566 /* Queue NAK for later */
2567 rc_defered_ack(rcd, qp);
2571 spin_unlock_irqrestore(&qp->s_lock, flags);
2573 hfi1_rc_error(qp, IB_WC_LOC_PROT_ERR);
2574 qp->r_nak_state = IB_NAK_REMOTE_ACCESS_ERROR;
2575 qp->r_ack_psn = qp->r_psn;
2577 hfi1_send_rc_ack(rcd, qp, is_fecn);
2580 void hfi1_rc_hdrerr(
2581 struct hfi1_ctxtdata *rcd,
2582 struct ib_header *hdr,
2586 int has_grh = rcv_flags & HFI1_HAS_GRH;
2587 struct ib_other_headers *ohdr;
2588 struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
2596 ohdr = &hdr->u.l.oth;
2598 bth0 = be32_to_cpu(ohdr->bth[0]);
2599 if (hfi1_ruc_check_hdr(ibp, hdr, has_grh, qp, bth0))
2602 psn = be32_to_cpu(ohdr->bth[2]);
2603 opcode = (bth0 >> 24) & 0xff;
2605 /* Only deal with RDMA Writes for now */
2606 if (opcode < IB_OPCODE_RC_RDMA_READ_RESPONSE_FIRST) {
2607 diff = delta_psn(psn, qp->r_psn);
2608 if (!qp->r_nak_state && diff >= 0) {
2609 ibp->rvp.n_rc_seqnak++;
2610 qp->r_nak_state = IB_NAK_PSN_ERROR;
2611 /* Use the expected PSN. */
2612 qp->r_ack_psn = qp->r_psn;
2614 * Wait to send the sequence
2615 * NAK until all packets
2616 * in the receive queue have
2618 * Otherwise, we end up
2619 * propagating congestion.
2621 rc_defered_ack(rcd, qp);
2622 } /* Out of sequence NAK */
2623 } /* QP Request NAKs */