blob: 0b646173ca22272fc5a5cca17b231f4675462a1d [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Jubin John05d6ac12016-02-14 20:22:17 -08002 * Copyright(c) 2015, 2016 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
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.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * 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.
12 *
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.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
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
29 * distribution.
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.
33 *
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.
45 *
46 */
47
48#include "hfi.h"
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -080049#include "verbs_txreq.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040050#include "qp.h"
51
52/* cut down ridiculously long IB macro names */
Mike Marciniszynb374e062016-09-25 07:40:58 -070053#define OP(x) UC_OP(x)
Mike Marciniszyn14553ca2016-02-14 12:45:36 -080054
Mike Marciniszyn77241052015-07-30 15:17:43 -040055/**
56 * hfi1_make_uc_req - construct a request packet (SEND, RDMA write)
57 * @qp: a pointer to the QP
58 *
Mike Marciniszyn46a80d62016-02-14 12:10:04 -080059 * Assume s_lock is held.
60 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040061 * Return 1 if constructed; otherwise, return 0.
62 */
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -080063int hfi1_make_uc_req(struct rvt_qp *qp, struct hfi1_pkt_state *ps)
Mike Marciniszyn77241052015-07-30 15:17:43 -040064{
Dennis Dalessandro4c6829c2016-01-19 14:42:00 -080065 struct hfi1_qp_priv *priv = qp->priv;
Mike Marciniszyn261a4352016-09-06 04:35:05 -070066 struct ib_other_headers *ohdr;
Dennis Dalessandro895420d2016-01-19 14:42:28 -080067 struct rvt_swqe *wqe;
Don Hiatt5b6cabb2017-08-04 13:54:41 -070068 u32 hwords;
Mike Marciniszyn77241052015-07-30 15:17:43 -040069 u32 bth0 = 0;
70 u32 len;
71 u32 pmtu = qp->pmtu;
Mike Marciniszyn77241052015-07-30 15:17:43 -040072 int middle = 0;
73
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -080074 ps->s_txreq = get_txreq(ps->dev, qp);
75 if (IS_ERR(ps->s_txreq))
76 goto bail_no_tx;
77
Dennis Dalessandro83693bd2016-01-19 14:43:33 -080078 if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_SEND_OK)) {
79 if (!(ib_rvt_state_ops[qp->state] & RVT_FLUSH_SEND))
Mike Marciniszyn77241052015-07-30 15:17:43 -040080 goto bail;
81 /* We are in the error state, flush the work request. */
Mike Marciniszyn46a80d62016-02-14 12:10:04 -080082 smp_read_barrier_depends(); /* see post_one_send() */
83 if (qp->s_last == ACCESS_ONCE(qp->s_head))
Mike Marciniszyn77241052015-07-30 15:17:43 -040084 goto bail;
85 /* If DMAs are in progress, we can't flush immediately. */
Mike Marciniszyn14553ca2016-02-14 12:45:36 -080086 if (iowait_sdma_pending(&priv->s_iowait)) {
Dennis Dalessandro54d10c12016-01-19 14:43:01 -080087 qp->s_flags |= RVT_S_WAIT_DMA;
Mike Marciniszyn77241052015-07-30 15:17:43 -040088 goto bail;
89 }
90 clear_ahg(qp);
Dennis Dalessandro83693bd2016-01-19 14:43:33 -080091 wqe = rvt_get_swqe_ptr(qp, qp->s_last);
Mike Marciniszyn77241052015-07-30 15:17:43 -040092 hfi1_send_complete(qp, wqe, IB_WC_WR_FLUSH_ERR);
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -080093 goto done_free_tx;
Mike Marciniszyn77241052015-07-30 15:17:43 -040094 }
95
Don Hiatt5b6cabb2017-08-04 13:54:41 -070096 ps->s_txreq->phdr.hdr.hdr_type = priv->hdr_type;
97 if (priv->hdr_type == HFI1_PKT_TYPE_9B) {
98 /* header size in 32-bit words LRH+BTH = (8+12)/4. */
99 hwords = 5;
100 if (rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH)
101 ohdr = &ps->s_txreq->phdr.hdr.ibh.u.l.oth;
102 else
103 ohdr = &ps->s_txreq->phdr.hdr.ibh.u.oth;
104 } else {
105 /* header size in 32-bit words 16B LRH+BTH = (16+12)/4. */
106 hwords = 7;
107 if ((rdma_ah_get_ah_flags(&qp->remote_ah_attr) & IB_AH_GRH) &&
108 (hfi1_check_mcast(rdma_ah_get_dlid(&qp->remote_ah_attr))))
109 ohdr = &ps->s_txreq->phdr.hdr.opah.u.l.oth;
110 else
111 ohdr = &ps->s_txreq->phdr.hdr.opah.u.oth;
112 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400113
114 /* Get the next send request. */
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800115 wqe = rvt_get_swqe_ptr(qp, qp->s_cur);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400116 qp->s_wqe = NULL;
117 switch (qp->s_state) {
118 default:
Dennis Dalessandro83693bd2016-01-19 14:43:33 -0800119 if (!(ib_rvt_state_ops[qp->state] &
120 RVT_PROCESS_NEXT_SEND_OK))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400121 goto bail;
122 /* Check if send work queue is empty. */
Mike Marciniszyn46a80d62016-02-14 12:10:04 -0800123 smp_read_barrier_depends(); /* see post_one_send() */
124 if (qp->s_cur == ACCESS_ONCE(qp->s_head)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400125 clear_ahg(qp);
126 goto bail;
127 }
128 /*
Jianxin Xiong0db3dfa2016-07-25 13:38:37 -0700129 * Local operations are processed immediately
130 * after all prior requests have completed.
131 */
132 if (wqe->wr.opcode == IB_WR_REG_MR ||
133 wqe->wr.opcode == IB_WR_LOCAL_INV) {
Jianxin Xiongd9b13c22016-07-25 13:39:45 -0700134 int local_ops = 0;
135 int err = 0;
136
Jianxin Xiong0db3dfa2016-07-25 13:38:37 -0700137 if (qp->s_last != qp->s_cur)
138 goto bail;
139 if (++qp->s_cur == qp->s_size)
140 qp->s_cur = 0;
Jianxin Xiongd9b13c22016-07-25 13:39:45 -0700141 if (!(wqe->wr.send_flags & RVT_SEND_COMPLETION_ONLY)) {
Jianxin Xiong0db3dfa2016-07-25 13:38:37 -0700142 err = rvt_invalidate_rkey(
143 qp, wqe->wr.ex.invalidate_rkey);
Jianxin Xiongd9b13c22016-07-25 13:39:45 -0700144 local_ops = 1;
145 }
Jianxin Xiong0db3dfa2016-07-25 13:38:37 -0700146 hfi1_send_complete(qp, wqe, err ? IB_WC_LOC_PROT_ERR
147 : IB_WC_SUCCESS);
Jianxin Xiongd9b13c22016-07-25 13:39:45 -0700148 if (local_ops)
149 atomic_dec(&qp->local_ops_pending);
Jianxin Xiong0db3dfa2016-07-25 13:38:37 -0700150 qp->s_hdrwords = 0;
151 goto done_free_tx;
152 }
153 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400154 * Start a new request.
155 */
Mike Marciniszyn46a80d62016-02-14 12:10:04 -0800156 qp->s_psn = wqe->psn;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400157 qp->s_sge.sge = wqe->sg_list[0];
158 qp->s_sge.sg_list = wqe->sg_list + 1;
159 qp->s_sge.num_sge = wqe->wr.num_sge;
160 qp->s_sge.total_len = wqe->length;
161 len = wqe->length;
162 qp->s_len = len;
163 switch (wqe->wr.opcode) {
164 case IB_WR_SEND:
165 case IB_WR_SEND_WITH_IMM:
166 if (len > pmtu) {
167 qp->s_state = OP(SEND_FIRST);
168 len = pmtu;
169 break;
170 }
Jubin Johne4909742016-02-14 20:22:00 -0800171 if (wqe->wr.opcode == IB_WR_SEND) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400172 qp->s_state = OP(SEND_ONLY);
Jubin Johne4909742016-02-14 20:22:00 -0800173 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400174 qp->s_state =
175 OP(SEND_ONLY_WITH_IMMEDIATE);
176 /* Immediate data comes after the BTH */
177 ohdr->u.imm_data = wqe->wr.ex.imm_data;
178 hwords += 1;
179 }
180 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
181 bth0 |= IB_BTH_SOLICITED;
182 qp->s_wqe = wqe;
183 if (++qp->s_cur >= qp->s_size)
184 qp->s_cur = 0;
185 break;
186
187 case IB_WR_RDMA_WRITE:
188 case IB_WR_RDMA_WRITE_WITH_IMM:
189 ohdr->u.rc.reth.vaddr =
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100190 cpu_to_be64(wqe->rdma_wr.remote_addr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400191 ohdr->u.rc.reth.rkey =
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100192 cpu_to_be32(wqe->rdma_wr.rkey);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400193 ohdr->u.rc.reth.length = cpu_to_be32(len);
194 hwords += sizeof(struct ib_reth) / 4;
195 if (len > pmtu) {
196 qp->s_state = OP(RDMA_WRITE_FIRST);
197 len = pmtu;
198 break;
199 }
Jubin Johne4909742016-02-14 20:22:00 -0800200 if (wqe->wr.opcode == IB_WR_RDMA_WRITE) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400201 qp->s_state = OP(RDMA_WRITE_ONLY);
Jubin Johne4909742016-02-14 20:22:00 -0800202 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400203 qp->s_state =
204 OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE);
205 /* Immediate data comes after the RETH */
206 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data;
207 hwords += 1;
208 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
209 bth0 |= IB_BTH_SOLICITED;
210 }
211 qp->s_wqe = wqe;
212 if (++qp->s_cur >= qp->s_size)
213 qp->s_cur = 0;
214 break;
215
216 default:
217 goto bail;
218 }
219 break;
220
221 case OP(SEND_FIRST):
222 qp->s_state = OP(SEND_MIDDLE);
223 /* FALLTHROUGH */
224 case OP(SEND_MIDDLE):
225 len = qp->s_len;
226 if (len > pmtu) {
227 len = pmtu;
228 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
229 break;
230 }
Jubin Johne4909742016-02-14 20:22:00 -0800231 if (wqe->wr.opcode == IB_WR_SEND) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400232 qp->s_state = OP(SEND_LAST);
Jubin Johne4909742016-02-14 20:22:00 -0800233 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400234 qp->s_state = OP(SEND_LAST_WITH_IMMEDIATE);
235 /* Immediate data comes after the BTH */
236 ohdr->u.imm_data = wqe->wr.ex.imm_data;
237 hwords += 1;
238 }
239 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
240 bth0 |= IB_BTH_SOLICITED;
241 qp->s_wqe = wqe;
242 if (++qp->s_cur >= qp->s_size)
243 qp->s_cur = 0;
244 break;
245
246 case OP(RDMA_WRITE_FIRST):
247 qp->s_state = OP(RDMA_WRITE_MIDDLE);
248 /* FALLTHROUGH */
249 case OP(RDMA_WRITE_MIDDLE):
250 len = qp->s_len;
251 if (len > pmtu) {
252 len = pmtu;
253 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
254 break;
255 }
Jubin Johne4909742016-02-14 20:22:00 -0800256 if (wqe->wr.opcode == IB_WR_RDMA_WRITE) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400257 qp->s_state = OP(RDMA_WRITE_LAST);
Jubin Johne4909742016-02-14 20:22:00 -0800258 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400259 qp->s_state =
260 OP(RDMA_WRITE_LAST_WITH_IMMEDIATE);
261 /* Immediate data comes after the BTH */
262 ohdr->u.imm_data = wqe->wr.ex.imm_data;
263 hwords += 1;
264 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
265 bth0 |= IB_BTH_SOLICITED;
266 }
267 qp->s_wqe = wqe;
268 if (++qp->s_cur >= qp->s_size)
269 qp->s_cur = 0;
270 break;
271 }
272 qp->s_len -= len;
273 qp->s_hdrwords = hwords;
Mike Marciniszyn14553ca2016-02-14 12:45:36 -0800274 ps->s_txreq->sde = priv->s_sde;
Mitko Haralanovb777f152016-12-07 19:33:27 -0800275 ps->s_txreq->ss = &qp->s_sge;
Don Hiatte922ae02016-12-07 19:33:00 -0800276 ps->s_txreq->s_cur_size = len;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400277 hfi1_make_ruc_header(qp, ohdr, bth0 | (qp->s_state << 24),
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800278 mask_psn(qp->s_psn++), middle, ps);
Jianxin Xiongaa0ad412016-02-26 13:33:13 -0800279 /* pbc */
280 ps->s_txreq->hdr_dwords = qp->s_hdrwords + 2;
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800281 return 1;
282
283done_free_tx:
284 hfi1_put_txreq(ps->s_txreq);
285 ps->s_txreq = NULL;
Mike Marciniszyn46a80d62016-02-14 12:10:04 -0800286 return 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400287
288bail:
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800289 hfi1_put_txreq(ps->s_txreq);
290
291bail_no_tx:
292 ps->s_txreq = NULL;
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800293 qp->s_flags &= ~RVT_S_BUSY;
Dennis Dalessandrobb5df5f2016-02-14 12:44:43 -0800294 qp->s_hdrwords = 0;
295 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400296}
297
298/**
299 * hfi1_uc_rcv - handle an incoming UC packet
300 * @ibp: the port the packet came in on
301 * @hdr: the header of the packet
302 * @rcv_flags: flags relevant to rcv processing
303 * @data: the packet data
304 * @tlen: the length of the packet
305 * @qp: the QP for this packet.
306 *
307 * This is called from qp_rcv() to process an incoming UC packet
308 * for the given QP.
309 * Called at interrupt level.
310 */
311void hfi1_uc_rcv(struct hfi1_packet *packet)
312{
Sebastian Sanchezf3e862c2017-02-08 05:26:25 -0800313 struct hfi1_ibport *ibp = rcd_to_iport(packet->rcd);
Don Hiatt72c07e22017-08-04 13:53:58 -0700314 void *data = packet->payload;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400315 u32 tlen = packet->tlen;
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800316 struct rvt_qp *qp = packet->qp;
Mike Marciniszyn261a4352016-09-06 04:35:05 -0700317 struct ib_other_headers *ohdr = packet->ohdr;
Don Hiatt90397462017-05-12 09:20:20 -0700318 u32 opcode = packet->opcode;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400319 u32 hdrsize = packet->hlen;
320 u32 psn;
Don Hiatt90397462017-05-12 09:20:20 -0700321 u32 pad = packet->pad;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400322 struct ib_wc wc;
323 u32 pmtu = qp->pmtu;
324 struct ib_reth *reth;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400325 int ret;
Don Hiatt5b6cabb2017-08-04 13:54:41 -0700326 u8 extra_bytes = pad + packet->extra_byte + (SIZE_OF_CRC << 2);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400327
Don Hiatt90397462017-05-12 09:20:20 -0700328 if (hfi1_ruc_check_hdr(ibp, packet))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400329 return;
330
Mitko Haralanov5fd2b562016-07-25 13:38:07 -0700331 process_ecn(qp, packet, true);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400332
Don Hiatt7dafbab2017-05-12 09:19:55 -0700333 psn = ib_bth_get_psn(ohdr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400334 /* Compare the PSN verses the expected PSN. */
335 if (unlikely(cmp_psn(psn, qp->r_psn) != 0)) {
336 /*
337 * Handle a sequence error.
338 * Silently drop any current message.
339 */
340 qp->r_psn = psn;
341inv:
342 if (qp->r_state == OP(SEND_FIRST) ||
343 qp->r_state == OP(SEND_MIDDLE)) {
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800344 set_bit(RVT_R_REWIND_SGE, &qp->r_aflags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400345 qp->r_sge.num_sge = 0;
Jubin Johne4909742016-02-14 20:22:00 -0800346 } else {
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800347 rvt_put_ss(&qp->r_sge);
Jubin Johne4909742016-02-14 20:22:00 -0800348 }
Mike Marciniszyn77241052015-07-30 15:17:43 -0400349 qp->r_state = OP(SEND_LAST);
350 switch (opcode) {
351 case OP(SEND_FIRST):
352 case OP(SEND_ONLY):
353 case OP(SEND_ONLY_WITH_IMMEDIATE):
354 goto send_first;
355
356 case OP(RDMA_WRITE_FIRST):
357 case OP(RDMA_WRITE_ONLY):
358 case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE):
359 goto rdma_first;
360
361 default:
362 goto drop;
363 }
364 }
365
366 /* Check for opcode sequence errors. */
367 switch (qp->r_state) {
368 case OP(SEND_FIRST):
369 case OP(SEND_MIDDLE):
370 if (opcode == OP(SEND_MIDDLE) ||
371 opcode == OP(SEND_LAST) ||
372 opcode == OP(SEND_LAST_WITH_IMMEDIATE))
373 break;
374 goto inv;
375
376 case OP(RDMA_WRITE_FIRST):
377 case OP(RDMA_WRITE_MIDDLE):
378 if (opcode == OP(RDMA_WRITE_MIDDLE) ||
379 opcode == OP(RDMA_WRITE_LAST) ||
380 opcode == OP(RDMA_WRITE_LAST_WITH_IMMEDIATE))
381 break;
382 goto inv;
383
384 default:
385 if (opcode == OP(SEND_FIRST) ||
386 opcode == OP(SEND_ONLY) ||
387 opcode == OP(SEND_ONLY_WITH_IMMEDIATE) ||
388 opcode == OP(RDMA_WRITE_FIRST) ||
389 opcode == OP(RDMA_WRITE_ONLY) ||
390 opcode == OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE))
391 break;
392 goto inv;
393 }
394
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800395 if (qp->state == IB_QPS_RTR && !(qp->r_flags & RVT_R_COMM_EST))
Brian Weltybeb5a042017-02-08 05:27:01 -0800396 rvt_comm_est(qp);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400397
398 /* OK, process the packet. */
399 switch (opcode) {
400 case OP(SEND_FIRST):
401 case OP(SEND_ONLY):
402 case OP(SEND_ONLY_WITH_IMMEDIATE):
403send_first:
Jubin Johne4909742016-02-14 20:22:00 -0800404 if (test_and_clear_bit(RVT_R_REWIND_SGE, &qp->r_aflags)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400405 qp->r_sge = qp->s_rdma_read_sge;
Jubin Johne4909742016-02-14 20:22:00 -0800406 } else {
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800407 ret = hfi1_rvt_get_rwqe(qp, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400408 if (ret < 0)
409 goto op_err;
410 if (!ret)
411 goto drop;
412 /*
413 * qp->s_rdma_read_sge will be the owner
414 * of the mr references.
415 */
416 qp->s_rdma_read_sge = qp->r_sge;
417 }
418 qp->r_rcv_len = 0;
419 if (opcode == OP(SEND_ONLY))
420 goto no_immediate_data;
421 else if (opcode == OP(SEND_ONLY_WITH_IMMEDIATE))
422 goto send_last_imm;
423 /* FALLTHROUGH */
424 case OP(SEND_MIDDLE):
425 /* Check for invalid length PMTU or posted rwqe len. */
Don Hiatt5b6cabb2017-08-04 13:54:41 -0700426 /*
427 * There will be no padding for 9B packet but 16B packets
428 * will come in with some padding since we always add
429 * CRC and LT bytes which will need to be flit aligned
430 */
431 if (unlikely(tlen != (hdrsize + pmtu + extra_bytes)))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400432 goto rewind;
433 qp->r_rcv_len += pmtu;
434 if (unlikely(qp->r_rcv_len > qp->r_len))
435 goto rewind;
Brian Welty0128fce2017-02-08 05:27:31 -0800436 hfi1_copy_sge(&qp->r_sge, data, pmtu, false, false);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400437 break;
438
439 case OP(SEND_LAST_WITH_IMMEDIATE):
440send_last_imm:
441 wc.ex.imm_data = ohdr->u.imm_data;
442 wc.wc_flags = IB_WC_WITH_IMM;
443 goto send_last;
444 case OP(SEND_LAST):
445no_immediate_data:
446 wc.ex.imm_data = 0;
447 wc.wc_flags = 0;
448send_last:
Mike Marciniszyn77241052015-07-30 15:17:43 -0400449 /* Check for invalid length. */
450 /* LAST len should be >= 1 */
Don Hiatt5b6cabb2017-08-04 13:54:41 -0700451 if (unlikely(tlen < (hdrsize + extra_bytes)))
Mike Marciniszyn77241052015-07-30 15:17:43 -0400452 goto rewind;
453 /* Don't count the CRC. */
Don Hiatt5b6cabb2017-08-04 13:54:41 -0700454 tlen -= (hdrsize + extra_bytes);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400455 wc.byte_len = tlen + qp->r_rcv_len;
456 if (unlikely(wc.byte_len > qp->r_len))
457 goto rewind;
458 wc.opcode = IB_WC_RECV;
Brian Welty0128fce2017-02-08 05:27:31 -0800459 hfi1_copy_sge(&qp->r_sge, data, tlen, false, false);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800460 rvt_put_ss(&qp->s_rdma_read_sge);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400461last_imm:
462 wc.wr_id = qp->r_wr_id;
463 wc.status = IB_WC_SUCCESS;
464 wc.qp = &qp->ibqp;
465 wc.src_qp = qp->remote_qpn;
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -0400466 wc.slid = rdma_ah_get_dlid(&qp->remote_ah_attr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400467 /*
468 * It seems that IB mandates the presence of an SL in a
469 * work completion only for the UD transport (see section
470 * 11.4.2 of IBTA Vol. 1).
471 *
472 * However, the way the SL is chosen below is consistent
473 * with the way that IB/qib works and is trying avoid
474 * introducing incompatibilities.
475 *
476 * See also OPA Vol. 1, section 9.7.6, and table 9-17.
477 */
Dasaratharaman Chandramoulid8966fc2017-04-29 14:41:28 -0400478 wc.sl = rdma_ah_get_sl(&qp->remote_ah_attr);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400479 /* zero fields that are N/A */
480 wc.vendor_err = 0;
481 wc.pkey_index = 0;
482 wc.dlid_path_bits = 0;
483 wc.port_num = 0;
484 /* Signal completion event if the solicited bit is set. */
Dennis Dalessandroabd712d2016-01-19 14:43:22 -0800485 rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.recv_cq), &wc,
486 (ohdr->bth[0] &
487 cpu_to_be32(IB_BTH_SOLICITED)) != 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400488 break;
489
490 case OP(RDMA_WRITE_FIRST):
491 case OP(RDMA_WRITE_ONLY):
492 case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE): /* consume RWQE */
493rdma_first:
494 if (unlikely(!(qp->qp_access_flags &
495 IB_ACCESS_REMOTE_WRITE))) {
496 goto drop;
497 }
498 reth = &ohdr->u.rc.reth;
499 qp->r_len = be32_to_cpu(reth->length);
500 qp->r_rcv_len = 0;
501 qp->r_sge.sg_list = NULL;
502 if (qp->r_len != 0) {
503 u32 rkey = be32_to_cpu(reth->rkey);
504 u64 vaddr = be64_to_cpu(reth->vaddr);
505 int ok;
506
507 /* Check rkey */
Dennis Dalessandro895420d2016-01-19 14:42:28 -0800508 ok = rvt_rkey_ok(qp, &qp->r_sge.sge, qp->r_len,
509 vaddr, rkey, IB_ACCESS_REMOTE_WRITE);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400510 if (unlikely(!ok))
511 goto drop;
512 qp->r_sge.num_sge = 1;
513 } else {
514 qp->r_sge.num_sge = 0;
515 qp->r_sge.sge.mr = NULL;
516 qp->r_sge.sge.vaddr = NULL;
517 qp->r_sge.sge.length = 0;
518 qp->r_sge.sge.sge_length = 0;
519 }
Jubin Johne4909742016-02-14 20:22:00 -0800520 if (opcode == OP(RDMA_WRITE_ONLY)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400521 goto rdma_last;
Jubin Johne4909742016-02-14 20:22:00 -0800522 } else if (opcode == OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -0400523 wc.ex.imm_data = ohdr->u.rc.imm_data;
524 goto rdma_last_imm;
525 }
526 /* FALLTHROUGH */
527 case OP(RDMA_WRITE_MIDDLE):
528 /* Check for invalid length PMTU or posted rwqe len. */
529 if (unlikely(tlen != (hdrsize + pmtu + 4)))
530 goto drop;
531 qp->r_rcv_len += pmtu;
532 if (unlikely(qp->r_rcv_len > qp->r_len))
533 goto drop;
Brian Welty0128fce2017-02-08 05:27:31 -0800534 hfi1_copy_sge(&qp->r_sge, data, pmtu, true, false);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400535 break;
536
537 case OP(RDMA_WRITE_LAST_WITH_IMMEDIATE):
538 wc.ex.imm_data = ohdr->u.imm_data;
539rdma_last_imm:
540 wc.wc_flags = IB_WC_WITH_IMM;
541
Mike Marciniszyn77241052015-07-30 15:17:43 -0400542 /* Check for invalid length. */
543 /* LAST len should be >= 1 */
544 if (unlikely(tlen < (hdrsize + pad + 4)))
545 goto drop;
546 /* Don't count the CRC. */
Don Hiatt5b6cabb2017-08-04 13:54:41 -0700547 tlen -= (hdrsize + extra_bytes);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400548 if (unlikely(tlen + qp->r_rcv_len != qp->r_len))
549 goto drop;
Jubin Johne4909742016-02-14 20:22:00 -0800550 if (test_and_clear_bit(RVT_R_REWIND_SGE, &qp->r_aflags)) {
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800551 rvt_put_ss(&qp->s_rdma_read_sge);
Jubin Johne4909742016-02-14 20:22:00 -0800552 } else {
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800553 ret = hfi1_rvt_get_rwqe(qp, 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400554 if (ret < 0)
555 goto op_err;
556 if (!ret)
557 goto drop;
558 }
559 wc.byte_len = qp->r_len;
560 wc.opcode = IB_WC_RECV_RDMA_WITH_IMM;
Brian Welty0128fce2017-02-08 05:27:31 -0800561 hfi1_copy_sge(&qp->r_sge, data, tlen, true, false);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800562 rvt_put_ss(&qp->r_sge);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400563 goto last_imm;
564
565 case OP(RDMA_WRITE_LAST):
566rdma_last:
Mike Marciniszyn77241052015-07-30 15:17:43 -0400567 /* Check for invalid length. */
568 /* LAST len should be >= 1 */
569 if (unlikely(tlen < (hdrsize + pad + 4)))
570 goto drop;
571 /* Don't count the CRC. */
Don Hiatt5b6cabb2017-08-04 13:54:41 -0700572 tlen -= (hdrsize + extra_bytes);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400573 if (unlikely(tlen + qp->r_rcv_len != qp->r_len))
574 goto drop;
Brian Welty0128fce2017-02-08 05:27:31 -0800575 hfi1_copy_sge(&qp->r_sge, data, tlen, true, false);
Dennis Dalessandroec4274f2016-01-19 14:43:44 -0800576 rvt_put_ss(&qp->r_sge);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400577 break;
578
579 default:
580 /* Drop packet for unknown opcodes. */
581 goto drop;
582 }
583 qp->r_psn++;
584 qp->r_state = opcode;
585 return;
586
587rewind:
Dennis Dalessandro54d10c12016-01-19 14:43:01 -0800588 set_bit(RVT_R_REWIND_SGE, &qp->r_aflags);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400589 qp->r_sge.num_sge = 0;
590drop:
Dennis Dalessandro4eb06882016-01-19 14:42:39 -0800591 ibp->rvp.n_pkt_drops++;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400592 return;
593
594op_err:
Brian Weltybeb5a042017-02-08 05:27:01 -0800595 rvt_rc_error(qp, IB_WC_LOC_QP_OP_ERR);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400596}