blob: 729446f56aab580d2ffcd7200a124d22ea6e7c3e [file] [log] [blame]
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -08001/*
Ralph Campbelle7eacd32008-04-16 21:09:32 -07002 * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -08003 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
4 *
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:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
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.
23 *
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
31 * SOFTWARE.
32 */
33
34#include <rdma/ib_smi.h>
35
36#include "ipath_verbs.h"
Ralph Campbell373d9912006-09-22 15:22:26 -070037#include "ipath_kernel.h"
38
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080039/**
40 * ipath_ud_loopback - handle send on loopback QPs
Ralph Campbell4ee97182007-07-25 11:08:28 -070041 * @sqp: the sending QP
42 * @swqe: the send work request
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080043 *
Ralph Campbell4ee97182007-07-25 11:08:28 -070044 * This is called from ipath_make_ud_req() to forward a WQE addressed
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080045 * to the same HCA.
Ralph Campbell373d9912006-09-22 15:22:26 -070046 * Note that the receive interrupt handler may be calling ipath_ud_rcv()
47 * while this is being called.
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080048 */
Ralph Campbell4ee97182007-07-25 11:08:28 -070049static void ipath_ud_loopback(struct ipath_qp *sqp, struct ipath_swqe *swqe)
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080050{
51 struct ipath_ibdev *dev = to_idev(sqp->ibqp.device);
52 struct ipath_qp *qp;
53 struct ib_ah_attr *ah_attr;
54 unsigned long flags;
55 struct ipath_rq *rq;
56 struct ipath_srq *srq;
57 struct ipath_sge_state rsge;
58 struct ipath_sge *sge;
Ralph Campbell373d9912006-09-22 15:22:26 -070059 struct ipath_rwq *wq;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080060 struct ipath_rwqe *wqe;
Ralph Campbell373d9912006-09-22 15:22:26 -070061 void (*handler)(struct ib_event *, void *);
Ralph Campbell4ee97182007-07-25 11:08:28 -070062 struct ib_wc wc;
Ralph Campbell373d9912006-09-22 15:22:26 -070063 u32 tail;
64 u32 rlen;
Ralph Campbell4ee97182007-07-25 11:08:28 -070065 u32 length;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080066
Ralph Campbell4ee97182007-07-25 11:08:28 -070067 qp = ipath_lookup_qpn(&dev->qp_table, swqe->wr.wr.ud.remote_qpn);
Ralph Campbelle509be82008-05-13 11:41:29 -070068 if (!qp || !(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
Ralph Campbell4ee97182007-07-25 11:08:28 -070069 dev->n_pkt_drops++;
Ralph Campbelle509be82008-05-13 11:41:29 -070070 goto done;
Ralph Campbell4ee97182007-07-25 11:08:28 -070071 }
72
73 rsge.sg_list = NULL;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080074
75 /*
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).
79 */
80 if (unlikely(qp->ibqp.qp_num &&
Ralph Campbell4ee97182007-07-25 11:08:28 -070081 ((int) swqe->wr.wr.ud.remote_qkey < 0 ?
82 sqp->qkey : swqe->wr.wr.ud.remote_qkey) != qp->qkey)) {
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080083 /* XXX OK to lose a count once in a while. */
84 dev->qkey_violations++;
85 dev->n_pkt_drops++;
Ralph Campbell4ee97182007-07-25 11:08:28 -070086 goto drop;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080087 }
88
89 /*
90 * A GRH is expected to preceed the data even if not
91 * present on the wire.
92 */
Ralph Campbell4ee97182007-07-25 11:08:28 -070093 length = swqe->length;
Ralph Campbelle509be82008-05-13 11:41:29 -070094 memset(&wc, 0, sizeof wc);
Ralph Campbell4ee97182007-07-25 11:08:28 -070095 wc.byte_len = length + sizeof(struct ib_grh);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -080096
Ralph Campbell4ee97182007-07-25 11:08:28 -070097 if (swqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
98 wc.wc_flags = IB_WC_WITH_IMM;
Steve Wise00f7ec32008-07-14 23:48:45 -070099 wc.ex.imm_data = swqe->wr.ex.imm_data;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800100 }
101
102 /*
Ralph Campbell4ee97182007-07-25 11:08:28 -0700103 * This would be a lot simpler if we could call ipath_get_rwqe()
104 * but that uses state that the receive interrupt handler uses
105 * so we would need to lock out receive interrupts while doing
106 * local loopback.
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800107 */
108 if (qp->ibqp.srq) {
109 srq = to_isrq(qp->ibqp.srq);
Ralph Campbell373d9912006-09-22 15:22:26 -0700110 handler = srq->ibsrq.event_handler;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800111 rq = &srq->rq;
112 } else {
113 srq = NULL;
Ralph Campbell373d9912006-09-22 15:22:26 -0700114 handler = NULL;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800115 rq = &qp->r_rq;
116 }
Ralph Campbell373d9912006-09-22 15:22:26 -0700117
Ralph Campbell4ee97182007-07-25 11:08:28 -0700118 if (rq->max_sge > 1) {
119 /*
120 * XXX We could use GFP_KERNEL if ipath_do_send()
121 * was always called from the tasklet instead of
122 * from ipath_post_send().
123 */
124 rsge.sg_list = kmalloc((rq->max_sge - 1) *
125 sizeof(struct ipath_sge),
126 GFP_ATOMIC);
127 if (!rsge.sg_list) {
128 dev->n_pkt_drops++;
129 goto drop;
130 }
131 }
132
133 /*
134 * Get the next work request entry to find where to put the data.
135 * Note that it is safe to drop the lock after changing rq->tail
136 * since ipath_post_receive() won't fill the empty slot.
137 */
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800138 spin_lock_irqsave(&rq->lock, flags);
Ralph Campbell373d9912006-09-22 15:22:26 -0700139 wq = rq->wq;
140 tail = wq->tail;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700141 /* Validate tail before using it since it is user writable. */
142 if (tail >= rq->size)
143 tail = 0;
144 if (unlikely(tail == wq->head)) {
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800145 spin_unlock_irqrestore(&rq->lock, flags);
146 dev->n_pkt_drops++;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700147 goto drop;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800148 }
Ralph Campbell4ee97182007-07-25 11:08:28 -0700149 wqe = get_rwqe_ptr(rq, tail);
150 if (!ipath_init_sge(qp, wqe, &rlen, &rsge)) {
151 spin_unlock_irqrestore(&rq->lock, flags);
152 dev->n_pkt_drops++;
153 goto drop;
154 }
155 /* Silently drop packets which are too big. */
156 if (wc.byte_len > rlen) {
157 spin_unlock_irqrestore(&rq->lock, flags);
158 dev->n_pkt_drops++;
159 goto drop;
160 }
161 if (++tail >= rq->size)
162 tail = 0;
Ralph Campbell373d9912006-09-22 15:22:26 -0700163 wq->tail = tail;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700164 wc.wr_id = wqe->wr_id;
Ralph Campbell373d9912006-09-22 15:22:26 -0700165 if (handler) {
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800166 u32 n;
167
Ralph Campbell373d9912006-09-22 15:22:26 -0700168 /*
169 * validate head pointer value and compute
170 * the number of remaining WQEs.
171 */
172 n = wq->head;
173 if (n >= rq->size)
174 n = 0;
175 if (n < tail)
176 n += rq->size - tail;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800177 else
Ralph Campbell373d9912006-09-22 15:22:26 -0700178 n -= tail;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800179 if (n < srq->limit) {
180 struct ib_event ev;
181
182 srq->limit = 0;
183 spin_unlock_irqrestore(&rq->lock, flags);
184 ev.device = qp->ibqp.device;
185 ev.element.srq = qp->ibqp.srq;
186 ev.event = IB_EVENT_SRQ_LIMIT_REACHED;
Ralph Campbell373d9912006-09-22 15:22:26 -0700187 handler(&ev, srq->ibsrq.srq_context);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800188 } else
189 spin_unlock_irqrestore(&rq->lock, flags);
190 } else
191 spin_unlock_irqrestore(&rq->lock, flags);
Ralph Campbell373d9912006-09-22 15:22:26 -0700192
Ralph Campbell4ee97182007-07-25 11:08:28 -0700193 ah_attr = &to_iah(swqe->wr.wr.ud.ah)->attr;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800194 if (ah_attr->ah_flags & IB_AH_GRH) {
195 ipath_copy_sge(&rsge, &ah_attr->grh, sizeof(struct ib_grh));
Ralph Campbell4ee97182007-07-25 11:08:28 -0700196 wc.wc_flags |= IB_WC_GRH;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800197 } else
198 ipath_skip_sge(&rsge, sizeof(struct ib_grh));
Ralph Campbell4ee97182007-07-25 11:08:28 -0700199 sge = swqe->sg_list;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800200 while (length) {
201 u32 len = sge->length;
202
203 if (len > length)
204 len = length;
Ralph Campbell30d149a2007-06-18 14:24:44 -0700205 if (len > sge->sge_length)
206 len = sge->sge_length;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800207 BUG_ON(len == 0);
208 ipath_copy_sge(&rsge, sge->vaddr, len);
209 sge->vaddr += len;
210 sge->length -= len;
211 sge->sge_length -= len;
212 if (sge->sge_length == 0) {
Ralph Campbell4ee97182007-07-25 11:08:28 -0700213 if (--swqe->wr.num_sge)
214 sge++;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800215 } else if (sge->length == 0 && sge->mr != NULL) {
216 if (++sge->n >= IPATH_SEGSZ) {
217 if (++sge->m >= sge->mr->mapsz)
218 break;
219 sge->n = 0;
220 }
221 sge->vaddr =
222 sge->mr->map[sge->m]->segs[sge->n].vaddr;
223 sge->length =
224 sge->mr->map[sge->m]->segs[sge->n].length;
225 }
226 length -= len;
227 }
Ralph Campbell4ee97182007-07-25 11:08:28 -0700228 wc.status = IB_WC_SUCCESS;
229 wc.opcode = IB_WC_RECV;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700230 wc.qp = &qp->ibqp;
231 wc.src_qp = sqp->ibqp.qp_num;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800232 /* XXX do we know which pkey matched? Only needed for GSI. */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700233 wc.pkey_index = 0;
234 wc.slid = dev->dd->ipath_lid |
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800235 (ah_attr->src_path_bits &
Ralph Campbell542869a2007-09-13 11:42:52 -0700236 ((1 << dev->dd->ipath_lmc) - 1));
Ralph Campbell4ee97182007-07-25 11:08:28 -0700237 wc.sl = ah_attr->sl;
238 wc.dlid_path_bits =
Ralph Campbell542869a2007-09-13 11:42:52 -0700239 ah_attr->dlid & ((1 << dev->dd->ipath_lmc) - 1);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700240 wc.port_num = 1;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800241 /* Signal completion event if the solicited bit is set. */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700242 ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
243 swqe->wr.send_flags & IB_SEND_SOLICITED);
244drop:
Ralph Campbell373d9912006-09-22 15:22:26 -0700245 kfree(rsge.sg_list);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800246 if (atomic_dec_and_test(&qp->refcount))
247 wake_up(&qp->wait);
Ralph Campbelle509be82008-05-13 11:41:29 -0700248done:;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800249}
250
251/**
Ralph Campbell4ee97182007-07-25 11:08:28 -0700252 * ipath_make_ud_req - construct a UD request packet
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800253 * @qp: the QP
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800254 *
Ralph Campbell4ee97182007-07-25 11:08:28 -0700255 * Return 1 if constructed; otherwise, return 0.
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800256 */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700257int ipath_make_ud_req(struct ipath_qp *qp)
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800258{
259 struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
260 struct ipath_other_headers *ohdr;
261 struct ib_ah_attr *ah_attr;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700262 struct ipath_swqe *wqe;
Ralph Campbelle509be82008-05-13 11:41:29 -0700263 unsigned long flags;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800264 u32 nwords;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800265 u32 extra_bytes;
266 u32 bth0;
267 u16 lrh0;
268 u16 lid;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700269 int ret = 0;
Ralph Campbell7ec01ff2008-08-15 11:23:47 -0700270 int next_cur;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800271
Ralph Campbelle509be82008-05-13 11:41:29 -0700272 spin_lock_irqsave(&qp->s_lock, flags);
273
274 if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_NEXT_SEND_OK)) {
275 if (!(ib_ipath_state_ops[qp->state] & IPATH_FLUSH_SEND))
276 goto bail;
277 /* We are in the error state, flush the work request. */
278 if (qp->s_last == qp->s_head)
279 goto bail;
280 /* If DMAs are in progress, we can't flush immediately. */
281 if (atomic_read(&qp->s_dma_busy)) {
282 qp->s_flags |= IPATH_S_WAIT_DMA;
283 goto bail;
284 }
285 wqe = get_swqe_ptr(qp, qp->s_last);
286 ipath_send_complete(qp, wqe, IB_WC_WR_FLUSH_ERR);
287 goto done;
288 }
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800289
Ralph Campbell4ee97182007-07-25 11:08:28 -0700290 if (qp->s_cur == qp->s_head)
Robert Walsh6ce73b02007-03-15 14:45:16 -0700291 goto bail;
Robert Walsh6ce73b02007-03-15 14:45:16 -0700292
Ralph Campbell4ee97182007-07-25 11:08:28 -0700293 wqe = get_swqe_ptr(qp, qp->s_cur);
Ralph Campbell7ec01ff2008-08-15 11:23:47 -0700294 next_cur = qp->s_cur + 1;
295 if (next_cur >= qp->s_size)
296 next_cur = 0;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800297
298 /* Construct the header. */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700299 ah_attr = &to_iah(wqe->wr.wr.ud.ah)->attr;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700300 if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE) {
301 if (ah_attr->dlid != IPATH_PERMISSIVE_LID)
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800302 dev->n_multicast_xmit++;
303 else
304 dev->n_unicast_xmit++;
305 } else {
306 dev->n_unicast_xmit++;
Ralph Campbelle509be82008-05-13 11:41:29 -0700307 lid = ah_attr->dlid & ~((1 << dev->dd->ipath_lmc) - 1);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700308 if (unlikely(lid == dev->dd->ipath_lid)) {
Ralph Campbelle509be82008-05-13 11:41:29 -0700309 /*
310 * If DMAs are in progress, we can't generate
311 * a completion for the loopback packet since
312 * it would be out of order.
313 * XXX Instead of waiting, we could queue a
314 * zero length descriptor so we get a callback.
315 */
316 if (atomic_read(&qp->s_dma_busy)) {
317 qp->s_flags |= IPATH_S_WAIT_DMA;
318 goto bail;
319 }
Ralph Campbell7ec01ff2008-08-15 11:23:47 -0700320 qp->s_cur = next_cur;
Ralph Campbelle509be82008-05-13 11:41:29 -0700321 spin_unlock_irqrestore(&qp->s_lock, flags);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700322 ipath_ud_loopback(qp, wqe);
Ralph Campbelle509be82008-05-13 11:41:29 -0700323 spin_lock_irqsave(&qp->s_lock, flags);
324 ipath_send_complete(qp, wqe, IB_WC_SUCCESS);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800325 goto done;
326 }
327 }
Ralph Campbell4ee97182007-07-25 11:08:28 -0700328
Ralph Campbell7ec01ff2008-08-15 11:23:47 -0700329 qp->s_cur = next_cur;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700330 extra_bytes = -wqe->length & 3;
331 nwords = (wqe->length + extra_bytes) >> 2;
332
333 /* header size in 32-bit words LRH+BTH+DETH = (8+12+8)/4. */
334 qp->s_hdrwords = 7;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700335 qp->s_cur_size = wqe->length;
336 qp->s_cur_sge = &qp->s_sge;
Dave Olson124b4dc2008-04-16 21:09:32 -0700337 qp->s_dmult = ah_attr->static_rate;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700338 qp->s_wqe = wqe;
339 qp->s_sge.sge = wqe->sg_list[0];
340 qp->s_sge.sg_list = wqe->sg_list + 1;
341 qp->s_sge.num_sge = wqe->wr.num_sge;
342
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800343 if (ah_attr->ah_flags & IB_AH_GRH) {
344 /* Header size in 32-bit words. */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700345 qp->s_hdrwords += ipath_make_grh(dev, &qp->s_hdr.u.l.grh,
346 &ah_attr->grh,
347 qp->s_hdrwords, nwords);
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700348 lrh0 = IPATH_LRH_GRH;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800349 ohdr = &qp->s_hdr.u.l.oth;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800350 /*
351 * Don't worry about sending to locally attached multicast
352 * QPs. It is unspecified by the spec. what happens.
353 */
354 } else {
355 /* Header size in 32-bit words. */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700356 lrh0 = IPATH_LRH_BTH;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800357 ohdr = &qp->s_hdr.u.oth;
358 }
Ralph Campbell4ee97182007-07-25 11:08:28 -0700359 if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
Ralph Campbell4e1e93a2008-01-25 14:17:44 -0800360 qp->s_hdrwords++;
Roland Dreier0f39cf32008-04-16 21:09:32 -0700361 ohdr->u.ud.imm_data = wqe->wr.ex.imm_data;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800362 bth0 = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE << 24;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700363 } else
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800364 bth0 = IB_OPCODE_UD_SEND_ONLY << 24;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800365 lrh0 |= ah_attr->sl << 4;
366 if (qp->ibqp.qp_type == IB_QPT_SMI)
367 lrh0 |= 0xF000; /* Set VL (see ch. 13.5.3.1) */
368 qp->s_hdr.lrh[0] = cpu_to_be16(lrh0);
369 qp->s_hdr.lrh[1] = cpu_to_be16(ah_attr->dlid); /* DEST LID */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700370 qp->s_hdr.lrh[2] = cpu_to_be16(qp->s_hdrwords + nwords +
371 SIZE_OF_CRC);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700372 lid = dev->dd->ipath_lid;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800373 if (lid) {
374 lid |= ah_attr->src_path_bits &
Ralph Campbell542869a2007-09-13 11:42:52 -0700375 ((1 << dev->dd->ipath_lmc) - 1);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800376 qp->s_hdr.lrh[3] = cpu_to_be16(lid);
377 } else
378 qp->s_hdr.lrh[3] = IB_LID_PERMISSIVE;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700379 if (wqe->wr.send_flags & IB_SEND_SOLICITED)
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800380 bth0 |= 1 << 23;
381 bth0 |= extra_bytes << 20;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700382 bth0 |= qp->ibqp.qp_type == IB_QPT_SMI ? IPATH_DEFAULT_P_KEY :
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700383 ipath_get_pkey(dev->dd, qp->s_pkey_index);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800384 ohdr->bth[0] = cpu_to_be32(bth0);
385 /*
386 * Use the multicast QP if the destination LID is a multicast LID.
387 */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700388 ohdr->bth[1] = ah_attr->dlid >= IPATH_MULTICAST_LID_BASE &&
389 ah_attr->dlid != IPATH_PERMISSIVE_LID ?
390 __constant_cpu_to_be32(IPATH_MULTICAST_QPN) :
Ralph Campbell4ee97182007-07-25 11:08:28 -0700391 cpu_to_be32(wqe->wr.wr.ud.remote_qpn);
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700392 ohdr->bth[2] = cpu_to_be32(qp->s_next_psn++ & IPATH_PSN_MASK);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800393 /*
394 * Qkeys with the high order bit set mean use the
395 * qkey from the QP context instead of the WR (see 10.2.5).
396 */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700397 ohdr->u.ud.deth[0] = cpu_to_be32((int)wqe->wr.wr.ud.remote_qkey < 0 ?
398 qp->qkey : wqe->wr.wr.ud.remote_qkey);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800399 ohdr->u.ud.deth[1] = cpu_to_be32(qp->ibqp.qp_num);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800400
401done:
Ralph Campbell4ee97182007-07-25 11:08:28 -0700402 ret = 1;
Ralph Campbelle509be82008-05-13 11:41:29 -0700403 goto unlock;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800404
405bail:
Ralph Campbelle509be82008-05-13 11:41:29 -0700406 qp->s_flags &= ~IPATH_S_BUSY;
407unlock:
408 spin_unlock_irqrestore(&qp->s_lock, flags);
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800409 return ret;
410}
411
412/**
413 * ipath_ud_rcv - receive an incoming UD packet
414 * @dev: the device the packet came in on
415 * @hdr: the packet header
416 * @has_grh: true if the packet has a GRH
417 * @data: the packet data
418 * @tlen: the packet length
419 * @qp: the QP the packet came on
420 *
421 * This is called from ipath_qp_rcv() to process an incoming UD packet
422 * for the given QP.
423 * Called at interrupt level.
424 */
425void ipath_ud_rcv(struct ipath_ibdev *dev, struct ipath_ib_header *hdr,
426 int has_grh, void *data, u32 tlen, struct ipath_qp *qp)
427{
428 struct ipath_other_headers *ohdr;
429 int opcode;
430 u32 hdrsize;
431 u32 pad;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800432 struct ib_wc wc;
433 u32 qkey;
434 u32 src_qp;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800435 u16 dlid;
436 int header_in_data;
437
438 /* Check for GRH */
439 if (!has_grh) {
440 ohdr = &hdr->u.oth;
441 hdrsize = 8 + 12 + 8; /* LRH + BTH + DETH */
442 qkey = be32_to_cpu(ohdr->u.ud.deth[0]);
443 src_qp = be32_to_cpu(ohdr->u.ud.deth[1]);
444 header_in_data = 0;
445 } else {
446 ohdr = &hdr->u.l.oth;
447 hdrsize = 8 + 40 + 12 + 8; /* LRH + GRH + BTH + DETH */
448 /*
449 * The header with GRH is 68 bytes and the core driver sets
450 * the eager header buffer size to 56 bytes so the last 12
451 * bytes of the IB header is in the data buffer.
452 */
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700453 header_in_data = dev->dd->ipath_rcvhdrentsize == 16;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800454 if (header_in_data) {
455 qkey = be32_to_cpu(((__be32 *) data)[1]);
456 src_qp = be32_to_cpu(((__be32 *) data)[2]);
457 data += 12;
458 } else {
459 qkey = be32_to_cpu(ohdr->u.ud.deth[0]);
460 src_qp = be32_to_cpu(ohdr->u.ud.deth[1]);
461 }
462 }
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700463 src_qp &= IPATH_QPN_MASK;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800464
465 /*
466 * Check that the permissive LID is only used on QP0
467 * and the QKEY matches (see 9.6.1.4.1 and 9.6.1.5.1).
468 */
469 if (qp->ibqp.qp_num) {
470 if (unlikely(hdr->lrh[1] == IB_LID_PERMISSIVE ||
471 hdr->lrh[3] == IB_LID_PERMISSIVE)) {
472 dev->n_pkt_drops++;
473 goto bail;
474 }
475 if (unlikely(qkey != qp->qkey)) {
476 /* XXX OK to lose a count once in a while. */
477 dev->qkey_violations++;
478 dev->n_pkt_drops++;
479 goto bail;
480 }
481 } else if (hdr->lrh[1] == IB_LID_PERMISSIVE ||
482 hdr->lrh[3] == IB_LID_PERMISSIVE) {
483 struct ib_smp *smp = (struct ib_smp *) data;
484
485 if (smp->mgmt_class != IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
486 dev->n_pkt_drops++;
487 goto bail;
488 }
489 }
490
Ralph Campbell0a696312008-01-15 15:58:13 -0800491 /*
492 * The opcode is in the low byte when its in network order
493 * (top byte when in host order).
494 */
495 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
496 if (qp->ibqp.qp_num > 1 &&
497 opcode == IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE) {
498 if (header_in_data) {
Steve Wise00f7ec32008-07-14 23:48:45 -0700499 wc.ex.imm_data = *(__be32 *) data;
Ralph Campbell0a696312008-01-15 15:58:13 -0800500 data += sizeof(__be32);
501 } else
Steve Wise00f7ec32008-07-14 23:48:45 -0700502 wc.ex.imm_data = ohdr->u.ud.imm_data;
Ralph Campbell0a696312008-01-15 15:58:13 -0800503 wc.wc_flags = IB_WC_WITH_IMM;
504 hdrsize += sizeof(u32);
505 } else if (opcode == IB_OPCODE_UD_SEND_ONLY) {
Steve Wise00f7ec32008-07-14 23:48:45 -0700506 wc.ex.imm_data = 0;
Ralph Campbell0a696312008-01-15 15:58:13 -0800507 wc.wc_flags = 0;
508 } else {
509 dev->n_pkt_drops++;
510 goto bail;
511 }
512
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800513 /* Get the number of bytes the message was padded by. */
514 pad = (be32_to_cpu(ohdr->bth[0]) >> 20) & 3;
515 if (unlikely(tlen < (hdrsize + pad + 4))) {
516 /* Drop incomplete packets. */
517 dev->n_pkt_drops++;
518 goto bail;
519 }
520 tlen -= hdrsize + pad + 4;
521
522 /* Drop invalid MAD packets (see 13.5.3.1). */
523 if (unlikely((qp->ibqp.qp_num == 0 &&
524 (tlen != 256 ||
525 (be16_to_cpu(hdr->lrh[0]) >> 12) != 15)) ||
526 (qp->ibqp.qp_num == 1 &&
527 (tlen != 256 ||
528 (be16_to_cpu(hdr->lrh[0]) >> 12) == 15)))) {
529 dev->n_pkt_drops++;
530 goto bail;
531 }
532
533 /*
534 * A GRH is expected to preceed the data even if not
535 * present on the wire.
536 */
537 wc.byte_len = tlen + sizeof(struct ib_grh);
538
539 /*
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800540 * Get the next work request entry to find where to put the data.
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800541 */
Ralph Campbelle509be82008-05-13 11:41:29 -0700542 if (qp->r_flags & IPATH_R_REUSE_SGE)
543 qp->r_flags &= ~IPATH_R_REUSE_SGE;
Ralph Campbell373d9912006-09-22 15:22:26 -0700544 else if (!ipath_get_rwqe(qp, 0)) {
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700545 /*
546 * Count VL15 packets dropped due to no receive buffer.
547 * Otherwise, count them as buffer overruns since usually,
548 * the HW will be able to receive packets even if there are
549 * no QPs with posted receive buffers.
550 */
551 if (qp->ibqp.qp_num == 0)
552 dev->n_vl15_dropped++;
553 else
554 dev->rcv_errors++;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800555 goto bail;
556 }
557 /* Silently drop packets which are too big. */
Ralph Campbell373d9912006-09-22 15:22:26 -0700558 if (wc.byte_len > qp->r_len) {
Ralph Campbelle509be82008-05-13 11:41:29 -0700559 qp->r_flags |= IPATH_R_REUSE_SGE;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800560 dev->n_pkt_drops++;
561 goto bail;
562 }
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800563 if (has_grh) {
564 ipath_copy_sge(&qp->r_sge, &hdr->u.l.grh,
565 sizeof(struct ib_grh));
566 wc.wc_flags |= IB_WC_GRH;
567 } else
568 ipath_skip_sge(&qp->r_sge, sizeof(struct ib_grh));
569 ipath_copy_sge(&qp->r_sge, data,
570 wc.byte_len - sizeof(struct ib_grh));
Ralph Campbelle509be82008-05-13 11:41:29 -0700571 if (!test_and_clear_bit(IPATH_R_WRID_VALID, &qp->r_aflags))
572 goto bail;
Ralph Campbell373d9912006-09-22 15:22:26 -0700573 wc.wr_id = qp->r_wr_id;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800574 wc.status = IB_WC_SUCCESS;
575 wc.opcode = IB_WC_RECV;
576 wc.vendor_err = 0;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200577 wc.qp = &qp->ibqp;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800578 wc.src_qp = src_qp;
579 /* XXX do we know which pkey matched? Only needed for GSI. */
580 wc.pkey_index = 0;
581 wc.slid = be16_to_cpu(hdr->lrh[3]);
582 wc.sl = (be16_to_cpu(hdr->lrh[0]) >> 4) & 0xF;
583 dlid = be16_to_cpu(hdr->lrh[1]);
584 /*
585 * Save the LMC lower bits if the destination LID is a unicast LID.
586 */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700587 wc.dlid_path_bits = dlid >= IPATH_MULTICAST_LID_BASE ? 0 :
Ralph Campbell542869a2007-09-13 11:42:52 -0700588 dlid & ((1 << dev->dd->ipath_lmc) - 1);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700589 wc.port_num = 1;
Bryan O'Sullivan74ed6b52006-03-29 15:23:34 -0800590 /* Signal completion event if the solicited bit is set. */
591 ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
592 (ohdr->bth[0] &
593 __constant_cpu_to_be32(1 << 23)) != 0);
594
595bail:;
596}