blob: 1f95bbaf7602289c79854a2919f966cce35e618a [file] [log] [blame]
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -08001/*
Ralph Campbell53dc1ca2008-05-13 11:40:25 -07002 * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -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
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040034#include <linux/sched.h>
Ralph Campbell4ee97182007-07-25 11:08:28 -070035#include <linux/spinlock.h>
36
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -080037#include "ipath_verbs.h"
Ralph Campbell373d9912006-09-22 15:22:26 -070038#include "ipath_kernel.h"
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -080039
40/*
41 * Convert the AETH RNR timeout code into the number of milliseconds.
42 */
43const u32 ib_ipath_rnr_table[32] = {
44 656, /* 0 */
45 1, /* 1 */
46 1, /* 2 */
47 1, /* 3 */
48 1, /* 4 */
49 1, /* 5 */
50 1, /* 6 */
51 1, /* 7 */
52 1, /* 8 */
53 1, /* 9 */
54 1, /* A */
55 1, /* B */
56 1, /* C */
57 1, /* D */
58 2, /* E */
59 2, /* F */
60 3, /* 10 */
61 4, /* 11 */
62 6, /* 12 */
63 8, /* 13 */
64 11, /* 14 */
65 16, /* 15 */
66 21, /* 16 */
67 31, /* 17 */
68 41, /* 18 */
69 62, /* 19 */
70 82, /* 1A */
71 123, /* 1B */
72 164, /* 1C */
73 246, /* 1D */
74 328, /* 1E */
75 492 /* 1F */
76};
77
78/**
79 * ipath_insert_rnr_queue - put QP on the RNR timeout list for the device
80 * @qp: the QP
81 *
Ralph Campbelle509be82008-05-13 11:41:29 -070082 * Called with the QP s_lock held and interrupts disabled.
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -080083 * XXX Use a simple list for now. We might need a priority
84 * queue if we have lots of QPs waiting for RNR timeouts
85 * but that should be rare.
86 */
87void ipath_insert_rnr_queue(struct ipath_qp *qp)
88{
89 struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -080090
Ralph Campbelle509be82008-05-13 11:41:29 -070091 /* We already did a spin_lock_irqsave(), so just use spin_lock */
92 spin_lock(&dev->pending_lock);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -080093 if (list_empty(&dev->rnrwait))
94 list_add(&qp->timerwait, &dev->rnrwait);
95 else {
96 struct list_head *l = &dev->rnrwait;
97 struct ipath_qp *nqp = list_entry(l->next, struct ipath_qp,
98 timerwait);
99
100 while (qp->s_rnr_timeout >= nqp->s_rnr_timeout) {
101 qp->s_rnr_timeout -= nqp->s_rnr_timeout;
102 l = l->next;
Ralph Campbellcc65edc2007-12-14 19:22:34 -0800103 if (l->next == &dev->rnrwait) {
104 nqp = NULL;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800105 break;
Ralph Campbellcc65edc2007-12-14 19:22:34 -0800106 }
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800107 nqp = list_entry(l->next, struct ipath_qp,
108 timerwait);
109 }
Ralph Campbellcc65edc2007-12-14 19:22:34 -0800110 if (nqp)
111 nqp->s_rnr_timeout -= qp->s_rnr_timeout;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800112 list_add(&qp->timerwait, l);
113 }
Ralph Campbelle509be82008-05-13 11:41:29 -0700114 spin_unlock(&dev->pending_lock);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800115}
116
Ralph Campbell4ee97182007-07-25 11:08:28 -0700117/**
118 * ipath_init_sge - Validate a RWQE and fill in the SGE state
119 * @qp: the QP
120 *
121 * Return 1 if OK.
122 */
123int ipath_init_sge(struct ipath_qp *qp, struct ipath_rwqe *wqe,
124 u32 *lengthp, struct ipath_sge_state *ss)
Ralph Campbell373d9912006-09-22 15:22:26 -0700125{
Ralph Campbell373d9912006-09-22 15:22:26 -0700126 int i, j, ret;
127 struct ib_wc wc;
128
Ralph Campbell4ee97182007-07-25 11:08:28 -0700129 *lengthp = 0;
Ralph Campbell373d9912006-09-22 15:22:26 -0700130 for (i = j = 0; i < wqe->num_sge; i++) {
131 if (wqe->sg_list[i].length == 0)
132 continue;
133 /* Check LKEY */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700134 if (!ipath_lkey_ok(qp, j ? &ss->sg_list[j - 1] : &ss->sge,
135 &wqe->sg_list[i], IB_ACCESS_LOCAL_WRITE))
Ralph Campbell373d9912006-09-22 15:22:26 -0700136 goto bad_lkey;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700137 *lengthp += wqe->sg_list[i].length;
Ralph Campbell373d9912006-09-22 15:22:26 -0700138 j++;
139 }
Ralph Campbell4ee97182007-07-25 11:08:28 -0700140 ss->num_sge = j;
Ralph Campbell373d9912006-09-22 15:22:26 -0700141 ret = 1;
142 goto bail;
143
144bad_lkey:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700145 memset(&wc, 0, sizeof(wc));
Ralph Campbell373d9912006-09-22 15:22:26 -0700146 wc.wr_id = wqe->wr_id;
147 wc.status = IB_WC_LOC_PROT_ERR;
148 wc.opcode = IB_WC_RECV;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200149 wc.qp = &qp->ibqp;
Ralph Campbell373d9912006-09-22 15:22:26 -0700150 /* Signal solicited completion event. */
151 ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc, 1);
152 ret = 0;
153bail:
154 return ret;
155}
156
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800157/**
158 * ipath_get_rwqe - copy the next RWQE into the QP's RWQE
159 * @qp: the QP
Ralph Campbella8b56f22008-10-27 15:31:25 -0700160 * @wr_id_only: update qp->r_wr_id only, not qp->r_sge
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800161 *
162 * Return 0 if no RWQE is available, otherwise return 1.
163 *
Bryan O'Sullivan12eef412006-07-01 04:36:10 -0700164 * Can be called from interrupt level.
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800165 */
166int ipath_get_rwqe(struct ipath_qp *qp, int wr_id_only)
167{
Bryan O'Sullivan12eef412006-07-01 04:36:10 -0700168 unsigned long flags;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800169 struct ipath_rq *rq;
Ralph Campbell373d9912006-09-22 15:22:26 -0700170 struct ipath_rwq *wq;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800171 struct ipath_srq *srq;
172 struct ipath_rwqe *wqe;
Ralph Campbell373d9912006-09-22 15:22:26 -0700173 void (*handler)(struct ib_event *, void *);
174 u32 tail;
175 int ret;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800176
Ralph Campbell373d9912006-09-22 15:22:26 -0700177 if (qp->ibqp.srq) {
178 srq = to_isrq(qp->ibqp.srq);
179 handler = srq->ibsrq.event_handler;
180 rq = &srq->rq;
181 } else {
182 srq = NULL;
183 handler = NULL;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800184 rq = &qp->r_rq;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800185 }
186
Bryan O'Sullivan12eef412006-07-01 04:36:10 -0700187 spin_lock_irqsave(&rq->lock, flags);
Ralph Campbelle509be82008-05-13 11:41:29 -0700188 if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
189 ret = 0;
190 goto unlock;
191 }
192
Ralph Campbell373d9912006-09-22 15:22:26 -0700193 wq = rq->wq;
194 tail = wq->tail;
195 /* Validate tail before using it since it is user writable. */
196 if (tail >= rq->size)
197 tail = 0;
198 do {
199 if (unlikely(tail == wq->head)) {
Ralph Campbell373d9912006-09-22 15:22:26 -0700200 ret = 0;
Ralph Campbelle509be82008-05-13 11:41:29 -0700201 goto unlock;
Ralph Campbell373d9912006-09-22 15:22:26 -0700202 }
Ralph Campbell4fc570b2007-07-06 12:48:23 -0700203 /* Make sure entry is read after head index is read. */
204 smp_rmb();
Ralph Campbell373d9912006-09-22 15:22:26 -0700205 wqe = get_rwqe_ptr(rq, tail);
206 if (++tail >= rq->size)
207 tail = 0;
Ralph Campbella8b56f22008-10-27 15:31:25 -0700208 if (wr_id_only)
209 break;
210 qp->r_sge.sg_list = qp->r_sg_list;
211 } while (!ipath_init_sge(qp, wqe, &qp->r_len, &qp->r_sge));
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800212 qp->r_wr_id = wqe->wr_id;
Ralph Campbell373d9912006-09-22 15:22:26 -0700213 wq->tail = tail;
214
215 ret = 1;
Ralph Campbelle509be82008-05-13 11:41:29 -0700216 set_bit(IPATH_R_WRID_VALID, &qp->r_aflags);
Ralph Campbell373d9912006-09-22 15:22:26 -0700217 if (handler) {
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800218 u32 n;
219
Ralph Campbell373d9912006-09-22 15:22:26 -0700220 /*
221 * validate head pointer value and compute
222 * the number of remaining WQEs.
223 */
224 n = wq->head;
225 if (n >= rq->size)
226 n = 0;
227 if (n < tail)
228 n += rq->size - tail;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800229 else
Ralph Campbell373d9912006-09-22 15:22:26 -0700230 n -= tail;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800231 if (n < srq->limit) {
Ralph Campbell373d9912006-09-22 15:22:26 -0700232 struct ib_event ev;
233
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800234 srq->limit = 0;
Bryan O'Sullivan12eef412006-07-01 04:36:10 -0700235 spin_unlock_irqrestore(&rq->lock, flags);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800236 ev.device = qp->ibqp.device;
237 ev.element.srq = qp->ibqp.srq;
238 ev.event = IB_EVENT_SRQ_LIMIT_REACHED;
Ralph Campbell373d9912006-09-22 15:22:26 -0700239 handler(&ev, srq->ibsrq.srq_context);
Bryan O'Sullivan12eef412006-07-01 04:36:10 -0700240 goto bail;
241 }
242 }
Ralph Campbelle509be82008-05-13 11:41:29 -0700243unlock:
Bryan O'Sullivan12eef412006-07-01 04:36:10 -0700244 spin_unlock_irqrestore(&rq->lock, flags);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800245bail:
246 return ret;
247}
248
249/**
250 * ipath_ruc_loopback - handle UC and RC lookback requests
Ralph Campbell4ee97182007-07-25 11:08:28 -0700251 * @sqp: the sending QP
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800252 *
Ralph Campbell4ee97182007-07-25 11:08:28 -0700253 * This is called from ipath_do_send() to
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800254 * forward a WQE addressed to the same HCA.
255 * Note that although we are single threaded due to the tasklet, we still
256 * have to protect against post_send(). We don't have to worry about
257 * receive interrupts since this is a connected protocol and all packets
258 * will pass through here.
259 */
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700260static void ipath_ruc_loopback(struct ipath_qp *sqp)
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800261{
262 struct ipath_ibdev *dev = to_idev(sqp->ibqp.device);
263 struct ipath_qp *qp;
264 struct ipath_swqe *wqe;
265 struct ipath_sge *sge;
266 unsigned long flags;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700267 struct ib_wc wc;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800268 u64 sdata;
Ralph Campbell3859e392007-03-15 14:44:51 -0700269 atomic64_t *maddr;
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700270 enum ib_wc_status send_status;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800271
Ralph Campbelle509be82008-05-13 11:41:29 -0700272 /*
273 * Note that we check the responder QP state after
274 * checking the requester's state.
275 */
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800276 qp = ipath_lookup_qpn(&dev->qp_table, sqp->remote_qpn);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800277
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800278 spin_lock_irqsave(&sqp->s_lock, flags);
279
Ralph Campbelle509be82008-05-13 11:41:29 -0700280 /* Return if we are already busy processing a work request. */
281 if ((sqp->s_flags & (IPATH_S_BUSY | IPATH_S_ANY_WAIT)) ||
282 !(ib_ipath_state_ops[sqp->state] & IPATH_PROCESS_OR_FLUSH_SEND))
283 goto unlock;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800284
Ralph Campbelle509be82008-05-13 11:41:29 -0700285 sqp->s_flags |= IPATH_S_BUSY;
286
287again:
288 if (sqp->s_last == sqp->s_head)
289 goto clr_busy;
290 wqe = get_swqe_ptr(sqp, sqp->s_last);
291
292 /* Return if it is not OK to start a new work reqeust. */
293 if (!(ib_ipath_state_ops[sqp->state] & IPATH_PROCESS_NEXT_SEND_OK)) {
294 if (!(ib_ipath_state_ops[sqp->state] & IPATH_FLUSH_SEND))
295 goto clr_busy;
296 /* We are in the error state, flush the work request. */
297 send_status = IB_WC_WR_FLUSH_ERR;
298 goto flush_send;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800299 }
300
301 /*
302 * We can rely on the entry not changing without the s_lock
303 * being held until we update s_last.
Ralph Campbelle509be82008-05-13 11:41:29 -0700304 * We increment s_cur to indicate s_last is in progress.
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800305 */
Ralph Campbelle509be82008-05-13 11:41:29 -0700306 if (sqp->s_last == sqp->s_cur) {
307 if (++sqp->s_cur >= sqp->s_size)
308 sqp->s_cur = 0;
309 }
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800310 spin_unlock_irqrestore(&sqp->s_lock, flags);
311
Ralph Campbelle509be82008-05-13 11:41:29 -0700312 if (!qp || !(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
313 dev->n_pkt_drops++;
314 /*
315 * For RC, the requester would timeout and retry so
316 * shortcut the timeouts and just signal too many retries.
317 */
318 if (sqp->ibqp.qp_type == IB_QPT_RC)
319 send_status = IB_WC_RETRY_EXC_ERR;
320 else
321 send_status = IB_WC_SUCCESS;
322 goto serr;
323 }
324
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700325 memset(&wc, 0, sizeof wc);
326 send_status = IB_WC_SUCCESS;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800327
328 sqp->s_sge.sge = wqe->sg_list[0];
329 sqp->s_sge.sg_list = wqe->sg_list + 1;
330 sqp->s_sge.num_sge = wqe->wr.num_sge;
331 sqp->s_len = wqe->length;
332 switch (wqe->wr.opcode) {
333 case IB_WR_SEND_WITH_IMM:
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700334 wc.wc_flags = IB_WC_WITH_IMM;
Steve Wise00f7ec32008-07-14 23:48:45 -0700335 wc.ex.imm_data = wqe->wr.ex.imm_data;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800336 /* FALLTHROUGH */
337 case IB_WR_SEND:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700338 if (!ipath_get_rwqe(qp, 0))
339 goto rnr_nak;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800340 break;
341
342 case IB_WR_RDMA_WRITE_WITH_IMM:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700343 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE)))
344 goto inv_err;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700345 wc.wc_flags = IB_WC_WITH_IMM;
Steve Wise00f7ec32008-07-14 23:48:45 -0700346 wc.ex.imm_data = wqe->wr.ex.imm_data;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800347 if (!ipath_get_rwqe(qp, 1))
348 goto rnr_nak;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800349 /* FALLTHROUGH */
350 case IB_WR_RDMA_WRITE:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700351 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_WRITE)))
352 goto inv_err;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800353 if (wqe->length == 0)
354 break;
Bryan O'Sullivan6a553af2006-09-28 09:00:07 -0700355 if (unlikely(!ipath_rkey_ok(qp, &qp->r_sge, wqe->length,
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800356 wqe->wr.wr.rdma.remote_addr,
357 wqe->wr.wr.rdma.rkey,
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700358 IB_ACCESS_REMOTE_WRITE)))
359 goto acc_err;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800360 break;
361
362 case IB_WR_RDMA_READ:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700363 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_READ)))
364 goto inv_err;
Bryan O'Sullivan6a553af2006-09-28 09:00:07 -0700365 if (unlikely(!ipath_rkey_ok(qp, &sqp->s_sge, wqe->length,
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800366 wqe->wr.wr.rdma.remote_addr,
367 wqe->wr.wr.rdma.rkey,
368 IB_ACCESS_REMOTE_READ)))
369 goto acc_err;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800370 qp->r_sge.sge = wqe->sg_list[0];
371 qp->r_sge.sg_list = wqe->sg_list + 1;
372 qp->r_sge.num_sge = wqe->wr.num_sge;
373 break;
374
375 case IB_WR_ATOMIC_CMP_AND_SWP:
376 case IB_WR_ATOMIC_FETCH_AND_ADD:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700377 if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC)))
378 goto inv_err;
Bryan O'Sullivan6a553af2006-09-28 09:00:07 -0700379 if (unlikely(!ipath_rkey_ok(qp, &qp->r_sge, sizeof(u64),
Ralph Campbell3859e392007-03-15 14:44:51 -0700380 wqe->wr.wr.atomic.remote_addr,
381 wqe->wr.wr.atomic.rkey,
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800382 IB_ACCESS_REMOTE_ATOMIC)))
383 goto acc_err;
384 /* Perform atomic OP and save result. */
Ralph Campbell3859e392007-03-15 14:44:51 -0700385 maddr = (atomic64_t *) qp->r_sge.sge.vaddr;
386 sdata = wqe->wr.wr.atomic.compare_add;
387 *(u64 *) sqp->s_sge.sge.vaddr =
388 (wqe->wr.opcode == IB_WR_ATOMIC_FETCH_AND_ADD) ?
389 (u64) atomic64_add_return(sdata, maddr) - sdata :
390 (u64) cmpxchg((u64 *) qp->r_sge.sge.vaddr,
391 sdata, wqe->wr.wr.atomic.swap);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800392 goto send_comp;
393
394 default:
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700395 send_status = IB_WC_LOC_QP_OP_ERR;
396 goto serr;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800397 }
398
399 sge = &sqp->s_sge.sge;
400 while (sqp->s_len) {
401 u32 len = sqp->s_len;
402
403 if (len > sge->length)
404 len = sge->length;
Ralph Campbell30d149a2007-06-18 14:24:44 -0700405 if (len > sge->sge_length)
406 len = sge->sge_length;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800407 BUG_ON(len == 0);
408 ipath_copy_sge(&qp->r_sge, sge->vaddr, len);
409 sge->vaddr += len;
410 sge->length -= len;
411 sge->sge_length -= len;
412 if (sge->sge_length == 0) {
413 if (--sqp->s_sge.num_sge)
414 *sge = *sqp->s_sge.sg_list++;
415 } else if (sge->length == 0 && sge->mr != NULL) {
416 if (++sge->n >= IPATH_SEGSZ) {
417 if (++sge->m >= sge->mr->mapsz)
418 break;
419 sge->n = 0;
420 }
421 sge->vaddr =
422 sge->mr->map[sge->m]->segs[sge->n].vaddr;
423 sge->length =
424 sge->mr->map[sge->m]->segs[sge->n].length;
425 }
426 sqp->s_len -= len;
427 }
428
Ralph Campbelle509be82008-05-13 11:41:29 -0700429 if (!test_and_clear_bit(IPATH_R_WRID_VALID, &qp->r_aflags))
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800430 goto send_comp;
431
432 if (wqe->wr.opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700433 wc.opcode = IB_WC_RECV_RDMA_WITH_IMM;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800434 else
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700435 wc.opcode = IB_WC_RECV;
436 wc.wr_id = qp->r_wr_id;
437 wc.status = IB_WC_SUCCESS;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700438 wc.byte_len = wqe->length;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200439 wc.qp = &qp->ibqp;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700440 wc.src_qp = qp->remote_qpn;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700441 wc.slid = qp->remote_ah_attr.dlid;
442 wc.sl = qp->remote_ah_attr.sl;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700443 wc.port_num = 1;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800444 /* Signal completion event if the solicited bit is set. */
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700445 ipath_cq_enter(to_icq(qp->ibqp.recv_cq), &wc,
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800446 wqe->wr.send_flags & IB_SEND_SOLICITED);
447
448send_comp:
Ralph Campbelle509be82008-05-13 11:41:29 -0700449 spin_lock_irqsave(&sqp->s_lock, flags);
450flush_send:
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800451 sqp->s_rnr_retry = sqp->s_rnr_retry_cnt;
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700452 ipath_send_complete(sqp, wqe, send_status);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800453 goto again;
454
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700455rnr_nak:
456 /* Handle RNR NAK */
457 if (qp->ibqp.qp_type == IB_QPT_UC)
458 goto send_comp;
459 /*
460 * Note: we don't need the s_lock held since the BUSY flag
461 * makes this single threaded.
462 */
463 if (sqp->s_rnr_retry == 0) {
464 send_status = IB_WC_RNR_RETRY_EXC_ERR;
465 goto serr;
466 }
467 if (sqp->s_rnr_retry_cnt < 7)
468 sqp->s_rnr_retry--;
469 spin_lock_irqsave(&sqp->s_lock, flags);
470 if (!(ib_ipath_state_ops[sqp->state] & IPATH_PROCESS_RECV_OK))
Ralph Campbelle509be82008-05-13 11:41:29 -0700471 goto clr_busy;
472 sqp->s_flags |= IPATH_S_WAITING;
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700473 dev->n_rnr_naks++;
474 sqp->s_rnr_timeout = ib_ipath_rnr_table[qp->r_min_rnr_timer];
475 ipath_insert_rnr_queue(sqp);
Ralph Campbelle509be82008-05-13 11:41:29 -0700476 goto clr_busy;
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700477
478inv_err:
479 send_status = IB_WC_REM_INV_REQ_ERR;
480 wc.status = IB_WC_LOC_QP_OP_ERR;
481 goto err;
482
483acc_err:
484 send_status = IB_WC_REM_ACCESS_ERR;
485 wc.status = IB_WC_LOC_PROT_ERR;
486err:
487 /* responder goes to error state */
488 ipath_rc_error(qp, wc.status);
489
490serr:
491 spin_lock_irqsave(&sqp->s_lock, flags);
492 ipath_send_complete(sqp, wqe, send_status);
493 if (sqp->ibqp.qp_type == IB_QPT_RC) {
494 int lastwqe = ipath_error_qp(sqp, IB_WC_WR_FLUSH_ERR);
495
496 sqp->s_flags &= ~IPATH_S_BUSY;
497 spin_unlock_irqrestore(&sqp->s_lock, flags);
498 if (lastwqe) {
499 struct ib_event ev;
500
501 ev.device = sqp->ibqp.device;
502 ev.element.qp = &sqp->ibqp;
503 ev.event = IB_EVENT_QP_LAST_WQE_REACHED;
504 sqp->ibqp.event_handler(&ev, sqp->ibqp.qp_context);
505 }
506 goto done;
507 }
Ralph Campbelle509be82008-05-13 11:41:29 -0700508clr_busy:
509 sqp->s_flags &= ~IPATH_S_BUSY;
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700510unlock:
511 spin_unlock_irqrestore(&sqp->s_lock, flags);
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800512done:
Ralph Campbelle509be82008-05-13 11:41:29 -0700513 if (qp && atomic_dec_and_test(&qp->refcount))
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800514 wake_up(&qp->wait);
515}
516
Dave Olsone2ab41c2008-05-07 11:00:15 -0700517static void want_buffer(struct ipath_devdata *dd, struct ipath_qp *qp)
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700518{
Dave Olsone2ab41c2008-05-07 11:00:15 -0700519 if (!(dd->ipath_flags & IPATH_HAS_SEND_DMA) ||
Ralph Campbelle509be82008-05-13 11:41:29 -0700520 qp->ibqp.qp_type == IB_QPT_SMI) {
Dave Olson124b4dc2008-04-16 21:09:32 -0700521 unsigned long flags;
John Gregore342c112007-09-05 01:57:14 -0700522
Dave Olson124b4dc2008-04-16 21:09:32 -0700523 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
524 dd->ipath_sendctrl |= INFINIPATH_S_PIOINTBUFAVAIL;
525 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
526 dd->ipath_sendctrl);
527 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
528 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
529 }
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700530}
531
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800532/**
533 * ipath_no_bufs_available - tell the layer driver we need buffers
534 * @qp: the QP that caused the problem
535 * @dev: the device we ran out of buffers on
536 *
537 * Called when we run out of PIO buffers.
Ralph Campbelle509be82008-05-13 11:41:29 -0700538 * If we are now in the error state, return zero to flush the
539 * send work request.
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800540 */
Ralph Campbelle509be82008-05-13 11:41:29 -0700541static int ipath_no_bufs_available(struct ipath_qp *qp,
Ralph Campbell4ee97182007-07-25 11:08:28 -0700542 struct ipath_ibdev *dev)
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800543{
544 unsigned long flags;
Ralph Campbelle509be82008-05-13 11:41:29 -0700545 int ret = 1;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800546
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800547 /*
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700548 * Note that as soon as want_buffer() is called and
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800549 * possibly before it returns, ipath_ib_piobufavail()
Ralph Campbelle509be82008-05-13 11:41:29 -0700550 * could be called. Therefore, put QP on the piowait list before
551 * enabling the PIO avail interrupt.
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800552 */
Ralph Campbelle509be82008-05-13 11:41:29 -0700553 spin_lock_irqsave(&qp->s_lock, flags);
554 if (ib_ipath_state_ops[qp->state] & IPATH_PROCESS_SEND_OK) {
555 dev->n_piowait++;
556 qp->s_flags |= IPATH_S_WAITING;
557 qp->s_flags &= ~IPATH_S_BUSY;
558 spin_lock(&dev->pending_lock);
559 if (list_empty(&qp->piowait))
560 list_add_tail(&qp->piowait, &dev->piowait);
561 spin_unlock(&dev->pending_lock);
562 } else
563 ret = 0;
564 spin_unlock_irqrestore(&qp->s_lock, flags);
565 if (ret)
566 want_buffer(dev->dd, qp);
567 return ret;
Bryan O'Sullivane28c00a2006-03-29 15:23:37 -0800568}
569
570/**
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700571 * ipath_make_grh - construct a GRH header
572 * @dev: a pointer to the ipath device
573 * @hdr: a pointer to the GRH header being constructed
574 * @grh: the global route address to send to
575 * @hwords: the number of 32 bit words of header being sent
576 * @nwords: the number of 32 bit words of data being sent
577 *
578 * Return the size of the header in 32 bit words.
579 */
580u32 ipath_make_grh(struct ipath_ibdev *dev, struct ib_grh *hdr,
581 struct ib_global_route *grh, u32 hwords, u32 nwords)
582{
583 hdr->version_tclass_flow =
584 cpu_to_be32((6 << 28) |
585 (grh->traffic_class << 20) |
586 grh->flow_label);
587 hdr->paylen = cpu_to_be16((hwords - 2 + nwords + SIZE_OF_CRC) << 2);
588 /* next_hdr is defined by C8-7 in ch. 8.4.1 */
589 hdr->next_hdr = 0x1B;
590 hdr->hop_limit = grh->hop_limit;
591 /* The SGID is 32-bit aligned. */
592 hdr->sgid.global.subnet_prefix = dev->gid_prefix;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700593 hdr->sgid.global.interface_id = dev->dd->ipath_guid;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700594 hdr->dgid = grh->dgid;
595
596 /* GRH header size in 32-bit words. */
597 return sizeof(struct ib_grh) / sizeof(u32);
598}
599
Ralph Campbell4ee97182007-07-25 11:08:28 -0700600void ipath_make_ruc_header(struct ipath_ibdev *dev, struct ipath_qp *qp,
601 struct ipath_other_headers *ohdr,
602 u32 bth0, u32 bth2)
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700603{
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700604 u16 lrh0;
605 u32 nwords;
606 u32 extra_bytes;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700607
608 /* Construct the header. */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700609 extra_bytes = -qp->s_cur_size & 3;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700610 nwords = (qp->s_cur_size + extra_bytes) >> 2;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700611 lrh0 = IPATH_LRH_BTH;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700612 if (unlikely(qp->remote_ah_attr.ah_flags & IB_AH_GRH)) {
613 qp->s_hdrwords += ipath_make_grh(dev, &qp->s_hdr.u.l.grh,
614 &qp->remote_ah_attr.grh,
615 qp->s_hdrwords, nwords);
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700616 lrh0 = IPATH_LRH_GRH;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700617 }
618 lrh0 |= qp->remote_ah_attr.sl << 4;
619 qp->s_hdr.lrh[0] = cpu_to_be16(lrh0);
620 qp->s_hdr.lrh[1] = cpu_to_be16(qp->remote_ah_attr.dlid);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700621 qp->s_hdr.lrh[2] = cpu_to_be16(qp->s_hdrwords + nwords + SIZE_OF_CRC);
Ralph Campbell94035892008-09-20 20:05:51 -0700622 qp->s_hdr.lrh[3] = cpu_to_be16(dev->dd->ipath_lid |
623 qp->remote_ah_attr.src_path_bits);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700624 bth0 |= ipath_get_pkey(dev->dd, qp->s_pkey_index);
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700625 bth0 |= extra_bytes << 20;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700626 ohdr->bth[0] = cpu_to_be32(bth0 | (1 << 22));
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700627 ohdr->bth[1] = cpu_to_be32(qp->remote_qpn);
628 ohdr->bth[2] = cpu_to_be32(bth2);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700629}
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700630
Ralph Campbell4ee97182007-07-25 11:08:28 -0700631/**
632 * ipath_do_send - perform a send on a QP
633 * @data: contains a pointer to the QP
634 *
635 * Process entries in the send work queue until credit or queue is
636 * exhausted. Only allow one CPU to send a packet per QP (tasklet).
637 * Otherwise, two threads could send packets out of order.
638 */
639void ipath_do_send(unsigned long data)
640{
641 struct ipath_qp *qp = (struct ipath_qp *)data;
642 struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
643 int (*make_req)(struct ipath_qp *qp);
Ralph Campbelle509be82008-05-13 11:41:29 -0700644 unsigned long flags;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700645
646 if ((qp->ibqp.qp_type == IB_QPT_RC ||
647 qp->ibqp.qp_type == IB_QPT_UC) &&
648 qp->remote_ah_attr.dlid == dev->dd->ipath_lid) {
649 ipath_ruc_loopback(qp);
Ralph Campbelle509be82008-05-13 11:41:29 -0700650 goto bail;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700651 }
652
653 if (qp->ibqp.qp_type == IB_QPT_RC)
654 make_req = ipath_make_rc_req;
655 else if (qp->ibqp.qp_type == IB_QPT_UC)
656 make_req = ipath_make_uc_req;
657 else
658 make_req = ipath_make_ud_req;
659
Ralph Campbelle509be82008-05-13 11:41:29 -0700660 spin_lock_irqsave(&qp->s_lock, flags);
661
662 /* Return if we are already busy processing a work request. */
663 if ((qp->s_flags & (IPATH_S_BUSY | IPATH_S_ANY_WAIT)) ||
664 !(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_OR_FLUSH_SEND)) {
665 spin_unlock_irqrestore(&qp->s_lock, flags);
666 goto bail;
667 }
668
669 qp->s_flags |= IPATH_S_BUSY;
670
671 spin_unlock_irqrestore(&qp->s_lock, flags);
672
Ralph Campbell4ee97182007-07-25 11:08:28 -0700673again:
674 /* Check for a constructed packet to be sent. */
675 if (qp->s_hdrwords != 0) {
676 /*
677 * If no PIO bufs are available, return. An interrupt will
678 * call ipath_ib_piobufavail() when one is available.
679 */
680 if (ipath_verbs_send(qp, &qp->s_hdr, qp->s_hdrwords,
681 qp->s_cur_sge, qp->s_cur_size)) {
Ralph Campbelle509be82008-05-13 11:41:29 -0700682 if (ipath_no_bufs_available(qp, dev))
683 goto bail;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700684 }
685 dev->n_unicast_xmit++;
686 /* Record that we sent the packet and s_hdr is empty. */
687 qp->s_hdrwords = 0;
688 }
689
690 if (make_req(qp))
691 goto again;
Ralph Campbelle509be82008-05-13 11:41:29 -0700692
Ralph Campbell4ee97182007-07-25 11:08:28 -0700693bail:;
694}
695
Ralph Campbelle509be82008-05-13 11:41:29 -0700696/*
697 * This should be called with s_lock held.
698 */
Ralph Campbell4ee97182007-07-25 11:08:28 -0700699void ipath_send_complete(struct ipath_qp *qp, struct ipath_swqe *wqe,
700 enum ib_wc_status status)
701{
Ralph Campbelle509be82008-05-13 11:41:29 -0700702 u32 old_last, last;
703
704 if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_OR_FLUSH_SEND))
705 return;
Ralph Campbell4ee97182007-07-25 11:08:28 -0700706
707 /* See ch. 11.2.4.1 and 10.7.3.1 */
708 if (!(qp->s_flags & IPATH_S_SIGNAL_REQ_WR) ||
709 (wqe->wr.send_flags & IB_SEND_SIGNALED) ||
710 status != IB_WC_SUCCESS) {
711 struct ib_wc wc;
712
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700713 memset(&wc, 0, sizeof wc);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700714 wc.wr_id = wqe->wr.wr_id;
715 wc.status = status;
716 wc.opcode = ib_ipath_wc_opcode[wqe->wr.opcode];
Ralph Campbell4ee97182007-07-25 11:08:28 -0700717 wc.qp = &qp->ibqp;
Ralph Campbell53dc1ca2008-05-13 11:40:25 -0700718 if (status == IB_WC_SUCCESS)
719 wc.byte_len = wqe->length;
720 ipath_cq_enter(to_icq(qp->ibqp.send_cq), &wc,
721 status != IB_WC_SUCCESS);
Ralph Campbell4ee97182007-07-25 11:08:28 -0700722 }
Ralph Campbellfffbfea2007-10-19 15:04:10 -0700723
Ralph Campbelle509be82008-05-13 11:41:29 -0700724 old_last = last = qp->s_last;
Ralph Campbellfffbfea2007-10-19 15:04:10 -0700725 if (++last >= qp->s_size)
726 last = 0;
727 qp->s_last = last;
Ralph Campbelle509be82008-05-13 11:41:29 -0700728 if (qp->s_cur == old_last)
729 qp->s_cur = last;
730 if (qp->s_tail == old_last)
731 qp->s_tail = last;
732 if (qp->state == IB_QPS_SQD && last == qp->s_cur)
733 qp->s_draining = 0;
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700734}