2 * Copyright (c) 2006, 2007 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
34 #include <rdma/ib_smi.h>
36 #include "ipath_verbs.h"
37 #include "ipath_kernel.h"
40 * ipath_ud_loopback - handle send on loopback QPs
41 * @sqp: the sending QP
42 * @swqe: the send work request
44 * This is called from ipath_make_ud_req() to forward a WQE addressed
46 * Note that the receive interrupt handler may be calling ipath_ud_rcv()
47 * while this is being called.
49 static void ipath_ud_loopback(struct ipath_qp
*sqp
, struct ipath_swqe
*swqe
)
51 struct ipath_ibdev
*dev
= to_idev(sqp
->ibqp
.device
);
53 struct ib_ah_attr
*ah_attr
;
56 struct ipath_srq
*srq
;
57 struct ipath_sge_state rsge
;
58 struct ipath_sge
*sge
;
60 struct ipath_rwqe
*wqe
;
61 void (*handler
)(struct ib_event
*, void *);
67 qp
= ipath_lookup_qpn(&dev
->qp_table
, swqe
->wr
.wr
.ud
.remote_qpn
);
76 * Check that the qkey matches (except for QP0, see 9.6.1.4.1).
77 * Qkeys with the high order bit set mean use the
78 * qkey from the QP context instead of the WR (see 10.2.5).
80 if (unlikely(qp
->ibqp
.qp_num
&&
81 ((int) swqe
->wr
.wr
.ud
.remote_qkey
< 0 ?
82 sqp
->qkey
: swqe
->wr
.wr
.ud
.remote_qkey
) != qp
->qkey
)) {
83 /* XXX OK to lose a count once in a while. */
84 dev
->qkey_violations
++;
90 * A GRH is expected to preceed the data even if not
91 * present on the wire.
93 length
= swqe
->length
;
94 wc
.byte_len
= length
+ sizeof(struct ib_grh
);
96 if (swqe
->wr
.opcode
== IB_WR_SEND_WITH_IMM
) {
97 wc
.wc_flags
= IB_WC_WITH_IMM
;
98 wc
.imm_data
= swqe
->wr
.imm_data
;
105 * This would be a lot simpler if we could call ipath_get_rwqe()
106 * but that uses state that the receive interrupt handler uses
107 * so we would need to lock out receive interrupts while doing
111 srq
= to_isrq(qp
->ibqp
.srq
);
112 handler
= srq
->ibsrq
.event_handler
;
120 if (rq
->max_sge
> 1) {
122 * XXX We could use GFP_KERNEL if ipath_do_send()
123 * was always called from the tasklet instead of
124 * from ipath_post_send().
126 rsge
.sg_list
= kmalloc((rq
->max_sge
- 1) *
127 sizeof(struct ipath_sge
),
136 * Get the next work request entry to find where to put the data.
137 * Note that it is safe to drop the lock after changing rq->tail
138 * since ipath_post_receive() won't fill the empty slot.
140 spin_lock_irqsave(&rq
->lock
, flags
);
143 /* Validate tail before using it since it is user writable. */
144 if (tail
>= rq
->size
)
146 if (unlikely(tail
== wq
->head
)) {
147 spin_unlock_irqrestore(&rq
->lock
, flags
);
151 wqe
= get_rwqe_ptr(rq
, tail
);
152 if (!ipath_init_sge(qp
, wqe
, &rlen
, &rsge
)) {
153 spin_unlock_irqrestore(&rq
->lock
, flags
);
157 /* Silently drop packets which are too big. */
158 if (wc
.byte_len
> rlen
) {
159 spin_unlock_irqrestore(&rq
->lock
, flags
);
163 if (++tail
>= rq
->size
)
166 wc
.wr_id
= wqe
->wr_id
;
171 * validate head pointer value and compute
172 * the number of remaining WQEs.
178 n
+= rq
->size
- tail
;
181 if (n
< srq
->limit
) {
185 spin_unlock_irqrestore(&rq
->lock
, flags
);
186 ev
.device
= qp
->ibqp
.device
;
187 ev
.element
.srq
= qp
->ibqp
.srq
;
188 ev
.event
= IB_EVENT_SRQ_LIMIT_REACHED
;
189 handler(&ev
, srq
->ibsrq
.srq_context
);
191 spin_unlock_irqrestore(&rq
->lock
, flags
);
193 spin_unlock_irqrestore(&rq
->lock
, flags
);
195 ah_attr
= &to_iah(swqe
->wr
.wr
.ud
.ah
)->attr
;
196 if (ah_attr
->ah_flags
& IB_AH_GRH
) {
197 ipath_copy_sge(&rsge
, &ah_attr
->grh
, sizeof(struct ib_grh
));
198 wc
.wc_flags
|= IB_WC_GRH
;
200 ipath_skip_sge(&rsge
, sizeof(struct ib_grh
));
203 u32 len
= sge
->length
;
207 if (len
> sge
->sge_length
)
208 len
= sge
->sge_length
;
210 ipath_copy_sge(&rsge
, sge
->vaddr
, len
);
213 sge
->sge_length
-= len
;
214 if (sge
->sge_length
== 0) {
215 if (--swqe
->wr
.num_sge
)
217 } else if (sge
->length
== 0 && sge
->mr
!= NULL
) {
218 if (++sge
->n
>= IPATH_SEGSZ
) {
219 if (++sge
->m
>= sge
->mr
->mapsz
)
224 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].vaddr
;
226 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].length
;
230 wc
.status
= IB_WC_SUCCESS
;
231 wc
.opcode
= IB_WC_RECV
;
234 wc
.src_qp
= sqp
->ibqp
.qp_num
;
235 /* XXX do we know which pkey matched? Only needed for GSI. */
237 wc
.slid
= dev
->dd
->ipath_lid
|
238 (ah_attr
->src_path_bits
&
239 ((1 << dev
->dd
->ipath_lmc
) - 1));
242 ah_attr
->dlid
& ((1 << dev
->dd
->ipath_lmc
) - 1);
244 /* Signal completion event if the solicited bit is set. */
245 ipath_cq_enter(to_icq(qp
->ibqp
.recv_cq
), &wc
,
246 swqe
->wr
.send_flags
& IB_SEND_SOLICITED
);
249 if (atomic_dec_and_test(&qp
->refcount
))
252 ipath_send_complete(sqp
, swqe
, IB_WC_SUCCESS
);
256 * ipath_make_ud_req - construct a UD request packet
259 * Return 1 if constructed; otherwise, return 0.
261 int ipath_make_ud_req(struct ipath_qp
*qp
)
263 struct ipath_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
264 struct ipath_other_headers
*ohdr
;
265 struct ib_ah_attr
*ah_attr
;
266 struct ipath_swqe
*wqe
;
274 if (unlikely(!(ib_ipath_state_ops
[qp
->state
] & IPATH_PROCESS_SEND_OK
)))
277 if (qp
->s_cur
== qp
->s_head
)
280 wqe
= get_swqe_ptr(qp
, qp
->s_cur
);
282 /* Construct the header. */
283 ah_attr
= &to_iah(wqe
->wr
.wr
.ud
.ah
)->attr
;
284 if (ah_attr
->dlid
>= IPATH_MULTICAST_LID_BASE
) {
285 if (ah_attr
->dlid
!= IPATH_PERMISSIVE_LID
)
286 dev
->n_multicast_xmit
++;
288 dev
->n_unicast_xmit
++;
290 dev
->n_unicast_xmit
++;
291 lid
= ah_attr
->dlid
&
292 ~((1 << dev
->dd
->ipath_lmc
) - 1);
293 if (unlikely(lid
== dev
->dd
->ipath_lid
)) {
294 ipath_ud_loopback(qp
, wqe
);
299 extra_bytes
= -wqe
->length
& 3;
300 nwords
= (wqe
->length
+ extra_bytes
) >> 2;
302 /* header size in 32-bit words LRH+BTH+DETH = (8+12+8)/4. */
304 qp
->s_cur_size
= wqe
->length
;
305 qp
->s_cur_sge
= &qp
->s_sge
;
307 qp
->s_sge
.sge
= wqe
->sg_list
[0];
308 qp
->s_sge
.sg_list
= wqe
->sg_list
+ 1;
309 qp
->s_sge
.num_sge
= wqe
->wr
.num_sge
;
311 if (ah_attr
->ah_flags
& IB_AH_GRH
) {
312 /* Header size in 32-bit words. */
313 qp
->s_hdrwords
+= ipath_make_grh(dev
, &qp
->s_hdr
.u
.l
.grh
,
315 qp
->s_hdrwords
, nwords
);
316 lrh0
= IPATH_LRH_GRH
;
317 ohdr
= &qp
->s_hdr
.u
.l
.oth
;
319 * Don't worry about sending to locally attached multicast
320 * QPs. It is unspecified by the spec. what happens.
323 /* Header size in 32-bit words. */
324 lrh0
= IPATH_LRH_BTH
;
325 ohdr
= &qp
->s_hdr
.u
.oth
;
327 if (wqe
->wr
.opcode
== IB_WR_SEND_WITH_IMM
) {
329 ohdr
->u
.ud
.imm_data
= wqe
->wr
.imm_data
;
330 bth0
= IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE
<< 24;
332 bth0
= IB_OPCODE_UD_SEND_ONLY
<< 24;
333 lrh0
|= ah_attr
->sl
<< 4;
334 if (qp
->ibqp
.qp_type
== IB_QPT_SMI
)
335 lrh0
|= 0xF000; /* Set VL (see ch. 13.5.3.1) */
336 qp
->s_hdr
.lrh
[0] = cpu_to_be16(lrh0
);
337 qp
->s_hdr
.lrh
[1] = cpu_to_be16(ah_attr
->dlid
); /* DEST LID */
338 qp
->s_hdr
.lrh
[2] = cpu_to_be16(qp
->s_hdrwords
+ nwords
+
340 lid
= dev
->dd
->ipath_lid
;
342 lid
|= ah_attr
->src_path_bits
&
343 ((1 << dev
->dd
->ipath_lmc
) - 1);
344 qp
->s_hdr
.lrh
[3] = cpu_to_be16(lid
);
346 qp
->s_hdr
.lrh
[3] = IB_LID_PERMISSIVE
;
347 if (wqe
->wr
.send_flags
& IB_SEND_SOLICITED
)
349 bth0
|= extra_bytes
<< 20;
350 bth0
|= qp
->ibqp
.qp_type
== IB_QPT_SMI
? IPATH_DEFAULT_P_KEY
:
351 ipath_get_pkey(dev
->dd
, qp
->s_pkey_index
);
352 ohdr
->bth
[0] = cpu_to_be32(bth0
);
354 * Use the multicast QP if the destination LID is a multicast LID.
356 ohdr
->bth
[1] = ah_attr
->dlid
>= IPATH_MULTICAST_LID_BASE
&&
357 ah_attr
->dlid
!= IPATH_PERMISSIVE_LID
?
358 __constant_cpu_to_be32(IPATH_MULTICAST_QPN
) :
359 cpu_to_be32(wqe
->wr
.wr
.ud
.remote_qpn
);
360 ohdr
->bth
[2] = cpu_to_be32(qp
->s_next_psn
++ & IPATH_PSN_MASK
);
362 * Qkeys with the high order bit set mean use the
363 * qkey from the QP context instead of the WR (see 10.2.5).
365 ohdr
->u
.ud
.deth
[0] = cpu_to_be32((int)wqe
->wr
.wr
.ud
.remote_qkey
< 0 ?
366 qp
->qkey
: wqe
->wr
.wr
.ud
.remote_qkey
);
367 ohdr
->u
.ud
.deth
[1] = cpu_to_be32(qp
->ibqp
.qp_num
);
370 if (++qp
->s_cur
>= qp
->s_size
)
379 * ipath_ud_rcv - receive an incoming UD packet
380 * @dev: the device the packet came in on
381 * @hdr: the packet header
382 * @has_grh: true if the packet has a GRH
383 * @data: the packet data
384 * @tlen: the packet length
385 * @qp: the QP the packet came on
387 * This is called from ipath_qp_rcv() to process an incoming UD packet
389 * Called at interrupt level.
391 void ipath_ud_rcv(struct ipath_ibdev
*dev
, struct ipath_ib_header
*hdr
,
392 int has_grh
, void *data
, u32 tlen
, struct ipath_qp
*qp
)
394 struct ipath_other_headers
*ohdr
;
407 hdrsize
= 8 + 12 + 8; /* LRH + BTH + DETH */
408 qkey
= be32_to_cpu(ohdr
->u
.ud
.deth
[0]);
409 src_qp
= be32_to_cpu(ohdr
->u
.ud
.deth
[1]);
412 ohdr
= &hdr
->u
.l
.oth
;
413 hdrsize
= 8 + 40 + 12 + 8; /* LRH + GRH + BTH + DETH */
415 * The header with GRH is 68 bytes and the core driver sets
416 * the eager header buffer size to 56 bytes so the last 12
417 * bytes of the IB header is in the data buffer.
419 header_in_data
= dev
->dd
->ipath_rcvhdrentsize
== 16;
420 if (header_in_data
) {
421 qkey
= be32_to_cpu(((__be32
*) data
)[1]);
422 src_qp
= be32_to_cpu(((__be32
*) data
)[2]);
425 qkey
= be32_to_cpu(ohdr
->u
.ud
.deth
[0]);
426 src_qp
= be32_to_cpu(ohdr
->u
.ud
.deth
[1]);
429 src_qp
&= IPATH_QPN_MASK
;
432 * Check that the permissive LID is only used on QP0
433 * and the QKEY matches (see 9.6.1.4.1 and 9.6.1.5.1).
435 if (qp
->ibqp
.qp_num
) {
436 if (unlikely(hdr
->lrh
[1] == IB_LID_PERMISSIVE
||
437 hdr
->lrh
[3] == IB_LID_PERMISSIVE
)) {
441 if (unlikely(qkey
!= qp
->qkey
)) {
442 /* XXX OK to lose a count once in a while. */
443 dev
->qkey_violations
++;
447 } else if (hdr
->lrh
[1] == IB_LID_PERMISSIVE
||
448 hdr
->lrh
[3] == IB_LID_PERMISSIVE
) {
449 struct ib_smp
*smp
= (struct ib_smp
*) data
;
451 if (smp
->mgmt_class
!= IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
) {
458 * The opcode is in the low byte when its in network order
459 * (top byte when in host order).
461 opcode
= be32_to_cpu(ohdr
->bth
[0]) >> 24;
462 if (qp
->ibqp
.qp_num
> 1 &&
463 opcode
== IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE
) {
464 if (header_in_data
) {
465 wc
.imm_data
= *(__be32
*) data
;
466 data
+= sizeof(__be32
);
468 wc
.imm_data
= ohdr
->u
.ud
.imm_data
;
469 wc
.wc_flags
= IB_WC_WITH_IMM
;
470 hdrsize
+= sizeof(u32
);
471 } else if (opcode
== IB_OPCODE_UD_SEND_ONLY
) {
479 /* Get the number of bytes the message was padded by. */
480 pad
= (be32_to_cpu(ohdr
->bth
[0]) >> 20) & 3;
481 if (unlikely(tlen
< (hdrsize
+ pad
+ 4))) {
482 /* Drop incomplete packets. */
486 tlen
-= hdrsize
+ pad
+ 4;
488 /* Drop invalid MAD packets (see 13.5.3.1). */
489 if (unlikely((qp
->ibqp
.qp_num
== 0 &&
491 (be16_to_cpu(hdr
->lrh
[0]) >> 12) != 15)) ||
492 (qp
->ibqp
.qp_num
== 1 &&
494 (be16_to_cpu(hdr
->lrh
[0]) >> 12) == 15)))) {
500 * A GRH is expected to preceed the data even if not
501 * present on the wire.
503 wc
.byte_len
= tlen
+ sizeof(struct ib_grh
);
506 * Get the next work request entry to find where to put the data.
510 else if (!ipath_get_rwqe(qp
, 0)) {
512 * Count VL15 packets dropped due to no receive buffer.
513 * Otherwise, count them as buffer overruns since usually,
514 * the HW will be able to receive packets even if there are
515 * no QPs with posted receive buffers.
517 if (qp
->ibqp
.qp_num
== 0)
518 dev
->n_vl15_dropped
++;
523 /* Silently drop packets which are too big. */
524 if (wc
.byte_len
> qp
->r_len
) {
530 ipath_copy_sge(&qp
->r_sge
, &hdr
->u
.l
.grh
,
531 sizeof(struct ib_grh
));
532 wc
.wc_flags
|= IB_WC_GRH
;
534 ipath_skip_sge(&qp
->r_sge
, sizeof(struct ib_grh
));
535 ipath_copy_sge(&qp
->r_sge
, data
,
536 wc
.byte_len
- sizeof(struct ib_grh
));
537 qp
->r_wrid_valid
= 0;
538 wc
.wr_id
= qp
->r_wr_id
;
539 wc
.status
= IB_WC_SUCCESS
;
540 wc
.opcode
= IB_WC_RECV
;
544 /* XXX do we know which pkey matched? Only needed for GSI. */
546 wc
.slid
= be16_to_cpu(hdr
->lrh
[3]);
547 wc
.sl
= (be16_to_cpu(hdr
->lrh
[0]) >> 4) & 0xF;
548 dlid
= be16_to_cpu(hdr
->lrh
[1]);
550 * Save the LMC lower bits if the destination LID is a unicast LID.
552 wc
.dlid_path_bits
= dlid
>= IPATH_MULTICAST_LID_BASE
? 0 :
553 dlid
& ((1 << dev
->dd
->ipath_lmc
) - 1);
555 /* Signal completion event if the solicited bit is set. */
556 ipath_cq_enter(to_icq(qp
->ibqp
.recv_cq
), &wc
,
558 __constant_cpu_to_be32(1 << 23)) != 0);