2 * Copyright (c) 2006, 2007, 2008, 2009, 2010 QLogic Corporation.
4 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 /* cut down ridiculously long IB macro names */
38 #define OP(x) IB_OPCODE_UC_##x
41 * qib_make_uc_req - construct a request packet (SEND, RDMA write)
42 * @qp: a pointer to the QP
44 * Return 1 if constructed; otherwise, return 0.
46 int qib_make_uc_req(struct qib_qp
*qp
)
48 struct qib_other_headers
*ohdr
;
57 spin_lock_irqsave(&qp
->s_lock
, flags
);
59 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_SEND_OK
)) {
60 if (!(ib_qib_state_ops
[qp
->state
] & QIB_FLUSH_SEND
))
62 /* We are in the error state, flush the work request. */
63 if (qp
->s_last
== qp
->s_head
)
65 /* If DMAs are in progress, we can't flush immediately. */
66 if (atomic_read(&qp
->s_dma_busy
)) {
67 qp
->s_flags
|= QIB_S_WAIT_DMA
;
70 wqe
= get_swqe_ptr(qp
, qp
->s_last
);
71 qib_send_complete(qp
, wqe
, IB_WC_WR_FLUSH_ERR
);
75 ohdr
= &qp
->s_hdr
->u
.oth
;
76 if (qp
->remote_ah_attr
.ah_flags
& IB_AH_GRH
)
77 ohdr
= &qp
->s_hdr
->u
.l
.oth
;
79 /* header size in 32-bit words LRH+BTH = (8+12)/4. */
83 /* Get the next send request. */
84 wqe
= get_swqe_ptr(qp
, qp
->s_cur
);
86 switch (qp
->s_state
) {
88 if (!(ib_qib_state_ops
[qp
->state
] &
89 QIB_PROCESS_NEXT_SEND_OK
))
91 /* Check if send work queue is empty. */
92 if (qp
->s_cur
== qp
->s_head
)
95 * Start a new request.
97 wqe
->psn
= qp
->s_next_psn
;
98 qp
->s_psn
= qp
->s_next_psn
;
99 qp
->s_sge
.sge
= wqe
->sg_list
[0];
100 qp
->s_sge
.sg_list
= wqe
->sg_list
+ 1;
101 qp
->s_sge
.num_sge
= wqe
->wr
.num_sge
;
102 qp
->s_sge
.total_len
= wqe
->length
;
105 switch (wqe
->wr
.opcode
) {
107 case IB_WR_SEND_WITH_IMM
:
109 qp
->s_state
= OP(SEND_FIRST
);
113 if (wqe
->wr
.opcode
== IB_WR_SEND
)
114 qp
->s_state
= OP(SEND_ONLY
);
117 OP(SEND_ONLY_WITH_IMMEDIATE
);
118 /* Immediate data comes after the BTH */
119 ohdr
->u
.imm_data
= wqe
->wr
.ex
.imm_data
;
122 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
123 bth0
|= IB_BTH_SOLICITED
;
125 if (++qp
->s_cur
>= qp
->s_size
)
129 case IB_WR_RDMA_WRITE
:
130 case IB_WR_RDMA_WRITE_WITH_IMM
:
131 ohdr
->u
.rc
.reth
.vaddr
=
132 cpu_to_be64(wqe
->wr
.wr
.rdma
.remote_addr
);
133 ohdr
->u
.rc
.reth
.rkey
=
134 cpu_to_be32(wqe
->wr
.wr
.rdma
.rkey
);
135 ohdr
->u
.rc
.reth
.length
= cpu_to_be32(len
);
136 hwords
+= sizeof(struct ib_reth
) / 4;
138 qp
->s_state
= OP(RDMA_WRITE_FIRST
);
142 if (wqe
->wr
.opcode
== IB_WR_RDMA_WRITE
)
143 qp
->s_state
= OP(RDMA_WRITE_ONLY
);
146 OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
);
147 /* Immediate data comes after the RETH */
148 ohdr
->u
.rc
.imm_data
= wqe
->wr
.ex
.imm_data
;
150 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
151 bth0
|= IB_BTH_SOLICITED
;
154 if (++qp
->s_cur
>= qp
->s_size
)
164 qp
->s_state
= OP(SEND_MIDDLE
);
166 case OP(SEND_MIDDLE
):
172 if (wqe
->wr
.opcode
== IB_WR_SEND
)
173 qp
->s_state
= OP(SEND_LAST
);
175 qp
->s_state
= OP(SEND_LAST_WITH_IMMEDIATE
);
176 /* Immediate data comes after the BTH */
177 ohdr
->u
.imm_data
= wqe
->wr
.ex
.imm_data
;
180 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
181 bth0
|= IB_BTH_SOLICITED
;
183 if (++qp
->s_cur
>= qp
->s_size
)
187 case OP(RDMA_WRITE_FIRST
):
188 qp
->s_state
= OP(RDMA_WRITE_MIDDLE
);
190 case OP(RDMA_WRITE_MIDDLE
):
196 if (wqe
->wr
.opcode
== IB_WR_RDMA_WRITE
)
197 qp
->s_state
= OP(RDMA_WRITE_LAST
);
200 OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
);
201 /* Immediate data comes after the BTH */
202 ohdr
->u
.imm_data
= wqe
->wr
.ex
.imm_data
;
204 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
205 bth0
|= IB_BTH_SOLICITED
;
208 if (++qp
->s_cur
>= qp
->s_size
)
213 qp
->s_hdrwords
= hwords
;
214 qp
->s_cur_sge
= &qp
->s_sge
;
215 qp
->s_cur_size
= len
;
216 qib_make_ruc_header(qp
, ohdr
, bth0
| (qp
->s_state
<< 24),
217 qp
->s_next_psn
++ & QIB_PSN_MASK
);
223 qp
->s_flags
&= ~QIB_S_BUSY
;
225 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
230 * qib_uc_rcv - handle an incoming UC packet
231 * @ibp: the port the packet came in on
232 * @hdr: the header of the packet
233 * @has_grh: true if the packet has a GRH
234 * @data: the packet data
235 * @tlen: the length of the packet
236 * @qp: the QP for this packet.
238 * This is called from qib_qp_rcv() to process an incoming UC packet
240 * Called at interrupt level.
242 void qib_uc_rcv(struct qib_ibport
*ibp
, struct qib_ib_header
*hdr
,
243 int has_grh
, void *data
, u32 tlen
, struct qib_qp
*qp
)
245 struct qib_other_headers
*ohdr
;
252 struct ib_reth
*reth
;
258 hdrsize
= 8 + 12; /* LRH + BTH */
260 ohdr
= &hdr
->u
.l
.oth
;
261 hdrsize
= 8 + 40 + 12; /* LRH + GRH + BTH */
264 opcode
= be32_to_cpu(ohdr
->bth
[0]);
265 if (qib_ruc_check_hdr(ibp
, hdr
, has_grh
, qp
, opcode
))
268 psn
= be32_to_cpu(ohdr
->bth
[2]);
271 /* Compare the PSN verses the expected PSN. */
272 if (unlikely(qib_cmp24(psn
, qp
->r_psn
) != 0)) {
274 * Handle a sequence error.
275 * Silently drop any current message.
279 if (qp
->r_state
== OP(SEND_FIRST
) ||
280 qp
->r_state
== OP(SEND_MIDDLE
)) {
281 set_bit(QIB_R_REWIND_SGE
, &qp
->r_aflags
);
282 qp
->r_sge
.num_sge
= 0;
284 qib_put_ss(&qp
->r_sge
);
285 qp
->r_state
= OP(SEND_LAST
);
289 case OP(SEND_ONLY_WITH_IMMEDIATE
):
292 case OP(RDMA_WRITE_FIRST
):
293 case OP(RDMA_WRITE_ONLY
):
294 case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
):
302 /* Check for opcode sequence errors. */
303 switch (qp
->r_state
) {
305 case OP(SEND_MIDDLE
):
306 if (opcode
== OP(SEND_MIDDLE
) ||
307 opcode
== OP(SEND_LAST
) ||
308 opcode
== OP(SEND_LAST_WITH_IMMEDIATE
))
312 case OP(RDMA_WRITE_FIRST
):
313 case OP(RDMA_WRITE_MIDDLE
):
314 if (opcode
== OP(RDMA_WRITE_MIDDLE
) ||
315 opcode
== OP(RDMA_WRITE_LAST
) ||
316 opcode
== OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
))
321 if (opcode
== OP(SEND_FIRST
) ||
322 opcode
== OP(SEND_ONLY
) ||
323 opcode
== OP(SEND_ONLY_WITH_IMMEDIATE
) ||
324 opcode
== OP(RDMA_WRITE_FIRST
) ||
325 opcode
== OP(RDMA_WRITE_ONLY
) ||
326 opcode
== OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
))
331 if (qp
->state
== IB_QPS_RTR
&& !(qp
->r_flags
& QIB_R_COMM_EST
)) {
332 qp
->r_flags
|= QIB_R_COMM_EST
;
333 if (qp
->ibqp
.event_handler
) {
336 ev
.device
= qp
->ibqp
.device
;
337 ev
.element
.qp
= &qp
->ibqp
;
338 ev
.event
= IB_EVENT_COMM_EST
;
339 qp
->ibqp
.event_handler(&ev
, qp
->ibqp
.qp_context
);
343 /* OK, process the packet. */
347 case OP(SEND_ONLY_WITH_IMMEDIATE
):
349 if (test_and_clear_bit(QIB_R_REWIND_SGE
, &qp
->r_aflags
))
350 qp
->r_sge
= qp
->s_rdma_read_sge
;
352 ret
= qib_get_rwqe(qp
, 0);
358 * qp->s_rdma_read_sge will be the owner
359 * of the mr references.
361 qp
->s_rdma_read_sge
= qp
->r_sge
;
364 if (opcode
== OP(SEND_ONLY
))
365 goto no_immediate_data
;
366 else if (opcode
== OP(SEND_ONLY_WITH_IMMEDIATE
))
369 case OP(SEND_MIDDLE
):
370 /* Check for invalid length PMTU or posted rwqe len. */
371 if (unlikely(tlen
!= (hdrsize
+ pmtu
+ 4)))
373 qp
->r_rcv_len
+= pmtu
;
374 if (unlikely(qp
->r_rcv_len
> qp
->r_len
))
376 qib_copy_sge(&qp
->r_sge
, data
, pmtu
, 0);
379 case OP(SEND_LAST_WITH_IMMEDIATE
):
381 wc
.ex
.imm_data
= ohdr
->u
.imm_data
;
383 wc
.wc_flags
= IB_WC_WITH_IMM
;
390 /* Get the number of bytes the message was padded by. */
391 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
392 /* Check for invalid length. */
393 /* XXX LAST len should be >= 1 */
394 if (unlikely(tlen
< (hdrsize
+ pad
+ 4)))
396 /* Don't count the CRC. */
397 tlen
-= (hdrsize
+ pad
+ 4);
398 wc
.byte_len
= tlen
+ qp
->r_rcv_len
;
399 if (unlikely(wc
.byte_len
> qp
->r_len
))
401 wc
.opcode
= IB_WC_RECV
;
402 qib_copy_sge(&qp
->r_sge
, data
, tlen
, 0);
403 qib_put_ss(&qp
->s_rdma_read_sge
);
405 wc
.wr_id
= qp
->r_wr_id
;
406 wc
.status
= IB_WC_SUCCESS
;
408 wc
.src_qp
= qp
->remote_qpn
;
409 wc
.slid
= qp
->remote_ah_attr
.dlid
;
410 wc
.sl
= qp
->remote_ah_attr
.sl
;
411 /* zero fields that are N/A */
414 wc
.dlid_path_bits
= 0;
416 /* Signal completion event if the solicited bit is set. */
417 qib_cq_enter(to_icq(qp
->ibqp
.recv_cq
), &wc
,
419 cpu_to_be32(IB_BTH_SOLICITED
)) != 0);
422 case OP(RDMA_WRITE_FIRST
):
423 case OP(RDMA_WRITE_ONLY
):
424 case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
): /* consume RWQE */
426 if (unlikely(!(qp
->qp_access_flags
&
427 IB_ACCESS_REMOTE_WRITE
))) {
430 reth
= &ohdr
->u
.rc
.reth
;
431 hdrsize
+= sizeof(*reth
);
432 qp
->r_len
= be32_to_cpu(reth
->length
);
434 qp
->r_sge
.sg_list
= NULL
;
435 if (qp
->r_len
!= 0) {
436 u32 rkey
= be32_to_cpu(reth
->rkey
);
437 u64 vaddr
= be64_to_cpu(reth
->vaddr
);
441 ok
= qib_rkey_ok(qp
, &qp
->r_sge
.sge
, qp
->r_len
,
442 vaddr
, rkey
, IB_ACCESS_REMOTE_WRITE
);
445 qp
->r_sge
.num_sge
= 1;
447 qp
->r_sge
.num_sge
= 0;
448 qp
->r_sge
.sge
.mr
= NULL
;
449 qp
->r_sge
.sge
.vaddr
= NULL
;
450 qp
->r_sge
.sge
.length
= 0;
451 qp
->r_sge
.sge
.sge_length
= 0;
453 if (opcode
== OP(RDMA_WRITE_ONLY
))
455 else if (opcode
== OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
)) {
456 wc
.ex
.imm_data
= ohdr
->u
.rc
.imm_data
;
460 case OP(RDMA_WRITE_MIDDLE
):
461 /* Check for invalid length PMTU or posted rwqe len. */
462 if (unlikely(tlen
!= (hdrsize
+ pmtu
+ 4)))
464 qp
->r_rcv_len
+= pmtu
;
465 if (unlikely(qp
->r_rcv_len
> qp
->r_len
))
467 qib_copy_sge(&qp
->r_sge
, data
, pmtu
, 1);
470 case OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
):
471 wc
.ex
.imm_data
= ohdr
->u
.imm_data
;
474 wc
.wc_flags
= IB_WC_WITH_IMM
;
476 /* Get the number of bytes the message was padded by. */
477 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
478 /* Check for invalid length. */
479 /* XXX LAST len should be >= 1 */
480 if (unlikely(tlen
< (hdrsize
+ pad
+ 4)))
482 /* Don't count the CRC. */
483 tlen
-= (hdrsize
+ pad
+ 4);
484 if (unlikely(tlen
+ qp
->r_rcv_len
!= qp
->r_len
))
486 if (test_and_clear_bit(QIB_R_REWIND_SGE
, &qp
->r_aflags
))
487 qib_put_ss(&qp
->s_rdma_read_sge
);
489 ret
= qib_get_rwqe(qp
, 1);
495 wc
.byte_len
= qp
->r_len
;
496 wc
.opcode
= IB_WC_RECV_RDMA_WITH_IMM
;
497 qib_copy_sge(&qp
->r_sge
, data
, tlen
, 1);
498 qib_put_ss(&qp
->r_sge
);
501 case OP(RDMA_WRITE_LAST
):
503 /* Get the number of bytes the message was padded by. */
504 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
505 /* Check for invalid length. */
506 /* XXX LAST len should be >= 1 */
507 if (unlikely(tlen
< (hdrsize
+ pad
+ 4)))
509 /* Don't count the CRC. */
510 tlen
-= (hdrsize
+ pad
+ 4);
511 if (unlikely(tlen
+ qp
->r_rcv_len
!= qp
->r_len
))
513 qib_copy_sge(&qp
->r_sge
, data
, tlen
, 1);
514 qib_put_ss(&qp
->r_sge
);
518 /* Drop packet for unknown opcodes. */
522 qp
->r_state
= opcode
;
526 set_bit(QIB_R_REWIND_SGE
, &qp
->r_aflags
);
527 qp
->r_sge
.num_sge
= 0;
533 qib_rc_error(qp
, IB_WC_LOC_QP_OP_ERR
);