2 * Copyright (c) 2006, 2007, 2008, 2009 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38 /* cut down ridiculously long IB macro names */
39 #define OP(x) IB_OPCODE_RC_##x
41 static void rc_timeout(unsigned long arg
);
43 static u32
restart_sge(struct qib_sge_state
*ss
, struct qib_swqe
*wqe
,
48 len
= ((psn
- wqe
->psn
) & QIB_PSN_MASK
) * pmtu
;
49 ss
->sge
= wqe
->sg_list
[0];
50 ss
->sg_list
= wqe
->sg_list
+ 1;
51 ss
->num_sge
= wqe
->wr
.num_sge
;
52 ss
->total_len
= wqe
->length
;
53 qib_skip_sge(ss
, len
, 0);
54 return wqe
->length
- len
;
57 static void start_timer(struct qib_qp
*qp
)
59 qp
->s_flags
|= QIB_S_TIMER
;
60 qp
->s_timer
.function
= rc_timeout
;
61 /* 4.096 usec. * (1 << qp->timeout) */
62 qp
->s_timer
.expires
= jiffies
+
63 usecs_to_jiffies((4096UL * (1UL << qp
->timeout
)) / 1000UL);
64 add_timer(&qp
->s_timer
);
68 * qib_make_rc_ack - construct a response packet (ACK, NAK, or RDMA read)
69 * @dev: the device for this QP
70 * @qp: a pointer to the QP
71 * @ohdr: a pointer to the IB header being constructed
74 * Return 1 if constructed; otherwise, return 0.
75 * Note that we are in the responder's side of the QP context.
76 * Note the QP s_lock must be held.
78 static int qib_make_rc_ack(struct qib_ibdev
*dev
, struct qib_qp
*qp
,
79 struct qib_other_headers
*ohdr
, u32 pmtu
)
81 struct qib_ack_entry
*e
;
87 /* Don't send an ACK if we aren't supposed to. */
88 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
))
91 /* header size in 32-bit words LRH+BTH = (8+12)/4. */
94 switch (qp
->s_ack_state
) {
95 case OP(RDMA_READ_RESPONSE_LAST
):
96 case OP(RDMA_READ_RESPONSE_ONLY
):
97 e
= &qp
->s_ack_queue
[qp
->s_tail_ack_queue
];
99 atomic_dec(&e
->rdma_sge
.mr
->refcount
);
100 e
->rdma_sge
.mr
= NULL
;
103 case OP(ATOMIC_ACKNOWLEDGE
):
105 * We can increment the tail pointer now that the last
106 * response has been sent instead of only being
109 if (++qp
->s_tail_ack_queue
> QIB_MAX_RDMA_ATOMIC
)
110 qp
->s_tail_ack_queue
= 0;
113 case OP(ACKNOWLEDGE
):
114 /* Check for no next entry in the queue. */
115 if (qp
->r_head_ack_queue
== qp
->s_tail_ack_queue
) {
116 if (qp
->s_flags
& QIB_S_ACK_PENDING
)
121 e
= &qp
->s_ack_queue
[qp
->s_tail_ack_queue
];
122 if (e
->opcode
== OP(RDMA_READ_REQUEST
)) {
124 * If a RDMA read response is being resent and
125 * we haven't seen the duplicate request yet,
126 * then stop sending the remaining responses the
127 * responder has seen until the requester resends it.
129 len
= e
->rdma_sge
.sge_length
;
130 if (len
&& !e
->rdma_sge
.mr
) {
131 qp
->s_tail_ack_queue
= qp
->r_head_ack_queue
;
134 /* Copy SGE state in case we need to resend */
135 qp
->s_rdma_mr
= e
->rdma_sge
.mr
;
137 atomic_inc(&qp
->s_rdma_mr
->refcount
);
138 qp
->s_ack_rdma_sge
.sge
= e
->rdma_sge
;
139 qp
->s_ack_rdma_sge
.num_sge
= 1;
140 qp
->s_cur_sge
= &qp
->s_ack_rdma_sge
;
143 qp
->s_ack_state
= OP(RDMA_READ_RESPONSE_FIRST
);
145 qp
->s_ack_state
= OP(RDMA_READ_RESPONSE_ONLY
);
148 ohdr
->u
.aeth
= qib_compute_aeth(qp
);
150 qp
->s_ack_rdma_psn
= e
->psn
;
151 bth2
= qp
->s_ack_rdma_psn
++ & QIB_PSN_MASK
;
153 /* COMPARE_SWAP or FETCH_ADD */
154 qp
->s_cur_sge
= NULL
;
156 qp
->s_ack_state
= OP(ATOMIC_ACKNOWLEDGE
);
157 ohdr
->u
.at
.aeth
= qib_compute_aeth(qp
);
158 ohdr
->u
.at
.atomic_ack_eth
[0] =
159 cpu_to_be32(e
->atomic_data
>> 32);
160 ohdr
->u
.at
.atomic_ack_eth
[1] =
161 cpu_to_be32(e
->atomic_data
);
162 hwords
+= sizeof(ohdr
->u
.at
) / sizeof(u32
);
163 bth2
= e
->psn
& QIB_PSN_MASK
;
166 bth0
= qp
->s_ack_state
<< 24;
169 case OP(RDMA_READ_RESPONSE_FIRST
):
170 qp
->s_ack_state
= OP(RDMA_READ_RESPONSE_MIDDLE
);
172 case OP(RDMA_READ_RESPONSE_MIDDLE
):
173 qp
->s_cur_sge
= &qp
->s_ack_rdma_sge
;
174 qp
->s_rdma_mr
= qp
->s_ack_rdma_sge
.sge
.mr
;
176 atomic_inc(&qp
->s_rdma_mr
->refcount
);
177 len
= qp
->s_ack_rdma_sge
.sge
.sge_length
;
181 ohdr
->u
.aeth
= qib_compute_aeth(qp
);
183 qp
->s_ack_state
= OP(RDMA_READ_RESPONSE_LAST
);
184 e
= &qp
->s_ack_queue
[qp
->s_tail_ack_queue
];
187 bth0
= qp
->s_ack_state
<< 24;
188 bth2
= qp
->s_ack_rdma_psn
++ & QIB_PSN_MASK
;
194 * Send a regular ACK.
195 * Set the s_ack_state so we wait until after sending
196 * the ACK before setting s_ack_state to ACKNOWLEDGE
199 qp
->s_ack_state
= OP(SEND_ONLY
);
200 qp
->s_flags
&= ~QIB_S_ACK_PENDING
;
201 qp
->s_cur_sge
= NULL
;
204 cpu_to_be32((qp
->r_msn
& QIB_MSN_MASK
) |
206 QIB_AETH_CREDIT_SHIFT
));
208 ohdr
->u
.aeth
= qib_compute_aeth(qp
);
211 bth0
= OP(ACKNOWLEDGE
) << 24;
212 bth2
= qp
->s_ack_psn
& QIB_PSN_MASK
;
214 qp
->s_rdma_ack_cnt
++;
215 qp
->s_hdrwords
= hwords
;
216 qp
->s_cur_size
= len
;
217 qib_make_ruc_header(qp
, ohdr
, bth0
, bth2
);
221 qp
->s_ack_state
= OP(ACKNOWLEDGE
);
222 qp
->s_flags
&= ~(QIB_S_RESP_PENDING
| QIB_S_ACK_PENDING
);
227 * qib_make_rc_req - construct a request packet (SEND, RDMA r/w, ATOMIC)
228 * @qp: a pointer to the QP
230 * Return 1 if constructed; otherwise, return 0.
232 int qib_make_rc_req(struct qib_qp
*qp
)
234 struct qib_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
235 struct qib_other_headers
*ohdr
;
236 struct qib_sge_state
*ss
;
237 struct qib_swqe
*wqe
;
242 u32 pmtu
= ib_mtu_enum_to_int(qp
->path_mtu
);
248 ohdr
= &qp
->s_hdr
.u
.oth
;
249 if (qp
->remote_ah_attr
.ah_flags
& IB_AH_GRH
)
250 ohdr
= &qp
->s_hdr
.u
.l
.oth
;
253 * The lock is needed to synchronize between the sending tasklet,
254 * the receive interrupt handler, and timeout resends.
256 spin_lock_irqsave(&qp
->s_lock
, flags
);
258 /* Sending responses has higher priority over sending requests. */
259 if ((qp
->s_flags
& QIB_S_RESP_PENDING
) &&
260 qib_make_rc_ack(dev
, qp
, ohdr
, pmtu
))
263 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_SEND_OK
)) {
264 if (!(ib_qib_state_ops
[qp
->state
] & QIB_FLUSH_SEND
))
266 /* We are in the error state, flush the work request. */
267 if (qp
->s_last
== qp
->s_head
)
269 /* If DMAs are in progress, we can't flush immediately. */
270 if (atomic_read(&qp
->s_dma_busy
)) {
271 qp
->s_flags
|= QIB_S_WAIT_DMA
;
274 wqe
= get_swqe_ptr(qp
, qp
->s_last
);
275 while (qp
->s_last
!= qp
->s_acked
) {
276 qib_send_complete(qp
, wqe
, IB_WC_SUCCESS
);
277 if (++qp
->s_last
>= qp
->s_size
)
279 wqe
= get_swqe_ptr(qp
, qp
->s_last
);
281 qib_send_complete(qp
, wqe
, IB_WC_WR_FLUSH_ERR
);
285 if (qp
->s_flags
& (QIB_S_WAIT_RNR
| QIB_S_WAIT_ACK
))
288 if (qib_cmp24(qp
->s_psn
, qp
->s_sending_hpsn
) <= 0) {
289 if (qib_cmp24(qp
->s_sending_psn
, qp
->s_sending_hpsn
) <= 0) {
290 qp
->s_flags
|= QIB_S_WAIT_PSN
;
293 qp
->s_sending_psn
= qp
->s_psn
;
294 qp
->s_sending_hpsn
= qp
->s_psn
- 1;
297 /* header size in 32-bit words LRH+BTH = (8+12)/4. */
301 /* Send a request. */
302 wqe
= get_swqe_ptr(qp
, qp
->s_cur
);
303 switch (qp
->s_state
) {
305 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_NEXT_SEND_OK
))
308 * Resend an old request or start a new one.
310 * We keep track of the current SWQE so that
311 * we don't reset the "furthest progress" state
312 * if we need to back up.
315 if (qp
->s_cur
== qp
->s_tail
) {
316 /* Check if send work queue is empty. */
317 if (qp
->s_tail
== qp
->s_head
)
320 * If a fence is requested, wait for previous
321 * RDMA read and atomic operations to finish.
323 if ((wqe
->wr
.send_flags
& IB_SEND_FENCE
) &&
324 qp
->s_num_rd_atomic
) {
325 qp
->s_flags
|= QIB_S_WAIT_FENCE
;
328 wqe
->psn
= qp
->s_next_psn
;
332 * Note that we have to be careful not to modify the
333 * original work request since we may need to resend
338 bth2
= qp
->s_psn
& QIB_PSN_MASK
;
339 switch (wqe
->wr
.opcode
) {
341 case IB_WR_SEND_WITH_IMM
:
342 /* If no credit, return. */
343 if (!(qp
->s_flags
& QIB_S_UNLIMITED_CREDIT
) &&
344 qib_cmp24(wqe
->ssn
, qp
->s_lsn
+ 1) > 0) {
345 qp
->s_flags
|= QIB_S_WAIT_SSN_CREDIT
;
348 wqe
->lpsn
= wqe
->psn
;
350 wqe
->lpsn
+= (len
- 1) / pmtu
;
351 qp
->s_state
= OP(SEND_FIRST
);
355 if (wqe
->wr
.opcode
== IB_WR_SEND
)
356 qp
->s_state
= OP(SEND_ONLY
);
358 qp
->s_state
= OP(SEND_ONLY_WITH_IMMEDIATE
);
359 /* Immediate data comes after the BTH */
360 ohdr
->u
.imm_data
= wqe
->wr
.ex
.imm_data
;
363 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
364 bth0
|= IB_BTH_SOLICITED
;
365 bth2
|= IB_BTH_REQ_ACK
;
366 if (++qp
->s_cur
== qp
->s_size
)
370 case IB_WR_RDMA_WRITE
:
371 if (newreq
&& !(qp
->s_flags
& QIB_S_UNLIMITED_CREDIT
))
374 case IB_WR_RDMA_WRITE_WITH_IMM
:
375 /* If no credit, return. */
376 if (!(qp
->s_flags
& QIB_S_UNLIMITED_CREDIT
) &&
377 qib_cmp24(wqe
->ssn
, qp
->s_lsn
+ 1) > 0) {
378 qp
->s_flags
|= QIB_S_WAIT_SSN_CREDIT
;
381 ohdr
->u
.rc
.reth
.vaddr
=
382 cpu_to_be64(wqe
->wr
.wr
.rdma
.remote_addr
);
383 ohdr
->u
.rc
.reth
.rkey
=
384 cpu_to_be32(wqe
->wr
.wr
.rdma
.rkey
);
385 ohdr
->u
.rc
.reth
.length
= cpu_to_be32(len
);
386 hwords
+= sizeof(struct ib_reth
) / sizeof(u32
);
387 wqe
->lpsn
= wqe
->psn
;
389 wqe
->lpsn
+= (len
- 1) / pmtu
;
390 qp
->s_state
= OP(RDMA_WRITE_FIRST
);
394 if (wqe
->wr
.opcode
== IB_WR_RDMA_WRITE
)
395 qp
->s_state
= OP(RDMA_WRITE_ONLY
);
398 OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
);
399 /* Immediate data comes after RETH */
400 ohdr
->u
.rc
.imm_data
= wqe
->wr
.ex
.imm_data
;
402 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
403 bth0
|= IB_BTH_SOLICITED
;
405 bth2
|= IB_BTH_REQ_ACK
;
406 if (++qp
->s_cur
== qp
->s_size
)
410 case IB_WR_RDMA_READ
:
412 * Don't allow more operations to be started
413 * than the QP limits allow.
416 if (qp
->s_num_rd_atomic
>=
417 qp
->s_max_rd_atomic
) {
418 qp
->s_flags
|= QIB_S_WAIT_RDMAR
;
421 qp
->s_num_rd_atomic
++;
422 if (!(qp
->s_flags
& QIB_S_UNLIMITED_CREDIT
))
425 * Adjust s_next_psn to count the
426 * expected number of responses.
429 qp
->s_next_psn
+= (len
- 1) / pmtu
;
430 wqe
->lpsn
= qp
->s_next_psn
++;
432 ohdr
->u
.rc
.reth
.vaddr
=
433 cpu_to_be64(wqe
->wr
.wr
.rdma
.remote_addr
);
434 ohdr
->u
.rc
.reth
.rkey
=
435 cpu_to_be32(wqe
->wr
.wr
.rdma
.rkey
);
436 ohdr
->u
.rc
.reth
.length
= cpu_to_be32(len
);
437 qp
->s_state
= OP(RDMA_READ_REQUEST
);
438 hwords
+= sizeof(ohdr
->u
.rc
.reth
) / sizeof(u32
);
441 bth2
|= IB_BTH_REQ_ACK
;
442 if (++qp
->s_cur
== qp
->s_size
)
446 case IB_WR_ATOMIC_CMP_AND_SWP
:
447 case IB_WR_ATOMIC_FETCH_AND_ADD
:
449 * Don't allow more operations to be started
450 * than the QP limits allow.
453 if (qp
->s_num_rd_atomic
>=
454 qp
->s_max_rd_atomic
) {
455 qp
->s_flags
|= QIB_S_WAIT_RDMAR
;
458 qp
->s_num_rd_atomic
++;
459 if (!(qp
->s_flags
& QIB_S_UNLIMITED_CREDIT
))
461 wqe
->lpsn
= wqe
->psn
;
463 if (wqe
->wr
.opcode
== IB_WR_ATOMIC_CMP_AND_SWP
) {
464 qp
->s_state
= OP(COMPARE_SWAP
);
465 ohdr
->u
.atomic_eth
.swap_data
= cpu_to_be64(
466 wqe
->wr
.wr
.atomic
.swap
);
467 ohdr
->u
.atomic_eth
.compare_data
= cpu_to_be64(
468 wqe
->wr
.wr
.atomic
.compare_add
);
470 qp
->s_state
= OP(FETCH_ADD
);
471 ohdr
->u
.atomic_eth
.swap_data
= cpu_to_be64(
472 wqe
->wr
.wr
.atomic
.compare_add
);
473 ohdr
->u
.atomic_eth
.compare_data
= 0;
475 ohdr
->u
.atomic_eth
.vaddr
[0] = cpu_to_be32(
476 wqe
->wr
.wr
.atomic
.remote_addr
>> 32);
477 ohdr
->u
.atomic_eth
.vaddr
[1] = cpu_to_be32(
478 wqe
->wr
.wr
.atomic
.remote_addr
);
479 ohdr
->u
.atomic_eth
.rkey
= cpu_to_be32(
480 wqe
->wr
.wr
.atomic
.rkey
);
481 hwords
+= sizeof(struct ib_atomic_eth
) / sizeof(u32
);
484 bth2
|= IB_BTH_REQ_ACK
;
485 if (++qp
->s_cur
== qp
->s_size
)
492 qp
->s_sge
.sge
= wqe
->sg_list
[0];
493 qp
->s_sge
.sg_list
= wqe
->sg_list
+ 1;
494 qp
->s_sge
.num_sge
= wqe
->wr
.num_sge
;
495 qp
->s_sge
.total_len
= wqe
->length
;
496 qp
->s_len
= wqe
->length
;
499 if (qp
->s_tail
>= qp
->s_size
)
502 if (wqe
->wr
.opcode
== IB_WR_RDMA_READ
)
503 qp
->s_psn
= wqe
->lpsn
+ 1;
506 if (qib_cmp24(qp
->s_psn
, qp
->s_next_psn
) > 0)
507 qp
->s_next_psn
= qp
->s_psn
;
511 case OP(RDMA_READ_RESPONSE_FIRST
):
513 * qp->s_state is normally set to the opcode of the
514 * last packet constructed for new requests and therefore
515 * is never set to RDMA read response.
516 * RDMA_READ_RESPONSE_FIRST is used by the ACK processing
517 * thread to indicate a SEND needs to be restarted from an
518 * earlier PSN without interferring with the sending thread.
519 * See qib_restart_rc().
521 qp
->s_len
= restart_sge(&qp
->s_sge
, wqe
, qp
->s_psn
, pmtu
);
524 qp
->s_state
= OP(SEND_MIDDLE
);
526 case OP(SEND_MIDDLE
):
527 bth2
= qp
->s_psn
++ & QIB_PSN_MASK
;
528 if (qib_cmp24(qp
->s_psn
, qp
->s_next_psn
) > 0)
529 qp
->s_next_psn
= qp
->s_psn
;
536 if (wqe
->wr
.opcode
== IB_WR_SEND
)
537 qp
->s_state
= OP(SEND_LAST
);
539 qp
->s_state
= OP(SEND_LAST_WITH_IMMEDIATE
);
540 /* Immediate data comes after the BTH */
541 ohdr
->u
.imm_data
= wqe
->wr
.ex
.imm_data
;
544 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
545 bth0
|= IB_BTH_SOLICITED
;
546 bth2
|= IB_BTH_REQ_ACK
;
548 if (qp
->s_cur
>= qp
->s_size
)
552 case OP(RDMA_READ_RESPONSE_LAST
):
554 * qp->s_state is normally set to the opcode of the
555 * last packet constructed for new requests and therefore
556 * is never set to RDMA read response.
557 * RDMA_READ_RESPONSE_LAST is used by the ACK processing
558 * thread to indicate a RDMA write needs to be restarted from
559 * an earlier PSN without interferring with the sending thread.
560 * See qib_restart_rc().
562 qp
->s_len
= restart_sge(&qp
->s_sge
, wqe
, qp
->s_psn
, pmtu
);
564 case OP(RDMA_WRITE_FIRST
):
565 qp
->s_state
= OP(RDMA_WRITE_MIDDLE
);
567 case OP(RDMA_WRITE_MIDDLE
):
568 bth2
= qp
->s_psn
++ & QIB_PSN_MASK
;
569 if (qib_cmp24(qp
->s_psn
, qp
->s_next_psn
) > 0)
570 qp
->s_next_psn
= qp
->s_psn
;
577 if (wqe
->wr
.opcode
== IB_WR_RDMA_WRITE
)
578 qp
->s_state
= OP(RDMA_WRITE_LAST
);
580 qp
->s_state
= OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
);
581 /* Immediate data comes after the BTH */
582 ohdr
->u
.imm_data
= wqe
->wr
.ex
.imm_data
;
584 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
585 bth0
|= IB_BTH_SOLICITED
;
587 bth2
|= IB_BTH_REQ_ACK
;
589 if (qp
->s_cur
>= qp
->s_size
)
593 case OP(RDMA_READ_RESPONSE_MIDDLE
):
595 * qp->s_state is normally set to the opcode of the
596 * last packet constructed for new requests and therefore
597 * is never set to RDMA read response.
598 * RDMA_READ_RESPONSE_MIDDLE is used by the ACK processing
599 * thread to indicate a RDMA read needs to be restarted from
600 * an earlier PSN without interferring with the sending thread.
601 * See qib_restart_rc().
603 len
= ((qp
->s_psn
- wqe
->psn
) & QIB_PSN_MASK
) * pmtu
;
604 ohdr
->u
.rc
.reth
.vaddr
=
605 cpu_to_be64(wqe
->wr
.wr
.rdma
.remote_addr
+ len
);
606 ohdr
->u
.rc
.reth
.rkey
=
607 cpu_to_be32(wqe
->wr
.wr
.rdma
.rkey
);
608 ohdr
->u
.rc
.reth
.length
= cpu_to_be32(wqe
->length
- len
);
609 qp
->s_state
= OP(RDMA_READ_REQUEST
);
610 hwords
+= sizeof(ohdr
->u
.rc
.reth
) / sizeof(u32
);
611 bth2
= (qp
->s_psn
& QIB_PSN_MASK
) | IB_BTH_REQ_ACK
;
612 qp
->s_psn
= wqe
->lpsn
+ 1;
616 if (qp
->s_cur
== qp
->s_size
)
620 qp
->s_sending_hpsn
= bth2
;
621 delta
= (((int) bth2
- (int) wqe
->psn
) << 8) >> 8;
622 if (delta
&& delta
% QIB_PSN_CREDIT
== 0)
623 bth2
|= IB_BTH_REQ_ACK
;
624 if (qp
->s_flags
& QIB_S_SEND_ONE
) {
625 qp
->s_flags
&= ~QIB_S_SEND_ONE
;
626 qp
->s_flags
|= QIB_S_WAIT_ACK
;
627 bth2
|= IB_BTH_REQ_ACK
;
630 qp
->s_hdrwords
= hwords
;
632 qp
->s_cur_size
= len
;
633 qib_make_ruc_header(qp
, ohdr
, bth0
| (qp
->s_state
<< 24), bth2
);
639 qp
->s_flags
&= ~QIB_S_BUSY
;
641 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
646 * qib_send_rc_ack - Construct an ACK packet and send it
647 * @qp: a pointer to the QP
649 * This is called from qib_rc_rcv() and qib_kreceive().
650 * Note that RDMA reads and atomics are handled in the
651 * send side QP state and tasklet.
653 void qib_send_rc_ack(struct qib_qp
*qp
)
655 struct qib_devdata
*dd
= dd_from_ibdev(qp
->ibqp
.device
);
656 struct qib_ibport
*ibp
= to_iport(qp
->ibqp
.device
, qp
->port_num
);
657 struct qib_pportdata
*ppd
= ppd_from_ibp(ibp
);
664 struct qib_ib_header hdr
;
665 struct qib_other_headers
*ohdr
;
669 spin_lock_irqsave(&qp
->s_lock
, flags
);
671 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
))
674 /* Don't send ACK or NAK if a RDMA read or atomic is pending. */
675 if ((qp
->s_flags
& QIB_S_RESP_PENDING
) || qp
->s_rdma_ack_cnt
)
678 /* Construct the header with s_lock held so APM doesn't change it. */
681 /* header size in 32-bit words LRH+BTH+AETH = (8+12+4)/4. */
683 if (unlikely(qp
->remote_ah_attr
.ah_flags
& IB_AH_GRH
)) {
684 hwords
+= qib_make_grh(ibp
, &hdr
.u
.l
.grh
,
685 &qp
->remote_ah_attr
.grh
, hwords
, 0);
689 /* read pkey_index w/o lock (its atomic) */
690 bth0
= qib_get_pkey(ibp
, qp
->s_pkey_index
) | (OP(ACKNOWLEDGE
) << 24);
691 if (qp
->s_mig_state
== IB_MIG_MIGRATED
)
692 bth0
|= IB_BTH_MIG_REQ
;
694 ohdr
->u
.aeth
= cpu_to_be32((qp
->r_msn
& QIB_MSN_MASK
) |
696 QIB_AETH_CREDIT_SHIFT
));
698 ohdr
->u
.aeth
= qib_compute_aeth(qp
);
699 lrh0
|= ibp
->sl_to_vl
[qp
->remote_ah_attr
.sl
] << 12 |
700 qp
->remote_ah_attr
.sl
<< 4;
701 hdr
.lrh
[0] = cpu_to_be16(lrh0
);
702 hdr
.lrh
[1] = cpu_to_be16(qp
->remote_ah_attr
.dlid
);
703 hdr
.lrh
[2] = cpu_to_be16(hwords
+ SIZE_OF_CRC
);
704 hdr
.lrh
[3] = cpu_to_be16(ppd
->lid
| qp
->remote_ah_attr
.src_path_bits
);
705 ohdr
->bth
[0] = cpu_to_be32(bth0
);
706 ohdr
->bth
[1] = cpu_to_be32(qp
->remote_qpn
);
707 ohdr
->bth
[2] = cpu_to_be32(qp
->r_ack_psn
& QIB_PSN_MASK
);
709 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
711 /* Don't try to send ACKs if the link isn't ACTIVE */
712 if (!(ppd
->lflags
& QIBL_LINKACTIVE
))
715 control
= dd
->f_setpbc_control(ppd
, hwords
+ SIZE_OF_CRC
,
716 qp
->s_srate
, lrh0
>> 12);
717 /* length is + 1 for the control dword */
718 pbc
= ((u64
) control
<< 32) | (hwords
+ 1);
720 piobuf
= dd
->f_getsendbuf(ppd
, pbc
, &pbufn
);
723 * We are out of PIO buffers at the moment.
724 * Pass responsibility for sending the ACK to the
725 * send tasklet so that when a PIO buffer becomes
726 * available, the ACK is sent ahead of other outgoing
729 spin_lock_irqsave(&qp
->s_lock
, flags
);
735 * We have to flush after the PBC for correctness
736 * on some cpus or WC buffer can be written out of order.
740 if (dd
->flags
& QIB_PIO_FLUSH_WC
) {
741 u32
*hdrp
= (u32
*) &hdr
;
744 qib_pio_copy(piobuf
+ 2, hdrp
, hwords
- 1);
746 __raw_writel(hdrp
[hwords
- 1], piobuf
+ hwords
+ 1);
748 qib_pio_copy(piobuf
+ 2, (u32
*) &hdr
, hwords
);
750 if (dd
->flags
& QIB_USE_SPCL_TRIG
) {
751 u32 spcl_off
= (pbufn
>= dd
->piobcnt2k
) ? 2047 : 1023;
754 __raw_writel(0xaebecede, piobuf
+ spcl_off
);
758 qib_sendbuf_done(dd
, pbufn
);
760 ibp
->n_unicast_xmit
++;
764 if (ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
) {
766 qp
->s_flags
|= QIB_S_ACK_PENDING
| QIB_S_RESP_PENDING
;
767 qp
->s_nak_state
= qp
->r_nak_state
;
768 qp
->s_ack_psn
= qp
->r_ack_psn
;
770 /* Schedule the send tasklet. */
771 qib_schedule_send(qp
);
774 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
780 * reset_psn - reset the QP state to send starting from PSN
782 * @psn: the packet sequence number to restart at
784 * This is called from qib_rc_rcv() to process an incoming RC ACK
786 * Called at interrupt level with the QP s_lock held.
788 static void reset_psn(struct qib_qp
*qp
, u32 psn
)
791 struct qib_swqe
*wqe
= get_swqe_ptr(qp
, n
);
797 * If we are starting the request from the beginning,
798 * let the normal send code handle initialization.
800 if (qib_cmp24(psn
, wqe
->psn
) <= 0) {
801 qp
->s_state
= OP(SEND_LAST
);
805 /* Find the work request opcode corresponding to the given PSN. */
806 opcode
= wqe
->wr
.opcode
;
810 if (++n
== qp
->s_size
)
814 wqe
= get_swqe_ptr(qp
, n
);
815 diff
= qib_cmp24(psn
, wqe
->psn
);
820 * If we are starting the request from the beginning,
821 * let the normal send code handle initialization.
824 qp
->s_state
= OP(SEND_LAST
);
827 opcode
= wqe
->wr
.opcode
;
831 * Set the state to restart in the middle of a request.
832 * Don't change the s_sge, s_cur_sge, or s_cur_size.
833 * See qib_make_rc_req().
837 case IB_WR_SEND_WITH_IMM
:
838 qp
->s_state
= OP(RDMA_READ_RESPONSE_FIRST
);
841 case IB_WR_RDMA_WRITE
:
842 case IB_WR_RDMA_WRITE_WITH_IMM
:
843 qp
->s_state
= OP(RDMA_READ_RESPONSE_LAST
);
846 case IB_WR_RDMA_READ
:
847 qp
->s_state
= OP(RDMA_READ_RESPONSE_MIDDLE
);
852 * This case shouldn't happen since its only
855 qp
->s_state
= OP(SEND_LAST
);
860 * Set QIB_S_WAIT_PSN as qib_rc_complete() may start the timer
861 * asynchronously before the send tasklet can get scheduled.
862 * Doing it in qib_make_rc_req() is too late.
864 if ((qib_cmp24(qp
->s_psn
, qp
->s_sending_hpsn
) <= 0) &&
865 (qib_cmp24(qp
->s_sending_psn
, qp
->s_sending_hpsn
) <= 0))
866 qp
->s_flags
|= QIB_S_WAIT_PSN
;
870 * Back up requester to resend the last un-ACKed request.
871 * The QP r_lock and s_lock should be held and interrupts disabled.
873 static void qib_restart_rc(struct qib_qp
*qp
, u32 psn
, int wait
)
875 struct qib_swqe
*wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
876 struct qib_ibport
*ibp
;
878 if (qp
->s_retry
== 0) {
879 if (qp
->s_mig_state
== IB_MIG_ARMED
) {
881 qp
->s_retry
= qp
->s_retry_cnt
;
882 } else if (qp
->s_last
== qp
->s_acked
) {
883 qib_send_complete(qp
, wqe
, IB_WC_RETRY_EXC_ERR
);
884 qib_error_qp(qp
, IB_WC_WR_FLUSH_ERR
);
886 } else /* XXX need to handle delayed completion */
891 ibp
= to_iport(qp
->ibqp
.device
, qp
->port_num
);
892 if (wqe
->wr
.opcode
== IB_WR_RDMA_READ
)
895 ibp
->n_rc_resends
+= (qp
->s_psn
- psn
) & QIB_PSN_MASK
;
897 qp
->s_flags
&= ~(QIB_S_WAIT_FENCE
| QIB_S_WAIT_RDMAR
|
898 QIB_S_WAIT_SSN_CREDIT
| QIB_S_WAIT_PSN
|
901 qp
->s_flags
|= QIB_S_SEND_ONE
;
906 * This is called from s_timer for missing responses.
908 static void rc_timeout(unsigned long arg
)
910 struct qib_qp
*qp
= (struct qib_qp
*)arg
;
911 struct qib_ibport
*ibp
;
914 spin_lock_irqsave(&qp
->r_lock
, flags
);
915 spin_lock(&qp
->s_lock
);
916 if (qp
->s_flags
& QIB_S_TIMER
) {
917 ibp
= to_iport(qp
->ibqp
.device
, qp
->port_num
);
918 ibp
->n_rc_timeouts
++;
919 qp
->s_flags
&= ~QIB_S_TIMER
;
920 del_timer(&qp
->s_timer
);
921 qib_restart_rc(qp
, qp
->s_last_psn
+ 1, 1);
922 qib_schedule_send(qp
);
924 spin_unlock(&qp
->s_lock
);
925 spin_unlock_irqrestore(&qp
->r_lock
, flags
);
929 * This is called from s_timer for RNR timeouts.
931 void qib_rc_rnr_retry(unsigned long arg
)
933 struct qib_qp
*qp
= (struct qib_qp
*)arg
;
936 spin_lock_irqsave(&qp
->s_lock
, flags
);
937 if (qp
->s_flags
& QIB_S_WAIT_RNR
) {
938 qp
->s_flags
&= ~QIB_S_WAIT_RNR
;
939 del_timer(&qp
->s_timer
);
940 qib_schedule_send(qp
);
942 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
946 * Set qp->s_sending_psn to the next PSN after the given one.
947 * This would be psn+1 except when RDMA reads are present.
949 static void reset_sending_psn(struct qib_qp
*qp
, u32 psn
)
951 struct qib_swqe
*wqe
;
954 /* Find the work request corresponding to the given PSN. */
956 wqe
= get_swqe_ptr(qp
, n
);
957 if (qib_cmp24(psn
, wqe
->lpsn
) <= 0) {
958 if (wqe
->wr
.opcode
== IB_WR_RDMA_READ
)
959 qp
->s_sending_psn
= wqe
->lpsn
+ 1;
961 qp
->s_sending_psn
= psn
+ 1;
964 if (++n
== qp
->s_size
)
972 * This should be called with the QP s_lock held and interrupts disabled.
974 void qib_rc_send_complete(struct qib_qp
*qp
, struct qib_ib_header
*hdr
)
976 struct qib_other_headers
*ohdr
;
977 struct qib_swqe
*wqe
;
983 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_OR_FLUSH_SEND
))
986 /* Find out where the BTH is */
987 if ((be16_to_cpu(hdr
->lrh
[0]) & 3) == QIB_LRH_BTH
)
990 ohdr
= &hdr
->u
.l
.oth
;
992 opcode
= be32_to_cpu(ohdr
->bth
[0]) >> 24;
993 if (opcode
>= OP(RDMA_READ_RESPONSE_FIRST
) &&
994 opcode
<= OP(ATOMIC_ACKNOWLEDGE
)) {
995 WARN_ON(!qp
->s_rdma_ack_cnt
);
996 qp
->s_rdma_ack_cnt
--;
1000 psn
= be32_to_cpu(ohdr
->bth
[2]);
1001 reset_sending_psn(qp
, psn
);
1004 * Start timer after a packet requesting an ACK has been sent and
1005 * there are still requests that haven't been acked.
1007 if ((psn
& IB_BTH_REQ_ACK
) && qp
->s_acked
!= qp
->s_tail
&&
1008 !(qp
->s_flags
& (QIB_S_TIMER
| QIB_S_WAIT_RNR
| QIB_S_WAIT_PSN
)))
1011 while (qp
->s_last
!= qp
->s_acked
) {
1012 wqe
= get_swqe_ptr(qp
, qp
->s_last
);
1013 if (qib_cmp24(wqe
->lpsn
, qp
->s_sending_psn
) >= 0 &&
1014 qib_cmp24(qp
->s_sending_psn
, qp
->s_sending_hpsn
) <= 0)
1016 for (i
= 0; i
< wqe
->wr
.num_sge
; i
++) {
1017 struct qib_sge
*sge
= &wqe
->sg_list
[i
];
1019 atomic_dec(&sge
->mr
->refcount
);
1021 /* Post a send completion queue entry if requested. */
1022 if (!(qp
->s_flags
& QIB_S_SIGNAL_REQ_WR
) ||
1023 (wqe
->wr
.send_flags
& IB_SEND_SIGNALED
)) {
1024 memset(&wc
, 0, sizeof wc
);
1025 wc
.wr_id
= wqe
->wr
.wr_id
;
1026 wc
.status
= IB_WC_SUCCESS
;
1027 wc
.opcode
= ib_qib_wc_opcode
[wqe
->wr
.opcode
];
1028 wc
.byte_len
= wqe
->length
;
1030 qib_cq_enter(to_icq(qp
->ibqp
.send_cq
), &wc
, 0);
1032 if (++qp
->s_last
>= qp
->s_size
)
1036 * If we were waiting for sends to complete before resending,
1037 * and they are now complete, restart sending.
1039 if (qp
->s_flags
& QIB_S_WAIT_PSN
&&
1040 qib_cmp24(qp
->s_sending_psn
, qp
->s_sending_hpsn
) > 0) {
1041 qp
->s_flags
&= ~QIB_S_WAIT_PSN
;
1042 qp
->s_sending_psn
= qp
->s_psn
;
1043 qp
->s_sending_hpsn
= qp
->s_psn
- 1;
1044 qib_schedule_send(qp
);
1048 static inline void update_last_psn(struct qib_qp
*qp
, u32 psn
)
1050 qp
->s_last_psn
= psn
;
1054 * Generate a SWQE completion.
1055 * This is similar to qib_send_complete but has to check to be sure
1056 * that the SGEs are not being referenced if the SWQE is being resent.
1058 static struct qib_swqe
*do_rc_completion(struct qib_qp
*qp
,
1059 struct qib_swqe
*wqe
,
1060 struct qib_ibport
*ibp
)
1066 * Don't decrement refcount and don't generate a
1067 * completion if the SWQE is being resent until the send
1070 if (qib_cmp24(wqe
->lpsn
, qp
->s_sending_psn
) < 0 ||
1071 qib_cmp24(qp
->s_sending_psn
, qp
->s_sending_hpsn
) > 0) {
1072 for (i
= 0; i
< wqe
->wr
.num_sge
; i
++) {
1073 struct qib_sge
*sge
= &wqe
->sg_list
[i
];
1075 atomic_dec(&sge
->mr
->refcount
);
1077 /* Post a send completion queue entry if requested. */
1078 if (!(qp
->s_flags
& QIB_S_SIGNAL_REQ_WR
) ||
1079 (wqe
->wr
.send_flags
& IB_SEND_SIGNALED
)) {
1080 memset(&wc
, 0, sizeof wc
);
1081 wc
.wr_id
= wqe
->wr
.wr_id
;
1082 wc
.status
= IB_WC_SUCCESS
;
1083 wc
.opcode
= ib_qib_wc_opcode
[wqe
->wr
.opcode
];
1084 wc
.byte_len
= wqe
->length
;
1086 qib_cq_enter(to_icq(qp
->ibqp
.send_cq
), &wc
, 0);
1088 if (++qp
->s_last
>= qp
->s_size
)
1091 ibp
->n_rc_delayed_comp
++;
1093 qp
->s_retry
= qp
->s_retry_cnt
;
1094 update_last_psn(qp
, wqe
->lpsn
);
1097 * If we are completing a request which is in the process of
1098 * being resent, we can stop resending it since we know the
1099 * responder has already seen it.
1101 if (qp
->s_acked
== qp
->s_cur
) {
1102 if (++qp
->s_cur
>= qp
->s_size
)
1104 qp
->s_acked
= qp
->s_cur
;
1105 wqe
= get_swqe_ptr(qp
, qp
->s_cur
);
1106 if (qp
->s_acked
!= qp
->s_tail
) {
1107 qp
->s_state
= OP(SEND_LAST
);
1108 qp
->s_psn
= wqe
->psn
;
1111 if (++qp
->s_acked
>= qp
->s_size
)
1113 if (qp
->state
== IB_QPS_SQD
&& qp
->s_acked
== qp
->s_cur
)
1115 wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
1121 * do_rc_ack - process an incoming RC ACK
1122 * @qp: the QP the ACK came in on
1123 * @psn: the packet sequence number of the ACK
1124 * @opcode: the opcode of the request that resulted in the ACK
1126 * This is called from qib_rc_rcv_resp() to process an incoming RC ACK
1128 * Called at interrupt level with the QP s_lock held.
1129 * Returns 1 if OK, 0 if current operation should be aborted (NAK).
1131 static int do_rc_ack(struct qib_qp
*qp
, u32 aeth
, u32 psn
, int opcode
,
1132 u64 val
, struct qib_ctxtdata
*rcd
)
1134 struct qib_ibport
*ibp
;
1135 enum ib_wc_status status
;
1136 struct qib_swqe
*wqe
;
1141 /* Remove QP from retry timer */
1142 if (qp
->s_flags
& (QIB_S_TIMER
| QIB_S_WAIT_RNR
)) {
1143 qp
->s_flags
&= ~(QIB_S_TIMER
| QIB_S_WAIT_RNR
);
1144 del_timer(&qp
->s_timer
);
1148 * Note that NAKs implicitly ACK outstanding SEND and RDMA write
1149 * requests and implicitly NAK RDMA read and atomic requests issued
1150 * before the NAK'ed request. The MSN won't include the NAK'ed
1151 * request but will include an ACK'ed request(s).
1156 wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
1157 ibp
= to_iport(qp
->ibqp
.device
, qp
->port_num
);
1160 * The MSN might be for a later WQE than the PSN indicates so
1161 * only complete WQEs that the PSN finishes.
1163 while ((diff
= qib_cmp24(ack_psn
, wqe
->lpsn
)) >= 0) {
1165 * RDMA_READ_RESPONSE_ONLY is a special case since
1166 * we want to generate completion events for everything
1167 * before the RDMA read, copy the data, then generate
1168 * the completion for the read.
1170 if (wqe
->wr
.opcode
== IB_WR_RDMA_READ
&&
1171 opcode
== OP(RDMA_READ_RESPONSE_ONLY
) &&
1177 * If this request is a RDMA read or atomic, and the ACK is
1178 * for a later operation, this ACK NAKs the RDMA read or
1179 * atomic. In other words, only a RDMA_READ_LAST or ONLY
1180 * can ACK a RDMA read and likewise for atomic ops. Note
1181 * that the NAK case can only happen if relaxed ordering is
1182 * used and requests are sent after an RDMA read or atomic
1183 * is sent but before the response is received.
1185 if ((wqe
->wr
.opcode
== IB_WR_RDMA_READ
&&
1186 (opcode
!= OP(RDMA_READ_RESPONSE_LAST
) || diff
!= 0)) ||
1187 ((wqe
->wr
.opcode
== IB_WR_ATOMIC_CMP_AND_SWP
||
1188 wqe
->wr
.opcode
== IB_WR_ATOMIC_FETCH_AND_ADD
) &&
1189 (opcode
!= OP(ATOMIC_ACKNOWLEDGE
) || diff
!= 0))) {
1190 /* Retry this request. */
1191 if (!(qp
->r_flags
& QIB_R_RDMAR_SEQ
)) {
1192 qp
->r_flags
|= QIB_R_RDMAR_SEQ
;
1193 qib_restart_rc(qp
, qp
->s_last_psn
+ 1, 0);
1194 if (list_empty(&qp
->rspwait
)) {
1195 qp
->r_flags
|= QIB_R_RSP_SEND
;
1196 atomic_inc(&qp
->refcount
);
1197 list_add_tail(&qp
->rspwait
,
1198 &rcd
->qp_wait_list
);
1202 * No need to process the ACK/NAK since we are
1203 * restarting an earlier request.
1207 if (wqe
->wr
.opcode
== IB_WR_ATOMIC_CMP_AND_SWP
||
1208 wqe
->wr
.opcode
== IB_WR_ATOMIC_FETCH_AND_ADD
) {
1209 u64
*vaddr
= wqe
->sg_list
[0].vaddr
;
1212 if (qp
->s_num_rd_atomic
&&
1213 (wqe
->wr
.opcode
== IB_WR_RDMA_READ
||
1214 wqe
->wr
.opcode
== IB_WR_ATOMIC_CMP_AND_SWP
||
1215 wqe
->wr
.opcode
== IB_WR_ATOMIC_FETCH_AND_ADD
)) {
1216 qp
->s_num_rd_atomic
--;
1217 /* Restart sending task if fence is complete */
1218 if ((qp
->s_flags
& QIB_S_WAIT_FENCE
) &&
1219 !qp
->s_num_rd_atomic
) {
1220 qp
->s_flags
&= ~(QIB_S_WAIT_FENCE
|
1222 qib_schedule_send(qp
);
1223 } else if (qp
->s_flags
& QIB_S_WAIT_RDMAR
) {
1224 qp
->s_flags
&= ~(QIB_S_WAIT_RDMAR
|
1226 qib_schedule_send(qp
);
1229 wqe
= do_rc_completion(qp
, wqe
, ibp
);
1230 if (qp
->s_acked
== qp
->s_tail
)
1234 switch (aeth
>> 29) {
1237 if (qp
->s_acked
!= qp
->s_tail
) {
1239 * We are expecting more ACKs so
1240 * reset the retransmit timer.
1244 * We can stop resending the earlier packets and
1245 * continue with the next packet the receiver wants.
1247 if (qib_cmp24(qp
->s_psn
, psn
) <= 0)
1248 reset_psn(qp
, psn
+ 1);
1249 } else if (qib_cmp24(qp
->s_psn
, psn
) <= 0) {
1250 qp
->s_state
= OP(SEND_LAST
);
1251 qp
->s_psn
= psn
+ 1;
1253 if (qp
->s_flags
& QIB_S_WAIT_ACK
) {
1254 qp
->s_flags
&= ~QIB_S_WAIT_ACK
;
1255 qib_schedule_send(qp
);
1257 qib_get_credit(qp
, aeth
);
1258 qp
->s_rnr_retry
= qp
->s_rnr_retry_cnt
;
1259 qp
->s_retry
= qp
->s_retry_cnt
;
1260 update_last_psn(qp
, psn
);
1264 case 1: /* RNR NAK */
1266 if (qp
->s_acked
== qp
->s_tail
)
1268 if (qp
->s_flags
& QIB_S_WAIT_RNR
)
1270 if (qp
->s_rnr_retry
== 0) {
1271 status
= IB_WC_RNR_RETRY_EXC_ERR
;
1274 if (qp
->s_rnr_retry_cnt
< 7)
1277 /* The last valid PSN is the previous PSN. */
1278 update_last_psn(qp
, psn
- 1);
1280 ibp
->n_rc_resends
+= (qp
->s_psn
- psn
) & QIB_PSN_MASK
;
1284 qp
->s_flags
&= ~(QIB_S_WAIT_SSN_CREDIT
| QIB_S_WAIT_ACK
);
1285 qp
->s_flags
|= QIB_S_WAIT_RNR
;
1286 qp
->s_timer
.function
= qib_rc_rnr_retry
;
1287 qp
->s_timer
.expires
= jiffies
+ usecs_to_jiffies(
1288 ib_qib_rnr_table
[(aeth
>> QIB_AETH_CREDIT_SHIFT
) &
1289 QIB_AETH_CREDIT_MASK
]);
1290 add_timer(&qp
->s_timer
);
1294 if (qp
->s_acked
== qp
->s_tail
)
1296 /* The last valid PSN is the previous PSN. */
1297 update_last_psn(qp
, psn
- 1);
1298 switch ((aeth
>> QIB_AETH_CREDIT_SHIFT
) &
1299 QIB_AETH_CREDIT_MASK
) {
1300 case 0: /* PSN sequence error */
1303 * Back up to the responder's expected PSN.
1304 * Note that we might get a NAK in the middle of an
1305 * RDMA READ response which terminates the RDMA
1308 qib_restart_rc(qp
, psn
, 0);
1309 qib_schedule_send(qp
);
1312 case 1: /* Invalid Request */
1313 status
= IB_WC_REM_INV_REQ_ERR
;
1314 ibp
->n_other_naks
++;
1317 case 2: /* Remote Access Error */
1318 status
= IB_WC_REM_ACCESS_ERR
;
1319 ibp
->n_other_naks
++;
1322 case 3: /* Remote Operation Error */
1323 status
= IB_WC_REM_OP_ERR
;
1324 ibp
->n_other_naks
++;
1326 if (qp
->s_last
== qp
->s_acked
) {
1327 qib_send_complete(qp
, wqe
, status
);
1328 qib_error_qp(qp
, IB_WC_WR_FLUSH_ERR
);
1333 /* Ignore other reserved NAK error codes */
1336 qp
->s_retry
= qp
->s_retry_cnt
;
1337 qp
->s_rnr_retry
= qp
->s_rnr_retry_cnt
;
1340 default: /* 2: reserved */
1342 /* Ignore reserved NAK codes. */
1351 * We have seen an out of sequence RDMA read middle or last packet.
1352 * This ACKs SENDs and RDMA writes up to the first RDMA read or atomic SWQE.
1354 static void rdma_seq_err(struct qib_qp
*qp
, struct qib_ibport
*ibp
, u32 psn
,
1355 struct qib_ctxtdata
*rcd
)
1357 struct qib_swqe
*wqe
;
1359 /* Remove QP from retry timer */
1360 if (qp
->s_flags
& (QIB_S_TIMER
| QIB_S_WAIT_RNR
)) {
1361 qp
->s_flags
&= ~(QIB_S_TIMER
| QIB_S_WAIT_RNR
);
1362 del_timer(&qp
->s_timer
);
1365 wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
1367 while (qib_cmp24(psn
, wqe
->lpsn
) > 0) {
1368 if (wqe
->wr
.opcode
== IB_WR_RDMA_READ
||
1369 wqe
->wr
.opcode
== IB_WR_ATOMIC_CMP_AND_SWP
||
1370 wqe
->wr
.opcode
== IB_WR_ATOMIC_FETCH_AND_ADD
)
1372 wqe
= do_rc_completion(qp
, wqe
, ibp
);
1376 qp
->r_flags
|= QIB_R_RDMAR_SEQ
;
1377 qib_restart_rc(qp
, qp
->s_last_psn
+ 1, 0);
1378 if (list_empty(&qp
->rspwait
)) {
1379 qp
->r_flags
|= QIB_R_RSP_SEND
;
1380 atomic_inc(&qp
->refcount
);
1381 list_add_tail(&qp
->rspwait
, &rcd
->qp_wait_list
);
1386 * qib_rc_rcv_resp - process an incoming RC response packet
1387 * @ibp: the port this packet came in on
1388 * @ohdr: the other headers for this packet
1389 * @data: the packet data
1390 * @tlen: the packet length
1391 * @qp: the QP for this packet
1392 * @opcode: the opcode for this packet
1393 * @psn: the packet sequence number for this packet
1394 * @hdrsize: the header length
1395 * @pmtu: the path MTU
1397 * This is called from qib_rc_rcv() to process an incoming RC response
1398 * packet for the given QP.
1399 * Called at interrupt level.
1401 static void qib_rc_rcv_resp(struct qib_ibport
*ibp
,
1402 struct qib_other_headers
*ohdr
,
1403 void *data
, u32 tlen
,
1406 u32 psn
, u32 hdrsize
, u32 pmtu
,
1407 struct qib_ctxtdata
*rcd
)
1409 struct qib_swqe
*wqe
;
1410 enum ib_wc_status status
;
1411 unsigned long flags
;
1417 spin_lock_irqsave(&qp
->s_lock
, flags
);
1419 /* Ignore invalid responses. */
1420 if (qib_cmp24(psn
, qp
->s_next_psn
) >= 0)
1423 /* Ignore duplicate responses. */
1424 diff
= qib_cmp24(psn
, qp
->s_last_psn
);
1425 if (unlikely(diff
<= 0)) {
1426 /* Update credits for "ghost" ACKs */
1427 if (diff
== 0 && opcode
== OP(ACKNOWLEDGE
)) {
1428 aeth
= be32_to_cpu(ohdr
->u
.aeth
);
1429 if ((aeth
>> 29) == 0)
1430 qib_get_credit(qp
, aeth
);
1436 * Skip everything other than the PSN we expect, if we are waiting
1437 * for a reply to a restarted RDMA read or atomic op.
1439 if (qp
->r_flags
& QIB_R_RDMAR_SEQ
) {
1440 if (qib_cmp24(psn
, qp
->s_last_psn
+ 1) != 0)
1442 qp
->r_flags
&= ~QIB_R_RDMAR_SEQ
;
1445 if (unlikely(qp
->s_acked
== qp
->s_tail
))
1447 wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
1448 status
= IB_WC_SUCCESS
;
1451 case OP(ACKNOWLEDGE
):
1452 case OP(ATOMIC_ACKNOWLEDGE
):
1453 case OP(RDMA_READ_RESPONSE_FIRST
):
1454 aeth
= be32_to_cpu(ohdr
->u
.aeth
);
1455 if (opcode
== OP(ATOMIC_ACKNOWLEDGE
)) {
1456 __be32
*p
= ohdr
->u
.at
.atomic_ack_eth
;
1458 val
= ((u64
) be32_to_cpu(p
[0]) << 32) |
1462 if (!do_rc_ack(qp
, aeth
, psn
, opcode
, val
, rcd
) ||
1463 opcode
!= OP(RDMA_READ_RESPONSE_FIRST
))
1466 wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
1467 if (unlikely(wqe
->wr
.opcode
!= IB_WR_RDMA_READ
))
1470 * If this is a response to a resent RDMA read, we
1471 * have to be careful to copy the data to the right
1474 qp
->s_rdma_read_len
= restart_sge(&qp
->s_rdma_read_sge
,
1478 case OP(RDMA_READ_RESPONSE_MIDDLE
):
1479 /* no AETH, no ACK */
1480 if (unlikely(qib_cmp24(psn
, qp
->s_last_psn
+ 1)))
1482 if (unlikely(wqe
->wr
.opcode
!= IB_WR_RDMA_READ
))
1485 if (unlikely(tlen
!= (hdrsize
+ pmtu
+ 4)))
1487 if (unlikely(pmtu
>= qp
->s_rdma_read_len
))
1491 * We got a response so update the timeout.
1492 * 4.096 usec. * (1 << qp->timeout)
1494 qp
->s_flags
|= QIB_S_TIMER
;
1495 mod_timer(&qp
->s_timer
, jiffies
+
1496 usecs_to_jiffies((4096UL * (1UL << qp
->timeout
)) /
1498 if (qp
->s_flags
& QIB_S_WAIT_ACK
) {
1499 qp
->s_flags
&= ~QIB_S_WAIT_ACK
;
1500 qib_schedule_send(qp
);
1503 if (opcode
== OP(RDMA_READ_RESPONSE_MIDDLE
))
1504 qp
->s_retry
= qp
->s_retry_cnt
;
1507 * Update the RDMA receive state but do the copy w/o
1508 * holding the locks and blocking interrupts.
1510 qp
->s_rdma_read_len
-= pmtu
;
1511 update_last_psn(qp
, psn
);
1512 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1513 qib_copy_sge(&qp
->s_rdma_read_sge
, data
, pmtu
, 0);
1516 case OP(RDMA_READ_RESPONSE_ONLY
):
1517 aeth
= be32_to_cpu(ohdr
->u
.aeth
);
1518 if (!do_rc_ack(qp
, aeth
, psn
, opcode
, 0, rcd
))
1520 /* Get the number of bytes the message was padded by. */
1521 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
1523 * Check that the data size is >= 0 && <= pmtu.
1524 * Remember to account for the AETH header (4) and
1527 if (unlikely(tlen
< (hdrsize
+ pad
+ 8)))
1530 * If this is a response to a resent RDMA read, we
1531 * have to be careful to copy the data to the right
1534 wqe
= get_swqe_ptr(qp
, qp
->s_acked
);
1535 qp
->s_rdma_read_len
= restart_sge(&qp
->s_rdma_read_sge
,
1539 case OP(RDMA_READ_RESPONSE_LAST
):
1540 /* ACKs READ req. */
1541 if (unlikely(qib_cmp24(psn
, qp
->s_last_psn
+ 1)))
1543 if (unlikely(wqe
->wr
.opcode
!= IB_WR_RDMA_READ
))
1545 /* Get the number of bytes the message was padded by. */
1546 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
1548 * Check that the data size is >= 1 && <= pmtu.
1549 * Remember to account for the AETH header (4) and
1552 if (unlikely(tlen
<= (hdrsize
+ pad
+ 8)))
1555 tlen
-= hdrsize
+ pad
+ 8;
1556 if (unlikely(tlen
!= qp
->s_rdma_read_len
))
1558 aeth
= be32_to_cpu(ohdr
->u
.aeth
);
1559 qib_copy_sge(&qp
->s_rdma_read_sge
, data
, tlen
, 0);
1560 WARN_ON(qp
->s_rdma_read_sge
.num_sge
);
1561 (void) do_rc_ack(qp
, aeth
, psn
,
1562 OP(RDMA_READ_RESPONSE_LAST
), 0, rcd
);
1567 status
= IB_WC_LOC_QP_OP_ERR
;
1571 rdma_seq_err(qp
, ibp
, psn
, rcd
);
1575 status
= IB_WC_LOC_LEN_ERR
;
1577 if (qp
->s_last
== qp
->s_acked
) {
1578 qib_send_complete(qp
, wqe
, status
);
1579 qib_error_qp(qp
, IB_WC_WR_FLUSH_ERR
);
1582 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1588 * qib_rc_rcv_error - process an incoming duplicate or error RC packet
1589 * @ohdr: the other headers for this packet
1590 * @data: the packet data
1591 * @qp: the QP for this packet
1592 * @opcode: the opcode for this packet
1593 * @psn: the packet sequence number for this packet
1594 * @diff: the difference between the PSN and the expected PSN
1596 * This is called from qib_rc_rcv() to process an unexpected
1597 * incoming RC packet for the given QP.
1598 * Called at interrupt level.
1599 * Return 1 if no more processing is needed; otherwise return 0 to
1600 * schedule a response to be sent.
1602 static int qib_rc_rcv_error(struct qib_other_headers
*ohdr
,
1608 struct qib_ctxtdata
*rcd
)
1610 struct qib_ibport
*ibp
= to_iport(qp
->ibqp
.device
, qp
->port_num
);
1611 struct qib_ack_entry
*e
;
1612 unsigned long flags
;
1618 * Packet sequence error.
1619 * A NAK will ACK earlier sends and RDMA writes.
1620 * Don't queue the NAK if we already sent one.
1622 if (!qp
->r_nak_state
) {
1624 qp
->r_nak_state
= IB_NAK_PSN_ERROR
;
1625 /* Use the expected PSN. */
1626 qp
->r_ack_psn
= qp
->r_psn
;
1628 * Wait to send the sequence NAK until all packets
1629 * in the receive queue have been processed.
1630 * Otherwise, we end up propagating congestion.
1632 if (list_empty(&qp
->rspwait
)) {
1633 qp
->r_flags
|= QIB_R_RSP_NAK
;
1634 atomic_inc(&qp
->refcount
);
1635 list_add_tail(&qp
->rspwait
, &rcd
->qp_wait_list
);
1642 * Handle a duplicate request. Don't re-execute SEND, RDMA
1643 * write or atomic op. Don't NAK errors, just silently drop
1644 * the duplicate request. Note that r_sge, r_len, and
1645 * r_rcv_len may be in use so don't modify them.
1647 * We are supposed to ACK the earliest duplicate PSN but we
1648 * can coalesce an outstanding duplicate ACK. We have to
1649 * send the earliest so that RDMA reads can be restarted at
1650 * the requester's expected PSN.
1652 * First, find where this duplicate PSN falls within the
1653 * ACKs previously sent.
1654 * old_req is true if there is an older response that is scheduled
1655 * to be sent before sending this one.
1661 spin_lock_irqsave(&qp
->s_lock
, flags
);
1663 for (i
= qp
->r_head_ack_queue
; ; i
= prev
) {
1664 if (i
== qp
->s_tail_ack_queue
)
1669 prev
= QIB_MAX_RDMA_ATOMIC
;
1670 if (prev
== qp
->r_head_ack_queue
) {
1674 e
= &qp
->s_ack_queue
[prev
];
1679 if (qib_cmp24(psn
, e
->psn
) >= 0) {
1680 if (prev
== qp
->s_tail_ack_queue
&&
1681 qib_cmp24(psn
, e
->lpsn
) <= 0)
1687 case OP(RDMA_READ_REQUEST
): {
1688 struct ib_reth
*reth
;
1693 * If we didn't find the RDMA read request in the ack queue,
1694 * we can ignore this request.
1696 if (!e
|| e
->opcode
!= OP(RDMA_READ_REQUEST
))
1698 /* RETH comes after BTH */
1699 reth
= &ohdr
->u
.rc
.reth
;
1701 * Address range must be a subset of the original
1702 * request and start on pmtu boundaries.
1703 * We reuse the old ack_queue slot since the requester
1704 * should not back up and request an earlier PSN for the
1707 offset
= ((psn
- e
->psn
) & QIB_PSN_MASK
) *
1708 ib_mtu_enum_to_int(qp
->path_mtu
);
1709 len
= be32_to_cpu(reth
->length
);
1710 if (unlikely(offset
+ len
!= e
->rdma_sge
.sge_length
))
1712 if (e
->rdma_sge
.mr
) {
1713 atomic_dec(&e
->rdma_sge
.mr
->refcount
);
1714 e
->rdma_sge
.mr
= NULL
;
1717 u32 rkey
= be32_to_cpu(reth
->rkey
);
1718 u64 vaddr
= be64_to_cpu(reth
->vaddr
);
1721 ok
= qib_rkey_ok(qp
, &e
->rdma_sge
, len
, vaddr
, rkey
,
1722 IB_ACCESS_REMOTE_READ
);
1726 e
->rdma_sge
.vaddr
= NULL
;
1727 e
->rdma_sge
.length
= 0;
1728 e
->rdma_sge
.sge_length
= 0;
1733 qp
->s_tail_ack_queue
= prev
;
1737 case OP(COMPARE_SWAP
):
1738 case OP(FETCH_ADD
): {
1740 * If we didn't find the atomic request in the ack queue
1741 * or the send tasklet is already backed up to send an
1742 * earlier entry, we can ignore this request.
1744 if (!e
|| e
->opcode
!= (u8
) opcode
|| old_req
)
1746 qp
->s_tail_ack_queue
= prev
;
1752 * Ignore this operation if it doesn't request an ACK
1753 * or an earlier RDMA read or atomic is going to be resent.
1755 if (!(psn
& IB_BTH_REQ_ACK
) || old_req
)
1758 * Resend the most recent ACK if this request is
1759 * after all the previous RDMA reads and atomics.
1761 if (i
== qp
->r_head_ack_queue
) {
1762 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1763 qp
->r_nak_state
= 0;
1764 qp
->r_ack_psn
= qp
->r_psn
- 1;
1768 * Try to send a simple ACK to work around a Mellanox bug
1769 * which doesn't accept a RDMA read response or atomic
1770 * response as an ACK for earlier SENDs or RDMA writes.
1772 if (!(qp
->s_flags
& QIB_S_RESP_PENDING
)) {
1773 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1774 qp
->r_nak_state
= 0;
1775 qp
->r_ack_psn
= qp
->s_ack_queue
[i
].psn
- 1;
1779 * Resend the RDMA read or atomic op which
1780 * ACKs this duplicate request.
1782 qp
->s_tail_ack_queue
= i
;
1785 qp
->s_ack_state
= OP(ACKNOWLEDGE
);
1786 qp
->s_flags
|= QIB_S_RESP_PENDING
;
1787 qp
->r_nak_state
= 0;
1788 qib_schedule_send(qp
);
1791 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1799 void qib_rc_error(struct qib_qp
*qp
, enum ib_wc_status err
)
1801 unsigned long flags
;
1804 spin_lock_irqsave(&qp
->s_lock
, flags
);
1805 lastwqe
= qib_error_qp(qp
, err
);
1806 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1811 ev
.device
= qp
->ibqp
.device
;
1812 ev
.element
.qp
= &qp
->ibqp
;
1813 ev
.event
= IB_EVENT_QP_LAST_WQE_REACHED
;
1814 qp
->ibqp
.event_handler(&ev
, qp
->ibqp
.qp_context
);
1818 static inline void qib_update_ack_queue(struct qib_qp
*qp
, unsigned n
)
1823 if (next
> QIB_MAX_RDMA_ATOMIC
)
1825 qp
->s_tail_ack_queue
= next
;
1826 qp
->s_ack_state
= OP(ACKNOWLEDGE
);
1830 * qib_rc_rcv - process an incoming RC packet
1831 * @rcd: the context pointer
1832 * @hdr: the header of this packet
1833 * @has_grh: true if the header has a GRH
1834 * @data: the packet data
1835 * @tlen: the packet length
1836 * @qp: the QP for this packet
1838 * This is called from qib_qp_rcv() to process an incoming RC packet
1840 * Called at interrupt level.
1842 void qib_rc_rcv(struct qib_ctxtdata
*rcd
, struct qib_ib_header
*hdr
,
1843 int has_grh
, void *data
, u32 tlen
, struct qib_qp
*qp
)
1845 struct qib_ibport
*ibp
= &rcd
->ppd
->ibport_data
;
1846 struct qib_other_headers
*ohdr
;
1852 u32 pmtu
= ib_mtu_enum_to_int(qp
->path_mtu
);
1854 struct ib_reth
*reth
;
1855 unsigned long flags
;
1861 hdrsize
= 8 + 12; /* LRH + BTH */
1863 ohdr
= &hdr
->u
.l
.oth
;
1864 hdrsize
= 8 + 40 + 12; /* LRH + GRH + BTH */
1867 opcode
= be32_to_cpu(ohdr
->bth
[0]);
1868 spin_lock_irqsave(&qp
->s_lock
, flags
);
1869 if (qib_ruc_check_hdr(ibp
, hdr
, has_grh
, qp
, opcode
))
1871 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1873 psn
= be32_to_cpu(ohdr
->bth
[2]);
1877 * Process responses (ACKs) before anything else. Note that the
1878 * packet sequence number will be for something in the send work
1879 * queue rather than the expected receive packet sequence number.
1880 * In other words, this QP is the requester.
1882 if (opcode
>= OP(RDMA_READ_RESPONSE_FIRST
) &&
1883 opcode
<= OP(ATOMIC_ACKNOWLEDGE
)) {
1884 qib_rc_rcv_resp(ibp
, ohdr
, data
, tlen
, qp
, opcode
, psn
,
1885 hdrsize
, pmtu
, rcd
);
1889 /* Compute 24 bits worth of difference. */
1890 diff
= qib_cmp24(psn
, qp
->r_psn
);
1891 if (unlikely(diff
)) {
1892 if (qib_rc_rcv_error(ohdr
, data
, qp
, opcode
, psn
, diff
, rcd
))
1897 /* Check for opcode sequence errors. */
1898 switch (qp
->r_state
) {
1899 case OP(SEND_FIRST
):
1900 case OP(SEND_MIDDLE
):
1901 if (opcode
== OP(SEND_MIDDLE
) ||
1902 opcode
== OP(SEND_LAST
) ||
1903 opcode
== OP(SEND_LAST_WITH_IMMEDIATE
))
1907 case OP(RDMA_WRITE_FIRST
):
1908 case OP(RDMA_WRITE_MIDDLE
):
1909 if (opcode
== OP(RDMA_WRITE_MIDDLE
) ||
1910 opcode
== OP(RDMA_WRITE_LAST
) ||
1911 opcode
== OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
))
1916 if (opcode
== OP(SEND_MIDDLE
) ||
1917 opcode
== OP(SEND_LAST
) ||
1918 opcode
== OP(SEND_LAST_WITH_IMMEDIATE
) ||
1919 opcode
== OP(RDMA_WRITE_MIDDLE
) ||
1920 opcode
== OP(RDMA_WRITE_LAST
) ||
1921 opcode
== OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
))
1924 * Note that it is up to the requester to not send a new
1925 * RDMA read or atomic operation before receiving an ACK
1926 * for the previous operation.
1931 memset(&wc
, 0, sizeof wc
);
1933 if (qp
->state
== IB_QPS_RTR
&& !(qp
->r_flags
& QIB_R_COMM_EST
)) {
1934 qp
->r_flags
|= QIB_R_COMM_EST
;
1935 if (qp
->ibqp
.event_handler
) {
1938 ev
.device
= qp
->ibqp
.device
;
1939 ev
.element
.qp
= &qp
->ibqp
;
1940 ev
.event
= IB_EVENT_COMM_EST
;
1941 qp
->ibqp
.event_handler(&ev
, qp
->ibqp
.qp_context
);
1945 /* OK, process the packet. */
1947 case OP(SEND_FIRST
):
1948 ret
= qib_get_rwqe(qp
, 0);
1955 case OP(SEND_MIDDLE
):
1956 case OP(RDMA_WRITE_MIDDLE
):
1958 /* Check for invalid length PMTU or posted rwqe len. */
1959 if (unlikely(tlen
!= (hdrsize
+ pmtu
+ 4)))
1961 qp
->r_rcv_len
+= pmtu
;
1962 if (unlikely(qp
->r_rcv_len
> qp
->r_len
))
1964 qib_copy_sge(&qp
->r_sge
, data
, pmtu
, 1);
1967 case OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
):
1969 ret
= qib_get_rwqe(qp
, 1);
1977 case OP(SEND_ONLY_WITH_IMMEDIATE
):
1978 ret
= qib_get_rwqe(qp
, 0);
1984 if (opcode
== OP(SEND_ONLY
))
1987 case OP(SEND_LAST_WITH_IMMEDIATE
):
1989 wc
.ex
.imm_data
= ohdr
->u
.imm_data
;
1991 wc
.wc_flags
= IB_WC_WITH_IMM
;
1994 case OP(RDMA_WRITE_LAST
):
1996 /* Get the number of bytes the message was padded by. */
1997 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
1998 /* Check for invalid length. */
1999 /* XXX LAST len should be >= 1 */
2000 if (unlikely(tlen
< (hdrsize
+ pad
+ 4)))
2002 /* Don't count the CRC. */
2003 tlen
-= (hdrsize
+ pad
+ 4);
2004 wc
.byte_len
= tlen
+ qp
->r_rcv_len
;
2005 if (unlikely(wc
.byte_len
> qp
->r_len
))
2007 qib_copy_sge(&qp
->r_sge
, data
, tlen
, 1);
2008 while (qp
->r_sge
.num_sge
) {
2009 atomic_dec(&qp
->r_sge
.sge
.mr
->refcount
);
2010 if (--qp
->r_sge
.num_sge
)
2011 qp
->r_sge
.sge
= *qp
->r_sge
.sg_list
++;
2014 if (!test_and_clear_bit(QIB_R_WRID_VALID
, &qp
->r_aflags
))
2016 wc
.wr_id
= qp
->r_wr_id
;
2017 wc
.status
= IB_WC_SUCCESS
;
2018 if (opcode
== OP(RDMA_WRITE_LAST_WITH_IMMEDIATE
) ||
2019 opcode
== OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
))
2020 wc
.opcode
= IB_WC_RECV_RDMA_WITH_IMM
;
2022 wc
.opcode
= IB_WC_RECV
;
2024 wc
.src_qp
= qp
->remote_qpn
;
2025 wc
.slid
= qp
->remote_ah_attr
.dlid
;
2026 wc
.sl
= qp
->remote_ah_attr
.sl
;
2027 /* Signal completion event if the solicited bit is set. */
2028 qib_cq_enter(to_icq(qp
->ibqp
.recv_cq
), &wc
,
2030 cpu_to_be32(IB_BTH_SOLICITED
)) != 0);
2033 case OP(RDMA_WRITE_FIRST
):
2034 case OP(RDMA_WRITE_ONLY
):
2035 case OP(RDMA_WRITE_ONLY_WITH_IMMEDIATE
):
2036 if (unlikely(!(qp
->qp_access_flags
& IB_ACCESS_REMOTE_WRITE
)))
2039 reth
= &ohdr
->u
.rc
.reth
;
2040 hdrsize
+= sizeof(*reth
);
2041 qp
->r_len
= be32_to_cpu(reth
->length
);
2043 qp
->r_sge
.sg_list
= NULL
;
2044 if (qp
->r_len
!= 0) {
2045 u32 rkey
= be32_to_cpu(reth
->rkey
);
2046 u64 vaddr
= be64_to_cpu(reth
->vaddr
);
2049 /* Check rkey & NAK */
2050 ok
= qib_rkey_ok(qp
, &qp
->r_sge
.sge
, qp
->r_len
, vaddr
,
2051 rkey
, IB_ACCESS_REMOTE_WRITE
);
2054 qp
->r_sge
.num_sge
= 1;
2056 qp
->r_sge
.num_sge
= 0;
2057 qp
->r_sge
.sge
.mr
= NULL
;
2058 qp
->r_sge
.sge
.vaddr
= NULL
;
2059 qp
->r_sge
.sge
.length
= 0;
2060 qp
->r_sge
.sge
.sge_length
= 0;
2062 if (opcode
== OP(RDMA_WRITE_FIRST
))
2064 else if (opcode
== OP(RDMA_WRITE_ONLY
))
2066 ret
= qib_get_rwqe(qp
, 1);
2071 wc
.ex
.imm_data
= ohdr
->u
.rc
.imm_data
;
2073 wc
.wc_flags
= IB_WC_WITH_IMM
;
2076 case OP(RDMA_READ_REQUEST
): {
2077 struct qib_ack_entry
*e
;
2081 if (unlikely(!(qp
->qp_access_flags
& IB_ACCESS_REMOTE_READ
)))
2083 next
= qp
->r_head_ack_queue
+ 1;
2084 /* s_ack_queue is size QIB_MAX_RDMA_ATOMIC+1 so use > not >= */
2085 if (next
> QIB_MAX_RDMA_ATOMIC
)
2087 spin_lock_irqsave(&qp
->s_lock
, flags
);
2088 if (unlikely(next
== qp
->s_tail_ack_queue
)) {
2089 if (!qp
->s_ack_queue
[next
].sent
)
2090 goto nack_inv_unlck
;
2091 qib_update_ack_queue(qp
, next
);
2093 e
= &qp
->s_ack_queue
[qp
->r_head_ack_queue
];
2094 if (e
->opcode
== OP(RDMA_READ_REQUEST
) && e
->rdma_sge
.mr
) {
2095 atomic_dec(&e
->rdma_sge
.mr
->refcount
);
2096 e
->rdma_sge
.mr
= NULL
;
2098 reth
= &ohdr
->u
.rc
.reth
;
2099 len
= be32_to_cpu(reth
->length
);
2101 u32 rkey
= be32_to_cpu(reth
->rkey
);
2102 u64 vaddr
= be64_to_cpu(reth
->vaddr
);
2105 /* Check rkey & NAK */
2106 ok
= qib_rkey_ok(qp
, &e
->rdma_sge
, len
, vaddr
,
2107 rkey
, IB_ACCESS_REMOTE_READ
);
2109 goto nack_acc_unlck
;
2111 * Update the next expected PSN. We add 1 later
2112 * below, so only add the remainder here.
2115 qp
->r_psn
+= (len
- 1) / pmtu
;
2117 e
->rdma_sge
.mr
= NULL
;
2118 e
->rdma_sge
.vaddr
= NULL
;
2119 e
->rdma_sge
.length
= 0;
2120 e
->rdma_sge
.sge_length
= 0;
2125 e
->lpsn
= qp
->r_psn
;
2127 * We need to increment the MSN here instead of when we
2128 * finish sending the result since a duplicate request would
2129 * increment it more than once.
2133 qp
->r_state
= opcode
;
2134 qp
->r_nak_state
= 0;
2135 qp
->r_head_ack_queue
= next
;
2137 /* Schedule the send tasklet. */
2138 qp
->s_flags
|= QIB_S_RESP_PENDING
;
2139 qib_schedule_send(qp
);
2144 case OP(COMPARE_SWAP
):
2145 case OP(FETCH_ADD
): {
2146 struct ib_atomic_eth
*ateth
;
2147 struct qib_ack_entry
*e
;
2154 if (unlikely(!(qp
->qp_access_flags
& IB_ACCESS_REMOTE_ATOMIC
)))
2156 next
= qp
->r_head_ack_queue
+ 1;
2157 if (next
> QIB_MAX_RDMA_ATOMIC
)
2159 spin_lock_irqsave(&qp
->s_lock
, flags
);
2160 if (unlikely(next
== qp
->s_tail_ack_queue
)) {
2161 if (!qp
->s_ack_queue
[next
].sent
)
2162 goto nack_inv_unlck
;
2163 qib_update_ack_queue(qp
, next
);
2165 e
= &qp
->s_ack_queue
[qp
->r_head_ack_queue
];
2166 if (e
->opcode
== OP(RDMA_READ_REQUEST
) && e
->rdma_sge
.mr
) {
2167 atomic_dec(&e
->rdma_sge
.mr
->refcount
);
2168 e
->rdma_sge
.mr
= NULL
;
2170 ateth
= &ohdr
->u
.atomic_eth
;
2171 vaddr
= ((u64
) be32_to_cpu(ateth
->vaddr
[0]) << 32) |
2172 be32_to_cpu(ateth
->vaddr
[1]);
2173 if (unlikely(vaddr
& (sizeof(u64
) - 1)))
2174 goto nack_inv_unlck
;
2175 rkey
= be32_to_cpu(ateth
->rkey
);
2176 /* Check rkey & NAK */
2177 if (unlikely(!qib_rkey_ok(qp
, &qp
->r_sge
.sge
, sizeof(u64
),
2179 IB_ACCESS_REMOTE_ATOMIC
)))
2180 goto nack_acc_unlck
;
2181 /* Perform atomic OP and save result. */
2182 maddr
= (atomic64_t
*) qp
->r_sge
.sge
.vaddr
;
2183 sdata
= be64_to_cpu(ateth
->swap_data
);
2184 e
->atomic_data
= (opcode
== OP(FETCH_ADD
)) ?
2185 (u64
) atomic64_add_return(sdata
, maddr
) - sdata
:
2186 (u64
) cmpxchg((u64
*) qp
->r_sge
.sge
.vaddr
,
2187 be64_to_cpu(ateth
->compare_data
),
2189 atomic_dec(&qp
->r_sge
.sge
.mr
->refcount
);
2190 qp
->r_sge
.num_sge
= 0;
2197 qp
->r_state
= opcode
;
2198 qp
->r_nak_state
= 0;
2199 qp
->r_head_ack_queue
= next
;
2201 /* Schedule the send tasklet. */
2202 qp
->s_flags
|= QIB_S_RESP_PENDING
;
2203 qib_schedule_send(qp
);
2209 /* NAK unknown opcodes. */
2213 qp
->r_state
= opcode
;
2214 qp
->r_ack_psn
= psn
;
2215 qp
->r_nak_state
= 0;
2216 /* Send an ACK if requested or required. */
2217 if (psn
& (1 << 31))
2222 qp
->r_nak_state
= IB_RNR_NAK
| qp
->r_min_rnr_timer
;
2223 qp
->r_ack_psn
= qp
->r_psn
;
2224 /* Queue RNR NAK for later */
2225 if (list_empty(&qp
->rspwait
)) {
2226 qp
->r_flags
|= QIB_R_RSP_NAK
;
2227 atomic_inc(&qp
->refcount
);
2228 list_add_tail(&qp
->rspwait
, &rcd
->qp_wait_list
);
2233 qib_rc_error(qp
, IB_WC_LOC_QP_OP_ERR
);
2234 qp
->r_nak_state
= IB_NAK_REMOTE_OPERATIONAL_ERROR
;
2235 qp
->r_ack_psn
= qp
->r_psn
;
2236 /* Queue NAK for later */
2237 if (list_empty(&qp
->rspwait
)) {
2238 qp
->r_flags
|= QIB_R_RSP_NAK
;
2239 atomic_inc(&qp
->refcount
);
2240 list_add_tail(&qp
->rspwait
, &rcd
->qp_wait_list
);
2245 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
2247 qib_rc_error(qp
, IB_WC_LOC_QP_OP_ERR
);
2248 qp
->r_nak_state
= IB_NAK_INVALID_REQUEST
;
2249 qp
->r_ack_psn
= qp
->r_psn
;
2250 /* Queue NAK for later */
2251 if (list_empty(&qp
->rspwait
)) {
2252 qp
->r_flags
|= QIB_R_RSP_NAK
;
2253 atomic_inc(&qp
->refcount
);
2254 list_add_tail(&qp
->rspwait
, &rcd
->qp_wait_list
);
2259 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
2261 qib_rc_error(qp
, IB_WC_LOC_PROT_ERR
);
2262 qp
->r_nak_state
= IB_NAK_REMOTE_ACCESS_ERROR
;
2263 qp
->r_ack_psn
= qp
->r_psn
;
2265 qib_send_rc_ack(qp
);
2269 spin_unlock_irqrestore(&qp
->s_lock
, flags
);